blob: fd9c9492929e44cc8184a7cacf4ada84e8c7f44f [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>
Christian Marangi1165ba02024-10-01 14:24:39 +020013#include <led.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Joe Hershbergered191852015-03-22 17:09:08 -050016#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000017#include <net.h>
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +030018#include <net6.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020020#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000021#include "bootp.h"
22
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +010023DECLARE_GLOBAL_DATA_PTR;
24
Luca Ceresolic42fc272011-05-14 05:49:56 +000025/* Well known TFTP port # */
26#define WELL_KNOWN_PORT 69
27/* Millisecs to timeout for lost pkt */
Bin Menge67eaa82015-08-27 22:25:51 -070028#define TIMEOUT 5000UL
Luca Ceresolic42fc272011-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
wdenk7182b0f2003-10-06 21:55:32 +000040#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000041
Joe Hershberger64701592015-04-08 01:41:07 -050042static ulong timeout_ms = TIMEOUT;
Tom Rini26011a32022-03-11 09:12:02 -050043static int timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Simon Glasscab9a8d2012-10-11 13:57:36 +000044static ulong time_start; /* Record time we started tftp */
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +030045static struct in6_addr tftp_remote_ip6;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020046
47/*
48 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger64701592015-04-08 01:41:07 -050049 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020050 * wait for the server to respond to initial connection. Second global,
Joe Hershberger64701592015-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 Sieka371cde72008-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 Hershberger64701592015-04-08 01:41:07 -050056ulong tftp_timeout_ms = TIMEOUT;
Tom Rini26011a32022-03-11 09:12:02 -050057int tftp_timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Bartlomiej Sieka371cde72008-10-01 15:26:29 +020058
Remy Bohmerb46293f2009-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 Hasijae387e9a2020-05-18 21:35:43 -070067 TFTP_ERR_OPTION_NEGOTIATION = 8,
Remy Bohmerb46293f2009-10-28 22:13:40 +010068};
69
Joe Hershberger5874dec2015-04-08 01:41:01 -050070static struct in_addr tftp_remote_ip;
Luca Ceresolic42fc272011-05-14 05:49:56 +000071/* The UDP port at their end */
Joe Hershberger64701592015-04-08 01:41:07 -050072static int tftp_remote_port;
Luca Ceresolic42fc272011-05-14 05:49:56 +000073/* The UDP port at our end */
Joe Hershberger64701592015-04-08 01:41:07 -050074static int tftp_our_port;
75static int timeout_count;
Luca Ceresolic42fc272011-05-14 05:49:56 +000076/* packet sequence number */
Joe Hershberger64701592015-04-08 01:41:07 -050077static ulong tftp_cur_block;
Luca Ceresolic42fc272011-05-14 05:49:56 +000078/* last packet sequence number received */
Joe Hershberger64701592015-04-08 01:41:07 -050079static ulong tftp_prev_block;
Luca Ceresolic42fc272011-05-14 05:49:56 +000080/* count of sequence number wraparounds */
Joe Hershberger64701592015-04-08 01:41:07 -050081static ulong tftp_block_wrap;
Luca Ceresolic42fc272011-05-14 05:49:56 +000082/* memory offset due to wrapping */
Joe Hershberger64701592015-04-08 01:41:07 -050083static ulong tftp_block_wrap_offset;
84static int tftp_state;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +010085static ulong tftp_load_addr;
Robin Getzb3b00ed2009-08-20 10:50:20 -040086#ifdef CONFIG_TFTP_TSIZE
Luca Ceresolic42fc272011-05-14 05:49:56 +000087/* The file size reported by the server */
Joe Hershberger64701592015-04-08 01:41:07 -050088static int tftp_tsize;
Luca Ceresolic42fc272011-05-14 05:49:56 +000089/* The number of hashes we printed */
Joe Hershberger64701592015-04-08 01:41:07 -050090static short tftp_tsize_num_hash;
Robin Getzb3b00ed2009-08-20 10:50:20 -040091#endif
Ramon Fried6e9aa542020-07-18 23:31:46 +030092/* The window size negotiated */
93static ushort tftp_windowsize;
94/* Next block to send ack to */
95static ushort tftp_next_ack;
96/* Last nack block we send */
97static ushort tftp_last_nack;
Simon Glass6a398d22011-10-24 18:00:07 +000098#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -050099/* 1 if writing, else 0 */
100static int tftp_put_active;
101/* 1 if we have sent the last block */
102static int tftp_put_final_block_sent;
Simon Glass6a398d22011-10-24 18:00:07 +0000103#else
Joe Hershberger64701592015-04-08 01:41:07 -0500104#define tftp_put_active 0
Simon Glass6a398d22011-10-24 18:00:07 +0000105#endif
wdenkef893942004-02-23 16:11:30 +0000106
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000107#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000108#define STATE_DATA 2
109#define STATE_TOO_LARGE 3
110#define STATE_BAD_MAGIC 4
wdenk7182b0f2003-10-06 21:55:32 +0000111#define STATE_OACK 5
Luca Ceresolib640ed32011-05-17 00:03:39 +0000112#define STATE_RECV_WRQ 6
Simon Glass6a398d22011-10-24 18:00:07 +0000113#define STATE_SEND_WRQ 7
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700114#define STATE_INVALID_OPTION 8
wdenkfe8c2802002-11-03 00:38:21 +0000115
Luca Ceresolic42fc272011-05-14 05:49:56 +0000116/* default TFTP block size */
117#define TFTP_BLOCK_SIZE 512
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300118#define TFTP_MTU_BLOCKSIZE6 (CONFIG_TFTP_BLOCKSIZE - 20)
Luca Ceresolic42fc272011-05-14 05:49:56 +0000119/* sequence number is 16 bit */
120#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenkef893942004-02-23 16:11:30 +0000121
wdenkfe8c2802002-11-03 00:38:21 +0000122#define DEFAULT_NAME_LEN (8 + 4 + 1)
123static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100124
125#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
126#define MAX_LEN 128
127#else
128#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
129#endif
130
131static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000132
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200133/* 512 is poor choice for ethernet, MTU is typically 1500.
134 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff7280da72007-06-11 10:41:07 -0500135 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200136 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff7280da72007-06-11 10:41:07 -0500137 */
Ramon Fried6e9aa542020-07-18 23:31:46 +0300138
139/* When windowsize is defined to 1,
140 * tftp behaves the same way as it was
141 * never declared
142 */
143#ifdef CONFIG_TFTP_WINDOWSIZE
144#define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE
145#else
146#define TFTP_WINDOWSIZE 1
147#endif
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200148
Joe Hershberger64701592015-04-08 01:41:07 -0500149static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay6c3a4472020-04-22 14:18:26 +0200150static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
Ramon Fried6e9aa542020-07-18 23:31:46 +0300151static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE;
David Updegraff7280da72007-06-11 10:41:07 -0500152
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100153static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000154{
Ley Foon Tan81bb3242020-08-25 10:26:36 +0800155 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
156 tftp_block_size;
wdenkef893942004-02-23 16:11:30 +0000157 ulong newsize = offset + len;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100158 ulong store_addr = tftp_load_addr + offset;
Tom Rinidb295e82022-07-23 13:04:54 -0400159 void *ptr;
Joe Hershbergered191852015-03-22 17:09:08 -0500160
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530161 if (CONFIG_IS_ENABLED(LMB)) {
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530162 if (store_addr < tftp_load_addr ||
Sughosh Ganu04e10b52024-09-16 20:50:24 +0530163 lmb_read_check(store_addr, len)) {
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530164 puts("\nTFTP error: ");
165 puts("trying to overwrite reserved memory...\n");
166 return -1;
167 }
wdenkfe8c2802002-11-03 00:38:21 +0000168 }
Sughosh Ganu0d733f02024-08-26 17:29:22 +0530169
Tom Rinidb295e82022-07-23 13:04:54 -0400170 ptr = map_sysmem(store_addr, len);
171 memcpy(ptr, src, len);
172 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000173
Joe Hershberger290c8992015-04-08 01:41:02 -0500174 if (net_boot_file_size < newsize)
175 net_boot_file_size = newsize;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100176
177 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000178}
179
Simon Glassbd8a0e02011-10-24 18:00:04 +0000180/* Clear our state ready for a new transfer */
Simon Glass84313322011-10-27 06:24:28 +0000181static void new_transfer(void)
Simon Glassbd8a0e02011-10-24 18:00:04 +0000182{
Joe Hershberger64701592015-04-08 01:41:07 -0500183 tftp_prev_block = 0;
184 tftp_block_wrap = 0;
185 tftp_block_wrap_offset = 0;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000186#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500187 tftp_put_final_block_sent = 0;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000188#endif
Christian Marangi1165ba02024-10-01 14:24:39 +0200189 led_activity_blink();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000190}
Simon Glass6a398d22011-10-24 18:00:07 +0000191
192#ifdef CONFIG_CMD_TFTPPUT
193/**
194 * Load the next block from memory to be sent over tftp.
195 *
196 * @param block Block number to send
197 * @param dst Destination buffer for data
198 * @param len Number of bytes in block (this one and every other)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100199 * Return: number of bytes loaded
Simon Glass6a398d22011-10-24 18:00:07 +0000200 */
201static int load_block(unsigned block, uchar *dst, unsigned len)
202{
203 /* We may want to get the final block from the previous set */
Ley Foon Tan5babe562020-08-25 10:26:37 +0800204 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
205 tftp_block_size;
Simon Glass6a398d22011-10-24 18:00:07 +0000206 ulong tosend = len;
207
Joe Hershberger290c8992015-04-08 01:41:02 -0500208 tosend = min(net_boot_file_size - offset, tosend);
Simon Glass892265d2019-12-28 10:45:02 -0700209 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardtc81ab832020-02-22 08:43:40 +0100210 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger64701592015-04-08 01:41:07 -0500211 block, offset, len, tosend);
Simon Glass6a398d22011-10-24 18:00:07 +0000212 return tosend;
213}
214#endif
Simon Glassbd8a0e02011-10-24 18:00:04 +0000215
Joe Hershberger64701592015-04-08 01:41:07 -0500216static void tftp_send(void);
217static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000218
219/**********************************************************************/
220
Simon Glassb437aad2011-10-24 18:00:03 +0000221static void show_block_marker(void)
222{
Ravik Hasijad42686e2020-05-07 14:55:32 -0700223 ulong pos;
224
Simon Glassb437aad2011-10-24 18:00:03 +0000225#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500226 if (tftp_tsize) {
Ravik Hasijad42686e2020-05-07 14:55:32 -0700227 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger64701592015-04-08 01:41:07 -0500228 tftp_block_wrap_offset;
Max Krummenacherdd081cc2015-08-05 17:17:05 +0200229 if (pos > tftp_tsize)
230 pos = tftp_tsize;
Simon Glassb437aad2011-10-24 18:00:03 +0000231
Joe Hershberger64701592015-04-08 01:41:07 -0500232 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassb437aad2011-10-24 18:00:03 +0000233 putc('#');
Joe Hershberger64701592015-04-08 01:41:07 -0500234 tftp_tsize_num_hash++;
Simon Glassb437aad2011-10-24 18:00:03 +0000235 }
Simon Glass6a398d22011-10-24 18:00:07 +0000236 } else
Simon Glassb437aad2011-10-24 18:00:03 +0000237#endif
Simon Glass6a398d22011-10-24 18:00:07 +0000238 {
Ravik Hasijad42686e2020-05-07 14:55:32 -0700239 pos = (tftp_cur_block - 1) +
240 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
241 if ((pos % 10) == 0)
Simon Glassb437aad2011-10-24 18:00:03 +0000242 putc('#');
Ravik Hasijad42686e2020-05-07 14:55:32 -0700243 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassb437aad2011-10-24 18:00:03 +0000244 puts("\n\t ");
245 }
246}
247
Simon Glassbd8a0e02011-10-24 18:00:04 +0000248/**
249 * restart the current transfer due to an error
250 *
251 * @param msg Message to print for user
252 */
253static void restart(const char *msg)
254{
255 printf("\n%s; starting again\n", msg);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500256 net_start_again();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000257}
258
259/*
260 * Check if the block number has wrapped, and update progress
261 *
262 * TODO: The egregious use of global variables in this file should be tidied.
263 */
264static void update_block_number(void)
265{
266 /*
267 * RFC1350 specifies that the first data packet will
268 * have sequence number 1. If we receive a sequence
269 * number of 0 this means that there was a wrap
270 * around of the (16 bit) counter.
271 */
Joe Hershberger64701592015-04-08 01:41:07 -0500272 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
273 tftp_block_wrap++;
274 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
275 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glassbd8a0e02011-10-24 18:00:04 +0000276 }
Ravik Hasijad42686e2020-05-07 14:55:32 -0700277 show_block_marker();
Simon Glassbd8a0e02011-10-24 18:00:04 +0000278}
279
Simon Glassb437aad2011-10-24 18:00:03 +0000280/* The TFTP get or put is complete */
281static void tftp_complete(void)
282{
283#ifdef CONFIG_TFTP_TSIZE
284 /* Print hash marks for the last packet received */
Joe Hershberger64701592015-04-08 01:41:07 -0500285 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassb437aad2011-10-24 18:00:03 +0000286 putc('#');
Joe Hershberger64701592015-04-08 01:41:07 -0500287 tftp_tsize_num_hash++;
Simon Glassb437aad2011-10-24 18:00:03 +0000288 }
Simon Glassc8f0a5c2014-10-10 07:30:21 -0600289 puts(" ");
Joe Hershberger64701592015-04-08 01:41:07 -0500290 print_size(tftp_tsize, "");
Simon Glassb437aad2011-10-24 18:00:03 +0000291#endif
Simon Glasscab9a8d2012-10-11 13:57:36 +0000292 time_start = get_timer(time_start);
293 if (time_start > 0) {
294 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger290c8992015-04-08 01:41:02 -0500295 print_size(net_boot_file_size /
Simon Glasscab9a8d2012-10-11 13:57:36 +0000296 time_start * 1000, "/s");
297 }
Simon Glassb437aad2011-10-24 18:00:03 +0000298 puts("\ndone\n");
Christian Marangi1165ba02024-10-01 14:24:39 +0200299
300 led_activity_off();
301
AKASHI Takahirob9163852024-01-17 13:39:43 +0900302 if (!tftp_put_active)
303 efi_set_bootdev("Net", "", tftp_filename,
304 map_sysmem(tftp_load_addr, 0),
305 net_boot_file_size);
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000306 net_set_state(NETLOOP_SUCCESS);
Simon Glassb437aad2011-10-24 18:00:03 +0000307}
308
Joe Hershberger64701592015-04-08 01:41:07 -0500309static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000310{
Simon Glass6a398d22011-10-24 18:00:07 +0000311 uchar *pkt;
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000312 uchar *xp;
313 int len = 0;
314 ushort *s;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700315 bool err_pkt = false;
wdenkfe8c2802002-11-03 00:38:21 +0000316
317 /*
318 * We will always be sending some sort of packet, so
319 * cobble together the packet headers now.
320 */
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300321 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
322 pkt = net_tx_packet + net_eth_hdr_size() +
323 IP6_HDR_SIZE + UDP_HDR_SIZE;
324 else
325 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000326
Joe Hershberger64701592015-04-08 01:41:07 -0500327 switch (tftp_state) {
Luca Ceresoli562dfe52011-05-17 00:03:38 +0000328 case STATE_SEND_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000329 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000330 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200331 s = (ushort *)pkt;
Simon Glass4abd0e22011-10-27 06:24:29 +0000332#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500333 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass6a398d22011-10-24 18:00:07 +0000334 TFTP_WRQ);
Simon Glass4abd0e22011-10-27 06:24:29 +0000335#else
336 *s++ = htons(TFTP_RRQ);
337#endif
Wolfgang Denk3135c542005-08-26 01:36:03 +0200338 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000339 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000340 pkt += strlen(tftp_filename) + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000341 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000342 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000343 strcpy((char *)pkt, "timeout");
wdenk7182b0f2003-10-06 21:55:32 +0000344 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger64701592015-04-08 01:41:07 -0500345 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400346 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenk7182b0f2003-10-06 21:55:32 +0000347 pkt += strlen((char *)pkt) + 1;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400348#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger290c8992015-04-08 01:41:02 -0500349 pkt += sprintf((char *)pkt, "tsize%c%u%c",
350 0, net_boot_file_size, 0);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400351#endif
David Updegraff7280da72007-06-11 10:41:07 -0500352 /* try for more effic. blk size */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000353 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger64701592015-04-08 01:41:07 -0500354 0, tftp_block_size_option, 0);
Ramon Fried6e9aa542020-07-18 23:31:46 +0300355
356 /* try for more effic. window size.
357 * Implemented only for tftp get.
358 * Don't bother sending if it's 1
359 */
360 if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1)
361 pkt += sprintf((char *)pkt, "windowsize%c%d%c",
362 0, tftp_window_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000363 len = pkt - xp;
364 break;
365
wdenk7182b0f2003-10-06 21:55:32 +0000366 case STATE_OACK:
Luca Ceresolib640ed32011-05-17 00:03:39 +0000367
368 case STATE_RECV_WRQ:
David Updegraff7280da72007-06-11 10:41:07 -0500369 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000370 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200371 s = (ushort *)pkt;
Simon Glass6a398d22011-10-24 18:00:07 +0000372 s[0] = htons(TFTP_ACK);
Joe Hershberger64701592015-04-08 01:41:07 -0500373 s[1] = htons(tftp_cur_block);
Simon Glass6a398d22011-10-24 18:00:07 +0000374 pkt = (uchar *)(s + 2);
375#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500376 if (tftp_put_active) {
377 int toload = tftp_block_size;
378 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass6a398d22011-10-24 18:00:07 +0000379
380 s[0] = htons(TFTP_DATA);
381 pkt += loaded;
Joe Hershberger64701592015-04-08 01:41:07 -0500382 tftp_put_final_block_sent = (loaded < toload);
Simon Glass6a398d22011-10-24 18:00:07 +0000383 }
384#endif
wdenkfe8c2802002-11-03 00:38:21 +0000385 len = pkt - xp;
386 break;
387
388 case STATE_TOO_LARGE:
389 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200390 s = (ushort *)pkt;
391 *s++ = htons(TFTP_ERROR);
Simon Glass6a398d22011-10-24 18:00:07 +0000392 *s++ = htons(3);
393
Wolfgang Denk3135c542005-08-26 01:36:03 +0200394 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000395 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000396 pkt += 14 /*strlen("File too large")*/ + 1;
397 len = pkt - xp;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700398 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000399 break;
400
401 case STATE_BAD_MAGIC:
402 xp = pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200403 s = (ushort *)pkt;
404 *s++ = htons(TFTP_ERROR);
405 *s++ = htons(2);
406 pkt = (uchar *)s;
Luca Ceresolif40538a2011-05-14 05:49:57 +0000407 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000408 pkt += 18 /*strlen("File has bad magic")*/ + 1;
409 len = pkt - xp;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700410 err_pkt = true;
411 break;
412
413 case STATE_INVALID_OPTION:
414 xp = pkt;
415 s = (ushort *)pkt;
416 *s++ = htons(TFTP_ERROR);
417 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
418 pkt = (uchar *)s;
419 strcpy((char *)pkt, "Option Negotiation Failed");
420 /* strlen("Option Negotiation Failed") + NULL*/
421 pkt += 25 + 1;
422 len = pkt - xp;
423 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000424 break;
425 }
426
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300427 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
428 net_send_udp_packet6(net_server_ethaddr,
429 &tftp_remote_ip6,
430 tftp_remote_port,
431 tftp_our_port, len);
432 else
433 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
434 tftp_remote_port, tftp_our_port, len);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700435
436 if (err_pkt)
437 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000438}
439
Simon Glass2928cd82011-10-26 14:18:38 +0000440#ifdef CONFIG_CMD_TFTPPUT
Simon Glass6a398d22011-10-24 18:00:07 +0000441static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500442 struct in_addr sip, unsigned src, uchar *pkt,
443 unsigned len)
Simon Glass6a398d22011-10-24 18:00:07 +0000444{
445 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
446 /* Oh dear the other end has gone away */
447 restart("TFTP server died");
448 }
449}
Simon Glass2928cd82011-10-26 14:18:38 +0000450#endif
wdenkfe8c2802002-11-03 00:38:21 +0000451
Joe Hershberger5874dec2015-04-08 01:41:01 -0500452static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
453 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000454{
Kim Phillips878dad02013-01-16 18:09:19 -0600455 __be16 proto;
456 __be16 *s;
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200457 int i;
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700458 u16 timeout_val_rcvd;
wdenkfe8c2802002-11-03 00:38:21 +0000459
Joe Hershberger64701592015-04-08 01:41:07 -0500460 if (dest != tftp_our_port) {
Luca Ceresoli09b18232011-05-14 05:50:02 +0000461 return;
wdenkfe8c2802002-11-03 00:38:21 +0000462 }
Joe Hershberger64701592015-04-08 01:41:07 -0500463 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
464 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000465 return;
wdenkfe8c2802002-11-03 00:38:21 +0000466
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000467 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000468 return;
wdenkfe8c2802002-11-03 00:38:21 +0000469 len -= 2;
470 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips878dad02013-01-16 18:09:19 -0600471 s = (__be16 *)pkt;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200472 proto = *s++;
473 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000474 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000475 case TFTP_RRQ:
Simon Glass6a398d22011-10-24 18:00:07 +0000476 break;
477
wdenkfe8c2802002-11-03 00:38:21 +0000478 case TFTP_ACK:
Simon Glass6a398d22011-10-24 18:00:07 +0000479#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500480 if (tftp_put_active) {
Jerome Forissiere5b5dd02024-11-29 15:47:32 +0100481 timeout_count = 0;
Joe Hershberger64701592015-04-08 01:41:07 -0500482 if (tftp_put_final_block_sent) {
Simon Glass6a398d22011-10-24 18:00:07 +0000483 tftp_complete();
484 } else {
485 /*
486 * Move to the next block. We want our block
487 * count to wrap just like the other end!
488 */
489 int block = ntohs(*s);
Joe Hershberger64701592015-04-08 01:41:07 -0500490 int ack_ok = (tftp_cur_block == block);
Simon Glass6a398d22011-10-24 18:00:07 +0000491
Ley Foon Tan8de767a2020-08-25 10:26:35 +0800492 tftp_prev_block = tftp_cur_block;
Joe Hershberger64701592015-04-08 01:41:07 -0500493 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass6a398d22011-10-24 18:00:07 +0000494 update_block_number();
Mikhail Kshevetskiy45650962024-07-12 13:47:54 +0400495 if (ack_ok) {
496 if (block == 0 &&
497 tftp_state == STATE_SEND_WRQ){
498 /* connection's first ACK */
499 tftp_state = STATE_DATA;
500 tftp_remote_port = src;
501 }
Mikhail Kshevetskiydb068532025-01-01 06:20:16 +0300502 timeout_count = 0;
Joe Hershberger64701592015-04-08 01:41:07 -0500503 tftp_send(); /* Send next data block */
Mikhail Kshevetskiy45650962024-07-12 13:47:54 +0400504 }
Simon Glass6a398d22011-10-24 18:00:07 +0000505 }
506 }
507#endif
wdenkfe8c2802002-11-03 00:38:21 +0000508 break;
Simon Glass6a398d22011-10-24 18:00:07 +0000509
wdenkfe8c2802002-11-03 00:38:21 +0000510 default:
511 break;
512
Luca Ceresolib640ed32011-05-17 00:03:39 +0000513#ifdef CONFIG_CMD_TFTPSRV
514 case TFTP_WRQ:
515 debug("Got WRQ\n");
Joe Hershberger5874dec2015-04-08 01:41:01 -0500516 tftp_remote_ip = sip;
Joe Hershberger64701592015-04-08 01:41:07 -0500517 tftp_remote_port = src;
518 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glassbd8a0e02011-10-24 18:00:04 +0000519 new_transfer();
Joe Hershberger64701592015-04-08 01:41:07 -0500520 tftp_send(); /* Send ACK(0) */
Luca Ceresolib640ed32011-05-17 00:03:39 +0000521 break;
522#endif
523
wdenk7182b0f2003-10-06 21:55:32 +0000524 case TFTP_OACK:
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700525 debug("Got OACK: ");
526 for (i = 0; i < len; i++) {
527 if (pkt[i] == '\0')
528 debug(" ");
529 else
530 debug("%c", pkt[i]);
531 }
532 debug("\n");
Joe Hershberger64701592015-04-08 01:41:07 -0500533 tftp_state = STATE_OACK;
534 tftp_remote_port = src;
Wolfgang Denk8b70f342007-08-31 10:01:51 +0200535 /*
536 * Check for 'blksize' option.
537 * Careful: "i" is signed, "len" is unsigned, thus
538 * something like "len-8" may give a *huge* number
539 */
Luca Ceresolif40538a2011-05-14 05:49:57 +0000540 for (i = 0; i+8 < len; i++) {
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700541 if (strcasecmp((char *)pkt + i, "blksize") == 0) {
Joe Hershberger64701592015-04-08 01:41:07 -0500542 tftp_block_size = (unsigned short)
Simon Glassff9b9032021-07-24 09:03:30 -0600543 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700544 debug("Blocksize oack: %s, %d\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500545 (char *)pkt + i + 8, tftp_block_size);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700546 if (tftp_block_size > tftp_block_size_option) {
547 printf("Invalid blk size(=%d)\n",
548 tftp_block_size);
549 tftp_state = STATE_INVALID_OPTION;
550 }
551 }
552 if (strcasecmp((char *)pkt + i, "timeout") == 0) {
553 timeout_val_rcvd = (unsigned short)
Simon Glassff9b9032021-07-24 09:03:30 -0600554 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700555 debug("Timeout oack: %s, %d\n",
556 (char *)pkt + i + 8, timeout_val_rcvd);
557 if (timeout_val_rcvd != (timeout_ms / 1000)) {
558 printf("Invalid timeout val(=%d s)\n",
559 timeout_val_rcvd);
560 tftp_state = STATE_INVALID_OPTION;
561 }
Wolfgang Denk83e8e472007-08-30 14:42:15 +0200562 }
Robin Getzb3b00ed2009-08-20 10:50:20 -0400563#ifdef CONFIG_TFTP_TSIZE
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700564 if (strcasecmp((char *)pkt + i, "tsize") == 0) {
Simon Glassff9b9032021-07-24 09:03:30 -0600565 tftp_tsize = dectoul((char *)pkt + i + 6,
566 NULL);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400567 debug("size = %s, %d\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500568 (char *)pkt + i + 6, tftp_tsize);
Robin Getzb3b00ed2009-08-20 10:50:20 -0400569 }
570#endif
Ramon Fried6e9aa542020-07-18 23:31:46 +0300571 if (strcasecmp((char *)pkt + i, "windowsize") == 0) {
572 tftp_windowsize =
Simon Glassff9b9032021-07-24 09:03:30 -0600573 dectoul((char *)pkt + i + 11, NULL);
Ramon Fried6e9aa542020-07-18 23:31:46 +0300574 debug("windowsize = %s, %d\n",
575 (char *)pkt + i + 11, tftp_windowsize);
576 }
David Updegraff7280da72007-06-11 10:41:07 -0500577 }
Ramon Fried6e9aa542020-07-18 23:31:46 +0300578
579 tftp_next_ack = tftp_windowsize;
580
Simon Glass6a398d22011-10-24 18:00:07 +0000581#ifdef CONFIG_CMD_TFTPPUT
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700582 if (tftp_put_active && tftp_state == STATE_OACK) {
Simon Glass6a398d22011-10-24 18:00:07 +0000583 /* Get ready to send the first block */
Joe Hershberger64701592015-04-08 01:41:07 -0500584 tftp_state = STATE_DATA;
585 tftp_cur_block++;
Simon Glass6a398d22011-10-24 18:00:07 +0000586 }
587#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500588 tftp_send(); /* Send ACK or first data block */
wdenk7182b0f2003-10-06 21:55:32 +0000589 break;
wdenkfe8c2802002-11-03 00:38:21 +0000590 case TFTP_DATA:
591 if (len < 2)
592 return;
593 len -= 2;
Ramon Fried6e9aa542020-07-18 23:31:46 +0300594
595 if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) {
596 debug("Received unexpected block: %d, expected: %d\n",
597 ntohs(*(__be16 *)pkt),
598 (ushort)(tftp_cur_block + 1));
599 /*
Sean Edmond15898362023-01-04 18:16:26 -0800600 * Only ACK if the block count received is greater than
601 * the expected block count, otherwise skip ACK.
602 * (required to properly handle the server retransmitting
603 * the window)
604 */
605 if ((ushort)(tftp_cur_block + 1) - (short)(ntohs(*(__be16 *)pkt)) > 0)
606 break;
607 /*
Ramon Fried6e9aa542020-07-18 23:31:46 +0300608 * If one packet is dropped most likely
609 * all other buffers in the window
610 * that will arrive will cause a sending NACK.
611 * This just overwellms the server, let's just send one.
612 */
613 if (tftp_last_nack != tftp_cur_block) {
614 tftp_send();
615 tftp_last_nack = tftp_cur_block;
616 tftp_next_ack = (ushort)(tftp_cur_block +
617 tftp_windowsize);
618 }
619 break;
620 }
621
622 tftp_cur_block++;
623 tftp_cur_block %= TFTP_SEQUENCE_SIZE;
wdenkef893942004-02-23 16:11:30 +0000624
Harm Berntsend097b1a2020-11-27 21:45:56 +0000625 if (tftp_state == STATE_SEND_RRQ) {
Ravik Hasijae387e9a2020-05-18 21:35:43 -0700626 debug("Server did not acknowledge any options!\n");
Harm Berntsend097b1a2020-11-27 21:45:56 +0000627 tftp_next_ack = tftp_windowsize;
628 }
wdenk7182b0f2003-10-06 21:55:32 +0000629
Joe Hershberger64701592015-04-08 01:41:07 -0500630 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
631 tftp_state == STATE_RECV_WRQ) {
wdenkef893942004-02-23 16:11:30 +0000632 /* first block received */
Joe Hershberger64701592015-04-08 01:41:07 -0500633 tftp_state = STATE_DATA;
634 tftp_remote_port = src;
Simon Glassbd8a0e02011-10-24 18:00:04 +0000635 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000636
Joe Hershberger64701592015-04-08 01:41:07 -0500637 if (tftp_cur_block != 1) { /* Assertion */
638 puts("\nTFTP error: ");
639 printf("First block is not block 1 (%ld)\n",
640 tftp_cur_block);
641 puts("Starting again\n\n");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500642 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000643 break;
644 }
645 }
646
Joe Hershberger64701592015-04-08 01:41:07 -0500647 if (tftp_cur_block == tftp_prev_block) {
648 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000649 break;
650 }
651
Ravik Hasijad42686e2020-05-07 14:55:32 -0700652 update_block_number();
Joe Hershberger64701592015-04-08 01:41:07 -0500653 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200654 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500655 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000656
Ley Foon Tan81bb3242020-08-25 10:26:36 +0800657 if (store_block(tftp_cur_block, pkt + 2, len)) {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100658 eth_halt();
659 net_set_state(NETLOOP_FAIL);
660 break;
661 }
Mikhail Kshevetskiydb068532025-01-01 06:20:16 +0300662 timeout_count = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000663
Ramon Friedb891c792021-02-03 21:28:59 +0200664 if (len < tftp_block_size) {
665 tftp_send();
666 tftp_complete();
667 break;
668 }
669
wdenkfe8c2802002-11-03 00:38:21 +0000670 /*
Luca Ceresoli2f3dc0a2011-05-17 00:03:41 +0000671 * Acknowledge the block just received, which will prompt
Luca Ceresoli5079c762011-05-17 00:03:37 +0000672 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000673 */
Ramon Fried6e9aa542020-07-18 23:31:46 +0300674 if (tftp_cur_block == tftp_next_ack) {
675 tftp_send();
676 tftp_next_ack += tftp_windowsize;
677 }
wdenkfe8c2802002-11-03 00:38:21 +0000678 break;
679
680 case TFTP_ERROR:
Luca Ceresolif40538a2011-05-14 05:49:57 +0000681 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips878dad02013-01-16 18:09:19 -0600682 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmerb46293f2009-10-28 22:13:40 +0100683
Kim Phillips878dad02013-01-16 18:09:19 -0600684 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmerb46293f2009-10-28 22:13:40 +0100685 case TFTP_ERR_FILE_NOT_FOUND:
686 case TFTP_ERR_ACCESS_DENIED:
687 puts("Not retrying...\n");
688 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000689 net_set_state(NETLOOP_FAIL);
Remy Bohmerb46293f2009-10-28 22:13:40 +0100690 break;
691 case TFTP_ERR_UNDEFINED:
692 case TFTP_ERR_DISK_FULL:
693 case TFTP_ERR_UNEXPECTED_OPCODE:
694 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
695 case TFTP_ERR_FILE_ALREADY_EXISTS:
696 default:
697 puts("Starting again\n\n");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500698 net_start_again();
Remy Bohmerb46293f2009-10-28 22:13:40 +0100699 break;
700 }
wdenkfe8c2802002-11-03 00:38:21 +0000701 break;
702 }
703}
704
Joe Hershberger64701592015-04-08 01:41:07 -0500705static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000706{
Joe Hershberger64701592015-04-08 01:41:07 -0500707 if (++timeout_count > timeout_count_max) {
Simon Glassbd8a0e02011-10-24 18:00:04 +0000708 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000709 } else {
Luca Ceresolif40538a2011-05-14 05:49:57 +0000710 puts("T ");
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500711 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger64701592015-04-08 01:41:07 -0500712 if (tftp_state != STATE_RECV_WRQ)
713 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000714 }
715}
716
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100717static int tftp_init_load_addr(void)
718{
Simon Glass892265d2019-12-28 10:45:02 -0700719 tftp_load_addr = image_load_addr;
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100720 return 0;
721}
wdenkfe8c2802002-11-03 00:38:21 +0000722
Rasmus Villemoes401c0942022-10-14 19:43:42 +0200723static int saved_tftp_block_size_option;
724static void sanitize_tftp_block_size_option(enum proto_t protocol)
725{
726 int cap, max_defrag;
727
728 switch (protocol) {
729 case TFTPGET:
730 max_defrag = config_opt_enabled(CONFIG_IP_DEFRAG, CONFIG_NET_MAXDEFRAG, 0);
731 if (max_defrag) {
732 /* Account for IP, UDP and TFTP headers. */
733 cap = max_defrag - (20 + 8 + 4);
734 /* RFC2348 sets a hard upper limit. */
735 cap = min(cap, 65464);
736 break;
737 }
738 /*
739 * If not CONFIG_IP_DEFRAG, cap at the same value as
740 * for tftp put, namely normal MTU minus protocol
741 * overhead.
742 */
743 fallthrough;
744 case TFTPPUT:
745 default:
746 /*
747 * U-Boot does not support IP fragmentation on TX, so
748 * this must be small enough that it fits normal MTU
749 * (and small enough that it fits net_tx_packet which
750 * has room for PKTSIZE_ALIGN bytes).
751 */
752 cap = 1468;
753 }
754 if (tftp_block_size_option > cap) {
755 printf("Capping tftp block size option to %d (was %d)\n",
756 cap, tftp_block_size_option);
757 saved_tftp_block_size_option = tftp_block_size_option;
758 tftp_block_size_option = cap;
759 }
760}
761
Joe Hershberger64701592015-04-08 01:41:07 -0500762void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000763{
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200764 __maybe_unused char *ep; /* Environment pointer */
Rasmus Villemoes401c0942022-10-14 19:43:42 +0200765
766 if (saved_tftp_block_size_option) {
767 tftp_block_size_option = saved_tftp_block_size_option;
768 saved_tftp_block_size_option = 0;
769 }
770
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200771 if (IS_ENABLED(CONFIG_NET_TFTP_VARS)) {
Alessandro Rubini8832f6e2009-08-07 13:59:06 +0200772
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200773 /*
774 * Allow the user to choose TFTP blocksize and timeout.
775 * TFTP protocol has a minimal timeout of 1 second.
776 */
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200777
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200778 ep = env_get("tftpblocksize");
779 if (ep != NULL)
780 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100781
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200782 ep = env_get("tftpwindowsize");
783 if (ep != NULL)
784 tftp_window_size_option = simple_strtol(ep, NULL, 10);
Ramon Fried6e9aa542020-07-18 23:31:46 +0300785
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200786 ep = env_get("tftptimeout");
787 if (ep != NULL)
788 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100789
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200790 if (timeout_ms < 1000) {
791 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
792 timeout_ms);
793 timeout_ms = 1000;
794 }
Wolfgang Denkb233bd72010-01-17 23:55:53 +0100795
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200796 ep = env_get("tftptimeoutcountmax");
797 if (ep != NULL)
798 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200799
Rasmus Villemoes82ff5b02022-10-14 19:43:41 +0200800 if (tftp_timeout_count_max < 0) {
801 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
802 tftp_timeout_count_max);
803 tftp_timeout_count_max = 0;
804 }
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200805 }
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200806
Rasmus Villemoes401c0942022-10-14 19:43:42 +0200807 sanitize_tftp_block_size_option(protocol);
808
Ramon Fried6e9aa542020-07-18 23:31:46 +0300809 debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n",
810 tftp_block_size_option, tftp_window_size_option, timeout_ms);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200811
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300812 if (IS_ENABLED(CONFIG_IPV6))
813 tftp_remote_ip6 = net_server_ip6;
814
Joe Hershberger5874dec2015-04-08 01:41:01 -0500815 tftp_remote_ip = net_server_ip;
Joe Hershberger9cb7b022018-07-03 19:36:43 -0500816 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisser6cc63262011-12-03 03:29:44 +0000817 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger5874dec2015-04-08 01:41:01 -0500818 net_ip.s_addr & 0xFF,
819 (net_ip.s_addr >> 8) & 0xFF,
820 (net_ip.s_addr >> 16) & 0xFF,
821 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD58555412008-01-18 01:14:03 +0100822
Vladimir Zapolskiy04cc2902017-06-28 22:56:07 +0300823 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
824 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000825
Luca Ceresolif40538a2011-05-14 05:49:57 +0000826 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger64701592015-04-08 01:41:07 -0500827 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000828 }
829
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300830 if (IS_ENABLED(CONFIG_IPV6)) {
831 if (use_ip6) {
832 char *s, *e;
833 size_t len;
834
835 s = strchr(net_boot_file_name, '[');
836 e = strchr(net_boot_file_name, ']');
837 len = e - s;
838 if (s && e) {
Ehsan Mohandesi31072ed2023-01-13 09:27:41 -0800839 string_to_ip6(s + 1, len - 1, &tftp_remote_ip6);
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300840 strlcpy(tftp_filename, e + 2, MAX_LEN);
841 } else {
842 strlcpy(tftp_filename, net_boot_file_name, MAX_LEN);
843 tftp_filename[MAX_LEN - 1] = 0;
844 }
845 }
846 }
847
Luca Ceresolif40538a2011-05-14 05:49:57 +0000848 printf("Using %s device\n", eth_get_name());
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300849
850 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
851 printf("TFTP from server %pI6c; our IP address is %pI6c",
852 &tftp_remote_ip6, &net_ip6);
853
854 if (tftp_block_size_option > TFTP_MTU_BLOCKSIZE6)
855 tftp_block_size_option = TFTP_MTU_BLOCKSIZE6;
856 } else {
857 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass4abd0e22011-10-27 06:24:29 +0000858#ifdef CONFIG_CMD_TFTPPUT
859 protocol == TFTPPUT ? "to" : "from",
860#else
Joe Hershberger64701592015-04-08 01:41:07 -0500861 "from",
Simon Glass4abd0e22011-10-27 06:24:29 +0000862#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500863 &tftp_remote_ip, &net_ip);
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300864 }
wdenkfe8c2802002-11-03 00:38:21 +0000865
866 /* Check if we need to send across this subnet */
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +0300867 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
868 if (!ip6_addr_in_subnet(&net_ip6, &tftp_remote_ip6,
869 net_prefix_length))
870 printf("; sending through gateway %pI6c",
871 &net_gateway6);
872 } else if (net_gateway.s_addr && net_netmask.s_addr) {
Joe Hershberger5874dec2015-04-08 01:41:01 -0500873 struct in_addr our_net;
874 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000875
Joe Hershberger5874dec2015-04-08 01:41:01 -0500876 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
877 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
878 if (our_net.s_addr != remote_net.s_addr)
879 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000880 }
Luca Ceresolif40538a2011-05-14 05:49:57 +0000881 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000882
Luca Ceresolif40538a2011-05-14 05:49:57 +0000883 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000884
Joe Hershberger290c8992015-04-08 01:41:02 -0500885 if (net_boot_file_expected_size_in_blocks) {
886 printf(" Size is 0x%x Bytes = ",
887 net_boot_file_expected_size_in_blocks << 9);
888 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000889 }
890
Luca Ceresolif40538a2011-05-14 05:49:57 +0000891 putc('\n');
Simon Glass6a398d22011-10-24 18:00:07 +0000892#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger64701592015-04-08 01:41:07 -0500893 tftp_put_active = (protocol == TFTPPUT);
894 if (tftp_put_active) {
Simon Glass892265d2019-12-28 10:45:02 -0700895 printf("Save address: 0x%lx\n", image_save_addr);
896 printf("Save size: 0x%lx\n", image_save_size);
897 net_boot_file_size = image_save_size;
Simon Glass6a398d22011-10-24 18:00:07 +0000898 puts("Saving: *\b");
Joe Hershberger64701592015-04-08 01:41:07 -0500899 tftp_state = STATE_SEND_WRQ;
Simon Glass6a398d22011-10-24 18:00:07 +0000900 new_transfer();
901 } else
902#endif
903 {
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100904 if (tftp_init_load_addr()) {
905 eth_halt();
906 net_set_state(NETLOOP_FAIL);
907 puts("\nTFTP error: ");
908 puts("trying to overwrite reserved memory...\n");
909 return;
910 }
911 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass6a398d22011-10-24 18:00:07 +0000912 puts("Loading: *\b");
Joe Hershberger64701592015-04-08 01:41:07 -0500913 tftp_state = STATE_SEND_RRQ;
Simon Glass6a398d22011-10-24 18:00:07 +0000914 }
wdenkfe8c2802002-11-03 00:38:21 +0000915
Simon Glasscab9a8d2012-10-11 13:57:36 +0000916 time_start = get_timer(0);
Joe Hershberger64701592015-04-08 01:41:07 -0500917 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Sieka371cde72008-10-01 15:26:29 +0200918
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500919 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger5874dec2015-04-08 01:41:01 -0500920 net_set_udp_handler(tftp_handler);
Simon Glass2928cd82011-10-26 14:18:38 +0000921#ifdef CONFIG_CMD_TFTPPUT
Simon Glass6a398d22011-10-24 18:00:07 +0000922 net_set_icmp_handler(icmp_handler);
Simon Glass2928cd82011-10-26 14:18:38 +0000923#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500924 tftp_remote_port = WELL_KNOWN_PORT;
925 timeout_count = 0;
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200926 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger64701592015-04-08 01:41:07 -0500927 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff7280da72007-06-11 10:41:07 -0500928
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200929#ifdef CONFIG_TFTP_PORT
Simon Glass64b723f2017-08-03 12:22:12 -0600930 ep = env_get("tftpdstp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000931 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500932 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass64b723f2017-08-03 12:22:12 -0600933 ep = env_get("tftpsrcp");
Luca Ceresoli35dfb182011-05-14 05:50:00 +0000934 if (ep != NULL)
Joe Hershberger64701592015-04-08 01:41:07 -0500935 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denke3cfce52005-09-24 22:37:32 +0200936#endif
Joe Hershberger64701592015-04-08 01:41:07 -0500937 tftp_cur_block = 0;
Ramon Fried6e9aa542020-07-18 23:31:46 +0300938 tftp_windowsize = 1;
939 tftp_last_nack = 0;
wdenke6466f62003-06-05 19:27:42 +0000940 /* zero out server ether in case the server ip has changed */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500941 memset(net_server_ethaddr, 0, 6);
Joe Hershberger64701592015-04-08 01:41:07 -0500942 /* Revert tftp_block_size to dflt */
943 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400944#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500945 tftp_tsize = 0;
946 tftp_tsize_num_hash = 0;
Robin Getzb3b00ed2009-08-20 10:50:20 -0400947#endif
wdenke6466f62003-06-05 19:27:42 +0000948
Joe Hershberger64701592015-04-08 01:41:07 -0500949 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000950}
Luca Ceresolib640ed32011-05-17 00:03:39 +0000951
952#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger64701592015-04-08 01:41:07 -0500953void tftp_start_server(void)
Luca Ceresolib640ed32011-05-17 00:03:39 +0000954{
955 tftp_filename[0] = 0;
956
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100957 if (tftp_init_load_addr()) {
958 eth_halt();
959 net_set_state(NETLOOP_FAIL);
960 puts("\nTFTP error: trying to overwrite reserved memory...\n");
961 return;
962 }
Luca Ceresolib640ed32011-05-17 00:03:39 +0000963 printf("Using %s device\n", eth_get_name());
Joe Hershberger5874dec2015-04-08 01:41:01 -0500964 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta96cf8f2019-01-14 22:38:22 +0100965 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000966
967 puts("Loading: *\b");
968
Albert ARIBAUD \(3ADEV\)83006852015-10-12 00:02:57 +0200969 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger64701592015-04-08 01:41:07 -0500970 timeout_count = 0;
971 timeout_ms = TIMEOUT;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500972 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000973
Joe Hershberger64701592015-04-08 01:41:07 -0500974 /* Revert tftp_block_size to dflt */
975 tftp_block_size = TFTP_BLOCK_SIZE;
976 tftp_cur_block = 0;
977 tftp_our_port = WELL_KNOWN_PORT;
Arjan Minzinga Zijlstrafc134232022-03-31 08:03:16 +0000978 tftp_windowsize = 1;
979 tftp_next_ack = tftp_windowsize;
Luca Ceresolib640ed32011-05-17 00:03:39 +0000980
981#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger64701592015-04-08 01:41:07 -0500982 tftp_tsize = 0;
983 tftp_tsize_num_hash = 0;
Luca Ceresolib640ed32011-05-17 00:03:39 +0000984#endif
985
Joe Hershberger64701592015-04-08 01:41:07 -0500986 tftp_state = STATE_RECV_WRQ;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500987 net_set_udp_handler(tftp_handler);
Andrew Ruder91393c52013-10-22 19:10:28 -0500988
989 /* zero out server ether in case the server ip has changed */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500990 memset(net_server_ethaddr, 0, 6);
Luca Ceresolib640ed32011-05-17 00:03:39 +0000991}
992#endif /* CONFIG_CMD_TFTPSRV */