blob: c05b7b5532b9c5454cebc5a85417f84ff87caaad [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 */
8
9#include <common.h>
10#include <command.h>
Alexander Graf0efe1bc2016-05-06 21:01:01 +020011#include <efi_loader.h>
Simon Glass7b51b572019-08-01 09:46:52 -060012#include <env.h>
Simon Glass8e8ccfe2019-12-28 10:45:03 -070013#include <image.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050016#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000017#include <net.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020018#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000019#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000020#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
21#include <flash.h>
22#endif
wdenkfe8c2802002-11-03 00:38:21 +000023
Simon Goldschmidta156c472019-01-14 22:38:22 +010024DECLARE_GLOBAL_DATA_PTR;
25
Luca Ceresoli2f094132011-05-14 05:49:56 +000026/* Well known TFTP port # */
27#define WELL_KNOWN_PORT 69
28/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070029#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000030#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000031/* # of timeouts before giving up */
Bin Mengaf2ca592015-08-27 22:25:51 -070032# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000033#else
34# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
35#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000036/* Number of "loading" hashes per line (for checking the image size) */
37#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000038
39/*
40 * TFTP operations.
41 */
42#define TFTP_RRQ 1
43#define TFTP_WRQ 2
44#define TFTP_DATA 3
45#define TFTP_ACK 4
46#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000047#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000048
Joe Hershberger8885c5f2015-04-08 01:41:07 -050049static ulong timeout_ms = TIMEOUT;
50static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000051static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020052
53/*
54 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050055 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020056 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050057 * tftp_timeout_count_max, gives the number of such connection retries.
58 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020059 * positive. The globals are meant to be set (and restored) by code needing
60 * non-standard timeout behavior when initiating a TFTP transfer.
61 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050062ulong tftp_timeout_ms = TIMEOUT;
63int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020064
Remy Bohmeraafda382009-10-28 22:13:40 +010065enum {
66 TFTP_ERR_UNDEFINED = 0,
67 TFTP_ERR_FILE_NOT_FOUND = 1,
68 TFTP_ERR_ACCESS_DENIED = 2,
69 TFTP_ERR_DISK_FULL = 3,
70 TFTP_ERR_UNEXPECTED_OPCODE = 4,
71 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
72 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
Ravik Hasija08139212020-05-18 21:35:43 -070073 TFTP_ERR_OPTION_NEGOTIATION = 8,
Remy Bohmeraafda382009-10-28 22:13:40 +010074};
75
Joe Hershberger049a95a2015-04-08 01:41:01 -050076static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000077/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050078static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000079/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050080static int tftp_our_port;
81static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000082/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050083static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000084/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050085static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000086/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050087static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000088/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050089static ulong tftp_block_wrap_offset;
90static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010091static ulong tftp_load_addr;
92#ifdef CONFIG_LMB
93static ulong tftp_load_size;
94#endif
Robin Getz4fccb812009-08-20 10:50:20 -040095#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000096/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050097static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000098/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050099static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -0400100#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000101#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500102/* 1 if writing, else 0 */
103static int tftp_put_active;
104/* 1 if we have sent the last block */
105static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000106#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500107#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000108#endif
wdenk3f85ce22004-02-23 16:11:30 +0000109
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000110#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000111#define STATE_DATA 2
112#define STATE_TOO_LARGE 3
113#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000114#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000115#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000116#define STATE_SEND_WRQ 7
Ravik Hasija08139212020-05-18 21:35:43 -0700117#define STATE_INVALID_OPTION 8
wdenkfe8c2802002-11-03 00:38:21 +0000118
Luca Ceresoli2f094132011-05-14 05:49:56 +0000119/* default TFTP block size */
120#define TFTP_BLOCK_SIZE 512
121/* 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
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500141static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
Patrick Delaunay31d275b2020-04-22 14:18:26 +0200142static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500143
Simon Goldschmidta156c472019-01-14 22:38:22 +0100144static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000145{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500146 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenk3f85ce22004-02-23 16:11:30 +0000147 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100148 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000150 int i, rc = 0;
151
Luca Ceresolic718b142011-05-14 05:49:57 +0000152 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000153 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200154 if (flash_info[i].flash_id == FLASH_UNKNOWN)
155 continue;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100156 if (store_addr >= flash_info[i].start[0]) {
wdenkfe8c2802002-11-03 00:38:21 +0000157 rc = 1;
158 break;
159 }
160 }
161
162 if (rc) { /* Flash is destination for this packet */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100163 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000164 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000165 flash_perror(rc);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100166 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000167 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000168 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000170 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100171 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500172
Simon Goldschmidta156c472019-01-14 22:38:22 +0100173#ifdef CONFIG_LMB
Bin Mengca48cb42019-11-15 22:20:13 -0800174 ulong end_addr = tftp_load_addr + tftp_load_size;
175
176 if (!end_addr)
177 end_addr = ULONG_MAX;
178
Simon Goldschmidta156c472019-01-14 22:38:22 +0100179 if (store_addr < tftp_load_addr ||
Bin Mengca48cb42019-11-15 22:20:13 -0800180 store_addr + len > end_addr) {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100181 puts("\nTFTP error: ");
182 puts("trying to overwrite reserved memory...\n");
183 return -1;
184 }
185#endif
186 ptr = map_sysmem(store_addr, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500187 memcpy(ptr, src, len);
188 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000189 }
190
Joe Hershberger14111572015-04-08 01:41:02 -0500191 if (net_boot_file_size < newsize)
192 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100193
194 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000195}
196
Simon Glasse4cde2f2011-10-24 18:00:04 +0000197/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000198static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000199{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500200 tftp_prev_block = 0;
201 tftp_block_wrap = 0;
202 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000203#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500204 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000205#endif
206}
207
Simon Glass1fb7cd42011-10-24 18:00:07 +0000208#ifdef CONFIG_CMD_TFTPPUT
209/**
210 * Load the next block from memory to be sent over tftp.
211 *
212 * @param block Block number to send
213 * @param dst Destination buffer for data
214 * @param len Number of bytes in block (this one and every other)
215 * @return number of bytes loaded
216 */
217static int load_block(unsigned block, uchar *dst, unsigned len)
218{
219 /* We may want to get the final block from the previous set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500220 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000221 ulong tosend = len;
222
Joe Hershberger14111572015-04-08 01:41:02 -0500223 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700224 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Heinrich Schuchardt2bcc43b2020-02-22 08:43:40 +0100225 debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500226 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000227 return tosend;
228}
229#endif
230
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500231static void tftp_send(void);
232static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000233
234/**********************************************************************/
235
Simon Glassf5329bb2011-10-24 18:00:03 +0000236static void show_block_marker(void)
237{
Ravik Hasijade5468e2020-05-07 14:55:32 -0700238 ulong pos;
239
Simon Glassf5329bb2011-10-24 18:00:03 +0000240#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500241 if (tftp_tsize) {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700242 pos = tftp_cur_block * tftp_block_size +
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500243 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200244 if (pos > tftp_tsize)
245 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000246
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500247 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000248 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500249 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000250 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000251 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000252#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000253 {
Ravik Hasijade5468e2020-05-07 14:55:32 -0700254 pos = (tftp_cur_block - 1) +
255 (tftp_block_wrap * TFTP_SEQUENCE_SIZE);
256 if ((pos % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000257 putc('#');
Ravik Hasijade5468e2020-05-07 14:55:32 -0700258 else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000259 puts("\n\t ");
260 }
261}
262
Simon Glasse4cde2f2011-10-24 18:00:04 +0000263/**
264 * restart the current transfer due to an error
265 *
266 * @param msg Message to print for user
267 */
268static void restart(const char *msg)
269{
270 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500271 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000272}
273
274/*
275 * Check if the block number has wrapped, and update progress
276 *
277 * TODO: The egregious use of global variables in this file should be tidied.
278 */
279static void update_block_number(void)
280{
281 /*
282 * RFC1350 specifies that the first data packet will
283 * have sequence number 1. If we receive a sequence
284 * number of 0 this means that there was a wrap
285 * around of the (16 bit) counter.
286 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500287 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
288 tftp_block_wrap++;
289 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
290 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000291 }
Ravik Hasijade5468e2020-05-07 14:55:32 -0700292 show_block_marker();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000293}
294
Simon Glassf5329bb2011-10-24 18:00:03 +0000295/* The TFTP get or put is complete */
296static void tftp_complete(void)
297{
298#ifdef CONFIG_TFTP_TSIZE
299 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500300 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000301 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500302 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000303 }
Simon Glass8104f542014-10-10 07:30:21 -0600304 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500305 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000306#endif
Simon Glass85b19802012-10-11 13:57:36 +0000307 time_start = get_timer(time_start);
308 if (time_start > 0) {
309 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500310 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000311 time_start * 1000, "/s");
312 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000313 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000314 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000315}
316
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500317static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000318{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000319 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000320 uchar *xp;
321 int len = 0;
322 ushort *s;
Ravik Hasija08139212020-05-18 21:35:43 -0700323 bool err_pkt = false;
wdenkfe8c2802002-11-03 00:38:21 +0000324
325 /*
326 * We will always be sending some sort of packet, so
327 * cobble together the packet headers now.
328 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500329 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000330
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500331 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000332 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000333 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000334 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200335 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000336#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500337 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000338 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000339#else
340 *s++ = htons(TFTP_RRQ);
341#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200342 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000343 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000344 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000345 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000346 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000347 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000348 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500349 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400350 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000351 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400352#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500353 pkt += sprintf((char *)pkt, "tsize%c%u%c",
354 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400355#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500356 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000357 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500358 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000359 len = pkt - xp;
360 break;
361
wdenkfbe4b5c2003-10-06 21:55:32 +0000362 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000363
364 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500365 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000366 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200367 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000368 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500369 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000370 pkt = (uchar *)(s + 2);
371#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500372 if (tftp_put_active) {
373 int toload = tftp_block_size;
374 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000375
376 s[0] = htons(TFTP_DATA);
377 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500378 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000379 }
380#endif
wdenkfe8c2802002-11-03 00:38:21 +0000381 len = pkt - xp;
382 break;
383
384 case STATE_TOO_LARGE:
385 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200386 s = (ushort *)pkt;
387 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000388 *s++ = htons(3);
389
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200390 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000391 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000392 pkt += 14 /*strlen("File too large")*/ + 1;
393 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700394 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000395 break;
396
397 case STATE_BAD_MAGIC:
398 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200399 s = (ushort *)pkt;
400 *s++ = htons(TFTP_ERROR);
401 *s++ = htons(2);
402 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000403 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000404 pkt += 18 /*strlen("File has bad magic")*/ + 1;
405 len = pkt - xp;
Ravik Hasija08139212020-05-18 21:35:43 -0700406 err_pkt = true;
407 break;
408
409 case STATE_INVALID_OPTION:
410 xp = pkt;
411 s = (ushort *)pkt;
412 *s++ = htons(TFTP_ERROR);
413 *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION);
414 pkt = (uchar *)s;
415 strcpy((char *)pkt, "Option Negotiation Failed");
416 /* strlen("Option Negotiation Failed") + NULL*/
417 pkt += 25 + 1;
418 len = pkt - xp;
419 err_pkt = true;
wdenkfe8c2802002-11-03 00:38:21 +0000420 break;
421 }
422
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500423 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
424 tftp_remote_port, tftp_our_port, len);
Ravik Hasija08139212020-05-18 21:35:43 -0700425
426 if (err_pkt)
427 net_set_state(NETLOOP_FAIL);
wdenkfe8c2802002-11-03 00:38:21 +0000428}
429
Simon Glass39bccd22011-10-26 14:18:38 +0000430#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000431static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500432 struct in_addr sip, unsigned src, uchar *pkt,
433 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000434{
435 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
436 /* Oh dear the other end has gone away */
437 restart("TFTP server died");
438 }
439}
Simon Glass39bccd22011-10-26 14:18:38 +0000440#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000441
Joe Hershberger049a95a2015-04-08 01:41:01 -0500442static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
443 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000444{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600445 __be16 proto;
446 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200447 int i;
Ravik Hasija08139212020-05-18 21:35:43 -0700448 u16 timeout_val_rcvd;
wdenkfe8c2802002-11-03 00:38:21 +0000449
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500450 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000451 return;
wdenkfe8c2802002-11-03 00:38:21 +0000452 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500453 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
454 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000455 return;
wdenkfe8c2802002-11-03 00:38:21 +0000456
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000457 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000458 return;
wdenkfe8c2802002-11-03 00:38:21 +0000459 len -= 2;
460 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600461 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200462 proto = *s++;
463 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000464 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000465 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000466 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000467
468 case TFTP_ACK:
469#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500470 if (tftp_put_active) {
471 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000472 tftp_complete();
473 } else {
474 /*
475 * Move to the next block. We want our block
476 * count to wrap just like the other end!
477 */
478 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500479 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000480
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500481 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000482 update_block_number();
483 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500484 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000485 }
486 }
487#endif
488 break;
489
wdenkfe8c2802002-11-03 00:38:21 +0000490 default:
491 break;
492
Luca Ceresolie59e3562011-05-17 00:03:39 +0000493#ifdef CONFIG_CMD_TFTPSRV
494 case TFTP_WRQ:
495 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500496 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500497 tftp_remote_port = src;
498 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000499 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500500 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000501 break;
502#endif
503
wdenkfbe4b5c2003-10-06 21:55:32 +0000504 case TFTP_OACK:
Ravik Hasija08139212020-05-18 21:35:43 -0700505 debug("Got OACK: ");
506 for (i = 0; i < len; i++) {
507 if (pkt[i] == '\0')
508 debug(" ");
509 else
510 debug("%c", pkt[i]);
511 }
512 debug("\n");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500513 tftp_state = STATE_OACK;
514 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200515 /*
516 * Check for 'blksize' option.
517 * Careful: "i" is signed, "len" is unsigned, thus
518 * something like "len-8" may give a *huge* number
519 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000520 for (i = 0; i+8 < len; i++) {
Ravik Hasija08139212020-05-18 21:35:43 -0700521 if (strcasecmp((char *)pkt + i, "blksize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500522 tftp_block_size = (unsigned short)
523 simple_strtoul((char *)pkt + i + 8,
524 NULL, 10);
Ravik Hasija08139212020-05-18 21:35:43 -0700525 debug("Blocksize oack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500526 (char *)pkt + i + 8, tftp_block_size);
Ravik Hasija08139212020-05-18 21:35:43 -0700527 if (tftp_block_size > tftp_block_size_option) {
528 printf("Invalid blk size(=%d)\n",
529 tftp_block_size);
530 tftp_state = STATE_INVALID_OPTION;
531 }
532 }
533 if (strcasecmp((char *)pkt + i, "timeout") == 0) {
534 timeout_val_rcvd = (unsigned short)
535 simple_strtoul((char *)pkt + i + 8,
536 NULL, 10);
537 debug("Timeout oack: %s, %d\n",
538 (char *)pkt + i + 8, timeout_val_rcvd);
539 if (timeout_val_rcvd != (timeout_ms / 1000)) {
540 printf("Invalid timeout val(=%d s)\n",
541 timeout_val_rcvd);
542 tftp_state = STATE_INVALID_OPTION;
543 }
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200544 }
Robin Getz4fccb812009-08-20 10:50:20 -0400545#ifdef CONFIG_TFTP_TSIZE
Ravik Hasija08139212020-05-18 21:35:43 -0700546 if (strcasecmp((char *)pkt + i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500547 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000548 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400549 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500550 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400551 }
552#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500553 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000554#ifdef CONFIG_CMD_TFTPPUT
Ravik Hasija08139212020-05-18 21:35:43 -0700555 if (tftp_put_active && tftp_state == STATE_OACK) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000556 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500557 tftp_state = STATE_DATA;
558 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000559 }
560#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500561 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000562 break;
wdenkfe8c2802002-11-03 00:38:21 +0000563 case TFTP_DATA:
564 if (len < 2)
565 return;
566 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500567 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000568
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500569 if (tftp_state == STATE_SEND_RRQ)
Ravik Hasija08139212020-05-18 21:35:43 -0700570 debug("Server did not acknowledge any options!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000571
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500572 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
573 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000574 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500575 tftp_state = STATE_DATA;
576 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000577 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000578
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500579 if (tftp_cur_block != 1) { /* Assertion */
580 puts("\nTFTP error: ");
581 printf("First block is not block 1 (%ld)\n",
582 tftp_cur_block);
583 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500584 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000585 break;
586 }
587 }
588
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500589 if (tftp_cur_block == tftp_prev_block) {
590 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000591 break;
592 }
593
Ravik Hasijade5468e2020-05-07 14:55:32 -0700594 update_block_number();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500595 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200596 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500597 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000598
Simon Goldschmidta156c472019-01-14 22:38:22 +0100599 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
600 eth_halt();
601 net_set_state(NETLOOP_FAIL);
602 break;
603 }
wdenkfe8c2802002-11-03 00:38:21 +0000604
605 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000606 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000607 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000608 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500609 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000610
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500611 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000612 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000613 break;
614
615 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000616 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600617 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100618
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600619 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100620 case TFTP_ERR_FILE_NOT_FOUND:
621 case TFTP_ERR_ACCESS_DENIED:
622 puts("Not retrying...\n");
623 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000624 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100625 break;
626 case TFTP_ERR_UNDEFINED:
627 case TFTP_ERR_DISK_FULL:
628 case TFTP_ERR_UNEXPECTED_OPCODE:
629 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
630 case TFTP_ERR_FILE_ALREADY_EXISTS:
631 default:
632 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500633 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100634 break;
635 }
wdenkfe8c2802002-11-03 00:38:21 +0000636 break;
637 }
638}
639
640
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500641static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000642{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500643 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000644 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000645 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000646 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500647 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500648 if (tftp_state != STATE_RECV_WRQ)
649 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000650 }
651}
652
Simon Glassbb872dd2019-12-28 10:45:02 -0700653/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100654static int tftp_init_load_addr(void)
655{
656#ifdef CONFIG_LMB
657 struct lmb lmb;
658 phys_size_t max_size;
659
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100660 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100661
Simon Glassbb872dd2019-12-28 10:45:02 -0700662 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100663 if (!max_size)
664 return -1;
665
666 tftp_load_size = max_size;
667#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700668 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100669 return 0;
670}
wdenkfe8c2802002-11-03 00:38:21 +0000671
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500672void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000673{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200674#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200675 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200676
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100677 /*
678 * Allow the user to choose TFTP blocksize and timeout.
679 * TFTP protocol has a minimal timeout of 1 second.
680 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200681
Simon Glass00caae62017-08-03 12:22:12 -0600682 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000683 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500684 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100685
Simon Glass00caae62017-08-03 12:22:12 -0600686 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000687 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500688 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100689
Bin Mengaf2ca592015-08-27 22:25:51 -0700690 if (timeout_ms < 1000) {
691 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500692 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700693 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100694 }
695
Simon Glass00caae62017-08-03 12:22:12 -0600696 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200697 if (ep != NULL)
698 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
699
700 if (tftp_timeout_count_max < 0) {
701 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
702 tftp_timeout_count_max);
703 tftp_timeout_count_max = 0;
704 }
705#endif
706
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100707 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500708 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200709
Joe Hershberger049a95a2015-04-08 01:41:01 -0500710 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500711 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000712 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500713 net_ip.s_addr & 0xFF,
714 (net_ip.s_addr >> 8) & 0xFF,
715 (net_ip.s_addr >> 16) & 0xFF,
716 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100717
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300718 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
719 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000720
Luca Ceresolic718b142011-05-14 05:49:57 +0000721 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500722 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000723 }
724
Luca Ceresolic718b142011-05-14 05:49:57 +0000725 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000726 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000727#ifdef CONFIG_CMD_TFTPPUT
728 protocol == TFTPPUT ? "to" : "from",
729#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500730 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000731#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500732 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000733
734 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500735 if (net_gateway.s_addr && net_netmask.s_addr) {
736 struct in_addr our_net;
737 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000738
Joe Hershberger049a95a2015-04-08 01:41:01 -0500739 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
740 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
741 if (our_net.s_addr != remote_net.s_addr)
742 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000743 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000744 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000745
Luca Ceresolic718b142011-05-14 05:49:57 +0000746 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000747
Joe Hershberger14111572015-04-08 01:41:02 -0500748 if (net_boot_file_expected_size_in_blocks) {
749 printf(" Size is 0x%x Bytes = ",
750 net_boot_file_expected_size_in_blocks << 9);
751 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000752 }
753
Luca Ceresolic718b142011-05-14 05:49:57 +0000754 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000755#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500756 tftp_put_active = (protocol == TFTPPUT);
757 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700758 printf("Save address: 0x%lx\n", image_save_addr);
759 printf("Save size: 0x%lx\n", image_save_size);
760 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000761 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500762 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000763 new_transfer();
764 } else
765#endif
766 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100767 if (tftp_init_load_addr()) {
768 eth_halt();
769 net_set_state(NETLOOP_FAIL);
770 puts("\nTFTP error: ");
771 puts("trying to overwrite reserved memory...\n");
772 return;
773 }
774 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000775 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500776 tftp_state = STATE_SEND_RRQ;
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200777#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200778 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200779#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000780 }
wdenkfe8c2802002-11-03 00:38:21 +0000781
Simon Glass85b19802012-10-11 13:57:36 +0000782 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500783 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200784
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500785 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500786 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000787#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000788 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000789#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500790 tftp_remote_port = WELL_KNOWN_PORT;
791 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200792 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500793 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500794
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200795#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600796 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000797 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500798 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600799 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000800 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500801 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200802#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500803 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000804
wdenk73a8b272003-06-05 19:27:42 +0000805 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500806 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500807 /* Revert tftp_block_size to dflt */
808 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400809#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500810 tftp_tsize = 0;
811 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400812#endif
wdenk73a8b272003-06-05 19:27:42 +0000813
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500814 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000815}
816
Luca Ceresolie59e3562011-05-17 00:03:39 +0000817#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500818void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000819{
820 tftp_filename[0] = 0;
821
Simon Goldschmidta156c472019-01-14 22:38:22 +0100822 if (tftp_init_load_addr()) {
823 eth_halt();
824 net_set_state(NETLOOP_FAIL);
825 puts("\nTFTP error: trying to overwrite reserved memory...\n");
826 return;
827 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000828 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500829 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100830 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000831
832 puts("Loading: *\b");
833
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200834 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500835 timeout_count = 0;
836 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500837 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000838
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500839 /* Revert tftp_block_size to dflt */
840 tftp_block_size = TFTP_BLOCK_SIZE;
841 tftp_cur_block = 0;
842 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000843
844#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500845 tftp_tsize = 0;
846 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000847#endif
848
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500849 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500850 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500851
852 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500853 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000854}
855#endif /* CONFIG_CMD_TFTPSRV */
856