blob: 5a69bca6413c14326c385134c3b92f9f1a6705fe [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>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050013#include <mapmem.h>
wdenkfe8c2802002-11-03 00:38:21 +000014#include <net.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020015#include <net/tftp.h>
wdenkfe8c2802002-11-03 00:38:21 +000016#include "bootp.h"
Joe Hershberger13dfe942012-05-15 08:59:12 +000017#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
18#include <flash.h>
19#endif
wdenkfe8c2802002-11-03 00:38:21 +000020
Simon Goldschmidta156c472019-01-14 22:38:22 +010021DECLARE_GLOBAL_DATA_PTR;
22
Luca Ceresoli2f094132011-05-14 05:49:56 +000023/* Well known TFTP port # */
24#define WELL_KNOWN_PORT 69
25/* Millisecs to timeout for lost pkt */
Bin Mengaf2ca592015-08-27 22:25:51 -070026#define TIMEOUT 5000UL
wdenkfe8c2802002-11-03 00:38:21 +000027#ifndef CONFIG_NET_RETRY_COUNT
Luca Ceresoli2f094132011-05-14 05:49:56 +000028/* # of timeouts before giving up */
Bin Mengaf2ca592015-08-27 22:25:51 -070029# define TIMEOUT_COUNT 10
wdenkfe8c2802002-11-03 00:38:21 +000030#else
31# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
32#endif
Luca Ceresoli2f094132011-05-14 05:49:56 +000033/* Number of "loading" hashes per line (for checking the image size) */
34#define HASHES_PER_LINE 65
wdenkfe8c2802002-11-03 00:38:21 +000035
36/*
37 * TFTP operations.
38 */
39#define TFTP_RRQ 1
40#define TFTP_WRQ 2
41#define TFTP_DATA 3
42#define TFTP_ACK 4
43#define TFTP_ERROR 5
wdenkfbe4b5c2003-10-06 21:55:32 +000044#define TFTP_OACK 6
wdenkfe8c2802002-11-03 00:38:21 +000045
Joe Hershberger8885c5f2015-04-08 01:41:07 -050046static ulong timeout_ms = TIMEOUT;
47static int timeout_count_max = TIMEOUT_COUNT;
Simon Glass85b19802012-10-11 13:57:36 +000048static ulong time_start; /* Record time we started tftp */
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020049
50/*
51 * These globals govern the timeout behavior when attempting a connection to a
Joe Hershberger8885c5f2015-04-08 01:41:07 -050052 * TFTP server. tftp_timeout_ms specifies the number of milliseconds to
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020053 * wait for the server to respond to initial connection. Second global,
Joe Hershberger8885c5f2015-04-08 01:41:07 -050054 * tftp_timeout_count_max, gives the number of such connection retries.
55 * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020056 * positive. The globals are meant to be set (and restored) by code needing
57 * non-standard timeout behavior when initiating a TFTP transfer.
58 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050059ulong tftp_timeout_ms = TIMEOUT;
60int tftp_timeout_count_max = TIMEOUT_COUNT;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +020061
Remy Bohmeraafda382009-10-28 22:13:40 +010062enum {
63 TFTP_ERR_UNDEFINED = 0,
64 TFTP_ERR_FILE_NOT_FOUND = 1,
65 TFTP_ERR_ACCESS_DENIED = 2,
66 TFTP_ERR_DISK_FULL = 3,
67 TFTP_ERR_UNEXPECTED_OPCODE = 4,
68 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
69 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
70};
71
Joe Hershberger049a95a2015-04-08 01:41:01 -050072static struct in_addr tftp_remote_ip;
Luca Ceresoli2f094132011-05-14 05:49:56 +000073/* The UDP port at their end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050074static int tftp_remote_port;
Luca Ceresoli2f094132011-05-14 05:49:56 +000075/* The UDP port at our end */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050076static int tftp_our_port;
77static int timeout_count;
Luca Ceresoli2f094132011-05-14 05:49:56 +000078/* packet sequence number */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050079static ulong tftp_cur_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000080/* last packet sequence number received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050081static ulong tftp_prev_block;
Luca Ceresoli2f094132011-05-14 05:49:56 +000082/* count of sequence number wraparounds */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050083static ulong tftp_block_wrap;
Luca Ceresoli2f094132011-05-14 05:49:56 +000084/* memory offset due to wrapping */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050085static ulong tftp_block_wrap_offset;
86static int tftp_state;
Simon Goldschmidta156c472019-01-14 22:38:22 +010087static ulong tftp_load_addr;
88#ifdef CONFIG_LMB
89static ulong tftp_load_size;
90#endif
Robin Getz4fccb812009-08-20 10:50:20 -040091#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2f094132011-05-14 05:49:56 +000092/* The file size reported by the server */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050093static int tftp_tsize;
Luca Ceresoli2f094132011-05-14 05:49:56 +000094/* The number of hashes we printed */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050095static short tftp_tsize_num_hash;
Robin Getz4fccb812009-08-20 10:50:20 -040096#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +000097#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -050098/* 1 if writing, else 0 */
99static int tftp_put_active;
100/* 1 if we have sent the last block */
101static int tftp_put_final_block_sent;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000102#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500103#define tftp_put_active 0
Simon Glass1fb7cd42011-10-24 18:00:07 +0000104#endif
wdenk3f85ce22004-02-23 16:11:30 +0000105
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000106#define STATE_SEND_RRQ 1
wdenkfe8c2802002-11-03 00:38:21 +0000107#define STATE_DATA 2
108#define STATE_TOO_LARGE 3
109#define STATE_BAD_MAGIC 4
wdenkfbe4b5c2003-10-06 21:55:32 +0000110#define STATE_OACK 5
Luca Ceresolie59e3562011-05-17 00:03:39 +0000111#define STATE_RECV_WRQ 6
Simon Glass1fb7cd42011-10-24 18:00:07 +0000112#define STATE_SEND_WRQ 7
wdenkfe8c2802002-11-03 00:38:21 +0000113
Luca Ceresoli2f094132011-05-14 05:49:56 +0000114/* default TFTP block size */
115#define TFTP_BLOCK_SIZE 512
116/* sequence number is 16 bit */
117#define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
wdenk3f85ce22004-02-23 16:11:30 +0000118
wdenkfe8c2802002-11-03 00:38:21 +0000119#define DEFAULT_NAME_LEN (8 + 4 + 1)
120static char default_filename[DEFAULT_NAME_LEN];
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100121
122#ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
123#define MAX_LEN 128
124#else
125#define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
126#endif
127
128static char tftp_filename[MAX_LEN];
wdenkfe8c2802002-11-03 00:38:21 +0000129
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200130/* 512 is poor choice for ethernet, MTU is typically 1500.
131 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
David Updegraff53a5c422007-06-11 10:41:07 -0500132 * almost-MTU block sizes. At least try... fall back to 512 if need be.
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200133 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
David Updegraff53a5c422007-06-11 10:41:07 -0500134 */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200135#ifdef CONFIG_TFTP_BLOCKSIZE
136#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
137#else
David Updegraff53a5c422007-06-11 10:41:07 -0500138#define TFTP_MTU_BLOCKSIZE 1468
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200139#endif
140
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500141static unsigned short tftp_block_size = TFTP_BLOCK_SIZE;
142static unsigned short tftp_block_size_option = TFTP_MTU_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
174 if (store_addr < tftp_load_addr ||
175 store_addr + len > tftp_load_addr + tftp_load_size) {
176 puts("\nTFTP error: ");
177 puts("trying to overwrite reserved memory...\n");
178 return -1;
179 }
180#endif
181 ptr = map_sysmem(store_addr, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500182 memcpy(ptr, src, len);
183 unmap_sysmem(ptr);
wdenkfe8c2802002-11-03 00:38:21 +0000184 }
185
Joe Hershberger14111572015-04-08 01:41:02 -0500186 if (net_boot_file_size < newsize)
187 net_boot_file_size = newsize;
Simon Goldschmidta156c472019-01-14 22:38:22 +0100188
189 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000190}
191
Simon Glasse4cde2f2011-10-24 18:00:04 +0000192/* Clear our state ready for a new transfer */
Simon Glass165099e2011-10-27 06:24:28 +0000193static void new_transfer(void)
Simon Glasse4cde2f2011-10-24 18:00:04 +0000194{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500195 tftp_prev_block = 0;
196 tftp_block_wrap = 0;
197 tftp_block_wrap_offset = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000198#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500199 tftp_put_final_block_sent = 0;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000200#endif
201}
202
Simon Glass1fb7cd42011-10-24 18:00:07 +0000203#ifdef CONFIG_CMD_TFTPPUT
204/**
205 * Load the next block from memory to be sent over tftp.
206 *
207 * @param block Block number to send
208 * @param dst Destination buffer for data
209 * @param len Number of bytes in block (this one and every other)
210 * @return number of bytes loaded
211 */
212static int load_block(unsigned block, uchar *dst, unsigned len)
213{
214 /* We may want to get the final block from the previous set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500215 ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000216 ulong tosend = len;
217
Joe Hershberger14111572015-04-08 01:41:02 -0500218 tosend = min(net_boot_file_size - offset, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000219 (void)memcpy(dst, (void *)(save_addr + offset), tosend);
220 debug("%s: block=%d, offset=%ld, len=%d, tosend=%ld\n", __func__,
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500221 block, offset, len, tosend);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000222 return tosend;
223}
224#endif
225
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500226static void tftp_send(void);
227static void tftp_timeout_handler(void);
wdenkfe8c2802002-11-03 00:38:21 +0000228
229/**********************************************************************/
230
Simon Glassf5329bb2011-10-24 18:00:03 +0000231static void show_block_marker(void)
232{
233#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500234 if (tftp_tsize) {
235 ulong pos = tftp_cur_block * tftp_block_size +
236 tftp_block_wrap_offset;
Max Krummenacher7628afe2015-08-05 17:17:05 +0200237 if (pos > tftp_tsize)
238 pos = tftp_tsize;
Simon Glassf5329bb2011-10-24 18:00:03 +0000239
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500240 while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000241 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500242 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000243 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000244 } else
Simon Glassf5329bb2011-10-24 18:00:03 +0000245#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000246 {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500247 if (((tftp_cur_block - 1) % 10) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000248 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500249 else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0)
Simon Glassf5329bb2011-10-24 18:00:03 +0000250 puts("\n\t ");
251 }
252}
253
Simon Glasse4cde2f2011-10-24 18:00:04 +0000254/**
255 * restart the current transfer due to an error
256 *
257 * @param msg Message to print for user
258 */
259static void restart(const char *msg)
260{
261 printf("\n%s; starting again\n", msg);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500262 net_start_again();
Simon Glasse4cde2f2011-10-24 18:00:04 +0000263}
264
265/*
266 * Check if the block number has wrapped, and update progress
267 *
268 * TODO: The egregious use of global variables in this file should be tidied.
269 */
270static void update_block_number(void)
271{
272 /*
273 * RFC1350 specifies that the first data packet will
274 * have sequence number 1. If we receive a sequence
275 * number of 0 this means that there was a wrap
276 * around of the (16 bit) counter.
277 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500278 if (tftp_cur_block == 0 && tftp_prev_block != 0) {
279 tftp_block_wrap++;
280 tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE;
281 timeout_count = 0; /* we've done well, reset the timeout */
Simon Glasse4cde2f2011-10-24 18:00:04 +0000282 } else {
283 show_block_marker();
284 }
285}
286
Simon Glassf5329bb2011-10-24 18:00:03 +0000287/* The TFTP get or put is complete */
288static void tftp_complete(void)
289{
290#ifdef CONFIG_TFTP_TSIZE
291 /* Print hash marks for the last packet received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500292 while (tftp_tsize && tftp_tsize_num_hash < 49) {
Simon Glassf5329bb2011-10-24 18:00:03 +0000293 putc('#');
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500294 tftp_tsize_num_hash++;
Simon Glassf5329bb2011-10-24 18:00:03 +0000295 }
Simon Glass8104f542014-10-10 07:30:21 -0600296 puts(" ");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500297 print_size(tftp_tsize, "");
Simon Glassf5329bb2011-10-24 18:00:03 +0000298#endif
Simon Glass85b19802012-10-11 13:57:36 +0000299 time_start = get_timer(time_start);
300 if (time_start > 0) {
301 puts("\n\t "); /* Line up with "Loading: " */
Joe Hershberger14111572015-04-08 01:41:02 -0500302 print_size(net_boot_file_size /
Simon Glass85b19802012-10-11 13:57:36 +0000303 time_start * 1000, "/s");
304 }
Simon Glassf5329bb2011-10-24 18:00:03 +0000305 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000306 net_set_state(NETLOOP_SUCCESS);
Simon Glassf5329bb2011-10-24 18:00:03 +0000307}
308
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500309static void tftp_send(void)
wdenkfe8c2802002-11-03 00:38:21 +0000310{
Simon Glass1fb7cd42011-10-24 18:00:07 +0000311 uchar *pkt;
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000312 uchar *xp;
313 int len = 0;
314 ushort *s;
wdenkfe8c2802002-11-03 00:38:21 +0000315
316 /*
317 * We will always be sending some sort of packet, so
318 * cobble together the packet headers now.
319 */
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500320 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
wdenkfe8c2802002-11-03 00:38:21 +0000321
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500322 switch (tftp_state) {
Luca Ceresolie3fb0ab2011-05-17 00:03:38 +0000323 case STATE_SEND_RRQ:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000324 case STATE_SEND_WRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000325 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200326 s = (ushort *)pkt;
Simon Glass8c6914f2011-10-27 06:24:29 +0000327#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500328 *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ :
Simon Glass1fb7cd42011-10-24 18:00:07 +0000329 TFTP_WRQ);
Simon Glass8c6914f2011-10-27 06:24:29 +0000330#else
331 *s++ = htons(TFTP_RRQ);
332#endif
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200333 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000334 strcpy((char *)pkt, tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000335 pkt += strlen(tftp_filename) + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000336 strcpy((char *)pkt, "octet");
wdenkfe8c2802002-11-03 00:38:21 +0000337 pkt += 5 /*strlen("octet")*/ + 1;
Luca Ceresolic718b142011-05-14 05:49:57 +0000338 strcpy((char *)pkt, "timeout");
wdenkfbe4b5c2003-10-06 21:55:32 +0000339 pkt += 7 /*strlen("timeout")*/ + 1;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500340 sprintf((char *)pkt, "%lu", timeout_ms / 1000);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400341 debug("send option \"timeout %s\"\n", (char *)pkt);
wdenkfbe4b5c2003-10-06 21:55:32 +0000342 pkt += strlen((char *)pkt) + 1;
Robin Getz4fccb812009-08-20 10:50:20 -0400343#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger14111572015-04-08 01:41:02 -0500344 pkt += sprintf((char *)pkt, "tsize%c%u%c",
345 0, net_boot_file_size, 0);
Robin Getz4fccb812009-08-20 10:50:20 -0400346#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500347 /* try for more effic. blk size */
Luca Ceresolic718b142011-05-14 05:49:57 +0000348 pkt += sprintf((char *)pkt, "blksize%c%d%c",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500349 0, tftp_block_size_option, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000350 len = pkt - xp;
351 break;
352
wdenkfbe4b5c2003-10-06 21:55:32 +0000353 case STATE_OACK:
Luca Ceresolie59e3562011-05-17 00:03:39 +0000354
355 case STATE_RECV_WRQ:
David Updegraff53a5c422007-06-11 10:41:07 -0500356 case STATE_DATA:
wdenkfe8c2802002-11-03 00:38:21 +0000357 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200358 s = (ushort *)pkt;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000359 s[0] = htons(TFTP_ACK);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500360 s[1] = htons(tftp_cur_block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000361 pkt = (uchar *)(s + 2);
362#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500363 if (tftp_put_active) {
364 int toload = tftp_block_size;
365 int loaded = load_block(tftp_cur_block, pkt, toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000366
367 s[0] = htons(TFTP_DATA);
368 pkt += loaded;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500369 tftp_put_final_block_sent = (loaded < toload);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000370 }
371#endif
wdenkfe8c2802002-11-03 00:38:21 +0000372 len = pkt - xp;
373 break;
374
375 case STATE_TOO_LARGE:
376 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200377 s = (ushort *)pkt;
378 *s++ = htons(TFTP_ERROR);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000379 *s++ = htons(3);
380
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200381 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000382 strcpy((char *)pkt, "File too large");
wdenkfe8c2802002-11-03 00:38:21 +0000383 pkt += 14 /*strlen("File too large")*/ + 1;
384 len = pkt - xp;
385 break;
386
387 case STATE_BAD_MAGIC:
388 xp = pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200389 s = (ushort *)pkt;
390 *s++ = htons(TFTP_ERROR);
391 *s++ = htons(2);
392 pkt = (uchar *)s;
Luca Ceresolic718b142011-05-14 05:49:57 +0000393 strcpy((char *)pkt, "File has bad magic");
wdenkfe8c2802002-11-03 00:38:21 +0000394 pkt += 18 /*strlen("File has bad magic")*/ + 1;
395 len = pkt - xp;
396 break;
397 }
398
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500399 net_send_udp_packet(net_server_ethaddr, tftp_remote_ip,
400 tftp_remote_port, tftp_our_port, len);
wdenkfe8c2802002-11-03 00:38:21 +0000401}
402
Simon Glass39bccd22011-10-26 14:18:38 +0000403#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000404static void icmp_handler(unsigned type, unsigned code, unsigned dest,
Joe Hershberger049a95a2015-04-08 01:41:01 -0500405 struct in_addr sip, unsigned src, uchar *pkt,
406 unsigned len)
Simon Glass1fb7cd42011-10-24 18:00:07 +0000407{
408 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
409 /* Oh dear the other end has gone away */
410 restart("TFTP server died");
411 }
412}
Simon Glass39bccd22011-10-26 14:18:38 +0000413#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000414
Joe Hershberger049a95a2015-04-08 01:41:01 -0500415static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
416 unsigned src, unsigned len)
wdenkfe8c2802002-11-03 00:38:21 +0000417{
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600418 __be16 proto;
419 __be16 *s;
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200420 int i;
wdenkfe8c2802002-11-03 00:38:21 +0000421
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500422 if (dest != tftp_our_port) {
Luca Ceresoli0bdd8ac2011-05-14 05:50:02 +0000423 return;
wdenkfe8c2802002-11-03 00:38:21 +0000424 }
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500425 if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port &&
426 tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ)
wdenkfe8c2802002-11-03 00:38:21 +0000427 return;
wdenkfe8c2802002-11-03 00:38:21 +0000428
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000429 if (len < 2)
wdenkfe8c2802002-11-03 00:38:21 +0000430 return;
wdenkfe8c2802002-11-03 00:38:21 +0000431 len -= 2;
432 /* warning: don't use increment (++) in ntohs() macros!! */
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600433 s = (__be16 *)pkt;
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +0200434 proto = *s++;
435 pkt = (uchar *)s;
wdenkfe8c2802002-11-03 00:38:21 +0000436 switch (ntohs(proto)) {
wdenkfe8c2802002-11-03 00:38:21 +0000437 case TFTP_RRQ:
wdenkfe8c2802002-11-03 00:38:21 +0000438 break;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000439
440 case TFTP_ACK:
441#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500442 if (tftp_put_active) {
443 if (tftp_put_final_block_sent) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000444 tftp_complete();
445 } else {
446 /*
447 * Move to the next block. We want our block
448 * count to wrap just like the other end!
449 */
450 int block = ntohs(*s);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500451 int ack_ok = (tftp_cur_block == block);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000452
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500453 tftp_cur_block = (unsigned short)(block + 1);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000454 update_block_number();
455 if (ack_ok)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500456 tftp_send(); /* Send next data block */
Simon Glass1fb7cd42011-10-24 18:00:07 +0000457 }
458 }
459#endif
460 break;
461
wdenkfe8c2802002-11-03 00:38:21 +0000462 default:
463 break;
464
Luca Ceresolie59e3562011-05-17 00:03:39 +0000465#ifdef CONFIG_CMD_TFTPSRV
466 case TFTP_WRQ:
467 debug("Got WRQ\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500468 tftp_remote_ip = sip;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500469 tftp_remote_port = src;
470 tftp_our_port = 1024 + (get_timer(0) % 3072);
Simon Glasse4cde2f2011-10-24 18:00:04 +0000471 new_transfer();
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500472 tftp_send(); /* Send ACK(0) */
Luca Ceresolie59e3562011-05-17 00:03:39 +0000473 break;
474#endif
475
wdenkfbe4b5c2003-10-06 21:55:32 +0000476 case TFTP_OACK:
Wolfgang Denkd3717082009-08-10 09:59:10 +0200477 debug("Got OACK: %s %s\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500478 pkt, pkt + strlen((char *)pkt) + 1);
479 tftp_state = STATE_OACK;
480 tftp_remote_port = src;
Wolfgang Denk60174742007-08-31 10:01:51 +0200481 /*
482 * Check for 'blksize' option.
483 * Careful: "i" is signed, "len" is unsigned, thus
484 * something like "len-8" may give a *huge* number
485 */
Luca Ceresolic718b142011-05-14 05:49:57 +0000486 for (i = 0; i+8 < len; i++) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500487 if (strcmp((char *)pkt + i, "blksize") == 0) {
488 tftp_block_size = (unsigned short)
489 simple_strtoul((char *)pkt + i + 8,
490 NULL, 10);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400491 debug("Blocksize ack: %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500492 (char *)pkt + i + 8, tftp_block_size);
Wolfgang Denkff13ac82007-08-30 14:42:15 +0200493 }
Robin Getz4fccb812009-08-20 10:50:20 -0400494#ifdef CONFIG_TFTP_TSIZE
Luca Ceresoli2e320252011-05-14 05:49:58 +0000495 if (strcmp((char *)pkt+i, "tsize") == 0) {
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500496 tftp_tsize = simple_strtoul((char *)pkt + i + 6,
Luca Ceresoli2f094132011-05-14 05:49:56 +0000497 NULL, 10);
Robin Getz4fccb812009-08-20 10:50:20 -0400498 debug("size = %s, %d\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500499 (char *)pkt + i + 6, tftp_tsize);
Robin Getz4fccb812009-08-20 10:50:20 -0400500 }
501#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500502 }
Simon Glass1fb7cd42011-10-24 18:00:07 +0000503#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500504 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000505 /* Get ready to send the first block */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500506 tftp_state = STATE_DATA;
507 tftp_cur_block++;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000508 }
509#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500510 tftp_send(); /* Send ACK or first data block */
wdenkfbe4b5c2003-10-06 21:55:32 +0000511 break;
wdenkfe8c2802002-11-03 00:38:21 +0000512 case TFTP_DATA:
513 if (len < 2)
514 return;
515 len -= 2;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500516 tftp_cur_block = ntohs(*(__be16 *)pkt);
wdenk3f85ce22004-02-23 16:11:30 +0000517
Simon Glasse4cde2f2011-10-24 18:00:04 +0000518 update_block_number();
wdenkfe8c2802002-11-03 00:38:21 +0000519
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500520 if (tftp_state == STATE_SEND_RRQ)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400521 debug("Server did not acknowledge timeout option!\n");
wdenkfbe4b5c2003-10-06 21:55:32 +0000522
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500523 if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK ||
524 tftp_state == STATE_RECV_WRQ) {
wdenk3f85ce22004-02-23 16:11:30 +0000525 /* first block received */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500526 tftp_state = STATE_DATA;
527 tftp_remote_port = src;
Simon Glasse4cde2f2011-10-24 18:00:04 +0000528 new_transfer();
wdenkfe8c2802002-11-03 00:38:21 +0000529
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500530 if (tftp_cur_block != 1) { /* Assertion */
531 puts("\nTFTP error: ");
532 printf("First block is not block 1 (%ld)\n",
533 tftp_cur_block);
534 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500535 net_start_again();
wdenkfe8c2802002-11-03 00:38:21 +0000536 break;
537 }
538 }
539
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500540 if (tftp_cur_block == tftp_prev_block) {
541 /* Same block again; ignore it. */
wdenkfe8c2802002-11-03 00:38:21 +0000542 break;
543 }
544
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500545 tftp_prev_block = tftp_cur_block;
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200546 timeout_count_max = tftp_timeout_count_max;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500547 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
wdenkfe8c2802002-11-03 00:38:21 +0000548
Simon Goldschmidta156c472019-01-14 22:38:22 +0100549 if (store_block(tftp_cur_block - 1, pkt + 2, len)) {
550 eth_halt();
551 net_set_state(NETLOOP_FAIL);
552 break;
553 }
wdenkfe8c2802002-11-03 00:38:21 +0000554
555 /*
Luca Ceresoli4d69e982011-05-17 00:03:41 +0000556 * Acknowledge the block just received, which will prompt
Luca Ceresoli20478ce2011-05-17 00:03:37 +0000557 * the remote for the next one.
wdenkfe8c2802002-11-03 00:38:21 +0000558 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500559 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000560
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500561 if (len < tftp_block_size)
Simon Glassf5329bb2011-10-24 18:00:03 +0000562 tftp_complete();
wdenkfe8c2802002-11-03 00:38:21 +0000563 break;
564
565 case TFTP_ERROR:
Luca Ceresolic718b142011-05-14 05:49:57 +0000566 printf("\nTFTP error: '%s' (%d)\n",
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600567 pkt + 2, ntohs(*(__be16 *)pkt));
Remy Bohmeraafda382009-10-28 22:13:40 +0100568
Kim Phillips61fdd4f2013-01-16 18:09:19 -0600569 switch (ntohs(*(__be16 *)pkt)) {
Remy Bohmeraafda382009-10-28 22:13:40 +0100570 case TFTP_ERR_FILE_NOT_FOUND:
571 case TFTP_ERR_ACCESS_DENIED:
572 puts("Not retrying...\n");
573 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000574 net_set_state(NETLOOP_FAIL);
Remy Bohmeraafda382009-10-28 22:13:40 +0100575 break;
576 case TFTP_ERR_UNDEFINED:
577 case TFTP_ERR_DISK_FULL:
578 case TFTP_ERR_UNEXPECTED_OPCODE:
579 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
580 case TFTP_ERR_FILE_ALREADY_EXISTS:
581 default:
582 puts("Starting again\n\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500583 net_start_again();
Remy Bohmeraafda382009-10-28 22:13:40 +0100584 break;
585 }
wdenkfe8c2802002-11-03 00:38:21 +0000586 break;
587 }
588}
589
590
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500591static void tftp_timeout_handler(void)
wdenkfe8c2802002-11-03 00:38:21 +0000592{
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500593 if (++timeout_count > timeout_count_max) {
Simon Glasse4cde2f2011-10-24 18:00:04 +0000594 restart("Retry count exceeded");
wdenkfe8c2802002-11-03 00:38:21 +0000595 } else {
Luca Ceresolic718b142011-05-14 05:49:57 +0000596 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500597 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500598 if (tftp_state != STATE_RECV_WRQ)
599 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000600 }
601}
602
Simon Goldschmidta156c472019-01-14 22:38:22 +0100603/* Initialize tftp_load_addr and tftp_load_size from load_addr and lmb */
604static int tftp_init_load_addr(void)
605{
606#ifdef CONFIG_LMB
607 struct lmb lmb;
608 phys_size_t max_size;
609
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100610 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100611
Simon Goldschmidt65304aa2019-01-21 20:29:55 +0100612 max_size = lmb_get_free_size(&lmb, load_addr);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100613 if (!max_size)
614 return -1;
615
616 tftp_load_size = max_size;
617#endif
618 tftp_load_addr = load_addr;
619 return 0;
620}
wdenkfe8c2802002-11-03 00:38:21 +0000621
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500622void tftp_start(enum proto_t protocol)
wdenkfe8c2802002-11-03 00:38:21 +0000623{
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200624#if CONFIG_NET_TFTP_VARS
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200625 char *ep; /* Environment pointer */
Alessandro Rubini89ba81d2009-08-07 13:59:06 +0200626
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100627 /*
628 * Allow the user to choose TFTP blocksize and timeout.
629 * TFTP protocol has a minimal timeout of 1 second.
630 */
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200631
Simon Glass00caae62017-08-03 12:22:12 -0600632 ep = env_get("tftpblocksize");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000633 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500634 tftp_block_size_option = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100635
Simon Glass00caae62017-08-03 12:22:12 -0600636 ep = env_get("tftptimeout");
Luca Ceresoli2cb53602011-05-14 05:49:59 +0000637 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500638 timeout_ms = simple_strtol(ep, NULL, 10);
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100639
Bin Mengaf2ca592015-08-27 22:25:51 -0700640 if (timeout_ms < 1000) {
641 printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500642 timeout_ms);
Bin Mengaf2ca592015-08-27 22:25:51 -0700643 timeout_ms = 1000;
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100644 }
645
Simon Glass00caae62017-08-03 12:22:12 -0600646 ep = env_get("tftptimeoutcountmax");
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200647 if (ep != NULL)
648 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
649
650 if (tftp_timeout_count_max < 0) {
651 printf("TFTP timeout count max (%d ms) negative, set to 0\n",
652 tftp_timeout_count_max);
653 tftp_timeout_count_max = 0;
654 }
655#endif
656
Wolfgang Denkc96f86e2010-01-17 23:55:53 +0100657 debug("TFTP blocksize = %i, timeout = %ld ms\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500658 tftp_block_size_option, timeout_ms);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200659
Joe Hershberger049a95a2015-04-08 01:41:01 -0500660 tftp_remote_ip = net_server_ip;
Joe Hershberger6ab12832018-07-03 19:36:43 -0500661 if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) {
Matthias Weisserea45cb02011-12-03 03:29:44 +0000662 sprintf(default_filename, "%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500663 net_ip.s_addr & 0xFF,
664 (net_ip.s_addr >> 8) & 0xFF,
665 (net_ip.s_addr >> 16) & 0xFF,
666 (net_ip.s_addr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARDa93907c2008-01-18 01:14:03 +0100667
Vladimir Zapolskiy0c17b1b2017-06-28 22:56:07 +0300668 strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN);
669 tftp_filename[DEFAULT_NAME_LEN - 1] = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000670
Luca Ceresolic718b142011-05-14 05:49:57 +0000671 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500672 tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000673 }
674
Luca Ceresolic718b142011-05-14 05:49:57 +0000675 printf("Using %s device\n", eth_get_name());
Simon Glass1fb7cd42011-10-24 18:00:07 +0000676 printf("TFTP %s server %pI4; our IP address is %pI4",
Simon Glass8c6914f2011-10-27 06:24:29 +0000677#ifdef CONFIG_CMD_TFTPPUT
678 protocol == TFTPPUT ? "to" : "from",
679#else
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500680 "from",
Simon Glass8c6914f2011-10-27 06:24:29 +0000681#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500682 &tftp_remote_ip, &net_ip);
wdenkfe8c2802002-11-03 00:38:21 +0000683
684 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500685 if (net_gateway.s_addr && net_netmask.s_addr) {
686 struct in_addr our_net;
687 struct in_addr remote_net;
wdenkfe8c2802002-11-03 00:38:21 +0000688
Joe Hershberger049a95a2015-04-08 01:41:01 -0500689 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
690 remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr;
691 if (our_net.s_addr != remote_net.s_addr)
692 printf("; sending through gateway %pI4", &net_gateway);
wdenkfe8c2802002-11-03 00:38:21 +0000693 }
Luca Ceresolic718b142011-05-14 05:49:57 +0000694 putc('\n');
wdenkfe8c2802002-11-03 00:38:21 +0000695
Luca Ceresolic718b142011-05-14 05:49:57 +0000696 printf("Filename '%s'.", tftp_filename);
wdenkfe8c2802002-11-03 00:38:21 +0000697
Joe Hershberger14111572015-04-08 01:41:02 -0500698 if (net_boot_file_expected_size_in_blocks) {
699 printf(" Size is 0x%x Bytes = ",
700 net_boot_file_expected_size_in_blocks << 9);
701 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkfe8c2802002-11-03 00:38:21 +0000702 }
703
Luca Ceresolic718b142011-05-14 05:49:57 +0000704 putc('\n');
Simon Glass1fb7cd42011-10-24 18:00:07 +0000705#ifdef CONFIG_CMD_TFTPPUT
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500706 tftp_put_active = (protocol == TFTPPUT);
707 if (tftp_put_active) {
Simon Glass1fb7cd42011-10-24 18:00:07 +0000708 printf("Save address: 0x%lx\n", save_addr);
709 printf("Save size: 0x%lx\n", save_size);
Joe Hershberger14111572015-04-08 01:41:02 -0500710 net_boot_file_size = save_size;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000711 puts("Saving: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500712 tftp_state = STATE_SEND_WRQ;
Simon Glass1fb7cd42011-10-24 18:00:07 +0000713 new_transfer();
714 } else
715#endif
716 {
Simon Goldschmidta156c472019-01-14 22:38:22 +0100717 if (tftp_init_load_addr()) {
718 eth_halt();
719 net_set_state(NETLOOP_FAIL);
720 puts("\nTFTP error: ");
721 puts("trying to overwrite reserved memory...\n");
722 return;
723 }
724 printf("Load address: 0x%lx\n", tftp_load_addr);
Simon Glass1fb7cd42011-10-24 18:00:07 +0000725 puts("Loading: *\b");
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500726 tftp_state = STATE_SEND_RRQ;
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200727#ifdef CONFIG_CMD_BOOTEFI
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200728 efi_set_bootdev("Net", "", tftp_filename);
Jörg Krause64b8d7a2017-09-15 22:16:48 +0200729#endif
Simon Glass1fb7cd42011-10-24 18:00:07 +0000730 }
wdenkfe8c2802002-11-03 00:38:21 +0000731
Simon Glass85b19802012-10-11 13:57:36 +0000732 time_start = get_timer(0);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500733 timeout_count_max = tftp_timeout_count_max;
Bartlomiej Siekae83cc062008-10-01 15:26:29 +0200734
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500735 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500736 net_set_udp_handler(tftp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000737#ifdef CONFIG_CMD_TFTPPUT
Simon Glass1fb7cd42011-10-24 18:00:07 +0000738 net_set_icmp_handler(icmp_handler);
Simon Glass39bccd22011-10-26 14:18:38 +0000739#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500740 tftp_remote_port = WELL_KNOWN_PORT;
741 timeout_count = 0;
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200742 /* Use a pseudo-random port unless a specific port is set */
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500743 tftp_our_port = 1024 + (get_timer(0) % 3072);
David Updegraff53a5c422007-06-11 10:41:07 -0500744
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200745#ifdef CONFIG_TFTP_PORT
Simon Glass00caae62017-08-03 12:22:12 -0600746 ep = env_get("tftpdstp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000747 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500748 tftp_remote_port = simple_strtol(ep, NULL, 10);
Simon Glass00caae62017-08-03 12:22:12 -0600749 ep = env_get("tftpsrcp");
Luca Ceresoli7bc325a2011-05-14 05:50:00 +0000750 if (ep != NULL)
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500751 tftp_our_port = simple_strtol(ep, NULL, 10);
Wolfgang Denkecb0ccd2005-09-24 22:37:32 +0200752#endif
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500753 tftp_cur_block = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000754
wdenk73a8b272003-06-05 19:27:42 +0000755 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500756 memset(net_server_ethaddr, 0, 6);
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500757 /* Revert tftp_block_size to dflt */
758 tftp_block_size = TFTP_BLOCK_SIZE;
Robin Getz4fccb812009-08-20 10:50:20 -0400759#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500760 tftp_tsize = 0;
761 tftp_tsize_num_hash = 0;
Robin Getz4fccb812009-08-20 10:50:20 -0400762#endif
wdenk73a8b272003-06-05 19:27:42 +0000763
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500764 tftp_send();
wdenkfe8c2802002-11-03 00:38:21 +0000765}
766
Luca Ceresolie59e3562011-05-17 00:03:39 +0000767#ifdef CONFIG_CMD_TFTPSRV
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500768void tftp_start_server(void)
Luca Ceresolie59e3562011-05-17 00:03:39 +0000769{
770 tftp_filename[0] = 0;
771
Simon Goldschmidta156c472019-01-14 22:38:22 +0100772 if (tftp_init_load_addr()) {
773 eth_halt();
774 net_set_state(NETLOOP_FAIL);
775 puts("\nTFTP error: trying to overwrite reserved memory...\n");
776 return;
777 }
Luca Ceresolie59e3562011-05-17 00:03:39 +0000778 printf("Using %s device\n", eth_get_name());
Joe Hershberger049a95a2015-04-08 01:41:01 -0500779 printf("Listening for TFTP transfer on %pI4\n", &net_ip);
Simon Goldschmidta156c472019-01-14 22:38:22 +0100780 printf("Load address: 0x%lx\n", tftp_load_addr);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000781
782 puts("Loading: *\b");
783
Albert ARIBAUD \(3ADEV\)f5fb7342015-10-12 00:02:57 +0200784 timeout_count_max = tftp_timeout_count_max;
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500785 timeout_count = 0;
786 timeout_ms = TIMEOUT;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500787 net_set_timeout_handler(timeout_ms, tftp_timeout_handler);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000788
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500789 /* Revert tftp_block_size to dflt */
790 tftp_block_size = TFTP_BLOCK_SIZE;
791 tftp_cur_block = 0;
792 tftp_our_port = WELL_KNOWN_PORT;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000793
794#ifdef CONFIG_TFTP_TSIZE
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500795 tftp_tsize = 0;
796 tftp_tsize_num_hash = 0;
Luca Ceresolie59e3562011-05-17 00:03:39 +0000797#endif
798
Joe Hershberger8885c5f2015-04-08 01:41:07 -0500799 tftp_state = STATE_RECV_WRQ;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500800 net_set_udp_handler(tftp_handler);
Andrew Ruder8e525332013-10-22 19:10:28 -0500801
802 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500803 memset(net_server_ethaddr, 0, 6);
Luca Ceresolie59e3562011-05-17 00:03:39 +0000804}
805#endif /* CONFIG_CMD_TFTPSRV */
806