wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 2 | * Copyright 1994, 1995, 2000 Neil Russell. |
| 3 | * (See License) |
| 4 | * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 5 | * Copyright 2011 Comelit Group SpA, |
| 6 | * Luca Ceresoli <luca.ceresoli@comelit.it> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <command.h> |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 11 | #include <efi_loader.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 8e8ccfe | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 13 | #include <image.h> |
Joe Hershberger | 55d5fd9 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 14 | #include <mapmem.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 15 | #include <net.h> |
Lukasz Majewski | 3469695 | 2015-08-24 00:21:43 +0200 | [diff] [blame] | 16 | #include <net/tftp.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 17 | #include "bootp.h" |
Joe Hershberger | 13dfe94 | 2012-05-15 08:59:12 +0000 | [diff] [blame] | 18 | #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP |
| 19 | #include <flash.h> |
| 20 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 21 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 24 | /* Well known TFTP port # */ |
| 25 | #define WELL_KNOWN_PORT 69 |
| 26 | /* Millisecs to timeout for lost pkt */ |
Bin Meng | af2ca59 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 27 | #define TIMEOUT 5000UL |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 28 | #ifndef CONFIG_NET_RETRY_COUNT |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 29 | /* # of timeouts before giving up */ |
Bin Meng | af2ca59 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 30 | # define TIMEOUT_COUNT 10 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 31 | #else |
| 32 | # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2) |
| 33 | #endif |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 34 | /* Number of "loading" hashes per line (for checking the image size) */ |
| 35 | #define HASHES_PER_LINE 65 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 36 | |
| 37 | /* |
| 38 | * TFTP operations. |
| 39 | */ |
| 40 | #define TFTP_RRQ 1 |
| 41 | #define TFTP_WRQ 2 |
| 42 | #define TFTP_DATA 3 |
| 43 | #define TFTP_ACK 4 |
| 44 | #define TFTP_ERROR 5 |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 45 | #define TFTP_OACK 6 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 46 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 47 | static ulong timeout_ms = TIMEOUT; |
| 48 | static int timeout_count_max = TIMEOUT_COUNT; |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 49 | static ulong time_start; /* Record time we started tftp */ |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * These globals govern the timeout behavior when attempting a connection to a |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 53 | * TFTP server. tftp_timeout_ms specifies the number of milliseconds to |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 54 | * wait for the server to respond to initial connection. Second global, |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 55 | * tftp_timeout_count_max, gives the number of such connection retries. |
| 56 | * tftp_timeout_count_max must be non-negative and tftp_timeout_ms must be |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 57 | * positive. The globals are meant to be set (and restored) by code needing |
| 58 | * non-standard timeout behavior when initiating a TFTP transfer. |
| 59 | */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 60 | ulong tftp_timeout_ms = TIMEOUT; |
| 61 | int tftp_timeout_count_max = TIMEOUT_COUNT; |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 62 | |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 63 | enum { |
| 64 | TFTP_ERR_UNDEFINED = 0, |
| 65 | TFTP_ERR_FILE_NOT_FOUND = 1, |
| 66 | TFTP_ERR_ACCESS_DENIED = 2, |
| 67 | TFTP_ERR_DISK_FULL = 3, |
| 68 | TFTP_ERR_UNEXPECTED_OPCODE = 4, |
| 69 | TFTP_ERR_UNKNOWN_TRANSFER_ID = 5, |
| 70 | TFTP_ERR_FILE_ALREADY_EXISTS = 6, |
| 71 | }; |
| 72 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 73 | static struct in_addr tftp_remote_ip; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 74 | /* The UDP port at their end */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 75 | static int tftp_remote_port; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 76 | /* The UDP port at our end */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 77 | static int tftp_our_port; |
| 78 | static int timeout_count; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 79 | /* packet sequence number */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 80 | static ulong tftp_cur_block; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 81 | /* last packet sequence number received */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 82 | static ulong tftp_prev_block; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 83 | /* count of sequence number wraparounds */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 84 | static ulong tftp_block_wrap; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 85 | /* memory offset due to wrapping */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 86 | static ulong tftp_block_wrap_offset; |
| 87 | static int tftp_state; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 88 | static ulong tftp_load_addr; |
| 89 | #ifdef CONFIG_LMB |
| 90 | static ulong tftp_load_size; |
| 91 | #endif |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 92 | #ifdef CONFIG_TFTP_TSIZE |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 93 | /* The file size reported by the server */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 94 | static int tftp_tsize; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 95 | /* The number of hashes we printed */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 96 | static short tftp_tsize_num_hash; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 97 | #endif |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 98 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 99 | /* 1 if writing, else 0 */ |
| 100 | static int tftp_put_active; |
| 101 | /* 1 if we have sent the last block */ |
| 102 | static int tftp_put_final_block_sent; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 103 | #else |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 104 | #define tftp_put_active 0 |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 105 | #endif |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 106 | |
Luca Ceresoli | e3fb0ab | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 107 | #define STATE_SEND_RRQ 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 108 | #define STATE_DATA 2 |
| 109 | #define STATE_TOO_LARGE 3 |
| 110 | #define STATE_BAD_MAGIC 4 |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 111 | #define STATE_OACK 5 |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 112 | #define STATE_RECV_WRQ 6 |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 113 | #define STATE_SEND_WRQ 7 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 114 | |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 115 | /* default TFTP block size */ |
| 116 | #define TFTP_BLOCK_SIZE 512 |
| 117 | /* sequence number is 16 bit */ |
| 118 | #define TFTP_SEQUENCE_SIZE ((ulong)(1<<16)) |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 119 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 120 | #define DEFAULT_NAME_LEN (8 + 4 + 1) |
| 121 | static char default_filename[DEFAULT_NAME_LEN]; |
Jean-Christophe PLAGNIOL-VILLARD | a93907c | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 122 | |
| 123 | #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN |
| 124 | #define MAX_LEN 128 |
| 125 | #else |
| 126 | #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN |
| 127 | #endif |
| 128 | |
| 129 | static char tftp_filename[MAX_LEN]; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 130 | |
Wolfgang Denk | 85eb5ca | 2007-08-14 09:47:27 +0200 | [diff] [blame] | 131 | /* 512 is poor choice for ethernet, MTU is typically 1500. |
| 132 | * Minus eth.hdrs thats 1468. Can get 2x better throughput with |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 133 | * almost-MTU block sizes. At least try... fall back to 512 if need be. |
Alessandro Rubini | 89ba81d | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 134 | * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file) |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 135 | */ |
Alessandro Rubini | 89ba81d | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 136 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 137 | static unsigned short tftp_block_size = TFTP_BLOCK_SIZE; |
Patrick Delaunay | 31d275b | 2020-04-22 14:18:26 +0200 | [diff] [blame] | 138 | static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE; |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 139 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 140 | static inline int store_block(int block, uchar *src, unsigned int len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 141 | { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 142 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset; |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 143 | ulong newsize = offset + len; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 144 | ulong store_addr = tftp_load_addr + offset; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 145 | #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 146 | int i, rc = 0; |
| 147 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 148 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 149 | /* start address in flash? */ |
Jochen Friedrich | be1b0d2 | 2008-09-02 11:24:59 +0200 | [diff] [blame] | 150 | if (flash_info[i].flash_id == FLASH_UNKNOWN) |
| 151 | continue; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 152 | if (store_addr >= flash_info[i].start[0]) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 153 | rc = 1; |
| 154 | break; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | if (rc) { /* Flash is destination for this packet */ |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 159 | rc = flash_write((char *)src, store_addr, len); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 160 | if (rc) { |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 161 | flash_perror(rc); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 162 | return rc; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 163 | } |
Joe Hershberger | 13dfe94 | 2012-05-15 08:59:12 +0000 | [diff] [blame] | 164 | } else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 165 | #endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 166 | { |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 167 | void *ptr; |
Joe Hershberger | 55d5fd9 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 168 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 169 | #ifdef CONFIG_LMB |
Bin Meng | ca48cb4 | 2019-11-15 22:20:13 -0800 | [diff] [blame] | 170 | ulong end_addr = tftp_load_addr + tftp_load_size; |
| 171 | |
| 172 | if (!end_addr) |
| 173 | end_addr = ULONG_MAX; |
| 174 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 175 | if (store_addr < tftp_load_addr || |
Bin Meng | ca48cb4 | 2019-11-15 22:20:13 -0800 | [diff] [blame] | 176 | store_addr + len > end_addr) { |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 177 | puts("\nTFTP error: "); |
| 178 | puts("trying to overwrite reserved memory...\n"); |
| 179 | return -1; |
| 180 | } |
| 181 | #endif |
| 182 | ptr = map_sysmem(store_addr, len); |
Joe Hershberger | 55d5fd9 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 183 | memcpy(ptr, src, len); |
| 184 | unmap_sysmem(ptr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 187 | if (net_boot_file_size < newsize) |
| 188 | net_boot_file_size = newsize; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 189 | |
| 190 | return 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 193 | /* Clear our state ready for a new transfer */ |
Simon Glass | 165099e | 2011-10-27 06:24:28 +0000 | [diff] [blame] | 194 | static void new_transfer(void) |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 195 | { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 196 | tftp_prev_block = 0; |
| 197 | tftp_block_wrap = 0; |
| 198 | tftp_block_wrap_offset = 0; |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 199 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 200 | tftp_put_final_block_sent = 0; |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 201 | #endif |
| 202 | } |
| 203 | |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 204 | #ifdef CONFIG_CMD_TFTPPUT |
| 205 | /** |
| 206 | * Load the next block from memory to be sent over tftp. |
| 207 | * |
| 208 | * @param block Block number to send |
| 209 | * @param dst Destination buffer for data |
| 210 | * @param len Number of bytes in block (this one and every other) |
| 211 | * @return number of bytes loaded |
| 212 | */ |
| 213 | static int load_block(unsigned block, uchar *dst, unsigned len) |
| 214 | { |
| 215 | /* We may want to get the final block from the previous set */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 216 | ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 217 | ulong tosend = len; |
| 218 | |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 219 | tosend = min(net_boot_file_size - offset, tosend); |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 220 | (void)memcpy(dst, (void *)(image_save_addr + offset), tosend); |
Heinrich Schuchardt | 2bcc43b | 2020-02-22 08:43:40 +0100 | [diff] [blame] | 221 | debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__, |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 222 | block, offset, len, tosend); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 223 | return tosend; |
| 224 | } |
| 225 | #endif |
| 226 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 227 | static void tftp_send(void); |
| 228 | static void tftp_timeout_handler(void); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 229 | |
| 230 | /**********************************************************************/ |
| 231 | |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 232 | static void show_block_marker(void) |
| 233 | { |
| 234 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 235 | if (tftp_tsize) { |
| 236 | ulong pos = tftp_cur_block * tftp_block_size + |
| 237 | tftp_block_wrap_offset; |
Max Krummenacher | 7628afe | 2015-08-05 17:17:05 +0200 | [diff] [blame] | 238 | if (pos > tftp_tsize) |
| 239 | pos = tftp_tsize; |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 240 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 241 | while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) { |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 242 | putc('#'); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 243 | tftp_tsize_num_hash++; |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 244 | } |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 245 | } else |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 246 | #endif |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 247 | { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 248 | if (((tftp_cur_block - 1) % 10) == 0) |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 249 | putc('#'); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 250 | else if ((tftp_cur_block % (10 * HASHES_PER_LINE)) == 0) |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 251 | puts("\n\t "); |
| 252 | } |
| 253 | } |
| 254 | |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 255 | /** |
| 256 | * restart the current transfer due to an error |
| 257 | * |
| 258 | * @param msg Message to print for user |
| 259 | */ |
| 260 | static void restart(const char *msg) |
| 261 | { |
| 262 | printf("\n%s; starting again\n", msg); |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 263 | net_start_again(); |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | /* |
| 267 | * Check if the block number has wrapped, and update progress |
| 268 | * |
| 269 | * TODO: The egregious use of global variables in this file should be tidied. |
| 270 | */ |
| 271 | static void update_block_number(void) |
| 272 | { |
| 273 | /* |
| 274 | * RFC1350 specifies that the first data packet will |
| 275 | * have sequence number 1. If we receive a sequence |
| 276 | * number of 0 this means that there was a wrap |
| 277 | * around of the (16 bit) counter. |
| 278 | */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 279 | if (tftp_cur_block == 0 && tftp_prev_block != 0) { |
| 280 | tftp_block_wrap++; |
| 281 | tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE; |
| 282 | timeout_count = 0; /* we've done well, reset the timeout */ |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 283 | } else { |
| 284 | show_block_marker(); |
| 285 | } |
| 286 | } |
| 287 | |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 288 | /* The TFTP get or put is complete */ |
| 289 | static void tftp_complete(void) |
| 290 | { |
| 291 | #ifdef CONFIG_TFTP_TSIZE |
| 292 | /* Print hash marks for the last packet received */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 293 | while (tftp_tsize && tftp_tsize_num_hash < 49) { |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 294 | putc('#'); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 295 | tftp_tsize_num_hash++; |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 296 | } |
Simon Glass | 8104f54 | 2014-10-10 07:30:21 -0600 | [diff] [blame] | 297 | puts(" "); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 298 | print_size(tftp_tsize, ""); |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 299 | #endif |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 300 | time_start = get_timer(time_start); |
| 301 | if (time_start > 0) { |
| 302 | puts("\n\t "); /* Line up with "Loading: " */ |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 303 | print_size(net_boot_file_size / |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 304 | time_start * 1000, "/s"); |
| 305 | } |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 306 | puts("\ndone\n"); |
Joe Hershberger | 22f6e99 | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 307 | net_set_state(NETLOOP_SUCCESS); |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 310 | static void tftp_send(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 311 | { |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 312 | uchar *pkt; |
Joe Hershberger | db288a9 | 2012-05-15 08:59:04 +0000 | [diff] [blame] | 313 | uchar *xp; |
| 314 | int len = 0; |
| 315 | ushort *s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 316 | |
| 317 | /* |
| 318 | * We will always be sending some sort of packet, so |
| 319 | * cobble together the packet headers now. |
| 320 | */ |
Joe Hershberger | 1203fcc | 2015-04-08 01:41:05 -0500 | [diff] [blame] | 321 | pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 322 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 323 | switch (tftp_state) { |
Luca Ceresoli | e3fb0ab | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 324 | case STATE_SEND_RRQ: |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 325 | case STATE_SEND_WRQ: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 326 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 327 | s = (ushort *)pkt; |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 328 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 329 | *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ : |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 330 | TFTP_WRQ); |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 331 | #else |
| 332 | *s++ = htons(TFTP_RRQ); |
| 333 | #endif |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 334 | pkt = (uchar *)s; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 335 | strcpy((char *)pkt, tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 336 | pkt += strlen(tftp_filename) + 1; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 337 | strcpy((char *)pkt, "octet"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 338 | pkt += 5 /*strlen("octet")*/ + 1; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 339 | strcpy((char *)pkt, "timeout"); |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 340 | pkt += 7 /*strlen("timeout")*/ + 1; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 341 | sprintf((char *)pkt, "%lu", timeout_ms / 1000); |
Robin Getz | 0ebf04c | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 342 | debug("send option \"timeout %s\"\n", (char *)pkt); |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 343 | pkt += strlen((char *)pkt) + 1; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 344 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 345 | pkt += sprintf((char *)pkt, "tsize%c%u%c", |
| 346 | 0, net_boot_file_size, 0); |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 347 | #endif |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 348 | /* try for more effic. blk size */ |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 349 | pkt += sprintf((char *)pkt, "blksize%c%d%c", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 350 | 0, tftp_block_size_option, 0); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 351 | len = pkt - xp; |
| 352 | break; |
| 353 | |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 354 | case STATE_OACK: |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 355 | |
| 356 | case STATE_RECV_WRQ: |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 357 | case STATE_DATA: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 358 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 359 | s = (ushort *)pkt; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 360 | s[0] = htons(TFTP_ACK); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 361 | s[1] = htons(tftp_cur_block); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 362 | pkt = (uchar *)(s + 2); |
| 363 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 364 | if (tftp_put_active) { |
| 365 | int toload = tftp_block_size; |
| 366 | int loaded = load_block(tftp_cur_block, pkt, toload); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 367 | |
| 368 | s[0] = htons(TFTP_DATA); |
| 369 | pkt += loaded; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 370 | tftp_put_final_block_sent = (loaded < toload); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 371 | } |
| 372 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 373 | len = pkt - xp; |
| 374 | break; |
| 375 | |
| 376 | case STATE_TOO_LARGE: |
| 377 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 378 | s = (ushort *)pkt; |
| 379 | *s++ = htons(TFTP_ERROR); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 380 | *s++ = htons(3); |
| 381 | |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 382 | pkt = (uchar *)s; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 383 | strcpy((char *)pkt, "File too large"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 384 | pkt += 14 /*strlen("File too large")*/ + 1; |
| 385 | len = pkt - xp; |
| 386 | break; |
| 387 | |
| 388 | case STATE_BAD_MAGIC: |
| 389 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 390 | s = (ushort *)pkt; |
| 391 | *s++ = htons(TFTP_ERROR); |
| 392 | *s++ = htons(2); |
| 393 | pkt = (uchar *)s; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 394 | strcpy((char *)pkt, "File has bad magic"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 395 | pkt += 18 /*strlen("File has bad magic")*/ + 1; |
| 396 | len = pkt - xp; |
| 397 | break; |
| 398 | } |
| 399 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 400 | net_send_udp_packet(net_server_ethaddr, tftp_remote_ip, |
| 401 | tftp_remote_port, tftp_our_port, len); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 402 | } |
| 403 | |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 404 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 405 | static void icmp_handler(unsigned type, unsigned code, unsigned dest, |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 406 | struct in_addr sip, unsigned src, uchar *pkt, |
| 407 | unsigned len) |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 408 | { |
| 409 | if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) { |
| 410 | /* Oh dear the other end has gone away */ |
| 411 | restart("TFTP server died"); |
| 412 | } |
| 413 | } |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 414 | #endif |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 415 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 416 | static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip, |
| 417 | unsigned src, unsigned len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 418 | { |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 419 | __be16 proto; |
| 420 | __be16 *s; |
Wolfgang Denk | ff13ac8 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 421 | int i; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 422 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 423 | if (dest != tftp_our_port) { |
Luca Ceresoli | 0bdd8ac | 2011-05-14 05:50:02 +0000 | [diff] [blame] | 424 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 425 | } |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 426 | if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port && |
| 427 | tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 428 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 429 | |
Luca Ceresoli | 7bc325a | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 430 | if (len < 2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 431 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 432 | len -= 2; |
| 433 | /* warning: don't use increment (++) in ntohs() macros!! */ |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 434 | s = (__be16 *)pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 435 | proto = *s++; |
| 436 | pkt = (uchar *)s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 437 | switch (ntohs(proto)) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 438 | case TFTP_RRQ: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 439 | break; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 440 | |
| 441 | case TFTP_ACK: |
| 442 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 443 | if (tftp_put_active) { |
| 444 | if (tftp_put_final_block_sent) { |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 445 | tftp_complete(); |
| 446 | } else { |
| 447 | /* |
| 448 | * Move to the next block. We want our block |
| 449 | * count to wrap just like the other end! |
| 450 | */ |
| 451 | int block = ntohs(*s); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 452 | int ack_ok = (tftp_cur_block == block); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 453 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 454 | tftp_cur_block = (unsigned short)(block + 1); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 455 | update_block_number(); |
| 456 | if (ack_ok) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 457 | tftp_send(); /* Send next data block */ |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | #endif |
| 461 | break; |
| 462 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 463 | default: |
| 464 | break; |
| 465 | |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 466 | #ifdef CONFIG_CMD_TFTPSRV |
| 467 | case TFTP_WRQ: |
| 468 | debug("Got WRQ\n"); |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 469 | tftp_remote_ip = sip; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 470 | tftp_remote_port = src; |
| 471 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 472 | new_transfer(); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 473 | tftp_send(); /* Send ACK(0) */ |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 474 | break; |
| 475 | #endif |
| 476 | |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 477 | case TFTP_OACK: |
Wolfgang Denk | d371708 | 2009-08-10 09:59:10 +0200 | [diff] [blame] | 478 | debug("Got OACK: %s %s\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 479 | pkt, pkt + strlen((char *)pkt) + 1); |
| 480 | tftp_state = STATE_OACK; |
| 481 | tftp_remote_port = src; |
Wolfgang Denk | 6017474 | 2007-08-31 10:01:51 +0200 | [diff] [blame] | 482 | /* |
| 483 | * Check for 'blksize' option. |
| 484 | * Careful: "i" is signed, "len" is unsigned, thus |
| 485 | * something like "len-8" may give a *huge* number |
| 486 | */ |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 487 | for (i = 0; i+8 < len; i++) { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 488 | if (strcmp((char *)pkt + i, "blksize") == 0) { |
| 489 | tftp_block_size = (unsigned short) |
| 490 | simple_strtoul((char *)pkt + i + 8, |
| 491 | NULL, 10); |
Robin Getz | 0ebf04c | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 492 | debug("Blocksize ack: %s, %d\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 493 | (char *)pkt + i + 8, tftp_block_size); |
Wolfgang Denk | ff13ac8 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 494 | } |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 495 | #ifdef CONFIG_TFTP_TSIZE |
Luca Ceresoli | 2e32025 | 2011-05-14 05:49:58 +0000 | [diff] [blame] | 496 | if (strcmp((char *)pkt+i, "tsize") == 0) { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 497 | tftp_tsize = simple_strtoul((char *)pkt + i + 6, |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 498 | NULL, 10); |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 499 | debug("size = %s, %d\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 500 | (char *)pkt + i + 6, tftp_tsize); |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 501 | } |
| 502 | #endif |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 503 | } |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 504 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 505 | if (tftp_put_active) { |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 506 | /* Get ready to send the first block */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 507 | tftp_state = STATE_DATA; |
| 508 | tftp_cur_block++; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 509 | } |
| 510 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 511 | tftp_send(); /* Send ACK or first data block */ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 512 | break; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 513 | case TFTP_DATA: |
| 514 | if (len < 2) |
| 515 | return; |
| 516 | len -= 2; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 517 | tftp_cur_block = ntohs(*(__be16 *)pkt); |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 518 | |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 519 | update_block_number(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 520 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 521 | if (tftp_state == STATE_SEND_RRQ) |
Robin Getz | 0ebf04c | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 522 | debug("Server did not acknowledge timeout option!\n"); |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 523 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 524 | if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK || |
| 525 | tftp_state == STATE_RECV_WRQ) { |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 526 | /* first block received */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 527 | tftp_state = STATE_DATA; |
| 528 | tftp_remote_port = src; |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 529 | new_transfer(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 530 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 531 | if (tftp_cur_block != 1) { /* Assertion */ |
| 532 | puts("\nTFTP error: "); |
| 533 | printf("First block is not block 1 (%ld)\n", |
| 534 | tftp_cur_block); |
| 535 | puts("Starting again\n\n"); |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 536 | net_start_again(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 537 | break; |
| 538 | } |
| 539 | } |
| 540 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 541 | if (tftp_cur_block == tftp_prev_block) { |
| 542 | /* Same block again; ignore it. */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 543 | break; |
| 544 | } |
| 545 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 546 | tftp_prev_block = tftp_cur_block; |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 547 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 548 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 549 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 550 | if (store_block(tftp_cur_block - 1, pkt + 2, len)) { |
| 551 | eth_halt(); |
| 552 | net_set_state(NETLOOP_FAIL); |
| 553 | break; |
| 554 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 555 | |
| 556 | /* |
Luca Ceresoli | 4d69e98 | 2011-05-17 00:03:41 +0000 | [diff] [blame] | 557 | * Acknowledge the block just received, which will prompt |
Luca Ceresoli | 20478ce | 2011-05-17 00:03:37 +0000 | [diff] [blame] | 558 | * the remote for the next one. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 559 | */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 560 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 561 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 562 | if (len < tftp_block_size) |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 563 | tftp_complete(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 564 | break; |
| 565 | |
| 566 | case TFTP_ERROR: |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 567 | printf("\nTFTP error: '%s' (%d)\n", |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 568 | pkt + 2, ntohs(*(__be16 *)pkt)); |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 569 | |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 570 | switch (ntohs(*(__be16 *)pkt)) { |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 571 | case TFTP_ERR_FILE_NOT_FOUND: |
| 572 | case TFTP_ERR_ACCESS_DENIED: |
| 573 | puts("Not retrying...\n"); |
| 574 | eth_halt(); |
Joe Hershberger | 22f6e99 | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 575 | net_set_state(NETLOOP_FAIL); |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 576 | break; |
| 577 | case TFTP_ERR_UNDEFINED: |
| 578 | case TFTP_ERR_DISK_FULL: |
| 579 | case TFTP_ERR_UNEXPECTED_OPCODE: |
| 580 | case TFTP_ERR_UNKNOWN_TRANSFER_ID: |
| 581 | case TFTP_ERR_FILE_ALREADY_EXISTS: |
| 582 | default: |
| 583 | puts("Starting again\n\n"); |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 584 | net_start_again(); |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 585 | break; |
| 586 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 587 | break; |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 592 | static void tftp_timeout_handler(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 593 | { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 594 | if (++timeout_count > timeout_count_max) { |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 595 | restart("Retry count exceeded"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 596 | } else { |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 597 | puts("T "); |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 598 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 599 | if (tftp_state != STATE_RECV_WRQ) |
| 600 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 601 | } |
| 602 | } |
| 603 | |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 604 | /* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */ |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 605 | static int tftp_init_load_addr(void) |
| 606 | { |
| 607 | #ifdef CONFIG_LMB |
| 608 | struct lmb lmb; |
| 609 | phys_size_t max_size; |
| 610 | |
Simon Goldschmidt | 9cc2323 | 2019-01-26 22:13:04 +0100 | [diff] [blame] | 611 | lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 612 | |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 613 | max_size = lmb_get_free_size(&lmb, image_load_addr); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 614 | if (!max_size) |
| 615 | return -1; |
| 616 | |
| 617 | tftp_load_size = max_size; |
| 618 | #endif |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 619 | tftp_load_addr = image_load_addr; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 620 | return 0; |
| 621 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 622 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 623 | void tftp_start(enum proto_t protocol) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 624 | { |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 625 | #if CONFIG_NET_TFTP_VARS |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 626 | char *ep; /* Environment pointer */ |
Alessandro Rubini | 89ba81d | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 627 | |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 628 | /* |
| 629 | * Allow the user to choose TFTP blocksize and timeout. |
| 630 | * TFTP protocol has a minimal timeout of 1 second. |
| 631 | */ |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 632 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 633 | ep = env_get("tftpblocksize"); |
Luca Ceresoli | 2cb5360 | 2011-05-14 05:49:59 +0000 | [diff] [blame] | 634 | if (ep != NULL) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 635 | tftp_block_size_option = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 636 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 637 | ep = env_get("tftptimeout"); |
Luca Ceresoli | 2cb5360 | 2011-05-14 05:49:59 +0000 | [diff] [blame] | 638 | if (ep != NULL) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 639 | timeout_ms = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 640 | |
Bin Meng | af2ca59 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 641 | if (timeout_ms < 1000) { |
| 642 | printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 643 | timeout_ms); |
Bin Meng | af2ca59 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 644 | timeout_ms = 1000; |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 645 | } |
| 646 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 647 | ep = env_get("tftptimeoutcountmax"); |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 648 | if (ep != NULL) |
| 649 | tftp_timeout_count_max = simple_strtol(ep, NULL, 10); |
| 650 | |
| 651 | if (tftp_timeout_count_max < 0) { |
| 652 | printf("TFTP timeout count max (%d ms) negative, set to 0\n", |
| 653 | tftp_timeout_count_max); |
| 654 | tftp_timeout_count_max = 0; |
| 655 | } |
| 656 | #endif |
| 657 | |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 658 | debug("TFTP blocksize = %i, timeout = %ld ms\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 659 | tftp_block_size_option, timeout_ms); |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 660 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 661 | tftp_remote_ip = net_server_ip; |
Joe Hershberger | 6ab1283 | 2018-07-03 19:36:43 -0500 | [diff] [blame] | 662 | if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) { |
Matthias Weisser | ea45cb0 | 2011-12-03 03:29:44 +0000 | [diff] [blame] | 663 | sprintf(default_filename, "%02X%02X%02X%02X.img", |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 664 | net_ip.s_addr & 0xFF, |
| 665 | (net_ip.s_addr >> 8) & 0xFF, |
| 666 | (net_ip.s_addr >> 16) & 0xFF, |
| 667 | (net_ip.s_addr >> 24) & 0xFF); |
Jean-Christophe PLAGNIOL-VILLARD | a93907c | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 668 | |
Vladimir Zapolskiy | 0c17b1b | 2017-06-28 22:56:07 +0300 | [diff] [blame] | 669 | strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN); |
| 670 | tftp_filename[DEFAULT_NAME_LEN - 1] = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 671 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 672 | printf("*** Warning: no boot file name; using '%s'\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 673 | tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 676 | printf("Using %s device\n", eth_get_name()); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 677 | printf("TFTP %s server %pI4; our IP address is %pI4", |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 678 | #ifdef CONFIG_CMD_TFTPPUT |
| 679 | protocol == TFTPPUT ? "to" : "from", |
| 680 | #else |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 681 | "from", |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 682 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 683 | &tftp_remote_ip, &net_ip); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 684 | |
| 685 | /* Check if we need to send across this subnet */ |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 686 | if (net_gateway.s_addr && net_netmask.s_addr) { |
| 687 | struct in_addr our_net; |
| 688 | struct in_addr remote_net; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 689 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 690 | our_net.s_addr = net_ip.s_addr & net_netmask.s_addr; |
| 691 | remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr; |
| 692 | if (our_net.s_addr != remote_net.s_addr) |
| 693 | printf("; sending through gateway %pI4", &net_gateway); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 694 | } |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 695 | putc('\n'); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 696 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 697 | printf("Filename '%s'.", tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 698 | |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 699 | if (net_boot_file_expected_size_in_blocks) { |
| 700 | printf(" Size is 0x%x Bytes = ", |
| 701 | net_boot_file_expected_size_in_blocks << 9); |
| 702 | print_size(net_boot_file_expected_size_in_blocks << 9, ""); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 703 | } |
| 704 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 705 | putc('\n'); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 706 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 707 | tftp_put_active = (protocol == TFTPPUT); |
| 708 | if (tftp_put_active) { |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 709 | printf("Save address: 0x%lx\n", image_save_addr); |
| 710 | printf("Save size: 0x%lx\n", image_save_size); |
| 711 | net_boot_file_size = image_save_size; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 712 | puts("Saving: *\b"); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 713 | tftp_state = STATE_SEND_WRQ; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 714 | new_transfer(); |
| 715 | } else |
| 716 | #endif |
| 717 | { |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 718 | if (tftp_init_load_addr()) { |
| 719 | eth_halt(); |
| 720 | net_set_state(NETLOOP_FAIL); |
| 721 | puts("\nTFTP error: "); |
| 722 | puts("trying to overwrite reserved memory...\n"); |
| 723 | return; |
| 724 | } |
| 725 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 726 | puts("Loading: *\b"); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 727 | tftp_state = STATE_SEND_RRQ; |
Jörg Krause | 64b8d7a | 2017-09-15 22:16:48 +0200 | [diff] [blame] | 728 | #ifdef CONFIG_CMD_BOOTEFI |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 729 | efi_set_bootdev("Net", "", tftp_filename); |
Jörg Krause | 64b8d7a | 2017-09-15 22:16:48 +0200 | [diff] [blame] | 730 | #endif |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 731 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 732 | |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 733 | time_start = get_timer(0); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 734 | timeout_count_max = tftp_timeout_count_max; |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 735 | |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 736 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 737 | net_set_udp_handler(tftp_handler); |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 738 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 739 | net_set_icmp_handler(icmp_handler); |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 740 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 741 | tftp_remote_port = WELL_KNOWN_PORT; |
| 742 | timeout_count = 0; |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 743 | /* Use a pseudo-random port unless a specific port is set */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 744 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 745 | |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 746 | #ifdef CONFIG_TFTP_PORT |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 747 | ep = env_get("tftpdstp"); |
Luca Ceresoli | 7bc325a | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 748 | if (ep != NULL) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 749 | tftp_remote_port = simple_strtol(ep, NULL, 10); |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 750 | ep = env_get("tftpsrcp"); |
Luca Ceresoli | 7bc325a | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 751 | if (ep != NULL) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 752 | tftp_our_port = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 753 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 754 | tftp_cur_block = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 755 | |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 756 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 757 | memset(net_server_ethaddr, 0, 6); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 758 | /* Revert tftp_block_size to dflt */ |
| 759 | tftp_block_size = TFTP_BLOCK_SIZE; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 760 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 761 | tftp_tsize = 0; |
| 762 | tftp_tsize_num_hash = 0; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 763 | #endif |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 764 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 765 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 766 | } |
| 767 | |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 768 | #ifdef CONFIG_CMD_TFTPSRV |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 769 | void tftp_start_server(void) |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 770 | { |
| 771 | tftp_filename[0] = 0; |
| 772 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 773 | if (tftp_init_load_addr()) { |
| 774 | eth_halt(); |
| 775 | net_set_state(NETLOOP_FAIL); |
| 776 | puts("\nTFTP error: trying to overwrite reserved memory...\n"); |
| 777 | return; |
| 778 | } |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 779 | printf("Using %s device\n", eth_get_name()); |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 780 | printf("Listening for TFTP transfer on %pI4\n", &net_ip); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 781 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 782 | |
| 783 | puts("Loading: *\b"); |
| 784 | |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 785 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 786 | timeout_count = 0; |
| 787 | timeout_ms = TIMEOUT; |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 788 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 789 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 790 | /* Revert tftp_block_size to dflt */ |
| 791 | tftp_block_size = TFTP_BLOCK_SIZE; |
| 792 | tftp_cur_block = 0; |
| 793 | tftp_our_port = WELL_KNOWN_PORT; |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 794 | |
| 795 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 796 | tftp_tsize = 0; |
| 797 | tftp_tsize_num_hash = 0; |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 798 | #endif |
| 799 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 800 | tftp_state = STATE_RECV_WRQ; |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 801 | net_set_udp_handler(tftp_handler); |
Andrew Ruder | 8e52533 | 2013-10-22 19:10:28 -0500 | [diff] [blame] | 802 | |
| 803 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 804 | memset(net_server_ethaddr, 0, 6); |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 805 | } |
| 806 | #endif /* CONFIG_CMD_TFTPSRV */ |
| 807 | |