blob: 6b16bdcbe4c2e685269177da4b7f9245d9ac7e57 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
Luca Ceresoli2f094132011-05-14 05:49:56 +00002 * Copyright 1994, 1995, 2000 Neil Russell.
3 * (See License)
4 * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
Luca Ceresolie59e3562011-05-17 00:03:39 +00005 * Copyright 2011 Comelit Group SpA,
6 * Luca Ceresoli <luca.ceresoli@comelit.it>
wdenkfe8c2802002-11-03 00:38:21 +00007 */
wdenkfe8c2802002-11-03 00:38:21 +00008#include <command.h>
Simon Glass4e4bf942022-07-31 12:28:48 -06009#include <display_options.h>
Alexander Graf0efe1bc2016-05-06 21:01:01 +020010#include <efi_loader.h>
Simon Glass7b51b572019-08-01 09:46:52 -060011#include <env.h>
Simon Glass8e8ccfe2019-12-28 10:45:03 -070012#include <image.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060013#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050015#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000016#include <net.h>
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +030017#include <net6.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020019#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000020#include "bootp.h"
21
Simon Goldschmidta156c472019-01-14 22:38:22 +010022DECLARE_GLOBAL_DATA_PTR;
23
Luca Ceresoli2f094132011-05-14 05:49:56 +000024/* Well known TFTP port # */
25#define WELL_KNOWN_PORT 69
26/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070027#define TIMEOUT 5000UL
Luca Ceresoli2f094132011-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
wdenkfbe4b5c2003-10-06 21:55:32 +000039#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000040
Joe Hershberger8885c5f2015-04-08 01:41:07 -050041static ulong timeout_ms = TIMEOUT;
Tom Rini01d1b992022-03-11 09:12:02 -050042static int timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Simon Glass85b19802012-10-11 13:57:36 +000043static ulong time_start; /* Record time we started tftp */
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +030044static struct in6_addr tftp_remote_ip6;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020045
46/*
47 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050048 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020049 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-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 Siekae83cc062008-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 Hershberger8885c5f2015-04-08 01:41:07 -050055ulong tftp_timeout_ms = TIMEOUT;
Tom Rini01d1b992022-03-11 09:12:02 -050056int tftp_timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2);
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020057
Remy Bohmeraafda382009-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 Hasija08139212020-05-18 21:35:43 -070066 TFTP_ERR_OPTION_NEGOTIATION = 8,
Remy Bohmeraafda382009-10-28 22:13:40 +010067};
68
Joe Hershberger049a95a2015-04-08 01:41:01 -050069static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000070/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050071static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000072/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050073static int tftp_our_port;
74static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000075/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050076static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000077/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050078static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000079/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050080static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000081/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050082static ulong tftp_block_wrap_offset;
83static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010084static ulong tftp_load_addr;
85#ifdef CONFIG_LMB
86static ulong tftp_load_size;
87#endif
Robin Getz4fccb812009-08-20 10:50:20 -040088#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000089/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050090static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000091/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050092static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040093#endif
Ramon Friedcc6b87e2020-07-18 23:31:46 +030094/* The window size negotiated */
95static ushort tftp_windowsize;
96/* Next block to send ack to */
97static ushort tftp_next_ack;
98/* Last nack block we send */
99static ushort tftp_last_nack;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000100#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500101/* 1 if writing, else 0 */
102static int tftp_put_active;
103/* 1 if we have sent the last block */
104static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000105#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500106#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000107#endif
wdenk3f85ce22004-02-23 16:11:30 +0000108
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000109#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000110#define STATE_DATA 2
111#define STATE_TOO_LARGE 3
112#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000113#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000114#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000115#define STATE_SEND_WRQ 7
Ravik Hasija08139212020-05-18 21:35:43 -0700116#define STATE_INVALID_OPTION 8
wdenkfe8c2802002-11-03 00:38:21 +0000117
Luca Ceresoli2f094132011-05-14 05:49:56 +0000118/* default TFTP block size */
119#define TFTP_BLOCK_SIZE 512
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300120#define TFTP_MTU_BLOCKSIZE6 (CONFIG_TFTP_BLOCKSIZE - 20)
Luca Ceresoli2f094132011-05-14 05:49:56 +0000121/* sequence number is 16 bit */
122#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000123
wdenkfe8c2802002-11-03 00:38:21 +0000124#define DEFAULT_NAME_LEN (8 + 4 + 1)
125static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100126
127#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
128#define MAX_LEN 128
129#else
130#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
131#endif
132
133static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000134
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200135/* 512 is poor choice for ethernet, MTU is typically 1500.
136 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500137 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200138 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500139 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200140
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300141/* When windowsize is defined to 1,
142 * tftp behaves the same way as it was
143 * never declared
144 */
145#ifdef CONFIG_TFTP_WINDOWSIZE
146#define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE
147#else
148#define TFTP_WINDOWSIZE 1
149#endif
150
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500151static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay31d275b2020-04-22 14:18:26 +0200152static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300153static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500154
Simon Goldschmidta156c472019-01-14 22:38:22 +0100155static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000156{
Ley Foon Tanae0bdf02020-08-25 10:26:36 +0800157 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
158 tftp_block_size;
wdenk3f85ce22004-02-23 16:11:30 +0000159 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100160 ulong store_addr = tftp_load_addr + offset;
Tom Rini52938fc2022-07-23 13:04:54 -0400161 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500162
Simon Goldschmidta156c472019-01-14 22:38:22 +0100163#ifdef CONFIG_LMB
Tom Rini52938fc2022-07-23 13:04:54 -0400164 ulong end_addr = tftp_load_addr + tftp_load_size;
Bin Mengca48cb42019-11-15 22:20:13 -0800165
Tom Rini52938fc2022-07-23 13:04:54 -0400166 if (!end_addr)
167 end_addr = ULONG_MAX;
Bin Mengca48cb42019-11-15 22:20:13 -0800168
Tom Rini52938fc2022-07-23 13:04:54 -0400169 if (store_addr < tftp_load_addr ||
170 store_addr + len > end_addr) {
171 puts("\nTFTP error: ");
172 puts("trying to overwrite reserved memory...\n");
173 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000174 }
Tom Rini52938fc2022-07-23 13:04:54 -0400175#endif
176 ptr = map_sysmem(store_addr, len);
177 memcpy(ptr, src, len);
178 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000179
Joe Hershberger14111572015-04-08 01:41:02 -0500180 if (net_boot_file_size < newsize)
181 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100182
183 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000184}
185
Simon Glasse4cde2f2011-10-24 18:00:04 +0000186/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000187static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000188{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500189 tftp_prev_block = 0;
190 tftp_block_wrap = 0;
191 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000192#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500193 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000194#endif
195}
196
Simon Glass1fb7cd42011-10-24 18:00:07 +0000197#ifdef CONFIG_CMD_TFTPPUT
198/**
199 * Load the next block from memory to be sent over tftp.
200 *
201 * @param block Block number to send
202 * @param dst Destination buffer for data
203 * @param len Number of bytes in block (this one and every other)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100204 * Return: number of bytes loaded
Simon Glass1fb7cd42011-10-24 18:00:07 +0000205 */
206static int load_block(unsigned block, uchar *dst, unsigned len)
207{
208 /* We may want to get the final block from the previous set */
Ley Foon Tanf6a158b2020-08-25 10:26:37 +0800209 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
210 tftp_block_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000211 ulong tosend = len;
212
Joe Hershberger14111572015-04-08 01:41:02 -0500213 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700214 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardt2bcc43b2020-02-22 08:43:40 +0100215 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500216 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000217 return tosend;
218}
219#endif
220
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500221static void tftp_send(void);
222static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000223
224/**********************************************************************/
225
Simon Glassf5329bb2011-10-24 18:00:03 +0000226static void show_block_marker(void)
227{
Ravik Hasijade5468e2020-05-07 14:55:32 -0700228 ulong pos;
229
Simon Glassf5329bb2011-10-24 18:00:03 +0000230#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500231 if (tftp_tsize) {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700232 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500233 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200234 if (pos > tftp_tsize)
235 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000236
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500237 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000238 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500239 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000240 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000241 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000242#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000243 {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700244 pos = (tftp_cur_block - 1) +
245 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
246 if ((pos % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000247 putc('#');
Ravik Hasijade5468e2020-05-07 14:55:32 -0700248 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000249 puts("\n\t ");
250 }
251}
252
Simon Glasse4cde2f2011-10-24 18:00:04 +0000253/**
254 * restart the current transfer due to an error
255 *
256 * @param msg Message to print for user
257 */
258static void restart(const char *msg)
259{
260 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500261 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000262}
263
264/*
265 * Check if the block number has wrapped, and update progress
266 *
267 * TODO: The egregious use of global variables in this file should be tidied.
268 */
269static void update_block_number(void)
270{
271 /*
272 * RFC1350 specifies that the first data packet will
273 * have sequence number 1. If we receive a sequence
274 * number of 0 this means that there was a wrap
275 * around of the (16 bit) counter.
276 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500277 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
278 tftp_block_wrap++;
279 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
280 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000281 }
Ravik Hasijade5468e2020-05-07 14:55:32 -0700282 show_block_marker();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000283}
284
Simon Glassf5329bb2011-10-24 18:00:03 +0000285/* The TFTP get or put is complete */
286static void tftp_complete(void)
287{
288#ifdef CONFIG_TFTP_TSIZE
289 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500290 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000291 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500292 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000293 }
Simon Glass8104f542014-10-10 07:30:21 -0600294 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500295 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000296#endif
Simon Glass85b19802012-10-11 13:57:36 +0000297 time_start = get_timer(time_start);
298 if (time_start > 0) {
299 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500300 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000301 time_start * 1000, "/s");
302 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000303 puts("\ndone\n");
AKASHI Takahiro593607c2024-01-17 13:39:43 +0900304 if (!tftp_put_active)
305 efi_set_bootdev("Net", "", tftp_filename,
306 map_sysmem(tftp_load_addr, 0),
307 net_boot_file_size);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000308 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000309}
310
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500311static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000312{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000313 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000314 uchar *xp;
315 int len = 0;
316 ushort *s;
Ravik Hasija08139212020-05-18 21:35:43 -0700317 bool err_pkt = false;
wdenkfe8c2802002-11-03 00:38:21 +0000318
319 /*
320 * We will always be sending some sort of packet, so
321 * cobble together the packet headers now.
322 */
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300323 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
324 pkt = net_tx_packet + net_eth_hdr_size() +
325 IP6_HDR_SIZE + UDP_HDR_SIZE;
326 else
327 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000328
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500329 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000330 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000331 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000332 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200333 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000334#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500335 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000336 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000337#else
338 *s++ = htons(TFTP_RRQ);
339#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200340 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000341 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000342 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000343 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000344 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000345 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000346 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500347 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400348 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000349 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400350#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500351 pkt += sprintf((char *)pkt, "tsize%c%u%c",
352 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400353#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500354 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000355 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500356 0, tftp_block_size_option, 0);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300357
358 /* try for more effic. window size.
359 * Implemented only for tftp get.
360 * Don't bother sending if it's 1
361 */
362 if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1)
363 pkt += sprintf((char *)pkt, "windowsize%c%d%c",
364 0, tftp_window_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000365 len = pkt - xp;
366 break;
367
wdenkfbe4b5c2003-10-06 21:55:32 +0000368 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000369
370 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500371 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000372 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200373 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000374 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500375 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000376 pkt = (uchar *)(s + 2);
377#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500378 if (tftp_put_active) {
379 int toload = tftp_block_size;
380 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000381
382 s[0] = htons(TFTP_DATA);
383 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500384 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000385 }
386#endif
wdenkfe8c2802002-11-03 00:38:21 +0000387 len = pkt - xp;
388 break;
389
390 case STATE_TOO_LARGE:
391 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200392 s = (ushort *)pkt;
393 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000394 *s++ = htons(3);
395
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200396 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000397 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000398 pkt += 14 /*strlen("File too large")*/ + 1;
399 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700400 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000401 break;
402
403 case STATE_BAD_MAGIC:
404 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200405 s = (ushort *)pkt;
406 *s++ = htons(TFTP_ERROR);
407 *s++ = htons(2);
408 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000409 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000410 pkt += 18 /*strlen("File has bad magic")*/ + 1;
411 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700412 err_pkt = true;
413 break;
414
415 case STATE_INVALID_OPTION:
416 xp = pkt;
417 s = (ushort *)pkt;
418 *s++ = htons(TFTP_ERROR);
419 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
420 pkt = (uchar *)s;
421 strcpy((char *)pkt, "Option Negotiation Failed");
422 /* strlen("Option Negotiation Failed") + NULL*/
423 pkt += 25 + 1;
424 len = pkt - xp;
425 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000426 break;
427 }
428
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300429 if (IS_ENABLED(CONFIG_IPV6) && use_ip6)
430 net_send_udp_packet6(net_server_ethaddr,
431 &tftp_remote_ip6,
432 tftp_remote_port,
433 tftp_our_port, len);
434 else
435 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
436 tftp_remote_port, tftp_our_port, len);
Ravik Hasija08139212020-05-18 21:35:43 -0700437
438 if (err_pkt)
439 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000440}
441
Simon Glass39bccd22011-10-26 14:18:38 +0000442#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000443static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500444 struct in_addr sip, unsigned src, uchar *pkt,
445 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000446{
447 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
448 /* Oh dear the other end has gone away */
449 restart("TFTP server died");
450 }
451}
Simon Glass39bccd22011-10-26 14:18:38 +0000452#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000453
Joe Hershberger049a95a2015-04-08 01:41:01 -0500454static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
455 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000456{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600457 __be16 proto;
458 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200459 int i;
Ravik Hasija08139212020-05-18 21:35:43 -0700460 u16 timeout_val_rcvd;
wdenkfe8c2802002-11-03 00:38:21 +0000461
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500462 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000463 return;
wdenkfe8c2802002-11-03 00:38:21 +0000464 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500465 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
466 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000467 return;
wdenkfe8c2802002-11-03 00:38:21 +0000468
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000469 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000470 return;
wdenkfe8c2802002-11-03 00:38:21 +0000471 len -= 2;
472 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600473 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200474 proto = *s++;
475 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000476 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000477 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000478 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000479
480 case TFTP_ACK:
481#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500482 if (tftp_put_active) {
483 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000484 tftp_complete();
485 } else {
486 /*
487 * Move to the next block. We want our block
488 * count to wrap just like the other end!
489 */
490 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500491 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000492
Ley Foon Tan6bf46362020-08-25 10:26:35 +0800493 tftp_prev_block = tftp_cur_block;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500494 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000495 update_block_number();
496 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500497 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000498 }
499 }
500#endif
501 break;
502
wdenkfe8c2802002-11-03 00:38:21 +0000503 default:
504 break;
505
Luca Ceresolie59e3562011-05-17 00:03:39 +0000506#ifdef CONFIG_CMD_TFTPSRV
507 case TFTP_WRQ:
508 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500509 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500510 tftp_remote_port = src;
511 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000512 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500513 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000514 break;
515#endif
516
wdenkfbe4b5c2003-10-06 21:55:32 +0000517 case TFTP_OACK:
Ravik Hasija08139212020-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 Hershberger8885c5f2015-04-08 01:41:07 -0500526 tftp_state = STATE_OACK;
527 tftp_remote_port = src;
Wolfgang Denk60174742007-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 Ceresolic718b142011-05-14 05:49:57 +0000533 for (i = 0; i+8 < len; i++) {
Ravik Hasija08139212020-05-18 21:35:43 -0700534 if (strcasecmp((char *)pkt + i, "blksize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500535 tftp_block_size = (unsigned short)
Simon Glass0b1284e2021-07-24 09:03:30 -0600536 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasija08139212020-05-18 21:35:43 -0700537 debug("Blocksize oack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500538 (char *)pkt + i + 8, tftp_block_size);
Ravik Hasija08139212020-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 Glass0b1284e2021-07-24 09:03:30 -0600547 dectoul((char *)pkt + i + 8, NULL);
Ravik Hasija08139212020-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 Denkff13ac82007-08-30 14:42:15 +0200555 }
Robin Getz4fccb812009-08-20 10:50:20 -0400556#ifdef CONFIG_TFTP_TSIZE
Ravik Hasija08139212020-05-18 21:35:43 -0700557 if (strcasecmp((char *)pkt + i, "tsize") == 0) {
Simon Glass0b1284e2021-07-24 09:03:30 -0600558 tftp_tsize = dectoul((char *)pkt + i + 6,
559 NULL);
Robin Getz4fccb812009-08-20 10:50:20 -0400560 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500561 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400562 }
563#endif
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300564 if (strcasecmp((char *)pkt + i, "windowsize") == 0) {
565 tftp_windowsize =
Simon Glass0b1284e2021-07-24 09:03:30 -0600566 dectoul((char *)pkt + i + 11, NULL);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300567 debug("windowsize = %s, %d\n",
568 (char *)pkt + i + 11, tftp_windowsize);
569 }
David Updegraff53a5c422007-06-11 10:41:07 -0500570 }
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300571
572 tftp_next_ack = tftp_windowsize;
573
Simon Glass1fb7cd42011-10-24 18:00:07 +0000574#ifdef CONFIG_CMD_TFTPPUT
Ravik Hasija08139212020-05-18 21:35:43 -0700575 if (tftp_put_active && tftp_state == STATE_OACK) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000576 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500577 tftp_state = STATE_DATA;
578 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000579 }
580#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500581 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-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 Friedcc6b87e2020-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 Edmond21a265c2023-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 Friedcc6b87e2020-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;
wdenk3f85ce22004-02-23 16:11:30 +0000617
Harm Berntsenbeb61e12020-11-27 21:45:56 +0000618 if (tftp_state == STATE_SEND_RRQ) {
Ravik Hasija08139212020-05-18 21:35:43 -0700619 debug("Server did not acknowledge any options!\n");
Harm Berntsenbeb61e12020-11-27 21:45:56 +0000620 tftp_next_ack = tftp_windowsize;
621 }
wdenkfbe4b5c2003-10-06 21:55:32 +0000622
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500623 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
624 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000625 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500626 tftp_state = STATE_DATA;
627 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000628 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000629
Joe Hershberger8885c5f2015-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 Hershbergerbc0571f2015-04-08 01:41:21 -0500635 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000636 break;
637 }
638 }
639
Joe Hershberger8885c5f2015-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 Hasijade5468e2020-05-07 14:55:32 -0700645 update_block_number();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500646 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200647 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500648 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000649
Ley Foon Tanae0bdf02020-08-25 10:26:36 +0800650 if (store_block(tftp_cur_block, pkt + 2, len)) {
Simon Goldschmidta156c472019-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 Fried2dddc1b2021-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 Ceresoli4d69e982011-05-17 00:03:41 +0000663 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000664 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000665 */
Ramon Friedcc6b87e2020-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 Ceresolic718b142011-05-14 05:49:57 +0000673 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600674 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100675
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600676 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-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 Hershberger22f6e992012-05-23 07:59:14 +0000681 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-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 Hershbergerbc0571f2015-04-08 01:41:21 -0500690 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100691 break;
692 }
wdenkfe8c2802002-11-03 00:38:21 +0000693 break;
694 }
695}
696
697
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500698static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000699{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500700 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000701 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000702 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000703 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500704 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500705 if (tftp_state != STATE_RECV_WRQ)
706 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000707 }
708}
709
Simon Glassbb872dd2019-12-28 10:45:02 -0700710/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100711static int tftp_init_load_addr(void)
712{
713#ifdef CONFIG_LMB
714 struct lmb lmb;
715 phys_size_t max_size;
716
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100717 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100718
Simon Glassbb872dd2019-12-28 10:45:02 -0700719 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100720 if (!max_size)
721 return -1;
722
723 tftp_load_size = max_size;
724#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700725 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100726 return 0;
727}
wdenkfe8c2802002-11-03 00:38:21 +0000728
Rasmus Villemoes087648b2022-10-14 19:43:42 +0200729static int saved_tftp_block_size_option;
730static void sanitize_tftp_block_size_option(enum proto_t protocol)
731{
732 int cap, max_defrag;
733
734 switch (protocol) {
735 case TFTPGET:
736 max_defrag = config_opt_enabled(CONFIG_IP_DEFRAG, CONFIG_NET_MAXDEFRAG, 0);
737 if (max_defrag) {
738 /* Account for IP, UDP and TFTP headers. */
739 cap = max_defrag - (20 + 8 + 4);
740 /* RFC2348 sets a hard upper limit. */
741 cap = min(cap, 65464);
742 break;
743 }
744 /*
745 * If not CONFIG_IP_DEFRAG, cap at the same value as
746 * for tftp put, namely normal MTU minus protocol
747 * overhead.
748 */
749 fallthrough;
750 case TFTPPUT:
751 default:
752 /*
753 * U-Boot does not support IP fragmentation on TX, so
754 * this must be small enough that it fits normal MTU
755 * (and small enough that it fits net_tx_packet which
756 * has room for PKTSIZE_ALIGN bytes).
757 */
758 cap = 1468;
759 }
760 if (tftp_block_size_option > cap) {
761 printf("Capping tftp block size option to %d (was %d)\n",
762 cap, tftp_block_size_option);
763 saved_tftp_block_size_option = tftp_block_size_option;
764 tftp_block_size_option = cap;
765 }
766}
767
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500768void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000769{
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200770 __maybe_unused char *ep; /* Environment pointer */
Rasmus Villemoes087648b2022-10-14 19:43:42 +0200771
772 if (saved_tftp_block_size_option) {
773 tftp_block_size_option = saved_tftp_block_size_option;
774 saved_tftp_block_size_option = 0;
775 }
776
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200777 if (IS_ENABLED(CONFIG_NET_TFTP_VARS)) {
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200778
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200779 /*
780 * Allow the user to choose TFTP blocksize and timeout.
781 * TFTP protocol has a minimal timeout of 1 second.
782 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200783
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200784 ep = env_get("tftpblocksize");
785 if (ep != NULL)
786 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100787
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200788 ep = env_get("tftpwindowsize");
789 if (ep != NULL)
790 tftp_window_size_option = simple_strtol(ep, NULL, 10);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300791
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200792 ep = env_get("tftptimeout");
793 if (ep != NULL)
794 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100795
Rasmus Villemoes4b8c44e2022-10-14 19:43:41 +0200796 if (timeout_ms < 1000) {
797 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
798 timeout_ms);
799 timeout_ms = 1000;
800 }
801
802 ep = env_get("tftptimeoutcountmax");
803 if (ep != NULL)
804 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
805
806 if (tftp_timeout_count_max < 0) {
807 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
808 tftp_timeout_count_max);
809 tftp_timeout_count_max = 0;
810 }
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100811 }
812
Rasmus Villemoes087648b2022-10-14 19:43:42 +0200813 sanitize_tftp_block_size_option(protocol);
814
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300815 debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n",
816 tftp_block_size_option, tftp_window_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200817
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300818 if (IS_ENABLED(CONFIG_IPV6))
819 tftp_remote_ip6 = net_server_ip6;
820
Joe Hershberger049a95a2015-04-08 01:41:01 -0500821 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500822 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000823 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500824 net_ip.s_addr & 0xFF,
825 (net_ip.s_addr >> 8) & 0xFF,
826 (net_ip.s_addr >> 16) & 0xFF,
827 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100828
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300829 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
830 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000831
Luca Ceresolic718b142011-05-14 05:49:57 +0000832 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500833 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000834 }
835
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300836 if (IS_ENABLED(CONFIG_IPV6)) {
837 if (use_ip6) {
838 char *s, *e;
839 size_t len;
840
841 s = strchr(net_boot_file_name, '[');
842 e = strchr(net_boot_file_name, ']');
843 len = e - s;
844 if (s && e) {
Ehsan Mohandesi7db25d92023-01-13 09:27:41 -0800845 string_to_ip6(s + 1, len - 1, &tftp_remote_ip6);
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300846 strlcpy(tftp_filename, e + 2, MAX_LEN);
847 } else {
848 strlcpy(tftp_filename, net_boot_file_name, MAX_LEN);
849 tftp_filename[MAX_LEN - 1] = 0;
850 }
851 }
852 }
853
Luca Ceresolic718b142011-05-14 05:49:57 +0000854 printf("Using %s device\n", eth_get_name());
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300855
856 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
857 printf("TFTP from server %pI6c; our IP address is %pI6c",
858 &tftp_remote_ip6, &net_ip6);
859
860 if (tftp_block_size_option > TFTP_MTU_BLOCKSIZE6)
861 tftp_block_size_option = TFTP_MTU_BLOCKSIZE6;
862 } else {
863 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000864#ifdef CONFIG_CMD_TFTPPUT
865 protocol == TFTPPUT ? "to" : "from",
866#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500867 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000868#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500869 &tftp_remote_ip, &net_ip);
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300870 }
wdenkfe8c2802002-11-03 00:38:21 +0000871
872 /* Check if we need to send across this subnet */
Viacheslav Mitrofanov7fbf2302022-12-02 12:18:07 +0300873 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
874 if (!ip6_addr_in_subnet(&net_ip6, &tftp_remote_ip6,
875 net_prefix_length))
876 printf("; sending through gateway %pI6c",
877 &net_gateway6);
878 } else if (net_gateway.s_addr && net_netmask.s_addr) {
Joe Hershberger049a95a2015-04-08 01:41:01 -0500879 struct in_addr our_net;
880 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000881
Joe Hershberger049a95a2015-04-08 01:41:01 -0500882 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
883 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
884 if (our_net.s_addr != remote_net.s_addr)
885 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000886 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000887 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000888
Luca Ceresolic718b142011-05-14 05:49:57 +0000889 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000890
Joe Hershberger14111572015-04-08 01:41:02 -0500891 if (net_boot_file_expected_size_in_blocks) {
892 printf(" Size is 0x%x Bytes = ",
893 net_boot_file_expected_size_in_blocks << 9);
894 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000895 }
896
Luca Ceresolic718b142011-05-14 05:49:57 +0000897 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000898#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500899 tftp_put_active = (protocol == TFTPPUT);
900 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700901 printf("Save address: 0x%lx\n", image_save_addr);
902 printf("Save size: 0x%lx\n", image_save_size);
903 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000904 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500905 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000906 new_transfer();
907 } else
908#endif
909 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100910 if (tftp_init_load_addr()) {
911 eth_halt();
912 net_set_state(NETLOOP_FAIL);
913 puts("\nTFTP error: ");
914 puts("trying to overwrite reserved memory...\n");
915 return;
916 }
917 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000918 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500919 tftp_state = STATE_SEND_RRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000920 }
wdenkfe8c2802002-11-03 00:38:21 +0000921
Simon Glass85b19802012-10-11 13:57:36 +0000922 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500923 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200924
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500925 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500926 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000927#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000928 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000929#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500930 tftp_remote_port = WELL_KNOWN_PORT;
931 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200932 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500933 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500934
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200935#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600936 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000937 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500938 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600939 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000940 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500941 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200942#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500943 tftp_cur_block = 0;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300944 tftp_windowsize = 1;
945 tftp_last_nack = 0;
wdenk73a8b272003-06-05 19:27:42 +0000946 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500947 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500948 /* Revert tftp_block_size to dflt */
949 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400950#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500951 tftp_tsize = 0;
952 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400953#endif
wdenk73a8b272003-06-05 19:27:42 +0000954
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500955 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000956}
957
Luca Ceresolie59e3562011-05-17 00:03:39 +0000958#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500959void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000960{
961 tftp_filename[0] = 0;
962
Simon Goldschmidta156c472019-01-14 22:38:22 +0100963 if (tftp_init_load_addr()) {
964 eth_halt();
965 net_set_state(NETLOOP_FAIL);
966 puts("\nTFTP error: trying to overwrite reserved memory...\n");
967 return;
968 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000969 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500970 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100971 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000972
973 puts("Loading: *\b");
974
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200975 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500976 timeout_count = 0;
977 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500978 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000979
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500980 /* Revert tftp_block_size to dflt */
981 tftp_block_size = TFTP_BLOCK_SIZE;
982 tftp_cur_block = 0;
983 tftp_our_port = WELL_KNOWN_PORT;
Arjan Minzinga Zijlstra1ffe3662022-03-31 08:03:16 +0000984 tftp_windowsize = 1;
985 tftp_next_ack = tftp_windowsize;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000986
987#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500988 tftp_tsize = 0;
989 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000990#endif
991
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500992 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500993 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500994
995 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500996 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000997}
998#endif /* CONFIG_CMD_TFTPSRV */