blob: 2cfa0b1486fe42b623196f0120cdf8bbc15eca8e [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
Luca Ceresoli2f094132011-05-14 05:49:56 +00002 * Copyright 1994, 1995, 2000 Neil Russell.
3 * (See License)
4 * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
Luca Ceresolie59e3562011-05-17 00:03:39 +00005 * Copyright 2011 Comelit Group SpA,
6 * Luca Ceresoli <luca.ceresoli@comelit.it>
wdenkfe8c2802002-11-03 00:38:21 +00007 */
wdenkfe8c2802002-11-03 00:38:21 +00008#include <common.h>
9#include <command.h>
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>
Lukasz Majewski34696952015-08-24 00:21:43 +020017#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000018#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000019#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
20#include <flash.h>
21#endif
wdenkfe8c2802002-11-03 00:38:21 +000022
Simon Goldschmidta156c472019-01-14 22:38:22 +010023DECLARE_GLOBAL_DATA_PTR;
24
Luca Ceresoli2f094132011-05-14 05:49:56 +000025/* Well known TFTP port # */
26#define WELL_KNOWN_PORT 69
27/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070028#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000029#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000030/* # of timeouts before giving up */
Bin Mengaf2ca592015-08-27 22:25:51 -070031# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000032#else
33# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
34#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000035/* Number of "loading" hashes per line (for checking the image size) */
36#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000037
38/*
39 * TFTP operations.
40 */
41#define TFTP_RRQ 1
42#define TFTP_WRQ 2
43#define TFTP_DATA 3
44#define TFTP_ACK 4
45#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000046#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000047
Joe Hershberger8885c5f2015-04-08 01:41:07 -050048static ulong timeout_ms = TIMEOUT;
49static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000050static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020051
52/*
53 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050054 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020055 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050056 * tftp_timeout_count_max, gives the number of such connection retries.
57 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020058 * positive. The globals are meant to be set (and restored) by code needing
59 * non-standard timeout behavior when initiating a TFTP transfer.
60 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050061ulong tftp_timeout_ms = TIMEOUT;
62int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020063
Remy Bohmeraafda382009-10-28 22:13:40 +010064enum {
65 TFTP_ERR_UNDEFINED = 0,
66 TFTP_ERR_FILE_NOT_FOUND = 1,
67 TFTP_ERR_ACCESS_DENIED = 2,
68 TFTP_ERR_DISK_FULL = 3,
69 TFTP_ERR_UNEXPECTED_OPCODE = 4,
70 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
71 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
Ravik Hasija08139212020-05-18 21:35:43 -070072 TFTP_ERR_OPTION_NEGOTIATION = 8,
Remy Bohmeraafda382009-10-28 22:13:40 +010073};
74
Joe Hershberger049a95a2015-04-08 01:41:01 -050075static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000076/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050077static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000078/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050079static int tftp_our_port;
80static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000081/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050082static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000083/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050084static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000085/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050086static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000087/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050088static ulong tftp_block_wrap_offset;
89static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010090static ulong tftp_load_addr;
91#ifdef CONFIG_LMB
92static ulong tftp_load_size;
93#endif
Robin Getz4fccb812009-08-20 10:50:20 -040094#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000095/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050096static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000097/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050098static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040099#endif
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300100/* The window size negotiated */
101static ushort tftp_windowsize;
102/* Next block to send ack to */
103static ushort tftp_next_ack;
104/* Last nack block we send */
105static ushort tftp_last_nack;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000106#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500107/* 1 if writing, else 0 */
108static int tftp_put_active;
109/* 1 if we have sent the last block */
110static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000111#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500112#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000113#endif
wdenk3f85ce22004-02-23 16:11:30 +0000114
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000115#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000116#define STATE_DATA 2
117#define STATE_TOO_LARGE 3
118#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000119#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000120#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000121#define STATE_SEND_WRQ 7
Ravik Hasija08139212020-05-18 21:35:43 -0700122#define STATE_INVALID_OPTION 8
wdenkfe8c2802002-11-03 00:38:21 +0000123
Luca Ceresoli2f094132011-05-14 05:49:56 +0000124/* default TFTP block size */
125#define TFTP_BLOCK_SIZE 512
126/* sequence number is 16 bit */
127#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000128
wdenkfe8c2802002-11-03 00:38:21 +0000129#define DEFAULT_NAME_LEN (8 + 4 + 1)
130static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100131
132#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
133#define MAX_LEN 128
134#else
135#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
136#endif
137
138static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000139
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200140/* 512 is poor choice for ethernet, MTU is typically 1500.
141 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500142 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200143 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500144 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200145
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300146/* When windowsize is defined to 1,
147 * tftp behaves the same way as it was
148 * never declared
149 */
150#ifdef CONFIG_TFTP_WINDOWSIZE
151#define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE
152#else
153#define TFTP_WINDOWSIZE 1
154#endif
155
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500156static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay31d275b2020-04-22 14:18:26 +0200157static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300158static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500159
Simon Goldschmidta156c472019-01-14 22:38:22 +0100160static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000161{
Ley Foon Tanae0bdf02020-08-25 10:26:36 +0800162 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
163 tftp_block_size;
wdenk3f85ce22004-02-23 16:11:30 +0000164 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100165 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000167 int i, rc = 0;
168
Luca Ceresolic718b142011-05-14 05:49:57 +0000169 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000170 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200171 if (flash_info[i].flash_id == FLASH_UNKNOWN)
172 continue;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100173 if (store_addr >= flash_info[i].start[0]) {
wdenkfe8c2802002-11-03 00:38:21 +0000174 rc = 1;
175 break;
176 }
177 }
178
179 if (rc) { /* Flash is destination for this packet */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100180 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000181 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000182 flash_perror(rc);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100183 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000184 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000185 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200186#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000187 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100188 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500189
Simon Goldschmidta156c472019-01-14 22:38:22 +0100190#ifdef CONFIG_LMB
Bin Mengca48cb42019-11-15 22:20:13 -0800191 ulong end_addr = tftp_load_addr + tftp_load_size;
192
193 if (!end_addr)
194 end_addr = ULONG_MAX;
195
Simon Goldschmidta156c472019-01-14 22:38:22 +0100196 if (store_addr < tftp_load_addr ||
Bin Mengca48cb42019-11-15 22:20:13 -0800197 store_addr + len > end_addr) {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100198 puts("\nTFTP error: ");
199 puts("trying to overwrite reserved memory...\n");
200 return -1;
201 }
202#endif
203 ptr = map_sysmem(store_addr, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500204 memcpy(ptr, src, len);
205 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000206 }
207
Joe Hershberger14111572015-04-08 01:41:02 -0500208 if (net_boot_file_size < newsize)
209 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100210
211 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000212}
213
Simon Glasse4cde2f2011-10-24 18:00:04 +0000214/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000215static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000216{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500217 tftp_prev_block = 0;
218 tftp_block_wrap = 0;
219 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000220#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500221 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000222#endif
223}
224
Simon Glass1fb7cd42011-10-24 18:00:07 +0000225#ifdef CONFIG_CMD_TFTPPUT
226/**
227 * Load the next block from memory to be sent over tftp.
228 *
229 * @param block Block number to send
230 * @param dst Destination buffer for data
231 * @param len Number of bytes in block (this one and every other)
232 * @return number of bytes loaded
233 */
234static int load_block(unsigned block, uchar *dst, unsigned len)
235{
236 /* We may want to get the final block from the previous set */
Ley Foon Tanf6a158b2020-08-25 10:26:37 +0800237 ulong offset = block * tftp_block_size + tftp_block_wrap_offset -
238 tftp_block_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000239 ulong tosend = len;
240
Joe Hershberger14111572015-04-08 01:41:02 -0500241 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700242 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardt2bcc43b2020-02-22 08:43:40 +0100243 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500244 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000245 return tosend;
246}
247#endif
248
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500249static void tftp_send(void);
250static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000251
252/**********************************************************************/
253
Simon Glassf5329bb2011-10-24 18:00:03 +0000254static void show_block_marker(void)
255{
Ravik Hasijade5468e2020-05-07 14:55:32 -0700256 ulong pos;
257
Simon Glassf5329bb2011-10-24 18:00:03 +0000258#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500259 if (tftp_tsize) {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700260 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500261 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200262 if (pos > tftp_tsize)
263 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000264
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500265 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000266 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500267 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000268 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000269 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000270#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000271 {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700272 pos = (tftp_cur_block - 1) +
273 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
274 if ((pos % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000275 putc('#');
Ravik Hasijade5468e2020-05-07 14:55:32 -0700276 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000277 puts("\n\t ");
278 }
279}
280
Simon Glasse4cde2f2011-10-24 18:00:04 +0000281/**
282 * restart the current transfer due to an error
283 *
284 * @param msg Message to print for user
285 */
286static void restart(const char *msg)
287{
288 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500289 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000290}
291
292/*
293 * Check if the block number has wrapped, and update progress
294 *
295 * TODO: The egregious use of global variables in this file should be tidied.
296 */
297static void update_block_number(void)
298{
299 /*
300 * RFC1350 specifies that the first data packet will
301 * have sequence number 1. If we receive a sequence
302 * number of 0 this means that there was a wrap
303 * around of the (16 bit) counter.
304 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500305 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
306 tftp_block_wrap++;
307 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
308 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000309 }
Ravik Hasijade5468e2020-05-07 14:55:32 -0700310 show_block_marker();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000311}
312
Simon Glassf5329bb2011-10-24 18:00:03 +0000313/* The TFTP get or put is complete */
314static void tftp_complete(void)
315{
316#ifdef CONFIG_TFTP_TSIZE
317 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500318 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000319 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500320 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000321 }
Simon Glass8104f542014-10-10 07:30:21 -0600322 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500323 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000324#endif
Simon Glass85b19802012-10-11 13:57:36 +0000325 time_start = get_timer(time_start);
326 if (time_start > 0) {
327 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500328 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000329 time_start * 1000, "/s");
330 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000331 puts("\ndone\n");
Heinrich Schuchardt5f595182021-01-12 12:46:24 +0100332 if (IS_ENABLED(CONFIG_CMD_BOOTEFI)) {
333 if (!tftp_put_active)
334 efi_set_bootdev("Net", "", tftp_filename,
335 map_sysmem(tftp_load_addr, 0),
336 net_boot_file_size);
337 }
Joe Hershberger22f6e992012-05-23 07:59:14 +0000338 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000339}
340
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500341static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000342{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000343 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000344 uchar *xp;
345 int len = 0;
346 ushort *s;
Ravik Hasija08139212020-05-18 21:35:43 -0700347 bool err_pkt = false;
wdenkfe8c2802002-11-03 00:38:21 +0000348
349 /*
350 * We will always be sending some sort of packet, so
351 * cobble together the packet headers now.
352 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500353 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000354
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500355 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000356 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000357 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000358 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200359 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000360#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500361 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000362 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000363#else
364 *s++ = htons(TFTP_RRQ);
365#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200366 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000367 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000368 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000369 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000370 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000371 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000372 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500373 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400374 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000375 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400376#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500377 pkt += sprintf((char *)pkt, "tsize%c%u%c",
378 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400379#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500380 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000381 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500382 0, tftp_block_size_option, 0);
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300383
384 /* try for more effic. window size.
385 * Implemented only for tftp get.
386 * Don't bother sending if it's 1
387 */
388 if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1)
389 pkt += sprintf((char *)pkt, "windowsize%c%d%c",
390 0, tftp_window_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000391 len = pkt - xp;
392 break;
393
wdenkfbe4b5c2003-10-06 21:55:32 +0000394 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000395
396 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500397 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000398 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200399 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000400 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500401 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000402 pkt = (uchar *)(s + 2);
403#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500404 if (tftp_put_active) {
405 int toload = tftp_block_size;
406 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000407
408 s[0] = htons(TFTP_DATA);
409 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500410 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000411 }
412#endif
wdenkfe8c2802002-11-03 00:38:21 +0000413 len = pkt - xp;
414 break;
415
416 case STATE_TOO_LARGE:
417 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200418 s = (ushort *)pkt;
419 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000420 *s++ = htons(3);
421
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200422 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000423 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000424 pkt += 14 /*strlen("File too large")*/ + 1;
425 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700426 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000427 break;
428
429 case STATE_BAD_MAGIC:
430 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200431 s = (ushort *)pkt;
432 *s++ = htons(TFTP_ERROR);
433 *s++ = htons(2);
434 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000435 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000436 pkt += 18 /*strlen("File has bad magic")*/ + 1;
437 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700438 err_pkt = true;
439 break;
440
441 case STATE_INVALID_OPTION:
442 xp = pkt;
443 s = (ushort *)pkt;
444 *s++ = htons(TFTP_ERROR);
445 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
446 pkt = (uchar *)s;
447 strcpy((char *)pkt, "Option Negotiation Failed");
448 /* strlen("Option Negotiation Failed") + NULL*/
449 pkt += 25 + 1;
450 len = pkt - xp;
451 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000452 break;
453 }
454
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500455 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
456 tftp_remote_port, tftp_our_port, len);
Ravik Hasija08139212020-05-18 21:35:43 -0700457
458 if (err_pkt)
459 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000460}
461
Simon Glass39bccd22011-10-26 14:18:38 +0000462#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000463static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500464 struct in_addr sip, unsigned src, uchar *pkt,
465 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000466{
467 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
468 /* Oh dear the other end has gone away */
469 restart("TFTP server died");
470 }
471}
Simon Glass39bccd22011-10-26 14:18:38 +0000472#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000473
Joe Hershberger049a95a2015-04-08 01:41:01 -0500474static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
475 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000476{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600477 __be16 proto;
478 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200479 int i;
Ravik Hasija08139212020-05-18 21:35:43 -0700480 u16 timeout_val_rcvd;
wdenkfe8c2802002-11-03 00:38:21 +0000481
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500482 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000483 return;
wdenkfe8c2802002-11-03 00:38:21 +0000484 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500485 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
486 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000487 return;
wdenkfe8c2802002-11-03 00:38:21 +0000488
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000489 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000490 return;
wdenkfe8c2802002-11-03 00:38:21 +0000491 len -= 2;
492 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600493 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200494 proto = *s++;
495 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000496 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000497 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000498 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000499
500 case TFTP_ACK:
501#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500502 if (tftp_put_active) {
503 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000504 tftp_complete();
505 } else {
506 /*
507 * Move to the next block. We want our block
508 * count to wrap just like the other end!
509 */
510 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500511 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000512
Ley Foon Tan6bf46362020-08-25 10:26:35 +0800513 tftp_prev_block = tftp_cur_block;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500514 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000515 update_block_number();
516 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500517 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000518 }
519 }
520#endif
521 break;
522
wdenkfe8c2802002-11-03 00:38:21 +0000523 default:
524 break;
525
Luca Ceresolie59e3562011-05-17 00:03:39 +0000526#ifdef CONFIG_CMD_TFTPSRV
527 case TFTP_WRQ:
528 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500529 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500530 tftp_remote_port = src;
531 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000532 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500533 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000534 break;
535#endif
536
wdenkfbe4b5c2003-10-06 21:55:32 +0000537 case TFTP_OACK:
Ravik Hasija08139212020-05-18 21:35:43 -0700538 debug("Got OACK: ");
539 for (i = 0; i < len; i++) {
540 if (pkt[i] == '\0')
541 debug(" ");
542 else
543 debug("%c", pkt[i]);
544 }
545 debug("\n");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500546 tftp_state = STATE_OACK;
547 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200548 /*
549 * Check for 'blksize' option.
550 * Careful: "i" is signed, "len" is unsigned, thus
551 * something like "len-8" may give a *huge* number
552 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000553 for (i = 0; i+8 < len; i++) {
Ravik Hasija08139212020-05-18 21:35:43 -0700554 if (strcasecmp((char *)pkt + i, "blksize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500555 tftp_block_size = (unsigned short)
556 simple_strtoul((char *)pkt + i + 8,
557 NULL, 10);
Ravik Hasija08139212020-05-18 21:35:43 -0700558 debug("Blocksize oack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500559 (char *)pkt + i + 8, tftp_block_size);
Ravik Hasija08139212020-05-18 21:35:43 -0700560 if (tftp_block_size > tftp_block_size_option) {
561 printf("Invalid blk size(=%d)\n",
562 tftp_block_size);
563 tftp_state = STATE_INVALID_OPTION;
564 }
565 }
566 if (strcasecmp((char *)pkt + i, "timeout") == 0) {
567 timeout_val_rcvd = (unsigned short)
568 simple_strtoul((char *)pkt + i + 8,
569 NULL, 10);
570 debug("Timeout oack: %s, %d\n",
571 (char *)pkt + i + 8, timeout_val_rcvd);
572 if (timeout_val_rcvd != (timeout_ms / 1000)) {
573 printf("Invalid timeout val(=%d s)\n",
574 timeout_val_rcvd);
575 tftp_state = STATE_INVALID_OPTION;
576 }
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200577 }
Robin Getz4fccb812009-08-20 10:50:20 -0400578#ifdef CONFIG_TFTP_TSIZE
Ravik Hasija08139212020-05-18 21:35:43 -0700579 if (strcasecmp((char *)pkt + i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500580 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000581 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400582 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500583 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400584 }
585#endif
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300586 if (strcasecmp((char *)pkt + i, "windowsize") == 0) {
587 tftp_windowsize =
588 simple_strtoul((char *)pkt + i + 11,
589 NULL, 10);
590 debug("windowsize = %s, %d\n",
591 (char *)pkt + i + 11, tftp_windowsize);
592 }
David Updegraff53a5c422007-06-11 10:41:07 -0500593 }
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300594
595 tftp_next_ack = tftp_windowsize;
596
Simon Glass1fb7cd42011-10-24 18:00:07 +0000597#ifdef CONFIG_CMD_TFTPPUT
Ravik Hasija08139212020-05-18 21:35:43 -0700598 if (tftp_put_active && tftp_state == STATE_OACK) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000599 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500600 tftp_state = STATE_DATA;
601 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000602 }
603#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500604 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000605 break;
wdenkfe8c2802002-11-03 00:38:21 +0000606 case TFTP_DATA:
607 if (len < 2)
608 return;
609 len -= 2;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300610
611 if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) {
612 debug("Received unexpected block: %d, expected: %d\n",
613 ntohs(*(__be16 *)pkt),
614 (ushort)(tftp_cur_block + 1));
615 /*
616 * If one packet is dropped most likely
617 * all other buffers in the window
618 * that will arrive will cause a sending NACK.
619 * This just overwellms the server, let's just send one.
620 */
621 if (tftp_last_nack != tftp_cur_block) {
622 tftp_send();
623 tftp_last_nack = tftp_cur_block;
624 tftp_next_ack = (ushort)(tftp_cur_block +
625 tftp_windowsize);
626 }
627 break;
628 }
629
630 tftp_cur_block++;
631 tftp_cur_block %= TFTP_SEQUENCE_SIZE;
wdenk3f85ce22004-02-23 16:11:30 +0000632
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500633 if (tftp_state == STATE_SEND_RRQ)
Ravik Hasija08139212020-05-18 21:35:43 -0700634 debug("Server did not acknowledge any options!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000635
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500636 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
637 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000638 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500639 tftp_state = STATE_DATA;
640 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000641 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000642
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500643 if (tftp_cur_block != 1) { /* Assertion */
644 puts("\nTFTP error: ");
645 printf("First block is not block 1 (%ld)\n",
646 tftp_cur_block);
647 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500648 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000649 break;
650 }
651 }
652
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500653 if (tftp_cur_block == tftp_prev_block) {
654 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000655 break;
656 }
657
Ravik Hasijade5468e2020-05-07 14:55:32 -0700658 update_block_number();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500659 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200660 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500661 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000662
Ley Foon Tanae0bdf02020-08-25 10:26:36 +0800663 if (store_block(tftp_cur_block, pkt + 2, len)) {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100664 eth_halt();
665 net_set_state(NETLOOP_FAIL);
666 break;
667 }
wdenkfe8c2802002-11-03 00:38:21 +0000668
669 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000670 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000671 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000672 */
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300673 if (tftp_cur_block == tftp_next_ack) {
674 tftp_send();
675 tftp_next_ack += tftp_windowsize;
676 }
wdenkfe8c2802002-11-03 00:38:21 +0000677
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300678 if (len < tftp_block_size) {
679 tftp_send();
Simon Glassf5329bb2011-10-24 18:00:03 +0000680 tftp_complete();
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300681 }
wdenkfe8c2802002-11-03 00:38:21 +0000682 break;
683
684 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000685 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600686 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100687
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600688 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100689 case TFTP_ERR_FILE_NOT_FOUND:
690 case TFTP_ERR_ACCESS_DENIED:
691 puts("Not retrying...\n");
692 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000693 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100694 break;
695 case TFTP_ERR_UNDEFINED:
696 case TFTP_ERR_DISK_FULL:
697 case TFTP_ERR_UNEXPECTED_OPCODE:
698 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
699 case TFTP_ERR_FILE_ALREADY_EXISTS:
700 default:
701 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500702 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100703 break;
704 }
wdenkfe8c2802002-11-03 00:38:21 +0000705 break;
706 }
707}
708
709
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500710static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000711{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500712 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000713 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000714 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000715 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500716 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500717 if (tftp_state != STATE_RECV_WRQ)
718 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000719 }
720}
721
Simon Glassbb872dd2019-12-28 10:45:02 -0700722/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100723static int tftp_init_load_addr(void)
724{
725#ifdef CONFIG_LMB
726 struct lmb lmb;
727 phys_size_t max_size;
728
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100729 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100730
Simon Glassbb872dd2019-12-28 10:45:02 -0700731 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100732 if (!max_size)
733 return -1;
734
735 tftp_load_size = max_size;
736#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700737 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100738 return 0;
739}
wdenkfe8c2802002-11-03 00:38:21 +0000740
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500741void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000742{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200743#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200744 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200745
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100746 /*
747 * Allow the user to choose TFTP blocksize and timeout.
748 * TFTP protocol has a minimal timeout of 1 second.
749 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200750
Simon Glass00caae62017-08-03 12:22:12 -0600751 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000752 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500753 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100754
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300755 ep = env_get("tftpwindowsize");
756 if (ep != NULL)
757 tftp_window_size_option = simple_strtol(ep, NULL, 10);
758
Simon Glass00caae62017-08-03 12:22:12 -0600759 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000760 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500761 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100762
Bin Mengaf2ca592015-08-27 22:25:51 -0700763 if (timeout_ms < 1000) {
764 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500765 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700766 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100767 }
768
Simon Glass00caae62017-08-03 12:22:12 -0600769 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200770 if (ep != NULL)
771 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
772
773 if (tftp_timeout_count_max < 0) {
774 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
775 tftp_timeout_count_max);
776 tftp_timeout_count_max = 0;
777 }
778#endif
779
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300780 debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n",
781 tftp_block_size_option, tftp_window_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200782
Joe Hershberger049a95a2015-04-08 01:41:01 -0500783 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500784 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000785 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500786 net_ip.s_addr & 0xFF,
787 (net_ip.s_addr >> 8) & 0xFF,
788 (net_ip.s_addr >> 16) & 0xFF,
789 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100790
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300791 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
792 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000793
Luca Ceresolic718b142011-05-14 05:49:57 +0000794 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500795 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000796 }
797
Luca Ceresolic718b142011-05-14 05:49:57 +0000798 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000799 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000800#ifdef CONFIG_CMD_TFTPPUT
801 protocol == TFTPPUT ? "to" : "from",
802#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500803 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000804#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500805 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000806
807 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500808 if (net_gateway.s_addr && net_netmask.s_addr) {
809 struct in_addr our_net;
810 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000811
Joe Hershberger049a95a2015-04-08 01:41:01 -0500812 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
813 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
814 if (our_net.s_addr != remote_net.s_addr)
815 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000816 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000817 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000818
Luca Ceresolic718b142011-05-14 05:49:57 +0000819 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000820
Joe Hershberger14111572015-04-08 01:41:02 -0500821 if (net_boot_file_expected_size_in_blocks) {
822 printf(" Size is 0x%x Bytes = ",
823 net_boot_file_expected_size_in_blocks << 9);
824 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000825 }
826
Luca Ceresolic718b142011-05-14 05:49:57 +0000827 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000828#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500829 tftp_put_active = (protocol == TFTPPUT);
830 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700831 printf("Save address: 0x%lx\n", image_save_addr);
832 printf("Save size: 0x%lx\n", image_save_size);
833 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000834 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500835 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000836 new_transfer();
837 } else
838#endif
839 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100840 if (tftp_init_load_addr()) {
841 eth_halt();
842 net_set_state(NETLOOP_FAIL);
843 puts("\nTFTP error: ");
844 puts("trying to overwrite reserved memory...\n");
845 return;
846 }
847 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000848 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500849 tftp_state = STATE_SEND_RRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000850 }
wdenkfe8c2802002-11-03 00:38:21 +0000851
Simon Glass85b19802012-10-11 13:57:36 +0000852 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500853 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200854
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500855 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500856 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000857#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000858 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000859#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500860 tftp_remote_port = WELL_KNOWN_PORT;
861 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200862 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500863 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500864
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200865#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600866 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000867 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500868 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600869 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000870 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500871 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200872#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500873 tftp_cur_block = 0;
Ramon Friedcc6b87e2020-07-18 23:31:46 +0300874 tftp_windowsize = 1;
875 tftp_last_nack = 0;
wdenk73a8b272003-06-05 19:27:42 +0000876 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500877 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500878 /* Revert tftp_block_size to dflt */
879 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400880#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500881 tftp_tsize = 0;
882 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400883#endif
wdenk73a8b272003-06-05 19:27:42 +0000884
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500885 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000886}
887
Luca Ceresolie59e3562011-05-17 00:03:39 +0000888#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500889void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000890{
891 tftp_filename[0] = 0;
892
Simon Goldschmidta156c472019-01-14 22:38:22 +0100893 if (tftp_init_load_addr()) {
894 eth_halt();
895 net_set_state(NETLOOP_FAIL);
896 puts("\nTFTP error: trying to overwrite reserved memory...\n");
897 return;
898 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000899 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500900 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100901 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000902
903 puts("Loading: *\b");
904
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200905 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500906 timeout_count = 0;
907 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500908 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000909
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500910 /* Revert tftp_block_size to dflt */
911 tftp_block_size = TFTP_BLOCK_SIZE;
912 tftp_cur_block = 0;
913 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000914
915#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500916 tftp_tsize = 0;
917 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000918#endif
919
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500920 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500921 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500922
923 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500924 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000925}
926#endif /* CONFIG_CMD_TFTPSRV */
927