blob: 3348521c904266198b025ada4023301ed7ce03ba [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>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050015#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000016#include <net.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020017#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000018#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000019#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
20#include <flash.h>
21#endif
wdenkfe8c2802002-11-03 00:38:21 +000022
Simon Goldschmidta156c472019-01-14 22:38:22 +010023DECLARE_GLOBAL_DATA_PTR;
24
Luca Ceresoli2f094132011-05-14 05:49:56 +000025/* Well known TFTP port # */
26#define WELL_KNOWN_PORT 69
27/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070028#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000029#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000030/* # of timeouts before giving up */
Bin Mengaf2ca592015-08-27 22:25:51 -070031# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000032#else
33# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
34#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000035/* Number of "loading" hashes per line (for checking the image size) */
36#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000037
38/*
39 * TFTP operations.
40 */
41#define TFTP_RRQ 1
42#define TFTP_WRQ 2
43#define TFTP_DATA 3
44#define TFTP_ACK 4
45#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000046#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000047
Joe Hershberger8885c5f2015-04-08 01:41:07 -050048static ulong timeout_ms = TIMEOUT;
49static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000050static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020051
52/*
53 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050054 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020055 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050056 * tftp_timeout_count_max, gives the number of such connection retries.
57 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020058 * positive. The globals are meant to be set (and restored) by code needing
59 * non-standard timeout behavior when initiating a TFTP transfer.
60 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050061ulong tftp_timeout_ms = TIMEOUT;
62int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020063
Remy Bohmeraafda382009-10-28 22:13:40 +010064enum {
65 TFTP_ERR_UNDEFINED = 0,
66 TFTP_ERR_FILE_NOT_FOUND = 1,
67 TFTP_ERR_ACCESS_DENIED = 2,
68 TFTP_ERR_DISK_FULL = 3,
69 TFTP_ERR_UNEXPECTED_OPCODE = 4,
70 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
71 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
72};
73
Joe Hershberger049a95a2015-04-08 01:41:01 -050074static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000075/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050076static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000077/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050078static int tftp_our_port;
79static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000080/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050081static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000082/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050083static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000084/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050085static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000086/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050087static ulong tftp_block_wrap_offset;
88static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010089static ulong tftp_load_addr;
90#ifdef CONFIG_LMB
91static ulong tftp_load_size;
92#endif
Robin Getz4fccb812009-08-20 10:50:20 -040093#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000094/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050095static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000096/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050097static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040098#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +000099#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500100/* 1 if writing, else 0 */
101static int tftp_put_active;
102/* 1 if we have sent the last block */
103static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000104#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500105#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000106#endif
wdenk3f85ce22004-02-23 16:11:30 +0000107
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000108#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000109#define STATE_DATA 2
110#define STATE_TOO_LARGE 3
111#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000112#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000113#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000114#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000115
Luca Ceresoli2f094132011-05-14 05:49:56 +0000116/* default TFTP block size */
117#define TFTP_BLOCK_SIZE 512
118/* sequence number is 16 bit */
119#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000120
wdenkfe8c2802002-11-03 00:38:21 +0000121#define DEFAULT_NAME_LEN (8 + 4 + 1)
122static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100123
124#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
125#define MAX_LEN 128
126#else
127#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
128#endif
129
130static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000131
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200132/* 512 is poor choice for ethernet, MTU is typically 1500.
133 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500134 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200135 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500136 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200137
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500138static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay31d275b2020-04-22 14:18:26 +0200139static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500140
Simon Goldschmidta156c472019-01-14 22:38:22 +0100141static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000142{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500143 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenk3f85ce22004-02-23 16:11:30 +0000144 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100145 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200146#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000147 int i, rc = 0;
148
Luca Ceresolic718b142011-05-14 05:49:57 +0000149 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000150 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200151 if (flash_info[i].flash_id == FLASH_UNKNOWN)
152 continue;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100153 if (store_addr >= flash_info[i].start[0]) {
wdenkfe8c2802002-11-03 00:38:21 +0000154 rc = 1;
155 break;
156 }
157 }
158
159 if (rc) { /* Flash is destination for this packet */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100160 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000161 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000162 flash_perror(rc);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100163 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000164 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000165 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000167 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100168 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500169
Simon Goldschmidta156c472019-01-14 22:38:22 +0100170#ifdef CONFIG_LMB
Bin Mengca48cb42019-11-15 22:20:13 -0800171 ulong end_addr = tftp_load_addr + tftp_load_size;
172
173 if (!end_addr)
174 end_addr = ULONG_MAX;
175
Simon Goldschmidta156c472019-01-14 22:38:22 +0100176 if (store_addr < tftp_load_addr ||
Bin Mengca48cb42019-11-15 22:20:13 -0800177 store_addr + len > end_addr) {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100178 puts("\nTFTP error: ");
179 puts("trying to overwrite reserved memory...\n");
180 return -1;
181 }
182#endif
183 ptr = map_sysmem(store_addr, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500184 memcpy(ptr, src, len);
185 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000186 }
187
Joe Hershberger14111572015-04-08 01:41:02 -0500188 if (net_boot_file_size < newsize)
189 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100190
191 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000192}
193
Simon Glasse4cde2f2011-10-24 18:00:04 +0000194/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000195static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000196{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500197 tftp_prev_block = 0;
198 tftp_block_wrap = 0;
199 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000200#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500201 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000202#endif
203}
204
Simon Glass1fb7cd42011-10-24 18:00:07 +0000205#ifdef CONFIG_CMD_TFTPPUT
206/**
207 * Load the next block from memory to be sent over tftp.
208 *
209 * @param block Block number to send
210 * @param dst Destination buffer for data
211 * @param len Number of bytes in block (this one and every other)
212 * @return number of bytes loaded
213 */
214static int load_block(unsigned block, uchar *dst, unsigned len)
215{
216 /* We may want to get the final block from the previous set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500217 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000218 ulong tosend = len;
219
Joe Hershberger14111572015-04-08 01:41:02 -0500220 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700221 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardt2bcc43b2020-02-22 08:43:40 +0100222 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500223 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000224 return tosend;
225}
226#endif
227
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500228static void tftp_send(void);
229static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000230
231/**********************************************************************/
232
Simon Glassf5329bb2011-10-24 18:00:03 +0000233static void show_block_marker(void)
234{
235#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500236 if (tftp_tsize) {
237 ulong pos = tftp_cur_block * tftp_block_size +
238 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200239 if (pos > tftp_tsize)
240 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000241
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500242 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000243 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500244 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000245 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000246 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000247#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000248 {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500249 if (((tftp_cur_block - 1) % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000250 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500251 else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000252 puts("\n\t ");
253 }
254}
255
Simon Glasse4cde2f2011-10-24 18:00:04 +0000256/**
257 * restart the current transfer due to an error
258 *
259 * @param msg Message to print for user
260 */
261static void restart(const char *msg)
262{
263 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500264 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000265}
266
267/*
268 * Check if the block number has wrapped, and update progress
269 *
270 * TODO: The egregious use of global variables in this file should be tidied.
271 */
272static void update_block_number(void)
273{
274 /*
275 * RFC1350 specifies that the first data packet will
276 * have sequence number 1. If we receive a sequence
277 * number of 0 this means that there was a wrap
278 * around of the (16 bit) counter.
279 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500280 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
281 tftp_block_wrap++;
282 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
283 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000284 } else {
285 show_block_marker();
286 }
287}
288
Simon Glassf5329bb2011-10-24 18:00:03 +0000289/* The TFTP get or put is complete */
290static void tftp_complete(void)
291{
292#ifdef CONFIG_TFTP_TSIZE
293 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500294 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000295 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500296 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000297 }
Simon Glass8104f542014-10-10 07:30:21 -0600298 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500299 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000300#endif
Simon Glass85b19802012-10-11 13:57:36 +0000301 time_start = get_timer(time_start);
302 if (time_start > 0) {
303 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500304 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000305 time_start * 1000, "/s");
306 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000307 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000308 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000309}
310
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500311static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000312{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000313 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000314 uchar *xp;
315 int len = 0;
316 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000317
318 /*
319 * We will always be sending some sort of packet, so
320 * cobble together the packet headers now.
321 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500322 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000323
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500324 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000325 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000326 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000327 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200328 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000329#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500330 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000331 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000332#else
333 *s++ = htons(TFTP_RRQ);
334#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200335 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000336 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000337 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000338 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000339 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000340 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000341 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500342 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400343 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000344 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400345#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500346 pkt += sprintf((char *)pkt, "tsize%c%u%c",
347 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400348#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500349 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000350 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500351 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000352 len = pkt - xp;
353 break;
354
wdenkfbe4b5c2003-10-06 21:55:32 +0000355 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000356
357 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500358 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000359 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200360 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000361 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500362 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000363 pkt = (uchar *)(s + 2);
364#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500365 if (tftp_put_active) {
366 int toload = tftp_block_size;
367 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000368
369 s[0] = htons(TFTP_DATA);
370 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500371 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000372 }
373#endif
wdenkfe8c2802002-11-03 00:38:21 +0000374 len = pkt - xp;
375 break;
376
377 case STATE_TOO_LARGE:
378 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200379 s = (ushort *)pkt;
380 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000381 *s++ = htons(3);
382
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200383 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000384 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000385 pkt += 14 /*strlen("File too large")*/ + 1;
386 len = pkt - xp;
387 break;
388
389 case STATE_BAD_MAGIC:
390 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200391 s = (ushort *)pkt;
392 *s++ = htons(TFTP_ERROR);
393 *s++ = htons(2);
394 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000395 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000396 pkt += 18 /*strlen("File has bad magic")*/ + 1;
397 len = pkt - xp;
398 break;
399 }
400
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500401 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
402 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000403}
404
Simon Glass39bccd22011-10-26 14:18:38 +0000405#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000406static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500407 struct in_addr sip, unsigned src, uchar *pkt,
408 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000409{
410 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
411 /* Oh dear the other end has gone away */
412 restart("TFTP server died");
413 }
414}
Simon Glass39bccd22011-10-26 14:18:38 +0000415#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000416
Joe Hershberger049a95a2015-04-08 01:41:01 -0500417static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
418 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000419{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600420 __be16 proto;
421 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200422 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000423
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500424 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000425 return;
wdenkfe8c2802002-11-03 00:38:21 +0000426 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500427 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
428 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000429 return;
wdenkfe8c2802002-11-03 00:38:21 +0000430
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000431 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000432 return;
wdenkfe8c2802002-11-03 00:38:21 +0000433 len -= 2;
434 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600435 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200436 proto = *s++;
437 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000438 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000439 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000440 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000441
442 case TFTP_ACK:
443#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500444 if (tftp_put_active) {
445 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000446 tftp_complete();
447 } else {
448 /*
449 * Move to the next block. We want our block
450 * count to wrap just like the other end!
451 */
452 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500453 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000454
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500455 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000456 update_block_number();
457 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500458 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000459 }
460 }
461#endif
462 break;
463
wdenkfe8c2802002-11-03 00:38:21 +0000464 default:
465 break;
466
Luca Ceresolie59e3562011-05-17 00:03:39 +0000467#ifdef CONFIG_CMD_TFTPSRV
468 case TFTP_WRQ:
469 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500470 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500471 tftp_remote_port = src;
472 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000473 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500474 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000475 break;
476#endif
477
wdenkfbe4b5c2003-10-06 21:55:32 +0000478 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200479 debug("Got OACK: %s %s\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500480 pkt, pkt + strlen((char *)pkt) + 1);
481 tftp_state = STATE_OACK;
482 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200483 /*
484 * Check for 'blksize' option.
485 * Careful: "i" is signed, "len" is unsigned, thus
486 * something like "len-8" may give a *huge* number
487 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000488 for (i = 0; i+8 < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500489 if (strcmp((char *)pkt + i, "blksize") == 0) {
490 tftp_block_size = (unsigned short)
491 simple_strtoul((char *)pkt + i + 8,
492 NULL, 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400493 debug("Blocksize ack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500494 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200495 }
Robin Getz4fccb812009-08-20 10:50:20 -0400496#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000497 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500498 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000499 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400500 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500501 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400502 }
503#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500504 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000505#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500506 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000507 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500508 tftp_state = STATE_DATA;
509 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000510 }
511#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500512 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000513 break;
wdenkfe8c2802002-11-03 00:38:21 +0000514 case TFTP_DATA:
515 if (len < 2)
516 return;
517 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500518 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000519
Simon Glasse4cde2f2011-10-24 18:00:04 +0000520 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000521
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500522 if (tftp_state == STATE_SEND_RRQ)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400523 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000524
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500525 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
526 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000527 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500528 tftp_state = STATE_DATA;
529 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000530 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000531
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500532 if (tftp_cur_block != 1) { /* Assertion */
533 puts("\nTFTP error: ");
534 printf("First block is not block 1 (%ld)\n",
535 tftp_cur_block);
536 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500537 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000538 break;
539 }
540 }
541
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500542 if (tftp_cur_block == tftp_prev_block) {
543 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000544 break;
545 }
546
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500547 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200548 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500549 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000550
Simon Goldschmidta156c472019-01-14 22:38:22 +0100551 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
552 eth_halt();
553 net_set_state(NETLOOP_FAIL);
554 break;
555 }
wdenkfe8c2802002-11-03 00:38:21 +0000556
557 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000558 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000559 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000560 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500561 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000562
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500563 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000564 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000565 break;
566
567 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000568 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600569 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100570
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600571 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100572 case TFTP_ERR_FILE_NOT_FOUND:
573 case TFTP_ERR_ACCESS_DENIED:
574 puts("Not retrying...\n");
575 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000576 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100577 break;
578 case TFTP_ERR_UNDEFINED:
579 case TFTP_ERR_DISK_FULL:
580 case TFTP_ERR_UNEXPECTED_OPCODE:
581 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
582 case TFTP_ERR_FILE_ALREADY_EXISTS:
583 default:
584 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500585 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100586 break;
587 }
wdenkfe8c2802002-11-03 00:38:21 +0000588 break;
589 }
590}
591
592
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500593static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000594{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500595 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000596 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000597 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000598 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500599 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500600 if (tftp_state != STATE_RECV_WRQ)
601 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000602 }
603}
604
Simon Glassbb872dd2019-12-28 10:45:02 -0700605/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100606static int tftp_init_load_addr(void)
607{
608#ifdef CONFIG_LMB
609 struct lmb lmb;
610 phys_size_t max_size;
611
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100612 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100613
Simon Glassbb872dd2019-12-28 10:45:02 -0700614 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100615 if (!max_size)
616 return -1;
617
618 tftp_load_size = max_size;
619#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700620 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100621 return 0;
622}
wdenkfe8c2802002-11-03 00:38:21 +0000623
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500624void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000625{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200626#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200627 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200628
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100629 /*
630 * Allow the user to choose TFTP blocksize and timeout.
631 * TFTP protocol has a minimal timeout of 1 second.
632 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200633
Simon Glass00caae62017-08-03 12:22:12 -0600634 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000635 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500636 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100637
Simon Glass00caae62017-08-03 12:22:12 -0600638 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000639 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500640 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100641
Bin Mengaf2ca592015-08-27 22:25:51 -0700642 if (timeout_ms < 1000) {
643 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500644 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700645 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100646 }
647
Simon Glass00caae62017-08-03 12:22:12 -0600648 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200649 if (ep != NULL)
650 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
651
652 if (tftp_timeout_count_max < 0) {
653 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
654 tftp_timeout_count_max);
655 tftp_timeout_count_max = 0;
656 }
657#endif
658
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100659 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500660 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200661
Joe Hershberger049a95a2015-04-08 01:41:01 -0500662 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500663 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000664 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500665 net_ip.s_addr & 0xFF,
666 (net_ip.s_addr >> 8) & 0xFF,
667 (net_ip.s_addr >> 16) & 0xFF,
668 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100669
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300670 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
671 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000672
Luca Ceresolic718b142011-05-14 05:49:57 +0000673 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500674 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000675 }
676
Luca Ceresolic718b142011-05-14 05:49:57 +0000677 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000678 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000679#ifdef CONFIG_CMD_TFTPPUT
680 protocol == TFTPPUT ? "to" : "from",
681#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500682 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000683#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500684 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000685
686 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500687 if (net_gateway.s_addr && net_netmask.s_addr) {
688 struct in_addr our_net;
689 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000690
Joe Hershberger049a95a2015-04-08 01:41:01 -0500691 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
692 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
693 if (our_net.s_addr != remote_net.s_addr)
694 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000695 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000696 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000697
Luca Ceresolic718b142011-05-14 05:49:57 +0000698 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000699
Joe Hershberger14111572015-04-08 01:41:02 -0500700 if (net_boot_file_expected_size_in_blocks) {
701 printf(" Size is 0x%x Bytes = ",
702 net_boot_file_expected_size_in_blocks << 9);
703 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000704 }
705
Luca Ceresolic718b142011-05-14 05:49:57 +0000706 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000707#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500708 tftp_put_active = (protocol == TFTPPUT);
709 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700710 printf("Save address: 0x%lx\n", image_save_addr);
711 printf("Save size: 0x%lx\n", image_save_size);
712 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000713 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500714 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000715 new_transfer();
716 } else
717#endif
718 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100719 if (tftp_init_load_addr()) {
720 eth_halt();
721 net_set_state(NETLOOP_FAIL);
722 puts("\nTFTP error: ");
723 puts("trying to overwrite reserved memory...\n");
724 return;
725 }
726 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000727 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500728 tftp_state = STATE_SEND_RRQ;
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200729#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200730 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200731#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000732 }
wdenkfe8c2802002-11-03 00:38:21 +0000733
Simon Glass85b19802012-10-11 13:57:36 +0000734 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500735 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200736
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500737 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500738 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000739#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000740 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000741#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500742 tftp_remote_port = WELL_KNOWN_PORT;
743 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200744 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500745 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500746
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200747#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600748 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000749 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500750 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600751 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000752 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500753 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200754#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500755 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000756
wdenk73a8b272003-06-05 19:27:42 +0000757 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500758 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500759 /* Revert tftp_block_size to dflt */
760 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400761#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500762 tftp_tsize = 0;
763 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400764#endif
wdenk73a8b272003-06-05 19:27:42 +0000765
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500766 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000767}
768
Luca Ceresolie59e3562011-05-17 00:03:39 +0000769#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500770void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000771{
772 tftp_filename[0] = 0;
773
Simon Goldschmidta156c472019-01-14 22:38:22 +0100774 if (tftp_init_load_addr()) {
775 eth_halt();
776 net_set_state(NETLOOP_FAIL);
777 puts("\nTFTP error: trying to overwrite reserved memory...\n");
778 return;
779 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000780 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500781 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100782 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000783
784 puts("Loading: *\b");
785
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200786 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500787 timeout_count = 0;
788 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500789 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000790
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500791 /* Revert tftp_block_size to dflt */
792 tftp_block_size = TFTP_BLOCK_SIZE;
793 tftp_cur_block = 0;
794 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000795
796#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500797 tftp_tsize = 0;
798 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000799#endif
800
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500801 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500802 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500803
804 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500805 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000806}
807#endif /* CONFIG_CMD_TFTPSRV */
808