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