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 | */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 8 | #include <command.h> |
Simon Glass | 1ab1692 | 2022-07-31 12:28:48 -0600 | [diff] [blame] | 9 | #include <display_options.h> |
Alexander Graf | 94c4b99 | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 10 | #include <efi_loader.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | 85f1378 | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 12 | #include <image.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 13 | #include <lmb.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Joe Hershberger | ed19185 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 15 | #include <mapmem.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 16 | #include <net.h> |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 17 | #include <net6.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Lukasz Majewski | 2118592 | 2015-08-24 00:21:43 +0200 | [diff] [blame] | 19 | #include <net/tftp.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 20 | #include "bootp.h" |
| 21 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Luca Ceresoli | c42fc27 | 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 | e67eaa8 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 27 | #define TIMEOUT 5000UL |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 28 | /* Number of "loading" hashes per line (for checking the image size) */ |
| 29 | #define HASHES_PER_LINE 65 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 30 | |
| 31 | /* |
| 32 | * TFTP operations. |
| 33 | */ |
| 34 | #define TFTP_RRQ 1 |
| 35 | #define TFTP_WRQ 2 |
| 36 | #define TFTP_DATA 3 |
| 37 | #define TFTP_ACK 4 |
| 38 | #define TFTP_ERROR 5 |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 39 | #define TFTP_OACK 6 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 40 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 41 | static ulong timeout_ms = TIMEOUT; |
Tom Rini | 26011a3 | 2022-03-11 09:12:02 -0500 | [diff] [blame] | 42 | static int timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2); |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 43 | static ulong time_start; /* Record time we started tftp */ |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 44 | static struct in6_addr tftp_remote_ip6; |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * These globals govern the timeout behavior when attempting a connection to a |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 48 | * TFTP server. tftp_timeout_ms specifies the number of milliseconds to |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 49 | * wait for the server to respond to initial connection. Second global, |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 50 | * tftp_timeout_count_max, gives the number of such connection retries. |
| 51 | * 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] | 52 | * positive. The globals are meant to be set (and restored) by code needing |
| 53 | * non-standard timeout behavior when initiating a TFTP transfer. |
| 54 | */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 55 | ulong tftp_timeout_ms = TIMEOUT; |
Tom Rini | 26011a3 | 2022-03-11 09:12:02 -0500 | [diff] [blame] | 56 | int tftp_timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2); |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 57 | |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 58 | enum { |
| 59 | TFTP_ERR_UNDEFINED = 0, |
| 60 | TFTP_ERR_FILE_NOT_FOUND = 1, |
| 61 | TFTP_ERR_ACCESS_DENIED = 2, |
| 62 | TFTP_ERR_DISK_FULL = 3, |
| 63 | TFTP_ERR_UNEXPECTED_OPCODE = 4, |
| 64 | TFTP_ERR_UNKNOWN_TRANSFER_ID = 5, |
| 65 | TFTP_ERR_FILE_ALREADY_EXISTS = 6, |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 66 | TFTP_ERR_OPTION_NEGOTIATION = 8, |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 67 | }; |
| 68 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 69 | static struct in_addr tftp_remote_ip; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 70 | /* The UDP port at their end */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 71 | static int tftp_remote_port; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 72 | /* The UDP port at our end */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 73 | static int tftp_our_port; |
| 74 | static int timeout_count; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 75 | /* packet sequence number */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 76 | static ulong tftp_cur_block; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 77 | /* last packet sequence number received */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 78 | static ulong tftp_prev_block; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 79 | /* count of sequence number wraparounds */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 80 | static ulong tftp_block_wrap; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 81 | /* memory offset due to wrapping */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 82 | static ulong tftp_block_wrap_offset; |
| 83 | static int tftp_state; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 84 | static ulong tftp_load_addr; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 85 | #ifdef CONFIG_TFTP_TSIZE |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 86 | /* The file size reported by the server */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 87 | static int tftp_tsize; |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 88 | /* The number of hashes we printed */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 89 | static short tftp_tsize_num_hash; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 90 | #endif |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 91 | /* The window size negotiated */ |
| 92 | static ushort tftp_windowsize; |
| 93 | /* Next block to send ack to */ |
| 94 | static ushort tftp_next_ack; |
| 95 | /* Last nack block we send */ |
| 96 | static ushort tftp_last_nack; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 97 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 98 | /* 1 if writing, else 0 */ |
| 99 | static int tftp_put_active; |
| 100 | /* 1 if we have sent the last block */ |
| 101 | static int tftp_put_final_block_sent; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 102 | #else |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 103 | #define tftp_put_active 0 |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 104 | #endif |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 105 | |
Luca Ceresoli | 562dfe5 | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 106 | #define STATE_SEND_RRQ 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 107 | #define STATE_DATA 2 |
| 108 | #define STATE_TOO_LARGE 3 |
| 109 | #define STATE_BAD_MAGIC 4 |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 110 | #define STATE_OACK 5 |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 111 | #define STATE_RECV_WRQ 6 |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 112 | #define STATE_SEND_WRQ 7 |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 113 | #define STATE_INVALID_OPTION 8 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 114 | |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 115 | /* default TFTP block size */ |
| 116 | #define TFTP_BLOCK_SIZE 512 |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 117 | #define TFTP_MTU_BLOCKSIZE6 (CONFIG_TFTP_BLOCKSIZE - 20) |
Luca Ceresoli | c42fc27 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 118 | /* sequence number is 16 bit */ |
| 119 | #define TFTP_SEQUENCE_SIZE ((ulong)(1<<16)) |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 120 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 121 | #define DEFAULT_NAME_LEN (8 + 4 + 1) |
| 122 | static char default_filename[DEFAULT_NAME_LEN]; |
Jean-Christophe PLAGNIOL-VILLARD | 5855541 | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 123 | |
| 124 | #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN |
| 125 | #define MAX_LEN 128 |
| 126 | #else |
| 127 | #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN |
| 128 | #endif |
| 129 | |
| 130 | static char tftp_filename[MAX_LEN]; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 131 | |
Wolfgang Denk | 627f5c3 | 2007-08-14 09:47:27 +0200 | [diff] [blame] | 132 | /* 512 is poor choice for ethernet, MTU is typically 1500. |
| 133 | * Minus eth.hdrs thats 1468. Can get 2x better throughput with |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 134 | * 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] | 135 | * (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] | 136 | */ |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 137 | |
| 138 | /* When windowsize is defined to 1, |
| 139 | * tftp behaves the same way as it was |
| 140 | * never declared |
| 141 | */ |
| 142 | #ifdef CONFIG_TFTP_WINDOWSIZE |
| 143 | #define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE |
| 144 | #else |
| 145 | #define TFTP_WINDOWSIZE 1 |
| 146 | #endif |
Alessandro Rubini | 8832f6e | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 147 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 148 | static unsigned short tftp_block_size = TFTP_BLOCK_SIZE; |
Patrick Delaunay | 6c3a447 | 2020-04-22 14:18:26 +0200 | [diff] [blame] | 149 | static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE; |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 150 | static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE; |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 151 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 152 | static inline int store_block(int block, uchar *src, unsigned int len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 153 | { |
Ley Foon Tan | 81bb324 | 2020-08-25 10:26:36 +0800 | [diff] [blame] | 154 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset - |
| 155 | tftp_block_size; |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 156 | ulong newsize = offset + len; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 157 | ulong store_addr = tftp_load_addr + offset; |
Tom Rini | db295e8 | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 158 | void *ptr; |
Joe Hershberger | ed19185 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 159 | |
Sughosh Ganu | 0d733f0 | 2024-08-26 17:29:22 +0530 | [diff] [blame] | 160 | if (CONFIG_IS_ENABLED(LMB)) { |
Sughosh Ganu | 0d733f0 | 2024-08-26 17:29:22 +0530 | [diff] [blame] | 161 | if (store_addr < tftp_load_addr || |
Sughosh Ganu | 04e10b5 | 2024-09-16 20:50:24 +0530 | [diff] [blame] | 162 | lmb_read_check(store_addr, len)) { |
Sughosh Ganu | 0d733f0 | 2024-08-26 17:29:22 +0530 | [diff] [blame] | 163 | puts("\nTFTP error: "); |
| 164 | puts("trying to overwrite reserved memory...\n"); |
| 165 | return -1; |
| 166 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 167 | } |
Sughosh Ganu | 0d733f0 | 2024-08-26 17:29:22 +0530 | [diff] [blame] | 168 | |
Tom Rini | db295e8 | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 169 | ptr = map_sysmem(store_addr, len); |
| 170 | memcpy(ptr, src, len); |
| 171 | unmap_sysmem(ptr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 172 | |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 173 | if (net_boot_file_size < newsize) |
| 174 | net_boot_file_size = newsize; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 175 | |
| 176 | return 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 179 | /* Clear our state ready for a new transfer */ |
Simon Glass | 8431332 | 2011-10-27 06:24:28 +0000 | [diff] [blame] | 180 | static void new_transfer(void) |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 181 | { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 182 | tftp_prev_block = 0; |
| 183 | tftp_block_wrap = 0; |
| 184 | tftp_block_wrap_offset = 0; |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 185 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 186 | tftp_put_final_block_sent = 0; |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 187 | #endif |
| 188 | } |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 189 | |
| 190 | #ifdef CONFIG_CMD_TFTPPUT |
| 191 | /** |
| 192 | * Load the next block from memory to be sent over tftp. |
| 193 | * |
| 194 | * @param block Block number to send |
| 195 | * @param dst Destination buffer for data |
| 196 | * @param len Number of bytes in block (this one and every other) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 197 | * Return: number of bytes loaded |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 198 | */ |
| 199 | static int load_block(unsigned block, uchar *dst, unsigned len) |
| 200 | { |
| 201 | /* We may want to get the final block from the previous set */ |
Ley Foon Tan | 5babe56 | 2020-08-25 10:26:37 +0800 | [diff] [blame] | 202 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset - |
| 203 | tftp_block_size; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 204 | ulong tosend = len; |
| 205 | |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 206 | tosend = min(net_boot_file_size - offset, tosend); |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 207 | (void)memcpy(dst, (void *)(image_save_addr + offset), tosend); |
Heinrich Schuchardt | c81ab83 | 2020-02-22 08:43:40 +0100 | [diff] [blame] | 208 | debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__, |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 209 | block, offset, len, tosend); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 210 | return tosend; |
| 211 | } |
| 212 | #endif |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 213 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 214 | static void tftp_send(void); |
| 215 | static void tftp_timeout_handler(void); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 216 | |
| 217 | /**********************************************************************/ |
| 218 | |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 219 | static void show_block_marker(void) |
| 220 | { |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 221 | ulong pos; |
| 222 | |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 223 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 224 | if (tftp_tsize) { |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 225 | pos = tftp_cur_block * tftp_block_size + |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 226 | tftp_block_wrap_offset; |
Max Krummenacher | dd081cc | 2015-08-05 17:17:05 +0200 | [diff] [blame] | 227 | if (pos > tftp_tsize) |
| 228 | pos = tftp_tsize; |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 229 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 230 | while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) { |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 231 | putc('#'); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 232 | tftp_tsize_num_hash++; |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 233 | } |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 234 | } else |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 235 | #endif |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 236 | { |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 237 | pos = (tftp_cur_block - 1) + |
| 238 | (tftp_block_wrap * TFTP_SEQUENCE_SIZE); |
| 239 | if ((pos % 10) == 0) |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 240 | putc('#'); |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 241 | else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0) |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 242 | puts("\n\t "); |
| 243 | } |
| 244 | } |
| 245 | |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 246 | /** |
| 247 | * restart the current transfer due to an error |
| 248 | * |
| 249 | * @param msg Message to print for user |
| 250 | */ |
| 251 | static void restart(const char *msg) |
| 252 | { |
| 253 | printf("\n%s; starting again\n", msg); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 254 | net_start_again(); |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | /* |
| 258 | * Check if the block number has wrapped, and update progress |
| 259 | * |
| 260 | * TODO: The egregious use of global variables in this file should be tidied. |
| 261 | */ |
| 262 | static void update_block_number(void) |
| 263 | { |
| 264 | /* |
| 265 | * RFC1350 specifies that the first data packet will |
| 266 | * have sequence number 1. If we receive a sequence |
| 267 | * number of 0 this means that there was a wrap |
| 268 | * around of the (16 bit) counter. |
| 269 | */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 270 | if (tftp_cur_block == 0 && tftp_prev_block != 0) { |
| 271 | tftp_block_wrap++; |
| 272 | tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE; |
| 273 | timeout_count = 0; /* we've done well, reset the timeout */ |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 274 | } |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 275 | show_block_marker(); |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 278 | /* The TFTP get or put is complete */ |
| 279 | static void tftp_complete(void) |
| 280 | { |
| 281 | #ifdef CONFIG_TFTP_TSIZE |
| 282 | /* Print hash marks for the last packet received */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 283 | while (tftp_tsize && tftp_tsize_num_hash < 49) { |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 284 | putc('#'); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 285 | tftp_tsize_num_hash++; |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 286 | } |
Simon Glass | c8f0a5c | 2014-10-10 07:30:21 -0600 | [diff] [blame] | 287 | puts(" "); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 288 | print_size(tftp_tsize, ""); |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 289 | #endif |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 290 | time_start = get_timer(time_start); |
| 291 | if (time_start > 0) { |
| 292 | puts("\n\t "); /* Line up with "Loading: " */ |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 293 | print_size(net_boot_file_size / |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 294 | time_start * 1000, "/s"); |
| 295 | } |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 296 | puts("\ndone\n"); |
AKASHI Takahiro | b916385 | 2024-01-17 13:39:43 +0900 | [diff] [blame] | 297 | if (!tftp_put_active) |
| 298 | efi_set_bootdev("Net", "", tftp_filename, |
| 299 | map_sysmem(tftp_load_addr, 0), |
| 300 | net_boot_file_size); |
Joe Hershberger | d4bb76a | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 301 | net_set_state(NETLOOP_SUCCESS); |
Simon Glass | b437aad | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 304 | static void tftp_send(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 305 | { |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 306 | uchar *pkt; |
Joe Hershberger | 4b7747e | 2012-05-15 08:59:04 +0000 | [diff] [blame] | 307 | uchar *xp; |
| 308 | int len = 0; |
| 309 | ushort *s; |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 310 | bool err_pkt = false; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 311 | |
| 312 | /* |
| 313 | * We will always be sending some sort of packet, so |
| 314 | * cobble together the packet headers now. |
| 315 | */ |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 316 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) |
| 317 | pkt = net_tx_packet + net_eth_hdr_size() + |
| 318 | IP6_HDR_SIZE + UDP_HDR_SIZE; |
| 319 | else |
| 320 | pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 321 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 322 | switch (tftp_state) { |
Luca Ceresoli | 562dfe5 | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 323 | case STATE_SEND_RRQ: |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 324 | case STATE_SEND_WRQ: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 325 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 326 | s = (ushort *)pkt; |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 327 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 328 | *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ : |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 329 | TFTP_WRQ); |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 330 | #else |
| 331 | *s++ = htons(TFTP_RRQ); |
| 332 | #endif |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 333 | pkt = (uchar *)s; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 334 | strcpy((char *)pkt, tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 335 | pkt += strlen(tftp_filename) + 1; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 336 | strcpy((char *)pkt, "octet"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 337 | pkt += 5 /*strlen("octet")*/ + 1; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 338 | strcpy((char *)pkt, "timeout"); |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 339 | pkt += 7 /*strlen("timeout")*/ + 1; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 340 | sprintf((char *)pkt, "%lu", timeout_ms / 1000); |
Robin Getz | 9e0a4d6 | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 341 | debug("send option \"timeout %s\"\n", (char *)pkt); |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 342 | pkt += strlen((char *)pkt) + 1; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 343 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 344 | pkt += sprintf((char *)pkt, "tsize%c%u%c", |
| 345 | 0, net_boot_file_size, 0); |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 346 | #endif |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 347 | /* try for more effic. blk size */ |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 348 | pkt += sprintf((char *)pkt, "blksize%c%d%c", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 349 | 0, tftp_block_size_option, 0); |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 350 | |
| 351 | /* try for more effic. window size. |
| 352 | * Implemented only for tftp get. |
| 353 | * Don't bother sending if it's 1 |
| 354 | */ |
| 355 | if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1) |
| 356 | pkt += sprintf((char *)pkt, "windowsize%c%d%c", |
| 357 | 0, tftp_window_size_option, 0); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 358 | len = pkt - xp; |
| 359 | break; |
| 360 | |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 361 | case STATE_OACK: |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 362 | |
| 363 | case STATE_RECV_WRQ: |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 364 | case STATE_DATA: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 365 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 366 | s = (ushort *)pkt; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 367 | s[0] = htons(TFTP_ACK); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 368 | s[1] = htons(tftp_cur_block); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 369 | pkt = (uchar *)(s + 2); |
| 370 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 371 | if (tftp_put_active) { |
| 372 | int toload = tftp_block_size; |
| 373 | int loaded = load_block(tftp_cur_block, pkt, toload); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 374 | |
| 375 | s[0] = htons(TFTP_DATA); |
| 376 | pkt += loaded; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 377 | tftp_put_final_block_sent = (loaded < toload); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 378 | } |
| 379 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 380 | len = pkt - xp; |
| 381 | break; |
| 382 | |
| 383 | case STATE_TOO_LARGE: |
| 384 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 385 | s = (ushort *)pkt; |
| 386 | *s++ = htons(TFTP_ERROR); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 387 | *s++ = htons(3); |
| 388 | |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 389 | pkt = (uchar *)s; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 390 | strcpy((char *)pkt, "File too large"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 391 | pkt += 14 /*strlen("File too large")*/ + 1; |
| 392 | len = pkt - xp; |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 393 | err_pkt = true; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 394 | break; |
| 395 | |
| 396 | case STATE_BAD_MAGIC: |
| 397 | xp = pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 398 | s = (ushort *)pkt; |
| 399 | *s++ = htons(TFTP_ERROR); |
| 400 | *s++ = htons(2); |
| 401 | pkt = (uchar *)s; |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 402 | strcpy((char *)pkt, "File has bad magic"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 403 | pkt += 18 /*strlen("File has bad magic")*/ + 1; |
| 404 | len = pkt - xp; |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 405 | err_pkt = true; |
| 406 | break; |
| 407 | |
| 408 | case STATE_INVALID_OPTION: |
| 409 | xp = pkt; |
| 410 | s = (ushort *)pkt; |
| 411 | *s++ = htons(TFTP_ERROR); |
| 412 | *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION); |
| 413 | pkt = (uchar *)s; |
| 414 | strcpy((char *)pkt, "Option Negotiation Failed"); |
| 415 | /* strlen("Option Negotiation Failed") + NULL*/ |
| 416 | pkt += 25 + 1; |
| 417 | len = pkt - xp; |
| 418 | err_pkt = true; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 419 | break; |
| 420 | } |
| 421 | |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 422 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) |
| 423 | net_send_udp_packet6(net_server_ethaddr, |
| 424 | &tftp_remote_ip6, |
| 425 | tftp_remote_port, |
| 426 | tftp_our_port, len); |
| 427 | else |
| 428 | net_send_udp_packet(net_server_ethaddr, tftp_remote_ip, |
| 429 | tftp_remote_port, tftp_our_port, len); |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 430 | |
| 431 | if (err_pkt) |
| 432 | net_set_state(NETLOOP_FAIL); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 435 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 436 | static void icmp_handler(unsigned type, unsigned code, unsigned dest, |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 437 | struct in_addr sip, unsigned src, uchar *pkt, |
| 438 | unsigned len) |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 439 | { |
| 440 | if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) { |
| 441 | /* Oh dear the other end has gone away */ |
| 442 | restart("TFTP server died"); |
| 443 | } |
| 444 | } |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 445 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 446 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 447 | static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip, |
| 448 | unsigned src, unsigned len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 449 | { |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 450 | __be16 proto; |
| 451 | __be16 *s; |
Wolfgang Denk | 83e8e47 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 452 | int i; |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 453 | u16 timeout_val_rcvd; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 454 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 455 | if (dest != tftp_our_port) { |
Luca Ceresoli | 09b1823 | 2011-05-14 05:50:02 +0000 | [diff] [blame] | 456 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 457 | } |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 458 | if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port && |
| 459 | tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 460 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 461 | |
Luca Ceresoli | 35dfb18 | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 462 | if (len < 2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 463 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 464 | len -= 2; |
| 465 | /* warning: don't use increment (++) in ntohs() macros!! */ |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 466 | s = (__be16 *)pkt; |
Wolfgang Denk | 3135c54 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 467 | proto = *s++; |
| 468 | pkt = (uchar *)s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 469 | switch (ntohs(proto)) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 470 | case TFTP_RRQ: |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 471 | break; |
| 472 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 473 | case TFTP_ACK: |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 474 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 475 | if (tftp_put_active) { |
| 476 | if (tftp_put_final_block_sent) { |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 477 | tftp_complete(); |
| 478 | } else { |
| 479 | /* |
| 480 | * Move to the next block. We want our block |
| 481 | * count to wrap just like the other end! |
| 482 | */ |
| 483 | int block = ntohs(*s); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 484 | int ack_ok = (tftp_cur_block == block); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 485 | |
Ley Foon Tan | 8de767a | 2020-08-25 10:26:35 +0800 | [diff] [blame] | 486 | tftp_prev_block = tftp_cur_block; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 487 | tftp_cur_block = (unsigned short)(block + 1); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 488 | update_block_number(); |
Mikhail Kshevetskiy | 4565096 | 2024-07-12 13:47:54 +0400 | [diff] [blame] | 489 | if (ack_ok) { |
| 490 | if (block == 0 && |
| 491 | tftp_state == STATE_SEND_WRQ){ |
| 492 | /* connection's first ACK */ |
| 493 | tftp_state = STATE_DATA; |
| 494 | tftp_remote_port = src; |
| 495 | } |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 496 | tftp_send(); /* Send next data block */ |
Mikhail Kshevetskiy | 4565096 | 2024-07-12 13:47:54 +0400 | [diff] [blame] | 497 | } |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 498 | } |
| 499 | } |
| 500 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 501 | break; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 502 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 503 | default: |
| 504 | break; |
| 505 | |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 506 | #ifdef CONFIG_CMD_TFTPSRV |
| 507 | case TFTP_WRQ: |
| 508 | debug("Got WRQ\n"); |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 509 | tftp_remote_ip = sip; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 510 | tftp_remote_port = src; |
| 511 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 512 | new_transfer(); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 513 | tftp_send(); /* Send ACK(0) */ |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 514 | break; |
| 515 | #endif |
| 516 | |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 517 | case TFTP_OACK: |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 518 | debug("Got OACK: "); |
| 519 | for (i = 0; i < len; i++) { |
| 520 | if (pkt[i] == '\0') |
| 521 | debug(" "); |
| 522 | else |
| 523 | debug("%c", pkt[i]); |
| 524 | } |
| 525 | debug("\n"); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 526 | tftp_state = STATE_OACK; |
| 527 | tftp_remote_port = src; |
Wolfgang Denk | 8b70f34 | 2007-08-31 10:01:51 +0200 | [diff] [blame] | 528 | /* |
| 529 | * Check for 'blksize' option. |
| 530 | * Careful: "i" is signed, "len" is unsigned, thus |
| 531 | * something like "len-8" may give a *huge* number |
| 532 | */ |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 533 | for (i = 0; i+8 < len; i++) { |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 534 | if (strcasecmp((char *)pkt + i, "blksize") == 0) { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 535 | tftp_block_size = (unsigned short) |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 536 | dectoul((char *)pkt + i + 8, NULL); |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 537 | debug("Blocksize oack: %s, %d\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 538 | (char *)pkt + i + 8, tftp_block_size); |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 539 | if (tftp_block_size > tftp_block_size_option) { |
| 540 | printf("Invalid blk size(=%d)\n", |
| 541 | tftp_block_size); |
| 542 | tftp_state = STATE_INVALID_OPTION; |
| 543 | } |
| 544 | } |
| 545 | if (strcasecmp((char *)pkt + i, "timeout") == 0) { |
| 546 | timeout_val_rcvd = (unsigned short) |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 547 | dectoul((char *)pkt + i + 8, NULL); |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 548 | debug("Timeout oack: %s, %d\n", |
| 549 | (char *)pkt + i + 8, timeout_val_rcvd); |
| 550 | if (timeout_val_rcvd != (timeout_ms / 1000)) { |
| 551 | printf("Invalid timeout val(=%d s)\n", |
| 552 | timeout_val_rcvd); |
| 553 | tftp_state = STATE_INVALID_OPTION; |
| 554 | } |
Wolfgang Denk | 83e8e47 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 555 | } |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 556 | #ifdef CONFIG_TFTP_TSIZE |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 557 | if (strcasecmp((char *)pkt + i, "tsize") == 0) { |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 558 | tftp_tsize = dectoul((char *)pkt + i + 6, |
| 559 | NULL); |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 560 | debug("size = %s, %d\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 561 | (char *)pkt + i + 6, tftp_tsize); |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 562 | } |
| 563 | #endif |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 564 | if (strcasecmp((char *)pkt + i, "windowsize") == 0) { |
| 565 | tftp_windowsize = |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 566 | dectoul((char *)pkt + i + 11, NULL); |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 567 | debug("windowsize = %s, %d\n", |
| 568 | (char *)pkt + i + 11, tftp_windowsize); |
| 569 | } |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 570 | } |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 571 | |
| 572 | tftp_next_ack = tftp_windowsize; |
| 573 | |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 574 | #ifdef CONFIG_CMD_TFTPPUT |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 575 | if (tftp_put_active && tftp_state == STATE_OACK) { |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 576 | /* Get ready to send the first block */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 577 | tftp_state = STATE_DATA; |
| 578 | tftp_cur_block++; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 579 | } |
| 580 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 581 | tftp_send(); /* Send ACK or first data block */ |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 582 | break; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 583 | case TFTP_DATA: |
| 584 | if (len < 2) |
| 585 | return; |
| 586 | len -= 2; |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 587 | |
| 588 | if (ntohs(*(__be16 *)pkt) != (ushort)(tftp_cur_block + 1)) { |
| 589 | debug("Received unexpected block: %d, expected: %d\n", |
| 590 | ntohs(*(__be16 *)pkt), |
| 591 | (ushort)(tftp_cur_block + 1)); |
| 592 | /* |
Sean Edmond | 1589836 | 2023-01-04 18:16:26 -0800 | [diff] [blame] | 593 | * Only ACK if the block count received is greater than |
| 594 | * the expected block count, otherwise skip ACK. |
| 595 | * (required to properly handle the server retransmitting |
| 596 | * the window) |
| 597 | */ |
| 598 | if ((ushort)(tftp_cur_block + 1) - (short)(ntohs(*(__be16 *)pkt)) > 0) |
| 599 | break; |
| 600 | /* |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 601 | * If one packet is dropped most likely |
| 602 | * all other buffers in the window |
| 603 | * that will arrive will cause a sending NACK. |
| 604 | * This just overwellms the server, let's just send one. |
| 605 | */ |
| 606 | if (tftp_last_nack != tftp_cur_block) { |
| 607 | tftp_send(); |
| 608 | tftp_last_nack = tftp_cur_block; |
| 609 | tftp_next_ack = (ushort)(tftp_cur_block + |
| 610 | tftp_windowsize); |
| 611 | } |
| 612 | break; |
| 613 | } |
| 614 | |
| 615 | tftp_cur_block++; |
| 616 | tftp_cur_block %= TFTP_SEQUENCE_SIZE; |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 617 | |
Harm Berntsen | d097b1a | 2020-11-27 21:45:56 +0000 | [diff] [blame] | 618 | if (tftp_state == STATE_SEND_RRQ) { |
Ravik Hasija | e387e9a | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 619 | debug("Server did not acknowledge any options!\n"); |
Harm Berntsen | d097b1a | 2020-11-27 21:45:56 +0000 | [diff] [blame] | 620 | tftp_next_ack = tftp_windowsize; |
| 621 | } |
wdenk | 7182b0f | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 622 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 623 | if (tftp_state == STATE_SEND_RRQ || tftp_state == STATE_OACK || |
| 624 | tftp_state == STATE_RECV_WRQ) { |
wdenk | ef89394 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 625 | /* first block received */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 626 | tftp_state = STATE_DATA; |
| 627 | tftp_remote_port = src; |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 628 | new_transfer(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 629 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 630 | if (tftp_cur_block != 1) { /* Assertion */ |
| 631 | puts("\nTFTP error: "); |
| 632 | printf("First block is not block 1 (%ld)\n", |
| 633 | tftp_cur_block); |
| 634 | puts("Starting again\n\n"); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 635 | net_start_again(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 636 | break; |
| 637 | } |
| 638 | } |
| 639 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 640 | if (tftp_cur_block == tftp_prev_block) { |
| 641 | /* Same block again; ignore it. */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 642 | break; |
| 643 | } |
| 644 | |
Ravik Hasija | d42686e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 645 | update_block_number(); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 646 | tftp_prev_block = tftp_cur_block; |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 647 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 648 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 649 | |
Ley Foon Tan | 81bb324 | 2020-08-25 10:26:36 +0800 | [diff] [blame] | 650 | if (store_block(tftp_cur_block, pkt + 2, len)) { |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 651 | eth_halt(); |
| 652 | net_set_state(NETLOOP_FAIL); |
| 653 | break; |
| 654 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 655 | |
Ramon Fried | b891c79 | 2021-02-03 21:28:59 +0200 | [diff] [blame] | 656 | if (len < tftp_block_size) { |
| 657 | tftp_send(); |
| 658 | tftp_complete(); |
| 659 | break; |
| 660 | } |
| 661 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 662 | /* |
Luca Ceresoli | 2f3dc0a | 2011-05-17 00:03:41 +0000 | [diff] [blame] | 663 | * Acknowledge the block just received, which will prompt |
Luca Ceresoli | 5079c76 | 2011-05-17 00:03:37 +0000 | [diff] [blame] | 664 | * the remote for the next one. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 665 | */ |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 666 | if (tftp_cur_block == tftp_next_ack) { |
| 667 | tftp_send(); |
| 668 | tftp_next_ack += tftp_windowsize; |
| 669 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 670 | break; |
| 671 | |
| 672 | case TFTP_ERROR: |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 673 | printf("\nTFTP error: '%s' (%d)\n", |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 674 | pkt + 2, ntohs(*(__be16 *)pkt)); |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 675 | |
Kim Phillips | 878dad0 | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 676 | switch (ntohs(*(__be16 *)pkt)) { |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 677 | case TFTP_ERR_FILE_NOT_FOUND: |
| 678 | case TFTP_ERR_ACCESS_DENIED: |
| 679 | puts("Not retrying...\n"); |
| 680 | eth_halt(); |
Joe Hershberger | d4bb76a | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 681 | net_set_state(NETLOOP_FAIL); |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 682 | break; |
| 683 | case TFTP_ERR_UNDEFINED: |
| 684 | case TFTP_ERR_DISK_FULL: |
| 685 | case TFTP_ERR_UNEXPECTED_OPCODE: |
| 686 | case TFTP_ERR_UNKNOWN_TRANSFER_ID: |
| 687 | case TFTP_ERR_FILE_ALREADY_EXISTS: |
| 688 | default: |
| 689 | puts("Starting again\n\n"); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 690 | net_start_again(); |
Remy Bohmer | b46293f | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 691 | break; |
| 692 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 693 | break; |
| 694 | } |
| 695 | } |
| 696 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 697 | static void tftp_timeout_handler(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 698 | { |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 699 | if (++timeout_count > timeout_count_max) { |
Simon Glass | bd8a0e0 | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 700 | restart("Retry count exceeded"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 701 | } else { |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 702 | puts("T "); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 703 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 704 | if (tftp_state != STATE_RECV_WRQ) |
| 705 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 706 | } |
| 707 | } |
| 708 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 709 | static int tftp_init_load_addr(void) |
| 710 | { |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 711 | tftp_load_addr = image_load_addr; |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 712 | return 0; |
| 713 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 714 | |
Rasmus Villemoes | 401c094 | 2022-10-14 19:43:42 +0200 | [diff] [blame] | 715 | static int saved_tftp_block_size_option; |
| 716 | static void sanitize_tftp_block_size_option(enum proto_t protocol) |
| 717 | { |
| 718 | int cap, max_defrag; |
| 719 | |
| 720 | switch (protocol) { |
| 721 | case TFTPGET: |
| 722 | max_defrag = config_opt_enabled(CONFIG_IP_DEFRAG, CONFIG_NET_MAXDEFRAG, 0); |
| 723 | if (max_defrag) { |
| 724 | /* Account for IP, UDP and TFTP headers. */ |
| 725 | cap = max_defrag - (20 + 8 + 4); |
| 726 | /* RFC2348 sets a hard upper limit. */ |
| 727 | cap = min(cap, 65464); |
| 728 | break; |
| 729 | } |
| 730 | /* |
| 731 | * If not CONFIG_IP_DEFRAG, cap at the same value as |
| 732 | * for tftp put, namely normal MTU minus protocol |
| 733 | * overhead. |
| 734 | */ |
| 735 | fallthrough; |
| 736 | case TFTPPUT: |
| 737 | default: |
| 738 | /* |
| 739 | * U-Boot does not support IP fragmentation on TX, so |
| 740 | * this must be small enough that it fits normal MTU |
| 741 | * (and small enough that it fits net_tx_packet which |
| 742 | * has room for PKTSIZE_ALIGN bytes). |
| 743 | */ |
| 744 | cap = 1468; |
| 745 | } |
| 746 | if (tftp_block_size_option > cap) { |
| 747 | printf("Capping tftp block size option to %d (was %d)\n", |
| 748 | cap, tftp_block_size_option); |
| 749 | saved_tftp_block_size_option = tftp_block_size_option; |
| 750 | tftp_block_size_option = cap; |
| 751 | } |
| 752 | } |
| 753 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 754 | void tftp_start(enum proto_t protocol) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 755 | { |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 756 | __maybe_unused char *ep; /* Environment pointer */ |
Rasmus Villemoes | 401c094 | 2022-10-14 19:43:42 +0200 | [diff] [blame] | 757 | |
| 758 | if (saved_tftp_block_size_option) { |
| 759 | tftp_block_size_option = saved_tftp_block_size_option; |
| 760 | saved_tftp_block_size_option = 0; |
| 761 | } |
| 762 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 763 | if (IS_ENABLED(CONFIG_NET_TFTP_VARS)) { |
Alessandro Rubini | 8832f6e | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 764 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 765 | /* |
| 766 | * Allow the user to choose TFTP blocksize and timeout. |
| 767 | * TFTP protocol has a minimal timeout of 1 second. |
| 768 | */ |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 769 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 770 | ep = env_get("tftpblocksize"); |
| 771 | if (ep != NULL) |
| 772 | tftp_block_size_option = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 773 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 774 | ep = env_get("tftpwindowsize"); |
| 775 | if (ep != NULL) |
| 776 | tftp_window_size_option = simple_strtol(ep, NULL, 10); |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 777 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 778 | ep = env_get("tftptimeout"); |
| 779 | if (ep != NULL) |
| 780 | timeout_ms = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 781 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 782 | if (timeout_ms < 1000) { |
| 783 | printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n", |
| 784 | timeout_ms); |
| 785 | timeout_ms = 1000; |
| 786 | } |
Wolfgang Denk | b233bd7 | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 787 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 788 | ep = env_get("tftptimeoutcountmax"); |
| 789 | if (ep != NULL) |
| 790 | tftp_timeout_count_max = simple_strtol(ep, NULL, 10); |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 791 | |
Rasmus Villemoes | 82ff5b0 | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 792 | if (tftp_timeout_count_max < 0) { |
| 793 | printf("TFTP timeout count max (%d ms) negative, set to 0\n", |
| 794 | tftp_timeout_count_max); |
| 795 | tftp_timeout_count_max = 0; |
| 796 | } |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 797 | } |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 798 | |
Rasmus Villemoes | 401c094 | 2022-10-14 19:43:42 +0200 | [diff] [blame] | 799 | sanitize_tftp_block_size_option(protocol); |
| 800 | |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 801 | debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n", |
| 802 | tftp_block_size_option, tftp_window_size_option, timeout_ms); |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 803 | |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 804 | if (IS_ENABLED(CONFIG_IPV6)) |
| 805 | tftp_remote_ip6 = net_server_ip6; |
| 806 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 807 | tftp_remote_ip = net_server_ip; |
Joe Hershberger | 9cb7b02 | 2018-07-03 19:36:43 -0500 | [diff] [blame] | 808 | if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) { |
Matthias Weisser | 6cc6326 | 2011-12-03 03:29:44 +0000 | [diff] [blame] | 809 | sprintf(default_filename, "%02X%02X%02X%02X.img", |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 810 | net_ip.s_addr & 0xFF, |
| 811 | (net_ip.s_addr >> 8) & 0xFF, |
| 812 | (net_ip.s_addr >> 16) & 0xFF, |
| 813 | (net_ip.s_addr >> 24) & 0xFF); |
Jean-Christophe PLAGNIOL-VILLARD | 5855541 | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 814 | |
Vladimir Zapolskiy | 04cc290 | 2017-06-28 22:56:07 +0300 | [diff] [blame] | 815 | strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN); |
| 816 | tftp_filename[DEFAULT_NAME_LEN - 1] = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 817 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 818 | printf("*** Warning: no boot file name; using '%s'\n", |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 819 | tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 822 | if (IS_ENABLED(CONFIG_IPV6)) { |
| 823 | if (use_ip6) { |
| 824 | char *s, *e; |
| 825 | size_t len; |
| 826 | |
| 827 | s = strchr(net_boot_file_name, '['); |
| 828 | e = strchr(net_boot_file_name, ']'); |
| 829 | len = e - s; |
| 830 | if (s && e) { |
Ehsan Mohandesi | 31072ed | 2023-01-13 09:27:41 -0800 | [diff] [blame] | 831 | string_to_ip6(s + 1, len - 1, &tftp_remote_ip6); |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 832 | strlcpy(tftp_filename, e + 2, MAX_LEN); |
| 833 | } else { |
| 834 | strlcpy(tftp_filename, net_boot_file_name, MAX_LEN); |
| 835 | tftp_filename[MAX_LEN - 1] = 0; |
| 836 | } |
| 837 | } |
| 838 | } |
| 839 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 840 | printf("Using %s device\n", eth_get_name()); |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 841 | |
| 842 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) { |
| 843 | printf("TFTP from server %pI6c; our IP address is %pI6c", |
| 844 | &tftp_remote_ip6, &net_ip6); |
| 845 | |
| 846 | if (tftp_block_size_option > TFTP_MTU_BLOCKSIZE6) |
| 847 | tftp_block_size_option = TFTP_MTU_BLOCKSIZE6; |
| 848 | } else { |
| 849 | printf("TFTP %s server %pI4; our IP address is %pI4", |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 850 | #ifdef CONFIG_CMD_TFTPPUT |
| 851 | protocol == TFTPPUT ? "to" : "from", |
| 852 | #else |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 853 | "from", |
Simon Glass | 4abd0e2 | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 854 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 855 | &tftp_remote_ip, &net_ip); |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 856 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 857 | |
| 858 | /* Check if we need to send across this subnet */ |
Viacheslav Mitrofanov | 12b95ae | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 859 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) { |
| 860 | if (!ip6_addr_in_subnet(&net_ip6, &tftp_remote_ip6, |
| 861 | net_prefix_length)) |
| 862 | printf("; sending through gateway %pI6c", |
| 863 | &net_gateway6); |
| 864 | } else if (net_gateway.s_addr && net_netmask.s_addr) { |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 865 | struct in_addr our_net; |
| 866 | struct in_addr remote_net; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 867 | |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 868 | our_net.s_addr = net_ip.s_addr & net_netmask.s_addr; |
| 869 | remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr; |
| 870 | if (our_net.s_addr != remote_net.s_addr) |
| 871 | printf("; sending through gateway %pI4", &net_gateway); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 872 | } |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 873 | putc('\n'); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 874 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 875 | printf("Filename '%s'.", tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 876 | |
Joe Hershberger | 290c899 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 877 | if (net_boot_file_expected_size_in_blocks) { |
| 878 | printf(" Size is 0x%x Bytes = ", |
| 879 | net_boot_file_expected_size_in_blocks << 9); |
| 880 | print_size(net_boot_file_expected_size_in_blocks << 9, ""); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 881 | } |
| 882 | |
Luca Ceresoli | f40538a | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 883 | putc('\n'); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 884 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 885 | tftp_put_active = (protocol == TFTPPUT); |
| 886 | if (tftp_put_active) { |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 887 | printf("Save address: 0x%lx\n", image_save_addr); |
| 888 | printf("Save size: 0x%lx\n", image_save_size); |
| 889 | net_boot_file_size = image_save_size; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 890 | puts("Saving: *\b"); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 891 | tftp_state = STATE_SEND_WRQ; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 892 | new_transfer(); |
| 893 | } else |
| 894 | #endif |
| 895 | { |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 896 | if (tftp_init_load_addr()) { |
| 897 | eth_halt(); |
| 898 | net_set_state(NETLOOP_FAIL); |
| 899 | puts("\nTFTP error: "); |
| 900 | puts("trying to overwrite reserved memory...\n"); |
| 901 | return; |
| 902 | } |
| 903 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 904 | puts("Loading: *\b"); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 905 | tftp_state = STATE_SEND_RRQ; |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 906 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 907 | |
Simon Glass | cab9a8d | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 908 | time_start = get_timer(0); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 909 | timeout_count_max = tftp_timeout_count_max; |
Bartlomiej Sieka | 371cde7 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 910 | |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 911 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 912 | net_set_udp_handler(tftp_handler); |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 913 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 6a398d2 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 914 | net_set_icmp_handler(icmp_handler); |
Simon Glass | 2928cd8 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 915 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 916 | tftp_remote_port = WELL_KNOWN_PORT; |
| 917 | timeout_count = 0; |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 918 | /* Use a pseudo-random port unless a specific port is set */ |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 919 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
David Updegraff | 7280da7 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 920 | |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 921 | #ifdef CONFIG_TFTP_PORT |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 922 | ep = env_get("tftpdstp"); |
Luca Ceresoli | 35dfb18 | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 923 | if (ep != NULL) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 924 | tftp_remote_port = simple_strtol(ep, NULL, 10); |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 925 | ep = env_get("tftpsrcp"); |
Luca Ceresoli | 35dfb18 | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 926 | if (ep != NULL) |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 927 | tftp_our_port = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | e3cfce5 | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 928 | #endif |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 929 | tftp_cur_block = 0; |
Ramon Fried | 6e9aa54 | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 930 | tftp_windowsize = 1; |
| 931 | tftp_last_nack = 0; |
wdenk | e6466f6 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 932 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 8ecdbed | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 933 | memset(net_server_ethaddr, 0, 6); |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 934 | /* Revert tftp_block_size to dflt */ |
| 935 | tftp_block_size = TFTP_BLOCK_SIZE; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 936 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 937 | tftp_tsize = 0; |
| 938 | tftp_tsize_num_hash = 0; |
Robin Getz | b3b00ed | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 939 | #endif |
wdenk | e6466f6 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 940 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 941 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 942 | } |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 943 | |
| 944 | #ifdef CONFIG_CMD_TFTPSRV |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 945 | void tftp_start_server(void) |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 946 | { |
| 947 | tftp_filename[0] = 0; |
| 948 | |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 949 | if (tftp_init_load_addr()) { |
| 950 | eth_halt(); |
| 951 | net_set_state(NETLOOP_FAIL); |
| 952 | puts("\nTFTP error: trying to overwrite reserved memory...\n"); |
| 953 | return; |
| 954 | } |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 955 | printf("Using %s device\n", eth_get_name()); |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 956 | printf("Listening for TFTP transfer on %pI4\n", &net_ip); |
Simon Goldschmidt | a96cf8f | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 957 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 958 | |
| 959 | puts("Loading: *\b"); |
| 960 | |
Albert ARIBAUD \(3ADEV\) | 8300685 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 961 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 962 | timeout_count = 0; |
| 963 | timeout_ms = TIMEOUT; |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 964 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 965 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 966 | /* Revert tftp_block_size to dflt */ |
| 967 | tftp_block_size = TFTP_BLOCK_SIZE; |
| 968 | tftp_cur_block = 0; |
| 969 | tftp_our_port = WELL_KNOWN_PORT; |
Arjan Minzinga Zijlstra | fc13423 | 2022-03-31 08:03:16 +0000 | [diff] [blame] | 970 | tftp_windowsize = 1; |
| 971 | tftp_next_ack = tftp_windowsize; |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 972 | |
| 973 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 974 | tftp_tsize = 0; |
| 975 | tftp_tsize_num_hash = 0; |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 976 | #endif |
| 977 | |
Joe Hershberger | 6470159 | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 978 | tftp_state = STATE_RECV_WRQ; |
Joe Hershberger | 5874dec | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 979 | net_set_udp_handler(tftp_handler); |
Andrew Ruder | 91393c5 | 2013-10-22 19:10:28 -0500 | [diff] [blame] | 980 | |
| 981 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 8ecdbed | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 982 | memset(net_server_ethaddr, 0, 6); |
Luca Ceresoli | b640ed3 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 983 | } |
| 984 | #endif /* CONFIG_CMD_TFTPSRV */ |