1c003871c1548af5c645b852c726593e63fad056
[platform/kernel/u-boot.git] / net / tftp.c
1 /*
2  * Copyright 1994, 1995, 2000 Neil Russell.
3  * (See License)
4  * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
5  * Copyright 2011 Comelit Group SpA,
6  *                Luca Ceresoli <luca.ceresoli@comelit.it>
7  */
8 #include <common.h>
9 #include <command.h>
10 #include <efi_loader.h>
11 #include <env.h>
12 #include <image.h>
13 #include <lmb.h>
14 #include <log.h>
15 #include <mapmem.h>
16 #include <net.h>
17 #include <net/tftp.h>
18 #include "bootp.h"
19 #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
20 #include <flash.h>
21 #endif
22
23 DECLARE_GLOBAL_DATA_PTR;
24
25 /* Well known TFTP port # */
26 #define WELL_KNOWN_PORT 69
27 /* Millisecs to timeout for lost pkt */
28 #define TIMEOUT         5000UL
29 #ifndef CONFIG_NET_RETRY_COUNT
30 /* # of timeouts before giving up */
31 # define TIMEOUT_COUNT  10
32 #else
33 # define TIMEOUT_COUNT  (CONFIG_NET_RETRY_COUNT * 2)
34 #endif
35 /* Number of "loading" hashes per line (for checking the image size) */
36 #define HASHES_PER_LINE 65
37
38 /*
39  *      TFTP operations.
40  */
41 #define TFTP_RRQ        1
42 #define TFTP_WRQ        2
43 #define TFTP_DATA       3
44 #define TFTP_ACK        4
45 #define TFTP_ERROR      5
46 #define TFTP_OACK       6
47
48 static ulong timeout_ms = TIMEOUT;
49 static int timeout_count_max = TIMEOUT_COUNT;
50 static ulong time_start;   /* Record time we started tftp */
51
52 /*
53  * These globals govern the timeout behavior when attempting a connection to a
54  * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
55  * wait for the server to respond to initial connection. Second global,
56  * tftp_timeout_count_max, gives the number of such connection retries.
57  * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
58  * positive. The globals are meant to be set (and restored) by code needing
59  * non-standard timeout behavior when initiating a TFTP transfer.
60  */
61 ulong tftp_timeout_ms = TIMEOUT;
62 int tftp_timeout_count_max = TIMEOUT_COUNT;
63
64 enum {
65         TFTP_ERR_UNDEFINED           = 0,
66         TFTP_ERR_FILE_NOT_FOUND      = 1,
67         TFTP_ERR_ACCESS_DENIED       = 2,
68         TFTP_ERR_DISK_FULL           = 3,
69         TFTP_ERR_UNEXPECTED_OPCODE   = 4,
70         TFTP_ERR_UNKNOWN_TRANSFER_ID  = 5,
71         TFTP_ERR_FILE_ALREADY_EXISTS = 6,
72         TFTP_ERR_OPTION_NEGOTIATION = 8,
73 };
74
75 static struct in_addr tftp_remote_ip;
76 /* The UDP port at their end */
77 static int      tftp_remote_port;
78 /* The UDP port at our end */
79 static int      tftp_our_port;
80 static int      timeout_count;
81 /* packet sequence number */
82 static ulong    tftp_cur_block;
83 /* last packet sequence number received */
84 static ulong    tftp_prev_block;
85 /* count of sequence number wraparounds */
86 static ulong    tftp_block_wrap;
87 /* memory offset due to wrapping */
88 static ulong    tftp_block_wrap_offset;
89 static int      tftp_state;
90 static ulong    tftp_load_addr;
91 #ifdef CONFIG_LMB
92 static ulong    tftp_load_size;
93 #endif
94 #ifdef CONFIG_TFTP_TSIZE
95 /* The file size reported by the server */
96 static int      tftp_tsize;
97 /* The number of hashes we printed */
98 static short    tftp_tsize_num_hash;
99 #endif
100 /* The window size negotiated */
101 static ushort   tftp_windowsize;
102 /* Next block to send ack to */
103 static ushort   tftp_next_ack;
104 /* Last nack block we send */
105 static ushort   tftp_last_nack;
106 #ifdef CONFIG_CMD_TFTPPUT
107 /* 1 if writing, else 0 */
108 static int      tftp_put_active;
109 /* 1 if we have sent the last block */
110 static int      tftp_put_final_block_sent;
111 #else
112 #define tftp_put_active 0
113 #endif
114
115 #define STATE_SEND_RRQ  1
116 #define STATE_DATA      2
117 #define STATE_TOO_LARGE 3
118 #define STATE_BAD_MAGIC 4
119 #define STATE_OACK      5
120 #define STATE_RECV_WRQ  6
121 #define STATE_SEND_WRQ  7
122 #define STATE_INVALID_OPTION    8
123
124 /* default TFTP block size */
125 #define TFTP_BLOCK_SIZE         512
126 /* sequence number is 16 bit */
127 #define TFTP_SEQUENCE_SIZE      ((ulong)(1<<16))
128
129 #define DEFAULT_NAME_LEN        (8 + 4 + 1)
130 static char default_filename[DEFAULT_NAME_LEN];
131
132 #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
133 #define MAX_LEN 128
134 #else
135 #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
136 #endif
137
138 static char tftp_filename[MAX_LEN];
139
140 /* 512 is poor choice for ethernet, MTU is typically 1500.
141  * Minus eth.hdrs thats 1468.  Can get 2x better throughput with
142  * almost-MTU block sizes.  At least try... fall back to 512 if need be.
143  * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
144  */
145
146 /* When windowsize is defined to 1,
147  * tftp behaves the same way as it was
148  * never declared
149  */
150 #ifdef CONFIG_TFTP_WINDOWSIZE
151 #define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE
152 #else
153 #define TFTP_WINDOWSIZE 1
154 #endif
155
156 static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
157 static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
158 static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE;
159
160 static inline int store_block(int block, uchar *src, unsigned int len)
161 {
162         ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
163                         tftp_block_size;
164         ulong newsize = offset + len;
165         ulong store_addr = tftp_load_addr + offset;
166 #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
167         int i, rc = 0;
168
169         for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
170                 /* start address in flash? */
171                 if (flash_info[i].flash_id == FLASH_UNKNOWN)
172                         continue;
173                 if (store_addr >= flash_info[i].start[0]) {
174                         rc = 1;
175                         break;
176                 }
177         }
178
179         if (rc) { /* Flash is destination for this packet */
180                 rc = flash_write((char *)src, store_addr, len);
181                 if (rc) {
182                         flash_perror(rc);
183                         return rc;
184                 }
185         } else
186 #endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
187         {
188                 void *ptr;
189
190 #ifdef CONFIG_LMB
191                 ulong end_addr = tftp_load_addr + tftp_load_size;
192
193                 if (!end_addr)
194                         end_addr = ULONG_MAX;
195
196                 if (store_addr < tftp_load_addr ||
197                     store_addr + len > end_addr) {
198                         puts("\nTFTP error: ");
199                         puts("trying to overwrite reserved memory...\n");
200                         return -1;
201                 }
202 #endif
203                 ptr = map_sysmem(store_addr, len);
204                 memcpy(ptr, src, len);
205                 unmap_sysmem(ptr);
206         }
207
208         if (net_boot_file_size < newsize)
209                 net_boot_file_size = newsize;
210
211         return 0;
212 }
213
214 /* Clear our state ready for a new transfer */
215 static void new_transfer(void)
216 {
217         tftp_prev_block = 0;
218         tftp_block_wrap = 0;
219         tftp_block_wrap_offset = 0;
220 #ifdef CONFIG_CMD_TFTPPUT
221         tftp_put_final_block_sent = 0;
222 #endif
223 }
224
225 #ifdef CONFIG_CMD_TFTPPUT
226 /**
227  * Load the next block from memory to be sent over tftp.
228  *
229  * @param block Block number to send
230  * @param dst   Destination buffer for data
231  * @param len   Number of bytes in block (this one and every other)
232  * @return number of bytes loaded
233  */
234 static int load_block(unsigned block, uchar *dst, unsigned len)
235 {
236         /* We may want to get the final block from the previous set */
237         ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
238         ulong tosend = len;
239
240         tosend = min(net_boot_file_size - offset, tosend);
241         (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
242         debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
243               block, offset, len, tosend);
244         return tosend;
245 }
246 #endif
247
248 static void tftp_send(void);
249 static void tftp_timeout_handler(void);
250
251 /**********************************************************************/
252
253 static void show_block_marker(void)
254 {
255         ulong pos;
256
257 #ifdef CONFIG_TFTP_TSIZE
258         if (tftp_tsize) {
259                 pos = tftp_cur_block * tftp_block_size +
260                         tftp_block_wrap_offset;
261                 if (pos > tftp_tsize)
262                         pos = tftp_tsize;
263
264                 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
265                         putc('#');
266                         tftp_tsize_num_hash++;
267                 }
268         } else
269 #endif
270         {
271                 pos = (tftp_cur_block - 1) +
272                         (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
273                 if ((pos % 10) == 0)
274                         putc('#');
275                 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
276                         puts("\n\t ");
277         }
278 }
279
280 /**
281  * restart the current transfer due to an error
282  *
283  * @param msg   Message to print for user
284  */
285 static void restart(const char *msg)
286 {
287         printf("\n%s; starting again\n", msg);
288         net_start_again();
289 }
290
291 /*
292  * Check if the block number has wrapped, and update progress
293  *
294  * TODO: The egregious use of global variables in this file should be tidied.
295  */
296 static void update_block_number(void)
297 {
298         /*
299          * RFC1350 specifies that the first data packet will
300          * have sequence number 1. If we receive a sequence
301          * number of 0 this means that there was a wrap
302          * around of the (16 bit) counter.
303          */
304         if (tftp_cur_block == 0 && tftp_prev_block != 0) {
305                 tftp_block_wrap++;
306                 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
307                 timeout_count = 0; /* we've done well, reset the timeout */
308         }
309         show_block_marker();
310 }
311
312 /* The TFTP get or put is complete */
313 static void tftp_complete(void)
314 {
315 #ifdef CONFIG_TFTP_TSIZE
316         /* Print hash marks for the last packet received */
317         while (tftp_tsize && tftp_tsize_num_hash < 49) {
318                 putc('#');
319                 tftp_tsize_num_hash++;
320         }
321         puts("  ");
322         print_size(tftp_tsize, "");
323 #endif
324         time_start = get_timer(time_start);
325         if (time_start > 0) {
326                 puts("\n\t ");  /* Line up with "Loading: " */
327                 print_size(net_boot_file_size /
328                         time_start * 1000, "/s");
329         }
330         puts("\ndone\n");
331         net_set_state(NETLOOP_SUCCESS);
332 }
333
334 static void tftp_send(void)
335 {
336         uchar *pkt;
337         uchar *xp;
338         int len = 0;
339         ushort *s;
340         bool err_pkt = false;
341
342         /*
343          *      We will always be sending some sort of packet, so
344          *      cobble together the packet headers now.
345          */
346         pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
347
348         switch (tftp_state) {
349         case STATE_SEND_RRQ:
350         case STATE_SEND_WRQ:
351                 xp = pkt;
352                 s = (ushort *)pkt;
353 #ifdef CONFIG_CMD_TFTPPUT
354                 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
355                         TFTP_WRQ);
356 #else
357                 *s++ = htons(TFTP_RRQ);
358 #endif
359                 pkt = (uchar *)s;
360                 strcpy((char *)pkt, tftp_filename);
361                 pkt += strlen(tftp_filename) + 1;
362                 strcpy((char *)pkt, "octet");
363                 pkt += 5 /*strlen("octet")*/ + 1;
364                 strcpy((char *)pkt, "timeout");
365                 pkt += 7 /*strlen("timeout")*/ + 1;
366                 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
367                 debug("send option \"timeout %s\"\n", (char *)pkt);
368                 pkt += strlen((char *)pkt) + 1;
369 #ifdef CONFIG_TFTP_TSIZE
370                 pkt += sprintf((char *)pkt, "tsize%c%u%c",
371                                 0, net_boot_file_size, 0);
372 #endif
373                 /* try for more effic. blk size */
374                 pkt += sprintf((char *)pkt, "blksize%c%d%c",
375                                 0, tftp_block_size_option, 0);
376
377                 /* try for more effic. window size.
378                  * Implemented only for tftp get.
379                  * Don't bother sending if it's 1
380                  */
381                 if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1)
382                         pkt += sprintf((char *)pkt, "windowsize%c%d%c",
383                                         0, tftp_window_size_option, 0);
384                 len = pkt - xp;
385                 break;
386
387         case STATE_OACK:
388
389         case STATE_RECV_WRQ:
390         case STATE_DATA:
391                 xp = pkt;
392                 s = (ushort *)pkt;
393                 s[0] = htons(TFTP_ACK);
394                 s[1] = htons(tftp_cur_block);
395                 pkt = (uchar *)(s + 2);
396 #ifdef CONFIG_CMD_TFTPPUT
397                 if (tftp_put_active) {
398                         int toload = tftp_block_size;
399                         int loaded = load_block(tftp_cur_block, pkt, toload);
400
401                         s[0] = htons(TFTP_DATA);
402                         pkt += loaded;
403                         tftp_put_final_block_sent = (loaded < toload);
404                 }
405 #endif
406                 len = pkt - xp;
407                 break;
408
409         case STATE_TOO_LARGE:
410                 xp = pkt;
411                 s = (ushort *)pkt;
412                 *s++ = htons(TFTP_ERROR);
413                         *s++ = htons(3);
414
415                 pkt = (uchar *)s;
416                 strcpy((char *)pkt, "File too large");
417                 pkt += 14 /*strlen("File too large")*/ + 1;
418                 len = pkt - xp;
419                 err_pkt = true;
420                 break;
421
422         case STATE_BAD_MAGIC:
423                 xp = pkt;
424                 s = (ushort *)pkt;
425                 *s++ = htons(TFTP_ERROR);
426                 *s++ = htons(2);
427                 pkt = (uchar *)s;
428                 strcpy((char *)pkt, "File has bad magic");
429                 pkt += 18 /*strlen("File has bad magic")*/ + 1;
430                 len = pkt - xp;
431                 err_pkt = true;
432                 break;
433
434         case STATE_INVALID_OPTION:
435                 xp = pkt;
436                 s = (ushort *)pkt;
437                 *s++ = htons(TFTP_ERROR);
438                 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
439                 pkt = (uchar *)s;
440                 strcpy((char *)pkt, "Option Negotiation Failed");
441                 /* strlen("Option Negotiation Failed") + NULL*/
442                 pkt += 25 + 1;
443                 len = pkt - xp;
444                 err_pkt = true;
445                 break;
446         }
447
448         net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
449                             tftp_remote_port, tftp_our_port, len);
450
451         if (err_pkt)
452                 net_set_state(NETLOOP_FAIL);
453 }
454
455 #ifdef CONFIG_CMD_TFTPPUT
456 static void icmp_handler(unsigned type, unsigned code, unsigned dest,
457                          struct in_addr sip, unsigned src, uchar *pkt,
458                          unsigned len)
459 {
460         if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
461                 /* Oh dear the other end has gone away */
462                 restart("TFTP server died");
463         }
464 }
465 #endif
466
467 static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
468                          unsigned src, unsigned len)
469 {
470         __be16 proto;
471         __be16 *s;
472         int i;
473         u16 timeout_val_rcvd;
474
475         if (dest != tftp_our_port) {
476                         return;
477         }
478         if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
479             tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
480                 return;
481
482         if (len < 2)
483                 return;
484         len -= 2;
485         /* warning: don't use increment (++) in ntohs() macros!! */
486         s = (__be16 *)pkt;
487         proto = *s++;
488         pkt = (uchar *)s;
489         switch (ntohs(proto)) {
490         case TFTP_RRQ:
491                 break;
492
493         case TFTP_ACK:
494 #ifdef CONFIG_CMD_TFTPPUT
495                 if (tftp_put_active) {
496                         if (tftp_put_final_block_sent) {
497                                 tftp_complete();
498                         } else {
499                                 /*
500                                  * Move to the next block. We want our block
501                                  * count to wrap just like the other end!
502                                  */
503                                 int block = ntohs(*s);
504                                 int ack_ok = (tftp_cur_block == block);
505
506                                 tftp_prev_block = tftp_cur_block;
507                                 tftp_cur_block = (unsigned short)(block + 1);
508                                 update_block_number();
509                                 if (ack_ok)
510                                         tftp_send(); /* Send next data block */
511                         }
512                 }
513 #endif
514                 break;
515
516         default:
517                 break;
518
519 #ifdef CONFIG_CMD_TFTPSRV
520         case TFTP_WRQ:
521                 debug("Got WRQ\n");
522                 tftp_remote_ip = sip;
523                 tftp_remote_port = src;
524                 tftp_our_port = 1024 + (get_timer(0) % 3072);
525                 new_transfer();
526                 tftp_send(); /* Send ACK(0) */
527                 break;
528 #endif
529
530         case TFTP_OACK:
531                 debug("Got OACK: ");
532                 for (i = 0; i < len; i++) {
533                         if (pkt[i] == '\0')
534                                 debug(" ");
535                         else
536                                 debug("%c", pkt[i]);
537                 }
538                 debug("\n");
539                 tftp_state = STATE_OACK;
540                 tftp_remote_port = src;
541                 /*
542                  * Check for 'blksize' option.
543                  * Careful: "i" is signed, "len" is unsigned, thus
544                  * something like "len-8" may give a *huge* number
545                  */
546                 for (i = 0; i+8 < len; i++) {
547                         if (strcasecmp((char *)pkt + i, "blksize") == 0) {
548                                 tftp_block_size = (unsigned short)
549                                         simple_strtoul((char *)pkt + i + 8,
550                                                        NULL, 10);
551                                 debug("Blocksize oack: %s, %d\n",
552                                       (char *)pkt + i + 8, tftp_block_size);
553                                 if (tftp_block_size > tftp_block_size_option) {
554                                         printf("Invalid blk size(=%d)\n",
555                                                tftp_block_size);
556                                         tftp_state = STATE_INVALID_OPTION;
557                                 }
558                         }
559                         if (strcasecmp((char *)pkt + i, "timeout") == 0) {
560                                 timeout_val_rcvd = (unsigned short)
561                                         simple_strtoul((char *)pkt + i + 8,
562                                                        NULL, 10);
563                                 debug("Timeout oack: %s, %d\n",
564                                       (char *)pkt + i + 8, timeout_val_rcvd);
565                                 if (timeout_val_rcvd != (timeout_ms / 1000)) {
566                                         printf("Invalid timeout val(=%d s)\n",
567                                                timeout_val_rcvd);
568                                         tftp_state = STATE_INVALID_OPTION;
569                                 }
570                         }
571 #ifdef CONFIG_TFTP_TSIZE
572                         if (strcasecmp((char *)pkt + i, "tsize") == 0) {
573                                 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
574                                                            NULL, 10);
575                                 debug("size = %s, %d\n",
576                                       (char *)pkt + i + 6, tftp_tsize);
577                         }
578 #endif
579                         if (strcasecmp((char *)pkt + i,  "windowsize") == 0) {
580                                 tftp_windowsize =
581                                         simple_strtoul((char *)pkt + i + 11,
582                                                        NULL, 10);
583                                 debug("windowsize = %s, %d\n",
584                                       (char *)pkt + i + 11, tftp_windowsize);
585                         }
586                 }
587
588                 tftp_next_ack = tftp_windowsize;
589
590 #ifdef CONFIG_CMD_TFTPPUT
591                 if (tftp_put_active && tftp_state == STATE_OACK) {
592                         /* Get ready to send the first block */
593                         tftp_state = STATE_DATA;
594                         tftp_cur_block++;
595                 }
596 #endif
597                 tftp_send(); /* Send ACK or first data block */
598                 break;
599         case TFTP_DATA:
600                 if (len < 2)
601                         return;
602                 len -= 2;
603
604                 if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) {
605                         debug("Received unexpected block: %d, expected: %d\n",
606                               ntohs(*(__be16 *)pkt),
607                               (ushort)(tftp_cur_block + 1));
608                         /*
609                          * If one packet is dropped most likely
610                          * all other buffers in the window
611                          * that will arrive will cause a sending NACK.
612                          * This just overwellms the server, let's just send one.
613                          */
614                         if (tftp_last_nack != tftp_cur_block) {
615                                 tftp_send();
616                                 tftp_last_nack = tftp_cur_block;
617                                 tftp_next_ack = (ushort)(tftp_cur_block +
618                                                          tftp_windowsize);
619                         }
620                         break;
621                 }
622
623                 tftp_cur_block++;
624                 tftp_cur_block %= TFTP_SEQUENCE_SIZE;
625
626                 if (tftp_state == STATE_SEND_RRQ)
627                         debug("Server did not acknowledge any options!\n");
628
629                 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
630                     tftp_state == STATE_RECV_WRQ) {
631                         /* first block received */
632                         tftp_state = STATE_DATA;
633                         tftp_remote_port = src;
634                         new_transfer();
635
636                         if (tftp_cur_block != 1) {      /* Assertion */
637                                 puts("\nTFTP error: ");
638                                 printf("First block is not block 1 (%ld)\n",
639                                        tftp_cur_block);
640                                 puts("Starting again\n\n");
641                                 net_start_again();
642                                 break;
643                         }
644                 }
645
646                 if (tftp_cur_block == tftp_prev_block) {
647                         /* Same block again; ignore it. */
648                         break;
649                 }
650
651                 update_block_number();
652                 tftp_prev_block = tftp_cur_block;
653                 timeout_count_max = tftp_timeout_count_max;
654                 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
655
656                 if (store_block(tftp_cur_block, pkt + 2, len)) {
657                         eth_halt();
658                         net_set_state(NETLOOP_FAIL);
659                         break;
660                 }
661
662                 /*
663                  *      Acknowledge the block just received, which will prompt
664                  *      the remote for the next one.
665                  */
666                 if (tftp_cur_block == tftp_next_ack) {
667                         tftp_send();
668                         tftp_next_ack += tftp_windowsize;
669                 }
670
671                 if (len < tftp_block_size) {
672                         tftp_send();
673                         tftp_complete();
674                 }
675                 break;
676
677         case TFTP_ERROR:
678                 printf("\nTFTP error: '%s' (%d)\n",
679                        pkt + 2, ntohs(*(__be16 *)pkt));
680
681                 switch (ntohs(*(__be16 *)pkt)) {
682                 case TFTP_ERR_FILE_NOT_FOUND:
683                 case TFTP_ERR_ACCESS_DENIED:
684                         puts("Not retrying...\n");
685                         eth_halt();
686                         net_set_state(NETLOOP_FAIL);
687                         break;
688                 case TFTP_ERR_UNDEFINED:
689                 case TFTP_ERR_DISK_FULL:
690                 case TFTP_ERR_UNEXPECTED_OPCODE:
691                 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
692                 case TFTP_ERR_FILE_ALREADY_EXISTS:
693                 default:
694                         puts("Starting again\n\n");
695                         net_start_again();
696                         break;
697                 }
698                 break;
699         }
700 }
701
702
703 static void tftp_timeout_handler(void)
704 {
705         if (++timeout_count > timeout_count_max) {
706                 restart("Retry count exceeded");
707         } else {
708                 puts("T ");
709                 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
710                 if (tftp_state != STATE_RECV_WRQ)
711                         tftp_send();
712         }
713 }
714
715 /* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
716 static int tftp_init_load_addr(void)
717 {
718 #ifdef CONFIG_LMB
719         struct lmb lmb;
720         phys_size_t max_size;
721
722         lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
723
724         max_size = lmb_get_free_size(&lmb, image_load_addr);
725         if (!max_size)
726                 return -1;
727
728         tftp_load_size = max_size;
729 #endif
730         tftp_load_addr = image_load_addr;
731         return 0;
732 }
733
734 void tftp_start(enum proto_t protocol)
735 {
736 #if CONFIG_NET_TFTP_VARS
737         char *ep;             /* Environment pointer */
738
739         /*
740          * Allow the user to choose TFTP blocksize and timeout.
741          * TFTP protocol has a minimal timeout of 1 second.
742          */
743
744         ep = env_get("tftpblocksize");
745         if (ep != NULL)
746                 tftp_block_size_option = simple_strtol(ep, NULL, 10);
747
748         ep = env_get("tftpwindowsize");
749         if (ep != NULL)
750                 tftp_window_size_option = simple_strtol(ep, NULL, 10);
751
752         ep = env_get("tftptimeout");
753         if (ep != NULL)
754                 timeout_ms = simple_strtol(ep, NULL, 10);
755
756         if (timeout_ms < 1000) {
757                 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
758                        timeout_ms);
759                 timeout_ms = 1000;
760         }
761
762         ep = env_get("tftptimeoutcountmax");
763         if (ep != NULL)
764                 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
765
766         if (tftp_timeout_count_max < 0) {
767                 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
768                        tftp_timeout_count_max);
769                 tftp_timeout_count_max = 0;
770         }
771 #endif
772
773         debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n",
774               tftp_block_size_option, tftp_window_size_option, timeout_ms);
775
776         tftp_remote_ip = net_server_ip;
777         if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
778                 sprintf(default_filename, "%02X%02X%02X%02X.img",
779                         net_ip.s_addr & 0xFF,
780                         (net_ip.s_addr >>  8) & 0xFF,
781                         (net_ip.s_addr >> 16) & 0xFF,
782                         (net_ip.s_addr >> 24) & 0xFF);
783
784                 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
785                 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
786
787                 printf("*** Warning: no boot file name; using '%s'\n",
788                        tftp_filename);
789         }
790
791         printf("Using %s device\n", eth_get_name());
792         printf("TFTP %s server %pI4; our IP address is %pI4",
793 #ifdef CONFIG_CMD_TFTPPUT
794                protocol == TFTPPUT ? "to" : "from",
795 #else
796                "from",
797 #endif
798                &tftp_remote_ip, &net_ip);
799
800         /* Check if we need to send across this subnet */
801         if (net_gateway.s_addr && net_netmask.s_addr) {
802                 struct in_addr our_net;
803                 struct in_addr remote_net;
804
805                 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
806                 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
807                 if (our_net.s_addr != remote_net.s_addr)
808                         printf("; sending through gateway %pI4", &net_gateway);
809         }
810         putc('\n');
811
812         printf("Filename '%s'.", tftp_filename);
813
814         if (net_boot_file_expected_size_in_blocks) {
815                 printf(" Size is 0x%x Bytes = ",
816                        net_boot_file_expected_size_in_blocks << 9);
817                 print_size(net_boot_file_expected_size_in_blocks << 9, "");
818         }
819
820         putc('\n');
821 #ifdef CONFIG_CMD_TFTPPUT
822         tftp_put_active = (protocol == TFTPPUT);
823         if (tftp_put_active) {
824                 printf("Save address: 0x%lx\n", image_save_addr);
825                 printf("Save size:    0x%lx\n", image_save_size);
826                 net_boot_file_size = image_save_size;
827                 puts("Saving: *\b");
828                 tftp_state = STATE_SEND_WRQ;
829                 new_transfer();
830         } else
831 #endif
832         {
833                 if (tftp_init_load_addr()) {
834                         eth_halt();
835                         net_set_state(NETLOOP_FAIL);
836                         puts("\nTFTP error: ");
837                         puts("trying to overwrite reserved memory...\n");
838                         return;
839                 }
840                 printf("Load address: 0x%lx\n", tftp_load_addr);
841                 puts("Loading: *\b");
842                 tftp_state = STATE_SEND_RRQ;
843 #ifdef CONFIG_CMD_BOOTEFI
844                 efi_set_bootdev("Net", "", tftp_filename);
845 #endif
846         }
847
848         time_start = get_timer(0);
849         timeout_count_max = tftp_timeout_count_max;
850
851         net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
852         net_set_udp_handler(tftp_handler);
853 #ifdef CONFIG_CMD_TFTPPUT
854         net_set_icmp_handler(icmp_handler);
855 #endif
856         tftp_remote_port = WELL_KNOWN_PORT;
857         timeout_count = 0;
858         /* Use a pseudo-random port unless a specific port is set */
859         tftp_our_port = 1024 + (get_timer(0) % 3072);
860
861 #ifdef CONFIG_TFTP_PORT
862         ep = env_get("tftpdstp");
863         if (ep != NULL)
864                 tftp_remote_port = simple_strtol(ep, NULL, 10);
865         ep = env_get("tftpsrcp");
866         if (ep != NULL)
867                 tftp_our_port = simple_strtol(ep, NULL, 10);
868 #endif
869         tftp_cur_block = 0;
870         tftp_windowsize = 1;
871         tftp_last_nack = 0;
872         /* zero out server ether in case the server ip has changed */
873         memset(net_server_ethaddr, 0, 6);
874         /* Revert tftp_block_size to dflt */
875         tftp_block_size = TFTP_BLOCK_SIZE;
876 #ifdef CONFIG_TFTP_TSIZE
877         tftp_tsize = 0;
878         tftp_tsize_num_hash = 0;
879 #endif
880
881         tftp_send();
882 }
883
884 #ifdef CONFIG_CMD_TFTPSRV
885 void tftp_start_server(void)
886 {
887         tftp_filename[0] = 0;
888
889         if (tftp_init_load_addr()) {
890                 eth_halt();
891                 net_set_state(NETLOOP_FAIL);
892                 puts("\nTFTP error: trying to overwrite reserved memory...\n");
893                 return;
894         }
895         printf("Using %s device\n", eth_get_name());
896         printf("Listening for TFTP transfer on %pI4\n", &net_ip);
897         printf("Load address: 0x%lx\n", tftp_load_addr);
898
899         puts("Loading: *\b");
900
901         timeout_count_max = tftp_timeout_count_max;
902         timeout_count = 0;
903         timeout_ms = TIMEOUT;
904         net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
905
906         /* Revert tftp_block_size to dflt */
907         tftp_block_size = TFTP_BLOCK_SIZE;
908         tftp_cur_block = 0;
909         tftp_our_port = WELL_KNOWN_PORT;
910
911 #ifdef CONFIG_TFTP_TSIZE
912         tftp_tsize = 0;
913         tftp_tsize_num_hash = 0;
914 #endif
915
916         tftp_state = STATE_RECV_WRQ;
917         net_set_udp_handler(tftp_handler);
918
919         /* zero out server ether in case the server ip has changed */
920         memset(net_server_ethaddr, 0, 6);
921 }
922 #endif /* CONFIG_CMD_TFTPSRV */
923