blob: eacd529a98e3941f7035cf18f55d11fcdfaaae38 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
Luca Ceresoli2f094132011-05-14 05:49:56 +00002 * Copyright 1994, 1995, 2000 Neil Russell.
3 * (See License)
4 * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
wdenkfe8c2802002-11-03 00:38:21 +00005 */
6
7#include <common.h>
8#include <command.h>
9#include <net.h>
10#include "tftp.h"
11#include "bootp.h"
12
Luca Ceresoli2f094132011-05-14 05:49:56 +000013/* Well known TFTP port # */
14#define WELL_KNOWN_PORT 69
15/* Millisecs to timeout for lost pkt */
16#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000017#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000018/* # of timeouts before giving up */
19# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000020#else
21# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
22#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000023/* Number of "loading" hashes per line (for checking the image size) */
24#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000025
26/*
27 * TFTP operations.
28 */
29#define TFTP_RRQ 1
30#define TFTP_WRQ 2
31#define TFTP_DATA 3
32#define TFTP_ACK 4
33#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000034#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000035
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020036static ulong TftpTimeoutMSecs = TIMEOUT;
37static int TftpTimeoutCountMax = TIMEOUT_COUNT;
38
39/*
40 * These globals govern the timeout behavior when attempting a connection to a
41 * TFTP server. TftpRRQTimeoutMSecs specifies the number of milliseconds to
42 * wait for the server to respond to initial connection. Second global,
43 * TftpRRQTimeoutCountMax, gives the number of such connection retries.
44 * TftpRRQTimeoutCountMax must be non-negative and TftpRRQTimeoutMSecs must be
45 * positive. The globals are meant to be set (and restored) by code needing
46 * non-standard timeout behavior when initiating a TFTP transfer.
47 */
48ulong TftpRRQTimeoutMSecs = TIMEOUT;
49int TftpRRQTimeoutCountMax = TIMEOUT_COUNT;
50
Remy Bohmeraafda382009-10-28 22:13:40 +010051enum {
52 TFTP_ERR_UNDEFINED = 0,
53 TFTP_ERR_FILE_NOT_FOUND = 1,
54 TFTP_ERR_ACCESS_DENIED = 2,
55 TFTP_ERR_DISK_FULL = 3,
56 TFTP_ERR_UNEXPECTED_OPCODE = 4,
57 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
58 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
59};
60
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +010061static IPaddr_t TftpServerIP;
Luca Ceresoli2f094132011-05-14 05:49:56 +000062/* The UDP port at their end */
63static int TftpServerPort;
64/* The UDP port at our end */
65static int TftpOurPort;
wdenkfe8c2802002-11-03 00:38:21 +000066static int TftpTimeoutCount;
Luca Ceresoli2f094132011-05-14 05:49:56 +000067/* packet sequence number */
68static ulong TftpBlock;
69/* last packet sequence number received */
70static ulong TftpLastBlock;
71/* count of sequence number wraparounds */
72static ulong TftpBlockWrap;
73/* memory offset due to wrapping */
74static ulong TftpBlockWrapOffset;
wdenkfe8c2802002-11-03 00:38:21 +000075static int TftpState;
Robin Getz4fccb812009-08-20 10:50:20 -040076#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000077/* The file size reported by the server */
78static int TftpTsize;
79/* The number of hashes we printed */
80static short TftpNumchars;
Robin Getz4fccb812009-08-20 10:50:20 -040081#endif
wdenk3f85ce22004-02-23 16:11:30 +000082
wdenkfe8c2802002-11-03 00:38:21 +000083#define STATE_RRQ 1
84#define STATE_DATA 2
85#define STATE_TOO_LARGE 3
86#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +000087#define STATE_OACK 5
wdenkfe8c2802002-11-03 00:38:21 +000088
Luca Ceresoli2f094132011-05-14 05:49:56 +000089/* default TFTP block size */
90#define TFTP_BLOCK_SIZE 512
91/* sequence number is 16 bit */
92#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +000093
wdenkfe8c2802002-11-03 00:38:21 +000094#define DEFAULT_NAME_LEN (8 + 4 + 1)
95static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +010096
97#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
98#define MAX_LEN 128
99#else
100#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
101#endif
102
103static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000104
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200106extern flash_info_t flash_info[];
wdenkfe8c2802002-11-03 00:38:21 +0000107#endif
108
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200109/* 512 is poor choice for ethernet, MTU is typically 1500.
110 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500111 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200112 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500113 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200114#ifdef CONFIG_TFTP_BLOCKSIZE
115#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
116#else
David Updegraff53a5c422007-06-11 10:41:07 -0500117#define TFTP_MTU_BLOCKSIZE 1468
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200118#endif
119
Luca Ceresolic718b142011-05-14 05:49:57 +0000120static unsigned short TftpBlkSize = TFTP_BLOCK_SIZE;
121static unsigned short TftpBlkSizeOption = TFTP_MTU_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500122
123#ifdef CONFIG_MCAST_TFTP
124#include <malloc.h>
125#define MTFTP_BITMAPSIZE 0x1000
126static unsigned *Bitmap;
Luca Ceresolic718b142011-05-14 05:49:57 +0000127static int PrevBitmapHole, Mapsize = MTFTP_BITMAPSIZE;
128static uchar ProhibitMcast = 0, MasterClient = 0;
129static uchar Multicast = 0;
David Updegraff53a5c422007-06-11 10:41:07 -0500130extern IPaddr_t Mcast_addr;
131static int Mcast_port;
132static ulong TftpEndingBlock; /* can get 'last' block before done..*/
133
Luca Ceresolic718b142011-05-14 05:49:57 +0000134static void parse_multicast_oack(char *pkt, int len);
David Updegraff53a5c422007-06-11 10:41:07 -0500135
136static void
137mcast_cleanup(void)
138{
139 if (Mcast_addr) eth_mcast_join(Mcast_addr, 0);
140 if (Bitmap) free(Bitmap);
Luca Ceresolic718b142011-05-14 05:49:57 +0000141 Bitmap = NULL;
David Updegraff53a5c422007-06-11 10:41:07 -0500142 Mcast_addr = Multicast = Mcast_port = 0;
143 TftpEndingBlock = -1;
144}
145
146#endif /* CONFIG_MCAST_TFTP */
147
wdenkfe8c2802002-11-03 00:38:21 +0000148static __inline__ void
Luca Ceresoli2e320252011-05-14 05:49:58 +0000149store_block(unsigned block, uchar *src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000150{
David Updegraff53a5c422007-06-11 10:41:07 -0500151 ulong offset = block * TftpBlkSize + TftpBlockWrapOffset;
wdenk3f85ce22004-02-23 16:11:30 +0000152 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000154 int i, rc = 0;
155
Luca Ceresolic718b142011-05-14 05:49:57 +0000156 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000157 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200158 if (flash_info[i].flash_id == FLASH_UNKNOWN)
159 continue;
wdenkfe8c2802002-11-03 00:38:21 +0000160 if (load_addr + offset >= flash_info[i].start[0]) {
161 rc = 1;
162 break;
163 }
164 }
165
166 if (rc) { /* Flash is destination for this packet */
Luca Ceresolic718b142011-05-14 05:49:57 +0000167 rc = flash_write((char *)src, (ulong)(load_addr+offset), len);
wdenkfe8c2802002-11-03 00:38:21 +0000168 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000169 flash_perror(rc);
wdenkfe8c2802002-11-03 00:38:21 +0000170 NetState = NETLOOP_FAIL;
171 return;
172 }
173 }
174 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200175#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000176 {
177 (void)memcpy((void *)(load_addr + offset), src, len);
178 }
David Updegraff53a5c422007-06-11 10:41:07 -0500179#ifdef CONFIG_MCAST_TFTP
180 if (Multicast)
181 ext2_set_bit(block, Bitmap);
182#endif
wdenkfe8c2802002-11-03 00:38:21 +0000183
184 if (NetBootFileXferSize < newsize)
185 NetBootFileXferSize = newsize;
186}
187
Luca Ceresolic718b142011-05-14 05:49:57 +0000188static void TftpSend(void);
189static void TftpTimeout(void);
wdenkfe8c2802002-11-03 00:38:21 +0000190
191/**********************************************************************/
192
193static void
Luca Ceresolic718b142011-05-14 05:49:57 +0000194TftpSend(void)
wdenkfe8c2802002-11-03 00:38:21 +0000195{
Luca Ceresoli2e320252011-05-14 05:49:58 +0000196 volatile uchar *pkt;
197 volatile uchar *xp;
198 int len = 0;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200199 volatile ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000200
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200201#ifdef CONFIG_MCAST_TFTP
David Updegraff53a5c422007-06-11 10:41:07 -0500202 /* Multicast TFTP.. non-MasterClients do not ACK data. */
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200203 if (Multicast
204 && (TftpState == STATE_DATA)
205 && (MasterClient == 0))
David Updegraff53a5c422007-06-11 10:41:07 -0500206 return;
207#endif
wdenkfe8c2802002-11-03 00:38:21 +0000208 /*
209 * We will always be sending some sort of packet, so
210 * cobble together the packet headers now.
211 */
wdenka3d991b2004-04-15 21:48:45 +0000212 pkt = NetTxPacket + NetEthHdrSize() + IP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000213
214 switch (TftpState) {
215
216 case STATE_RRQ:
217 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200218 s = (ushort *)pkt;
219 *s++ = htons(TFTP_RRQ);
220 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000221 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000222 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000223 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000224 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000225 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000226 pkt += 7 /*strlen("timeout")*/ + 1;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100227 sprintf((char *)pkt, "%lu", TftpTimeoutMSecs / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400228 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000229 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400230#ifdef CONFIG_TFTP_TSIZE
231 memcpy((char *)pkt, "tsize\0000\0", 8);
232 pkt += 8;
233#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500234 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000235 pkt += sprintf((char *)pkt, "blksize%c%d%c",
236 0, TftpBlkSizeOption, 0);
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200237#ifdef CONFIG_MCAST_TFTP
David Updegraff53a5c422007-06-11 10:41:07 -0500238 /* Check all preconditions before even trying the option */
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200239 if (!ProhibitMcast
Luca Ceresolic718b142011-05-14 05:49:57 +0000240 && (Bitmap = malloc(Mapsize))
David Updegraff53a5c422007-06-11 10:41:07 -0500241 && eth_get_dev()->mcast) {
242 free(Bitmap);
Luca Ceresolic718b142011-05-14 05:49:57 +0000243 Bitmap = NULL;
244 pkt += sprintf((char *)pkt, "multicast%c%c", 0, 0);
David Updegraff53a5c422007-06-11 10:41:07 -0500245 }
246#endif /* CONFIG_MCAST_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000247 len = pkt - xp;
248 break;
249
wdenkfbe4b5c2003-10-06 21:55:32 +0000250 case STATE_OACK:
David Updegraff53a5c422007-06-11 10:41:07 -0500251#ifdef CONFIG_MCAST_TFTP
252 /* My turn! Start at where I need blocks I missed.*/
253 if (Multicast)
Luca Ceresolic718b142011-05-14 05:49:57 +0000254 TftpBlock = ext2_find_next_zero_bit(Bitmap,
255 (Mapsize*8), 0);
David Updegraff53a5c422007-06-11 10:41:07 -0500256 /*..falling..*/
257#endif
258 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000259 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200260 s = (ushort *)pkt;
261 *s++ = htons(TFTP_ACK);
262 *s++ = htons(TftpBlock);
263 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000264 len = pkt - xp;
265 break;
266
267 case STATE_TOO_LARGE:
268 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200269 s = (ushort *)pkt;
270 *s++ = htons(TFTP_ERROR);
271 *s++ = htons(3);
272 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000273 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000274 pkt += 14 /*strlen("File too large")*/ + 1;
275 len = pkt - xp;
276 break;
277
278 case STATE_BAD_MAGIC:
279 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200280 s = (ushort *)pkt;
281 *s++ = htons(TFTP_ERROR);
282 *s++ = htons(2);
283 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000284 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000285 pkt += 18 /*strlen("File has bad magic")*/ + 1;
286 len = pkt - xp;
287 break;
288 }
289
Luca Ceresoli2f094132011-05-14 05:49:56 +0000290 NetSendUDPPacket(NetServerEther, TftpServerIP, TftpServerPort,
291 TftpOurPort, len);
wdenkfe8c2802002-11-03 00:38:21 +0000292}
293
294
295static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000296TftpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
297 unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000298{
299 ushort proto;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200300 ushort *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200301 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000302
303 if (dest != TftpOurPort) {
David Updegraff53a5c422007-06-11 10:41:07 -0500304#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200305 if (Multicast
David Updegraff53a5c422007-06-11 10:41:07 -0500306 && (!Mcast_port || (dest != Mcast_port)))
307#endif
wdenkfe8c2802002-11-03 00:38:21 +0000308 return;
309 }
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000310 if (TftpState != STATE_RRQ && src != TftpServerPort)
wdenkfe8c2802002-11-03 00:38:21 +0000311 return;
wdenkfe8c2802002-11-03 00:38:21 +0000312
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000313 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000314 return;
wdenkfe8c2802002-11-03 00:38:21 +0000315 len -= 2;
316 /* warning: don't use increment (++) in ntohs() macros!! */
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200317 s = (ushort *)pkt;
318 proto = *s++;
319 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000320 switch (ntohs(proto)) {
321
322 case TFTP_RRQ:
323 case TFTP_WRQ:
324 case TFTP_ACK:
325 break;
326 default:
327 break;
328
wdenkfbe4b5c2003-10-06 21:55:32 +0000329 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200330 debug("Got OACK: %s %s\n",
331 pkt,
332 pkt + strlen((char *)pkt) + 1);
wdenkfbe4b5c2003-10-06 21:55:32 +0000333 TftpState = STATE_OACK;
334 TftpServerPort = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200335 /*
336 * Check for 'blksize' option.
337 * Careful: "i" is signed, "len" is unsigned, thus
338 * something like "len-8" may give a *huge* number
339 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000340 for (i = 0; i+8 < len; i++) {
Luca Ceresoli2e320252011-05-14 05:49:58 +0000341 if (strcmp((char *)pkt+i, "blksize") == 0) {
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200342 TftpBlkSize = (unsigned short)
Luca Ceresoli2e320252011-05-14 05:49:58 +0000343 simple_strtoul((char *)pkt+i+8, NULL,
Luca Ceresolic718b142011-05-14 05:49:57 +0000344 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400345 debug("Blocksize ack: %s, %d\n",
Luca Ceresoli2e320252011-05-14 05:49:58 +0000346 (char *)pkt+i+8, TftpBlkSize);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200347 }
Robin Getz4fccb812009-08-20 10:50:20 -0400348#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000349 if (strcmp((char *)pkt+i, "tsize") == 0) {
350 TftpTsize = simple_strtoul((char *)pkt+i+6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000351 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400352 debug("size = %s, %d\n",
Luca Ceresoli2e320252011-05-14 05:49:58 +0000353 (char *)pkt+i+6, TftpTsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400354 }
355#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500356 }
357#ifdef CONFIG_MCAST_TFTP
Luca Ceresolic718b142011-05-14 05:49:57 +0000358 parse_multicast_oack((char *)pkt, len-1);
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200359 if ((Multicast) && (!MasterClient))
David Updegraff53a5c422007-06-11 10:41:07 -0500360 TftpState = STATE_DATA; /* passive.. */
361 else
362#endif
Luca Ceresolic718b142011-05-14 05:49:57 +0000363 TftpSend(); /* Send ACK */
wdenkfbe4b5c2003-10-06 21:55:32 +0000364 break;
wdenkfe8c2802002-11-03 00:38:21 +0000365 case TFTP_DATA:
366 if (len < 2)
367 return;
368 len -= 2;
369 TftpBlock = ntohs(*(ushort *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000370
371 /*
wdenkcd0a9de2004-02-23 20:48:38 +0000372 * RFC1350 specifies that the first data packet will
373 * have sequence number 1. If we receive a sequence
374 * number of 0 this means that there was a wrap
375 * around of the (16 bit) counter.
wdenk3f85ce22004-02-23 16:11:30 +0000376 */
377 if (TftpBlock == 0) {
378 TftpBlockWrap++;
Luca Ceresoli2f094132011-05-14 05:49:56 +0000379 TftpBlockWrapOffset +=
380 TftpBlkSize * TFTP_SEQUENCE_SIZE;
Luca Ceresolic718b142011-05-14 05:49:57 +0000381 printf("\n\t %lu MB received\n\t ",
Luca Ceresoli2f094132011-05-14 05:49:56 +0000382 TftpBlockWrapOffset>>20);
Robin Getz4fccb812009-08-20 10:50:20 -0400383 }
384#ifdef CONFIG_TFTP_TSIZE
385 else if (TftpTsize) {
Luca Ceresoli2f094132011-05-14 05:49:56 +0000386 while (TftpNumchars <
387 NetBootFileXferSize * 50 / TftpTsize) {
Robin Getz4fccb812009-08-20 10:50:20 -0400388 putc('#');
389 TftpNumchars++;
390 }
391 }
392#endif
393 else {
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000394 if (((TftpBlock - 1) % 10) == 0)
Luca Ceresolic718b142011-05-14 05:49:57 +0000395 putc('#');
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000396 else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 0)
Luca Ceresolic718b142011-05-14 05:49:57 +0000397 puts("\n\t ");
wdenkfe8c2802002-11-03 00:38:21 +0000398 }
399
Robin Getz0ebf04c2009-07-23 03:01:03 -0400400 if (TftpState == STATE_RRQ)
401 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000402
403 if (TftpState == STATE_RRQ || TftpState == STATE_OACK) {
wdenk3f85ce22004-02-23 16:11:30 +0000404 /* first block received */
wdenkfe8c2802002-11-03 00:38:21 +0000405 TftpState = STATE_DATA;
406 TftpServerPort = src;
407 TftpLastBlock = 0;
wdenk3f85ce22004-02-23 16:11:30 +0000408 TftpBlockWrap = 0;
409 TftpBlockWrapOffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000410
David Updegraff53a5c422007-06-11 10:41:07 -0500411#ifdef CONFIG_MCAST_TFTP
412 if (Multicast) { /* start!=1 common if mcast */
413 TftpLastBlock = TftpBlock - 1;
414 } else
415#endif
wdenkfe8c2802002-11-03 00:38:21 +0000416 if (TftpBlock != 1) { /* Assertion */
Luca Ceresolic718b142011-05-14 05:49:57 +0000417 printf("\nTFTP error: "
418 "First block is not block 1 (%ld)\n"
419 "Starting again\n\n",
wdenkfe8c2802002-11-03 00:38:21 +0000420 TftpBlock);
Luca Ceresolic718b142011-05-14 05:49:57 +0000421 NetStartAgain();
wdenkfe8c2802002-11-03 00:38:21 +0000422 break;
423 }
424 }
425
426 if (TftpBlock == TftpLastBlock) {
427 /*
428 * Same block again; ignore it.
429 */
430 break;
431 }
432
433 TftpLastBlock = TftpBlock;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200434 TftpTimeoutCountMax = TIMEOUT_COUNT;
Luca Ceresolic718b142011-05-14 05:49:57 +0000435 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
wdenkfe8c2802002-11-03 00:38:21 +0000436
Luca Ceresolic718b142011-05-14 05:49:57 +0000437 store_block(TftpBlock - 1, pkt + 2, len);
wdenkfe8c2802002-11-03 00:38:21 +0000438
439 /*
440 * Acknoledge the block just received, which will prompt
441 * the server for the next one.
442 */
David Updegraff53a5c422007-06-11 10:41:07 -0500443#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200444 /* if I am the MasterClient, actively calculate what my next
445 * needed block is; else I'm passive; not ACKING
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100446 */
David Updegraff53a5c422007-06-11 10:41:07 -0500447 if (Multicast) {
448 if (len < TftpBlkSize) {
449 TftpEndingBlock = TftpBlock;
450 } else if (MasterClient) {
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200451 TftpBlock = PrevBitmapHole =
David Updegraff53a5c422007-06-11 10:41:07 -0500452 ext2_find_next_zero_bit(
453 Bitmap,
454 (Mapsize*8),
455 PrevBitmapHole);
456 if (TftpBlock > ((Mapsize*8) - 1)) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000457 printf("tftpfile too big\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500458 /* try to double it and retry */
Luca Ceresolic718b142011-05-14 05:49:57 +0000459 Mapsize <<= 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500460 mcast_cleanup();
Luca Ceresolic718b142011-05-14 05:49:57 +0000461 NetStartAgain();
David Updegraff53a5c422007-06-11 10:41:07 -0500462 return;
463 }
464 TftpLastBlock = TftpBlock;
465 }
466 }
467#endif
Luca Ceresolic718b142011-05-14 05:49:57 +0000468 TftpSend();
wdenkfe8c2802002-11-03 00:38:21 +0000469
David Updegraff53a5c422007-06-11 10:41:07 -0500470#ifdef CONFIG_MCAST_TFTP
471 if (Multicast) {
472 if (MasterClient && (TftpBlock >= TftpEndingBlock)) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000473 puts("\nMulticast tftp done\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500474 mcast_cleanup();
475 NetState = NETLOOP_SUCCESS;
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200476 }
David Updegraff53a5c422007-06-11 10:41:07 -0500477 }
478 else
479#endif
480 if (len < TftpBlkSize) {
wdenkfe8c2802002-11-03 00:38:21 +0000481 /*
482 * We received the whole thing. Try to
483 * run it.
484 */
Robin Getz4fccb812009-08-20 10:50:20 -0400485#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +0000486 /* Print hash marks for the last packet received */
Robin Getz4fccb812009-08-20 10:50:20 -0400487 while (TftpTsize && TftpNumchars < 49) {
488 putc('#');
489 TftpNumchars++;
490 }
491#endif
Luca Ceresolic718b142011-05-14 05:49:57 +0000492 puts("\ndone\n");
wdenkfe8c2802002-11-03 00:38:21 +0000493 NetState = NETLOOP_SUCCESS;
494 }
495 break;
496
497 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000498 printf("\nTFTP error: '%s' (%d)\n",
499 pkt + 2, ntohs(*(ushort *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100500
501 switch (ntohs(*(ushort *)pkt)) {
502 case TFTP_ERR_FILE_NOT_FOUND:
503 case TFTP_ERR_ACCESS_DENIED:
504 puts("Not retrying...\n");
505 eth_halt();
506 NetState = NETLOOP_FAIL;
507 break;
508 case TFTP_ERR_UNDEFINED:
509 case TFTP_ERR_DISK_FULL:
510 case TFTP_ERR_UNEXPECTED_OPCODE:
511 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
512 case TFTP_ERR_FILE_ALREADY_EXISTS:
513 default:
514 puts("Starting again\n\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500515#ifdef CONFIG_MCAST_TFTP
Remy Bohmeraafda382009-10-28 22:13:40 +0100516 mcast_cleanup();
David Updegraff53a5c422007-06-11 10:41:07 -0500517#endif
Remy Bohmeraafda382009-10-28 22:13:40 +0100518 NetStartAgain();
519 break;
520 }
wdenkfe8c2802002-11-03 00:38:21 +0000521 break;
522 }
523}
524
525
526static void
Luca Ceresolic718b142011-05-14 05:49:57 +0000527TftpTimeout(void)
wdenkfe8c2802002-11-03 00:38:21 +0000528{
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200529 if (++TftpTimeoutCount > TftpTimeoutCountMax) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000530 puts("\nRetry count exceeded; starting again\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500531#ifdef CONFIG_MCAST_TFTP
532 mcast_cleanup();
533#endif
Luca Ceresolic718b142011-05-14 05:49:57 +0000534 NetStartAgain();
wdenkfe8c2802002-11-03 00:38:21 +0000535 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000536 puts("T ");
537 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
538 TftpSend();
wdenkfe8c2802002-11-03 00:38:21 +0000539 }
540}
541
542
543void
Luca Ceresolic718b142011-05-14 05:49:57 +0000544TftpStart(void)
wdenkfe8c2802002-11-03 00:38:21 +0000545{
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200546 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200547
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100548 /*
549 * Allow the user to choose TFTP blocksize and timeout.
550 * TFTP protocol has a minimal timeout of 1 second.
551 */
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000552 ep = getenv("tftpblocksize");
553 if (ep != NULL)
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200554 TftpBlkSizeOption = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100555
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000556 ep = getenv("tftptimeout");
557 if (ep != NULL)
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100558 TftpTimeoutMSecs = simple_strtol(ep, NULL, 10);
559
560 if (TftpTimeoutMSecs < 1000) {
561 printf("TFTP timeout (%ld ms) too low, "
562 "set minimum = 1000 ms\n",
563 TftpTimeoutMSecs);
564 TftpTimeoutMSecs = 1000;
565 }
566
567 debug("TFTP blocksize = %i, timeout = %ld ms\n",
568 TftpBlkSizeOption, TftpTimeoutMSecs);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200569
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100570 TftpServerIP = NetServerIP;
wdenkfe8c2802002-11-03 00:38:21 +0000571 if (BootFile[0] == '\0') {
wdenkfe8c2802002-11-03 00:38:21 +0000572 sprintf(default_filename, "%02lX%02lX%02lX%02lX.img",
Wolfgang Denkc43352c2005-08-04 01:09:44 +0200573 NetOurIP & 0xFF,
574 (NetOurIP >> 8) & 0xFF,
575 (NetOurIP >> 16) & 0xFF,
Luca Ceresolic718b142011-05-14 05:49:57 +0000576 (NetOurIP >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100577
578 strncpy(tftp_filename, default_filename, MAX_LEN);
579 tftp_filename[MAX_LEN-1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000580
Luca Ceresolic718b142011-05-14 05:49:57 +0000581 printf("*** Warning: no boot file name; using '%s'\n",
wdenkfe8c2802002-11-03 00:38:21 +0000582 tftp_filename);
583 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000584 char *p = strchr(BootFile, ':');
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100585
586 if (p == NULL) {
587 strncpy(tftp_filename, BootFile, MAX_LEN);
588 tftp_filename[MAX_LEN-1] = 0;
589 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000590 TftpServerIP = string_to_ip(BootFile);
Peter Tyser6a86bb62008-12-01 16:29:38 -0600591 strncpy(tftp_filename, p + 1, MAX_LEN);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100592 tftp_filename[MAX_LEN-1] = 0;
593 }
wdenkfe8c2802002-11-03 00:38:21 +0000594 }
595
wdenk5bb226e2003-11-17 21:14:37 +0000596#if defined(CONFIG_NET_MULTI)
Luca Ceresolic718b142011-05-14 05:49:57 +0000597 printf("Using %s device\n", eth_get_name());
wdenk5bb226e2003-11-17 21:14:37 +0000598#endif
Mike Frysingerb6446b62009-02-17 00:00:53 -0500599 printf("TFTP from server %pI4"
600 "; our IP address is %pI4", &TftpServerIP, &NetOurIP);
wdenkfe8c2802002-11-03 00:38:21 +0000601
602 /* Check if we need to send across this subnet */
603 if (NetOurGatewayIP && NetOurSubnetMask) {
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100604 IPaddr_t OurNet = NetOurIP & NetOurSubnetMask;
605 IPaddr_t ServerNet = TftpServerIP & NetOurSubnetMask;
wdenkfe8c2802002-11-03 00:38:21 +0000606
Mike Frysingerb6446b62009-02-17 00:00:53 -0500607 if (OurNet != ServerNet)
608 printf("; sending through gateway %pI4", &NetOurGatewayIP);
wdenkfe8c2802002-11-03 00:38:21 +0000609 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000610 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000611
Luca Ceresolic718b142011-05-14 05:49:57 +0000612 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000613
614 if (NetBootFileSize) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000615 printf(" Size is 0x%x Bytes = ", NetBootFileSize<<9);
616 print_size(NetBootFileSize<<9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000617 }
618
Luca Ceresolic718b142011-05-14 05:49:57 +0000619 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000620
Luca Ceresolic718b142011-05-14 05:49:57 +0000621 printf("Load address: 0x%lx\n", load_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000622
Luca Ceresolic718b142011-05-14 05:49:57 +0000623 puts("Loading: *\b");
wdenkfe8c2802002-11-03 00:38:21 +0000624
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200625 TftpTimeoutCountMax = TftpRRQTimeoutCountMax;
626
Luca Ceresolic718b142011-05-14 05:49:57 +0000627 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
628 NetSetHandler(TftpHandler);
wdenkfe8c2802002-11-03 00:38:21 +0000629
630 TftpServerPort = WELL_KNOWN_PORT;
631 TftpTimeoutCount = 0;
632 TftpState = STATE_RRQ;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200633 /* Use a pseudo-random port unless a specific port is set */
wdenkfe8c2802002-11-03 00:38:21 +0000634 TftpOurPort = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500635
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200636#ifdef CONFIG_TFTP_PORT
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000637 ep = getenv("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000638 if (ep != NULL)
Wolfgang Denk28cb9372005-09-24 23:25:46 +0200639 TftpServerPort = simple_strtol(ep, NULL, 10);
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000640 ep = getenv("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000641 if (ep != NULL)
Luca Ceresolic718b142011-05-14 05:49:57 +0000642 TftpOurPort = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200643#endif
wdenkfbe4b5c2003-10-06 21:55:32 +0000644 TftpBlock = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000645
wdenk73a8b272003-06-05 19:27:42 +0000646 /* zero out server ether in case the server ip has changed */
647 memset(NetServerEther, 0, 6);
David Updegraff53a5c422007-06-11 10:41:07 -0500648 /* Revert TftpBlkSize to dflt */
649 TftpBlkSize = TFTP_BLOCK_SIZE;
650#ifdef CONFIG_MCAST_TFTP
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100651 mcast_cleanup();
David Updegraff53a5c422007-06-11 10:41:07 -0500652#endif
Robin Getz4fccb812009-08-20 10:50:20 -0400653#ifdef CONFIG_TFTP_TSIZE
654 TftpTsize = 0;
655 TftpNumchars = 0;
656#endif
wdenk73a8b272003-06-05 19:27:42 +0000657
Luca Ceresolic718b142011-05-14 05:49:57 +0000658 TftpSend();
wdenkfe8c2802002-11-03 00:38:21 +0000659}
660
David Updegraff53a5c422007-06-11 10:41:07 -0500661#ifdef CONFIG_MCAST_TFTP
662/* Credits: atftp project.
663 */
664
665/* pick up BcastAddr, Port, and whether I am [now] the master-client. *
666 * Frame:
667 * +-------+-----------+---+-------~~-------+---+
668 * | opc | multicast | 0 | addr, port, mc | 0 |
669 * +-------+-----------+---+-------~~-------+---+
670 * The multicast addr/port becomes what I listen to, and if 'mc' is '1' then
671 * I am the new master-client so must send ACKs to DataBlocks. If I am not
672 * master-client, I'm a passive client, gathering what DataBlocks I may and
673 * making note of which ones I got in my bitmask.
674 * In theory, I never go from master->passive..
675 * .. this comes in with pkt already pointing just past opc
676 */
677static void parse_multicast_oack(char *pkt, int len)
678{
Luca Ceresolic718b142011-05-14 05:49:57 +0000679 int i;
680 IPaddr_t addr;
681 char *mc_adr, *port, *mc;
David Updegraff53a5c422007-06-11 10:41:07 -0500682
Luca Ceresolic718b142011-05-14 05:49:57 +0000683 mc_adr = port = mc = NULL;
David Updegraff53a5c422007-06-11 10:41:07 -0500684 /* march along looking for 'multicast\0', which has to start at least
685 * 14 bytes back from the end.
686 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000687 for (i = 0; i < len-14; i++)
688 if (strcmp(pkt+i, "multicast") == 0)
David Updegraff53a5c422007-06-11 10:41:07 -0500689 break;
690 if (i >= (len-14)) /* non-Multicast OACK, ign. */
691 return;
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200692
Luca Ceresolic718b142011-05-14 05:49:57 +0000693 i += 10; /* strlen multicast */
David Updegraff53a5c422007-06-11 10:41:07 -0500694 mc_adr = pkt+i;
Luca Ceresolic718b142011-05-14 05:49:57 +0000695 for (; i < len; i++) {
David Updegraff53a5c422007-06-11 10:41:07 -0500696 if (*(pkt+i) == ',') {
697 *(pkt+i) = '\0';
698 if (port) {
699 mc = pkt+i+1;
700 break;
701 } else {
702 port = pkt+i+1;
703 }
704 }
705 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000706 if (!port || !mc_adr || !mc) return;
David Updegraff53a5c422007-06-11 10:41:07 -0500707 if (Multicast && MasterClient) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000708 printf("I got a OACK as master Client, WRONG!\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500709 return;
710 }
711 /* ..I now accept packets destined for this MCAST addr, port */
712 if (!Multicast) {
713 if (Bitmap) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000714 printf("Internal failure! no mcast.\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500715 free(Bitmap);
Luca Ceresolic718b142011-05-14 05:49:57 +0000716 Bitmap = NULL;
717 ProhibitMcast = 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500718 return ;
719 }
720 /* I malloc instead of pre-declare; so that if the file ends
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200721 * up being too big for this bitmap I can retry
722 */
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000723 Bitmap = malloc(Mapsize);
724 if (!Bitmap) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000725 printf("No Bitmap, no multicast. Sorry.\n");
726 ProhibitMcast = 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500727 return;
728 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000729 memset(Bitmap, 0, Mapsize);
David Updegraff53a5c422007-06-11 10:41:07 -0500730 PrevBitmapHole = 0;
731 Multicast = 1;
732 }
733 addr = string_to_ip(mc_adr);
734 if (Mcast_addr != addr) {
735 if (Mcast_addr)
736 eth_mcast_join(Mcast_addr, 0);
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000737 Mcast_addr = addr;
738 if (eth_mcast_join(Mcast_addr, 1)) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000739 printf("Fail to set mcast, revert to TFTP\n");
740 ProhibitMcast = 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500741 mcast_cleanup();
742 NetStartAgain();
743 }
744 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000745 MasterClient = (unsigned char)simple_strtoul((char *)mc, NULL, 10);
746 Mcast_port = (unsigned short)simple_strtoul(port, NULL, 10);
747 printf("Multicast: %s:%d [%d]\n", mc_adr, Mcast_port, MasterClient);
David Updegraff53a5c422007-06-11 10:41:07 -0500748 return;
749}
750
751#endif /* Multicast TFTP */