blob: 180140e495b15482f9ac2c0fef87a0b87f6cf8da [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>
Alexander Graf0efe1bc2016-05-06 21:01:01 +020011#include <efi_loader.h>
Simon Glass7b51b572019-08-01 09:46:52 -060012#include <env.h>
Simon Glass8e8ccfe2019-12-28 10:45:03 -070013#include <image.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050016#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000017#include <net.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020018#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000019#include "bootp.h"
Joe Hershberger13dfe942012-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 Goldschmidta156c472019-01-14 22:38:22 +010024DECLARE_GLOBAL_DATA_PTR;
25
Luca Ceresoli2f094132011-05-14 05:49:56 +000026/* Well known TFTP port # */
27#define WELL_KNOWN_PORT 69
28/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070029#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000030#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000031/* # of timeouts before giving up */
Bin Mengaf2ca592015-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 Ceresoli2f094132011-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
wdenkfbe4b5c2003-10-06 21:55:32 +000047#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000048
Joe Hershberger8885c5f2015-04-08 01:41:07 -050049static ulong timeout_ms = TIMEOUT;
50static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000051static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020052
53/*
54 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050055 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020056 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-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 Siekae83cc062008-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 Hershberger8885c5f2015-04-08 01:41:07 -050062ulong tftp_timeout_ms = TIMEOUT;
63int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020064
Remy Bohmeraafda382009-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 Hershberger049a95a2015-04-08 01:41:01 -050075static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000076/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050077static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000078/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050079static int tftp_our_port;
80static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000081/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050082static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000083/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050084static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000085/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050086static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000087/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050088static ulong tftp_block_wrap_offset;
89static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010090static ulong tftp_load_addr;
91#ifdef CONFIG_LMB
92static ulong tftp_load_size;
93#endif
Robin Getz4fccb812009-08-20 10:50:20 -040094#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000095/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050096static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000097/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050098static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040099#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000100#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-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 Glass1fb7cd42011-10-24 18:00:07 +0000105#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500106#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000107#endif
wdenk3f85ce22004-02-23 16:11:30 +0000108
Luca Ceresolie3fb0ab2011-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
wdenkfbe4b5c2003-10-06 21:55:32 +0000113#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000114#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000115#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000116
Luca Ceresoli2f094132011-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))
wdenk3f85ce22004-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-VILLARDa93907c2008-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 Denk85eb5ca2007-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 Updegraff53a5c422007-06-11 10:41:07 -0500135 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200136 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500137 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200138
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500139static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay31d275b2020-04-22 14:18:26 +0200140static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500141
Simon Goldschmidta156c472019-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 Hershberger8885c5f2015-04-08 01:41:07 -0500144 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenk3f85ce22004-02-23 16:11:30 +0000145 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100146 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-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 Ceresolic718b142011-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 Friedrichbe1b0d22008-09-02 11:24:59 +0200152 if (flash_info[i].flash_id == FLASH_UNKNOWN)
153 continue;
Simon Goldschmidta156c472019-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 Goldschmidta156c472019-01-14 22:38:22 +0100161 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000162 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000163 flash_perror(rc);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100164 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000165 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000166 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000168 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100169 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500170
Simon Goldschmidta156c472019-01-14 22:38:22 +0100171#ifdef CONFIG_LMB
Bin Mengca48cb42019-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 Goldschmidta156c472019-01-14 22:38:22 +0100177 if (store_addr < tftp_load_addr ||
Bin Mengca48cb42019-11-15 22:20:13 -0800178 store_addr + len > end_addr) {
Simon Goldschmidta156c472019-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 Hershberger55d5fd92015-03-22 17:09:08 -0500185 memcpy(ptr, src, len);
186 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000187 }
188
Joe Hershberger14111572015-04-08 01:41:02 -0500189 if (net_boot_file_size < newsize)
190 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100191
192 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000193}
194
Simon Glasse4cde2f2011-10-24 18:00:04 +0000195/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000196static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000197{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500198 tftp_prev_block = 0;
199 tftp_block_wrap = 0;
200 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000201#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500202 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000203#endif
204}
205
Simon Glass1fb7cd42011-10-24 18:00:07 +0000206#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 Hershberger8885c5f2015-04-08 01:41:07 -0500218 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000219 ulong tosend = len;
220
Joe Hershberger14111572015-04-08 01:41:02 -0500221 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700222 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardt2bcc43b2020-02-22 08:43:40 +0100223 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500224 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000225 return tosend;
226}
227#endif
228
Joe Hershberger8885c5f2015-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 Glassf5329bb2011-10-24 18:00:03 +0000234static void show_block_marker(void)
235{
236#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500237 if (tftp_tsize) {
238 ulong pos = tftp_cur_block * tftp_block_size +
239 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200240 if (pos > tftp_tsize)
241 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000242
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500243 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000244 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500245 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000246 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000247 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000248#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000249 {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500250 if (((tftp_cur_block - 1) % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000251 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500252 else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000253 puts("\n\t ");
254 }
255}
256
Simon Glasse4cde2f2011-10-24 18:00:04 +0000257/**
258 * restart the current transfer due to an error
259 *
260 * @param msg Message to print for user
261 */
262static void restart(const char *msg)
263{
264 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500265 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000266}
267
268/*
269 * Check if the block number has wrapped, and update progress
270 *
271 * TODO: The egregious use of global variables in this file should be tidied.
272 */
273static void update_block_number(void)
274{
275 /*
276 * RFC1350 specifies that the first data packet will
277 * have sequence number 1. If we receive a sequence
278 * number of 0 this means that there was a wrap
279 * around of the (16 bit) counter.
280 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500281 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
282 tftp_block_wrap++;
283 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
284 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000285 } else {
286 show_block_marker();
287 }
288}
289
Simon Glassf5329bb2011-10-24 18:00:03 +0000290/* The TFTP get or put is complete */
291static void tftp_complete(void)
292{
293#ifdef CONFIG_TFTP_TSIZE
294 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500295 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000296 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500297 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000298 }
Simon Glass8104f542014-10-10 07:30:21 -0600299 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500300 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000301#endif
Simon Glass85b19802012-10-11 13:57:36 +0000302 time_start = get_timer(time_start);
303 if (time_start > 0) {
304 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500305 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000306 time_start * 1000, "/s");
307 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000308 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000309 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000310}
311
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500312static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000313{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000314 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000315 uchar *xp;
316 int len = 0;
317 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000318
319 /*
320 * We will always be sending some sort of packet, so
321 * cobble together the packet headers now.
322 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500323 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000324
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500325 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000326 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000327 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000328 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200329 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000330#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500331 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000332 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000333#else
334 *s++ = htons(TFTP_RRQ);
335#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200336 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000337 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000338 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000339 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000340 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000341 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000342 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500343 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400344 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000345 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400346#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500347 pkt += sprintf((char *)pkt, "tsize%c%u%c",
348 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400349#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500350 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000351 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500352 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000353 len = pkt - xp;
354 break;
355
wdenkfbe4b5c2003-10-06 21:55:32 +0000356 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000357
358 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500359 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000360 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200361 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000362 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500363 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000364 pkt = (uchar *)(s + 2);
365#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500366 if (tftp_put_active) {
367 int toload = tftp_block_size;
368 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000369
370 s[0] = htons(TFTP_DATA);
371 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500372 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000373 }
374#endif
wdenkfe8c2802002-11-03 00:38:21 +0000375 len = pkt - xp;
376 break;
377
378 case STATE_TOO_LARGE:
379 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200380 s = (ushort *)pkt;
381 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000382 *s++ = htons(3);
383
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200384 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000385 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000386 pkt += 14 /*strlen("File too large")*/ + 1;
387 len = pkt - xp;
388 break;
389
390 case STATE_BAD_MAGIC:
391 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200392 s = (ushort *)pkt;
393 *s++ = htons(TFTP_ERROR);
394 *s++ = htons(2);
395 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000396 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000397 pkt += 18 /*strlen("File has bad magic")*/ + 1;
398 len = pkt - xp;
399 break;
400 }
401
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500402 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
403 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000404}
405
Simon Glass39bccd22011-10-26 14:18:38 +0000406#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000407static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500408 struct in_addr sip, unsigned src, uchar *pkt,
409 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000410{
411 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
412 /* Oh dear the other end has gone away */
413 restart("TFTP server died");
414 }
415}
Simon Glass39bccd22011-10-26 14:18:38 +0000416#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000417
Joe Hershberger049a95a2015-04-08 01:41:01 -0500418static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
419 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000420{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600421 __be16 proto;
422 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200423 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000424
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500425 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000426 return;
wdenkfe8c2802002-11-03 00:38:21 +0000427 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500428 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
429 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000430 return;
wdenkfe8c2802002-11-03 00:38:21 +0000431
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000432 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000433 return;
wdenkfe8c2802002-11-03 00:38:21 +0000434 len -= 2;
435 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600436 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200437 proto = *s++;
438 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000439 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000440 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000441 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000442
443 case TFTP_ACK:
444#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500445 if (tftp_put_active) {
446 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000447 tftp_complete();
448 } else {
449 /*
450 * Move to the next block. We want our block
451 * count to wrap just like the other end!
452 */
453 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500454 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000455
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500456 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000457 update_block_number();
458 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500459 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000460 }
461 }
462#endif
463 break;
464
wdenkfe8c2802002-11-03 00:38:21 +0000465 default:
466 break;
467
Luca Ceresolie59e3562011-05-17 00:03:39 +0000468#ifdef CONFIG_CMD_TFTPSRV
469 case TFTP_WRQ:
470 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500471 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500472 tftp_remote_port = src;
473 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000474 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500475 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000476 break;
477#endif
478
wdenkfbe4b5c2003-10-06 21:55:32 +0000479 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200480 debug("Got OACK: %s %s\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500481 pkt, pkt + strlen((char *)pkt) + 1);
482 tftp_state = STATE_OACK;
483 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200484 /*
485 * Check for 'blksize' option.
486 * Careful: "i" is signed, "len" is unsigned, thus
487 * something like "len-8" may give a *huge* number
488 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000489 for (i = 0; i+8 < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500490 if (strcmp((char *)pkt + i, "blksize") == 0) {
491 tftp_block_size = (unsigned short)
492 simple_strtoul((char *)pkt + i + 8,
493 NULL, 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400494 debug("Blocksize ack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500495 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200496 }
Robin Getz4fccb812009-08-20 10:50:20 -0400497#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000498 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500499 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000500 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400501 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500502 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400503 }
504#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500505 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000506#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500507 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000508 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500509 tftp_state = STATE_DATA;
510 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000511 }
512#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500513 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000514 break;
wdenkfe8c2802002-11-03 00:38:21 +0000515 case TFTP_DATA:
516 if (len < 2)
517 return;
518 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500519 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000520
Simon Glasse4cde2f2011-10-24 18:00:04 +0000521 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000522
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500523 if (tftp_state == STATE_SEND_RRQ)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400524 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000525
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500526 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
527 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000528 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500529 tftp_state = STATE_DATA;
530 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000531 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000532
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500533 if (tftp_cur_block != 1) { /* Assertion */
534 puts("\nTFTP error: ");
535 printf("First block is not block 1 (%ld)\n",
536 tftp_cur_block);
537 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500538 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000539 break;
540 }
541 }
542
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500543 if (tftp_cur_block == tftp_prev_block) {
544 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000545 break;
546 }
547
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500548 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200549 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500550 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000551
Simon Goldschmidta156c472019-01-14 22:38:22 +0100552 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
553 eth_halt();
554 net_set_state(NETLOOP_FAIL);
555 break;
556 }
wdenkfe8c2802002-11-03 00:38:21 +0000557
558 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000559 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000560 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000561 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500562 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000563
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500564 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000565 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000566 break;
567
568 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000569 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600570 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100571
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600572 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100573 case TFTP_ERR_FILE_NOT_FOUND:
574 case TFTP_ERR_ACCESS_DENIED:
575 puts("Not retrying...\n");
576 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000577 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100578 break;
579 case TFTP_ERR_UNDEFINED:
580 case TFTP_ERR_DISK_FULL:
581 case TFTP_ERR_UNEXPECTED_OPCODE:
582 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
583 case TFTP_ERR_FILE_ALREADY_EXISTS:
584 default:
585 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500586 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100587 break;
588 }
wdenkfe8c2802002-11-03 00:38:21 +0000589 break;
590 }
591}
592
593
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500594static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000595{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500596 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000597 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000598 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000599 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500600 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500601 if (tftp_state != STATE_RECV_WRQ)
602 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000603 }
604}
605
Simon Glassbb872dd2019-12-28 10:45:02 -0700606/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100607static int tftp_init_load_addr(void)
608{
609#ifdef CONFIG_LMB
610 struct lmb lmb;
611 phys_size_t max_size;
612
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100613 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100614
Simon Glassbb872dd2019-12-28 10:45:02 -0700615 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100616 if (!max_size)
617 return -1;
618
619 tftp_load_size = max_size;
620#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700621 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100622 return 0;
623}
wdenkfe8c2802002-11-03 00:38:21 +0000624
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500625void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000626{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200627#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200628 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200629
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100630 /*
631 * Allow the user to choose TFTP blocksize and timeout.
632 * TFTP protocol has a minimal timeout of 1 second.
633 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200634
Simon Glass00caae62017-08-03 12:22:12 -0600635 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000636 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500637 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100638
Simon Glass00caae62017-08-03 12:22:12 -0600639 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000640 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500641 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100642
Bin Mengaf2ca592015-08-27 22:25:51 -0700643 if (timeout_ms < 1000) {
644 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500645 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700646 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100647 }
648
Simon Glass00caae62017-08-03 12:22:12 -0600649 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200650 if (ep != NULL)
651 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
652
653 if (tftp_timeout_count_max < 0) {
654 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
655 tftp_timeout_count_max);
656 tftp_timeout_count_max = 0;
657 }
658#endif
659
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100660 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500661 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200662
Joe Hershberger049a95a2015-04-08 01:41:01 -0500663 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500664 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000665 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500666 net_ip.s_addr & 0xFF,
667 (net_ip.s_addr >> 8) & 0xFF,
668 (net_ip.s_addr >> 16) & 0xFF,
669 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100670
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300671 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
672 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000673
Luca Ceresolic718b142011-05-14 05:49:57 +0000674 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500675 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000676 }
677
Luca Ceresolic718b142011-05-14 05:49:57 +0000678 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000679 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000680#ifdef CONFIG_CMD_TFTPPUT
681 protocol == TFTPPUT ? "to" : "from",
682#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500683 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000684#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500685 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000686
687 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500688 if (net_gateway.s_addr && net_netmask.s_addr) {
689 struct in_addr our_net;
690 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000691
Joe Hershberger049a95a2015-04-08 01:41:01 -0500692 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
693 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
694 if (our_net.s_addr != remote_net.s_addr)
695 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000696 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000697 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000698
Luca Ceresolic718b142011-05-14 05:49:57 +0000699 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000700
Joe Hershberger14111572015-04-08 01:41:02 -0500701 if (net_boot_file_expected_size_in_blocks) {
702 printf(" Size is 0x%x Bytes = ",
703 net_boot_file_expected_size_in_blocks << 9);
704 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000705 }
706
Luca Ceresolic718b142011-05-14 05:49:57 +0000707 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000708#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500709 tftp_put_active = (protocol == TFTPPUT);
710 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700711 printf("Save address: 0x%lx\n", image_save_addr);
712 printf("Save size: 0x%lx\n", image_save_size);
713 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000714 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500715 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000716 new_transfer();
717 } else
718#endif
719 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100720 if (tftp_init_load_addr()) {
721 eth_halt();
722 net_set_state(NETLOOP_FAIL);
723 puts("\nTFTP error: ");
724 puts("trying to overwrite reserved memory...\n");
725 return;
726 }
727 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000728 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500729 tftp_state = STATE_SEND_RRQ;
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200730#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200731 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200732#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000733 }
wdenkfe8c2802002-11-03 00:38:21 +0000734
Simon Glass85b19802012-10-11 13:57:36 +0000735 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500736 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200737
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500738 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500739 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000740#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000741 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000742#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500743 tftp_remote_port = WELL_KNOWN_PORT;
744 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200745 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500746 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500747
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200748#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600749 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000750 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500751 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600752 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000753 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500754 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200755#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500756 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000757
wdenk73a8b272003-06-05 19:27:42 +0000758 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500759 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500760 /* Revert tftp_block_size to dflt */
761 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400762#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500763 tftp_tsize = 0;
764 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400765#endif
wdenk73a8b272003-06-05 19:27:42 +0000766
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500767 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000768}
769
Luca Ceresolie59e3562011-05-17 00:03:39 +0000770#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500771void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000772{
773 tftp_filename[0] = 0;
774
Simon Goldschmidta156c472019-01-14 22:38:22 +0100775 if (tftp_init_load_addr()) {
776 eth_halt();
777 net_set_state(NETLOOP_FAIL);
778 puts("\nTFTP error: trying to overwrite reserved memory...\n");
779 return;
780 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000781 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500782 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100783 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000784
785 puts("Loading: *\b");
786
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200787 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500788 timeout_count = 0;
789 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500790 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000791
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500792 /* Revert tftp_block_size to dflt */
793 tftp_block_size = TFTP_BLOCK_SIZE;
794 tftp_cur_block = 0;
795 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000796
797#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500798 tftp_tsize = 0;
799 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000800#endif
801
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500802 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500803 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500804
805 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500806 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000807}
808#endif /* CONFIG_CMD_TFTPSRV */
809