]>
Commit | Line | Data |
---|---|---|
fe8c2806 | 1 | /* |
2f09413f LC |
2 | * Copyright 1994, 1995, 2000 Neil Russell. |
3 | * (See License) | |
4 | * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, [email protected] | |
e59e3562 LC |
5 | * Copyright 2011 Comelit Group SpA, |
6 | * Luca Ceresoli <[email protected]> | |
fe8c2806 | 7 | */ |
fe8c2806 WD |
8 | #include <common.h> |
9 | #include <command.h> | |
0efe1bcf | 10 | #include <efi_loader.h> |
7b51b576 | 11 | #include <env.h> |
8e8ccfe1 | 12 | #include <image.h> |
4d72caa5 | 13 | #include <lmb.h> |
f7ae49fc | 14 | #include <log.h> |
55d5fd9a | 15 | #include <mapmem.h> |
fe8c2806 | 16 | #include <net.h> |
401d1c4f | 17 | #include <asm/global_data.h> |
34696958 | 18 | #include <net/tftp.h> |
fe8c2806 | 19 | #include "bootp.h" |
13dfe943 JH |
20 | #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP |
21 | #include <flash.h> | |
22 | #endif | |
fe8c2806 | 23 | |
a156c47e SG |
24 | DECLARE_GLOBAL_DATA_PTR; |
25 | ||
2f09413f LC |
26 | /* Well known TFTP port # */ |
27 | #define WELL_KNOWN_PORT 69 | |
28 | /* Millisecs to timeout for lost pkt */ | |
af2ca59e | 29 | #define TIMEOUT 5000UL |
fe8c2806 | 30 | #ifndef CONFIG_NET_RETRY_COUNT |
2f09413f | 31 | /* # of timeouts before giving up */ |
af2ca59e | 32 | # define TIMEOUT_COUNT 10 |
fe8c2806 WD |
33 | #else |
34 | # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2) | |
35 | #endif | |
2f09413f LC |
36 | /* Number of "loading" hashes per line (for checking the image size) */ |
37 | #define HASHES_PER_LINE 65 | |
fe8c2806 WD |
38 | |
39 | /* | |
40 | * TFTP operations. | |
41 | */ | |
42 | #define TFTP_RRQ 1 | |
43 | #define TFTP_WRQ 2 | |
44 | #define TFTP_DATA 3 | |
45 | #define TFTP_ACK 4 | |
46 | #define TFTP_ERROR 5 | |
fbe4b5cb | 47 | #define TFTP_OACK 6 |
fe8c2806 | 48 | |
8885c5fe JH |
49 | static ulong timeout_ms = TIMEOUT; |
50 | static int timeout_count_max = TIMEOUT_COUNT; | |
85b19802 | 51 | static ulong time_start; /* Record time we started tftp */ |
e83cc063 BS |
52 | |
53 | /* | |
54 | * These globals govern the timeout behavior when attempting a connection to a | |
8885c5fe | 55 | * TFTP server. tftp_timeout_ms specifies the number of milliseconds to |
e83cc063 | 56 | * wait for the server to respond to initial connection. Second global, |
8885c5fe JH |
57 | * tftp_timeout_count_max, gives the number of such connection retries. |
58 | * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be | |
e83cc063 BS |
59 | * positive. The globals are meant to be set (and restored) by code needing |
60 | * non-standard timeout behavior when initiating a TFTP transfer. | |
61 | */ | |
8885c5fe JH |
62 | ulong tftp_timeout_ms = TIMEOUT; |
63 | int tftp_timeout_count_max = TIMEOUT_COUNT; | |
e83cc063 | 64 | |
aafda38f RB |
65 | enum { |
66 | TFTP_ERR_UNDEFINED = 0, | |
67 | TFTP_ERR_FILE_NOT_FOUND = 1, | |
68 | TFTP_ERR_ACCESS_DENIED = 2, | |
69 | TFTP_ERR_DISK_FULL = 3, | |
70 | TFTP_ERR_UNEXPECTED_OPCODE = 4, | |
71 | TFTP_ERR_UNKNOWN_TRANSFER_ID = 5, | |
72 | TFTP_ERR_FILE_ALREADY_EXISTS = 6, | |
08139210 | 73 | TFTP_ERR_OPTION_NEGOTIATION = 8, |
aafda38f RB |
74 | }; |
75 | ||
049a95a7 | 76 | static struct in_addr tftp_remote_ip; |
2f09413f | 77 | /* The UDP port at their end */ |
8885c5fe | 78 | static int tftp_remote_port; |
2f09413f | 79 | /* The UDP port at our end */ |
8885c5fe JH |
80 | static int tftp_our_port; |
81 | static int timeout_count; | |
2f09413f | 82 | /* packet sequence number */ |
8885c5fe | 83 | static ulong tftp_cur_block; |
2f09413f | 84 | /* last packet sequence number received */ |
8885c5fe | 85 | static ulong tftp_prev_block; |
2f09413f | 86 | /* count of sequence number wraparounds */ |
8885c5fe | 87 | static ulong tftp_block_wrap; |
2f09413f | 88 | /* memory offset due to wrapping */ |
8885c5fe JH |
89 | static ulong tftp_block_wrap_offset; |
90 | static int tftp_state; | |
a156c47e SG |
91 | static ulong tftp_load_addr; |
92 | #ifdef CONFIG_LMB | |
93 | static ulong tftp_load_size; | |
94 | #endif | |
4fccb818 | 95 | #ifdef CONFIG_TFTP_TSIZE |
2f09413f | 96 | /* The file size reported by the server */ |
8885c5fe | 97 | static int tftp_tsize; |
2f09413f | 98 | /* The number of hashes we printed */ |
8885c5fe | 99 | static short tftp_tsize_num_hash; |
4fccb818 | 100 | #endif |
cc6b87ec RF |
101 | /* The window size negotiated */ |
102 | static ushort tftp_windowsize; | |
103 | /* Next block to send ack to */ | |
104 | static ushort tftp_next_ack; | |
105 | /* Last nack block we send */ | |
106 | static ushort tftp_last_nack; | |
1fb7cd49 | 107 | #ifdef CONFIG_CMD_TFTPPUT |
8885c5fe JH |
108 | /* 1 if writing, else 0 */ |
109 | static int tftp_put_active; | |
110 | /* 1 if we have sent the last block */ | |
111 | static int tftp_put_final_block_sent; | |
1fb7cd49 | 112 | #else |
8885c5fe | 113 | #define tftp_put_active 0 |
1fb7cd49 | 114 | #endif |
3f85ce27 | 115 | |
e3fb0abe | 116 | #define STATE_SEND_RRQ 1 |
fe8c2806 WD |
117 | #define STATE_DATA 2 |
118 | #define STATE_TOO_LARGE 3 | |
119 | #define STATE_BAD_MAGIC 4 | |
fbe4b5cb | 120 | #define STATE_OACK 5 |
e59e3562 | 121 | #define STATE_RECV_WRQ 6 |
1fb7cd49 | 122 | #define STATE_SEND_WRQ 7 |
08139210 | 123 | #define STATE_INVALID_OPTION 8 |
fe8c2806 | 124 | |
2f09413f LC |
125 | /* default TFTP block size */ |
126 | #define TFTP_BLOCK_SIZE 512 | |
127 | /* sequence number is 16 bit */ | |
128 | #define TFTP_SEQUENCE_SIZE ((ulong)(1<<16)) | |
3f85ce27 | 129 | |
fe8c2806 WD |
130 | #define DEFAULT_NAME_LEN (8 + 4 + 1) |
131 | static char default_filename[DEFAULT_NAME_LEN]; | |
a93907c4 JCPV |
132 | |
133 | #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN | |
134 | #define MAX_LEN 128 | |
135 | #else | |
136 | #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN | |
137 | #endif | |
138 | ||
139 | static char tftp_filename[MAX_LEN]; | |
fe8c2806 | 140 | |
85eb5caf WD |
141 | /* 512 is poor choice for ethernet, MTU is typically 1500. |
142 | * Minus eth.hdrs thats 1468. Can get 2x better throughput with | |
53a5c424 | 143 | * almost-MTU block sizes. At least try... fall back to 512 if need be. |
89ba81d1 | 144 | * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file) |
53a5c424 | 145 | */ |
89ba81d1 | 146 | |
cc6b87ec RF |
147 | /* When windowsize is defined to 1, |
148 | * tftp behaves the same way as it was | |
149 | * never declared | |
150 | */ | |
151 | #ifdef CONFIG_TFTP_WINDOWSIZE | |
152 | #define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE | |
153 | #else | |
154 | #define TFTP_WINDOWSIZE 1 | |
155 | #endif | |
156 | ||
8885c5fe | 157 | static unsigned short tftp_block_size = TFTP_BLOCK_SIZE; |
31d275b0 | 158 | static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE; |
cc6b87ec | 159 | static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE; |
53a5c424 | 160 | |
a156c47e | 161 | static inline int store_block(int block, uchar *src, unsigned int len) |
fe8c2806 | 162 | { |
ae0bdf09 LFT |
163 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset - |
164 | tftp_block_size; | |
3f85ce27 | 165 | ulong newsize = offset + len; |
a156c47e | 166 | ulong store_addr = tftp_load_addr + offset; |
6d0f6bcf | 167 | #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP |
fe8c2806 WD |
168 | int i, rc = 0; |
169 | ||
c718b143 | 170 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) { |
fe8c2806 | 171 | /* start address in flash? */ |
be1b0d27 JF |
172 | if (flash_info[i].flash_id == FLASH_UNKNOWN) |
173 | continue; | |
a156c47e | 174 | if (store_addr >= flash_info[i].start[0]) { |
fe8c2806 WD |
175 | rc = 1; |
176 | break; | |
177 | } | |
178 | } | |
179 | ||
180 | if (rc) { /* Flash is destination for this packet */ | |
a156c47e | 181 | rc = flash_write((char *)src, store_addr, len); |
fe8c2806 | 182 | if (rc) { |
c718b143 | 183 | flash_perror(rc); |
a156c47e | 184 | return rc; |
fe8c2806 | 185 | } |
13dfe943 | 186 | } else |
6d0f6bcf | 187 | #endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */ |
fe8c2806 | 188 | { |
a156c47e SG |
189 | void *ptr; |
190 | ||
191 | #ifdef CONFIG_LMB | |
ca48cb40 BM |
192 | ulong end_addr = tftp_load_addr + tftp_load_size; |
193 | ||
194 | if (!end_addr) | |
195 | end_addr = ULONG_MAX; | |
196 | ||
a156c47e | 197 | if (store_addr < tftp_load_addr || |
ca48cb40 | 198 | store_addr + len > end_addr) { |
a156c47e SG |
199 | puts("\nTFTP error: "); |
200 | puts("trying to overwrite reserved memory...\n"); | |
201 | return -1; | |
202 | } | |
203 | #endif | |
204 | ptr = map_sysmem(store_addr, len); | |
55d5fd9a JH |
205 | memcpy(ptr, src, len); |
206 | unmap_sysmem(ptr); | |
fe8c2806 WD |
207 | } |
208 | ||
1411157d JH |
209 | if (net_boot_file_size < newsize) |
210 | net_boot_file_size = newsize; | |
a156c47e SG |
211 | |
212 | return 0; | |
fe8c2806 WD |
213 | } |
214 | ||
e4cde2f7 | 215 | /* Clear our state ready for a new transfer */ |
165099e7 | 216 | static void new_transfer(void) |
e4cde2f7 | 217 | { |
8885c5fe JH |
218 | tftp_prev_block = 0; |
219 | tftp_block_wrap = 0; | |
220 | tftp_block_wrap_offset = 0; | |
e4cde2f7 | 221 | #ifdef CONFIG_CMD_TFTPPUT |
8885c5fe | 222 | tftp_put_final_block_sent = 0; |
e4cde2f7 SG |
223 | #endif |
224 | } | |
225 | ||
1fb7cd49 SG |
226 | #ifdef CONFIG_CMD_TFTPPUT |
227 | /** | |
228 | * Load the next block from memory to be sent over tftp. | |
229 | * | |
230 | * @param block Block number to send | |
231 | * @param dst Destination buffer for data | |
232 | * @param len Number of bytes in block (this one and every other) | |
185f812c | 233 | * Return: number of bytes loaded |
1fb7cd49 SG |
234 | */ |
235 | static int load_block(unsigned block, uchar *dst, unsigned len) | |
236 | { | |
237 | /* We may want to get the final block from the previous set */ | |
f6a158b9 LFT |
238 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset - |
239 | tftp_block_size; | |
1fb7cd49 SG |
240 | ulong tosend = len; |
241 | ||
1411157d | 242 | tosend = min(net_boot_file_size - offset, tosend); |
bb872dd9 | 243 | (void)memcpy(dst, (void *)(image_save_addr + offset), tosend); |
2bcc43b3 | 244 | debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__, |
8885c5fe | 245 | block, offset, len, tosend); |
1fb7cd49 SG |
246 | return tosend; |
247 | } | |
248 | #endif | |
249 | ||
8885c5fe JH |
250 | static void tftp_send(void); |
251 | static void tftp_timeout_handler(void); | |
fe8c2806 WD |
252 | |
253 | /**********************************************************************/ | |
254 | ||
f5329bbc SG |
255 | static void show_block_marker(void) |
256 | { | |
de5468e6 RH |
257 | ulong pos; |
258 | ||
f5329bbc | 259 | #ifdef CONFIG_TFTP_TSIZE |
8885c5fe | 260 | if (tftp_tsize) { |
de5468e6 | 261 | pos = tftp_cur_block * tftp_block_size + |
8885c5fe | 262 | tftp_block_wrap_offset; |
7628afeb MK |
263 | if (pos > tftp_tsize) |
264 | pos = tftp_tsize; | |
f5329bbc | 265 | |
8885c5fe | 266 | while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) { |
f5329bbc | 267 | putc('#'); |
8885c5fe | 268 | tftp_tsize_num_hash++; |
f5329bbc | 269 | } |
1fb7cd49 | 270 | } else |
f5329bbc | 271 | #endif |
1fb7cd49 | 272 | { |
de5468e6 RH |
273 | pos = (tftp_cur_block - 1) + |
274 | (tftp_block_wrap * TFTP_SEQUENCE_SIZE); | |
275 | if ((pos % 10) == 0) | |
f5329bbc | 276 | putc('#'); |
de5468e6 | 277 | else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0) |
f5329bbc SG |
278 | puts("\n\t "); |
279 | } | |
280 | } | |
281 | ||
e4cde2f7 SG |
282 | /** |
283 | * restart the current transfer due to an error | |
284 | * | |
285 | * @param msg Message to print for user | |
286 | */ | |
287 | static void restart(const char *msg) | |
288 | { | |
289 | printf("\n%s; starting again\n", msg); | |
bc0571fc | 290 | net_start_again(); |
e4cde2f7 SG |
291 | } |
292 | ||
293 | /* | |
294 | * Check if the block number has wrapped, and update progress | |
295 | * | |
296 | * TODO: The egregious use of global variables in this file should be tidied. | |
297 | */ | |
298 | static void update_block_number(void) | |
299 | { | |
300 | /* | |
301 | * RFC1350 specifies that the first data packet will | |
302 | * have sequence number 1. If we receive a sequence | |
303 | * number of 0 this means that there was a wrap | |
304 | * around of the (16 bit) counter. | |
305 | */ | |
8885c5fe JH |
306 | if (tftp_cur_block == 0 && tftp_prev_block != 0) { |
307 | tftp_block_wrap++; | |
308 | tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE; | |
309 | timeout_count = 0; /* we've done well, reset the timeout */ | |
e4cde2f7 | 310 | } |
de5468e6 | 311 | show_block_marker(); |
e4cde2f7 SG |
312 | } |
313 | ||
f5329bbc SG |
314 | /* The TFTP get or put is complete */ |
315 | static void tftp_complete(void) | |
316 | { | |
317 | #ifdef CONFIG_TFTP_TSIZE | |
318 | /* Print hash marks for the last packet received */ | |
8885c5fe | 319 | while (tftp_tsize && tftp_tsize_num_hash < 49) { |
f5329bbc | 320 | putc('#'); |
8885c5fe | 321 | tftp_tsize_num_hash++; |
f5329bbc | 322 | } |
8104f546 | 323 | puts(" "); |
8885c5fe | 324 | print_size(tftp_tsize, ""); |
f5329bbc | 325 | #endif |
85b19802 SG |
326 | time_start = get_timer(time_start); |
327 | if (time_start > 0) { | |
328 | puts("\n\t "); /* Line up with "Loading: " */ | |
1411157d | 329 | print_size(net_boot_file_size / |
85b19802 SG |
330 | time_start * 1000, "/s"); |
331 | } | |
f5329bbc | 332 | puts("\ndone\n"); |
5f59518a HS |
333 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI)) { |
334 | if (!tftp_put_active) | |
335 | efi_set_bootdev("Net", "", tftp_filename, | |
336 | map_sysmem(tftp_load_addr, 0), | |
337 | net_boot_file_size); | |
338 | } | |
22f6e99d | 339 | net_set_state(NETLOOP_SUCCESS); |
f5329bbc SG |
340 | } |
341 | ||
8885c5fe | 342 | static void tftp_send(void) |
fe8c2806 | 343 | { |
1fb7cd49 | 344 | uchar *pkt; |
db288a96 JH |
345 | uchar *xp; |
346 | int len = 0; | |
347 | ushort *s; | |
08139210 | 348 | bool err_pkt = false; |
fe8c2806 WD |
349 | |
350 | /* | |
351 | * We will always be sending some sort of packet, so | |
352 | * cobble together the packet headers now. | |
353 | */ | |
1203fcce | 354 | pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; |
fe8c2806 | 355 | |
8885c5fe | 356 | switch (tftp_state) { |
e3fb0abe | 357 | case STATE_SEND_RRQ: |
1fb7cd49 | 358 | case STATE_SEND_WRQ: |
fe8c2806 | 359 | xp = pkt; |
7bc5ee07 | 360 | s = (ushort *)pkt; |
8c6914f1 | 361 | #ifdef CONFIG_CMD_TFTPPUT |
8885c5fe | 362 | *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ : |
1fb7cd49 | 363 | TFTP_WRQ); |
8c6914f1 SG |
364 | #else |
365 | *s++ = htons(TFTP_RRQ); | |
366 | #endif | |
7bc5ee07 | 367 | pkt = (uchar *)s; |
c718b143 | 368 | strcpy((char *)pkt, tftp_filename); |
fe8c2806 | 369 | pkt += strlen(tftp_filename) + 1; |
c718b143 | 370 | strcpy((char *)pkt, "octet"); |
fe8c2806 | 371 | pkt += 5 /*strlen("octet")*/ + 1; |
c718b143 | 372 | strcpy((char *)pkt, "timeout"); |
fbe4b5cb | 373 | pkt += 7 /*strlen("timeout")*/ + 1; |
8885c5fe | 374 | sprintf((char *)pkt, "%lu", timeout_ms / 1000); |
0ebf04c6 | 375 | debug("send option \"timeout %s\"\n", (char *)pkt); |
fbe4b5cb | 376 | pkt += strlen((char *)pkt) + 1; |
4fccb818 | 377 | #ifdef CONFIG_TFTP_TSIZE |
1411157d JH |
378 | pkt += sprintf((char *)pkt, "tsize%c%u%c", |
379 | 0, net_boot_file_size, 0); | |
4fccb818 | 380 | #endif |
53a5c424 | 381 | /* try for more effic. blk size */ |
c718b143 | 382 | pkt += sprintf((char *)pkt, "blksize%c%d%c", |
8885c5fe | 383 | 0, tftp_block_size_option, 0); |
cc6b87ec RF |
384 | |
385 | /* try for more effic. window size. | |
386 | * Implemented only for tftp get. | |
387 | * Don't bother sending if it's 1 | |
388 | */ | |
389 | if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1) | |
390 | pkt += sprintf((char *)pkt, "windowsize%c%d%c", | |
391 | 0, tftp_window_size_option, 0); | |
fe8c2806 WD |
392 | len = pkt - xp; |
393 | break; | |
394 | ||
fbe4b5cb | 395 | case STATE_OACK: |
e59e3562 LC |
396 | |
397 | case STATE_RECV_WRQ: | |
53a5c424 | 398 | case STATE_DATA: |
fe8c2806 | 399 | xp = pkt; |
7bc5ee07 | 400 | s = (ushort *)pkt; |
1fb7cd49 | 401 | s[0] = htons(TFTP_ACK); |
8885c5fe | 402 | s[1] = htons(tftp_cur_block); |
1fb7cd49 SG |
403 | pkt = (uchar *)(s + 2); |
404 | #ifdef CONFIG_CMD_TFTPPUT | |
8885c5fe JH |
405 | if (tftp_put_active) { |
406 | int toload = tftp_block_size; | |
407 | int loaded = load_block(tftp_cur_block, pkt, toload); | |
1fb7cd49 SG |
408 | |
409 | s[0] = htons(TFTP_DATA); | |
410 | pkt += loaded; | |
8885c5fe | 411 | tftp_put_final_block_sent = (loaded < toload); |
1fb7cd49 SG |
412 | } |
413 | #endif | |
fe8c2806 WD |
414 | len = pkt - xp; |
415 | break; | |
416 | ||
417 | case STATE_TOO_LARGE: | |
418 | xp = pkt; | |
7bc5ee07 WD |
419 | s = (ushort *)pkt; |
420 | *s++ = htons(TFTP_ERROR); | |
1fb7cd49 SG |
421 | *s++ = htons(3); |
422 | ||
7bc5ee07 | 423 | pkt = (uchar *)s; |
c718b143 | 424 | strcpy((char *)pkt, "File too large"); |
fe8c2806 WD |
425 | pkt += 14 /*strlen("File too large")*/ + 1; |
426 | len = pkt - xp; | |
08139210 | 427 | err_pkt = true; |
fe8c2806 WD |
428 | break; |
429 | ||
430 | case STATE_BAD_MAGIC: | |
431 | xp = pkt; | |
7bc5ee07 WD |
432 | s = (ushort *)pkt; |
433 | *s++ = htons(TFTP_ERROR); | |
434 | *s++ = htons(2); | |
435 | pkt = (uchar *)s; | |
c718b143 | 436 | strcpy((char *)pkt, "File has bad magic"); |
fe8c2806 WD |
437 | pkt += 18 /*strlen("File has bad magic")*/ + 1; |
438 | len = pkt - xp; | |
08139210 RH |
439 | err_pkt = true; |
440 | break; | |
441 | ||
442 | case STATE_INVALID_OPTION: | |
443 | xp = pkt; | |
444 | s = (ushort *)pkt; | |
445 | *s++ = htons(TFTP_ERROR); | |
446 | *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION); | |
447 | pkt = (uchar *)s; | |
448 | strcpy((char *)pkt, "Option Negotiation Failed"); | |
449 | /* strlen("Option Negotiation Failed") + NULL*/ | |
450 | pkt += 25 + 1; | |
451 | len = pkt - xp; | |
452 | err_pkt = true; | |
fe8c2806 WD |
453 | break; |
454 | } | |
455 | ||
8885c5fe JH |
456 | net_send_udp_packet(net_server_ethaddr, tftp_remote_ip, |
457 | tftp_remote_port, tftp_our_port, len); | |
08139210 RH |
458 | |
459 | if (err_pkt) | |
460 | net_set_state(NETLOOP_FAIL); | |
fe8c2806 WD |
461 | } |
462 | ||
39bccd21 | 463 | #ifdef CONFIG_CMD_TFTPPUT |
1fb7cd49 | 464 | static void icmp_handler(unsigned type, unsigned code, unsigned dest, |
049a95a7 JH |
465 | struct in_addr sip, unsigned src, uchar *pkt, |
466 | unsigned len) | |
1fb7cd49 SG |
467 | { |
468 | if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) { | |
469 | /* Oh dear the other end has gone away */ | |
470 | restart("TFTP server died"); | |
471 | } | |
472 | } | |
39bccd21 | 473 | #endif |
1fb7cd49 | 474 | |
049a95a7 JH |
475 | static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip, |
476 | unsigned src, unsigned len) | |
fe8c2806 | 477 | { |
61fdd4f7 KP |
478 | __be16 proto; |
479 | __be16 *s; | |
ff13ac8c | 480 | int i; |
08139210 | 481 | u16 timeout_val_rcvd; |
fe8c2806 | 482 | |
8885c5fe | 483 | if (dest != tftp_our_port) { |
0bdd8acc | 484 | return; |
fe8c2806 | 485 | } |
8885c5fe JH |
486 | if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port && |
487 | tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ) | |
fe8c2806 | 488 | return; |
fe8c2806 | 489 | |
7bc325a1 | 490 | if (len < 2) |
fe8c2806 | 491 | return; |
fe8c2806 WD |
492 | len -= 2; |
493 | /* warning: don't use increment (++) in ntohs() macros!! */ | |
61fdd4f7 | 494 | s = (__be16 *)pkt; |
7bc5ee07 WD |
495 | proto = *s++; |
496 | pkt = (uchar *)s; | |
fe8c2806 | 497 | switch (ntohs(proto)) { |
fe8c2806 | 498 | case TFTP_RRQ: |
1fb7cd49 SG |
499 | break; |
500 | ||
fe8c2806 | 501 | case TFTP_ACK: |
1fb7cd49 | 502 | #ifdef CONFIG_CMD_TFTPPUT |
8885c5fe JH |
503 | if (tftp_put_active) { |
504 | if (tftp_put_final_block_sent) { | |
1fb7cd49 SG |
505 | tftp_complete(); |
506 | } else { | |
507 | /* | |
508 | * Move to the next block. We want our block | |
509 | * count to wrap just like the other end! | |
510 | */ | |
511 | int block = ntohs(*s); | |
8885c5fe | 512 | int ack_ok = (tftp_cur_block == block); |
1fb7cd49 | 513 | |
6bf46367 | 514 | tftp_prev_block = tftp_cur_block; |
8885c5fe | 515 | tftp_cur_block = (unsigned short)(block + 1); |
1fb7cd49 SG |
516 | update_block_number(); |
517 | if (ack_ok) | |
8885c5fe | 518 | tftp_send(); /* Send next data block */ |
1fb7cd49 SG |
519 | } |
520 | } | |
521 | #endif | |
fe8c2806 | 522 | break; |
1fb7cd49 | 523 | |
fe8c2806 WD |
524 | default: |
525 | break; | |
526 | ||
e59e3562 LC |
527 | #ifdef CONFIG_CMD_TFTPSRV |
528 | case TFTP_WRQ: | |
529 | debug("Got WRQ\n"); | |
049a95a7 | 530 | tftp_remote_ip = sip; |
8885c5fe JH |
531 | tftp_remote_port = src; |
532 | tftp_our_port = 1024 + (get_timer(0) % 3072); | |
e4cde2f7 | 533 | new_transfer(); |
8885c5fe | 534 | tftp_send(); /* Send ACK(0) */ |
e59e3562 LC |
535 | break; |
536 | #endif | |
537 | ||
fbe4b5cb | 538 | case TFTP_OACK: |
08139210 RH |
539 | debug("Got OACK: "); |
540 | for (i = 0; i < len; i++) { | |
541 | if (pkt[i] == '\0') | |
542 | debug(" "); | |
543 | else | |
544 | debug("%c", pkt[i]); | |
545 | } | |
546 | debug("\n"); | |
8885c5fe JH |
547 | tftp_state = STATE_OACK; |
548 | tftp_remote_port = src; | |
60174746 WD |
549 | /* |
550 | * Check for 'blksize' option. | |
551 | * Careful: "i" is signed, "len" is unsigned, thus | |
552 | * something like "len-8" may give a *huge* number | |
553 | */ | |
c718b143 | 554 | for (i = 0; i+8 < len; i++) { |
08139210 | 555 | if (strcasecmp((char *)pkt + i, "blksize") == 0) { |
8885c5fe | 556 | tftp_block_size = (unsigned short) |
0b1284eb | 557 | dectoul((char *)pkt + i + 8, NULL); |
08139210 | 558 | debug("Blocksize oack: %s, %d\n", |
8885c5fe | 559 | (char *)pkt + i + 8, tftp_block_size); |
08139210 RH |
560 | if (tftp_block_size > tftp_block_size_option) { |
561 | printf("Invalid blk size(=%d)\n", | |
562 | tftp_block_size); | |
563 | tftp_state = STATE_INVALID_OPTION; | |
564 | } | |
565 | } | |
566 | if (strcasecmp((char *)pkt + i, "timeout") == 0) { | |
567 | timeout_val_rcvd = (unsigned short) | |
0b1284eb | 568 | dectoul((char *)pkt + i + 8, NULL); |
08139210 RH |
569 | debug("Timeout oack: %s, %d\n", |
570 | (char *)pkt + i + 8, timeout_val_rcvd); | |
571 | if (timeout_val_rcvd != (timeout_ms / 1000)) { | |
572 | printf("Invalid timeout val(=%d s)\n", | |
573 | timeout_val_rcvd); | |
574 | tftp_state = STATE_INVALID_OPTION; | |
575 | } | |
ff13ac8c | 576 | } |
4fccb818 | 577 | #ifdef CONFIG_TFTP_TSIZE |
08139210 | 578 | if (strcasecmp((char *)pkt + i, "tsize") == 0) { |
0b1284eb SG |
579 | tftp_tsize = dectoul((char *)pkt + i + 6, |
580 | NULL); | |
4fccb818 | 581 | debug("size = %s, %d\n", |
8885c5fe | 582 | (char *)pkt + i + 6, tftp_tsize); |
4fccb818 RG |
583 | } |
584 | #endif | |
cc6b87ec RF |
585 | if (strcasecmp((char *)pkt + i, "windowsize") == 0) { |
586 | tftp_windowsize = | |
0b1284eb | 587 | dectoul((char *)pkt + i + 11, NULL); |
cc6b87ec RF |
588 | debug("windowsize = %s, %d\n", |
589 | (char *)pkt + i + 11, tftp_windowsize); | |
590 | } | |
53a5c424 | 591 | } |
cc6b87ec RF |
592 | |
593 | tftp_next_ack = tftp_windowsize; | |
594 | ||
1fb7cd49 | 595 | #ifdef CONFIG_CMD_TFTPPUT |
08139210 | 596 | if (tftp_put_active && tftp_state == STATE_OACK) { |
1fb7cd49 | 597 | /* Get ready to send the first block */ |
8885c5fe JH |
598 | tftp_state = STATE_DATA; |
599 | tftp_cur_block++; | |
1fb7cd49 SG |
600 | } |
601 | #endif | |
8885c5fe | 602 | tftp_send(); /* Send ACK or first data block */ |
fbe4b5cb | 603 | break; |
fe8c2806 WD |
604 | case TFTP_DATA: |
605 | if (len < 2) | |
606 | return; | |
607 | len -= 2; | |
cc6b87ec RF |
608 | |
609 | if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) { | |
610 | debug("Received unexpected block: %d, expected: %d\n", | |
611 | ntohs(*(__be16 *)pkt), | |
612 | (ushort)(tftp_cur_block + 1)); | |
613 | /* | |
614 | * If one packet is dropped most likely | |
615 | * all other buffers in the window | |
616 | * that will arrive will cause a sending NACK. | |
617 | * This just overwellms the server, let's just send one. | |
618 | */ | |
619 | if (tftp_last_nack != tftp_cur_block) { | |
620 | tftp_send(); | |
621 | tftp_last_nack = tftp_cur_block; | |
622 | tftp_next_ack = (ushort)(tftp_cur_block + | |
623 | tftp_windowsize); | |
624 | } | |
625 | break; | |
626 | } | |
627 | ||
628 | tftp_cur_block++; | |
629 | tftp_cur_block %= TFTP_SEQUENCE_SIZE; | |
3f85ce27 | 630 | |
beb61e13 | 631 | if (tftp_state == STATE_SEND_RRQ) { |
08139210 | 632 | debug("Server did not acknowledge any options!\n"); |
beb61e13 HB |
633 | tftp_next_ack = tftp_windowsize; |
634 | } | |
fbe4b5cb | 635 | |
8885c5fe JH |
636 | if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK || |
637 | tftp_state == STATE_RECV_WRQ) { | |
3f85ce27 | 638 | /* first block received */ |
8885c5fe JH |
639 | tftp_state = STATE_DATA; |
640 | tftp_remote_port = src; | |
e4cde2f7 | 641 | new_transfer(); |
fe8c2806 | 642 | |
8885c5fe JH |
643 | if (tftp_cur_block != 1) { /* Assertion */ |
644 | puts("\nTFTP error: "); | |
645 | printf("First block is not block 1 (%ld)\n", | |
646 | tftp_cur_block); | |
647 | puts("Starting again\n\n"); | |
bc0571fc | 648 | net_start_again(); |
fe8c2806 WD |
649 | break; |
650 | } | |
651 | } | |
652 | ||
8885c5fe JH |
653 | if (tftp_cur_block == tftp_prev_block) { |
654 | /* Same block again; ignore it. */ | |
fe8c2806 WD |
655 | break; |
656 | } | |
657 | ||
de5468e6 | 658 | update_block_number(); |
8885c5fe | 659 | tftp_prev_block = tftp_cur_block; |
f5fb7346 | 660 | timeout_count_max = tftp_timeout_count_max; |
bc0571fc | 661 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
fe8c2806 | 662 | |
ae0bdf09 | 663 | if (store_block(tftp_cur_block, pkt + 2, len)) { |
a156c47e SG |
664 | eth_halt(); |
665 | net_set_state(NETLOOP_FAIL); | |
666 | break; | |
667 | } | |
fe8c2806 | 668 | |
2dddc1bb RF |
669 | if (len < tftp_block_size) { |
670 | tftp_send(); | |
671 | tftp_complete(); | |
672 | break; | |
673 | } | |
674 | ||
fe8c2806 | 675 | /* |
4d69e98c | 676 | * Acknowledge the block just received, which will prompt |
20478cea | 677 | * the remote for the next one. |
fe8c2806 | 678 | */ |
cc6b87ec RF |
679 | if (tftp_cur_block == tftp_next_ack) { |
680 | tftp_send(); | |
681 | tftp_next_ack += tftp_windowsize; | |
682 | } | |
fe8c2806 WD |
683 | break; |
684 | ||
685 | case TFTP_ERROR: | |
c718b143 | 686 | printf("\nTFTP error: '%s' (%d)\n", |
61fdd4f7 | 687 | pkt + 2, ntohs(*(__be16 *)pkt)); |
aafda38f | 688 | |
61fdd4f7 | 689 | switch (ntohs(*(__be16 *)pkt)) { |
aafda38f RB |
690 | case TFTP_ERR_FILE_NOT_FOUND: |
691 | case TFTP_ERR_ACCESS_DENIED: | |
692 | puts("Not retrying...\n"); | |
693 | eth_halt(); | |
22f6e99d | 694 | net_set_state(NETLOOP_FAIL); |
aafda38f RB |
695 | break; |
696 | case TFTP_ERR_UNDEFINED: | |
697 | case TFTP_ERR_DISK_FULL: | |
698 | case TFTP_ERR_UNEXPECTED_OPCODE: | |
699 | case TFTP_ERR_UNKNOWN_TRANSFER_ID: | |
700 | case TFTP_ERR_FILE_ALREADY_EXISTS: | |
701 | default: | |
702 | puts("Starting again\n\n"); | |
bc0571fc | 703 | net_start_again(); |
aafda38f RB |
704 | break; |
705 | } | |
fe8c2806 WD |
706 | break; |
707 | } | |
708 | } | |
709 | ||
710 | ||
8885c5fe | 711 | static void tftp_timeout_handler(void) |
fe8c2806 | 712 | { |
8885c5fe | 713 | if (++timeout_count > timeout_count_max) { |
e4cde2f7 | 714 | restart("Retry count exceeded"); |
fe8c2806 | 715 | } else { |
c718b143 | 716 | puts("T "); |
bc0571fc | 717 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
8885c5fe JH |
718 | if (tftp_state != STATE_RECV_WRQ) |
719 | tftp_send(); | |
fe8c2806 WD |
720 | } |
721 | } | |
722 | ||
bb872dd9 | 723 | /* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */ |
a156c47e SG |
724 | static int tftp_init_load_addr(void) |
725 | { | |
726 | #ifdef CONFIG_LMB | |
727 | struct lmb lmb; | |
728 | phys_size_t max_size; | |
729 | ||
9cc2323f | 730 | lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob); |
a156c47e | 731 | |
bb872dd9 | 732 | max_size = lmb_get_free_size(&lmb, image_load_addr); |
a156c47e SG |
733 | if (!max_size) |
734 | return -1; | |
735 | ||
736 | tftp_load_size = max_size; | |
737 | #endif | |
bb872dd9 | 738 | tftp_load_addr = image_load_addr; |
a156c47e SG |
739 | return 0; |
740 | } | |
fe8c2806 | 741 | |
8885c5fe | 742 | void tftp_start(enum proto_t protocol) |
fe8c2806 | 743 | { |
f5fb7346 | 744 | #if CONFIG_NET_TFTP_VARS |
ecb0ccd9 | 745 | char *ep; /* Environment pointer */ |
89ba81d1 | 746 | |
c96f86ee WD |
747 | /* |
748 | * Allow the user to choose TFTP blocksize and timeout. | |
749 | * TFTP protocol has a minimal timeout of 1 second. | |
750 | */ | |
f5fb7346 | 751 | |
00caae6d | 752 | ep = env_get("tftpblocksize"); |
2cb53608 | 753 | if (ep != NULL) |
8885c5fe | 754 | tftp_block_size_option = simple_strtol(ep, NULL, 10); |
c96f86ee | 755 | |
cc6b87ec RF |
756 | ep = env_get("tftpwindowsize"); |
757 | if (ep != NULL) | |
758 | tftp_window_size_option = simple_strtol(ep, NULL, 10); | |
759 | ||
00caae6d | 760 | ep = env_get("tftptimeout"); |
2cb53608 | 761 | if (ep != NULL) |
8885c5fe | 762 | timeout_ms = simple_strtol(ep, NULL, 10); |
c96f86ee | 763 | |
af2ca59e BM |
764 | if (timeout_ms < 1000) { |
765 | printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n", | |
8885c5fe | 766 | timeout_ms); |
af2ca59e | 767 | timeout_ms = 1000; |
c96f86ee WD |
768 | } |
769 | ||
00caae6d | 770 | ep = env_get("tftptimeoutcountmax"); |
f5fb7346 AA |
771 | if (ep != NULL) |
772 | tftp_timeout_count_max = simple_strtol(ep, NULL, 10); | |
773 | ||
774 | if (tftp_timeout_count_max < 0) { | |
775 | printf("TFTP timeout count max (%d ms) negative, set to 0\n", | |
776 | tftp_timeout_count_max); | |
777 | tftp_timeout_count_max = 0; | |
778 | } | |
779 | #endif | |
780 | ||
cc6b87ec RF |
781 | debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n", |
782 | tftp_block_size_option, tftp_window_size_option, timeout_ms); | |
ecb0ccd9 | 783 | |
049a95a7 | 784 | tftp_remote_ip = net_server_ip; |
6ab12830 | 785 | if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) { |
ea45cb0a | 786 | sprintf(default_filename, "%02X%02X%02X%02X.img", |
049a95a7 JH |
787 | net_ip.s_addr & 0xFF, |
788 | (net_ip.s_addr >> 8) & 0xFF, | |
789 | (net_ip.s_addr >> 16) & 0xFF, | |
790 | (net_ip.s_addr >> 24) & 0xFF); | |
a93907c4 | 791 | |
0c17b1b7 VZ |
792 | strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN); |
793 | tftp_filename[DEFAULT_NAME_LEN - 1] = 0; | |
fe8c2806 | 794 | |
c718b143 | 795 | printf("*** Warning: no boot file name; using '%s'\n", |
8885c5fe | 796 | tftp_filename); |
fe8c2806 WD |
797 | } |
798 | ||
c718b143 | 799 | printf("Using %s device\n", eth_get_name()); |
1fb7cd49 | 800 | printf("TFTP %s server %pI4; our IP address is %pI4", |
8c6914f1 SG |
801 | #ifdef CONFIG_CMD_TFTPPUT |
802 | protocol == TFTPPUT ? "to" : "from", | |
803 | #else | |
8885c5fe | 804 | "from", |
8c6914f1 | 805 | #endif |
8885c5fe | 806 | &tftp_remote_ip, &net_ip); |
fe8c2806 WD |
807 | |
808 | /* Check if we need to send across this subnet */ | |
049a95a7 JH |
809 | if (net_gateway.s_addr && net_netmask.s_addr) { |
810 | struct in_addr our_net; | |
811 | struct in_addr remote_net; | |
812 | ||
813 | our_net.s_addr = net_ip.s_addr & net_netmask.s_addr; | |
814 | remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr; | |
815 | if (our_net.s_addr != remote_net.s_addr) | |
816 | printf("; sending through gateway %pI4", &net_gateway); | |
fe8c2806 | 817 | } |
c718b143 | 818 | putc('\n'); |
fe8c2806 | 819 | |
c718b143 | 820 | printf("Filename '%s'.", tftp_filename); |
fe8c2806 | 821 | |
1411157d JH |
822 | if (net_boot_file_expected_size_in_blocks) { |
823 | printf(" Size is 0x%x Bytes = ", | |
824 | net_boot_file_expected_size_in_blocks << 9); | |
825 | print_size(net_boot_file_expected_size_in_blocks << 9, ""); | |
fe8c2806 WD |
826 | } |
827 | ||
c718b143 | 828 | putc('\n'); |
1fb7cd49 | 829 | #ifdef CONFIG_CMD_TFTPPUT |
8885c5fe JH |
830 | tftp_put_active = (protocol == TFTPPUT); |
831 | if (tftp_put_active) { | |
bb872dd9 SG |
832 | printf("Save address: 0x%lx\n", image_save_addr); |
833 | printf("Save size: 0x%lx\n", image_save_size); | |
834 | net_boot_file_size = image_save_size; | |
1fb7cd49 | 835 | puts("Saving: *\b"); |
8885c5fe | 836 | tftp_state = STATE_SEND_WRQ; |
1fb7cd49 SG |
837 | new_transfer(); |
838 | } else | |
839 | #endif | |
840 | { | |
a156c47e SG |
841 | if (tftp_init_load_addr()) { |
842 | eth_halt(); | |
843 | net_set_state(NETLOOP_FAIL); | |
844 | puts("\nTFTP error: "); | |
845 | puts("trying to overwrite reserved memory...\n"); | |
846 | return; | |
847 | } | |
848 | printf("Load address: 0x%lx\n", tftp_load_addr); | |
1fb7cd49 | 849 | puts("Loading: *\b"); |
8885c5fe | 850 | tftp_state = STATE_SEND_RRQ; |
1fb7cd49 | 851 | } |
fe8c2806 | 852 | |
85b19802 | 853 | time_start = get_timer(0); |
8885c5fe | 854 | timeout_count_max = tftp_timeout_count_max; |
e83cc063 | 855 | |
bc0571fc | 856 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
049a95a7 | 857 | net_set_udp_handler(tftp_handler); |
39bccd21 | 858 | #ifdef CONFIG_CMD_TFTPPUT |
1fb7cd49 | 859 | net_set_icmp_handler(icmp_handler); |
39bccd21 | 860 | #endif |
8885c5fe JH |
861 | tftp_remote_port = WELL_KNOWN_PORT; |
862 | timeout_count = 0; | |
ecb0ccd9 | 863 | /* Use a pseudo-random port unless a specific port is set */ |
8885c5fe | 864 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
53a5c424 | 865 | |
ecb0ccd9 | 866 | #ifdef CONFIG_TFTP_PORT |
00caae6d | 867 | ep = env_get("tftpdstp"); |
7bc325a1 | 868 | if (ep != NULL) |
8885c5fe | 869 | tftp_remote_port = simple_strtol(ep, NULL, 10); |
00caae6d | 870 | ep = env_get("tftpsrcp"); |
7bc325a1 | 871 | if (ep != NULL) |
8885c5fe | 872 | tftp_our_port = simple_strtol(ep, NULL, 10); |
ecb0ccd9 | 873 | #endif |
8885c5fe | 874 | tftp_cur_block = 0; |
cc6b87ec RF |
875 | tftp_windowsize = 1; |
876 | tftp_last_nack = 0; | |
73a8b27c | 877 | /* zero out server ether in case the server ip has changed */ |
0adb5b76 | 878 | memset(net_server_ethaddr, 0, 6); |
8885c5fe JH |
879 | /* Revert tftp_block_size to dflt */ |
880 | tftp_block_size = TFTP_BLOCK_SIZE; | |
4fccb818 | 881 | #ifdef CONFIG_TFTP_TSIZE |
8885c5fe JH |
882 | tftp_tsize = 0; |
883 | tftp_tsize_num_hash = 0; | |
4fccb818 | 884 | #endif |
73a8b27c | 885 | |
8885c5fe | 886 | tftp_send(); |
fe8c2806 WD |
887 | } |
888 | ||
e59e3562 | 889 | #ifdef CONFIG_CMD_TFTPSRV |
8885c5fe | 890 | void tftp_start_server(void) |
e59e3562 LC |
891 | { |
892 | tftp_filename[0] = 0; | |
893 | ||
a156c47e SG |
894 | if (tftp_init_load_addr()) { |
895 | eth_halt(); | |
896 | net_set_state(NETLOOP_FAIL); | |
897 | puts("\nTFTP error: trying to overwrite reserved memory...\n"); | |
898 | return; | |
899 | } | |
e59e3562 | 900 | printf("Using %s device\n", eth_get_name()); |
049a95a7 | 901 | printf("Listening for TFTP transfer on %pI4\n", &net_ip); |
a156c47e | 902 | printf("Load address: 0x%lx\n", tftp_load_addr); |
e59e3562 LC |
903 | |
904 | puts("Loading: *\b"); | |
905 | ||
f5fb7346 | 906 | timeout_count_max = tftp_timeout_count_max; |
8885c5fe JH |
907 | timeout_count = 0; |
908 | timeout_ms = TIMEOUT; | |
bc0571fc | 909 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
e59e3562 | 910 | |
8885c5fe JH |
911 | /* Revert tftp_block_size to dflt */ |
912 | tftp_block_size = TFTP_BLOCK_SIZE; | |
913 | tftp_cur_block = 0; | |
914 | tftp_our_port = WELL_KNOWN_PORT; | |
e59e3562 LC |
915 | |
916 | #ifdef CONFIG_TFTP_TSIZE | |
8885c5fe JH |
917 | tftp_tsize = 0; |
918 | tftp_tsize_num_hash = 0; | |
e59e3562 LC |
919 | #endif |
920 | ||
8885c5fe | 921 | tftp_state = STATE_RECV_WRQ; |
049a95a7 | 922 | net_set_udp_handler(tftp_handler); |
8e52533d AR |
923 | |
924 | /* zero out server ether in case the server ip has changed */ | |
0adb5b76 | 925 | memset(net_server_ethaddr, 0, 6); |
e59e3562 LC |
926 | } |
927 | #endif /* CONFIG_CMD_TFTPSRV */ |