blob: 34488b76c8449bfadcec17000da44e41181d9f12 [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>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050012#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000013#include <net.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020014#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000015#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000016#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
17#include <flash.h>
18#endif
wdenkfe8c2802002-11-03 00:38:21 +000019
Simon Goldschmidta156c472019-01-14 22:38:22 +010020DECLARE_GLOBAL_DATA_PTR;
21
Luca Ceresoli2f094132011-05-14 05:49:56 +000022/* Well known TFTP port # */
23#define WELL_KNOWN_PORT 69
24/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070025#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000026#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000027/* # of timeouts before giving up */
Bin Mengaf2ca592015-08-27 22:25:51 -070028# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000029#else
30# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
31#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000032/* Number of "loading" hashes per line (for checking the image size) */
33#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000034
35/*
36 * TFTP operations.
37 */
38#define TFTP_RRQ 1
39#define TFTP_WRQ 2
40#define TFTP_DATA 3
41#define TFTP_ACK 4
42#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000043#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000044
Joe Hershberger8885c5f2015-04-08 01:41:07 -050045static ulong timeout_ms = TIMEOUT;
46static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000047static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020048
49/*
50 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050051 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020052 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050053 * tftp_timeout_count_max, gives the number of such connection retries.
54 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020055 * positive. The globals are meant to be set (and restored) by code needing
56 * non-standard timeout behavior when initiating a TFTP transfer.
57 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050058ulong tftp_timeout_ms = TIMEOUT;
59int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020060
Remy Bohmeraafda382009-10-28 22:13:40 +010061enum {
62 TFTP_ERR_UNDEFINED = 0,
63 TFTP_ERR_FILE_NOT_FOUND = 1,
64 TFTP_ERR_ACCESS_DENIED = 2,
65 TFTP_ERR_DISK_FULL = 3,
66 TFTP_ERR_UNEXPECTED_OPCODE = 4,
67 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
68 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
69};
70
Joe Hershberger049a95a2015-04-08 01:41:01 -050071static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000072/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050073static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000074/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050075static int tftp_our_port;
76static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000077/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050078static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000079/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050080static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000081/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050082static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000083/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050084static ulong tftp_block_wrap_offset;
85static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010086static ulong tftp_load_addr;
87#ifdef CONFIG_LMB
88static ulong tftp_load_size;
89#endif
Robin Getz4fccb812009-08-20 10:50:20 -040090#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000091/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050092static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000093/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050094static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040095#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +000096#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -050097/* 1 if writing, else 0 */
98static int tftp_put_active;
99/* 1 if we have sent the last block */
100static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000101#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500102#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000103#endif
wdenk3f85ce22004-02-23 16:11:30 +0000104
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000105#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000106#define STATE_DATA 2
107#define STATE_TOO_LARGE 3
108#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000109#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000110#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000111#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000112
Luca Ceresoli2f094132011-05-14 05:49:56 +0000113/* default TFTP block size */
114#define TFTP_BLOCK_SIZE 512
115/* sequence number is 16 bit */
116#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000117
wdenkfe8c2802002-11-03 00:38:21 +0000118#define DEFAULT_NAME_LEN (8 + 4 + 1)
119static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100120
121#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
122#define MAX_LEN 128
123#else
124#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
125#endif
126
127static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000128
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200129/* 512 is poor choice for ethernet, MTU is typically 1500.
130 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500131 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200132 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500133 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200134#ifdef CONFIG_TFTP_BLOCKSIZE
135#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
136#else
David Updegraff53a5c422007-06-11 10:41:07 -0500137#define TFTP_MTU_BLOCKSIZE 1468
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200138#endif
139
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500140static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
141static unsigned short tftp_block_size_option = TFTP_MTU_BLOCKSIZE;
David Updegraff53a5c422007-06-11 10:41:07 -0500142
Simon Goldschmidta156c472019-01-14 22:38:22 +0100143static inline int store_block(int block, uchar *src, unsigned int len)
wdenkfe8c2802002-11-03 00:38:21 +0000144{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500145 ulong offset = block * tftp_block_size + tftp_block_wrap_offset;
wdenk3f85ce22004-02-23 16:11:30 +0000146 ulong newsize = offset + len;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100147 ulong store_addr = tftp_load_addr + offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200148#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkfe8c2802002-11-03 00:38:21 +0000149 int i, rc = 0;
150
Luca Ceresolic718b142011-05-14 05:49:57 +0000151 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkfe8c2802002-11-03 00:38:21 +0000152 /* start address in flash? */
Jochen Friedrichbe1b0d22008-09-02 11:24:59 +0200153 if (flash_info[i].flash_id == FLASH_UNKNOWN)
154 continue;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100155 if (store_addr >= flash_info[i].start[0]) {
wdenkfe8c2802002-11-03 00:38:21 +0000156 rc = 1;
157 break;
158 }
159 }
160
161 if (rc) { /* Flash is destination for this packet */
Simon Goldschmidta156c472019-01-14 22:38:22 +0100162 rc = flash_write((char *)src, store_addr, len);
wdenkfe8c2802002-11-03 00:38:21 +0000163 if (rc) {
Luca Ceresolic718b142011-05-14 05:49:57 +0000164 flash_perror(rc);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100165 return rc;
wdenkfe8c2802002-11-03 00:38:21 +0000166 }
Joe Hershberger13dfe942012-05-15 08:59:12 +0000167 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200168#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
wdenkfe8c2802002-11-03 00:38:21 +0000169 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100170 void *ptr;
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500171
Simon Goldschmidta156c472019-01-14 22:38:22 +0100172#ifdef CONFIG_LMB
173 if (store_addr < tftp_load_addr ||
174 store_addr + len > tftp_load_addr + tftp_load_size) {
175 puts("\nTFTP error: ");
176 puts("trying to overwrite reserved memory...\n");
177 return -1;
178 }
179#endif
180 ptr = map_sysmem(store_addr, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500181 memcpy(ptr, src, len);
182 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000183 }
184
Joe Hershberger14111572015-04-08 01:41:02 -0500185 if (net_boot_file_size < newsize)
186 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100187
188 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000189}
190
Simon Glasse4cde2f2011-10-24 18:00:04 +0000191/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000192static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000193{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500194 tftp_prev_block = 0;
195 tftp_block_wrap = 0;
196 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000197#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500198 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000199#endif
200}
201
Simon Glass1fb7cd42011-10-24 18:00:07 +0000202#ifdef CONFIG_CMD_TFTPPUT
203/**
204 * Load the next block from memory to be sent over tftp.
205 *
206 * @param block Block number to send
207 * @param dst Destination buffer for data
208 * @param len Number of bytes in block (this one and every other)
209 * @return number of bytes loaded
210 */
211static int load_block(unsigned block, uchar *dst, unsigned len)
212{
213 /* We may want to get the final block from the previous set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500214 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000215 ulong tosend = len;
216
Joe Hershberger14111572015-04-08 01:41:02 -0500217 tosend = min(net_boot_file_size - offset, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000218 (void)memcpy(dst, (void *)(save_addr + offset), tosend);
219 debug("%s: block=%d, offset=%ld, len=%d, tosend=%ld\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500220 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000221 return tosend;
222}
223#endif
224
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500225static void tftp_send(void);
226static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000227
228/**********************************************************************/
229
Simon Glassf5329bb2011-10-24 18:00:03 +0000230static void show_block_marker(void)
231{
232#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500233 if (tftp_tsize) {
234 ulong pos = tftp_cur_block * tftp_block_size +
235 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200236 if (pos > tftp_tsize)
237 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000238
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500239 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000240 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500241 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000242 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000243 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000244#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000245 {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500246 if (((tftp_cur_block - 1) % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000247 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500248 else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000249 puts("\n\t ");
250 }
251}
252
Simon Glasse4cde2f2011-10-24 18:00:04 +0000253/**
254 * restart the current transfer due to an error
255 *
256 * @param msg Message to print for user
257 */
258static void restart(const char *msg)
259{
260 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500261 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000262}
263
264/*
265 * Check if the block number has wrapped, and update progress
266 *
267 * TODO: The egregious use of global variables in this file should be tidied.
268 */
269static void update_block_number(void)
270{
271 /*
272 * RFC1350 specifies that the first data packet will
273 * have sequence number 1. If we receive a sequence
274 * number of 0 this means that there was a wrap
275 * around of the (16 bit) counter.
276 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500277 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
278 tftp_block_wrap++;
279 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
280 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000281 } else {
282 show_block_marker();
283 }
284}
285
Simon Glassf5329bb2011-10-24 18:00:03 +0000286/* The TFTP get or put is complete */
287static void tftp_complete(void)
288{
289#ifdef CONFIG_TFTP_TSIZE
290 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500291 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000292 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500293 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000294 }
Simon Glass8104f542014-10-10 07:30:21 -0600295 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500296 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000297#endif
Simon Glass85b19802012-10-11 13:57:36 +0000298 time_start = get_timer(time_start);
299 if (time_start > 0) {
300 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500301 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000302 time_start * 1000, "/s");
303 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000304 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000305 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000306}
307
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500308static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000309{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000310 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000311 uchar *xp;
312 int len = 0;
313 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000314
315 /*
316 * We will always be sending some sort of packet, so
317 * cobble together the packet headers now.
318 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500319 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000320
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500321 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000322 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000323 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000324 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200325 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000326#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500327 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000328 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000329#else
330 *s++ = htons(TFTP_RRQ);
331#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200332 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000333 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000334 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000335 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000336 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000337 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000338 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500339 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400340 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000341 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400342#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500343 pkt += sprintf((char *)pkt, "tsize%c%u%c",
344 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400345#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500346 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000347 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500348 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000349 len = pkt - xp;
350 break;
351
wdenkfbe4b5c2003-10-06 21:55:32 +0000352 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000353
354 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500355 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000356 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200357 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000358 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500359 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000360 pkt = (uchar *)(s + 2);
361#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500362 if (tftp_put_active) {
363 int toload = tftp_block_size;
364 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000365
366 s[0] = htons(TFTP_DATA);
367 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500368 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000369 }
370#endif
wdenkfe8c2802002-11-03 00:38:21 +0000371 len = pkt - xp;
372 break;
373
374 case STATE_TOO_LARGE:
375 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200376 s = (ushort *)pkt;
377 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000378 *s++ = htons(3);
379
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200380 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000381 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000382 pkt += 14 /*strlen("File too large")*/ + 1;
383 len = pkt - xp;
384 break;
385
386 case STATE_BAD_MAGIC:
387 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200388 s = (ushort *)pkt;
389 *s++ = htons(TFTP_ERROR);
390 *s++ = htons(2);
391 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000392 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000393 pkt += 18 /*strlen("File has bad magic")*/ + 1;
394 len = pkt - xp;
395 break;
396 }
397
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500398 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
399 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000400}
401
Simon Glass39bccd22011-10-26 14:18:38 +0000402#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000403static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500404 struct in_addr sip, unsigned src, uchar *pkt,
405 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000406{
407 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
408 /* Oh dear the other end has gone away */
409 restart("TFTP server died");
410 }
411}
Simon Glass39bccd22011-10-26 14:18:38 +0000412#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000413
Joe Hershberger049a95a2015-04-08 01:41:01 -0500414static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
415 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000416{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600417 __be16 proto;
418 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200419 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000420
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500421 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000422 return;
wdenkfe8c2802002-11-03 00:38:21 +0000423 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500424 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
425 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000426 return;
wdenkfe8c2802002-11-03 00:38:21 +0000427
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000428 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000429 return;
wdenkfe8c2802002-11-03 00:38:21 +0000430 len -= 2;
431 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600432 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200433 proto = *s++;
434 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000435 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000436 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000437 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000438
439 case TFTP_ACK:
440#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500441 if (tftp_put_active) {
442 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000443 tftp_complete();
444 } else {
445 /*
446 * Move to the next block. We want our block
447 * count to wrap just like the other end!
448 */
449 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500450 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000451
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500452 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000453 update_block_number();
454 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500455 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000456 }
457 }
458#endif
459 break;
460
wdenkfe8c2802002-11-03 00:38:21 +0000461 default:
462 break;
463
Luca Ceresolie59e3562011-05-17 00:03:39 +0000464#ifdef CONFIG_CMD_TFTPSRV
465 case TFTP_WRQ:
466 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500467 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500468 tftp_remote_port = src;
469 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000470 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500471 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000472 break;
473#endif
474
wdenkfbe4b5c2003-10-06 21:55:32 +0000475 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200476 debug("Got OACK: %s %s\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500477 pkt, pkt + strlen((char *)pkt) + 1);
478 tftp_state = STATE_OACK;
479 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200480 /*
481 * Check for 'blksize' option.
482 * Careful: "i" is signed, "len" is unsigned, thus
483 * something like "len-8" may give a *huge* number
484 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000485 for (i = 0; i+8 < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500486 if (strcmp((char *)pkt + i, "blksize") == 0) {
487 tftp_block_size = (unsigned short)
488 simple_strtoul((char *)pkt + i + 8,
489 NULL, 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400490 debug("Blocksize ack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500491 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200492 }
Robin Getz4fccb812009-08-20 10:50:20 -0400493#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000494 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500495 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000496 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400497 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500498 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400499 }
500#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500501 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000502#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500503 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000504 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500505 tftp_state = STATE_DATA;
506 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000507 }
508#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500509 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000510 break;
wdenkfe8c2802002-11-03 00:38:21 +0000511 case TFTP_DATA:
512 if (len < 2)
513 return;
514 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500515 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000516
Simon Glasse4cde2f2011-10-24 18:00:04 +0000517 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000518
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500519 if (tftp_state == STATE_SEND_RRQ)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400520 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000521
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500522 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
523 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000524 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500525 tftp_state = STATE_DATA;
526 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000527 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000528
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500529 if (tftp_cur_block != 1) { /* Assertion */
530 puts("\nTFTP error: ");
531 printf("First block is not block 1 (%ld)\n",
532 tftp_cur_block);
533 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500534 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000535 break;
536 }
537 }
538
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500539 if (tftp_cur_block == tftp_prev_block) {
540 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000541 break;
542 }
543
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500544 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200545 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500546 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000547
Simon Goldschmidta156c472019-01-14 22:38:22 +0100548 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
549 eth_halt();
550 net_set_state(NETLOOP_FAIL);
551 break;
552 }
wdenkfe8c2802002-11-03 00:38:21 +0000553
554 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000555 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000556 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000557 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500558 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000559
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500560 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000561 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000562 break;
563
564 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000565 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600566 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100567
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600568 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100569 case TFTP_ERR_FILE_NOT_FOUND:
570 case TFTP_ERR_ACCESS_DENIED:
571 puts("Not retrying...\n");
572 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000573 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100574 break;
575 case TFTP_ERR_UNDEFINED:
576 case TFTP_ERR_DISK_FULL:
577 case TFTP_ERR_UNEXPECTED_OPCODE:
578 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
579 case TFTP_ERR_FILE_ALREADY_EXISTS:
580 default:
581 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500582 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100583 break;
584 }
wdenkfe8c2802002-11-03 00:38:21 +0000585 break;
586 }
587}
588
589
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500590static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000591{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500592 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000593 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000594 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000595 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500596 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500597 if (tftp_state != STATE_RECV_WRQ)
598 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000599 }
600}
601
Simon Goldschmidta156c472019-01-14 22:38:22 +0100602/* Initialize tftp_load_addr and tftp_load_size from load_addr and lmb */
603static int tftp_init_load_addr(void)
604{
605#ifdef CONFIG_LMB
606 struct lmb lmb;
607 phys_size_t max_size;
608
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100609 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100610
Simon Goldschmidt65304aa2019-01-21 20:29:55 +0100611 max_size = lmb_get_free_size(&lmb, load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100612 if (!max_size)
613 return -1;
614
615 tftp_load_size = max_size;
616#endif
617 tftp_load_addr = load_addr;
618 return 0;
619}
wdenkfe8c2802002-11-03 00:38:21 +0000620
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500621void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000622{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200623#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200624 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200625
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100626 /*
627 * Allow the user to choose TFTP blocksize and timeout.
628 * TFTP protocol has a minimal timeout of 1 second.
629 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200630
Simon Glass00caae62017-08-03 12:22:12 -0600631 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000632 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500633 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100634
Simon Glass00caae62017-08-03 12:22:12 -0600635 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000636 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500637 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100638
Bin Mengaf2ca592015-08-27 22:25:51 -0700639 if (timeout_ms < 1000) {
640 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500641 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700642 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100643 }
644
Simon Glass00caae62017-08-03 12:22:12 -0600645 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200646 if (ep != NULL)
647 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
648
649 if (tftp_timeout_count_max < 0) {
650 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
651 tftp_timeout_count_max);
652 tftp_timeout_count_max = 0;
653 }
654#endif
655
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100656 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500657 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200658
Joe Hershberger049a95a2015-04-08 01:41:01 -0500659 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500660 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000661 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500662 net_ip.s_addr & 0xFF,
663 (net_ip.s_addr >> 8) & 0xFF,
664 (net_ip.s_addr >> 16) & 0xFF,
665 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100666
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300667 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
668 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000669
Luca Ceresolic718b142011-05-14 05:49:57 +0000670 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500671 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000672 }
673
Luca Ceresolic718b142011-05-14 05:49:57 +0000674 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000675 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000676#ifdef CONFIG_CMD_TFTPPUT
677 protocol == TFTPPUT ? "to" : "from",
678#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500679 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000680#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500681 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000682
683 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500684 if (net_gateway.s_addr && net_netmask.s_addr) {
685 struct in_addr our_net;
686 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000687
Joe Hershberger049a95a2015-04-08 01:41:01 -0500688 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
689 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
690 if (our_net.s_addr != remote_net.s_addr)
691 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000692 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000693 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000694
Luca Ceresolic718b142011-05-14 05:49:57 +0000695 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000696
Joe Hershberger14111572015-04-08 01:41:02 -0500697 if (net_boot_file_expected_size_in_blocks) {
698 printf(" Size is 0x%x Bytes = ",
699 net_boot_file_expected_size_in_blocks << 9);
700 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000701 }
702
Luca Ceresolic718b142011-05-14 05:49:57 +0000703 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000704#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500705 tftp_put_active = (protocol == TFTPPUT);
706 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000707 printf("Save address: 0x%lx\n", save_addr);
708 printf("Save size: 0x%lx\n", save_size);
Joe Hershberger14111572015-04-08 01:41:02 -0500709 net_boot_file_size = save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000710 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500711 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000712 new_transfer();
713 } else
714#endif
715 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100716 if (tftp_init_load_addr()) {
717 eth_halt();
718 net_set_state(NETLOOP_FAIL);
719 puts("\nTFTP error: ");
720 puts("trying to overwrite reserved memory...\n");
721 return;
722 }
723 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000724 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500725 tftp_state = STATE_SEND_RRQ;
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200726#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200727 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200728#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000729 }
wdenkfe8c2802002-11-03 00:38:21 +0000730
Simon Glass85b19802012-10-11 13:57:36 +0000731 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500732 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200733
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500734 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500735 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000736#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000737 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000738#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500739 tftp_remote_port = WELL_KNOWN_PORT;
740 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200741 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500742 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500743
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200744#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600745 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000746 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500747 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600748 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000749 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500750 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200751#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500752 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000753
wdenk73a8b272003-06-05 19:27:42 +0000754 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500755 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500756 /* Revert tftp_block_size to dflt */
757 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400758#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500759 tftp_tsize = 0;
760 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400761#endif
wdenk73a8b272003-06-05 19:27:42 +0000762
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500763 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000764}
765
Luca Ceresolie59e3562011-05-17 00:03:39 +0000766#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500767void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000768{
769 tftp_filename[0] = 0;
770
Simon Goldschmidta156c472019-01-14 22:38:22 +0100771 if (tftp_init_load_addr()) {
772 eth_halt();
773 net_set_state(NETLOOP_FAIL);
774 puts("\nTFTP error: trying to overwrite reserved memory...\n");
775 return;
776 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000777 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500778 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100779 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000780
781 puts("Loading: *\b");
782
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200783 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500784 timeout_count = 0;
785 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500786 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000787
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500788 /* Revert tftp_block_size to dflt */
789 tftp_block_size = TFTP_BLOCK_SIZE;
790 tftp_cur_block = 0;
791 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000792
793#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500794 tftp_tsize = 0;
795 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000796#endif
797
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500798 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500799 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500800
801 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500802 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000803}
804#endif /* CONFIG_CMD_TFTPSRV */
805