blob: 88e71e67de3536bb1b8a50c54b6db5cad03846b8 [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 */
wdenkfe8c2802002-11-03 00:38:21 +00008#include <common.h>
9#include <command.h>
Simon Glass4e4bf942022-07-31 12:28:48 -060010#include <display_options.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>
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +030018#include <net6.h>
Simon Glass401d1c42020-10-30 21:38:53 -060019#include <asm/global_data.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020020#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000021#include "bootp.h"
22
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
Luca Ceresoli2f094132011-05-14 05:49:56 +000029/* Number of "loading" hashes per line (for checking the image size) */
30#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000031
32/*
33 * TFTP operations.
34 */
35#define TFTP_RRQ 1
36#define TFTP_WRQ 2
37#define TFTP_DATA 3
38#define TFTP_ACK 4
39#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000040#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000041
Joe Hershberger8885c5f2015-04-08 01:41:07 -050042static ulong timeout_ms = TIMEOUT;
Tom Rini01d1b992022-03-11 09:12:02 -050043static int timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Simon Glass85b19802012-10-11 13:57:36 +000044static ulong time_start; /* Record time we started tftp */
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +030045static struct in6_addr tftp_remote_ip6;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020046
47/*
48 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050049 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020050 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050051 * tftp_timeout_count_max, gives the number of such connection retries.
52 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020053 * positive. The globals are meant to be set (and restored) by code needing
54 * non-standard timeout behavior when initiating a TFTP transfer.
55 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050056ulong tftp_timeout_ms = TIMEOUT;
Tom Rini01d1b992022-03-11 09:12:02 -050057int tftp_timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020058
Remy Bohmeraafda382009-10-28 22:13:40 +010059enum {
60 TFTP_ERR_UNDEFINED = 0,
61 TFTP_ERR_FILE_NOT_FOUND = 1,
62 TFTP_ERR_ACCESS_DENIED = 2,
63 TFTP_ERR_DISK_FULL = 3,
64 TFTP_ERR_UNEXPECTED_OPCODE = 4,
65 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
66 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
Ravik Hasija08139212020-05-18 21:35:43 -070067 TFTP_ERR_OPTION_NEGOTIATION = 8,
Remy Bohmeraafda382009-10-28 22:13:40 +010068};
69
Joe Hershberger049a95a2015-04-08 01:41:01 -050070static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000071/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050072static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000073/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050074static int tftp_our_port;
75static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000076/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050077static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000078/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050079static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000080/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050081static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000082/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050083static ulong tftp_block_wrap_offset;
84static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010085static ulong tftp_load_addr;
86#ifdef CONFIG_LMB
87static ulong tftp_load_size;
88#endif
Robin Getz4fccb812009-08-20 10:50:20 -040089#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000090/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050091static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000092/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050093static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040094#endif
Ramon Friedcc6b87e2020-07-18 23:31:46 +030095/* The window size negotiated */
96static ushort tftp_windowsize;
97/* Next block to send ack to */
98static ushort tftp_next_ack;
99/* Last nack block we send */
100static ushort tftp_last_nack;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000101#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500102/* 1 if writing, else 0 */
103static int tftp_put_active;
104/* 1 if we have sent the last block */
105static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000106#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500107#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000108#endif
wdenk3f85ce22004-02-23 16:11:30 +0000109
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000110#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000111#define STATE_DATA 2
112#define STATE_TOO_LARGE 3
113#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000114#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000115#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000116#define STATE_SEND_WRQ 7
Ravik Hasija08139212020-05-18 21:35:43 -0700117#define STATE_INVALID_OPTION 8
wdenkfe8c2802002-11-03 00:38:21 +0000118
Luca Ceresoli2f094132011-05-14 05:49:56 +0000119/* default TFTP block size */
120#define TFTP_BLOCK_SIZE 512
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300121#define TFTP_MTU_BLOCKSIZE6 (CONFIG_TFTP_BLOCKSIZE - 20)
Luca Ceresoli2f094132011-05-14 05:49:56 +0000122/* sequence number is 16 bit */
123#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000124
wdenkfe8c2802002-11-03 00:38:21 +0000125#define DEFAULT_NAME_LEN (8 + 4 + 1)
126static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100127
128#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
129#define MAX_LEN 128
130#else
131#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
132#endif
133
134static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000135
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200136/* 512 is poor choice for ethernet, MTU is typically 1500.
137 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500138 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200139 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500140 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200141
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300142/* When windowsize is defined to 1,
143 * tftp behaves the same way as it was
144 * never declared
145 */
146#ifdef CONFIG_TFTP_WINDOWSIZE
147#define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE
148#else
149#define TFTP_WINDOWSIZE 1
150#endif
151
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500152static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay31d275b2020-04-22 14:18:26 +0200153static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300154static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500155
Simon Goldschmidta156c472019-01-14 22:38:22 +0100156static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000157{
Ley Foon Tanae0bdf02020-08-25 10:26:36 +0800158 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
159 tftp_block_size;
wdenk3f85ce22004-02-23 16:11:30 +0000160 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100161 ulong store_addr = tftp_load_addr + offset;
Tom Rini52938fc2022-07-23 13:04:54 -0400162 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500163
Simon Goldschmidta156c472019-01-14 22:38:22 +0100164#ifdef CONFIG_LMB
Tom Rini52938fc2022-07-23 13:04:54 -0400165 ulong end_addr = tftp_load_addr + tftp_load_size;
Bin Mengca48cb42019-11-15 22:20:13 -0800166
Tom Rini52938fc2022-07-23 13:04:54 -0400167 if (!end_addr)
168 end_addr = ULONG_MAX;
Bin Mengca48cb42019-11-15 22:20:13 -0800169
Tom Rini52938fc2022-07-23 13:04:54 -0400170 if (store_addr < tftp_load_addr ||
171 store_addr + len > end_addr) {
172 puts("\nTFTP error: ");
173 puts("trying to overwrite reserved memory...\n");
174 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000175 }
Tom Rini52938fc2022-07-23 13:04:54 -0400176#endif
177 ptr = map_sysmem(store_addr, len);
178 memcpy(ptr, src, len);
179 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000180
Joe Hershberger14111572015-04-08 01:41:02 -0500181 if (net_boot_file_size < newsize)
182 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100183
184 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000185}
186
Simon Glasse4cde2f2011-10-24 18:00:04 +0000187/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000188static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000189{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500190 tftp_prev_block = 0;
191 tftp_block_wrap = 0;
192 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000193#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500194 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000195#endif
196}
197
Simon Glass1fb7cd42011-10-24 18:00:07 +0000198#ifdef CONFIG_CMD_TFTPPUT
199/**
200 * Load the next block from memory to be sent over tftp.
201 *
202 * @param block Block number to send
203 * @param dst Destination buffer for data
204 * @param len Number of bytes in block (this one and every other)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100205 * Return: number of bytes loaded
Simon Glass1fb7cd42011-10-24 18:00:07 +0000206 */
207static int load_block(unsigned block, uchar *dst, unsigned len)
208{
209 /* We may want to get the final block from the previous set */
Ley Foon Tanf6a158b2020-08-25 10:26:37 +0800210 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
211 tftp_block_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000212 ulong tosend = len;
213
Joe Hershberger14111572015-04-08 01:41:02 -0500214 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700215 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardt2bcc43b2020-02-22 08:43:40 +0100216 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500217 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000218 return tosend;
219}
220#endif
221
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500222static void tftp_send(void);
223static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000224
225/**********************************************************************/
226
Simon Glassf5329bb2011-10-24 18:00:03 +0000227static void show_block_marker(void)
228{
Ravik Hasijade5468e2020-05-07 14:55:32 -0700229 ulong pos;
230
Simon Glassf5329bb2011-10-24 18:00:03 +0000231#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500232 if (tftp_tsize) {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700233 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500234 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200235 if (pos > tftp_tsize)
236 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000237
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500238 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000239 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500240 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000241 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000242 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000243#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000244 {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700245 pos = (tftp_cur_block - 1) +
246 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
247 if ((pos % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000248 putc('#');
Ravik Hasijade5468e2020-05-07 14:55:32 -0700249 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000250 puts("\n\t ");
251 }
252}
253
Simon Glasse4cde2f2011-10-24 18:00:04 +0000254/**
255 * restart the current transfer due to an error
256 *
257 * @param msg Message to print for user
258 */
259static void restart(const char *msg)
260{
261 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500262 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000263}
264
265/*
266 * Check if the block number has wrapped, and update progress
267 *
268 * TODO: The egregious use of global variables in this file should be tidied.
269 */
270static void update_block_number(void)
271{
272 /*
273 * RFC1350 specifies that the first data packet will
274 * have sequence number 1. If we receive a sequence
275 * number of 0 this means that there was a wrap
276 * around of the (16 bit) counter.
277 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500278 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
279 tftp_block_wrap++;
280 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
281 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000282 }
Ravik Hasijade5468e2020-05-07 14:55:32 -0700283 show_block_marker();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000284}
285
Simon Glassf5329bb2011-10-24 18:00:03 +0000286/* The TFTP get or put is complete */
287static void tftp_complete(void)
288{
289#ifdef CONFIG_TFTP_TSIZE
290 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500291 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000292 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500293 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000294 }
Simon Glass8104f542014-10-10 07:30:21 -0600295 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500296 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000297#endif
Simon Glass85b19802012-10-11 13:57:36 +0000298 time_start = get_timer(time_start);
299 if (time_start > 0) {
300 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500301 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000302 time_start * 1000, "/s");
303 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000304 puts("\ndone\n");
Heinrich Schuchardt5f595182021-01-12 12:46:24 +0100305 if (IS_ENABLED(CONFIG_CMD_BOOTEFI)) {
306 if (!tftp_put_active)
307 efi_set_bootdev("Net", "", tftp_filename,
308 map_sysmem(tftp_load_addr, 0),
309 net_boot_file_size);
310 }
Joe Hershberger22f6e992012-05-23 07:59:14 +0000311 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000312}
313
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500314static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000315{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000316 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000317 uchar *xp;
318 int len = 0;
319 ushort *s;
Ravik Hasija08139212020-05-18 21:35:43 -0700320 bool err_pkt = false;
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 */
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300326 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
327 pkt = net_tx_packet + net_eth_hdr_size() +
328 IP6_HDR_SIZE + UDP_HDR_SIZE;
329 else
330 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000331
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500332 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000333 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000334 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000335 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200336 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000337#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500338 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000339 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000340#else
341 *s++ = htons(TFTP_RRQ);
342#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200343 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000344 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000345 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000346 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000347 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000348 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000349 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500350 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400351 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000352 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400353#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500354 pkt += sprintf((char *)pkt, "tsize%c%u%c",
355 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400356#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500357 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000358 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500359 0, tftp_block_size_option, 0);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300360
361 /* try for more effic. window size.
362 * Implemented only for tftp get.
363 * Don't bother sending if it's 1
364 */
365 if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1)
366 pkt += sprintf((char *)pkt, "windowsize%c%d%c",
367 0, tftp_window_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000368 len = pkt - xp;
369 break;
370
wdenkfbe4b5c2003-10-06 21:55:32 +0000371 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000372
373 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500374 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000375 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200376 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000377 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500378 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000379 pkt = (uchar *)(s + 2);
380#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500381 if (tftp_put_active) {
382 int toload = tftp_block_size;
383 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000384
385 s[0] = htons(TFTP_DATA);
386 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500387 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000388 }
389#endif
wdenkfe8c2802002-11-03 00:38:21 +0000390 len = pkt - xp;
391 break;
392
393 case STATE_TOO_LARGE:
394 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200395 s = (ushort *)pkt;
396 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000397 *s++ = htons(3);
398
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200399 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000400 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000401 pkt += 14 /*strlen("File too large")*/ + 1;
402 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700403 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000404 break;
405
406 case STATE_BAD_MAGIC:
407 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200408 s = (ushort *)pkt;
409 *s++ = htons(TFTP_ERROR);
410 *s++ = htons(2);
411 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000412 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000413 pkt += 18 /*strlen("File has bad magic")*/ + 1;
414 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700415 err_pkt = true;
416 break;
417
418 case STATE_INVALID_OPTION:
419 xp = pkt;
420 s = (ushort *)pkt;
421 *s++ = htons(TFTP_ERROR);
422 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
423 pkt = (uchar *)s;
424 strcpy((char *)pkt, "Option Negotiation Failed");
425 /* strlen("Option Negotiation Failed") + NULL*/
426 pkt += 25 + 1;
427 len = pkt - xp;
428 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000429 break;
430 }
431
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300432 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
433 net_send_udp_packet6(net_server_ethaddr,
434 &tftp_remote_ip6,
435 tftp_remote_port,
436 tftp_our_port, len);
437 else
438 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
439 tftp_remote_port, tftp_our_port, len);
Ravik Hasija08139212020-05-18 21:35:43 -0700440
441 if (err_pkt)
442 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000443}
444
Simon Glass39bccd22011-10-26 14:18:38 +0000445#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000446static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500447 struct in_addr sip, unsigned src, uchar *pkt,
448 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000449{
450 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
451 /* Oh dear the other end has gone away */
452 restart("TFTP server died");
453 }
454}
Simon Glass39bccd22011-10-26 14:18:38 +0000455#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000456
Joe Hershberger049a95a2015-04-08 01:41:01 -0500457static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
458 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000459{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600460 __be16 proto;
461 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200462 int i;
Ravik Hasija08139212020-05-18 21:35:43 -0700463 u16 timeout_val_rcvd;
wdenkfe8c2802002-11-03 00:38:21 +0000464
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500465 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000466 return;
wdenkfe8c2802002-11-03 00:38:21 +0000467 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500468 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
469 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000470 return;
wdenkfe8c2802002-11-03 00:38:21 +0000471
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000472 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000473 return;
wdenkfe8c2802002-11-03 00:38:21 +0000474 len -= 2;
475 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600476 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200477 proto = *s++;
478 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000479 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000480 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000481 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000482
483 case TFTP_ACK:
484#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500485 if (tftp_put_active) {
486 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000487 tftp_complete();
488 } else {
489 /*
490 * Move to the next block. We want our block
491 * count to wrap just like the other end!
492 */
493 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500494 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000495
Ley Foon Tan6bf46362020-08-25 10:26:35 +0800496 tftp_prev_block = tftp_cur_block;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500497 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000498 update_block_number();
499 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500500 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000501 }
502 }
503#endif
504 break;
505
wdenkfe8c2802002-11-03 00:38:21 +0000506 default:
507 break;
508
Luca Ceresolie59e3562011-05-17 00:03:39 +0000509#ifdef CONFIG_CMD_TFTPSRV
510 case TFTP_WRQ:
511 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500512 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500513 tftp_remote_port = src;
514 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000515 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500516 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000517 break;
518#endif
519
wdenkfbe4b5c2003-10-06 21:55:32 +0000520 case TFTP_OACK:
Ravik Hasija08139212020-05-18 21:35:43 -0700521 debug("Got OACK: ");
522 for (i = 0; i < len; i++) {
523 if (pkt[i] == '\0')
524 debug(" ");
525 else
526 debug("%c", pkt[i]);
527 }
528 debug("\n");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500529 tftp_state = STATE_OACK;
530 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200531 /*
532 * Check for 'blksize' option.
533 * Careful: "i" is signed, "len" is unsigned, thus
534 * something like "len-8" may give a *huge* number
535 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000536 for (i = 0; i+8 < len; i++) {
Ravik Hasija08139212020-05-18 21:35:43 -0700537 if (strcasecmp((char *)pkt + i, "blksize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500538 tftp_block_size = (unsigned short)
Simon Glass0b1284e2021-07-24 09:03:30 -0600539 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasija08139212020-05-18 21:35:43 -0700540 debug("Blocksize oack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500541 (char *)pkt + i + 8, tftp_block_size);
Ravik Hasija08139212020-05-18 21:35:43 -0700542 if (tftp_block_size > tftp_block_size_option) {
543 printf("Invalid blk size(=%d)\n",
544 tftp_block_size);
545 tftp_state = STATE_INVALID_OPTION;
546 }
547 }
548 if (strcasecmp((char *)pkt + i, "timeout") == 0) {
549 timeout_val_rcvd = (unsigned short)
Simon Glass0b1284e2021-07-24 09:03:30 -0600550 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasija08139212020-05-18 21:35:43 -0700551 debug("Timeout oack: %s, %d\n",
552 (char *)pkt + i + 8, timeout_val_rcvd);
553 if (timeout_val_rcvd != (timeout_ms / 1000)) {
554 printf("Invalid timeout val(=%d s)\n",
555 timeout_val_rcvd);
556 tftp_state = STATE_INVALID_OPTION;
557 }
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200558 }
Robin Getz4fccb812009-08-20 10:50:20 -0400559#ifdef CONFIG_TFTP_TSIZE
Ravik Hasija08139212020-05-18 21:35:43 -0700560 if (strcasecmp((char *)pkt + i, "tsize") == 0) {
Simon Glass0b1284e2021-07-24 09:03:30 -0600561 tftp_tsize = dectoul((char *)pkt + i + 6,
562 NULL);
Robin Getz4fccb812009-08-20 10:50:20 -0400563 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500564 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400565 }
566#endif
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300567 if (strcasecmp((char *)pkt + i, "windowsize") == 0) {
568 tftp_windowsize =
Simon Glass0b1284e2021-07-24 09:03:30 -0600569 dectoul((char *)pkt + i + 11, NULL);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300570 debug("windowsize = %s, %d\n",
571 (char *)pkt + i + 11, tftp_windowsize);
572 }
David Updegraff53a5c422007-06-11 10:41:07 -0500573 }
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300574
575 tftp_next_ack = tftp_windowsize;
576
Simon Glass1fb7cd42011-10-24 18:00:07 +0000577#ifdef CONFIG_CMD_TFTPPUT
Ravik Hasija08139212020-05-18 21:35:43 -0700578 if (tftp_put_active && tftp_state == STATE_OACK) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000579 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500580 tftp_state = STATE_DATA;
581 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000582 }
583#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500584 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000585 break;
wdenkfe8c2802002-11-03 00:38:21 +0000586 case TFTP_DATA:
587 if (len < 2)
588 return;
589 len -= 2;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300590
591 if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) {
592 debug("Received unexpected block: %d, expected: %d\n",
593 ntohs(*(__be16 *)pkt),
594 (ushort)(tftp_cur_block + 1));
595 /*
Sean Edmond21a265c2023-01-04 18:16:26 -0800596 * Only ACK if the block count received is greater than
597 * the expected block count, otherwise skip ACK.
598 * (required to properly handle the server retransmitting
599 * the window)
600 */
601 if ((ushort)(tftp_cur_block + 1) - (short)(ntohs(*(__be16 *)pkt)) > 0)
602 break;
603 /*
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300604 * If one packet is dropped most likely
605 * all other buffers in the window
606 * that will arrive will cause a sending NACK.
607 * This just overwellms the server, let's just send one.
608 */
609 if (tftp_last_nack != tftp_cur_block) {
610 tftp_send();
611 tftp_last_nack = tftp_cur_block;
612 tftp_next_ack = (ushort)(tftp_cur_block +
613 tftp_windowsize);
614 }
615 break;
616 }
617
618 tftp_cur_block++;
619 tftp_cur_block %= TFTP_SEQUENCE_SIZE;
wdenk3f85ce22004-02-23 16:11:30 +0000620
Harm Berntsenbeb61e12020-11-27 21:45:56 +0000621 if (tftp_state == STATE_SEND_RRQ) {
Ravik Hasija08139212020-05-18 21:35:43 -0700622 debug("Server did not acknowledge any options!\n");
Harm Berntsenbeb61e12020-11-27 21:45:56 +0000623 tftp_next_ack = tftp_windowsize;
624 }
wdenkfbe4b5c2003-10-06 21:55:32 +0000625
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500626 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
627 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000628 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500629 tftp_state = STATE_DATA;
630 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000631 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000632
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500633 if (tftp_cur_block != 1) { /* Assertion */
634 puts("\nTFTP error: ");
635 printf("First block is not block 1 (%ld)\n",
636 tftp_cur_block);
637 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500638 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000639 break;
640 }
641 }
642
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500643 if (tftp_cur_block == tftp_prev_block) {
644 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000645 break;
646 }
647
Ravik Hasijade5468e2020-05-07 14:55:32 -0700648 update_block_number();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500649 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200650 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500651 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000652
Ley Foon Tanae0bdf02020-08-25 10:26:36 +0800653 if (store_block(tftp_cur_block, pkt + 2, len)) {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100654 eth_halt();
655 net_set_state(NETLOOP_FAIL);
656 break;
657 }
wdenkfe8c2802002-11-03 00:38:21 +0000658
Ramon Fried2dddc1b2021-02-03 21:28:59 +0200659 if (len < tftp_block_size) {
660 tftp_send();
661 tftp_complete();
662 break;
663 }
664
wdenkfe8c2802002-11-03 00:38:21 +0000665 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000666 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000667 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000668 */
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300669 if (tftp_cur_block == tftp_next_ack) {
670 tftp_send();
671 tftp_next_ack += tftp_windowsize;
672 }
wdenkfe8c2802002-11-03 00:38:21 +0000673 break;
674
675 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000676 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600677 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100678
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600679 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100680 case TFTP_ERR_FILE_NOT_FOUND:
681 case TFTP_ERR_ACCESS_DENIED:
682 puts("Not retrying...\n");
683 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000684 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100685 break;
686 case TFTP_ERR_UNDEFINED:
687 case TFTP_ERR_DISK_FULL:
688 case TFTP_ERR_UNEXPECTED_OPCODE:
689 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
690 case TFTP_ERR_FILE_ALREADY_EXISTS:
691 default:
692 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500693 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100694 break;
695 }
wdenkfe8c2802002-11-03 00:38:21 +0000696 break;
697 }
698}
699
700
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500701static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000702{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500703 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000704 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000705 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000706 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500707 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500708 if (tftp_state != STATE_RECV_WRQ)
709 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000710 }
711}
712
Simon Glassbb872dd2019-12-28 10:45:02 -0700713/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100714static int tftp_init_load_addr(void)
715{
716#ifdef CONFIG_LMB
717 struct lmb lmb;
718 phys_size_t max_size;
719
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100720 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100721
Simon Glassbb872dd2019-12-28 10:45:02 -0700722 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100723 if (!max_size)
724 return -1;
725
726 tftp_load_size = max_size;
727#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700728 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100729 return 0;
730}
wdenkfe8c2802002-11-03 00:38:21 +0000731
Rasmus Villemoes087648b2022-10-14 19:43:42 +0200732static int saved_tftp_block_size_option;
733static void sanitize_tftp_block_size_option(enum proto_t protocol)
734{
735 int cap, max_defrag;
736
737 switch (protocol) {
738 case TFTPGET:
739 max_defrag = config_opt_enabled(CONFIG_IP_DEFRAG, CONFIG_NET_MAXDEFRAG, 0);
740 if (max_defrag) {
741 /* Account for IP, UDP and TFTP headers. */
742 cap = max_defrag - (20 + 8 + 4);
743 /* RFC2348 sets a hard upper limit. */
744 cap = min(cap, 65464);
745 break;
746 }
747 /*
748 * If not CONFIG_IP_DEFRAG, cap at the same value as
749 * for tftp put, namely normal MTU minus protocol
750 * overhead.
751 */
752 fallthrough;
753 case TFTPPUT:
754 default:
755 /*
756 * U-Boot does not support IP fragmentation on TX, so
757 * this must be small enough that it fits normal MTU
758 * (and small enough that it fits net_tx_packet which
759 * has room for PKTSIZE_ALIGN bytes).
760 */
761 cap = 1468;
762 }
763 if (tftp_block_size_option > cap) {
764 printf("Capping tftp block size option to %d (was %d)\n",
765 cap, tftp_block_size_option);
766 saved_tftp_block_size_option = tftp_block_size_option;
767 tftp_block_size_option = cap;
768 }
769}
770
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500771void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000772{
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200773 __maybe_unused char *ep; /* Environment pointer */
Rasmus Villemoes087648b2022-10-14 19:43:42 +0200774
775 if (saved_tftp_block_size_option) {
776 tftp_block_size_option = saved_tftp_block_size_option;
777 saved_tftp_block_size_option = 0;
778 }
779
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200780 if (IS_ENABLED(CONFIG_NET_TFTP_VARS)) {
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200781
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200782 /*
783 * Allow the user to choose TFTP blocksize and timeout.
784 * TFTP protocol has a minimal timeout of 1 second.
785 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200786
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200787 ep = env_get("tftpblocksize");
788 if (ep != NULL)
789 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100790
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200791 ep = env_get("tftpwindowsize");
792 if (ep != NULL)
793 tftp_window_size_option = simple_strtol(ep, NULL, 10);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300794
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200795 ep = env_get("tftptimeout");
796 if (ep != NULL)
797 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100798
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200799 if (timeout_ms < 1000) {
800 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
801 timeout_ms);
802 timeout_ms = 1000;
803 }
804
805 ep = env_get("tftptimeoutcountmax");
806 if (ep != NULL)
807 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
808
809 if (tftp_timeout_count_max < 0) {
810 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
811 tftp_timeout_count_max);
812 tftp_timeout_count_max = 0;
813 }
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100814 }
815
Rasmus Villemoes087648b2022-10-14 19:43:42 +0200816 sanitize_tftp_block_size_option(protocol);
817
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300818 debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n",
819 tftp_block_size_option, tftp_window_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200820
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300821 if (IS_ENABLED(CONFIG_IPV6))
822 tftp_remote_ip6 = net_server_ip6;
823
Joe Hershberger049a95a2015-04-08 01:41:01 -0500824 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500825 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000826 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500827 net_ip.s_addr & 0xFF,
828 (net_ip.s_addr >> 8) & 0xFF,
829 (net_ip.s_addr >> 16) & 0xFF,
830 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100831
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300832 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
833 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000834
Luca Ceresolic718b142011-05-14 05:49:57 +0000835 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500836 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000837 }
838
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300839 if (IS_ENABLED(CONFIG_IPV6)) {
840 if (use_ip6) {
841 char *s, *e;
842 size_t len;
843
844 s = strchr(net_boot_file_name, '[');
845 e = strchr(net_boot_file_name, ']');
846 len = e - s;
847 if (s && e) {
Ehsan Mohandesi7db25d92023-01-13 09:27:41 -0800848 string_to_ip6(s + 1, len - 1, &tftp_remote_ip6);
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300849 strlcpy(tftp_filename, e + 2, MAX_LEN);
850 } else {
851 strlcpy(tftp_filename, net_boot_file_name, MAX_LEN);
852 tftp_filename[MAX_LEN - 1] = 0;
853 }
854 }
855 }
856
Luca Ceresolic718b142011-05-14 05:49:57 +0000857 printf("Using %s device\n", eth_get_name());
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300858
859 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
860 printf("TFTP from server %pI6c; our IP address is %pI6c",
861 &tftp_remote_ip6, &net_ip6);
862
863 if (tftp_block_size_option > TFTP_MTU_BLOCKSIZE6)
864 tftp_block_size_option = TFTP_MTU_BLOCKSIZE6;
865 } else {
866 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000867#ifdef CONFIG_CMD_TFTPPUT
868 protocol == TFTPPUT ? "to" : "from",
869#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500870 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000871#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500872 &tftp_remote_ip, &net_ip);
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300873 }
wdenkfe8c2802002-11-03 00:38:21 +0000874
875 /* Check if we need to send across this subnet */
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300876 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
877 if (!ip6_addr_in_subnet(&net_ip6, &tftp_remote_ip6,
878 net_prefix_length))
879 printf("; sending through gateway %pI6c",
880 &net_gateway6);
881 } else if (net_gateway.s_addr && net_netmask.s_addr) {
Joe Hershberger049a95a2015-04-08 01:41:01 -0500882 struct in_addr our_net;
883 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000884
Joe Hershberger049a95a2015-04-08 01:41:01 -0500885 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
886 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
887 if (our_net.s_addr != remote_net.s_addr)
888 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000889 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000890 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000891
Luca Ceresolic718b142011-05-14 05:49:57 +0000892 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000893
Joe Hershberger14111572015-04-08 01:41:02 -0500894 if (net_boot_file_expected_size_in_blocks) {
895 printf(" Size is 0x%x Bytes = ",
896 net_boot_file_expected_size_in_blocks << 9);
897 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000898 }
899
Luca Ceresolic718b142011-05-14 05:49:57 +0000900 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000901#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500902 tftp_put_active = (protocol == TFTPPUT);
903 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700904 printf("Save address: 0x%lx\n", image_save_addr);
905 printf("Save size: 0x%lx\n", image_save_size);
906 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000907 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500908 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000909 new_transfer();
910 } else
911#endif
912 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100913 if (tftp_init_load_addr()) {
914 eth_halt();
915 net_set_state(NETLOOP_FAIL);
916 puts("\nTFTP error: ");
917 puts("trying to overwrite reserved memory...\n");
918 return;
919 }
920 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000921 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500922 tftp_state = STATE_SEND_RRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000923 }
wdenkfe8c2802002-11-03 00:38:21 +0000924
Simon Glass85b19802012-10-11 13:57:36 +0000925 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500926 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200927
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500928 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500929 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000930#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000931 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000932#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500933 tftp_remote_port = WELL_KNOWN_PORT;
934 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200935 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500936 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500937
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200938#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600939 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000940 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500941 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600942 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000943 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500944 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200945#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500946 tftp_cur_block = 0;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300947 tftp_windowsize = 1;
948 tftp_last_nack = 0;
wdenk73a8b272003-06-05 19:27:42 +0000949 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500950 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500951 /* Revert tftp_block_size to dflt */
952 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400953#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500954 tftp_tsize = 0;
955 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400956#endif
wdenk73a8b272003-06-05 19:27:42 +0000957
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500958 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000959}
960
Luca Ceresolie59e3562011-05-17 00:03:39 +0000961#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500962void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000963{
964 tftp_filename[0] = 0;
965
Simon Goldschmidta156c472019-01-14 22:38:22 +0100966 if (tftp_init_load_addr()) {
967 eth_halt();
968 net_set_state(NETLOOP_FAIL);
969 puts("\nTFTP error: trying to overwrite reserved memory...\n");
970 return;
971 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000972 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500973 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100974 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000975
976 puts("Loading: *\b");
977
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200978 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500979 timeout_count = 0;
980 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500981 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000982
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500983 /* Revert tftp_block_size to dflt */
984 tftp_block_size = TFTP_BLOCK_SIZE;
985 tftp_cur_block = 0;
986 tftp_our_port = WELL_KNOWN_PORT;
Arjan Minzinga Zijlstra1ffe3662022-03-31 08:03:16 +0000987 tftp_windowsize = 1;
988 tftp_next_ack = tftp_windowsize;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000989
990#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500991 tftp_tsize = 0;
992 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000993#endif
994
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500995 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500996 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500997
998 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500999 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +00001000}
1001#endif /* CONFIG_CMD_TFTPSRV */