blob: 3e99e7309116c333576a366735214ccb66c6fdc3 [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
Luca Ceresolie59e3562011-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>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050011#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000012#include <net.h>
13#include "tftp.h"
14#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000015#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
16#include <flash.h>
17#endif
wdenkfe8c2802002-11-03 00:38:21 +000018
Luca Ceresoli2f094132011-05-14 05:49:56 +000019/* Well known TFTP port # */
20#define WELL_KNOWN_PORT 69
21/* Millisecs to timeout for lost pkt */
22#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000023#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000024/* # of timeouts before giving up */
25# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000026#else
27# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
28#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000029/* Number of "loading" hashes per line (for checking the image size) */
30#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000031
32/*
33 * TFTP operations.
34 */
35#define TFTP_RRQ 1
36#define TFTP_WRQ 2
37#define TFTP_DATA 3
38#define TFTP_ACK 4
39#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000040#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000041
Joe Hershberger8885c5f2015-04-08 01:41:07 -050042static ulong timeout_ms = TIMEOUT;
43static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000044static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020045
46/*
47 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050048 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020049 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050050 * tftp_timeout_count_max, gives the number of such connection retries.
51 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020052 * positive. The globals are meant to be set (and restored) by code needing
53 * non-standard timeout behavior when initiating a TFTP transfer.
54 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050055ulong tftp_timeout_ms = TIMEOUT;
56int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020057
Remy Bohmeraafda382009-10-28 22:13:40 +010058enum {
59 TFTP_ERR_UNDEFINED = 0,
60 TFTP_ERR_FILE_NOT_FOUND = 1,
61 TFTP_ERR_ACCESS_DENIED = 2,
62 TFTP_ERR_DISK_FULL = 3,
63 TFTP_ERR_UNEXPECTED_OPCODE = 4,
64 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
65 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
66};
67
Joe Hershberger049a95a2015-04-08 01:41:01 -050068static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000069/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050070static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000071/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050072static int tftp_our_port;
73static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000074/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050075static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000076/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050077static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000078/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050079static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000080/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050081static ulong tftp_block_wrap_offset;
82static int tftp_state;
Robin Getz4fccb812009-08-20 10:50:20 -040083#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000084/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050085static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000086/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050087static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040088#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +000089#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -050090/* 1 if writing, else 0 */
91static int tftp_put_active;
92/* 1 if we have sent the last block */
93static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +000094#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -050095#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +000096#endif
wdenk3f85ce22004-02-23 16:11:30 +000097
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +000098#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +000099#define STATE_DATA 2
100#define STATE_TOO_LARGE 3
101#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000102#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000103#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000104#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000105
Luca Ceresoli2f094132011-05-14 05:49:56 +0000106/* default TFTP block size */
107#define TFTP_BLOCK_SIZE 512
108/* sequence number is 16 bit */
109#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000110
wdenkfe8c2802002-11-03 00:38:21 +0000111#define DEFAULT_NAME_LEN (8 + 4 + 1)
112static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100113
114#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
115#define MAX_LEN 128
116#else
117#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
118#endif
119
120static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000121
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200122/* 512 is poor choice for ethernet, MTU is typically 1500.
123 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500124 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200125 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500126 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200127#ifdef CONFIG_TFTP_BLOCKSIZE
128#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
129#else
David Updegraff53a5c422007-06-11 10:41:07 -0500130#define TFTP_MTU_BLOCKSIZE 1468
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200131#endif
132
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500133static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
134static unsigned short tftp_block_size_option = TFTP_MTU_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500135
136#ifdef CONFIG_MCAST_TFTP
137#include <malloc.h>
138#define MTFTP_BITMAPSIZE 0x1000
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500139static unsigned *tftp_mcast_bitmap;
140static int tftp_mcast_prev_hole;
141static int tftp_mcast_bitmap_size = MTFTP_BITMAPSIZE;
142static int tftp_mcast_disabled;
143static int tftp_mcast_master_client;
144static int tftp_mcast_active;
145static int tftp_mcast_port;
146/* can get 'last' block before done..*/
147static ulong tftp_mcast_ending_block;
David Updegraff53a5c422007-06-11 10:41:07 -0500148
Luca Ceresolic718b142011-05-14 05:49:57 +0000149static void parse_multicast_oack(char *pkt, int len);
David Updegraff53a5c422007-06-11 10:41:07 -0500150
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500151static void mcast_cleanup(void)
David Updegraff53a5c422007-06-11 10:41:07 -0500152{
Joe Hershberger049a95a2015-04-08 01:41:01 -0500153 if (net_mcast_addr)
154 eth_mcast_join(net_mcast_addr, 0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500155 if (tftp_mcast_bitmap)
156 free(tftp_mcast_bitmap);
157 tftp_mcast_bitmap = NULL;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500158 net_mcast_addr.s_addr = 0;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500159 tftp_mcast_active = 0;
160 tftp_mcast_port = 0;
161 tftp_mcast_ending_block = -1;
David Updegraff53a5c422007-06-11 10:41:07 -0500162}
163
164#endif /* CONFIG_MCAST_TFTP */
165
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500166static inline void store_block(int block, uchar *src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000167{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500168 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenk3f85ce22004-02-23 16:11:30 +0000169 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200170#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000171 int i, rc = 0;
172
Luca Ceresolic718b142011-05-14 05:49:57 +0000173 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000174 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200175 if (flash_info[i].flash_id == FLASH_UNKNOWN)
176 continue;
wdenkfe8c2802002-11-03 00:38:21 +0000177 if (load_addr + offset >= flash_info[i].start[0]) {
178 rc = 1;
179 break;
180 }
181 }
182
183 if (rc) { /* Flash is destination for this packet */
Luca Ceresolic718b142011-05-14 05:49:57 +0000184 rc = flash_write((char *)src, (ulong)(load_addr+offset), len);
wdenkfe8c2802002-11-03 00:38:21 +0000185 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000186 flash_perror(rc);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000187 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000188 return;
189 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000190 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000192 {
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500193 void *ptr = map_sysmem(load_addr + offset, len);
194
195 memcpy(ptr, src, len);
196 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000197 }
David Updegraff53a5c422007-06-11 10:41:07 -0500198#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500199 if (tftp_mcast_active)
200 ext2_set_bit(block, tftp_mcast_bitmap);
David Updegraff53a5c422007-06-11 10:41:07 -0500201#endif
wdenkfe8c2802002-11-03 00:38:21 +0000202
Joe Hershberger14111572015-04-08 01:41:02 -0500203 if (net_boot_file_size < newsize)
204 net_boot_file_size = newsize;
wdenkfe8c2802002-11-03 00:38:21 +0000205}
206
Simon Glasse4cde2f2011-10-24 18:00:04 +0000207/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000208static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000209{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500210 tftp_prev_block = 0;
211 tftp_block_wrap = 0;
212 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000213#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500214 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000215#endif
216}
217
Simon Glass1fb7cd42011-10-24 18:00:07 +0000218#ifdef CONFIG_CMD_TFTPPUT
219/**
220 * Load the next block from memory to be sent over tftp.
221 *
222 * @param block Block number to send
223 * @param dst Destination buffer for data
224 * @param len Number of bytes in block (this one and every other)
225 * @return number of bytes loaded
226 */
227static int load_block(unsigned block, uchar *dst, unsigned len)
228{
229 /* We may want to get the final block from the previous set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500230 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000231 ulong tosend = len;
232
Joe Hershberger14111572015-04-08 01:41:02 -0500233 tosend = min(net_boot_file_size - offset, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000234 (void)memcpy(dst, (void *)(save_addr + offset), tosend);
235 debug("%s: block=%d, offset=%ld, len=%d, tosend=%ld\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500236 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000237 return tosend;
238}
239#endif
240
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500241static void tftp_send(void);
242static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000243
244/**********************************************************************/
245
Simon Glassf5329bb2011-10-24 18:00:03 +0000246static void show_block_marker(void)
247{
248#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500249 if (tftp_tsize) {
250 ulong pos = tftp_cur_block * tftp_block_size +
251 tftp_block_wrap_offset;
Simon Glassf5329bb2011-10-24 18:00:03 +0000252
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500253 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000254 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500255 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000256 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000257 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000258#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000259 {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500260 if (((tftp_cur_block - 1) % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000261 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500262 else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000263 puts("\n\t ");
264 }
265}
266
Simon Glasse4cde2f2011-10-24 18:00:04 +0000267/**
268 * restart the current transfer due to an error
269 *
270 * @param msg Message to print for user
271 */
272static void restart(const char *msg)
273{
274 printf("\n%s; starting again\n", msg);
275#ifdef CONFIG_MCAST_TFTP
276 mcast_cleanup();
277#endif
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500278 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000279}
280
281/*
282 * Check if the block number has wrapped, and update progress
283 *
284 * TODO: The egregious use of global variables in this file should be tidied.
285 */
286static void update_block_number(void)
287{
288 /*
289 * RFC1350 specifies that the first data packet will
290 * have sequence number 1. If we receive a sequence
291 * number of 0 this means that there was a wrap
292 * around of the (16 bit) counter.
293 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500294 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
295 tftp_block_wrap++;
296 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
297 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000298 } else {
299 show_block_marker();
300 }
301}
302
Simon Glassf5329bb2011-10-24 18:00:03 +0000303/* The TFTP get or put is complete */
304static void tftp_complete(void)
305{
306#ifdef CONFIG_TFTP_TSIZE
307 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500308 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000309 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500310 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000311 }
Simon Glass8104f542014-10-10 07:30:21 -0600312 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500313 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000314#endif
Simon Glass85b19802012-10-11 13:57:36 +0000315 time_start = get_timer(time_start);
316 if (time_start > 0) {
317 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500318 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000319 time_start * 1000, "/s");
320 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000321 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000322 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000323}
324
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500325static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000326{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000327 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000328 uchar *xp;
329 int len = 0;
330 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000331
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200332#ifdef CONFIG_MCAST_TFTP
David Updegraff53a5c422007-06-11 10:41:07 -0500333 /* Multicast TFTP.. non-MasterClients do not ACK data. */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500334 if (tftp_mcast_active && tftp_state == STATE_DATA &&
335 tftp_mcast_master_client == 0)
David Updegraff53a5c422007-06-11 10:41:07 -0500336 return;
337#endif
wdenkfe8c2802002-11-03 00:38:21 +0000338 /*
339 * We will always be sending some sort of packet, so
340 * cobble together the packet headers now.
341 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500342 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000343
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500344 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000345 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000346 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000347 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200348 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000349#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500350 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000351 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000352#else
353 *s++ = htons(TFTP_RRQ);
354#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200355 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000356 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000357 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000358 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000359 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000360 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000361 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500362 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400363 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000364 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400365#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500366 pkt += sprintf((char *)pkt, "tsize%c%u%c",
367 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400368#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500369 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000370 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500371 0, tftp_block_size_option, 0);
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200372#ifdef CONFIG_MCAST_TFTP
David Updegraff53a5c422007-06-11 10:41:07 -0500373 /* Check all preconditions before even trying the option */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500374 if (!tftp_mcast_disabled) {
375 tftp_mcast_bitmap = malloc(tftp_mcast_bitmap_size);
376 if (tftp_mcast_bitmap && eth_get_dev()->mcast) {
377 free(tftp_mcast_bitmap);
378 tftp_mcast_bitmap = NULL;
Joe Hershberger13dfe942012-05-15 08:59:12 +0000379 pkt += sprintf((char *)pkt, "multicast%c%c",
380 0, 0);
381 }
David Updegraff53a5c422007-06-11 10:41:07 -0500382 }
383#endif /* CONFIG_MCAST_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000384 len = pkt - xp;
385 break;
386
wdenkfbe4b5c2003-10-06 21:55:32 +0000387 case STATE_OACK:
David Updegraff53a5c422007-06-11 10:41:07 -0500388#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500389 /* My turn! Start at where I need blocks I missed. */
390 if (tftp_mcast_active)
391 tftp_cur_block = ext2_find_next_zero_bit(
392 tftp_mcast_bitmap,
393 tftp_mcast_bitmap_size * 8, 0);
394 /* fall through */
David Updegraff53a5c422007-06-11 10:41:07 -0500395#endif
Luca Ceresolie59e3562011-05-17 00:03:39 +0000396
397 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500398 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000399 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200400 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000401 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500402 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000403 pkt = (uchar *)(s + 2);
404#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500405 if (tftp_put_active) {
406 int toload = tftp_block_size;
407 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000408
409 s[0] = htons(TFTP_DATA);
410 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500411 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000412 }
413#endif
wdenkfe8c2802002-11-03 00:38:21 +0000414 len = pkt - xp;
415 break;
416
417 case STATE_TOO_LARGE:
418 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200419 s = (ushort *)pkt;
420 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000421 *s++ = htons(3);
422
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200423 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000424 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000425 pkt += 14 /*strlen("File too large")*/ + 1;
426 len = pkt - xp;
427 break;
428
429 case STATE_BAD_MAGIC:
430 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200431 s = (ushort *)pkt;
432 *s++ = htons(TFTP_ERROR);
433 *s++ = htons(2);
434 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000435 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000436 pkt += 18 /*strlen("File has bad magic")*/ + 1;
437 len = pkt - xp;
438 break;
439 }
440
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500441 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
442 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000443}
444
Simon Glass39bccd22011-10-26 14:18:38 +0000445#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000446static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500447 struct in_addr sip, unsigned src, uchar *pkt,
448 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000449{
450 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
451 /* Oh dear the other end has gone away */
452 restart("TFTP server died");
453 }
454}
Simon Glass39bccd22011-10-26 14:18:38 +0000455#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000456
Joe Hershberger049a95a2015-04-08 01:41:01 -0500457static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
458 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000459{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600460 __be16 proto;
461 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200462 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000463
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500464 if (dest != tftp_our_port) {
David Updegraff53a5c422007-06-11 10:41:07 -0500465#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500466 if (tftp_mcast_active &&
467 (!tftp_mcast_port || dest != tftp_mcast_port))
David Updegraff53a5c422007-06-11 10:41:07 -0500468#endif
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000469 return;
wdenkfe8c2802002-11-03 00:38:21 +0000470 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500471 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
472 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000473 return;
wdenkfe8c2802002-11-03 00:38:21 +0000474
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000475 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000476 return;
wdenkfe8c2802002-11-03 00:38:21 +0000477 len -= 2;
478 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600479 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200480 proto = *s++;
481 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000482 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000483 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000484 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000485
486 case TFTP_ACK:
487#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500488 if (tftp_put_active) {
489 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000490 tftp_complete();
491 } else {
492 /*
493 * Move to the next block. We want our block
494 * count to wrap just like the other end!
495 */
496 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500497 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000498
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500499 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000500 update_block_number();
501 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500502 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000503 }
504 }
505#endif
506 break;
507
wdenkfe8c2802002-11-03 00:38:21 +0000508 default:
509 break;
510
Luca Ceresolie59e3562011-05-17 00:03:39 +0000511#ifdef CONFIG_CMD_TFTPSRV
512 case TFTP_WRQ:
513 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500514 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500515 tftp_remote_port = src;
516 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000517 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500518 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000519 break;
520#endif
521
wdenkfbe4b5c2003-10-06 21:55:32 +0000522 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200523 debug("Got OACK: %s %s\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500524 pkt, pkt + strlen((char *)pkt) + 1);
525 tftp_state = STATE_OACK;
526 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200527 /*
528 * Check for 'blksize' option.
529 * Careful: "i" is signed, "len" is unsigned, thus
530 * something like "len-8" may give a *huge* number
531 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000532 for (i = 0; i+8 < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500533 if (strcmp((char *)pkt + i, "blksize") == 0) {
534 tftp_block_size = (unsigned short)
535 simple_strtoul((char *)pkt + i + 8,
536 NULL, 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400537 debug("Blocksize ack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500538 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200539 }
Robin Getz4fccb812009-08-20 10:50:20 -0400540#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000541 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500542 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000543 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400544 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500545 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400546 }
547#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500548 }
549#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500550 parse_multicast_oack((char *)pkt, len - 1);
551 if ((tftp_mcast_active) && (!tftp_mcast_master_client))
552 tftp_state = STATE_DATA; /* passive.. */
David Updegraff53a5c422007-06-11 10:41:07 -0500553 else
554#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000555#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500556 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000557 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500558 tftp_state = STATE_DATA;
559 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000560 }
561#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500562 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000563 break;
wdenkfe8c2802002-11-03 00:38:21 +0000564 case TFTP_DATA:
565 if (len < 2)
566 return;
567 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500568 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000569
Simon Glasse4cde2f2011-10-24 18:00:04 +0000570 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000571
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500572 if (tftp_state == STATE_SEND_RRQ)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400573 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000574
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500575 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
576 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000577 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500578 tftp_state = STATE_DATA;
579 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000580 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000581
David Updegraff53a5c422007-06-11 10:41:07 -0500582#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500583 if (tftp_mcast_active) { /* start!=1 common if mcast */
584 tftp_prev_block = tftp_cur_block - 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500585 } else
586#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500587 if (tftp_cur_block != 1) { /* Assertion */
588 puts("\nTFTP error: ");
589 printf("First block is not block 1 (%ld)\n",
590 tftp_cur_block);
591 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500592 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000593 break;
594 }
595 }
596
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500597 if (tftp_cur_block == tftp_prev_block) {
598 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000599 break;
600 }
601
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500602 tftp_prev_block = tftp_cur_block;
603 timeout_count_max = TIMEOUT_COUNT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500604 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000605
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500606 store_block(tftp_cur_block - 1, pkt + 2, len);
wdenkfe8c2802002-11-03 00:38:21 +0000607
608 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000609 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000610 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000611 */
David Updegraff53a5c422007-06-11 10:41:07 -0500612#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200613 /* if I am the MasterClient, actively calculate what my next
614 * needed block is; else I'm passive; not ACKING
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100615 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500616 if (tftp_mcast_active) {
617 if (len < tftp_block_size) {
618 tftp_mcast_ending_block = tftp_cur_block;
619 } else if (tftp_mcast_master_client) {
620 tftp_mcast_prev_hole = ext2_find_next_zero_bit(
621 tftp_mcast_bitmap,
622 tftp_mcast_bitmap_size * 8,
623 tftp_mcast_prev_hole);
624 tftp_cur_block = tftp_mcast_prev_hole;
625 if (tftp_cur_block >
626 ((tftp_mcast_bitmap_size * 8) - 1)) {
627 debug("tftpfile too big\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500628 /* try to double it and retry */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500629 tftp_mcast_bitmap_size <<= 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500630 mcast_cleanup();
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500631 net_start_again();
David Updegraff53a5c422007-06-11 10:41:07 -0500632 return;
633 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500634 tftp_prev_block = tftp_cur_block;
David Updegraff53a5c422007-06-11 10:41:07 -0500635 }
636 }
637#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500638 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000639
David Updegraff53a5c422007-06-11 10:41:07 -0500640#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500641 if (tftp_mcast_active) {
642 if (tftp_mcast_master_client &&
643 (tftp_cur_block >= tftp_mcast_ending_block)) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000644 puts("\nMulticast tftp done\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500645 mcast_cleanup();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000646 net_set_state(NETLOOP_SUCCESS);
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200647 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000648 } else
David Updegraff53a5c422007-06-11 10:41:07 -0500649#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500650 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000651 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000652 break;
653
654 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000655 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600656 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100657
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600658 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100659 case TFTP_ERR_FILE_NOT_FOUND:
660 case TFTP_ERR_ACCESS_DENIED:
661 puts("Not retrying...\n");
662 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000663 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100664 break;
665 case TFTP_ERR_UNDEFINED:
666 case TFTP_ERR_DISK_FULL:
667 case TFTP_ERR_UNEXPECTED_OPCODE:
668 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
669 case TFTP_ERR_FILE_ALREADY_EXISTS:
670 default:
671 puts("Starting again\n\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500672#ifdef CONFIG_MCAST_TFTP
Remy Bohmeraafda382009-10-28 22:13:40 +0100673 mcast_cleanup();
David Updegraff53a5c422007-06-11 10:41:07 -0500674#endif
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500675 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100676 break;
677 }
wdenkfe8c2802002-11-03 00:38:21 +0000678 break;
679 }
680}
681
682
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500683static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000684{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500685 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000686 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000687 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000688 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500689 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500690 if (tftp_state != STATE_RECV_WRQ)
691 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000692 }
693}
694
695
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500696void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000697{
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200698 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200699
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100700 /*
701 * Allow the user to choose TFTP blocksize and timeout.
702 * TFTP protocol has a minimal timeout of 1 second.
703 */
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000704 ep = getenv("tftpblocksize");
705 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500706 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100707
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000708 ep = getenv("tftptimeout");
709 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500710 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100711
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500712 if (timeout_ms < 1000) {
713 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
714 timeout_ms);
715 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100716 }
717
718 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500719 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200720
Joe Hershberger049a95a2015-04-08 01:41:01 -0500721 tftp_remote_ip = net_server_ip;
Joe Hershberger14111572015-04-08 01:41:02 -0500722 if (net_boot_file_name[0] == '\0') {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000723 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500724 net_ip.s_addr & 0xFF,
725 (net_ip.s_addr >> 8) & 0xFF,
726 (net_ip.s_addr >> 16) & 0xFF,
727 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100728
729 strncpy(tftp_filename, default_filename, MAX_LEN);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500730 tftp_filename[MAX_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000731
Luca Ceresolic718b142011-05-14 05:49:57 +0000732 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500733 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000734 } else {
Joe Hershberger14111572015-04-08 01:41:02 -0500735 char *p = strchr(net_boot_file_name, ':');
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100736
737 if (p == NULL) {
Joe Hershberger14111572015-04-08 01:41:02 -0500738 strncpy(tftp_filename, net_boot_file_name, MAX_LEN);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500739 tftp_filename[MAX_LEN - 1] = 0;
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100740 } else {
Joe Hershberger14111572015-04-08 01:41:02 -0500741 tftp_remote_ip = string_to_ip(net_boot_file_name);
Peter Tyser6a86bb62008-12-01 16:29:38 -0600742 strncpy(tftp_filename, p + 1, MAX_LEN);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500743 tftp_filename[MAX_LEN - 1] = 0;
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100744 }
wdenkfe8c2802002-11-03 00:38:21 +0000745 }
746
Luca Ceresolic718b142011-05-14 05:49:57 +0000747 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000748 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000749#ifdef CONFIG_CMD_TFTPPUT
750 protocol == TFTPPUT ? "to" : "from",
751#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500752 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000753#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500754 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000755
756 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500757 if (net_gateway.s_addr && net_netmask.s_addr) {
758 struct in_addr our_net;
759 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000760
Joe Hershberger049a95a2015-04-08 01:41:01 -0500761 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
762 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
763 if (our_net.s_addr != remote_net.s_addr)
764 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000765 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000766 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000767
Luca Ceresolic718b142011-05-14 05:49:57 +0000768 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000769
Joe Hershberger14111572015-04-08 01:41:02 -0500770 if (net_boot_file_expected_size_in_blocks) {
771 printf(" Size is 0x%x Bytes = ",
772 net_boot_file_expected_size_in_blocks << 9);
773 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000774 }
775
Luca Ceresolic718b142011-05-14 05:49:57 +0000776 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000777#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500778 tftp_put_active = (protocol == TFTPPUT);
779 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000780 printf("Save address: 0x%lx\n", save_addr);
781 printf("Save size: 0x%lx\n", save_size);
Joe Hershberger14111572015-04-08 01:41:02 -0500782 net_boot_file_size = save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000783 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500784 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000785 new_transfer();
786 } else
787#endif
788 {
789 printf("Load address: 0x%lx\n", load_addr);
790 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500791 tftp_state = STATE_SEND_RRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000792 }
wdenkfe8c2802002-11-03 00:38:21 +0000793
Simon Glass85b19802012-10-11 13:57:36 +0000794 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500795 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200796
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500797 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500798 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000799#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000800 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000801#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500802 tftp_remote_port = WELL_KNOWN_PORT;
803 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200804 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500805 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500806
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200807#ifdef CONFIG_TFTP_PORT
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000808 ep = getenv("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000809 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500810 tftp_remote_port = simple_strtol(ep, NULL, 10);
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000811 ep = getenv("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000812 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500813 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200814#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500815 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000816
wdenk73a8b272003-06-05 19:27:42 +0000817 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500818 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500819 /* Revert tftp_block_size to dflt */
820 tftp_block_size = TFTP_BLOCK_SIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500821#ifdef CONFIG_MCAST_TFTP
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100822 mcast_cleanup();
David Updegraff53a5c422007-06-11 10:41:07 -0500823#endif
Robin Getz4fccb812009-08-20 10:50:20 -0400824#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500825 tftp_tsize = 0;
826 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400827#endif
wdenk73a8b272003-06-05 19:27:42 +0000828
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500829 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000830}
831
Luca Ceresolie59e3562011-05-17 00:03:39 +0000832#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500833void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000834{
835 tftp_filename[0] = 0;
836
Luca Ceresolie59e3562011-05-17 00:03:39 +0000837 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500838 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000839 printf("Load address: 0x%lx\n", load_addr);
840
841 puts("Loading: *\b");
842
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500843 timeout_count_max = TIMEOUT_COUNT;
844 timeout_count = 0;
845 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500846 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000847
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500848 /* Revert tftp_block_size to dflt */
849 tftp_block_size = TFTP_BLOCK_SIZE;
850 tftp_cur_block = 0;
851 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000852
853#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500854 tftp_tsize = 0;
855 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000856#endif
857
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500858 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500859 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500860
861 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500862 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000863}
864#endif /* CONFIG_CMD_TFTPSRV */
865
David Updegraff53a5c422007-06-11 10:41:07 -0500866#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500867/*
868 * Credits: atftp project.
David Updegraff53a5c422007-06-11 10:41:07 -0500869 */
870
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500871/*
872 * Pick up BcastAddr, Port, and whether I am [now] the master-client.
David Updegraff53a5c422007-06-11 10:41:07 -0500873 * Frame:
874 * +-------+-----------+---+-------~~-------+---+
875 * | opc | multicast | 0 | addr, port, mc | 0 |
876 * +-------+-----------+---+-------~~-------+---+
877 * The multicast addr/port becomes what I listen to, and if 'mc' is '1' then
878 * I am the new master-client so must send ACKs to DataBlocks. If I am not
879 * master-client, I'm a passive client, gathering what DataBlocks I may and
880 * making note of which ones I got in my bitmask.
881 * In theory, I never go from master->passive..
882 * .. this comes in with pkt already pointing just past opc
883 */
884static void parse_multicast_oack(char *pkt, int len)
885{
Luca Ceresolic718b142011-05-14 05:49:57 +0000886 int i;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500887 struct in_addr addr;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500888 char *mc_adr;
889 char *port;
890 char *mc;
David Updegraff53a5c422007-06-11 10:41:07 -0500891
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500892 mc_adr = NULL;
893 port = NULL;
894 mc = NULL;
David Updegraff53a5c422007-06-11 10:41:07 -0500895 /* march along looking for 'multicast\0', which has to start at least
896 * 14 bytes back from the end.
897 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500898 for (i = 0; i < len - 14; i++)
899 if (strcmp(pkt + i, "multicast") == 0)
David Updegraff53a5c422007-06-11 10:41:07 -0500900 break;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500901 if (i >= (len - 14)) /* non-Multicast OACK, ign. */
David Updegraff53a5c422007-06-11 10:41:07 -0500902 return;
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200903
Luca Ceresolic718b142011-05-14 05:49:57 +0000904 i += 10; /* strlen multicast */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500905 mc_adr = pkt + i;
Luca Ceresolic718b142011-05-14 05:49:57 +0000906 for (; i < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500907 if (*(pkt + i) == ',') {
908 *(pkt + i) = '\0';
David Updegraff53a5c422007-06-11 10:41:07 -0500909 if (port) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500910 mc = pkt + i + 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500911 break;
912 } else {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500913 port = pkt + i + 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500914 }
915 }
916 }
Luca Ceresoli6d2231e2011-05-14 05:50:01 +0000917 if (!port || !mc_adr || !mc)
918 return;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500919 if (tftp_mcast_active && tftp_mcast_master_client) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000920 printf("I got a OACK as master Client, WRONG!\n");
David Updegraff53a5c422007-06-11 10:41:07 -0500921 return;
922 }
923 /* ..I now accept packets destined for this MCAST addr, port */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500924 if (!tftp_mcast_active) {
925 if (tftp_mcast_bitmap) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000926 printf("Internal failure! no mcast.\n");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500927 free(tftp_mcast_bitmap);
928 tftp_mcast_bitmap = NULL;
929 tftp_mcast_disabled = 1;
930 return;
David Updegraff53a5c422007-06-11 10:41:07 -0500931 }
932 /* I malloc instead of pre-declare; so that if the file ends
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200933 * up being too big for this bitmap I can retry
934 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500935 tftp_mcast_bitmap = malloc(tftp_mcast_bitmap_size);
936 if (!tftp_mcast_bitmap) {
937 printf("No bitmap, no multicast. Sorry.\n");
938 tftp_mcast_disabled = 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500939 return;
940 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500941 memset(tftp_mcast_bitmap, 0, tftp_mcast_bitmap_size);
942 tftp_mcast_prev_hole = 0;
943 tftp_mcast_active = 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500944 }
945 addr = string_to_ip(mc_adr);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500946 if (net_mcast_addr.s_addr != addr.s_addr) {
947 if (net_mcast_addr.s_addr)
948 eth_mcast_join(net_mcast_addr, 0);
949 net_mcast_addr = addr;
950 if (eth_mcast_join(net_mcast_addr, 1)) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000951 printf("Fail to set mcast, revert to TFTP\n");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500952 tftp_mcast_disabled = 1;
David Updegraff53a5c422007-06-11 10:41:07 -0500953 mcast_cleanup();
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500954 net_start_again();
David Updegraff53a5c422007-06-11 10:41:07 -0500955 }
956 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500957 tftp_mcast_master_client = simple_strtoul((char *)mc, NULL, 10);
958 tftp_mcast_port = (unsigned short)simple_strtoul(port, NULL, 10);
959 printf("Multicast: %s:%d [%d]\n", mc_adr, tftp_mcast_port,
960 tftp_mcast_master_client);
David Updegraff53a5c422007-06-11 10:41:07 -0500961 return;
962}
963
964#endif /* Multicast TFTP */