blob: d6744bc24e227f6c127eef8f1e5ba1d9118b512d [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
Luca Ceresolic42fc272011-05-14 05:49:56 +00002 * Copyright 1994, 1995, 2000 Neil Russell.
3 * (See License)
4 * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
Luca Ceresolib640ed32011-05-17 00:03:39 +00005 * Copyright 2011 Comelit Group SpA,
6 * Luca Ceresoli <luca.ceresoli@comelit.it>
wdenkfe8c2802002-11-03 00:38:21 +00007 */
wdenkfe8c2802002-11-03 00:38:21 +00008#include <command.h>
Simon Glass1ab16922022-07-31 12:28:48 -06009#include <display_options.h>
Alexander Graf94c4b992016-05-06 21:01:01 +020010#include <efi_loader.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060011#include <env.h>
Simon Glass85f13782019-12-28 10:45:03 -070012#include <image.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060013#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Joe Hershbergered191852015-03-22 17:09:08 -050015#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000016#include <net.h>
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +030017#include <net6.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020019#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000020#include "bootp.h"
21
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +010022DECLARE_GLOBAL_DATA_PTR;
23
Luca Ceresolic42fc272011-05-14 05:49:56 +000024/* Well known TFTP port # */
25#define WELL_KNOWN_PORT 69
26/* Millisecs to timeout for lost pkt */
Bin Menge67eaa82015-08-27 22:25:51 -070027#define TIMEOUT 5000UL
Luca Ceresolic42fc272011-05-14 05:49:56 +000028/* Number of "loading" hashes per line (for checking the image size) */
29#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000030
31/*
32 * TFTP operations.
33 */
34#define TFTP_RRQ 1
35#define TFTP_WRQ 2
36#define TFTP_DATA 3
37#define TFTP_ACK 4
38#define TFTP_ERROR 5
wdenk7182b0f2003-10-06 21:55:32 +000039#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000040
Joe Hershberger64701592015-04-08 01:41:07 -050041static ulong timeout_ms = TIMEOUT;
Tom Rini26011a32022-03-11 09:12:02 -050042static int timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Simon Glasscab9a8d2012-10-11 13:57:36 +000043static ulong time_start; /* Record time we started tftp */
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +030044static struct in6_addr tftp_remote_ip6;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020045
46/*
47 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger64701592015-04-08 01:41:07 -050048 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020049 * wait for the server to respond to initial connection. Second global,
Joe Hershberger64701592015-04-08 01:41:07 -050050 * tftp_timeout_count_max, gives the number of such connection retries.
51 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020052 * positive. The globals are meant to be set (and restored) by code needing
53 * non-standard timeout behavior when initiating a TFTP transfer.
54 */
Joe Hershberger64701592015-04-08 01:41:07 -050055ulong tftp_timeout_ms = TIMEOUT;
Tom Rini26011a32022-03-11 09:12:02 -050056int tftp_timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020057
Remy Bohmerb46293f2009-10-28 22:13:40 +010058enum {
59 TFTP_ERR_UNDEFINED = 0,
60 TFTP_ERR_FILE_NOT_FOUND = 1,
61 TFTP_ERR_ACCESS_DENIED = 2,
62 TFTP_ERR_DISK_FULL = 3,
63 TFTP_ERR_UNEXPECTED_OPCODE = 4,
64 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
65 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
Ravik Hasijae387e9a2020-05-18 21:35:43 -070066 TFTP_ERR_OPTION_NEGOTIATION = 8,
Remy Bohmerb46293f2009-10-28 22:13:40 +010067};
68
Joe Hershberger5874dec2015-04-08 01:41:01 -050069static struct in_addr tftp_remote_ip;
Luca Ceresolic42fc272011-05-14 05:49:56 +000070/* The UDP port at their end */
Joe Hershberger64701592015-04-08 01:41:07 -050071static int tftp_remote_port;
Luca Ceresolic42fc272011-05-14 05:49:56 +000072/* The UDP port at our end */
Joe Hershberger64701592015-04-08 01:41:07 -050073static int tftp_our_port;
74static int timeout_count;
Luca Ceresolic42fc272011-05-14 05:49:56 +000075/* packet sequence number */
Joe Hershberger64701592015-04-08 01:41:07 -050076static ulong tftp_cur_block;
Luca Ceresolic42fc272011-05-14 05:49:56 +000077/* last packet sequence number received */
Joe Hershberger64701592015-04-08 01:41:07 -050078static ulong tftp_prev_block;
Luca Ceresolic42fc272011-05-14 05:49:56 +000079/* count of sequence number wraparounds */
Joe Hershberger64701592015-04-08 01:41:07 -050080static ulong tftp_block_wrap;
Luca Ceresolic42fc272011-05-14 05:49:56 +000081/* memory offset due to wrapping */
Joe Hershberger64701592015-04-08 01:41:07 -050082static ulong tftp_block_wrap_offset;
83static int tftp_state;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +010084static ulong tftp_load_addr;
Robin Getzb3b00ed2009-08-20 10:50:20 -040085#ifdef CONFIG_TFTP_TSIZE
Luca Ceresolic42fc272011-05-14 05:49:56 +000086/* The file size reported by the server */
Joe Hershberger64701592015-04-08 01:41:07 -050087static int tftp_tsize;
Luca Ceresolic42fc272011-05-14 05:49:56 +000088/* The number of hashes we printed */
Joe Hershberger64701592015-04-08 01:41:07 -050089static short tftp_tsize_num_hash;
Robin Getzb3b00ed2009-08-20 10:50:20 -040090#endif
Ramon Fried6e9aa542020-07-18 23:31:46 +030091/* The window size negotiated */
92static ushort tftp_windowsize;
93/* Next block to send ack to */
94static ushort tftp_next_ack;
95/* Last nack block we send */
96static ushort tftp_last_nack;
Simon Glass6a398d22011-10-24 18:00:07 +000097#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -050098/* 1 if writing, else 0 */
99static int tftp_put_active;
100/* 1 if we have sent the last block */
101static int tftp_put_final_block_sent;
Simon Glass6a398d22011-10-24 18:00:07 +0000102#else
Joe Hershberger64701592015-04-08 01:41:07 -0500103#define tftp_put_active 0
Simon Glass6a398d22011-10-24 18:00:07 +0000104#endif
wdenkef893942004-02-23 16:11:30 +0000105
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000106#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000107#define STATE_DATA 2
108#define STATE_TOO_LARGE 3
109#define STATE_BAD_MAGIC 4
wdenk7182b0f2003-10-06 21:55:32 +0000110#define STATE_OACK 5
Luca Ceresolib640ed32011-05-17 00:03:39 +0000111#define STATE_RECV_WRQ 6
Simon Glass6a398d22011-10-24 18:00:07 +0000112#define STATE_SEND_WRQ 7
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700113#define STATE_INVALID_OPTION 8
wdenkfe8c2802002-11-03 00:38:21 +0000114
Luca Ceresolic42fc272011-05-14 05:49:56 +0000115/* default TFTP block size */
116#define TFTP_BLOCK_SIZE 512
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300117#define TFTP_MTU_BLOCKSIZE6 (CONFIG_TFTP_BLOCKSIZE - 20)
Luca Ceresolic42fc272011-05-14 05:49:56 +0000118/* sequence number is 16 bit */
119#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenkef893942004-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-VILLARD58555412008-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 Denk627f5c32007-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 Updegraff7280da72007-06-11 10:41:07 -0500134 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200135 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff7280da72007-06-11 10:41:07 -0500136 */
Ramon Fried6e9aa542020-07-18 23:31:46 +0300137
138/* When windowsize is defined to 1,
139 * tftp behaves the same way as it was
140 * never declared
141 */
142#ifdef CONFIG_TFTP_WINDOWSIZE
143#define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE
144#else
145#define TFTP_WINDOWSIZE 1
146#endif
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200147
Joe Hershberger64701592015-04-08 01:41:07 -0500148static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay6c3a4472020-04-22 14:18:26 +0200149static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
Ramon Fried6e9aa542020-07-18 23:31:46 +0300150static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE;
David Updegraff7280da72007-06-11 10:41:07 -0500151
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100152static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000153{
Ley Foon Tan81bb3242020-08-25 10:26:36 +0800154 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
155 tftp_block_size;
wdenkef893942004-02-23 16:11:30 +0000156 ulong newsize = offset + len;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100157 ulong store_addr = tftp_load_addr + offset;
Tom Rinidb295e82022-07-23 13:04:54 -0400158 void *ptr;
Joe Hershbergered191852015-03-22 17:09:08 -0500159
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530160 if (CONFIG_IS_ENABLED(LMB)) {
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530161 if (store_addr < tftp_load_addr ||
Sughosh Ganu04e10b52024-09-16 20:50:24 +0530162 lmb_read_check(store_addr, len)) {
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530163 puts("\nTFTP error: ");
164 puts("trying to overwrite reserved memory...\n");
165 return -1;
166 }
wdenkfe8c2802002-11-03 00:38:21 +0000167 }
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530168
Tom Rinidb295e82022-07-23 13:04:54 -0400169 ptr = map_sysmem(store_addr, len);
170 memcpy(ptr, src, len);
171 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000172
Joe Hershberger290c8992015-04-08 01:41:02 -0500173 if (net_boot_file_size < newsize)
174 net_boot_file_size = newsize;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100175
176 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000177}
178
Simon Glassbd8a0e02011-10-24 18:00:04 +0000179/* Clear our state ready for a new transfer */
Simon Glass84313322011-10-27 06:24:28 +0000180static void new_transfer(void)
Simon Glassbd8a0e02011-10-24 18:00:04 +0000181{
Joe Hershberger64701592015-04-08 01:41:07 -0500182 tftp_prev_block = 0;
183 tftp_block_wrap = 0;
184 tftp_block_wrap_offset = 0;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000185#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500186 tftp_put_final_block_sent = 0;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000187#endif
188}
Simon Glass6a398d22011-10-24 18:00:07 +0000189
190#ifdef CONFIG_CMD_TFTPPUT
191/**
192 * Load the next block from memory to be sent over tftp.
193 *
194 * @param block Block number to send
195 * @param dst Destination buffer for data
196 * @param len Number of bytes in block (this one and every other)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100197 * Return: number of bytes loaded
Simon Glass6a398d22011-10-24 18:00:07 +0000198 */
199static int load_block(unsigned block, uchar *dst, unsigned len)
200{
201 /* We may want to get the final block from the previous set */
Ley Foon Tan5babe562020-08-25 10:26:37 +0800202 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
203 tftp_block_size;
Simon Glass6a398d22011-10-24 18:00:07 +0000204 ulong tosend = len;
205
Joe Hershberger290c8992015-04-08 01:41:02 -0500206 tosend = min(net_boot_file_size - offset, tosend);
Simon Glass892265d2019-12-28 10:45:02 -0700207 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardtc81ab832020-02-22 08:43:40 +0100208 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger64701592015-04-08 01:41:07 -0500209 block, offset, len, tosend);
Simon Glass6a398d22011-10-24 18:00:07 +0000210 return tosend;
211}
212#endif
Simon Glassbd8a0e02011-10-24 18:00:04 +0000213
Joe Hershberger64701592015-04-08 01:41:07 -0500214static void tftp_send(void);
215static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000216
217/**********************************************************************/
218
Simon Glassb437aad2011-10-24 18:00:03 +0000219static void show_block_marker(void)
220{
Ravik Hasijad42686e2020-05-07 14:55:32 -0700221 ulong pos;
222
Simon Glassb437aad2011-10-24 18:00:03 +0000223#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500224 if (tftp_tsize) {
Ravik Hasijad42686e2020-05-07 14:55:32 -0700225 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger64701592015-04-08 01:41:07 -0500226 tftp_block_wrap_offset;
Max Krummenacherdd081cc2015-08-05 17:17:05 +0200227 if (pos > tftp_tsize)
228 pos = tftp_tsize;
Simon Glassb437aad2011-10-24 18:00:03 +0000229
Joe Hershberger64701592015-04-08 01:41:07 -0500230 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassb437aad2011-10-24 18:00:03 +0000231 putc('#');
Joe Hershberger64701592015-04-08 01:41:07 -0500232 tftp_tsize_num_hash++;
Simon Glassb437aad2011-10-24 18:00:03 +0000233 }
Simon Glass6a398d22011-10-24 18:00:07 +0000234 } else
Simon Glassb437aad2011-10-24 18:00:03 +0000235#endif
Simon Glass6a398d22011-10-24 18:00:07 +0000236 {
Ravik Hasijad42686e2020-05-07 14:55:32 -0700237 pos = (tftp_cur_block - 1) +
238 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
239 if ((pos % 10) == 0)
Simon Glassb437aad2011-10-24 18:00:03 +0000240 putc('#');
Ravik Hasijad42686e2020-05-07 14:55:32 -0700241 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassb437aad2011-10-24 18:00:03 +0000242 puts("\n\t ");
243 }
244}
245
Simon Glassbd8a0e02011-10-24 18:00:04 +0000246/**
247 * restart the current transfer due to an error
248 *
249 * @param msg Message to print for user
250 */
251static void restart(const char *msg)
252{
253 printf("\n%s; starting again\n", msg);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500254 net_start_again();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000255}
256
257/*
258 * Check if the block number has wrapped, and update progress
259 *
260 * TODO: The egregious use of global variables in this file should be tidied.
261 */
262static void update_block_number(void)
263{
264 /*
265 * RFC1350 specifies that the first data packet will
266 * have sequence number 1. If we receive a sequence
267 * number of 0 this means that there was a wrap
268 * around of the (16 bit) counter.
269 */
Joe Hershberger64701592015-04-08 01:41:07 -0500270 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
271 tftp_block_wrap++;
272 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
273 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glassbd8a0e02011-10-24 18:00:04 +0000274 }
Ravik Hasijad42686e2020-05-07 14:55:32 -0700275 show_block_marker();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000276}
277
Simon Glassb437aad2011-10-24 18:00:03 +0000278/* The TFTP get or put is complete */
279static void tftp_complete(void)
280{
281#ifdef CONFIG_TFTP_TSIZE
282 /* Print hash marks for the last packet received */
Joe Hershberger64701592015-04-08 01:41:07 -0500283 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassb437aad2011-10-24 18:00:03 +0000284 putc('#');
Joe Hershberger64701592015-04-08 01:41:07 -0500285 tftp_tsize_num_hash++;
Simon Glassb437aad2011-10-24 18:00:03 +0000286 }
Simon Glassc8f0a5c2014-10-10 07:30:21 -0600287 puts(" ");
Joe Hershberger64701592015-04-08 01:41:07 -0500288 print_size(tftp_tsize, "");
Simon Glassb437aad2011-10-24 18:00:03 +0000289#endif
Simon Glasscab9a8d2012-10-11 13:57:36 +0000290 time_start = get_timer(time_start);
291 if (time_start > 0) {
292 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger290c8992015-04-08 01:41:02 -0500293 print_size(net_boot_file_size /
Simon Glasscab9a8d2012-10-11 13:57:36 +0000294 time_start * 1000, "/s");
295 }
Simon Glassb437aad2011-10-24 18:00:03 +0000296 puts("\ndone\n");
AKASHI Takahirob9163852024-01-17 13:39:43 +0900297 if (!tftp_put_active)
298 efi_set_bootdev("Net", "", tftp_filename,
299 map_sysmem(tftp_load_addr, 0),
300 net_boot_file_size);
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000301 net_set_state(NETLOOP_SUCCESS);
Simon Glassb437aad2011-10-24 18:00:03 +0000302}
303
Joe Hershberger64701592015-04-08 01:41:07 -0500304static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000305{
Simon Glass6a398d22011-10-24 18:00:07 +0000306 uchar *pkt;
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000307 uchar *xp;
308 int len = 0;
309 ushort *s;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700310 bool err_pkt = false;
wdenkfe8c2802002-11-03 00:38:21 +0000311
312 /*
313 * We will always be sending some sort of packet, so
314 * cobble together the packet headers now.
315 */
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300316 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
317 pkt = net_tx_packet + net_eth_hdr_size() +
318 IP6_HDR_SIZE + UDP_HDR_SIZE;
319 else
320 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000321
Joe Hershberger64701592015-04-08 01:41:07 -0500322 switch (tftp_state) {
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000323 case STATE_SEND_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000324 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000325 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200326 s = (ushort *)pkt;
Simon Glass4abd0e22011-10-27 06:24:29 +0000327#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500328 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass6a398d22011-10-24 18:00:07 +0000329 TFTP_WRQ);
Simon Glass4abd0e22011-10-27 06:24:29 +0000330#else
331 *s++ = htons(TFTP_RRQ);
332#endif
Wolfgang Denk3135c542005-08-26 01:36:03 +0200333 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000334 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000335 pkt += strlen(tftp_filename) + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000336 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000337 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000338 strcpy((char *)pkt, "timeout");
wdenk7182b0f2003-10-06 21:55:32 +0000339 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger64701592015-04-08 01:41:07 -0500340 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400341 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenk7182b0f2003-10-06 21:55:32 +0000342 pkt += strlen((char *)pkt) + 1;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400343#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger290c8992015-04-08 01:41:02 -0500344 pkt += sprintf((char *)pkt, "tsize%c%u%c",
345 0, net_boot_file_size, 0);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400346#endif
David Updegraff7280da72007-06-11 10:41:07 -0500347 /* try for more effic. blk size */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000348 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger64701592015-04-08 01:41:07 -0500349 0, tftp_block_size_option, 0);
Ramon Fried6e9aa542020-07-18 23:31:46 +0300350
351 /* try for more effic. window size.
352 * Implemented only for tftp get.
353 * Don't bother sending if it's 1
354 */
355 if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1)
356 pkt += sprintf((char *)pkt, "windowsize%c%d%c",
357 0, tftp_window_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000358 len = pkt - xp;
359 break;
360
wdenk7182b0f2003-10-06 21:55:32 +0000361 case STATE_OACK:
Luca Ceresolib640ed32011-05-17 00:03:39 +0000362
363 case STATE_RECV_WRQ:
David Updegraff7280da72007-06-11 10:41:07 -0500364 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000365 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200366 s = (ushort *)pkt;
Simon Glass6a398d22011-10-24 18:00:07 +0000367 s[0] = htons(TFTP_ACK);
Joe Hershberger64701592015-04-08 01:41:07 -0500368 s[1] = htons(tftp_cur_block);
Simon Glass6a398d22011-10-24 18:00:07 +0000369 pkt = (uchar *)(s + 2);
370#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500371 if (tftp_put_active) {
372 int toload = tftp_block_size;
373 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass6a398d22011-10-24 18:00:07 +0000374
375 s[0] = htons(TFTP_DATA);
376 pkt += loaded;
Joe Hershberger64701592015-04-08 01:41:07 -0500377 tftp_put_final_block_sent = (loaded < toload);
Simon Glass6a398d22011-10-24 18:00:07 +0000378 }
379#endif
wdenkfe8c2802002-11-03 00:38:21 +0000380 len = pkt - xp;
381 break;
382
383 case STATE_TOO_LARGE:
384 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200385 s = (ushort *)pkt;
386 *s++ = htons(TFTP_ERROR);
Simon Glass6a398d22011-10-24 18:00:07 +0000387 *s++ = htons(3);
388
Wolfgang Denk3135c542005-08-26 01:36:03 +0200389 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000390 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000391 pkt += 14 /*strlen("File too large")*/ + 1;
392 len = pkt - xp;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700393 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000394 break;
395
396 case STATE_BAD_MAGIC:
397 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200398 s = (ushort *)pkt;
399 *s++ = htons(TFTP_ERROR);
400 *s++ = htons(2);
401 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000402 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000403 pkt += 18 /*strlen("File has bad magic")*/ + 1;
404 len = pkt - xp;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700405 err_pkt = true;
406 break;
407
408 case STATE_INVALID_OPTION:
409 xp = pkt;
410 s = (ushort *)pkt;
411 *s++ = htons(TFTP_ERROR);
412 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
413 pkt = (uchar *)s;
414 strcpy((char *)pkt, "Option Negotiation Failed");
415 /* strlen("Option Negotiation Failed") + NULL*/
416 pkt += 25 + 1;
417 len = pkt - xp;
418 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000419 break;
420 }
421
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300422 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
423 net_send_udp_packet6(net_server_ethaddr,
424 &tftp_remote_ip6,
425 tftp_remote_port,
426 tftp_our_port, len);
427 else
428 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
429 tftp_remote_port, tftp_our_port, len);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700430
431 if (err_pkt)
432 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000433}
434
Simon Glass2928cd82011-10-26 14:18:38 +0000435#ifdef CONFIG_CMD_TFTPPUT
Simon Glass6a398d22011-10-24 18:00:07 +0000436static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500437 struct in_addr sip, unsigned src, uchar *pkt,
438 unsigned len)
Simon Glass6a398d22011-10-24 18:00:07 +0000439{
440 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
441 /* Oh dear the other end has gone away */
442 restart("TFTP server died");
443 }
444}
Simon Glass2928cd82011-10-26 14:18:38 +0000445#endif
wdenkfe8c2802002-11-03 00:38:21 +0000446
Joe Hershberger5874dec2015-04-08 01:41:01 -0500447static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
448 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000449{
Kim Phillips878dad02013-01-16 18:09:19 -0600450 __be16 proto;
451 __be16 *s;
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200452 int i;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700453 u16 timeout_val_rcvd;
wdenkfe8c2802002-11-03 00:38:21 +0000454
Joe Hershberger64701592015-04-08 01:41:07 -0500455 if (dest != tftp_our_port) {
Luca Ceresoli09b18232011-05-14 05:50:02 +0000456 return;
wdenkfe8c2802002-11-03 00:38:21 +0000457 }
Joe Hershberger64701592015-04-08 01:41:07 -0500458 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
459 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000460 return;
wdenkfe8c2802002-11-03 00:38:21 +0000461
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000462 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000463 return;
wdenkfe8c2802002-11-03 00:38:21 +0000464 len -= 2;
465 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips878dad02013-01-16 18:09:19 -0600466 s = (__be16 *)pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200467 proto = *s++;
468 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000469 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000470 case TFTP_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000471 break;
472
wdenkfe8c2802002-11-03 00:38:21 +0000473 case TFTP_ACK:
Simon Glass6a398d22011-10-24 18:00:07 +0000474#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500475 if (tftp_put_active) {
476 if (tftp_put_final_block_sent) {
Simon Glass6a398d22011-10-24 18:00:07 +0000477 tftp_complete();
478 } else {
479 /*
480 * Move to the next block. We want our block
481 * count to wrap just like the other end!
482 */
483 int block = ntohs(*s);
Joe Hershberger64701592015-04-08 01:41:07 -0500484 int ack_ok = (tftp_cur_block == block);
Simon Glass6a398d22011-10-24 18:00:07 +0000485
Ley Foon Tan8de767a2020-08-25 10:26:35 +0800486 tftp_prev_block = tftp_cur_block;
Joe Hershberger64701592015-04-08 01:41:07 -0500487 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass6a398d22011-10-24 18:00:07 +0000488 update_block_number();
Mikhail Kshevetskiy45650962024-07-12 13:47:54 +0400489 if (ack_ok) {
490 if (block == 0 &&
491 tftp_state == STATE_SEND_WRQ){
492 /* connection's first ACK */
493 tftp_state = STATE_DATA;
494 tftp_remote_port = src;
495 }
Joe Hershberger64701592015-04-08 01:41:07 -0500496 tftp_send(); /* Send next data block */
Mikhail Kshevetskiy45650962024-07-12 13:47:54 +0400497 }
Simon Glass6a398d22011-10-24 18:00:07 +0000498 }
499 }
500#endif
wdenkfe8c2802002-11-03 00:38:21 +0000501 break;
Simon Glass6a398d22011-10-24 18:00:07 +0000502
wdenkfe8c2802002-11-03 00:38:21 +0000503 default:
504 break;
505
Luca Ceresolib640ed32011-05-17 00:03:39 +0000506#ifdef CONFIG_CMD_TFTPSRV
507 case TFTP_WRQ:
508 debug("Got WRQ\n");
Joe Hershberger5874dec2015-04-08 01:41:01 -0500509 tftp_remote_ip = sip;
Joe Hershberger64701592015-04-08 01:41:07 -0500510 tftp_remote_port = src;
511 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glassbd8a0e02011-10-24 18:00:04 +0000512 new_transfer();
Joe Hershberger64701592015-04-08 01:41:07 -0500513 tftp_send(); /* Send ACK(0) */
Luca Ceresolib640ed32011-05-17 00:03:39 +0000514 break;
515#endif
516
wdenk7182b0f2003-10-06 21:55:32 +0000517 case TFTP_OACK:
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700518 debug("Got OACK: ");
519 for (i = 0; i < len; i++) {
520 if (pkt[i] == '\0')
521 debug(" ");
522 else
523 debug("%c", pkt[i]);
524 }
525 debug("\n");
Joe Hershberger64701592015-04-08 01:41:07 -0500526 tftp_state = STATE_OACK;
527 tftp_remote_port = src;
Wolfgang Denk8b70f342007-08-31 10:01:51 +0200528 /*
529 * Check for 'blksize' option.
530 * Careful: "i" is signed, "len" is unsigned, thus
531 * something like "len-8" may give a *huge* number
532 */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000533 for (i = 0; i+8 < len; i++) {
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700534 if (strcasecmp((char *)pkt + i, "blksize") == 0) {
Joe Hershberger64701592015-04-08 01:41:07 -0500535 tftp_block_size = (unsigned short)
Simon Glassff9b9032021-07-24 09:03:30 -0600536 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700537 debug("Blocksize oack: %s, %d\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500538 (char *)pkt + i + 8, tftp_block_size);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700539 if (tftp_block_size > tftp_block_size_option) {
540 printf("Invalid blk size(=%d)\n",
541 tftp_block_size);
542 tftp_state = STATE_INVALID_OPTION;
543 }
544 }
545 if (strcasecmp((char *)pkt + i, "timeout") == 0) {
546 timeout_val_rcvd = (unsigned short)
Simon Glassff9b9032021-07-24 09:03:30 -0600547 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700548 debug("Timeout oack: %s, %d\n",
549 (char *)pkt + i + 8, timeout_val_rcvd);
550 if (timeout_val_rcvd != (timeout_ms / 1000)) {
551 printf("Invalid timeout val(=%d s)\n",
552 timeout_val_rcvd);
553 tftp_state = STATE_INVALID_OPTION;
554 }
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200555 }
Robin Getzb3b00ed2009-08-20 10:50:20 -0400556#ifdef CONFIG_TFTP_TSIZE
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700557 if (strcasecmp((char *)pkt + i, "tsize") == 0) {
Simon Glassff9b9032021-07-24 09:03:30 -0600558 tftp_tsize = dectoul((char *)pkt + i + 6,
559 NULL);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400560 debug("size = %s, %d\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500561 (char *)pkt + i + 6, tftp_tsize);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400562 }
563#endif
Ramon Fried6e9aa542020-07-18 23:31:46 +0300564 if (strcasecmp((char *)pkt + i, "windowsize") == 0) {
565 tftp_windowsize =
Simon Glassff9b9032021-07-24 09:03:30 -0600566 dectoul((char *)pkt + i + 11, NULL);
Ramon Fried6e9aa542020-07-18 23:31:46 +0300567 debug("windowsize = %s, %d\n",
568 (char *)pkt + i + 11, tftp_windowsize);
569 }
David Updegraff7280da72007-06-11 10:41:07 -0500570 }
Ramon Fried6e9aa542020-07-18 23:31:46 +0300571
572 tftp_next_ack = tftp_windowsize;
573
Simon Glass6a398d22011-10-24 18:00:07 +0000574#ifdef CONFIG_CMD_TFTPPUT
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700575 if (tftp_put_active && tftp_state == STATE_OACK) {
Simon Glass6a398d22011-10-24 18:00:07 +0000576 /* Get ready to send the first block */
Joe Hershberger64701592015-04-08 01:41:07 -0500577 tftp_state = STATE_DATA;
578 tftp_cur_block++;
Simon Glass6a398d22011-10-24 18:00:07 +0000579 }
580#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500581 tftp_send(); /* Send ACK or first data block */
wdenk7182b0f2003-10-06 21:55:32 +0000582 break;
wdenkfe8c2802002-11-03 00:38:21 +0000583 case TFTP_DATA:
584 if (len < 2)
585 return;
586 len -= 2;
Ramon Fried6e9aa542020-07-18 23:31:46 +0300587
588 if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) {
589 debug("Received unexpected block: %d, expected: %d\n",
590 ntohs(*(__be16 *)pkt),
591 (ushort)(tftp_cur_block + 1));
592 /*
Sean Edmond15898362023-01-04 18:16:26 -0800593 * Only ACK if the block count received is greater than
594 * the expected block count, otherwise skip ACK.
595 * (required to properly handle the server retransmitting
596 * the window)
597 */
598 if ((ushort)(tftp_cur_block + 1) - (short)(ntohs(*(__be16 *)pkt)) > 0)
599 break;
600 /*
Ramon Fried6e9aa542020-07-18 23:31:46 +0300601 * If one packet is dropped most likely
602 * all other buffers in the window
603 * that will arrive will cause a sending NACK.
604 * This just overwellms the server, let's just send one.
605 */
606 if (tftp_last_nack != tftp_cur_block) {
607 tftp_send();
608 tftp_last_nack = tftp_cur_block;
609 tftp_next_ack = (ushort)(tftp_cur_block +
610 tftp_windowsize);
611 }
612 break;
613 }
614
615 tftp_cur_block++;
616 tftp_cur_block %= TFTP_SEQUENCE_SIZE;
wdenkef893942004-02-23 16:11:30 +0000617
Harm Berntsend097b1a2020-11-27 21:45:56 +0000618 if (tftp_state == STATE_SEND_RRQ) {
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700619 debug("Server did not acknowledge any options!\n");
Harm Berntsend097b1a2020-11-27 21:45:56 +0000620 tftp_next_ack = tftp_windowsize;
621 }
wdenk7182b0f2003-10-06 21:55:32 +0000622
Joe Hershberger64701592015-04-08 01:41:07 -0500623 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
624 tftp_state == STATE_RECV_WRQ) {
wdenkef893942004-02-23 16:11:30 +0000625 /* first block received */
Joe Hershberger64701592015-04-08 01:41:07 -0500626 tftp_state = STATE_DATA;
627 tftp_remote_port = src;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000628 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000629
Joe Hershberger64701592015-04-08 01:41:07 -0500630 if (tftp_cur_block != 1) { /* Assertion */
631 puts("\nTFTP error: ");
632 printf("First block is not block 1 (%ld)\n",
633 tftp_cur_block);
634 puts("Starting again\n\n");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500635 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000636 break;
637 }
638 }
639
Joe Hershberger64701592015-04-08 01:41:07 -0500640 if (tftp_cur_block == tftp_prev_block) {
641 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000642 break;
643 }
644
Ravik Hasijad42686e2020-05-07 14:55:32 -0700645 update_block_number();
Joe Hershberger64701592015-04-08 01:41:07 -0500646 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200647 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500648 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000649
Ley Foon Tan81bb3242020-08-25 10:26:36 +0800650 if (store_block(tftp_cur_block, pkt + 2, len)) {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100651 eth_halt();
652 net_set_state(NETLOOP_FAIL);
653 break;
654 }
wdenkfe8c2802002-11-03 00:38:21 +0000655
Ramon Friedb891c792021-02-03 21:28:59 +0200656 if (len < tftp_block_size) {
657 tftp_send();
658 tftp_complete();
659 break;
660 }
661
wdenkfe8c2802002-11-03 00:38:21 +0000662 /*
Luca Ceresoli2f3dc0a2011-05-17 00:03:41 +0000663 * Acknowledge the block just received, which will prompt
Luca Ceresoli5079c762011-05-17 00:03:37 +0000664 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000665 */
Ramon Fried6e9aa542020-07-18 23:31:46 +0300666 if (tftp_cur_block == tftp_next_ack) {
667 tftp_send();
668 tftp_next_ack += tftp_windowsize;
669 }
wdenkfe8c2802002-11-03 00:38:21 +0000670 break;
671
672 case TFTP_ERROR:
Luca Ceresolif40538a2011-05-14 05:49:57 +0000673 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips878dad02013-01-16 18:09:19 -0600674 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmerb46293f2009-10-28 22:13:40 +0100675
Kim Phillips878dad02013-01-16 18:09:19 -0600676 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmerb46293f2009-10-28 22:13:40 +0100677 case TFTP_ERR_FILE_NOT_FOUND:
678 case TFTP_ERR_ACCESS_DENIED:
679 puts("Not retrying...\n");
680 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000681 net_set_state(NETLOOP_FAIL);
Remy Bohmerb46293f2009-10-28 22:13:40 +0100682 break;
683 case TFTP_ERR_UNDEFINED:
684 case TFTP_ERR_DISK_FULL:
685 case TFTP_ERR_UNEXPECTED_OPCODE:
686 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
687 case TFTP_ERR_FILE_ALREADY_EXISTS:
688 default:
689 puts("Starting again\n\n");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500690 net_start_again();
Remy Bohmerb46293f2009-10-28 22:13:40 +0100691 break;
692 }
wdenkfe8c2802002-11-03 00:38:21 +0000693 break;
694 }
695}
696
Joe Hershberger64701592015-04-08 01:41:07 -0500697static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000698{
Joe Hershberger64701592015-04-08 01:41:07 -0500699 if (++timeout_count > timeout_count_max) {
Simon Glassbd8a0e02011-10-24 18:00:04 +0000700 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000701 } else {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000702 puts("T ");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500703 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger64701592015-04-08 01:41:07 -0500704 if (tftp_state != STATE_RECV_WRQ)
705 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000706 }
707}
708
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100709static int tftp_init_load_addr(void)
710{
Simon Glass892265d2019-12-28 10:45:02 -0700711 tftp_load_addr = image_load_addr;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100712 return 0;
713}
wdenkfe8c2802002-11-03 00:38:21 +0000714
Rasmus Villemoes401c0942022-10-14 19:43:42 +0200715static int saved_tftp_block_size_option;
716static void sanitize_tftp_block_size_option(enum proto_t protocol)
717{
718 int cap, max_defrag;
719
720 switch (protocol) {
721 case TFTPGET:
722 max_defrag = config_opt_enabled(CONFIG_IP_DEFRAG, CONFIG_NET_MAXDEFRAG, 0);
723 if (max_defrag) {
724 /* Account for IP, UDP and TFTP headers. */
725 cap = max_defrag - (20 + 8 + 4);
726 /* RFC2348 sets a hard upper limit. */
727 cap = min(cap, 65464);
728 break;
729 }
730 /*
731 * If not CONFIG_IP_DEFRAG, cap at the same value as
732 * for tftp put, namely normal MTU minus protocol
733 * overhead.
734 */
735 fallthrough;
736 case TFTPPUT:
737 default:
738 /*
739 * U-Boot does not support IP fragmentation on TX, so
740 * this must be small enough that it fits normal MTU
741 * (and small enough that it fits net_tx_packet which
742 * has room for PKTSIZE_ALIGN bytes).
743 */
744 cap = 1468;
745 }
746 if (tftp_block_size_option > cap) {
747 printf("Capping tftp block size option to %d (was %d)\n",
748 cap, tftp_block_size_option);
749 saved_tftp_block_size_option = tftp_block_size_option;
750 tftp_block_size_option = cap;
751 }
752}
753
Joe Hershberger64701592015-04-08 01:41:07 -0500754void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000755{
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200756 __maybe_unused char *ep; /* Environment pointer */
Rasmus Villemoes401c0942022-10-14 19:43:42 +0200757
758 if (saved_tftp_block_size_option) {
759 tftp_block_size_option = saved_tftp_block_size_option;
760 saved_tftp_block_size_option = 0;
761 }
762
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200763 if (IS_ENABLED(CONFIG_NET_TFTP_VARS)) {
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200764
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200765 /*
766 * Allow the user to choose TFTP blocksize and timeout.
767 * TFTP protocol has a minimal timeout of 1 second.
768 */
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200769
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200770 ep = env_get("tftpblocksize");
771 if (ep != NULL)
772 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100773
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200774 ep = env_get("tftpwindowsize");
775 if (ep != NULL)
776 tftp_window_size_option = simple_strtol(ep, NULL, 10);
Ramon Fried6e9aa542020-07-18 23:31:46 +0300777
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200778 ep = env_get("tftptimeout");
779 if (ep != NULL)
780 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100781
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200782 if (timeout_ms < 1000) {
783 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
784 timeout_ms);
785 timeout_ms = 1000;
786 }
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100787
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200788 ep = env_get("tftptimeoutcountmax");
789 if (ep != NULL)
790 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200791
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200792 if (tftp_timeout_count_max < 0) {
793 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
794 tftp_timeout_count_max);
795 tftp_timeout_count_max = 0;
796 }
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200797 }
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200798
Rasmus Villemoes401c0942022-10-14 19:43:42 +0200799 sanitize_tftp_block_size_option(protocol);
800
Ramon Fried6e9aa542020-07-18 23:31:46 +0300801 debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n",
802 tftp_block_size_option, tftp_window_size_option, timeout_ms);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200803
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300804 if (IS_ENABLED(CONFIG_IPV6))
805 tftp_remote_ip6 = net_server_ip6;
806
Joe Hershberger5874dec2015-04-08 01:41:01 -0500807 tftp_remote_ip = net_server_ip;
Joe Hershberger9cb7b022018-07-03 19:36:43 -0500808 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisser6cc63262011-12-03 03:29:44 +0000809 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger5874dec2015-04-08 01:41:01 -0500810 net_ip.s_addr & 0xFF,
811 (net_ip.s_addr >> 8) & 0xFF,
812 (net_ip.s_addr >> 16) & 0xFF,
813 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100814
Vladimir Zapolskiy04cc2902017-06-28 22:56:07 +0300815 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
816 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000817
Luca Ceresolif40538a2011-05-14 05:49:57 +0000818 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500819 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000820 }
821
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300822 if (IS_ENABLED(CONFIG_IPV6)) {
823 if (use_ip6) {
824 char *s, *e;
825 size_t len;
826
827 s = strchr(net_boot_file_name, '[');
828 e = strchr(net_boot_file_name, ']');
829 len = e - s;
830 if (s && e) {
Ehsan Mohandesi31072ed2023-01-13 09:27:41 -0800831 string_to_ip6(s + 1, len - 1, &tftp_remote_ip6);
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300832 strlcpy(tftp_filename, e + 2, MAX_LEN);
833 } else {
834 strlcpy(tftp_filename, net_boot_file_name, MAX_LEN);
835 tftp_filename[MAX_LEN - 1] = 0;
836 }
837 }
838 }
839
Luca Ceresolif40538a2011-05-14 05:49:57 +0000840 printf("Using %s device\n", eth_get_name());
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300841
842 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
843 printf("TFTP from server %pI6c; our IP address is %pI6c",
844 &tftp_remote_ip6, &net_ip6);
845
846 if (tftp_block_size_option > TFTP_MTU_BLOCKSIZE6)
847 tftp_block_size_option = TFTP_MTU_BLOCKSIZE6;
848 } else {
849 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass4abd0e22011-10-27 06:24:29 +0000850#ifdef CONFIG_CMD_TFTPPUT
851 protocol == TFTPPUT ? "to" : "from",
852#else
Joe Hershberger64701592015-04-08 01:41:07 -0500853 "from",
Simon Glass4abd0e22011-10-27 06:24:29 +0000854#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500855 &tftp_remote_ip, &net_ip);
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300856 }
wdenkfe8c2802002-11-03 00:38:21 +0000857
858 /* Check if we need to send across this subnet */
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300859 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
860 if (!ip6_addr_in_subnet(&net_ip6, &tftp_remote_ip6,
861 net_prefix_length))
862 printf("; sending through gateway %pI6c",
863 &net_gateway6);
864 } else if (net_gateway.s_addr && net_netmask.s_addr) {
Joe Hershberger5874dec2015-04-08 01:41:01 -0500865 struct in_addr our_net;
866 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000867
Joe Hershberger5874dec2015-04-08 01:41:01 -0500868 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
869 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
870 if (our_net.s_addr != remote_net.s_addr)
871 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000872 }
Luca Ceresolif40538a2011-05-14 05:49:57 +0000873 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000874
Luca Ceresolif40538a2011-05-14 05:49:57 +0000875 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000876
Joe Hershberger290c8992015-04-08 01:41:02 -0500877 if (net_boot_file_expected_size_in_blocks) {
878 printf(" Size is 0x%x Bytes = ",
879 net_boot_file_expected_size_in_blocks << 9);
880 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000881 }
882
Luca Ceresolif40538a2011-05-14 05:49:57 +0000883 putc('\n');
Simon Glass6a398d22011-10-24 18:00:07 +0000884#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500885 tftp_put_active = (protocol == TFTPPUT);
886 if (tftp_put_active) {
Simon Glass892265d2019-12-28 10:45:02 -0700887 printf("Save address: 0x%lx\n", image_save_addr);
888 printf("Save size: 0x%lx\n", image_save_size);
889 net_boot_file_size = image_save_size;
Simon Glass6a398d22011-10-24 18:00:07 +0000890 puts("Saving: *\b");
Joe Hershberger64701592015-04-08 01:41:07 -0500891 tftp_state = STATE_SEND_WRQ;
Simon Glass6a398d22011-10-24 18:00:07 +0000892 new_transfer();
893 } else
894#endif
895 {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100896 if (tftp_init_load_addr()) {
897 eth_halt();
898 net_set_state(NETLOOP_FAIL);
899 puts("\nTFTP error: ");
900 puts("trying to overwrite reserved memory...\n");
901 return;
902 }
903 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass6a398d22011-10-24 18:00:07 +0000904 puts("Loading: *\b");
Joe Hershberger64701592015-04-08 01:41:07 -0500905 tftp_state = STATE_SEND_RRQ;
Simon Glass6a398d22011-10-24 18:00:07 +0000906 }
wdenkfe8c2802002-11-03 00:38:21 +0000907
Simon Glasscab9a8d2012-10-11 13:57:36 +0000908 time_start = get_timer(0);
Joe Hershberger64701592015-04-08 01:41:07 -0500909 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +0200910
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500911 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger5874dec2015-04-08 01:41:01 -0500912 net_set_udp_handler(tftp_handler);
Simon Glass2928cd82011-10-26 14:18:38 +0000913#ifdef CONFIG_CMD_TFTPPUT
Simon Glass6a398d22011-10-24 18:00:07 +0000914 net_set_icmp_handler(icmp_handler);
Simon Glass2928cd82011-10-26 14:18:38 +0000915#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500916 tftp_remote_port = WELL_KNOWN_PORT;
917 timeout_count = 0;
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200918 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger64701592015-04-08 01:41:07 -0500919 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff7280da72007-06-11 10:41:07 -0500920
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200921#ifdef CONFIG_TFTP_PORT
Simon Glass64b723f2017-08-03 12:22:12 -0600922 ep = env_get("tftpdstp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000923 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500924 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass64b723f2017-08-03 12:22:12 -0600925 ep = env_get("tftpsrcp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000926 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500927 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200928#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500929 tftp_cur_block = 0;
Ramon Fried6e9aa542020-07-18 23:31:46 +0300930 tftp_windowsize = 1;
931 tftp_last_nack = 0;
wdenke6466f62003-06-05 19:27:42 +0000932 /* zero out server ether in case the server ip has changed */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500933 memset(net_server_ethaddr, 0, 6);
Joe Hershberger64701592015-04-08 01:41:07 -0500934 /* Revert tftp_block_size to dflt */
935 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400936#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500937 tftp_tsize = 0;
938 tftp_tsize_num_hash = 0;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400939#endif
wdenke6466f62003-06-05 19:27:42 +0000940
Joe Hershberger64701592015-04-08 01:41:07 -0500941 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000942}
Luca Ceresolib640ed32011-05-17 00:03:39 +0000943
944#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger64701592015-04-08 01:41:07 -0500945void tftp_start_server(void)
Luca Ceresolib640ed32011-05-17 00:03:39 +0000946{
947 tftp_filename[0] = 0;
948
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100949 if (tftp_init_load_addr()) {
950 eth_halt();
951 net_set_state(NETLOOP_FAIL);
952 puts("\nTFTP error: trying to overwrite reserved memory...\n");
953 return;
954 }
Luca Ceresolib640ed32011-05-17 00:03:39 +0000955 printf("Using %s device\n", eth_get_name());
Joe Hershberger5874dec2015-04-08 01:41:01 -0500956 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100957 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000958
959 puts("Loading: *\b");
960
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200961 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger64701592015-04-08 01:41:07 -0500962 timeout_count = 0;
963 timeout_ms = TIMEOUT;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500964 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000965
Joe Hershberger64701592015-04-08 01:41:07 -0500966 /* Revert tftp_block_size to dflt */
967 tftp_block_size = TFTP_BLOCK_SIZE;
968 tftp_cur_block = 0;
969 tftp_our_port = WELL_KNOWN_PORT;
Arjan Minzinga Zijlstrafc134232022-03-31 08:03:16 +0000970 tftp_windowsize = 1;
971 tftp_next_ack = tftp_windowsize;
Luca Ceresolib640ed32011-05-17 00:03:39 +0000972
973#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500974 tftp_tsize = 0;
975 tftp_tsize_num_hash = 0;
Luca Ceresolib640ed32011-05-17 00:03:39 +0000976#endif
977
Joe Hershberger64701592015-04-08 01:41:07 -0500978 tftp_state = STATE_RECV_WRQ;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500979 net_set_udp_handler(tftp_handler);
Andrew Ruder91393c52013-10-22 19:10:28 -0500980
981 /* zero out server ether in case the server ip has changed */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500982 memset(net_server_ethaddr, 0, 6);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000983}
984#endif /* CONFIG_CMD_TFTPSRV */