blob: 02401898c5566c089c8d35158c848c7e8e3275e3 [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>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050014#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000015#include <net.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020016#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000017#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000018#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
19#include <flash.h>
20#endif
wdenkfe8c2802002-11-03 00:38:21 +000021
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
wdenkfe8c2802002-11-03 00:38:21 +000028#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000029/* # of timeouts before giving up */
Bin Mengaf2ca592015-08-27 22:25:51 -070030# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000031#else
32# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
33#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000034/* Number of "loading" hashes per line (for checking the image size) */
35#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000036
37/*
38 * TFTP operations.
39 */
40#define TFTP_RRQ 1
41#define TFTP_WRQ 2
42#define TFTP_DATA 3
43#define TFTP_ACK 4
44#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000045#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000046
Joe Hershberger8885c5f2015-04-08 01:41:07 -050047static ulong timeout_ms = TIMEOUT;
48static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000049static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020050
51/*
52 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050053 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020054 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050055 * tftp_timeout_count_max, gives the number of such connection retries.
56 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020057 * positive. The globals are meant to be set (and restored) by code needing
58 * non-standard timeout behavior when initiating a TFTP transfer.
59 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050060ulong tftp_timeout_ms = TIMEOUT;
61int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020062
Remy Bohmeraafda382009-10-28 22:13:40 +010063enum {
64 TFTP_ERR_UNDEFINED = 0,
65 TFTP_ERR_FILE_NOT_FOUND = 1,
66 TFTP_ERR_ACCESS_DENIED = 2,
67 TFTP_ERR_DISK_FULL = 3,
68 TFTP_ERR_UNEXPECTED_OPCODE = 4,
69 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
70 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
71};
72
Joe Hershberger049a95a2015-04-08 01:41:01 -050073static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000074/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050075static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000076/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050077static int tftp_our_port;
78static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000079/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050080static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000081/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050082static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000083/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050084static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000085/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050086static ulong tftp_block_wrap_offset;
87static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010088static ulong tftp_load_addr;
89#ifdef CONFIG_LMB
90static ulong tftp_load_size;
91#endif
Robin Getz4fccb812009-08-20 10:50:20 -040092#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000093/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050094static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000095/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050096static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040097#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +000098#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -050099/* 1 if writing, else 0 */
100static int tftp_put_active;
101/* 1 if we have sent the last block */
102static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000103#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500104#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000105#endif
wdenk3f85ce22004-02-23 16:11:30 +0000106
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000107#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000108#define STATE_DATA 2
109#define STATE_TOO_LARGE 3
110#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000111#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000112#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000113#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000114
Luca Ceresoli2f094132011-05-14 05:49:56 +0000115/* default TFTP block size */
116#define TFTP_BLOCK_SIZE 512
117/* sequence number is 16 bit */
118#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000119
wdenkfe8c2802002-11-03 00:38:21 +0000120#define DEFAULT_NAME_LEN (8 + 4 + 1)
121static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100122
123#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
124#define MAX_LEN 128
125#else
126#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
127#endif
128
129static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000130
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200131/* 512 is poor choice for ethernet, MTU is typically 1500.
132 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500133 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200134 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500135 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200136#ifdef CONFIG_TFTP_BLOCKSIZE
137#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
138#else
David Updegraff53a5c422007-06-11 10:41:07 -0500139#define TFTP_MTU_BLOCKSIZE 1468
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200140#endif
141
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500142static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
143static unsigned short tftp_block_size_option = TFTP_MTU_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500144
Simon Goldschmidta156c472019-01-14 22:38:22 +0100145static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000146{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500147 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenk3f85ce22004-02-23 16:11:30 +0000148 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100149 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200150#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000151 int i, rc = 0;
152
Luca Ceresolic718b142011-05-14 05:49:57 +0000153 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000154 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200155 if (flash_info[i].flash_id == FLASH_UNKNOWN)
156 continue;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100157 if (store_addr >= flash_info[i].start[0]) {
wdenkfe8c2802002-11-03 00:38:21 +0000158 rc = 1;
159 break;
160 }
161 }
162
163 if (rc) { /* Flash is destination for this packet */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100164 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000165 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000166 flash_perror(rc);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100167 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000168 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000169 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200170#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000171 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100172 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500173
Simon Goldschmidta156c472019-01-14 22:38:22 +0100174#ifdef CONFIG_LMB
Bin Mengca48cb42019-11-15 22:20:13 -0800175 ulong end_addr = tftp_load_addr + tftp_load_size;
176
177 if (!end_addr)
178 end_addr = ULONG_MAX;
179
Simon Goldschmidta156c472019-01-14 22:38:22 +0100180 if (store_addr < tftp_load_addr ||
Bin Mengca48cb42019-11-15 22:20:13 -0800181 store_addr + len > end_addr) {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100182 puts("\nTFTP error: ");
183 puts("trying to overwrite reserved memory...\n");
184 return -1;
185 }
186#endif
187 ptr = map_sysmem(store_addr, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500188 memcpy(ptr, src, len);
189 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000190 }
191
Joe Hershberger14111572015-04-08 01:41:02 -0500192 if (net_boot_file_size < newsize)
193 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100194
195 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000196}
197
Simon Glasse4cde2f2011-10-24 18:00:04 +0000198/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000199static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000200{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500201 tftp_prev_block = 0;
202 tftp_block_wrap = 0;
203 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000204#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500205 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000206#endif
207}
208
Simon Glass1fb7cd42011-10-24 18:00:07 +0000209#ifdef CONFIG_CMD_TFTPPUT
210/**
211 * Load the next block from memory to be sent over tftp.
212 *
213 * @param block Block number to send
214 * @param dst Destination buffer for data
215 * @param len Number of bytes in block (this one and every other)
216 * @return number of bytes loaded
217 */
218static int load_block(unsigned block, uchar *dst, unsigned len)
219{
220 /* We may want to get the final block from the previous set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500221 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000222 ulong tosend = len;
223
Joe Hershberger14111572015-04-08 01:41:02 -0500224 tosend = min(net_boot_file_size - offset, tosend);
Simon Glassbb872dd2019-12-28 10:45:02 -0700225 (void)memcpy(dst, (void *)(image_save_addr + offset), tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000226 debug("%s: block=%d, offset=%ld, len=%d, tosend=%ld\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500227 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000228 return tosend;
229}
230#endif
231
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500232static void tftp_send(void);
233static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000234
235/**********************************************************************/
236
Simon Glassf5329bb2011-10-24 18:00:03 +0000237static void show_block_marker(void)
238{
239#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500240 if (tftp_tsize) {
241 ulong pos = tftp_cur_block * tftp_block_size +
242 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200243 if (pos > tftp_tsize)
244 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000245
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500246 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000247 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500248 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000249 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000250 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000251#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000252 {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500253 if (((tftp_cur_block - 1) % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000254 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500255 else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000256 puts("\n\t ");
257 }
258}
259
Simon Glasse4cde2f2011-10-24 18:00:04 +0000260/**
261 * restart the current transfer due to an error
262 *
263 * @param msg Message to print for user
264 */
265static void restart(const char *msg)
266{
267 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500268 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000269}
270
271/*
272 * Check if the block number has wrapped, and update progress
273 *
274 * TODO: The egregious use of global variables in this file should be tidied.
275 */
276static void update_block_number(void)
277{
278 /*
279 * RFC1350 specifies that the first data packet will
280 * have sequence number 1. If we receive a sequence
281 * number of 0 this means that there was a wrap
282 * around of the (16 bit) counter.
283 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500284 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
285 tftp_block_wrap++;
286 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
287 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000288 } else {
289 show_block_marker();
290 }
291}
292
Simon Glassf5329bb2011-10-24 18:00:03 +0000293/* The TFTP get or put is complete */
294static void tftp_complete(void)
295{
296#ifdef CONFIG_TFTP_TSIZE
297 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500298 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000299 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500300 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000301 }
Simon Glass8104f542014-10-10 07:30:21 -0600302 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500303 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000304#endif
Simon Glass85b19802012-10-11 13:57:36 +0000305 time_start = get_timer(time_start);
306 if (time_start > 0) {
307 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500308 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000309 time_start * 1000, "/s");
310 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000311 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000312 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000313}
314
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500315static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000316{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000317 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000318 uchar *xp;
319 int len = 0;
320 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000321
322 /*
323 * We will always be sending some sort of packet, so
324 * cobble together the packet headers now.
325 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500326 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000327
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500328 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000329 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000330 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000331 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200332 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000333#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500334 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000335 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000336#else
337 *s++ = htons(TFTP_RRQ);
338#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200339 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000340 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000341 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000342 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000343 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000344 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000345 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500346 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400347 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000348 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400349#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500350 pkt += sprintf((char *)pkt, "tsize%c%u%c",
351 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400352#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500353 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000354 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500355 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000356 len = pkt - xp;
357 break;
358
wdenkfbe4b5c2003-10-06 21:55:32 +0000359 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000360
361 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500362 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000363 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200364 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000365 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500366 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000367 pkt = (uchar *)(s + 2);
368#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500369 if (tftp_put_active) {
370 int toload = tftp_block_size;
371 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000372
373 s[0] = htons(TFTP_DATA);
374 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500375 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000376 }
377#endif
wdenkfe8c2802002-11-03 00:38:21 +0000378 len = pkt - xp;
379 break;
380
381 case STATE_TOO_LARGE:
382 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200383 s = (ushort *)pkt;
384 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000385 *s++ = htons(3);
386
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200387 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000388 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000389 pkt += 14 /*strlen("File too large")*/ + 1;
390 len = pkt - xp;
391 break;
392
393 case STATE_BAD_MAGIC:
394 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200395 s = (ushort *)pkt;
396 *s++ = htons(TFTP_ERROR);
397 *s++ = htons(2);
398 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000399 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000400 pkt += 18 /*strlen("File has bad magic")*/ + 1;
401 len = pkt - xp;
402 break;
403 }
404
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500405 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
406 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000407}
408
Simon Glass39bccd22011-10-26 14:18:38 +0000409#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000410static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500411 struct in_addr sip, unsigned src, uchar *pkt,
412 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000413{
414 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
415 /* Oh dear the other end has gone away */
416 restart("TFTP server died");
417 }
418}
Simon Glass39bccd22011-10-26 14:18:38 +0000419#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000420
Joe Hershberger049a95a2015-04-08 01:41:01 -0500421static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
422 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000423{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600424 __be16 proto;
425 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200426 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000427
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500428 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000429 return;
wdenkfe8c2802002-11-03 00:38:21 +0000430 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500431 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
432 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000433 return;
wdenkfe8c2802002-11-03 00:38:21 +0000434
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000435 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000436 return;
wdenkfe8c2802002-11-03 00:38:21 +0000437 len -= 2;
438 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600439 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200440 proto = *s++;
441 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000442 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000443 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000444 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000445
446 case TFTP_ACK:
447#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500448 if (tftp_put_active) {
449 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000450 tftp_complete();
451 } else {
452 /*
453 * Move to the next block. We want our block
454 * count to wrap just like the other end!
455 */
456 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500457 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000458
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500459 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000460 update_block_number();
461 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500462 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000463 }
464 }
465#endif
466 break;
467
wdenkfe8c2802002-11-03 00:38:21 +0000468 default:
469 break;
470
Luca Ceresolie59e3562011-05-17 00:03:39 +0000471#ifdef CONFIG_CMD_TFTPSRV
472 case TFTP_WRQ:
473 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500474 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500475 tftp_remote_port = src;
476 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000477 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500478 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000479 break;
480#endif
481
wdenkfbe4b5c2003-10-06 21:55:32 +0000482 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200483 debug("Got OACK: %s %s\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500484 pkt, pkt + strlen((char *)pkt) + 1);
485 tftp_state = STATE_OACK;
486 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200487 /*
488 * Check for 'blksize' option.
489 * Careful: "i" is signed, "len" is unsigned, thus
490 * something like "len-8" may give a *huge* number
491 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000492 for (i = 0; i+8 < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500493 if (strcmp((char *)pkt + i, "blksize") == 0) {
494 tftp_block_size = (unsigned short)
495 simple_strtoul((char *)pkt + i + 8,
496 NULL, 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400497 debug("Blocksize ack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500498 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200499 }
Robin Getz4fccb812009-08-20 10:50:20 -0400500#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000501 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500502 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000503 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400504 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500505 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400506 }
507#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500508 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000509#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500510 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000511 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500512 tftp_state = STATE_DATA;
513 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000514 }
515#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500516 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000517 break;
wdenkfe8c2802002-11-03 00:38:21 +0000518 case TFTP_DATA:
519 if (len < 2)
520 return;
521 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500522 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000523
Simon Glasse4cde2f2011-10-24 18:00:04 +0000524 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000525
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500526 if (tftp_state == STATE_SEND_RRQ)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400527 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000528
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500529 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
530 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000531 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500532 tftp_state = STATE_DATA;
533 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000534 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000535
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500536 if (tftp_cur_block != 1) { /* Assertion */
537 puts("\nTFTP error: ");
538 printf("First block is not block 1 (%ld)\n",
539 tftp_cur_block);
540 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500541 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000542 break;
543 }
544 }
545
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500546 if (tftp_cur_block == tftp_prev_block) {
547 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000548 break;
549 }
550
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500551 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200552 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500553 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000554
Simon Goldschmidta156c472019-01-14 22:38:22 +0100555 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
556 eth_halt();
557 net_set_state(NETLOOP_FAIL);
558 break;
559 }
wdenkfe8c2802002-11-03 00:38:21 +0000560
561 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000562 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000563 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000564 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500565 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000566
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500567 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000568 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000569 break;
570
571 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000572 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600573 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100574
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600575 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100576 case TFTP_ERR_FILE_NOT_FOUND:
577 case TFTP_ERR_ACCESS_DENIED:
578 puts("Not retrying...\n");
579 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000580 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100581 break;
582 case TFTP_ERR_UNDEFINED:
583 case TFTP_ERR_DISK_FULL:
584 case TFTP_ERR_UNEXPECTED_OPCODE:
585 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
586 case TFTP_ERR_FILE_ALREADY_EXISTS:
587 default:
588 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500589 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100590 break;
591 }
wdenkfe8c2802002-11-03 00:38:21 +0000592 break;
593 }
594}
595
596
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500597static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000598{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500599 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000600 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000601 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000602 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500603 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500604 if (tftp_state != STATE_RECV_WRQ)
605 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000606 }
607}
608
Simon Glassbb872dd2019-12-28 10:45:02 -0700609/* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100610static int tftp_init_load_addr(void)
611{
612#ifdef CONFIG_LMB
613 struct lmb lmb;
614 phys_size_t max_size;
615
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100616 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100617
Simon Glassbb872dd2019-12-28 10:45:02 -0700618 max_size = lmb_get_free_size(&lmb, image_load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100619 if (!max_size)
620 return -1;
621
622 tftp_load_size = max_size;
623#endif
Simon Glassbb872dd2019-12-28 10:45:02 -0700624 tftp_load_addr = image_load_addr;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100625 return 0;
626}
wdenkfe8c2802002-11-03 00:38:21 +0000627
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500628void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000629{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200630#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200631 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200632
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100633 /*
634 * Allow the user to choose TFTP blocksize and timeout.
635 * TFTP protocol has a minimal timeout of 1 second.
636 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200637
Simon Glass00caae62017-08-03 12:22:12 -0600638 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000639 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500640 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100641
Simon Glass00caae62017-08-03 12:22:12 -0600642 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000643 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500644 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100645
Bin Mengaf2ca592015-08-27 22:25:51 -0700646 if (timeout_ms < 1000) {
647 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500648 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700649 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100650 }
651
Simon Glass00caae62017-08-03 12:22:12 -0600652 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200653 if (ep != NULL)
654 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
655
656 if (tftp_timeout_count_max < 0) {
657 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
658 tftp_timeout_count_max);
659 tftp_timeout_count_max = 0;
660 }
661#endif
662
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100663 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500664 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200665
Joe Hershberger049a95a2015-04-08 01:41:01 -0500666 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500667 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000668 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500669 net_ip.s_addr & 0xFF,
670 (net_ip.s_addr >> 8) & 0xFF,
671 (net_ip.s_addr >> 16) & 0xFF,
672 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100673
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300674 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
675 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000676
Luca Ceresolic718b142011-05-14 05:49:57 +0000677 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500678 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000679 }
680
Luca Ceresolic718b142011-05-14 05:49:57 +0000681 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000682 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000683#ifdef CONFIG_CMD_TFTPPUT
684 protocol == TFTPPUT ? "to" : "from",
685#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500686 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000687#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500688 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000689
690 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500691 if (net_gateway.s_addr && net_netmask.s_addr) {
692 struct in_addr our_net;
693 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000694
Joe Hershberger049a95a2015-04-08 01:41:01 -0500695 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
696 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
697 if (our_net.s_addr != remote_net.s_addr)
698 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000699 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000700 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000701
Luca Ceresolic718b142011-05-14 05:49:57 +0000702 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000703
Joe Hershberger14111572015-04-08 01:41:02 -0500704 if (net_boot_file_expected_size_in_blocks) {
705 printf(" Size is 0x%x Bytes = ",
706 net_boot_file_expected_size_in_blocks << 9);
707 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000708 }
709
Luca Ceresolic718b142011-05-14 05:49:57 +0000710 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000711#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500712 tftp_put_active = (protocol == TFTPPUT);
713 if (tftp_put_active) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700714 printf("Save address: 0x%lx\n", image_save_addr);
715 printf("Save size: 0x%lx\n", image_save_size);
716 net_boot_file_size = image_save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000717 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500718 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000719 new_transfer();
720 } else
721#endif
722 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100723 if (tftp_init_load_addr()) {
724 eth_halt();
725 net_set_state(NETLOOP_FAIL);
726 puts("\nTFTP error: ");
727 puts("trying to overwrite reserved memory...\n");
728 return;
729 }
730 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000731 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500732 tftp_state = STATE_SEND_RRQ;
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200733#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200734 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200735#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000736 }
wdenkfe8c2802002-11-03 00:38:21 +0000737
Simon Glass85b19802012-10-11 13:57:36 +0000738 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500739 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200740
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500741 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500742 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000743#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000744 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000745#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500746 tftp_remote_port = WELL_KNOWN_PORT;
747 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200748 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500749 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500750
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200751#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600752 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000753 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500754 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600755 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000756 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500757 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200758#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500759 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000760
wdenk73a8b272003-06-05 19:27:42 +0000761 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500762 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500763 /* Revert tftp_block_size to dflt */
764 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400765#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500766 tftp_tsize = 0;
767 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400768#endif
wdenk73a8b272003-06-05 19:27:42 +0000769
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500770 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000771}
772
Luca Ceresolie59e3562011-05-17 00:03:39 +0000773#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500774void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000775{
776 tftp_filename[0] = 0;
777
Simon Goldschmidta156c472019-01-14 22:38:22 +0100778 if (tftp_init_load_addr()) {
779 eth_halt();
780 net_set_state(NETLOOP_FAIL);
781 puts("\nTFTP error: trying to overwrite reserved memory...\n");
782 return;
783 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000784 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500785 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100786 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000787
788 puts("Loading: *\b");
789
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200790 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500791 timeout_count = 0;
792 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500793 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000794
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500795 /* Revert tftp_block_size to dflt */
796 tftp_block_size = TFTP_BLOCK_SIZE;
797 tftp_cur_block = 0;
798 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000799
800#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500801 tftp_tsize = 0;
802 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000803#endif
804
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500805 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500806 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500807
808 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500809 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000810}
811#endif /* CONFIG_CMD_TFTPSRV */
812