blob: 961fdd1a4552197796cabf99fd45595b5f34f0ae [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
Luca Ceresolic42fc272011-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
Luca Ceresolib640ed32011-05-17 00:03:39 +00005 * Copyright 2011 Comelit Group SpA,
6 * Luca Ceresoli <luca.ceresoli@comelit.it>
wdenkfe8c2802002-11-03 00:38:21 +00007 */
8
9#include <common.h>
10#include <command.h>
11#include <net.h>
12#include "tftp.h"
13#include "bootp.h"
14
Luca Ceresolic42fc272011-05-14 05:49:56 +000015/* Well known TFTP port # */
16#define WELL_KNOWN_PORT 69
17/* Millisecs to timeout for lost pkt */
18#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000019#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresolic42fc272011-05-14 05:49:56 +000020/* # of timeouts before giving up */
21# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000022#else
23# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
24#endif
Luca Ceresolic42fc272011-05-14 05:49:56 +000025/* Number of "loading" hashes per line (for checking the image size) */
26#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000027
28/*
29 * TFTP operations.
30 */
31#define TFTP_RRQ 1
32#define TFTP_WRQ 2
33#define TFTP_DATA 3
34#define TFTP_ACK 4
35#define TFTP_ERROR 5
wdenk7182b0f2003-10-06 21:55:32 +000036#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000037
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020038static ulong TftpTimeoutMSecs = TIMEOUT;
39static int TftpTimeoutCountMax = TIMEOUT_COUNT;
40
41/*
42 * These globals govern the timeout behavior when attempting a connection to a
43 * TFTP server. TftpRRQTimeoutMSecs specifies the number of milliseconds to
44 * wait for the server to respond to initial connection. Second global,
45 * TftpRRQTimeoutCountMax, gives the number of such connection retries.
46 * TftpRRQTimeoutCountMax must be non-negative and TftpRRQTimeoutMSecs must be
47 * positive. The globals are meant to be set (and restored) by code needing
48 * non-standard timeout behavior when initiating a TFTP transfer.
49 */
50ulong TftpRRQTimeoutMSecs = TIMEOUT;
51int TftpRRQTimeoutCountMax = TIMEOUT_COUNT;
52
Remy Bohmerb46293f2009-10-28 22:13:40 +010053enum {
54 TFTP_ERR_UNDEFINED = 0,
55 TFTP_ERR_FILE_NOT_FOUND = 1,
56 TFTP_ERR_ACCESS_DENIED = 2,
57 TFTP_ERR_DISK_FULL = 3,
58 TFTP_ERR_UNEXPECTED_OPCODE = 4,
59 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
60 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
61};
62
Luca Ceresoli5079c762011-05-17 00:03:37 +000063static IPaddr_t TftpRemoteIP;
Luca Ceresolic42fc272011-05-14 05:49:56 +000064/* The UDP port at their end */
Luca Ceresoli5079c762011-05-17 00:03:37 +000065static int TftpRemotePort;
Luca Ceresolic42fc272011-05-14 05:49:56 +000066/* The UDP port at our end */
67static int TftpOurPort;
wdenkfe8c2802002-11-03 00:38:21 +000068static int TftpTimeoutCount;
Luca Ceresolic42fc272011-05-14 05:49:56 +000069/* packet sequence number */
70static ulong TftpBlock;
71/* last packet sequence number received */
72static ulong TftpLastBlock;
73/* count of sequence number wraparounds */
74static ulong TftpBlockWrap;
75/* memory offset due to wrapping */
76static ulong TftpBlockWrapOffset;
wdenkfe8c2802002-11-03 00:38:21 +000077static int TftpState;
Robin Getzb3b00ed2009-08-20 10:50:20 -040078#ifdef CONFIG_TFTP_TSIZE
Luca Ceresolic42fc272011-05-14 05:49:56 +000079/* The file size reported by the server */
80static int TftpTsize;
81/* The number of hashes we printed */
82static short TftpNumchars;
Robin Getzb3b00ed2009-08-20 10:50:20 -040083#endif
Simon Glass6a398d22011-10-24 18:00:07 +000084#ifdef CONFIG_CMD_TFTPPUT
85static int TftpWriting; /* 1 if writing, else 0 */
86static int TftpFinalBlock; /* 1 if we have sent the last block */
87#else
88#define TftpWriting 0
89#endif
wdenkef893942004-02-23 16:11:30 +000090
Luca Ceresoli562dfe52011-05-17 00:03:38 +000091#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +000092#define STATE_DATA 2
93#define STATE_TOO_LARGE 3
94#define STATE_BAD_MAGIC 4
wdenk7182b0f2003-10-06 21:55:32 +000095#define STATE_OACK 5
Luca Ceresolib640ed32011-05-17 00:03:39 +000096#define STATE_RECV_WRQ 6
Simon Glass6a398d22011-10-24 18:00:07 +000097#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +000098
Luca Ceresolic42fc272011-05-14 05:49:56 +000099/* default TFTP block size */
100#define TFTP_BLOCK_SIZE 512
101/* sequence number is 16 bit */
102#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenkef893942004-02-23 16:11:30 +0000103
wdenkfe8c2802002-11-03 00:38:21 +0000104#define DEFAULT_NAME_LEN (8 + 4 + 1)
105static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100106
107#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
108#define MAX_LEN 128
109#else
110#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
111#endif
112
113static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000114
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200115#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200116extern flash_info_t flash_info[];
wdenkfe8c2802002-11-03 00:38:21 +0000117#endif
118
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200119/* 512 is poor choice for ethernet, MTU is typically 1500.
120 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff7280da72007-06-11 10:41:07 -0500121 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200122 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff7280da72007-06-11 10:41:07 -0500123 */
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200124#ifdef CONFIG_TFTP_BLOCKSIZE
125#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
126#else
David Updegraff7280da72007-06-11 10:41:07 -0500127#define TFTP_MTU_BLOCKSIZE 1468
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200128#endif
129
Luca Ceresolif40538a2011-05-14 05:49:57 +0000130static unsigned short TftpBlkSize = TFTP_BLOCK_SIZE;
131static unsigned short TftpBlkSizeOption = TFTP_MTU_BLOCKSIZE;
David Updegraff7280da72007-06-11 10:41:07 -0500132
133#ifdef CONFIG_MCAST_TFTP
134#include <malloc.h>
135#define MTFTP_BITMAPSIZE 0x1000
136static unsigned *Bitmap;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000137static int PrevBitmapHole, Mapsize = MTFTP_BITMAPSIZE;
Luca Ceresoli4e7a02b2011-05-14 05:50:03 +0000138static uchar ProhibitMcast, MasterClient;
139static uchar Multicast;
David Updegraff7280da72007-06-11 10:41:07 -0500140extern IPaddr_t Mcast_addr;
141static int Mcast_port;
142static ulong TftpEndingBlock; /* can get 'last' block before done..*/
143
Luca Ceresolif40538a2011-05-14 05:49:57 +0000144static void parse_multicast_oack(char *pkt, int len);
David Updegraff7280da72007-06-11 10:41:07 -0500145
146static void
147mcast_cleanup(void)
148{
Luca Ceresoli6072fcd2011-05-14 05:50:01 +0000149 if (Mcast_addr)
150 eth_mcast_join(Mcast_addr, 0);
151 if (Bitmap)
152 free(Bitmap);
Luca Ceresolif40538a2011-05-14 05:49:57 +0000153 Bitmap = NULL;
David Updegraff7280da72007-06-11 10:41:07 -0500154 Mcast_addr = Multicast = Mcast_port = 0;
155 TftpEndingBlock = -1;
156}
157
158#endif /* CONFIG_MCAST_TFTP */
159
wdenkfe8c2802002-11-03 00:38:21 +0000160static __inline__ void
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000161store_block(unsigned block, uchar *src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000162{
David Updegraff7280da72007-06-11 10:41:07 -0500163 ulong offset = block * TftpBlkSize + TftpBlockWrapOffset;
wdenkef893942004-02-23 16:11:30 +0000164 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200165#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000166 int i, rc = 0;
167
Luca Ceresolif40538a2011-05-14 05:49:57 +0000168 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000169 /* start address in flash? */
Jochen Friedrichd31a59b2008-09-02 11:24:59 +0200170 if (flash_info[i].flash_id == FLASH_UNKNOWN)
171 continue;
wdenkfe8c2802002-11-03 00:38:21 +0000172 if (load_addr + offset >= flash_info[i].start[0]) {
173 rc = 1;
174 break;
175 }
176 }
177
178 if (rc) { /* Flash is destination for this packet */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000179 rc = flash_write((char *)src, (ulong)(load_addr+offset), len);
wdenkfe8c2802002-11-03 00:38:21 +0000180 if (rc) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000181 flash_perror(rc);
wdenkfe8c2802002-11-03 00:38:21 +0000182 NetState = NETLOOP_FAIL;
183 return;
184 }
185 }
186 else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200187#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000188 {
189 (void)memcpy((void *)(load_addr + offset), src, len);
190 }
David Updegraff7280da72007-06-11 10:41:07 -0500191#ifdef CONFIG_MCAST_TFTP
192 if (Multicast)
193 ext2_set_bit(block, Bitmap);
194#endif
wdenkfe8c2802002-11-03 00:38:21 +0000195
196 if (NetBootFileXferSize < newsize)
197 NetBootFileXferSize = newsize;
198}
199
Simon Glassbd8a0e02011-10-24 18:00:04 +0000200/* Clear our state ready for a new transfer */
201void new_transfer(void)
202{
203 TftpLastBlock = 0;
204 TftpBlockWrap = 0;
205 TftpBlockWrapOffset = 0;
206#ifdef CONFIG_CMD_TFTPPUT
207 TftpFinalBlock = 0;
208#endif
209}
Simon Glass6a398d22011-10-24 18:00:07 +0000210
211#ifdef CONFIG_CMD_TFTPPUT
212/**
213 * Load the next block from memory to be sent over tftp.
214 *
215 * @param block Block number to send
216 * @param dst Destination buffer for data
217 * @param len Number of bytes in block (this one and every other)
218 * @return number of bytes loaded
219 */
220static int load_block(unsigned block, uchar *dst, unsigned len)
221{
222 /* We may want to get the final block from the previous set */
223 ulong offset = ((int)block - 1) * len + TftpBlockWrapOffset;
224 ulong tosend = len;
225
226 tosend = min(NetBootFileXferSize - offset, tosend);
227 (void)memcpy(dst, (void *)(save_addr + offset), tosend);
228 debug("%s: block=%d, offset=%ld, len=%d, tosend=%ld\n", __func__,
229 block, offset, len, tosend);
230 return tosend;
231}
232#endif
Simon Glassbd8a0e02011-10-24 18:00:04 +0000233
Luca Ceresolif40538a2011-05-14 05:49:57 +0000234static void TftpSend(void);
235static void TftpTimeout(void);
wdenkfe8c2802002-11-03 00:38:21 +0000236
237/**********************************************************************/
238
Simon Glassb437aad2011-10-24 18:00:03 +0000239static void show_block_marker(void)
240{
241#ifdef CONFIG_TFTP_TSIZE
242 if (TftpTsize) {
243 ulong pos = TftpBlock * TftpBlkSize + TftpBlockWrapOffset;
244
245 while (TftpNumchars < pos * 50 / TftpTsize) {
246 putc('#');
247 TftpNumchars++;
248 }
Simon Glass6a398d22011-10-24 18:00:07 +0000249 } else
Simon Glassb437aad2011-10-24 18:00:03 +0000250#endif
Simon Glass6a398d22011-10-24 18:00:07 +0000251 {
Simon Glassb437aad2011-10-24 18:00:03 +0000252 if (((TftpBlock - 1) % 10) == 0)
253 putc('#');
254 else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 0)
255 puts("\n\t ");
256 }
257}
258
Simon Glassbd8a0e02011-10-24 18:00:04 +0000259/**
260 * restart the current transfer due to an error
261 *
262 * @param msg Message to print for user
263 */
264static void restart(const char *msg)
265{
266 printf("\n%s; starting again\n", msg);
267#ifdef CONFIG_MCAST_TFTP
268 mcast_cleanup();
269#endif
270 NetStartAgain();
271}
272
273/*
274 * Check if the block number has wrapped, and update progress
275 *
276 * TODO: The egregious use of global variables in this file should be tidied.
277 */
278static void update_block_number(void)
279{
280 /*
281 * RFC1350 specifies that the first data packet will
282 * have sequence number 1. If we receive a sequence
283 * number of 0 this means that there was a wrap
284 * around of the (16 bit) counter.
285 */
286 if (TftpBlock == 0) {
287 TftpBlockWrap++;
288 TftpBlockWrapOffset += TftpBlkSize * TFTP_SEQUENCE_SIZE;
289 TftpTimeoutCount = 0; /* we've done well, reset thhe timeout */
290 } else {
291 show_block_marker();
292 }
293}
294
Simon Glassb437aad2011-10-24 18:00:03 +0000295/* The TFTP get or put is complete */
296static void tftp_complete(void)
297{
298#ifdef CONFIG_TFTP_TSIZE
299 /* Print hash marks for the last packet received */
300 while (TftpTsize && TftpNumchars < 49) {
301 putc('#');
302 TftpNumchars++;
303 }
304#endif
305 puts("\ndone\n");
306 NetState = NETLOOP_SUCCESS;
307}
308
wdenkfe8c2802002-11-03 00:38:21 +0000309static void
Luca Ceresolif40538a2011-05-14 05:49:57 +0000310TftpSend(void)
wdenkfe8c2802002-11-03 00:38:21 +0000311{
Simon Glass6a398d22011-10-24 18:00:07 +0000312 uchar *pkt;
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000313 volatile uchar *xp;
314 int len = 0;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200315 volatile ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000316
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200317#ifdef CONFIG_MCAST_TFTP
David Updegraff7280da72007-06-11 10:41:07 -0500318 /* Multicast TFTP.. non-MasterClients do not ACK data. */
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200319 if (Multicast
320 && (TftpState == STATE_DATA)
321 && (MasterClient == 0))
David Updegraff7280da72007-06-11 10:41:07 -0500322 return;
323#endif
wdenkfe8c2802002-11-03 00:38:21 +0000324 /*
325 * We will always be sending some sort of packet, so
326 * cobble together the packet headers now.
327 */
Simon Glass6a398d22011-10-24 18:00:07 +0000328 pkt = (uchar *)(NetTxPacket + NetEthHdrSize() + IP_HDR_SIZE);
wdenkfe8c2802002-11-03 00:38:21 +0000329
330 switch (TftpState) {
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000331 case STATE_SEND_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000332 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000333 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200334 s = (ushort *)pkt;
Simon Glass6a398d22011-10-24 18:00:07 +0000335 *s++ = htons(TftpState == STATE_SEND_RRQ ? TFTP_RRQ :
336 TFTP_WRQ);
Wolfgang Denk3135c542005-08-26 01:36:03 +0200337 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000338 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000339 pkt += strlen(tftp_filename) + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000340 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000341 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000342 strcpy((char *)pkt, "timeout");
wdenk7182b0f2003-10-06 21:55:32 +0000343 pkt += 7 /*strlen("timeout")*/ + 1;
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100344 sprintf((char *)pkt, "%lu", TftpTimeoutMSecs / 1000);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400345 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenk7182b0f2003-10-06 21:55:32 +0000346 pkt += strlen((char *)pkt) + 1;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400347#ifdef CONFIG_TFTP_TSIZE
Simon Glass6a398d22011-10-24 18:00:07 +0000348 pkt += sprintf((char *)pkt, "tsize%c%lu%c",
349 0, NetBootFileXferSize, 0);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400350#endif
David Updegraff7280da72007-06-11 10:41:07 -0500351 /* try for more effic. blk size */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000352 pkt += sprintf((char *)pkt, "blksize%c%d%c",
353 0, TftpBlkSizeOption, 0);
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200354#ifdef CONFIG_MCAST_TFTP
David Updegraff7280da72007-06-11 10:41:07 -0500355 /* Check all preconditions before even trying the option */
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200356 if (!ProhibitMcast
Luca Ceresolif40538a2011-05-14 05:49:57 +0000357 && (Bitmap = malloc(Mapsize))
David Updegraff7280da72007-06-11 10:41:07 -0500358 && eth_get_dev()->mcast) {
359 free(Bitmap);
Luca Ceresolif40538a2011-05-14 05:49:57 +0000360 Bitmap = NULL;
361 pkt += sprintf((char *)pkt, "multicast%c%c", 0, 0);
David Updegraff7280da72007-06-11 10:41:07 -0500362 }
363#endif /* CONFIG_MCAST_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000364 len = pkt - xp;
365 break;
366
wdenk7182b0f2003-10-06 21:55:32 +0000367 case STATE_OACK:
David Updegraff7280da72007-06-11 10:41:07 -0500368#ifdef CONFIG_MCAST_TFTP
369 /* My turn! Start at where I need blocks I missed.*/
370 if (Multicast)
Luca Ceresolif40538a2011-05-14 05:49:57 +0000371 TftpBlock = ext2_find_next_zero_bit(Bitmap,
372 (Mapsize*8), 0);
David Updegraff7280da72007-06-11 10:41:07 -0500373 /*..falling..*/
374#endif
Luca Ceresolib640ed32011-05-17 00:03:39 +0000375
376 case STATE_RECV_WRQ:
David Updegraff7280da72007-06-11 10:41:07 -0500377 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000378 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200379 s = (ushort *)pkt;
Simon Glass6a398d22011-10-24 18:00:07 +0000380 s[0] = htons(TFTP_ACK);
381 s[1] = htons(TftpBlock);
382 pkt = (uchar *)(s + 2);
383#ifdef CONFIG_CMD_TFTPPUT
384 if (TftpWriting) {
385 int toload = TftpBlkSize;
386 int loaded = load_block(TftpBlock, pkt, toload);
387
388 s[0] = htons(TFTP_DATA);
389 pkt += loaded;
390 TftpFinalBlock = (loaded < toload);
391 }
392#endif
wdenkfe8c2802002-11-03 00:38:21 +0000393 len = pkt - xp;
394 break;
395
396 case STATE_TOO_LARGE:
397 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200398 s = (ushort *)pkt;
399 *s++ = htons(TFTP_ERROR);
Simon Glass6a398d22011-10-24 18:00:07 +0000400 *s++ = htons(3);
401
Wolfgang Denk3135c542005-08-26 01:36:03 +0200402 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000403 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000404 pkt += 14 /*strlen("File too large")*/ + 1;
405 len = pkt - xp;
406 break;
407
408 case STATE_BAD_MAGIC:
409 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200410 s = (ushort *)pkt;
411 *s++ = htons(TFTP_ERROR);
412 *s++ = htons(2);
413 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000414 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000415 pkt += 18 /*strlen("File has bad magic")*/ + 1;
416 len = pkt - xp;
417 break;
418 }
419
Luca Ceresoli5079c762011-05-17 00:03:37 +0000420 NetSendUDPPacket(NetServerEther, TftpRemoteIP, TftpRemotePort,
Luca Ceresolic42fc272011-05-14 05:49:56 +0000421 TftpOurPort, len);
wdenkfe8c2802002-11-03 00:38:21 +0000422}
423
Simon Glass6a398d22011-10-24 18:00:07 +0000424
425static void icmp_handler(unsigned type, unsigned code, unsigned dest,
426 IPaddr_t sip, unsigned src, uchar *pkt, unsigned len)
427{
428 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
429 /* Oh dear the other end has gone away */
430 restart("TFTP server died");
431 }
432}
wdenkfe8c2802002-11-03 00:38:21 +0000433
434static void
Luca Ceresoli428ab362011-04-18 06:19:50 +0000435TftpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
436 unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000437{
438 ushort proto;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200439 ushort *s;
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200440 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000441
442 if (dest != TftpOurPort) {
David Updegraff7280da72007-06-11 10:41:07 -0500443#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200444 if (Multicast
David Updegraff7280da72007-06-11 10:41:07 -0500445 && (!Mcast_port || (dest != Mcast_port)))
446#endif
Luca Ceresoli09b18232011-05-14 05:50:02 +0000447 return;
wdenkfe8c2802002-11-03 00:38:21 +0000448 }
Luca Ceresolib640ed32011-05-17 00:03:39 +0000449 if (TftpState != STATE_SEND_RRQ && src != TftpRemotePort &&
Simon Glass6a398d22011-10-24 18:00:07 +0000450 TftpState != STATE_RECV_WRQ && TftpState != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000451 return;
wdenkfe8c2802002-11-03 00:38:21 +0000452
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000453 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000454 return;
wdenkfe8c2802002-11-03 00:38:21 +0000455 len -= 2;
456 /* warning: don't use increment (++) in ntohs() macros!! */
Wolfgang Denk3135c542005-08-26 01:36:03 +0200457 s = (ushort *)pkt;
458 proto = *s++;
459 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000460 switch (ntohs(proto)) {
461
462 case TFTP_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000463 break;
464
wdenkfe8c2802002-11-03 00:38:21 +0000465 case TFTP_ACK:
Simon Glass6a398d22011-10-24 18:00:07 +0000466#ifdef CONFIG_CMD_TFTPPUT
467 if (TftpWriting) {
468 if (TftpFinalBlock) {
469 tftp_complete();
470 } else {
471 /*
472 * Move to the next block. We want our block
473 * count to wrap just like the other end!
474 */
475 int block = ntohs(*s);
476 int ack_ok = (TftpBlock == block);
477
478 TftpBlock = (unsigned short)(block + 1);
479 update_block_number();
480 if (ack_ok)
481 TftpSend(); /* Send next data block */
482 }
483 }
484#endif
wdenkfe8c2802002-11-03 00:38:21 +0000485 break;
Simon Glass6a398d22011-10-24 18:00:07 +0000486
wdenkfe8c2802002-11-03 00:38:21 +0000487 default:
488 break;
489
Luca Ceresolib640ed32011-05-17 00:03:39 +0000490#ifdef CONFIG_CMD_TFTPSRV
491 case TFTP_WRQ:
492 debug("Got WRQ\n");
493 TftpRemoteIP = sip;
494 TftpRemotePort = src;
495 TftpOurPort = 1024 + (get_timer(0) % 3072);
Simon Glassbd8a0e02011-10-24 18:00:04 +0000496 new_transfer();
Luca Ceresolib640ed32011-05-17 00:03:39 +0000497 TftpSend(); /* Send ACK(0) */
498 break;
499#endif
500
wdenk7182b0f2003-10-06 21:55:32 +0000501 case TFTP_OACK:
Wolfgang Denk12730c72009-08-10 09:59:10 +0200502 debug("Got OACK: %s %s\n",
503 pkt,
504 pkt + strlen((char *)pkt) + 1);
wdenk7182b0f2003-10-06 21:55:32 +0000505 TftpState = STATE_OACK;
Luca Ceresoli5079c762011-05-17 00:03:37 +0000506 TftpRemotePort = src;
Wolfgang Denk8b70f342007-08-31 10:01:51 +0200507 /*
508 * Check for 'blksize' option.
509 * Careful: "i" is signed, "len" is unsigned, thus
510 * something like "len-8" may give a *huge* number
511 */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000512 for (i = 0; i+8 < len; i++) {
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000513 if (strcmp((char *)pkt+i, "blksize") == 0) {
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200514 TftpBlkSize = (unsigned short)
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000515 simple_strtoul((char *)pkt+i+8, NULL,
Luca Ceresolif40538a2011-05-14 05:49:57 +0000516 10);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400517 debug("Blocksize ack: %s, %d\n",
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000518 (char *)pkt+i+8, TftpBlkSize);
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200519 }
Robin Getzb3b00ed2009-08-20 10:50:20 -0400520#ifdef CONFIG_TFTP_TSIZE
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000521 if (strcmp((char *)pkt+i, "tsize") == 0) {
522 TftpTsize = simple_strtoul((char *)pkt+i+6,
Luca Ceresolic42fc272011-05-14 05:49:56 +0000523 NULL, 10);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400524 debug("size = %s, %d\n",
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000525 (char *)pkt+i+6, TftpTsize);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400526 }
527#endif
David Updegraff7280da72007-06-11 10:41:07 -0500528 }
529#ifdef CONFIG_MCAST_TFTP
Luca Ceresolif40538a2011-05-14 05:49:57 +0000530 parse_multicast_oack((char *)pkt, len-1);
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200531 if ((Multicast) && (!MasterClient))
David Updegraff7280da72007-06-11 10:41:07 -0500532 TftpState = STATE_DATA; /* passive.. */
533 else
534#endif
Simon Glass6a398d22011-10-24 18:00:07 +0000535#ifdef CONFIG_CMD_TFTPPUT
536 if (TftpWriting) {
537 /* Get ready to send the first block */
538 TftpState = STATE_DATA;
539 TftpBlock++;
540 }
541#endif
542 TftpSend(); /* Send ACK or first data block */
wdenk7182b0f2003-10-06 21:55:32 +0000543 break;
wdenkfe8c2802002-11-03 00:38:21 +0000544 case TFTP_DATA:
545 if (len < 2)
546 return;
547 len -= 2;
548 TftpBlock = ntohs(*(ushort *)pkt);
wdenkef893942004-02-23 16:11:30 +0000549
Simon Glassbd8a0e02011-10-24 18:00:04 +0000550 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000551
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000552 if (TftpState == STATE_SEND_RRQ)
Robin Getz9e0a4d62009-07-23 03:01:03 -0400553 debug("Server did not acknowledge timeout option!\n");
wdenk7182b0f2003-10-06 21:55:32 +0000554
Luca Ceresolib640ed32011-05-17 00:03:39 +0000555 if (TftpState == STATE_SEND_RRQ || TftpState == STATE_OACK ||
556 TftpState == STATE_RECV_WRQ) {
wdenkef893942004-02-23 16:11:30 +0000557 /* first block received */
wdenkfe8c2802002-11-03 00:38:21 +0000558 TftpState = STATE_DATA;
Luca Ceresoli5079c762011-05-17 00:03:37 +0000559 TftpRemotePort = src;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000560 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000561
David Updegraff7280da72007-06-11 10:41:07 -0500562#ifdef CONFIG_MCAST_TFTP
563 if (Multicast) { /* start!=1 common if mcast */
564 TftpLastBlock = TftpBlock - 1;
565 } else
566#endif
wdenkfe8c2802002-11-03 00:38:21 +0000567 if (TftpBlock != 1) { /* Assertion */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000568 printf("\nTFTP error: "
569 "First block is not block 1 (%ld)\n"
570 "Starting again\n\n",
wdenkfe8c2802002-11-03 00:38:21 +0000571 TftpBlock);
Luca Ceresolif40538a2011-05-14 05:49:57 +0000572 NetStartAgain();
wdenkfe8c2802002-11-03 00:38:21 +0000573 break;
574 }
575 }
576
577 if (TftpBlock == TftpLastBlock) {
578 /*
579 * Same block again; ignore it.
580 */
581 break;
582 }
583
584 TftpLastBlock = TftpBlock;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +0200585 TftpTimeoutCountMax = TIMEOUT_COUNT;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000586 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
wdenkfe8c2802002-11-03 00:38:21 +0000587
Luca Ceresolif40538a2011-05-14 05:49:57 +0000588 store_block(TftpBlock - 1, pkt + 2, len);
wdenkfe8c2802002-11-03 00:38:21 +0000589
590 /*
Luca Ceresoli2f3dc0a2011-05-17 00:03:41 +0000591 * Acknowledge the block just received, which will prompt
Luca Ceresoli5079c762011-05-17 00:03:37 +0000592 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000593 */
David Updegraff7280da72007-06-11 10:41:07 -0500594#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200595 /* if I am the MasterClient, actively calculate what my next
596 * needed block is; else I'm passive; not ACKING
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100597 */
David Updegraff7280da72007-06-11 10:41:07 -0500598 if (Multicast) {
599 if (len < TftpBlkSize) {
600 TftpEndingBlock = TftpBlock;
601 } else if (MasterClient) {
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200602 TftpBlock = PrevBitmapHole =
David Updegraff7280da72007-06-11 10:41:07 -0500603 ext2_find_next_zero_bit(
604 Bitmap,
605 (Mapsize*8),
606 PrevBitmapHole);
607 if (TftpBlock > ((Mapsize*8) - 1)) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000608 printf("tftpfile too big\n");
David Updegraff7280da72007-06-11 10:41:07 -0500609 /* try to double it and retry */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000610 Mapsize <<= 1;
David Updegraff7280da72007-06-11 10:41:07 -0500611 mcast_cleanup();
Luca Ceresolif40538a2011-05-14 05:49:57 +0000612 NetStartAgain();
David Updegraff7280da72007-06-11 10:41:07 -0500613 return;
614 }
615 TftpLastBlock = TftpBlock;
616 }
617 }
618#endif
Luca Ceresolif40538a2011-05-14 05:49:57 +0000619 TftpSend();
wdenkfe8c2802002-11-03 00:38:21 +0000620
David Updegraff7280da72007-06-11 10:41:07 -0500621#ifdef CONFIG_MCAST_TFTP
622 if (Multicast) {
623 if (MasterClient && (TftpBlock >= TftpEndingBlock)) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000624 puts("\nMulticast tftp done\n");
David Updegraff7280da72007-06-11 10:41:07 -0500625 mcast_cleanup();
626 NetState = NETLOOP_SUCCESS;
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200627 }
David Updegraff7280da72007-06-11 10:41:07 -0500628 }
629 else
630#endif
Simon Glassb437aad2011-10-24 18:00:03 +0000631 if (len < TftpBlkSize)
632 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000633 break;
634
635 case TFTP_ERROR:
Luca Ceresolif40538a2011-05-14 05:49:57 +0000636 printf("\nTFTP error: '%s' (%d)\n",
637 pkt + 2, ntohs(*(ushort *)pkt));
Remy Bohmerb46293f2009-10-28 22:13:40 +0100638
639 switch (ntohs(*(ushort *)pkt)) {
640 case TFTP_ERR_FILE_NOT_FOUND:
641 case TFTP_ERR_ACCESS_DENIED:
642 puts("Not retrying...\n");
643 eth_halt();
644 NetState = NETLOOP_FAIL;
645 break;
646 case TFTP_ERR_UNDEFINED:
647 case TFTP_ERR_DISK_FULL:
648 case TFTP_ERR_UNEXPECTED_OPCODE:
649 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
650 case TFTP_ERR_FILE_ALREADY_EXISTS:
651 default:
652 puts("Starting again\n\n");
David Updegraff7280da72007-06-11 10:41:07 -0500653#ifdef CONFIG_MCAST_TFTP
Remy Bohmerb46293f2009-10-28 22:13:40 +0100654 mcast_cleanup();
David Updegraff7280da72007-06-11 10:41:07 -0500655#endif
Remy Bohmerb46293f2009-10-28 22:13:40 +0100656 NetStartAgain();
657 break;
658 }
wdenkfe8c2802002-11-03 00:38:21 +0000659 break;
660 }
661}
662
663
664static void
Luca Ceresolif40538a2011-05-14 05:49:57 +0000665TftpTimeout(void)
wdenkfe8c2802002-11-03 00:38:21 +0000666{
Bartlomiej Sieka371cde72008-10-01 15:26:29 +0200667 if (++TftpTimeoutCount > TftpTimeoutCountMax) {
Simon Glassbd8a0e02011-10-24 18:00:04 +0000668 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000669 } else {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000670 puts("T ");
671 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000672 if (TftpState != STATE_RECV_WRQ)
673 TftpSend();
wdenkfe8c2802002-11-03 00:38:21 +0000674 }
675}
676
677
Simon Glassf59675a2011-10-24 18:00:05 +0000678void TftpStart(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000679{
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200680 char *ep; /* Environment pointer */
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200681
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100682 /*
683 * Allow the user to choose TFTP blocksize and timeout.
684 * TFTP protocol has a minimal timeout of 1 second.
685 */
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000686 ep = getenv("tftpblocksize");
687 if (ep != NULL)
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200688 TftpBlkSizeOption = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100689
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000690 ep = getenv("tftptimeout");
691 if (ep != NULL)
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100692 TftpTimeoutMSecs = simple_strtol(ep, NULL, 10);
693
694 if (TftpTimeoutMSecs < 1000) {
695 printf("TFTP timeout (%ld ms) too low, "
696 "set minimum = 1000 ms\n",
697 TftpTimeoutMSecs);
698 TftpTimeoutMSecs = 1000;
699 }
700
701 debug("TFTP blocksize = %i, timeout = %ld ms\n",
702 TftpBlkSizeOption, TftpTimeoutMSecs);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200703
Luca Ceresoli5079c762011-05-17 00:03:37 +0000704 TftpRemoteIP = NetServerIP;
wdenkfe8c2802002-11-03 00:38:21 +0000705 if (BootFile[0] == '\0') {
wdenkfe8c2802002-11-03 00:38:21 +0000706 sprintf(default_filename, "%02lX%02lX%02lX%02lX.img",
Wolfgang Denkdec97322005-08-04 01:09:44 +0200707 NetOurIP & 0xFF,
708 (NetOurIP >> 8) & 0xFF,
709 (NetOurIP >> 16) & 0xFF,
Luca Ceresolif40538a2011-05-14 05:49:57 +0000710 (NetOurIP >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100711
712 strncpy(tftp_filename, default_filename, MAX_LEN);
713 tftp_filename[MAX_LEN-1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000714
Luca Ceresolif40538a2011-05-14 05:49:57 +0000715 printf("*** Warning: no boot file name; using '%s'\n",
wdenkfe8c2802002-11-03 00:38:21 +0000716 tftp_filename);
717 } else {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000718 char *p = strchr(BootFile, ':');
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100719
720 if (p == NULL) {
721 strncpy(tftp_filename, BootFile, MAX_LEN);
722 tftp_filename[MAX_LEN-1] = 0;
723 } else {
Luca Ceresoli5079c762011-05-17 00:03:37 +0000724 TftpRemoteIP = string_to_ip(BootFile);
Peter Tyser5e58efa2008-12-01 16:29:38 -0600725 strncpy(tftp_filename, p + 1, MAX_LEN);
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100726 tftp_filename[MAX_LEN-1] = 0;
727 }
wdenkfe8c2802002-11-03 00:38:21 +0000728 }
729
Luca Ceresolif40538a2011-05-14 05:49:57 +0000730 printf("Using %s device\n", eth_get_name());
Simon Glass6a398d22011-10-24 18:00:07 +0000731 printf("TFTP %s server %pI4; our IP address is %pI4",
732 protocol == TFTPPUT ? "to" : "from", &TftpRemoteIP, &NetOurIP);
wdenkfe8c2802002-11-03 00:38:21 +0000733
734 /* Check if we need to send across this subnet */
735 if (NetOurGatewayIP && NetOurSubnetMask) {
Luca Ceresoli09b18232011-05-14 05:50:02 +0000736 IPaddr_t OurNet = NetOurIP & NetOurSubnetMask;
Luca Ceresoli5079c762011-05-17 00:03:37 +0000737 IPaddr_t RemoteNet = TftpRemoteIP & NetOurSubnetMask;
wdenkfe8c2802002-11-03 00:38:21 +0000738
Luca Ceresoli5079c762011-05-17 00:03:37 +0000739 if (OurNet != RemoteNet)
Luca Ceresoli09b18232011-05-14 05:50:02 +0000740 printf("; sending through gateway %pI4",
741 &NetOurGatewayIP);
wdenkfe8c2802002-11-03 00:38:21 +0000742 }
Luca Ceresolif40538a2011-05-14 05:49:57 +0000743 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000744
Luca Ceresolif40538a2011-05-14 05:49:57 +0000745 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000746
747 if (NetBootFileSize) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000748 printf(" Size is 0x%x Bytes = ", NetBootFileSize<<9);
749 print_size(NetBootFileSize<<9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000750 }
751
Luca Ceresolif40538a2011-05-14 05:49:57 +0000752 putc('\n');
Simon Glass6a398d22011-10-24 18:00:07 +0000753#ifdef CONFIG_CMD_TFTPPUT
754 TftpWriting = (protocol == TFTPPUT);
755 if (TftpWriting) {
756 printf("Save address: 0x%lx\n", save_addr);
757 printf("Save size: 0x%lx\n", save_size);
758 NetBootFileXferSize = save_size;
759 puts("Saving: *\b");
760 TftpState = STATE_SEND_WRQ;
761 new_transfer();
762 } else
763#endif
764 {
765 printf("Load address: 0x%lx\n", load_addr);
766 puts("Loading: *\b");
767 TftpState = STATE_SEND_RRQ;
768 }
wdenkfe8c2802002-11-03 00:38:21 +0000769
Bartlomiej Sieka371cde72008-10-01 15:26:29 +0200770 TftpTimeoutCountMax = TftpRRQTimeoutCountMax;
771
Luca Ceresolif40538a2011-05-14 05:49:57 +0000772 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
773 NetSetHandler(TftpHandler);
Simon Glass6a398d22011-10-24 18:00:07 +0000774 net_set_icmp_handler(icmp_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000775
Luca Ceresoli5079c762011-05-17 00:03:37 +0000776 TftpRemotePort = WELL_KNOWN_PORT;
wdenkfe8c2802002-11-03 00:38:21 +0000777 TftpTimeoutCount = 0;
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200778 /* Use a pseudo-random port unless a specific port is set */
wdenkfe8c2802002-11-03 00:38:21 +0000779 TftpOurPort = 1024 + (get_timer(0) % 3072);
David Updegraff7280da72007-06-11 10:41:07 -0500780
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200781#ifdef CONFIG_TFTP_PORT
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000782 ep = getenv("tftpdstp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000783 if (ep != NULL)
Luca Ceresoli5079c762011-05-17 00:03:37 +0000784 TftpRemotePort = simple_strtol(ep, NULL, 10);
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000785 ep = getenv("tftpsrcp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000786 if (ep != NULL)
Luca Ceresolif40538a2011-05-14 05:49:57 +0000787 TftpOurPort = simple_strtol(ep, NULL, 10);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200788#endif
wdenk7182b0f2003-10-06 21:55:32 +0000789 TftpBlock = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000790
wdenke6466f62003-06-05 19:27:42 +0000791 /* zero out server ether in case the server ip has changed */
792 memset(NetServerEther, 0, 6);
David Updegraff7280da72007-06-11 10:41:07 -0500793 /* Revert TftpBlkSize to dflt */
794 TftpBlkSize = TFTP_BLOCK_SIZE;
795#ifdef CONFIG_MCAST_TFTP
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100796 mcast_cleanup();
David Updegraff7280da72007-06-11 10:41:07 -0500797#endif
Robin Getzb3b00ed2009-08-20 10:50:20 -0400798#ifdef CONFIG_TFTP_TSIZE
799 TftpTsize = 0;
800 TftpNumchars = 0;
801#endif
wdenke6466f62003-06-05 19:27:42 +0000802
Luca Ceresolif40538a2011-05-14 05:49:57 +0000803 TftpSend();
wdenkfe8c2802002-11-03 00:38:21 +0000804}
Luca Ceresolib640ed32011-05-17 00:03:39 +0000805
806#ifdef CONFIG_CMD_TFTPSRV
807void
808TftpStartServer(void)
809{
810 tftp_filename[0] = 0;
811
Luca Ceresolib640ed32011-05-17 00:03:39 +0000812 printf("Using %s device\n", eth_get_name());
Luca Ceresolib640ed32011-05-17 00:03:39 +0000813 printf("Listening for TFTP transfer on %pI4\n", &NetOurIP);
814 printf("Load address: 0x%lx\n", load_addr);
815
816 puts("Loading: *\b");
817
818 TftpTimeoutCountMax = TIMEOUT_COUNT;
819 TftpTimeoutCount = 0;
820 TftpTimeoutMSecs = TIMEOUT;
821 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
822
823 /* Revert TftpBlkSize to dflt */
824 TftpBlkSize = TFTP_BLOCK_SIZE;
825 TftpBlock = 0;
826 TftpOurPort = WELL_KNOWN_PORT;
827
828#ifdef CONFIG_TFTP_TSIZE
829 TftpTsize = 0;
830 TftpNumchars = 0;
831#endif
832
833 TftpState = STATE_RECV_WRQ;
834 NetSetHandler(TftpHandler);
835}
836#endif /* CONFIG_CMD_TFTPSRV */
wdenkfe8c2802002-11-03 00:38:21 +0000837
David Updegraff7280da72007-06-11 10:41:07 -0500838#ifdef CONFIG_MCAST_TFTP
839/* Credits: atftp project.
840 */
841
842/* pick up BcastAddr, Port, and whether I am [now] the master-client. *
843 * Frame:
844 * +-------+-----------+---+-------~~-------+---+
845 * | opc | multicast | 0 | addr, port, mc | 0 |
846 * +-------+-----------+---+-------~~-------+---+
847 * The multicast addr/port becomes what I listen to, and if 'mc' is '1' then
848 * I am the new master-client so must send ACKs to DataBlocks. If I am not
849 * master-client, I'm a passive client, gathering what DataBlocks I may and
850 * making note of which ones I got in my bitmask.
851 * In theory, I never go from master->passive..
852 * .. this comes in with pkt already pointing just past opc
853 */
854static void parse_multicast_oack(char *pkt, int len)
855{
Luca Ceresolif40538a2011-05-14 05:49:57 +0000856 int i;
857 IPaddr_t addr;
858 char *mc_adr, *port, *mc;
David Updegraff7280da72007-06-11 10:41:07 -0500859
Luca Ceresolif40538a2011-05-14 05:49:57 +0000860 mc_adr = port = mc = NULL;
David Updegraff7280da72007-06-11 10:41:07 -0500861 /* march along looking for 'multicast\0', which has to start at least
862 * 14 bytes back from the end.
863 */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000864 for (i = 0; i < len-14; i++)
865 if (strcmp(pkt+i, "multicast") == 0)
David Updegraff7280da72007-06-11 10:41:07 -0500866 break;
867 if (i >= (len-14)) /* non-Multicast OACK, ign. */
868 return;
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200869
Luca Ceresolif40538a2011-05-14 05:49:57 +0000870 i += 10; /* strlen multicast */
David Updegraff7280da72007-06-11 10:41:07 -0500871 mc_adr = pkt+i;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000872 for (; i < len; i++) {
David Updegraff7280da72007-06-11 10:41:07 -0500873 if (*(pkt+i) == ',') {
874 *(pkt+i) = '\0';
875 if (port) {
876 mc = pkt+i+1;
877 break;
878 } else {
879 port = pkt+i+1;
880 }
881 }
882 }
Luca Ceresoli6072fcd2011-05-14 05:50:01 +0000883 if (!port || !mc_adr || !mc)
884 return;
David Updegraff7280da72007-06-11 10:41:07 -0500885 if (Multicast && MasterClient) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000886 printf("I got a OACK as master Client, WRONG!\n");
David Updegraff7280da72007-06-11 10:41:07 -0500887 return;
888 }
889 /* ..I now accept packets destined for this MCAST addr, port */
890 if (!Multicast) {
891 if (Bitmap) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000892 printf("Internal failure! no mcast.\n");
David Updegraff7280da72007-06-11 10:41:07 -0500893 free(Bitmap);
Luca Ceresolif40538a2011-05-14 05:49:57 +0000894 Bitmap = NULL;
895 ProhibitMcast = 1;
David Updegraff7280da72007-06-11 10:41:07 -0500896 return ;
897 }
898 /* I malloc instead of pre-declare; so that if the file ends
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200899 * up being too big for this bitmap I can retry
900 */
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000901 Bitmap = malloc(Mapsize);
902 if (!Bitmap) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000903 printf("No Bitmap, no multicast. Sorry.\n");
904 ProhibitMcast = 1;
David Updegraff7280da72007-06-11 10:41:07 -0500905 return;
906 }
Luca Ceresolif40538a2011-05-14 05:49:57 +0000907 memset(Bitmap, 0, Mapsize);
David Updegraff7280da72007-06-11 10:41:07 -0500908 PrevBitmapHole = 0;
909 Multicast = 1;
910 }
911 addr = string_to_ip(mc_adr);
912 if (Mcast_addr != addr) {
913 if (Mcast_addr)
914 eth_mcast_join(Mcast_addr, 0);
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000915 Mcast_addr = addr;
916 if (eth_mcast_join(Mcast_addr, 1)) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000917 printf("Fail to set mcast, revert to TFTP\n");
918 ProhibitMcast = 1;
David Updegraff7280da72007-06-11 10:41:07 -0500919 mcast_cleanup();
920 NetStartAgain();
921 }
922 }
Luca Ceresolif40538a2011-05-14 05:49:57 +0000923 MasterClient = (unsigned char)simple_strtoul((char *)mc, NULL, 10);
924 Mcast_port = (unsigned short)simple_strtoul(port, NULL, 10);
925 printf("Multicast: %s:%d [%d]\n", mc_adr, Mcast_port, MasterClient);
David Updegraff7280da72007-06-11 10:41:07 -0500926 return;
927}
928
929#endif /* Multicast TFTP */