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