blob: bbede9c0f2026b3932b86ab62c635125b59c38fd [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>
Alexander Graf94c4b992016-05-06 21:01:01 +020011#include <efi_loader.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060012#include <env.h>
Simon Glass85f13782019-12-28 10:45:03 -070013#include <image.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Joe Hershbergered191852015-03-22 17:09:08 -050016#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000017#include <net.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020018#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000019#include "bootp.h"
Joe Hershberger3a29e5a2012-05-15 08:59:12 +000020#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
21#include <flash.h>
22#endif
wdenkfe8c2802002-11-03 00:38:21 +000023
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +010024DECLARE_GLOBAL_DATA_PTR;
25
Luca Ceresolic42fc272011-05-14 05:49:56 +000026/* Well known TFTP port # */
27#define WELL_KNOWN_PORT 69
28/* Millisecs to timeout for lost pkt */
Bin Menge67eaa82015-08-27 22:25:51 -070029#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000030#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresolic42fc272011-05-14 05:49:56 +000031/* # of timeouts before giving up */
Bin Menge67eaa82015-08-27 22:25:51 -070032# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000033#else
34# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
35#endif
Luca Ceresolic42fc272011-05-14 05:49:56 +000036/* Number of "loading" hashes per line (for checking the image size) */
37#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000038
39/*
40 * TFTP operations.
41 */
42#define TFTP_RRQ 1
43#define TFTP_WRQ 2
44#define TFTP_DATA 3
45#define TFTP_ACK 4
46#define TFTP_ERROR 5
wdenk7182b0f2003-10-06 21:55:32 +000047#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000048
Joe Hershberger64701592015-04-08 01:41:07 -050049static ulong timeout_ms = TIMEOUT;
50static int timeout_count_max = TIMEOUT_COUNT;
Simon Glasscab9a8d2012-10-11 13:57:36 +000051static ulong time_start; /* Record time we started tftp */
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020052
53/*
54 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger64701592015-04-08 01:41:07 -050055 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020056 * wait for the server to respond to initial connection. Second global,
Joe Hershberger64701592015-04-08 01:41:07 -050057 * tftp_timeout_count_max, gives the number of such connection retries.
58 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020059 * positive. The globals are meant to be set (and restored) by code needing
60 * non-standard timeout behavior when initiating a TFTP transfer.
61 */
Joe Hershberger64701592015-04-08 01:41:07 -050062ulong tftp_timeout_ms = TIMEOUT;
63int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020064
Remy Bohmerb46293f2009-10-28 22:13:40 +010065enum {
66 TFTP_ERR_UNDEFINED = 0,
67 TFTP_ERR_FILE_NOT_FOUND = 1,
68 TFTP_ERR_ACCESS_DENIED = 2,
69 TFTP_ERR_DISK_FULL = 3,
70 TFTP_ERR_UNEXPECTED_OPCODE = 4,
71 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
72 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
73};
74
Joe Hershberger5874dec2015-04-08 01:41:01 -050075static struct in_addr tftp_remote_ip;
Luca Ceresolic42fc272011-05-14 05:49:56 +000076/* The UDP port at their end */
Joe Hershberger64701592015-04-08 01:41:07 -050077static int tftp_remote_port;
Luca Ceresolic42fc272011-05-14 05:49:56 +000078/* The UDP port at our end */
Joe Hershberger64701592015-04-08 01:41:07 -050079static int tftp_our_port;
80static int timeout_count;
Luca Ceresolic42fc272011-05-14 05:49:56 +000081/* packet sequence number */
Joe Hershberger64701592015-04-08 01:41:07 -050082static ulong tftp_cur_block;
Luca Ceresolic42fc272011-05-14 05:49:56 +000083/* last packet sequence number received */
Joe Hershberger64701592015-04-08 01:41:07 -050084static ulong tftp_prev_block;
Luca Ceresolic42fc272011-05-14 05:49:56 +000085/* count of sequence number wraparounds */
Joe Hershberger64701592015-04-08 01:41:07 -050086static ulong tftp_block_wrap;
Luca Ceresolic42fc272011-05-14 05:49:56 +000087/* memory offset due to wrapping */
Joe Hershberger64701592015-04-08 01:41:07 -050088static ulong tftp_block_wrap_offset;
89static int tftp_state;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +010090static ulong tftp_load_addr;
91#ifdef CONFIG_LMB
92static ulong tftp_load_size;
93#endif
Robin Getzb3b00ed2009-08-20 10:50:20 -040094#ifdef CONFIG_TFTP_TSIZE
Luca Ceresolic42fc272011-05-14 05:49:56 +000095/* The file size reported by the server */
Joe Hershberger64701592015-04-08 01:41:07 -050096static int tftp_tsize;
Luca Ceresolic42fc272011-05-14 05:49:56 +000097/* The number of hashes we printed */
Joe Hershberger64701592015-04-08 01:41:07 -050098static short tftp_tsize_num_hash;
Robin Getzb3b00ed2009-08-20 10:50:20 -040099#endif
Simon Glass6a398d22011-10-24 18:00:07 +0000100#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500101/* 1 if writing, else 0 */
102static int tftp_put_active;
103/* 1 if we have sent the last block */
104static int tftp_put_final_block_sent;
Simon Glass6a398d22011-10-24 18:00:07 +0000105#else
Joe Hershberger64701592015-04-08 01:41:07 -0500106#define tftp_put_active 0
Simon Glass6a398d22011-10-24 18:00:07 +0000107#endif
wdenkef893942004-02-23 16:11:30 +0000108
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000109#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000110#define STATE_DATA 2
111#define STATE_TOO_LARGE 3
112#define STATE_BAD_MAGIC 4
wdenk7182b0f2003-10-06 21:55:32 +0000113#define STATE_OACK 5
Luca Ceresolib640ed32011-05-17 00:03:39 +0000114#define STATE_RECV_WRQ 6
Simon Glass6a398d22011-10-24 18:00:07 +0000115#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000116
Luca Ceresolic42fc272011-05-14 05:49:56 +0000117/* default TFTP block size */
118#define TFTP_BLOCK_SIZE 512
119/* sequence number is 16 bit */
120#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenkef893942004-02-23 16:11:30 +0000121
wdenkfe8c2802002-11-03 00:38:21 +0000122#define DEFAULT_NAME_LEN (8 + 4 + 1)
123static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100124
125#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
126#define MAX_LEN 128
127#else
128#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
129#endif
130
131static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000132
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200133/* 512 is poor choice for ethernet, MTU is typically 1500.
134 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff7280da72007-06-11 10:41:07 -0500135 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200136 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff7280da72007-06-11 10:41:07 -0500137 */
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200138
Joe Hershberger64701592015-04-08 01:41:07 -0500139static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay6c3a4472020-04-22 14:18:26 +0200140static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
David Updegraff7280da72007-06-11 10:41:07 -0500141
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100142static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000143{
Joe Hershberger64701592015-04-08 01:41:07 -0500144 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenkef893942004-02-23 16:11:30 +0000145 ulong newsize = offset + len;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100146 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200147#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000148 int i, rc = 0;
149
Luca Ceresolif40538a2011-05-14 05:49:57 +0000150 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000151 /* start address in flash? */
Jochen Friedrichd31a59b2008-09-02 11:24:59 +0200152 if (flash_info[i].flash_id == FLASH_UNKNOWN)
153 continue;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100154 if (store_addr >= flash_info[i].start[0]) {
wdenkfe8c2802002-11-03 00:38:21 +0000155 rc = 1;
156 break;
157 }
158 }
159
160 if (rc) { /* Flash is destination for this packet */
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100161 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000162 if (rc) {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000163 flash_perror(rc);
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100164 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000165 }
Joe Hershberger3a29e5a2012-05-15 08:59:12 +0000166 } else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200167#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000168 {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100169 void *ptr;
Joe Hershbergered191852015-03-22 17:09:08 -0500170
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100171#ifdef CONFIG_LMB
Bin Mengaf549632019-11-15 22:20:13 -0800172 ulong end_addr = tftp_load_addr + tftp_load_size;
173
174 if (!end_addr)
175 end_addr = ULONG_MAX;
176
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100177 if (store_addr < tftp_load_addr ||
Bin Mengaf549632019-11-15 22:20:13 -0800178 store_addr + len > end_addr) {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100179 puts("\nTFTP error: ");
180 puts("trying to overwrite reserved memory...\n");
181 return -1;
182 }
183#endif
184 ptr = map_sysmem(store_addr, len);
Joe Hershbergered191852015-03-22 17:09:08 -0500185 memcpy(ptr, src, len);
186 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000187 }
188
Joe Hershberger290c8992015-04-08 01:41:02 -0500189 if (net_boot_file_size < newsize)
190 net_boot_file_size = newsize;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100191
192 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000193}
194
Simon Glassbd8a0e02011-10-24 18:00:04 +0000195/* Clear our state ready for a new transfer */
Simon Glass84313322011-10-27 06:24:28 +0000196static void new_transfer(void)
Simon Glassbd8a0e02011-10-24 18:00:04 +0000197{
Joe Hershberger64701592015-04-08 01:41:07 -0500198 tftp_prev_block = 0;
199 tftp_block_wrap = 0;
200 tftp_block_wrap_offset = 0;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000201#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500202 tftp_put_final_block_sent = 0;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000203#endif
204}
Simon Glass6a398d22011-10-24 18:00:07 +0000205
206#ifdef CONFIG_CMD_TFTPPUT
207/**
208 * Load the next block from memory to be sent over tftp.
209 *
210 * @param block Block number to send
211 * @param dst Destination buffer for data
212 * @param len Number of bytes in block (this one and every other)
213 * @return number of bytes loaded
214 */
215static int load_block(unsigned block, uchar *dst, unsigned len)
216{
217 /* We may want to get the final block from the previous set */
Joe Hershberger64701592015-04-08 01:41:07 -0500218 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass6a398d22011-10-24 18:00:07 +0000219 ulong tosend = len;
220
Joe Hershberger290c8992015-04-08 01:41:02 -0500221 tosend = min(net_boot_file_size - offset, tosend);
Simon Glass892265d2019-12-28 10:45:02 -0700222 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardtc81ab832020-02-22 08:43:40 +0100223 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger64701592015-04-08 01:41:07 -0500224 block, offset, len, tosend);
Simon Glass6a398d22011-10-24 18:00:07 +0000225 return tosend;
226}
227#endif
Simon Glassbd8a0e02011-10-24 18:00:04 +0000228
Joe Hershberger64701592015-04-08 01:41:07 -0500229static void tftp_send(void);
230static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000231
232/**********************************************************************/
233
Simon Glassb437aad2011-10-24 18:00:03 +0000234static void show_block_marker(void)
235{
Ravik Hasijad42686e2020-05-07 14:55:32 -0700236 ulong pos;
237
Simon Glassb437aad2011-10-24 18:00:03 +0000238#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500239 if (tftp_tsize) {
Ravik Hasijad42686e2020-05-07 14:55:32 -0700240 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger64701592015-04-08 01:41:07 -0500241 tftp_block_wrap_offset;
Max Krummenacherdd081cc2015-08-05 17:17:05 +0200242 if (pos > tftp_tsize)
243 pos = tftp_tsize;
Simon Glassb437aad2011-10-24 18:00:03 +0000244
Joe Hershberger64701592015-04-08 01:41:07 -0500245 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassb437aad2011-10-24 18:00:03 +0000246 putc('#');
Joe Hershberger64701592015-04-08 01:41:07 -0500247 tftp_tsize_num_hash++;
Simon Glassb437aad2011-10-24 18:00:03 +0000248 }
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 {
Ravik Hasijad42686e2020-05-07 14:55:32 -0700252 pos = (tftp_cur_block - 1) +
253 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
254 if ((pos % 10) == 0)
Simon Glassb437aad2011-10-24 18:00:03 +0000255 putc('#');
Ravik Hasijad42686e2020-05-07 14:55:32 -0700256 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassb437aad2011-10-24 18:00:03 +0000257 puts("\n\t ");
258 }
259}
260
Simon Glassbd8a0e02011-10-24 18:00:04 +0000261/**
262 * restart the current transfer due to an error
263 *
264 * @param msg Message to print for user
265 */
266static void restart(const char *msg)
267{
268 printf("\n%s; starting again\n", msg);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500269 net_start_again();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000270}
271
272/*
273 * Check if the block number has wrapped, and update progress
274 *
275 * TODO: The egregious use of global variables in this file should be tidied.
276 */
277static void update_block_number(void)
278{
279 /*
280 * RFC1350 specifies that the first data packet will
281 * have sequence number 1. If we receive a sequence
282 * number of 0 this means that there was a wrap
283 * around of the (16 bit) counter.
284 */
Joe Hershberger64701592015-04-08 01:41:07 -0500285 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
286 tftp_block_wrap++;
287 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
288 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glassbd8a0e02011-10-24 18:00:04 +0000289 }
Ravik Hasijad42686e2020-05-07 14:55:32 -0700290 show_block_marker();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000291}
292
Simon Glassb437aad2011-10-24 18:00:03 +0000293/* The TFTP get or put is complete */
294static void tftp_complete(void)
295{
296#ifdef CONFIG_TFTP_TSIZE
297 /* Print hash marks for the last packet received */
Joe Hershberger64701592015-04-08 01:41:07 -0500298 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassb437aad2011-10-24 18:00:03 +0000299 putc('#');
Joe Hershberger64701592015-04-08 01:41:07 -0500300 tftp_tsize_num_hash++;
Simon Glassb437aad2011-10-24 18:00:03 +0000301 }
Simon Glassc8f0a5c2014-10-10 07:30:21 -0600302 puts(" ");
Joe Hershberger64701592015-04-08 01:41:07 -0500303 print_size(tftp_tsize, "");
Simon Glassb437aad2011-10-24 18:00:03 +0000304#endif
Simon Glasscab9a8d2012-10-11 13:57:36 +0000305 time_start = get_timer(time_start);
306 if (time_start > 0) {
307 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger290c8992015-04-08 01:41:02 -0500308 print_size(net_boot_file_size /
Simon Glasscab9a8d2012-10-11 13:57:36 +0000309 time_start * 1000, "/s");
310 }
Simon Glassb437aad2011-10-24 18:00:03 +0000311 puts("\ndone\n");
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000312 net_set_state(NETLOOP_SUCCESS);
Simon Glassb437aad2011-10-24 18:00:03 +0000313}
314
Joe Hershberger64701592015-04-08 01:41:07 -0500315static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000316{
Simon Glass6a398d22011-10-24 18:00:07 +0000317 uchar *pkt;
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000318 uchar *xp;
319 int len = 0;
320 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000321
322 /*
323 * We will always be sending some sort of packet, so
324 * cobble together the packet headers now.
325 */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500326 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000327
Joe Hershberger64701592015-04-08 01:41:07 -0500328 switch (tftp_state) {
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000329 case STATE_SEND_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000330 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000331 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200332 s = (ushort *)pkt;
Simon Glass4abd0e22011-10-27 06:24:29 +0000333#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500334 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass6a398d22011-10-24 18:00:07 +0000335 TFTP_WRQ);
Simon Glass4abd0e22011-10-27 06:24:29 +0000336#else
337 *s++ = htons(TFTP_RRQ);
338#endif
Wolfgang Denk3135c542005-08-26 01:36:03 +0200339 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000340 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000341 pkt += strlen(tftp_filename) + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000342 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000343 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000344 strcpy((char *)pkt, "timeout");
wdenk7182b0f2003-10-06 21:55:32 +0000345 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger64701592015-04-08 01:41:07 -0500346 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400347 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenk7182b0f2003-10-06 21:55:32 +0000348 pkt += strlen((char *)pkt) + 1;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400349#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger290c8992015-04-08 01:41:02 -0500350 pkt += sprintf((char *)pkt, "tsize%c%u%c",
351 0, net_boot_file_size, 0);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400352#endif
David Updegraff7280da72007-06-11 10:41:07 -0500353 /* try for more effic. blk size */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000354 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger64701592015-04-08 01:41:07 -0500355 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000356 len = pkt - xp;
357 break;
358
wdenk7182b0f2003-10-06 21:55:32 +0000359 case STATE_OACK:
Luca Ceresolib640ed32011-05-17 00:03:39 +0000360
361 case STATE_RECV_WRQ:
David Updegraff7280da72007-06-11 10:41:07 -0500362 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000363 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200364 s = (ushort *)pkt;
Simon Glass6a398d22011-10-24 18:00:07 +0000365 s[0] = htons(TFTP_ACK);
Joe Hershberger64701592015-04-08 01:41:07 -0500366 s[1] = htons(tftp_cur_block);
Simon Glass6a398d22011-10-24 18:00:07 +0000367 pkt = (uchar *)(s + 2);
368#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500369 if (tftp_put_active) {
370 int toload = tftp_block_size;
371 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass6a398d22011-10-24 18:00:07 +0000372
373 s[0] = htons(TFTP_DATA);
374 pkt += loaded;
Joe Hershberger64701592015-04-08 01:41:07 -0500375 tftp_put_final_block_sent = (loaded < toload);
Simon Glass6a398d22011-10-24 18:00:07 +0000376 }
377#endif
wdenkfe8c2802002-11-03 00:38:21 +0000378 len = pkt - xp;
379 break;
380
381 case STATE_TOO_LARGE:
382 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200383 s = (ushort *)pkt;
384 *s++ = htons(TFTP_ERROR);
Simon Glass6a398d22011-10-24 18:00:07 +0000385 *s++ = htons(3);
386
Wolfgang Denk3135c542005-08-26 01:36:03 +0200387 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000388 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000389 pkt += 14 /*strlen("File too large")*/ + 1;
390 len = pkt - xp;
391 break;
392
393 case STATE_BAD_MAGIC:
394 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200395 s = (ushort *)pkt;
396 *s++ = htons(TFTP_ERROR);
397 *s++ = htons(2);
398 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000399 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000400 pkt += 18 /*strlen("File has bad magic")*/ + 1;
401 len = pkt - xp;
402 break;
403 }
404
Joe Hershberger64701592015-04-08 01:41:07 -0500405 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
406 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000407}
408
Simon Glass2928cd82011-10-26 14:18:38 +0000409#ifdef CONFIG_CMD_TFTPPUT
Simon Glass6a398d22011-10-24 18:00:07 +0000410static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500411 struct in_addr sip, unsigned src, uchar *pkt,
412 unsigned len)
Simon Glass6a398d22011-10-24 18:00:07 +0000413{
414 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
415 /* Oh dear the other end has gone away */
416 restart("TFTP server died");
417 }
418}
Simon Glass2928cd82011-10-26 14:18:38 +0000419#endif
wdenkfe8c2802002-11-03 00:38:21 +0000420
Joe Hershberger5874dec2015-04-08 01:41:01 -0500421static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
422 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000423{
Kim Phillips878dad02013-01-16 18:09:19 -0600424 __be16 proto;
425 __be16 *s;
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200426 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000427
Joe Hershberger64701592015-04-08 01:41:07 -0500428 if (dest != tftp_our_port) {
Luca Ceresoli09b18232011-05-14 05:50:02 +0000429 return;
wdenkfe8c2802002-11-03 00:38:21 +0000430 }
Joe Hershberger64701592015-04-08 01:41:07 -0500431 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
432 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000433 return;
wdenkfe8c2802002-11-03 00:38:21 +0000434
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000435 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000436 return;
wdenkfe8c2802002-11-03 00:38:21 +0000437 len -= 2;
438 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips878dad02013-01-16 18:09:19 -0600439 s = (__be16 *)pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200440 proto = *s++;
441 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000442 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000443 case TFTP_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000444 break;
445
wdenkfe8c2802002-11-03 00:38:21 +0000446 case TFTP_ACK:
Simon Glass6a398d22011-10-24 18:00:07 +0000447#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500448 if (tftp_put_active) {
449 if (tftp_put_final_block_sent) {
Simon Glass6a398d22011-10-24 18:00:07 +0000450 tftp_complete();
451 } else {
452 /*
453 * Move to the next block. We want our block
454 * count to wrap just like the other end!
455 */
456 int block = ntohs(*s);
Joe Hershberger64701592015-04-08 01:41:07 -0500457 int ack_ok = (tftp_cur_block == block);
Simon Glass6a398d22011-10-24 18:00:07 +0000458
Joe Hershberger64701592015-04-08 01:41:07 -0500459 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass6a398d22011-10-24 18:00:07 +0000460 update_block_number();
461 if (ack_ok)
Joe Hershberger64701592015-04-08 01:41:07 -0500462 tftp_send(); /* Send next data block */
Simon Glass6a398d22011-10-24 18:00:07 +0000463 }
464 }
465#endif
wdenkfe8c2802002-11-03 00:38:21 +0000466 break;
Simon Glass6a398d22011-10-24 18:00:07 +0000467
wdenkfe8c2802002-11-03 00:38:21 +0000468 default:
469 break;
470
Luca Ceresolib640ed32011-05-17 00:03:39 +0000471#ifdef CONFIG_CMD_TFTPSRV
472 case TFTP_WRQ:
473 debug("Got WRQ\n");
Joe Hershberger5874dec2015-04-08 01:41:01 -0500474 tftp_remote_ip = sip;
Joe Hershberger64701592015-04-08 01:41:07 -0500475 tftp_remote_port = src;
476 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glassbd8a0e02011-10-24 18:00:04 +0000477 new_transfer();
Joe Hershberger64701592015-04-08 01:41:07 -0500478 tftp_send(); /* Send ACK(0) */
Luca Ceresolib640ed32011-05-17 00:03:39 +0000479 break;
480#endif
481
wdenk7182b0f2003-10-06 21:55:32 +0000482 case TFTP_OACK:
Wolfgang Denk12730c72009-08-10 09:59:10 +0200483 debug("Got OACK: %s %s\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500484 pkt, pkt + strlen((char *)pkt) + 1);
485 tftp_state = STATE_OACK;
486 tftp_remote_port = src;
Wolfgang Denk8b70f342007-08-31 10:01:51 +0200487 /*
488 * Check for 'blksize' option.
489 * Careful: "i" is signed, "len" is unsigned, thus
490 * something like "len-8" may give a *huge* number
491 */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000492 for (i = 0; i+8 < len; i++) {
Joe Hershberger64701592015-04-08 01:41:07 -0500493 if (strcmp((char *)pkt + i, "blksize") == 0) {
494 tftp_block_size = (unsigned short)
495 simple_strtoul((char *)pkt + i + 8,
496 NULL, 10);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400497 debug("Blocksize ack: %s, %d\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500498 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200499 }
Robin Getzb3b00ed2009-08-20 10:50:20 -0400500#ifdef CONFIG_TFTP_TSIZE
Luca Ceresolibf6ce412011-05-14 05:49:58 +0000501 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger64701592015-04-08 01:41:07 -0500502 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresolic42fc272011-05-14 05:49:56 +0000503 NULL, 10);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400504 debug("size = %s, %d\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500505 (char *)pkt + i + 6, tftp_tsize);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400506 }
507#endif
David Updegraff7280da72007-06-11 10:41:07 -0500508 }
Simon Glass6a398d22011-10-24 18:00:07 +0000509#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500510 if (tftp_put_active) {
Simon Glass6a398d22011-10-24 18:00:07 +0000511 /* Get ready to send the first block */
Joe Hershberger64701592015-04-08 01:41:07 -0500512 tftp_state = STATE_DATA;
513 tftp_cur_block++;
Simon Glass6a398d22011-10-24 18:00:07 +0000514 }
515#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500516 tftp_send(); /* Send ACK or first data block */
wdenk7182b0f2003-10-06 21:55:32 +0000517 break;
wdenkfe8c2802002-11-03 00:38:21 +0000518 case TFTP_DATA:
519 if (len < 2)
520 return;
521 len -= 2;
Joe Hershberger64701592015-04-08 01:41:07 -0500522 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenkef893942004-02-23 16:11:30 +0000523
Joe Hershberger64701592015-04-08 01:41:07 -0500524 if (tftp_state == STATE_SEND_RRQ)
Robin Getz9e0a4d62009-07-23 03:01:03 -0400525 debug("Server did not acknowledge timeout option!\n");
wdenk7182b0f2003-10-06 21:55:32 +0000526
Joe Hershberger64701592015-04-08 01:41:07 -0500527 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
528 tftp_state == STATE_RECV_WRQ) {
wdenkef893942004-02-23 16:11:30 +0000529 /* first block received */
Joe Hershberger64701592015-04-08 01:41:07 -0500530 tftp_state = STATE_DATA;
531 tftp_remote_port = src;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000532 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000533
Joe Hershberger64701592015-04-08 01:41:07 -0500534 if (tftp_cur_block != 1) { /* Assertion */
535 puts("\nTFTP error: ");
536 printf("First block is not block 1 (%ld)\n",
537 tftp_cur_block);
538 puts("Starting again\n\n");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500539 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000540 break;
541 }
542 }
543
Joe Hershberger64701592015-04-08 01:41:07 -0500544 if (tftp_cur_block == tftp_prev_block) {
545 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000546 break;
547 }
548
Ravik Hasijad42686e2020-05-07 14:55:32 -0700549 update_block_number();
Joe Hershberger64701592015-04-08 01:41:07 -0500550 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200551 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500552 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000553
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100554 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
555 eth_halt();
556 net_set_state(NETLOOP_FAIL);
557 break;
558 }
wdenkfe8c2802002-11-03 00:38:21 +0000559
560 /*
Luca Ceresoli2f3dc0a2011-05-17 00:03:41 +0000561 * Acknowledge the block just received, which will prompt
Luca Ceresoli5079c762011-05-17 00:03:37 +0000562 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000563 */
Joe Hershberger64701592015-04-08 01:41:07 -0500564 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000565
Joe Hershberger64701592015-04-08 01:41:07 -0500566 if (len < tftp_block_size)
Simon Glassb437aad2011-10-24 18:00:03 +0000567 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000568 break;
569
570 case TFTP_ERROR:
Luca Ceresolif40538a2011-05-14 05:49:57 +0000571 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips878dad02013-01-16 18:09:19 -0600572 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmerb46293f2009-10-28 22:13:40 +0100573
Kim Phillips878dad02013-01-16 18:09:19 -0600574 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmerb46293f2009-10-28 22:13:40 +0100575 case TFTP_ERR_FILE_NOT_FOUND:
576 case TFTP_ERR_ACCESS_DENIED:
577 puts("Not retrying...\n");
578 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000579 net_set_state(NETLOOP_FAIL);
Remy Bohmerb46293f2009-10-28 22:13:40 +0100580 break;
581 case TFTP_ERR_UNDEFINED:
582 case TFTP_ERR_DISK_FULL:
583 case TFTP_ERR_UNEXPECTED_OPCODE:
584 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
585 case TFTP_ERR_FILE_ALREADY_EXISTS:
586 default:
587 puts("Starting again\n\n");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500588 net_start_again();
Remy Bohmerb46293f2009-10-28 22:13:40 +0100589 break;
590 }
wdenkfe8c2802002-11-03 00:38:21 +0000591 break;
592 }
593}
594
595
Joe Hershberger64701592015-04-08 01:41:07 -0500596static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000597{
Joe Hershberger64701592015-04-08 01:41:07 -0500598 if (++timeout_count > timeout_count_max) {
Simon Glassbd8a0e02011-10-24 18:00:04 +0000599 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000600 } else {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000601 puts("T ");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500602 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger64701592015-04-08 01:41:07 -0500603 if (tftp_state != STATE_RECV_WRQ)
604 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000605 }
606}
607
Simon Glass892265d2019-12-28 10:45:02 -0700608/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100609static int tftp_init_load_addr(void)
610{
611#ifdef CONFIG_LMB
612 struct lmb lmb;
613 phys_size_t max_size;
614
Simon Goldschmidt8890e7d2019-01-26 22:13:04 +0100615 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100616
Simon Glass892265d2019-12-28 10:45:02 -0700617 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100618 if (!max_size)
619 return -1;
620
621 tftp_load_size = max_size;
622#endif
Simon Glass892265d2019-12-28 10:45:02 -0700623 tftp_load_addr = image_load_addr;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100624 return 0;
625}
wdenkfe8c2802002-11-03 00:38:21 +0000626
Joe Hershberger64701592015-04-08 01:41:07 -0500627void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000628{
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200629#if CONFIG_NET_TFTP_VARS
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200630 char *ep; /* Environment pointer */
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200631
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100632 /*
633 * Allow the user to choose TFTP blocksize and timeout.
634 * TFTP protocol has a minimal timeout of 1 second.
635 */
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200636
Simon Glass64b723f2017-08-03 12:22:12 -0600637 ep = env_get("tftpblocksize");
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000638 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500639 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100640
Simon Glass64b723f2017-08-03 12:22:12 -0600641 ep = env_get("tftptimeout");
Luca Ceresolic4ffb9f2011-05-14 05:49:59 +0000642 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500643 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100644
Bin Menge67eaa82015-08-27 22:25:51 -0700645 if (timeout_ms < 1000) {
646 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500647 timeout_ms);
Bin Menge67eaa82015-08-27 22:25:51 -0700648 timeout_ms = 1000;
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100649 }
650
Simon Glass64b723f2017-08-03 12:22:12 -0600651 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200652 if (ep != NULL)
653 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
654
655 if (tftp_timeout_count_max < 0) {
656 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
657 tftp_timeout_count_max);
658 tftp_timeout_count_max = 0;
659 }
660#endif
661
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100662 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500663 tftp_block_size_option, timeout_ms);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200664
Joe Hershberger5874dec2015-04-08 01:41:01 -0500665 tftp_remote_ip = net_server_ip;
Joe Hershberger9cb7b022018-07-03 19:36:43 -0500666 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisser6cc63262011-12-03 03:29:44 +0000667 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger5874dec2015-04-08 01:41:01 -0500668 net_ip.s_addr & 0xFF,
669 (net_ip.s_addr >> 8) & 0xFF,
670 (net_ip.s_addr >> 16) & 0xFF,
671 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100672
Vladimir Zapolskiy04cc2902017-06-28 22:56:07 +0300673 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
674 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000675
Luca Ceresolif40538a2011-05-14 05:49:57 +0000676 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500677 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000678 }
679
Luca Ceresolif40538a2011-05-14 05:49:57 +0000680 printf("Using %s device\n", eth_get_name());
Simon Glass6a398d22011-10-24 18:00:07 +0000681 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass4abd0e22011-10-27 06:24:29 +0000682#ifdef CONFIG_CMD_TFTPPUT
683 protocol == TFTPPUT ? "to" : "from",
684#else
Joe Hershberger64701592015-04-08 01:41:07 -0500685 "from",
Simon Glass4abd0e22011-10-27 06:24:29 +0000686#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500687 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000688
689 /* Check if we need to send across this subnet */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500690 if (net_gateway.s_addr && net_netmask.s_addr) {
691 struct in_addr our_net;
692 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000693
Joe Hershberger5874dec2015-04-08 01:41:01 -0500694 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
695 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
696 if (our_net.s_addr != remote_net.s_addr)
697 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000698 }
Luca Ceresolif40538a2011-05-14 05:49:57 +0000699 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000700
Luca Ceresolif40538a2011-05-14 05:49:57 +0000701 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000702
Joe Hershberger290c8992015-04-08 01:41:02 -0500703 if (net_boot_file_expected_size_in_blocks) {
704 printf(" Size is 0x%x Bytes = ",
705 net_boot_file_expected_size_in_blocks << 9);
706 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000707 }
708
Luca Ceresolif40538a2011-05-14 05:49:57 +0000709 putc('\n');
Simon Glass6a398d22011-10-24 18:00:07 +0000710#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500711 tftp_put_active = (protocol == TFTPPUT);
712 if (tftp_put_active) {
Simon Glass892265d2019-12-28 10:45:02 -0700713 printf("Save address: 0x%lx\n", image_save_addr);
714 printf("Save size: 0x%lx\n", image_save_size);
715 net_boot_file_size = image_save_size;
Simon Glass6a398d22011-10-24 18:00:07 +0000716 puts("Saving: *\b");
Joe Hershberger64701592015-04-08 01:41:07 -0500717 tftp_state = STATE_SEND_WRQ;
Simon Glass6a398d22011-10-24 18:00:07 +0000718 new_transfer();
719 } else
720#endif
721 {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100722 if (tftp_init_load_addr()) {
723 eth_halt();
724 net_set_state(NETLOOP_FAIL);
725 puts("\nTFTP error: ");
726 puts("trying to overwrite reserved memory...\n");
727 return;
728 }
729 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass6a398d22011-10-24 18:00:07 +0000730 puts("Loading: *\b");
Joe Hershberger64701592015-04-08 01:41:07 -0500731 tftp_state = STATE_SEND_RRQ;
Jörg Krause6f341f52017-09-15 22:16:48 +0200732#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf94c4b992016-05-06 21:01:01 +0200733 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause6f341f52017-09-15 22:16:48 +0200734#endif
Simon Glass6a398d22011-10-24 18:00:07 +0000735 }
wdenkfe8c2802002-11-03 00:38:21 +0000736
Simon Glasscab9a8d2012-10-11 13:57:36 +0000737 time_start = get_timer(0);
Joe Hershberger64701592015-04-08 01:41:07 -0500738 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +0200739
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500740 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger5874dec2015-04-08 01:41:01 -0500741 net_set_udp_handler(tftp_handler);
Simon Glass2928cd82011-10-26 14:18:38 +0000742#ifdef CONFIG_CMD_TFTPPUT
Simon Glass6a398d22011-10-24 18:00:07 +0000743 net_set_icmp_handler(icmp_handler);
Simon Glass2928cd82011-10-26 14:18:38 +0000744#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500745 tftp_remote_port = WELL_KNOWN_PORT;
746 timeout_count = 0;
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200747 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger64701592015-04-08 01:41:07 -0500748 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff7280da72007-06-11 10:41:07 -0500749
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200750#ifdef CONFIG_TFTP_PORT
Simon Glass64b723f2017-08-03 12:22:12 -0600751 ep = env_get("tftpdstp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000752 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500753 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass64b723f2017-08-03 12:22:12 -0600754 ep = env_get("tftpsrcp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000755 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500756 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200757#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500758 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000759
wdenke6466f62003-06-05 19:27:42 +0000760 /* zero out server ether in case the server ip has changed */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500761 memset(net_server_ethaddr, 0, 6);
Joe Hershberger64701592015-04-08 01:41:07 -0500762 /* Revert tftp_block_size to dflt */
763 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400764#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500765 tftp_tsize = 0;
766 tftp_tsize_num_hash = 0;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400767#endif
wdenke6466f62003-06-05 19:27:42 +0000768
Joe Hershberger64701592015-04-08 01:41:07 -0500769 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000770}
Luca Ceresolib640ed32011-05-17 00:03:39 +0000771
772#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger64701592015-04-08 01:41:07 -0500773void tftp_start_server(void)
Luca Ceresolib640ed32011-05-17 00:03:39 +0000774{
775 tftp_filename[0] = 0;
776
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100777 if (tftp_init_load_addr()) {
778 eth_halt();
779 net_set_state(NETLOOP_FAIL);
780 puts("\nTFTP error: trying to overwrite reserved memory...\n");
781 return;
782 }
Luca Ceresolib640ed32011-05-17 00:03:39 +0000783 printf("Using %s device\n", eth_get_name());
Joe Hershberger5874dec2015-04-08 01:41:01 -0500784 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100785 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000786
787 puts("Loading: *\b");
788
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200789 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger64701592015-04-08 01:41:07 -0500790 timeout_count = 0;
791 timeout_ms = TIMEOUT;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500792 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000793
Joe Hershberger64701592015-04-08 01:41:07 -0500794 /* Revert tftp_block_size to dflt */
795 tftp_block_size = TFTP_BLOCK_SIZE;
796 tftp_cur_block = 0;
797 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolib640ed32011-05-17 00:03:39 +0000798
799#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500800 tftp_tsize = 0;
801 tftp_tsize_num_hash = 0;
Luca Ceresolib640ed32011-05-17 00:03:39 +0000802#endif
803
Joe Hershberger64701592015-04-08 01:41:07 -0500804 tftp_state = STATE_RECV_WRQ;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500805 net_set_udp_handler(tftp_handler);
Andrew Ruder91393c52013-10-22 19:10:28 -0500806
807 /* zero out server ether in case the server ip has changed */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500808 memset(net_server_ethaddr, 0, 6);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000809}
810#endif /* CONFIG_CMD_TFTPSRV */
wdenkfe8c2802002-11-03 00:38:21 +0000811