wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
Luca Ceresoli | c42fc27 | 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 | b640ed3 | 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 | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 11 | #include <efi_loader.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 85f1378 | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 13 | #include <image.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 14 | #include <lmb.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.h> |
Joe Hershberger | ed19185 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 16 | #include <mapmem.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 17 | #include <net.h> |
Lukasz Majewski | 2118592 | 2015-08-24 00:21:43 +0200 | [diff] [blame] | 18 | #include <net/tftp.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 19 | #include "bootp.h" |
Joe Hershberger | 3a29e5a | 2012-05-15 08:59:12 +0000 | [diff] [blame] | 20 | #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP |
| 21 | #include <flash.h> |
| 22 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 23 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 26 | /* Well known TFTP port # */ |
| 27 | #define WELL_KNOWN_PORT 69 |
| 28 | /* Millisecs to timeout for lost pkt */ |
Bin Meng | e67eaa8 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 29 | #define TIMEOUT 5000UL |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 30 | #ifndef CONFIG_NET_RETRY_COUNT |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 31 | /* # of timeouts before giving up */ |
Bin Meng | e67eaa8 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 32 | # define TIMEOUT_COUNT 10 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 33 | #else |
| 34 | # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2) |
| 35 | #endif |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 36 | /* Number of "loading" hashes per line (for checking the image size) */ |
| 37 | #define HASHES_PER_LINE 65 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 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 |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 47 | #define TFTP_OACK 6 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 48 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 49 | static ulong timeout_ms = TIMEOUT; |
| 50 | static int timeout_count_max = TIMEOUT_COUNT; |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 51 | static ulong time_start; /* Record time we started tftp */ |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * These globals govern the timeout behavior when attempting a connection to a |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 55 | * TFTP server. tftp_timeout_ms specifies the number of milliseconds to |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 56 | * wait for the server to respond to initial connection. Second global, |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 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 |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 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 | */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 62 | ulong tftp_timeout_ms = TIMEOUT; |
| 63 | int tftp_timeout_count_max = TIMEOUT_COUNT; |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 64 | |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 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 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 75 | static struct in_addr tftp_remote_ip; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 76 | /* The UDP port at their end */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 77 | static int tftp_remote_port; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 78 | /* The UDP port at our end */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 79 | static int tftp_our_port; |
| 80 | static int timeout_count; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 81 | /* packet sequence number */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 82 | static ulong tftp_cur_block; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 83 | /* last packet sequence number received */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 84 | static ulong tftp_prev_block; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 85 | /* count of sequence number wraparounds */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 86 | static ulong tftp_block_wrap; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 87 | /* memory offset due to wrapping */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 88 | static ulong tftp_block_wrap_offset; |
| 89 | static int tftp_state; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 90 | static ulong tftp_load_addr; |
| 91 | #ifdef CONFIG_LMB |
| 92 | static ulong tftp_load_size; |
| 93 | #endif |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 94 | #ifdef CONFIG_TFTP_TSIZE |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 95 | /* The file size reported by the server */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 96 | static int tftp_tsize; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 97 | /* The number of hashes we printed */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 98 | static short tftp_tsize_num_hash; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 99 | #endif |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 100 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 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; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 105 | #else |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 106 | #define tftp_put_active 0 |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 107 | #endif |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 108 | |
Luca Ceresoli | 562dfe5 | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 109 | #define STATE_SEND_RRQ 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 110 | #define STATE_DATA 2 |
| 111 | #define STATE_TOO_LARGE 3 |
| 112 | #define STATE_BAD_MAGIC 4 |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 113 | #define STATE_OACK 5 |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 114 | #define STATE_RECV_WRQ 6 |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 115 | #define STATE_SEND_WRQ 7 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 116 | |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 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)) |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 121 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 122 | #define DEFAULT_NAME_LEN (8 + 4 + 1) |
| 123 | static char default_filename[DEFAULT_NAME_LEN]; |
Jean-Christophe PLAGNIOL-VILLARD | 5855541 | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 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]; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 132 | |
Wolfgang Denk | 627f5c3 | 2007-08-14 09:47:27 +0200 | [diff] [blame] | 133 | /* 512 is poor choice for ethernet, MTU is typically 1500. |
| 134 | * Minus eth.hdrs thats 1468. Can get 2x better throughput with |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 135 | * almost-MTU block sizes. At least try... fall back to 512 if need be. |
Alessandro Rubini | 8832f6e | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 136 | * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file) |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 137 | */ |
Alessandro Rubini | 8832f6e | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 138 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 139 | static unsigned short tftp_block_size = TFTP_BLOCK_SIZE; |
Patrick Delaunay | 6c3a447 | 2020-04-22 14:18:26 +0200 | [diff] [blame] | 140 | static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE; |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 141 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 142 | static inline int store_block(int block, uchar *src, unsigned int len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 143 | { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 144 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset; |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 145 | ulong newsize = offset + len; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 146 | ulong store_addr = tftp_load_addr + offset; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 147 | #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 148 | int i, rc = 0; |
| 149 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 150 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 151 | /* start address in flash? */ |
Jochen Friedrich | d31a59b | 2008-09-02 11:24:59 +0200 | [diff] [blame] | 152 | if (flash_info[i].flash_id == FLASH_UNKNOWN) |
| 153 | continue; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 154 | if (store_addr >= flash_info[i].start[0]) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 155 | rc = 1; |
| 156 | break; |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | if (rc) { /* Flash is destination for this packet */ |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 161 | rc = flash_write((char *)src, store_addr, len); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 162 | if (rc) { |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 163 | flash_perror(rc); |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 164 | return rc; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 165 | } |
Joe Hershberger | 3a29e5a | 2012-05-15 08:59:12 +0000 | [diff] [blame] | 166 | } else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 167 | #endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 168 | { |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 169 | void *ptr; |
Joe Hershberger | ed19185 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 170 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 171 | #ifdef CONFIG_LMB |
Bin Meng | af54963 | 2019-11-15 22:20:13 -0800 | [diff] [blame] | 172 | ulong end_addr = tftp_load_addr + tftp_load_size; |
| 173 | |
| 174 | if (!end_addr) |
| 175 | end_addr = ULONG_MAX; |
| 176 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 177 | if (store_addr < tftp_load_addr || |
Bin Meng | af54963 | 2019-11-15 22:20:13 -0800 | [diff] [blame] | 178 | store_addr + len > end_addr) { |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 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); |
Joe Hershberger | ed19185 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 185 | memcpy(ptr, src, len); |
| 186 | unmap_sysmem(ptr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 189 | if (net_boot_file_size < newsize) |
| 190 | net_boot_file_size = newsize; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 191 | |
| 192 | return 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 195 | /* Clear our state ready for a new transfer */ |
Simon Glass | 8431332 | 2011-10-27 06:24:28 +0000 | [diff] [blame] | 196 | static void new_transfer(void) |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 197 | { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 198 | tftp_prev_block = 0; |
| 199 | tftp_block_wrap = 0; |
| 200 | tftp_block_wrap_offset = 0; |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 201 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 202 | tftp_put_final_block_sent = 0; |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 203 | #endif |
| 204 | } |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 205 | |
| 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 */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 218 | ulong offset = ((int)block - 1) * len + tftp_block_wrap_offset; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 219 | ulong tosend = len; |
| 220 | |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 221 | tosend = min(net_boot_file_size - offset, tosend); |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 222 | (void)memcpy(dst, (void *)(image_save_addr + offset), tosend); |
Heinrich Schuchardt | c81ab83 | 2020-02-22 08:43:40 +0100 | [diff] [blame] | 223 | debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__, |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 224 | block, offset, len, tosend); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 225 | return tosend; |
| 226 | } |
| 227 | #endif |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 228 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 229 | static void tftp_send(void); |
| 230 | static void tftp_timeout_handler(void); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 231 | |
| 232 | /**********************************************************************/ |
| 233 | |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 234 | static void show_block_marker(void) |
| 235 | { |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame^] | 236 | ulong pos; |
| 237 | |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 238 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 239 | if (tftp_tsize) { |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame^] | 240 | pos = tftp_cur_block * tftp_block_size + |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 241 | tftp_block_wrap_offset; |
Max Krummenacher | dd081cc | 2015-08-05 17:17:05 +0200 | [diff] [blame] | 242 | if (pos > tftp_tsize) |
| 243 | pos = tftp_tsize; |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 244 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 245 | while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) { |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 246 | putc('#'); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 247 | tftp_tsize_num_hash++; |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 248 | } |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 249 | } else |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 250 | #endif |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 251 | { |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame^] | 252 | pos = (tftp_cur_block - 1) + |
| 253 | (tftp_block_wrap * TFTP_SEQUENCE_SIZE); |
| 254 | if ((pos % 10) == 0) |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 255 | putc('#'); |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame^] | 256 | else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0) |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 257 | puts("\n\t "); |
| 258 | } |
| 259 | } |
| 260 | |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 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); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 269 | net_start_again(); |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 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 | */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 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 */ |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 289 | } |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame^] | 290 | show_block_marker(); |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 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 */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 298 | while (tftp_tsize && tftp_tsize_num_hash < 49) { |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 299 | putc('#'); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 300 | tftp_tsize_num_hash++; |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 301 | } |
Simon Glass | c8f0a5c | 2014-10-10 07:30:21 -0600 | [diff] [blame] | 302 | puts(" "); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 303 | print_size(tftp_tsize, ""); |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 304 | #endif |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 305 | time_start = get_timer(time_start); |
| 306 | if (time_start > 0) { |
| 307 | puts("\n\t "); /* Line up with "Loading: " */ |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 308 | print_size(net_boot_file_size / |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 309 | time_start * 1000, "/s"); |
| 310 | } |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 311 | puts("\ndone\n"); |
Joe Hershberger | d4bb76a | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 312 | net_set_state(NETLOOP_SUCCESS); |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 313 | } |
| 314 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 315 | static void tftp_send(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 316 | { |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 317 | uchar *pkt; |
Joe Hershberger | 4b7747e | 2012-05-15 08:59:04 +0000 | [diff] [blame] | 318 | uchar *xp; |
| 319 | int len = 0; |
| 320 | ushort *s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 321 | |
| 322 | /* |
| 323 | * We will always be sending some sort of packet, so |
| 324 | * cobble together the packet headers now. |
| 325 | */ |
Joe Hershberger | a8ca4f6 | 2015-04-08 01:41:05 -0500 | [diff] [blame] | 326 | pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 327 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 328 | switch (tftp_state) { |
Luca Ceresoli | 562dfe5 | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 329 | case STATE_SEND_RRQ: |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 330 | case STATE_SEND_WRQ: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 331 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 332 | s = (ushort *)pkt; |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 333 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 334 | *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ : |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 335 | TFTP_WRQ); |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 336 | #else |
| 337 | *s++ = htons(TFTP_RRQ); |
| 338 | #endif |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 339 | pkt = (uchar *)s; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 340 | strcpy((char *)pkt, tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 341 | pkt += strlen(tftp_filename) + 1; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 342 | strcpy((char *)pkt, "octet"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 343 | pkt += 5 /*strlen("octet")*/ + 1; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 344 | strcpy((char *)pkt, "timeout"); |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 345 | pkt += 7 /*strlen("timeout")*/ + 1; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 346 | sprintf((char *)pkt, "%lu", timeout_ms / 1000); |
Robin Getz | 9e0a4d6 | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 347 | debug("send option \"timeout %s\"\n", (char *)pkt); |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 348 | pkt += strlen((char *)pkt) + 1; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 349 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 350 | pkt += sprintf((char *)pkt, "tsize%c%u%c", |
| 351 | 0, net_boot_file_size, 0); |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 352 | #endif |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 353 | /* try for more effic. blk size */ |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 354 | pkt += sprintf((char *)pkt, "blksize%c%d%c", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 355 | 0, tftp_block_size_option, 0); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 356 | len = pkt - xp; |
| 357 | break; |
| 358 | |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 359 | case STATE_OACK: |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 360 | |
| 361 | case STATE_RECV_WRQ: |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 362 | case STATE_DATA: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 363 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 364 | s = (ushort *)pkt; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 365 | s[0] = htons(TFTP_ACK); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 366 | s[1] = htons(tftp_cur_block); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 367 | pkt = (uchar *)(s + 2); |
| 368 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 369 | if (tftp_put_active) { |
| 370 | int toload = tftp_block_size; |
| 371 | int loaded = load_block(tftp_cur_block, pkt, toload); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 372 | |
| 373 | s[0] = htons(TFTP_DATA); |
| 374 | pkt += loaded; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 375 | tftp_put_final_block_sent = (loaded < toload); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 376 | } |
| 377 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 378 | len = pkt - xp; |
| 379 | break; |
| 380 | |
| 381 | case STATE_TOO_LARGE: |
| 382 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 383 | s = (ushort *)pkt; |
| 384 | *s++ = htons(TFTP_ERROR); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 385 | *s++ = htons(3); |
| 386 | |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 387 | pkt = (uchar *)s; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 388 | strcpy((char *)pkt, "File too large"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 389 | pkt += 14 /*strlen("File too large")*/ + 1; |
| 390 | len = pkt - xp; |
| 391 | break; |
| 392 | |
| 393 | case STATE_BAD_MAGIC: |
| 394 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 395 | s = (ushort *)pkt; |
| 396 | *s++ = htons(TFTP_ERROR); |
| 397 | *s++ = htons(2); |
| 398 | pkt = (uchar *)s; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 399 | strcpy((char *)pkt, "File has bad magic"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 400 | pkt += 18 /*strlen("File has bad magic")*/ + 1; |
| 401 | len = pkt - xp; |
| 402 | break; |
| 403 | } |
| 404 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 405 | net_send_udp_packet(net_server_ethaddr, tftp_remote_ip, |
| 406 | tftp_remote_port, tftp_our_port, len); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 409 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 410 | static void icmp_handler(unsigned type, unsigned code, unsigned dest, |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 411 | struct in_addr sip, unsigned src, uchar *pkt, |
| 412 | unsigned len) |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 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 | } |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 419 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 420 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 421 | static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip, |
| 422 | unsigned src, unsigned len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 423 | { |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 424 | __be16 proto; |
| 425 | __be16 *s; |
Wolfgang Denk | 83e8e47 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 426 | int i; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 427 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 428 | if (dest != tftp_our_port) { |
Luca Ceresoli | 09b1823 | 2011-05-14 05:50:02 +0000 | [diff] [blame] | 429 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 430 | } |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 431 | if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port && |
| 432 | tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 433 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 434 | |
Luca Ceresoli | 35dfb18 | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 435 | if (len < 2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 436 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 437 | len -= 2; |
| 438 | /* warning: don't use increment (++) in ntohs() macros!! */ |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 439 | s = (__be16 *)pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 440 | proto = *s++; |
| 441 | pkt = (uchar *)s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 442 | switch (ntohs(proto)) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 443 | case TFTP_RRQ: |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 444 | break; |
| 445 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 446 | case TFTP_ACK: |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 447 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 448 | if (tftp_put_active) { |
| 449 | if (tftp_put_final_block_sent) { |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 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); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 457 | int ack_ok = (tftp_cur_block == block); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 458 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 459 | tftp_cur_block = (unsigned short)(block + 1); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 460 | update_block_number(); |
| 461 | if (ack_ok) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 462 | tftp_send(); /* Send next data block */ |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 463 | } |
| 464 | } |
| 465 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 466 | break; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 467 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 468 | default: |
| 469 | break; |
| 470 | |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 471 | #ifdef CONFIG_CMD_TFTPSRV |
| 472 | case TFTP_WRQ: |
| 473 | debug("Got WRQ\n"); |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 474 | tftp_remote_ip = sip; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 475 | tftp_remote_port = src; |
| 476 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 477 | new_transfer(); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 478 | tftp_send(); /* Send ACK(0) */ |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 479 | break; |
| 480 | #endif |
| 481 | |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 482 | case TFTP_OACK: |
Wolfgang Denk | 12730c7 | 2009-08-10 09:59:10 +0200 | [diff] [blame] | 483 | debug("Got OACK: %s %s\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 484 | pkt, pkt + strlen((char *)pkt) + 1); |
| 485 | tftp_state = STATE_OACK; |
| 486 | tftp_remote_port = src; |
Wolfgang Denk | 8b70f34 | 2007-08-31 10:01:51 +0200 | [diff] [blame] | 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 | */ |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 492 | for (i = 0; i+8 < len; i++) { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 493 | if (strcmp((char *)pkt + i, "blksize") == 0) { |
| 494 | tftp_block_size = (unsigned short) |
| 495 | simple_strtoul((char *)pkt + i + 8, |
| 496 | NULL, 10); |
Robin Getz | 9e0a4d6 | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 497 | debug("Blocksize ack: %s, %d\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 498 | (char *)pkt + i + 8, tftp_block_size); |
Wolfgang Denk | 83e8e47 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 499 | } |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 500 | #ifdef CONFIG_TFTP_TSIZE |
Luca Ceresoli | bf6ce41 | 2011-05-14 05:49:58 +0000 | [diff] [blame] | 501 | if (strcmp((char *)pkt+i, "tsize") == 0) { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 502 | tftp_tsize = simple_strtoul((char *)pkt + i + 6, |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 503 | NULL, 10); |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 504 | debug("size = %s, %d\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 505 | (char *)pkt + i + 6, tftp_tsize); |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 506 | } |
| 507 | #endif |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 508 | } |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 509 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 510 | if (tftp_put_active) { |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 511 | /* Get ready to send the first block */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 512 | tftp_state = STATE_DATA; |
| 513 | tftp_cur_block++; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 514 | } |
| 515 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 516 | tftp_send(); /* Send ACK or first data block */ |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 517 | break; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 518 | case TFTP_DATA: |
| 519 | if (len < 2) |
| 520 | return; |
| 521 | len -= 2; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 522 | tftp_cur_block = ntohs(*(__be16 *)pkt); |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 523 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 524 | if (tftp_state == STATE_SEND_RRQ) |
Robin Getz | 9e0a4d6 | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 525 | debug("Server did not acknowledge timeout option!\n"); |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 526 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 527 | if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK || |
| 528 | tftp_state == STATE_RECV_WRQ) { |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 529 | /* first block received */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 530 | tftp_state = STATE_DATA; |
| 531 | tftp_remote_port = src; |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 532 | new_transfer(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 533 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 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"); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 539 | net_start_again(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 540 | break; |
| 541 | } |
| 542 | } |
| 543 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 544 | if (tftp_cur_block == tftp_prev_block) { |
| 545 | /* Same block again; ignore it. */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 546 | break; |
| 547 | } |
| 548 | |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame^] | 549 | update_block_number(); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 550 | tftp_prev_block = tftp_cur_block; |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 551 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 552 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 553 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 554 | if (store_block(tftp_cur_block - 1, pkt + 2, len)) { |
| 555 | eth_halt(); |
| 556 | net_set_state(NETLOOP_FAIL); |
| 557 | break; |
| 558 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 559 | |
| 560 | /* |
Luca Ceresoli | 2f3dc0a | 2011-05-17 00:03:41 +0000 | [diff] [blame] | 561 | * Acknowledge the block just received, which will prompt |
Luca Ceresoli | 5079c76 | 2011-05-17 00:03:37 +0000 | [diff] [blame] | 562 | * the remote for the next one. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 563 | */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 564 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 565 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 566 | if (len < tftp_block_size) |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 567 | tftp_complete(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 568 | break; |
| 569 | |
| 570 | case TFTP_ERROR: |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 571 | printf("\nTFTP error: '%s' (%d)\n", |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 572 | pkt + 2, ntohs(*(__be16 *)pkt)); |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 573 | |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 574 | switch (ntohs(*(__be16 *)pkt)) { |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 575 | case TFTP_ERR_FILE_NOT_FOUND: |
| 576 | case TFTP_ERR_ACCESS_DENIED: |
| 577 | puts("Not retrying...\n"); |
| 578 | eth_halt(); |
Joe Hershberger | d4bb76a | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 579 | net_set_state(NETLOOP_FAIL); |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 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"); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 588 | net_start_again(); |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 589 | break; |
| 590 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 591 | break; |
| 592 | } |
| 593 | } |
| 594 | |
| 595 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 596 | static void tftp_timeout_handler(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 597 | { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 598 | if (++timeout_count > timeout_count_max) { |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 599 | restart("Retry count exceeded"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 600 | } else { |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 601 | puts("T "); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 602 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 603 | if (tftp_state != STATE_RECV_WRQ) |
| 604 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 605 | } |
| 606 | } |
| 607 | |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 608 | /* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */ |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 609 | static int tftp_init_load_addr(void) |
| 610 | { |
| 611 | #ifdef CONFIG_LMB |
| 612 | struct lmb lmb; |
| 613 | phys_size_t max_size; |
| 614 | |
Simon Goldschmidt | 8890e7d | 2019-01-26 22:13:04 +0100 | [diff] [blame] | 615 | lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob); |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 616 | |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 617 | max_size = lmb_get_free_size(&lmb, image_load_addr); |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 618 | if (!max_size) |
| 619 | return -1; |
| 620 | |
| 621 | tftp_load_size = max_size; |
| 622 | #endif |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 623 | tftp_load_addr = image_load_addr; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 624 | return 0; |
| 625 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 626 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 627 | void tftp_start(enum proto_t protocol) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 628 | { |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 629 | #if CONFIG_NET_TFTP_VARS |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 630 | char *ep; /* Environment pointer */ |
Alessandro Rubini | 8832f6e | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 631 | |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 632 | /* |
| 633 | * Allow the user to choose TFTP blocksize and timeout. |
| 634 | * TFTP protocol has a minimal timeout of 1 second. |
| 635 | */ |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 636 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 637 | ep = env_get("tftpblocksize"); |
Luca Ceresoli | c4ffb9f | 2011-05-14 05:49:59 +0000 | [diff] [blame] | 638 | if (ep != NULL) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 639 | tftp_block_size_option = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 640 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 641 | ep = env_get("tftptimeout"); |
Luca Ceresoli | c4ffb9f | 2011-05-14 05:49:59 +0000 | [diff] [blame] | 642 | if (ep != NULL) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 643 | timeout_ms = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 644 | |
Bin Meng | e67eaa8 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 645 | if (timeout_ms < 1000) { |
| 646 | printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 647 | timeout_ms); |
Bin Meng | e67eaa8 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 648 | timeout_ms = 1000; |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 649 | } |
| 650 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 651 | ep = env_get("tftptimeoutcountmax"); |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 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 | |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 662 | debug("TFTP blocksize = %i, timeout = %ld ms\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 663 | tftp_block_size_option, timeout_ms); |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 664 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 665 | tftp_remote_ip = net_server_ip; |
Joe Hershberger | 9cb7b02 | 2018-07-03 19:36:43 -0500 | [diff] [blame] | 666 | if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) { |
Matthias Weisser | 6cc6326 | 2011-12-03 03:29:44 +0000 | [diff] [blame] | 667 | sprintf(default_filename, "%02X%02X%02X%02X.img", |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 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); |
Jean-Christophe PLAGNIOL-VILLARD | 5855541 | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 672 | |
Vladimir Zapolskiy | 04cc290 | 2017-06-28 22:56:07 +0300 | [diff] [blame] | 673 | strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN); |
| 674 | tftp_filename[DEFAULT_NAME_LEN - 1] = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 675 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 676 | printf("*** Warning: no boot file name; using '%s'\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 677 | tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 678 | } |
| 679 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 680 | printf("Using %s device\n", eth_get_name()); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 681 | printf("TFTP %s server %pI4; our IP address is %pI4", |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 682 | #ifdef CONFIG_CMD_TFTPPUT |
| 683 | protocol == TFTPPUT ? "to" : "from", |
| 684 | #else |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 685 | "from", |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 686 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 687 | &tftp_remote_ip, &net_ip); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 688 | |
| 689 | /* Check if we need to send across this subnet */ |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 690 | if (net_gateway.s_addr && net_netmask.s_addr) { |
| 691 | struct in_addr our_net; |
| 692 | struct in_addr remote_net; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 693 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 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); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 698 | } |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 699 | putc('\n'); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 700 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 701 | printf("Filename '%s'.", tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 702 | |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 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, ""); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 709 | putc('\n'); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 710 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 711 | tftp_put_active = (protocol == TFTPPUT); |
| 712 | if (tftp_put_active) { |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 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; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 716 | puts("Saving: *\b"); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 717 | tftp_state = STATE_SEND_WRQ; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 718 | new_transfer(); |
| 719 | } else |
| 720 | #endif |
| 721 | { |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 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); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 730 | puts("Loading: *\b"); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 731 | tftp_state = STATE_SEND_RRQ; |
Jörg Krause | 6f341f5 | 2017-09-15 22:16:48 +0200 | [diff] [blame] | 732 | #ifdef CONFIG_CMD_BOOTEFI |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 733 | efi_set_bootdev("Net", "", tftp_filename); |
Jörg Krause | 6f341f5 | 2017-09-15 22:16:48 +0200 | [diff] [blame] | 734 | #endif |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 735 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 736 | |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 737 | time_start = get_timer(0); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 738 | timeout_count_max = tftp_timeout_count_max; |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 739 | |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 740 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 741 | net_set_udp_handler(tftp_handler); |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 742 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 743 | net_set_icmp_handler(icmp_handler); |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 744 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 745 | tftp_remote_port = WELL_KNOWN_PORT; |
| 746 | timeout_count = 0; |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 747 | /* Use a pseudo-random port unless a specific port is set */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 748 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 749 | |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 750 | #ifdef CONFIG_TFTP_PORT |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 751 | ep = env_get("tftpdstp"); |
Luca Ceresoli | 35dfb18 | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 752 | if (ep != NULL) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 753 | tftp_remote_port = simple_strtol(ep, NULL, 10); |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 754 | ep = env_get("tftpsrcp"); |
Luca Ceresoli | 35dfb18 | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 755 | if (ep != NULL) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 756 | tftp_our_port = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 757 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 758 | tftp_cur_block = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 759 | |
wdenk | e6466f6 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 760 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 8ecdbed | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 761 | memset(net_server_ethaddr, 0, 6); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 762 | /* Revert tftp_block_size to dflt */ |
| 763 | tftp_block_size = TFTP_BLOCK_SIZE; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 764 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 765 | tftp_tsize = 0; |
| 766 | tftp_tsize_num_hash = 0; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 767 | #endif |
wdenk | e6466f6 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 768 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 769 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 770 | } |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 771 | |
| 772 | #ifdef CONFIG_CMD_TFTPSRV |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 773 | void tftp_start_server(void) |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 774 | { |
| 775 | tftp_filename[0] = 0; |
| 776 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 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 | } |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 783 | printf("Using %s device\n", eth_get_name()); |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 784 | printf("Listening for TFTP transfer on %pI4\n", &net_ip); |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 785 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 786 | |
| 787 | puts("Loading: *\b"); |
| 788 | |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 789 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 790 | timeout_count = 0; |
| 791 | timeout_ms = TIMEOUT; |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 792 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 793 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 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; |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 798 | |
| 799 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 800 | tftp_tsize = 0; |
| 801 | tftp_tsize_num_hash = 0; |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 802 | #endif |
| 803 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 804 | tftp_state = STATE_RECV_WRQ; |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 805 | net_set_udp_handler(tftp_handler); |
Andrew Ruder | 91393c5 | 2013-10-22 19:10:28 -0500 | [diff] [blame] | 806 | |
| 807 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 8ecdbed | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 808 | memset(net_server_ethaddr, 0, 6); |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 809 | } |
| 810 | #endif /* CONFIG_CMD_TFTPSRV */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 811 | |