2 * Copyright 1994, 1995, 2000 Neil Russell.
4 * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
15 #if (CONFIG_COMMANDS & CFG_CMD_NET)
17 #define WELL_KNOWN_PORT 69 /* Well known TFTP port # */
18 #define TIMEOUT 5 /* Seconds to timeout for a lost pkt */
19 #ifndef CONFIG_NET_RETRY_COUNT
20 # define TIMEOUT_COUNT 10 /* # of timeouts before giving up */
22 # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
24 /* (for checking the image size) */
25 #define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
38 static int TftpServerPort; /* The UDP port at their end */
39 static int TftpOurPort; /* The UDP port at our end */
40 static int TftpTimeoutCount;
41 static ulong TftpBlock; /* packet sequence number */
42 static ulong TftpLastBlock; /* last packet sequence number received */
43 static ulong TftpBlockWrap; /* count of sequence number wraparounds */
44 static ulong TftpBlockWrapOffset; /* memory offset due to wrapping */
49 #define STATE_TOO_LARGE 3
50 #define STATE_BAD_MAGIC 4
53 #define TFTP_BLOCK_SIZE 512 /* default TFTP block size */
54 #define TFTP_SEQUENCE_SIZE ((ulong)(1<<16)) /* sequence number is 16 bit */
56 #define DEFAULT_NAME_LEN (8 + 4 + 1)
57 static char default_filename[DEFAULT_NAME_LEN];
58 static char *tftp_filename;
60 #ifdef CFG_DIRECT_FLASH_TFTP
61 extern flash_info_t flash_info[];
64 static __inline__ void
65 store_block (unsigned block, uchar * src, unsigned len)
67 ulong offset = block * TFTP_BLOCK_SIZE + TftpBlockWrapOffset;
68 ulong newsize = offset + len;
69 #ifdef CFG_DIRECT_FLASH_TFTP
72 for (i=0; i<CFG_MAX_FLASH_BANKS; i++) {
73 /* start address in flash? */
74 if (load_addr + offset >= flash_info[i].start[0]) {
80 if (rc) { /* Flash is destination for this packet */
81 rc = flash_write ((char *)src, (ulong)(load_addr+offset), len);
84 NetState = NETLOOP_FAIL;
89 #endif /* CFG_DIRECT_FLASH_TFTP */
91 (void)memcpy((void *)(load_addr + offset), src, len);
94 if (NetBootFileXferSize < newsize)
95 NetBootFileXferSize = newsize;
98 static void TftpSend (void);
99 static void TftpTimeout (void);
101 /**********************************************************************/
106 volatile uchar * pkt;
112 * We will always be sending some sort of packet, so
113 * cobble together the packet headers now.
115 pkt = NetTxPacket + NetEthHdrSize() + IP_HDR_SIZE;
122 *s++ = htons(TFTP_RRQ);
124 strcpy ((char *)pkt, tftp_filename);
125 pkt += strlen(tftp_filename) + 1;
126 strcpy ((char *)pkt, "octet");
127 pkt += 5 /*strlen("octet")*/ + 1;
128 strcpy ((char *)pkt, "timeout");
129 pkt += 7 /*strlen("timeout")*/ + 1;
130 sprintf((char *)pkt, "%d", TIMEOUT);
132 printf("send option \"timeout %s\"\n", (char *)pkt);
134 pkt += strlen((char *)pkt) + 1;
142 *s++ = htons(TFTP_ACK);
143 *s++ = htons(TftpBlock);
148 case STATE_TOO_LARGE:
151 *s++ = htons(TFTP_ERROR);
154 strcpy ((char *)pkt, "File too large");
155 pkt += 14 /*strlen("File too large")*/ + 1;
159 case STATE_BAD_MAGIC:
162 *s++ = htons(TFTP_ERROR);
165 strcpy ((char *)pkt, "File has bad magic");
166 pkt += 18 /*strlen("File has bad magic")*/ + 1;
171 NetSendUDPPacket(NetServerEther, NetServerIP, TftpServerPort, TftpOurPort, len);
176 TftpHandler (uchar * pkt, unsigned dest, unsigned src, unsigned len)
181 if (dest != TftpOurPort) {
184 if (TftpState != STATE_RRQ && src != TftpServerPort) {
192 /* warning: don't use increment (++) in ntohs() macros!! */
196 switch (ntohs(proto)) {
207 printf("Got OACK: %s %s\n", pkt, pkt+strlen(pkt)+1);
209 TftpState = STATE_OACK;
210 TftpServerPort = src;
211 TftpSend (); /* Send ACK */
217 TftpBlock = ntohs(*(ushort *)pkt);
220 * RFC1350 specifies that the first data packet will
221 * have sequence number 1. If we receive a sequence
222 * number of 0 this means that there was a wrap
223 * around of the (16 bit) counter.
225 if (TftpBlock == 0) {
227 TftpBlockWrapOffset += TFTP_BLOCK_SIZE * TFTP_SEQUENCE_SIZE;
228 printf ("\n\t %lu MB received\n\t ", TftpBlockWrapOffset>>20);
230 if (((TftpBlock - 1) % 10) == 0) {
232 } else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 0) {
238 if (TftpState == STATE_RRQ) {
239 puts ("Server did not acknowledge timeout option!\n");
243 if (TftpState == STATE_RRQ || TftpState == STATE_OACK) {
244 /* first block received */
245 TftpState = STATE_DATA;
246 TftpServerPort = src;
249 TftpBlockWrapOffset = 0;
251 if (TftpBlock != 1) { /* Assertion */
252 printf ("\nTFTP error: "
253 "First block is not block 1 (%ld)\n"
254 "Starting again\n\n",
261 if (TftpBlock == TftpLastBlock) {
263 * Same block again; ignore it.
268 TftpLastBlock = TftpBlock;
269 NetSetTimeout (TIMEOUT * CFG_HZ, TftpTimeout);
271 store_block (TftpBlock - 1, pkt + 2, len);
274 * Acknoledge the block just received, which will prompt
275 * the server for the next one.
279 if (len < TFTP_BLOCK_SIZE) {
281 * We received the whole thing. Try to
285 NetState = NETLOOP_SUCCESS;
290 printf ("\nTFTP error: '%s' (%d)\n",
291 pkt + 2, ntohs(*(ushort *)pkt));
292 puts ("Starting again\n\n");
302 if (++TftpTimeoutCount > TIMEOUT_COUNT) {
303 puts ("\nRetry count exceeded; starting again\n");
307 NetSetTimeout (TIMEOUT * CFG_HZ, TftpTimeout);
316 #ifdef CONFIG_TFTP_PORT
317 char *ep; /* Environment pointer */
320 if (BootFile[0] == '\0') {
321 sprintf(default_filename, "%02lX%02lX%02lX%02lX.img",
323 (NetOurIP >> 8) & 0xFF,
324 (NetOurIP >> 16) & 0xFF,
325 (NetOurIP >> 24) & 0xFF );
326 tftp_filename = default_filename;
328 printf ("*** Warning: no boot file name; using '%s'\n",
331 tftp_filename = BootFile;
334 #if defined(CONFIG_NET_MULTI)
335 printf ("Using %s device\n", eth_get_name());
337 puts ("TFTP from server "); print_IPaddr (NetServerIP);
338 puts ("; our IP address is "); print_IPaddr (NetOurIP);
340 /* Check if we need to send across this subnet */
341 if (NetOurGatewayIP && NetOurSubnetMask) {
342 IPaddr_t OurNet = NetOurIP & NetOurSubnetMask;
343 IPaddr_t ServerNet = NetServerIP & NetOurSubnetMask;
345 if (OurNet != ServerNet) {
346 puts ("; sending through gateway ");
347 print_IPaddr (NetOurGatewayIP) ;
352 printf ("Filename '%s'.", tftp_filename);
354 if (NetBootFileSize) {
355 printf (" Size is 0x%x Bytes = ", NetBootFileSize<<9);
356 print_size (NetBootFileSize<<9, "");
361 printf ("Load address: 0x%lx\n", load_addr);
363 puts ("Loading: *\b");
365 NetSetTimeout (TIMEOUT * CFG_HZ, TftpTimeout);
366 NetSetHandler (TftpHandler);
368 TftpServerPort = WELL_KNOWN_PORT;
369 TftpTimeoutCount = 0;
370 TftpState = STATE_RRQ;
371 /* Use a pseudo-random port unless a specific port is set */
372 TftpOurPort = 1024 + (get_timer(0) % 3072);
373 #ifdef CONFIG_TFTP_PORT
374 if ((ep = getenv("tftpdstp")) != NULL) {
375 TftpServerPort = simple_strtol(ep, NULL, 10);
377 if ((ep = getenv("tftpsrcp")) != NULL) {
378 TftpOurPort= simple_strtol(ep, NULL, 10);
383 /* zero out server ether in case the server ip has changed */
384 memset(NetServerEther, 0, 6);
389 #endif /* CFG_CMD_NET */