wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 2 | * Copyright 1994, 1995, 2000 Neil Russell. |
| 3 | * (See License) |
| 4 | * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 5 | * Copyright 2011 Comelit Group SpA, |
| 6 | * Luca Ceresoli <luca.ceresoli@comelit.it> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 7 | */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 8 | #include <command.h> |
Simon Glass | 4e4bf94 | 2022-07-31 12:28:48 -0600 | [diff] [blame] | 9 | #include <display_options.h> |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 10 | #include <efi_loader.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | 8e8ccfe | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 12 | #include <image.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 13 | #include <lmb.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Joe Hershberger | 55d5fd9 | 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 | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 17 | #include <net6.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Lukasz Majewski | 3469695 | 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 | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 24 | /* Well known TFTP port # */ |
| 25 | #define WELL_KNOWN_PORT 69 |
| 26 | /* Millisecs to timeout for lost pkt */ |
Bin Meng | af2ca59 | 2015-08-27 22:25:51 -0700 | [diff] [blame] | 27 | #define TIMEOUT 5000UL |
Luca Ceresoli | 2f09413 | 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 | fbe4b5c | 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 | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 41 | static ulong timeout_ms = TIMEOUT; |
Tom Rini | 01d1b99 | 2022-03-11 09:12:02 -0500 | [diff] [blame] | 42 | static int timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2); |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 43 | static ulong time_start; /* Record time we started tftp */ |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 44 | static struct in6_addr tftp_remote_ip6; |
Bartlomiej Sieka | e83cc06 | 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 | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 48 | * TFTP server. tftp_timeout_ms specifies the number of milliseconds to |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 49 | * wait for the server to respond to initial connection. Second global, |
Joe Hershberger | 8885c5f | 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 | e83cc06 | 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 | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 55 | ulong tftp_timeout_ms = TIMEOUT; |
Tom Rini | 01d1b99 | 2022-03-11 09:12:02 -0500 | [diff] [blame] | 56 | int tftp_timeout_count_max = (CONFIG_NET_RETRY_COUNT * 2); |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 57 | |
Remy Bohmer | aafda38 | 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 | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 66 | TFTP_ERR_OPTION_NEGOTIATION = 8, |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 67 | }; |
| 68 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 69 | static struct in_addr tftp_remote_ip; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 70 | /* The UDP port at their end */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 71 | static int tftp_remote_port; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 72 | /* The UDP port at our end */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 73 | static int tftp_our_port; |
| 74 | static int timeout_count; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 75 | /* packet sequence number */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 76 | static ulong tftp_cur_block; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 77 | /* last packet sequence number received */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 78 | static ulong tftp_prev_block; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 79 | /* count of sequence number wraparounds */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 80 | static ulong tftp_block_wrap; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 81 | /* memory offset due to wrapping */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 82 | static ulong tftp_block_wrap_offset; |
| 83 | static int tftp_state; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 84 | static ulong tftp_load_addr; |
| 85 | #ifdef CONFIG_LMB |
| 86 | static ulong tftp_load_size; |
| 87 | #endif |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 88 | #ifdef CONFIG_TFTP_TSIZE |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 89 | /* The file size reported by the server */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 90 | static int tftp_tsize; |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 91 | /* The number of hashes we printed */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 92 | static short tftp_tsize_num_hash; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 93 | #endif |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 94 | /* The window size negotiated */ |
| 95 | static ushort tftp_windowsize; |
| 96 | /* Next block to send ack to */ |
| 97 | static ushort tftp_next_ack; |
| 98 | /* Last nack block we send */ |
| 99 | static ushort tftp_last_nack; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 100 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 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 | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 105 | #else |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 106 | #define tftp_put_active 0 |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 107 | #endif |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 108 | |
Luca Ceresoli | e3fb0ab | 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 | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 113 | #define STATE_OACK 5 |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 114 | #define STATE_RECV_WRQ 6 |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 115 | #define STATE_SEND_WRQ 7 |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 116 | #define STATE_INVALID_OPTION 8 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 117 | |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 118 | /* default TFTP block size */ |
| 119 | #define TFTP_BLOCK_SIZE 512 |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 120 | #define TFTP_MTU_BLOCKSIZE6 (CONFIG_TFTP_BLOCKSIZE - 20) |
Luca Ceresoli | 2f09413 | 2011-05-14 05:49:56 +0000 | [diff] [blame] | 121 | /* sequence number is 16 bit */ |
| 122 | #define TFTP_SEQUENCE_SIZE ((ulong)(1<<16)) |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 123 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 124 | #define DEFAULT_NAME_LEN (8 + 4 + 1) |
| 125 | static char default_filename[DEFAULT_NAME_LEN]; |
Jean-Christophe PLAGNIOL-VILLARD | a93907c | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 126 | |
| 127 | #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN |
| 128 | #define MAX_LEN 128 |
| 129 | #else |
| 130 | #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN |
| 131 | #endif |
| 132 | |
| 133 | static char tftp_filename[MAX_LEN]; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 134 | |
Wolfgang Denk | 85eb5ca | 2007-08-14 09:47:27 +0200 | [diff] [blame] | 135 | /* 512 is poor choice for ethernet, MTU is typically 1500. |
| 136 | * Minus eth.hdrs thats 1468. Can get 2x better throughput with |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 137 | * almost-MTU block sizes. At least try... fall back to 512 if need be. |
Alessandro Rubini | 89ba81d | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 138 | * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file) |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 139 | */ |
Alessandro Rubini | 89ba81d | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 140 | |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 141 | /* When windowsize is defined to 1, |
| 142 | * tftp behaves the same way as it was |
| 143 | * never declared |
| 144 | */ |
| 145 | #ifdef CONFIG_TFTP_WINDOWSIZE |
| 146 | #define TFTP_WINDOWSIZE CONFIG_TFTP_WINDOWSIZE |
| 147 | #else |
| 148 | #define TFTP_WINDOWSIZE 1 |
| 149 | #endif |
| 150 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 151 | static unsigned short tftp_block_size = TFTP_BLOCK_SIZE; |
Patrick Delaunay | 31d275b | 2020-04-22 14:18:26 +0200 | [diff] [blame] | 152 | static unsigned short tftp_block_size_option = CONFIG_TFTP_BLOCKSIZE; |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 153 | static unsigned short tftp_window_size_option = TFTP_WINDOWSIZE; |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 154 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 155 | static inline int store_block(int block, uchar *src, unsigned int len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 156 | { |
Ley Foon Tan | ae0bdf0 | 2020-08-25 10:26:36 +0800 | [diff] [blame] | 157 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset - |
| 158 | tftp_block_size; |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 159 | ulong newsize = offset + len; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 160 | ulong store_addr = tftp_load_addr + offset; |
Tom Rini | 52938fc | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 161 | void *ptr; |
Joe Hershberger | 55d5fd9 | 2015-03-22 17:09:08 -0500 | [diff] [blame] | 162 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 163 | #ifdef CONFIG_LMB |
Tom Rini | 52938fc | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 164 | ulong end_addr = tftp_load_addr + tftp_load_size; |
Bin Meng | ca48cb4 | 2019-11-15 22:20:13 -0800 | [diff] [blame] | 165 | |
Tom Rini | 52938fc | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 166 | if (!end_addr) |
| 167 | end_addr = ULONG_MAX; |
Bin Meng | ca48cb4 | 2019-11-15 22:20:13 -0800 | [diff] [blame] | 168 | |
Tom Rini | 52938fc | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 169 | if (store_addr < tftp_load_addr || |
| 170 | store_addr + len > end_addr) { |
| 171 | puts("\nTFTP error: "); |
| 172 | puts("trying to overwrite reserved memory...\n"); |
| 173 | return -1; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 174 | } |
Tom Rini | 52938fc | 2022-07-23 13:04:54 -0400 | [diff] [blame] | 175 | #endif |
| 176 | ptr = map_sysmem(store_addr, len); |
| 177 | memcpy(ptr, src, len); |
| 178 | unmap_sysmem(ptr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 179 | |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 180 | if (net_boot_file_size < newsize) |
| 181 | net_boot_file_size = newsize; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 182 | |
| 183 | return 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 186 | /* Clear our state ready for a new transfer */ |
Simon Glass | 165099e | 2011-10-27 06:24:28 +0000 | [diff] [blame] | 187 | static void new_transfer(void) |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 188 | { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 189 | tftp_prev_block = 0; |
| 190 | tftp_block_wrap = 0; |
| 191 | tftp_block_wrap_offset = 0; |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 192 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 193 | tftp_put_final_block_sent = 0; |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 194 | #endif |
| 195 | } |
| 196 | |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 197 | #ifdef CONFIG_CMD_TFTPPUT |
| 198 | /** |
| 199 | * Load the next block from memory to be sent over tftp. |
| 200 | * |
| 201 | * @param block Block number to send |
| 202 | * @param dst Destination buffer for data |
| 203 | * @param len Number of bytes in block (this one and every other) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 204 | * Return: number of bytes loaded |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 205 | */ |
| 206 | static int load_block(unsigned block, uchar *dst, unsigned len) |
| 207 | { |
| 208 | /* We may want to get the final block from the previous set */ |
Ley Foon Tan | f6a158b | 2020-08-25 10:26:37 +0800 | [diff] [blame] | 209 | ulong offset = block * tftp_block_size + tftp_block_wrap_offset - |
| 210 | tftp_block_size; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 211 | ulong tosend = len; |
| 212 | |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 213 | tosend = min(net_boot_file_size - offset, tosend); |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 214 | (void)memcpy(dst, (void *)(image_save_addr + offset), tosend); |
Heinrich Schuchardt | 2bcc43b | 2020-02-22 08:43:40 +0100 | [diff] [blame] | 215 | debug("%s: block=%u, offset=%lu, len=%u, tosend=%lu\n", __func__, |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 216 | block, offset, len, tosend); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 217 | return tosend; |
| 218 | } |
| 219 | #endif |
| 220 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 221 | static void tftp_send(void); |
| 222 | static void tftp_timeout_handler(void); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 223 | |
| 224 | /**********************************************************************/ |
| 225 | |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 226 | static void show_block_marker(void) |
| 227 | { |
Ravik Hasija | de5468e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 228 | ulong pos; |
| 229 | |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 230 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 231 | if (tftp_tsize) { |
Ravik Hasija | de5468e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 232 | pos = tftp_cur_block * tftp_block_size + |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 233 | tftp_block_wrap_offset; |
Max Krummenacher | 7628afe | 2015-08-05 17:17:05 +0200 | [diff] [blame] | 234 | if (pos > tftp_tsize) |
| 235 | pos = tftp_tsize; |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 236 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 237 | while (tftp_tsize_num_hash < pos * 50 / tftp_tsize) { |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 238 | putc('#'); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 239 | tftp_tsize_num_hash++; |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 240 | } |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 241 | } else |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 242 | #endif |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 243 | { |
Ravik Hasija | de5468e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 244 | pos = (tftp_cur_block - 1) + |
| 245 | (tftp_block_wrap * TFTP_SEQUENCE_SIZE); |
| 246 | if ((pos % 10) == 0) |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 247 | putc('#'); |
Ravik Hasija | de5468e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 248 | else if (((pos + 1) % (10 * HASHES_PER_LINE)) == 0) |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 249 | puts("\n\t "); |
| 250 | } |
| 251 | } |
| 252 | |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 253 | /** |
| 254 | * restart the current transfer due to an error |
| 255 | * |
| 256 | * @param msg Message to print for user |
| 257 | */ |
| 258 | static void restart(const char *msg) |
| 259 | { |
| 260 | printf("\n%s; starting again\n", msg); |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 261 | net_start_again(); |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | /* |
| 265 | * Check if the block number has wrapped, and update progress |
| 266 | * |
| 267 | * TODO: The egregious use of global variables in this file should be tidied. |
| 268 | */ |
| 269 | static void update_block_number(void) |
| 270 | { |
| 271 | /* |
| 272 | * RFC1350 specifies that the first data packet will |
| 273 | * have sequence number 1. If we receive a sequence |
| 274 | * number of 0 this means that there was a wrap |
| 275 | * around of the (16 bit) counter. |
| 276 | */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 277 | if (tftp_cur_block == 0 && tftp_prev_block != 0) { |
| 278 | tftp_block_wrap++; |
| 279 | tftp_block_wrap_offset += tftp_block_size * TFTP_SEQUENCE_SIZE; |
| 280 | timeout_count = 0; /* we've done well, reset the timeout */ |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 281 | } |
Ravik Hasija | de5468e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 282 | show_block_marker(); |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 285 | /* The TFTP get or put is complete */ |
| 286 | static void tftp_complete(void) |
| 287 | { |
| 288 | #ifdef CONFIG_TFTP_TSIZE |
| 289 | /* Print hash marks for the last packet received */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 290 | while (tftp_tsize && tftp_tsize_num_hash < 49) { |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 291 | putc('#'); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 292 | tftp_tsize_num_hash++; |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 293 | } |
Simon Glass | 8104f54 | 2014-10-10 07:30:21 -0600 | [diff] [blame] | 294 | puts(" "); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 295 | print_size(tftp_tsize, ""); |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 296 | #endif |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 297 | time_start = get_timer(time_start); |
| 298 | if (time_start > 0) { |
| 299 | puts("\n\t "); /* Line up with "Loading: " */ |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 300 | print_size(net_boot_file_size / |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 301 | time_start * 1000, "/s"); |
| 302 | } |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 303 | puts("\ndone\n"); |
AKASHI Takahiro | 593607c | 2024-01-17 13:39:43 +0900 | [diff] [blame] | 304 | if (!tftp_put_active) |
| 305 | efi_set_bootdev("Net", "", tftp_filename, |
| 306 | map_sysmem(tftp_load_addr, 0), |
| 307 | net_boot_file_size); |
Joe Hershberger | 22f6e99 | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 308 | net_set_state(NETLOOP_SUCCESS); |
Simon Glass | f5329bb | 2011-10-24 18:00:03 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 311 | static void tftp_send(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 312 | { |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 313 | uchar *pkt; |
Joe Hershberger | db288a9 | 2012-05-15 08:59:04 +0000 | [diff] [blame] | 314 | uchar *xp; |
| 315 | int len = 0; |
| 316 | ushort *s; |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 317 | bool err_pkt = false; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 318 | |
| 319 | /* |
| 320 | * We will always be sending some sort of packet, so |
| 321 | * cobble together the packet headers now. |
| 322 | */ |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 323 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) |
| 324 | pkt = net_tx_packet + net_eth_hdr_size() + |
| 325 | IP6_HDR_SIZE + UDP_HDR_SIZE; |
| 326 | else |
| 327 | pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 328 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 329 | switch (tftp_state) { |
Luca Ceresoli | e3fb0ab | 2011-05-17 00:03:38 +0000 | [diff] [blame] | 330 | case STATE_SEND_RRQ: |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 331 | case STATE_SEND_WRQ: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 332 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 333 | s = (ushort *)pkt; |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 334 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 335 | *s++ = htons(tftp_state == STATE_SEND_RRQ ? TFTP_RRQ : |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 336 | TFTP_WRQ); |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 337 | #else |
| 338 | *s++ = htons(TFTP_RRQ); |
| 339 | #endif |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 340 | pkt = (uchar *)s; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 341 | strcpy((char *)pkt, tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 342 | pkt += strlen(tftp_filename) + 1; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 343 | strcpy((char *)pkt, "octet"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 344 | pkt += 5 /*strlen("octet")*/ + 1; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 345 | strcpy((char *)pkt, "timeout"); |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 346 | pkt += 7 /*strlen("timeout")*/ + 1; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 347 | sprintf((char *)pkt, "%lu", timeout_ms / 1000); |
Robin Getz | 0ebf04c | 2009-07-23 03:01:03 -0400 | [diff] [blame] | 348 | debug("send option \"timeout %s\"\n", (char *)pkt); |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 349 | pkt += strlen((char *)pkt) + 1; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 350 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 351 | pkt += sprintf((char *)pkt, "tsize%c%u%c", |
| 352 | 0, net_boot_file_size, 0); |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 353 | #endif |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 354 | /* try for more effic. blk size */ |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 355 | pkt += sprintf((char *)pkt, "blksize%c%d%c", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 356 | 0, tftp_block_size_option, 0); |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 357 | |
| 358 | /* try for more effic. window size. |
| 359 | * Implemented only for tftp get. |
| 360 | * Don't bother sending if it's 1 |
| 361 | */ |
| 362 | if (tftp_state == STATE_SEND_RRQ && tftp_window_size_option > 1) |
| 363 | pkt += sprintf((char *)pkt, "windowsize%c%d%c", |
| 364 | 0, tftp_window_size_option, 0); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 365 | len = pkt - xp; |
| 366 | break; |
| 367 | |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 368 | case STATE_OACK: |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 369 | |
| 370 | case STATE_RECV_WRQ: |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 371 | case STATE_DATA: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 372 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 373 | s = (ushort *)pkt; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 374 | s[0] = htons(TFTP_ACK); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 375 | s[1] = htons(tftp_cur_block); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 376 | pkt = (uchar *)(s + 2); |
| 377 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 378 | if (tftp_put_active) { |
| 379 | int toload = tftp_block_size; |
| 380 | int loaded = load_block(tftp_cur_block, pkt, toload); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 381 | |
| 382 | s[0] = htons(TFTP_DATA); |
| 383 | pkt += loaded; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 384 | tftp_put_final_block_sent = (loaded < toload); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 385 | } |
| 386 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 387 | len = pkt - xp; |
| 388 | break; |
| 389 | |
| 390 | case STATE_TOO_LARGE: |
| 391 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 392 | s = (ushort *)pkt; |
| 393 | *s++ = htons(TFTP_ERROR); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 394 | *s++ = htons(3); |
| 395 | |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 396 | pkt = (uchar *)s; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 397 | strcpy((char *)pkt, "File too large"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 398 | pkt += 14 /*strlen("File too large")*/ + 1; |
| 399 | len = pkt - xp; |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 400 | err_pkt = true; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 401 | break; |
| 402 | |
| 403 | case STATE_BAD_MAGIC: |
| 404 | xp = pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 405 | s = (ushort *)pkt; |
| 406 | *s++ = htons(TFTP_ERROR); |
| 407 | *s++ = htons(2); |
| 408 | pkt = (uchar *)s; |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 409 | strcpy((char *)pkt, "File has bad magic"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 410 | pkt += 18 /*strlen("File has bad magic")*/ + 1; |
| 411 | len = pkt - xp; |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 412 | err_pkt = true; |
| 413 | break; |
| 414 | |
| 415 | case STATE_INVALID_OPTION: |
| 416 | xp = pkt; |
| 417 | s = (ushort *)pkt; |
| 418 | *s++ = htons(TFTP_ERROR); |
| 419 | *s++ = htons(TFTP_ERR_OPTION_NEGOTIATION); |
| 420 | pkt = (uchar *)s; |
| 421 | strcpy((char *)pkt, "Option Negotiation Failed"); |
| 422 | /* strlen("Option Negotiation Failed") + NULL*/ |
| 423 | pkt += 25 + 1; |
| 424 | len = pkt - xp; |
| 425 | err_pkt = true; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 426 | break; |
| 427 | } |
| 428 | |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 429 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) |
| 430 | net_send_udp_packet6(net_server_ethaddr, |
| 431 | &tftp_remote_ip6, |
| 432 | tftp_remote_port, |
| 433 | tftp_our_port, len); |
| 434 | else |
| 435 | net_send_udp_packet(net_server_ethaddr, tftp_remote_ip, |
| 436 | tftp_remote_port, tftp_our_port, len); |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 437 | |
| 438 | if (err_pkt) |
| 439 | net_set_state(NETLOOP_FAIL); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 440 | } |
| 441 | |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 442 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 443 | static void icmp_handler(unsigned type, unsigned code, unsigned dest, |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 444 | struct in_addr sip, unsigned src, uchar *pkt, |
| 445 | unsigned len) |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 446 | { |
| 447 | if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) { |
| 448 | /* Oh dear the other end has gone away */ |
| 449 | restart("TFTP server died"); |
| 450 | } |
| 451 | } |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 452 | #endif |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 453 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 454 | static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip, |
| 455 | unsigned src, unsigned len) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 456 | { |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 457 | __be16 proto; |
| 458 | __be16 *s; |
Wolfgang Denk | ff13ac8 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 459 | int i; |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 460 | u16 timeout_val_rcvd; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 461 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 462 | if (dest != tftp_our_port) { |
Luca Ceresoli | 0bdd8ac | 2011-05-14 05:50:02 +0000 | [diff] [blame] | 463 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 464 | } |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 465 | if (tftp_state != STATE_SEND_RRQ && src != tftp_remote_port && |
| 466 | tftp_state != STATE_RECV_WRQ && tftp_state != STATE_SEND_WRQ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 467 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 468 | |
Luca Ceresoli | 7bc325a | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 469 | if (len < 2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 470 | return; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 471 | len -= 2; |
| 472 | /* warning: don't use increment (++) in ntohs() macros!! */ |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 473 | s = (__be16 *)pkt; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 474 | proto = *s++; |
| 475 | pkt = (uchar *)s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 476 | switch (ntohs(proto)) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 477 | case TFTP_RRQ: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 478 | break; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 479 | |
| 480 | case TFTP_ACK: |
| 481 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 482 | if (tftp_put_active) { |
| 483 | if (tftp_put_final_block_sent) { |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 484 | tftp_complete(); |
| 485 | } else { |
| 486 | /* |
| 487 | * Move to the next block. We want our block |
| 488 | * count to wrap just like the other end! |
| 489 | */ |
| 490 | int block = ntohs(*s); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 491 | int ack_ok = (tftp_cur_block == block); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 492 | |
Ley Foon Tan | 6bf4636 | 2020-08-25 10:26:35 +0800 | [diff] [blame] | 493 | tftp_prev_block = tftp_cur_block; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 494 | tftp_cur_block = (unsigned short)(block + 1); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 495 | update_block_number(); |
| 496 | if (ack_ok) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 497 | tftp_send(); /* Send next data block */ |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 498 | } |
| 499 | } |
| 500 | #endif |
| 501 | break; |
| 502 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 503 | default: |
| 504 | break; |
| 505 | |
Luca Ceresoli | e59e356 | 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 | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 509 | tftp_remote_ip = sip; |
Joe Hershberger | 8885c5f | 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 | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 512 | new_transfer(); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 513 | tftp_send(); /* Send ACK(0) */ |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 514 | break; |
| 515 | #endif |
| 516 | |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 517 | case TFTP_OACK: |
Ravik Hasija | 0813921 | 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 | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 526 | tftp_state = STATE_OACK; |
| 527 | tftp_remote_port = src; |
Wolfgang Denk | 6017474 | 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 | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 533 | for (i = 0; i+8 < len; i++) { |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 534 | if (strcasecmp((char *)pkt + i, "blksize") == 0) { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 535 | tftp_block_size = (unsigned short) |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 536 | dectoul((char *)pkt + i + 8, NULL); |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 537 | debug("Blocksize oack: %s, %d\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 538 | (char *)pkt + i + 8, tftp_block_size); |
Ravik Hasija | 0813921 | 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 | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 547 | dectoul((char *)pkt + i + 8, NULL); |
Ravik Hasija | 0813921 | 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 | ff13ac8 | 2007-08-30 14:42:15 +0200 | [diff] [blame] | 555 | } |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 556 | #ifdef CONFIG_TFTP_TSIZE |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 557 | if (strcasecmp((char *)pkt + i, "tsize") == 0) { |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 558 | tftp_tsize = dectoul((char *)pkt + i + 6, |
| 559 | NULL); |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 560 | debug("size = %s, %d\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 561 | (char *)pkt + i + 6, tftp_tsize); |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 562 | } |
| 563 | #endif |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 564 | if (strcasecmp((char *)pkt + i, "windowsize") == 0) { |
| 565 | tftp_windowsize = |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 566 | dectoul((char *)pkt + i + 11, NULL); |
Ramon Fried | cc6b87e | 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 | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 570 | } |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 571 | |
| 572 | tftp_next_ack = tftp_windowsize; |
| 573 | |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 574 | #ifdef CONFIG_CMD_TFTPPUT |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 575 | if (tftp_put_active && tftp_state == STATE_OACK) { |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 576 | /* Get ready to send the first block */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 577 | tftp_state = STATE_DATA; |
| 578 | tftp_cur_block++; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 579 | } |
| 580 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 581 | tftp_send(); /* Send ACK or first data block */ |
wdenk | fbe4b5c | 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 | cc6b87e | 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 | 21a265c | 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 | cc6b87e | 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 | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 617 | |
Harm Berntsen | beb61e1 | 2020-11-27 21:45:56 +0000 | [diff] [blame] | 618 | if (tftp_state == STATE_SEND_RRQ) { |
Ravik Hasija | 0813921 | 2020-05-18 21:35:43 -0700 | [diff] [blame] | 619 | debug("Server did not acknowledge any options!\n"); |
Harm Berntsen | beb61e1 | 2020-11-27 21:45:56 +0000 | [diff] [blame] | 620 | tftp_next_ack = tftp_windowsize; |
| 621 | } |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 622 | |
Joe Hershberger | 8885c5f | 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 | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 625 | /* first block received */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 626 | tftp_state = STATE_DATA; |
| 627 | tftp_remote_port = src; |
Simon Glass | e4cde2f | 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 | 8885c5f | 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 | bc0571f | 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 | 8885c5f | 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 | de5468e | 2020-05-07 14:55:32 -0700 | [diff] [blame] | 645 | update_block_number(); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 646 | tftp_prev_block = tftp_cur_block; |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 647 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | bc0571f | 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 | ae0bdf0 | 2020-08-25 10:26:36 +0800 | [diff] [blame] | 650 | if (store_block(tftp_cur_block, pkt + 2, len)) { |
Simon Goldschmidt | a156c47 | 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 | 2dddc1b | 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 | 4d69e98 | 2011-05-17 00:03:41 +0000 | [diff] [blame] | 663 | * Acknowledge the block just received, which will prompt |
Luca Ceresoli | 20478ce | 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 | cc6b87e | 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 | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 673 | printf("\nTFTP error: '%s' (%d)\n", |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 674 | pkt + 2, ntohs(*(__be16 *)pkt)); |
Remy Bohmer | aafda38 | 2009-10-28 22:13:40 +0100 | [diff] [blame] | 675 | |
Kim Phillips | 61fdd4f | 2013-01-16 18:09:19 -0600 | [diff] [blame] | 676 | switch (ntohs(*(__be16 *)pkt)) { |
Remy Bohmer | aafda38 | 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 | 22f6e99 | 2012-05-23 07:59:14 +0000 | [diff] [blame] | 681 | net_set_state(NETLOOP_FAIL); |
Remy Bohmer | aafda38 | 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 | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 690 | net_start_again(); |
Remy Bohmer | aafda38 | 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 | |
| 697 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 698 | static void tftp_timeout_handler(void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 699 | { |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 700 | if (++timeout_count > timeout_count_max) { |
Simon Glass | e4cde2f | 2011-10-24 18:00:04 +0000 | [diff] [blame] | 701 | restart("Retry count exceeded"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 702 | } else { |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 703 | puts("T "); |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 704 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 705 | if (tftp_state != STATE_RECV_WRQ) |
| 706 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 707 | } |
| 708 | } |
| 709 | |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 710 | /* Initialize tftp_load_addr and tftp_load_size from image_load_addr and lmb */ |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 711 | static int tftp_init_load_addr(void) |
| 712 | { |
| 713 | #ifdef CONFIG_LMB |
| 714 | struct lmb lmb; |
| 715 | phys_size_t max_size; |
| 716 | |
Simon Goldschmidt | 9cc2323 | 2019-01-26 22:13:04 +0100 | [diff] [blame] | 717 | lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 718 | |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 719 | max_size = lmb_get_free_size(&lmb, image_load_addr); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 720 | if (!max_size) |
| 721 | return -1; |
| 722 | |
| 723 | tftp_load_size = max_size; |
| 724 | #endif |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 725 | tftp_load_addr = image_load_addr; |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 726 | return 0; |
| 727 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 728 | |
Rasmus Villemoes | 087648b | 2022-10-14 19:43:42 +0200 | [diff] [blame] | 729 | static int saved_tftp_block_size_option; |
| 730 | static void sanitize_tftp_block_size_option(enum proto_t protocol) |
| 731 | { |
| 732 | int cap, max_defrag; |
| 733 | |
| 734 | switch (protocol) { |
| 735 | case TFTPGET: |
| 736 | max_defrag = config_opt_enabled(CONFIG_IP_DEFRAG, CONFIG_NET_MAXDEFRAG, 0); |
| 737 | if (max_defrag) { |
| 738 | /* Account for IP, UDP and TFTP headers. */ |
| 739 | cap = max_defrag - (20 + 8 + 4); |
| 740 | /* RFC2348 sets a hard upper limit. */ |
| 741 | cap = min(cap, 65464); |
| 742 | break; |
| 743 | } |
| 744 | /* |
| 745 | * If not CONFIG_IP_DEFRAG, cap at the same value as |
| 746 | * for tftp put, namely normal MTU minus protocol |
| 747 | * overhead. |
| 748 | */ |
| 749 | fallthrough; |
| 750 | case TFTPPUT: |
| 751 | default: |
| 752 | /* |
| 753 | * U-Boot does not support IP fragmentation on TX, so |
| 754 | * this must be small enough that it fits normal MTU |
| 755 | * (and small enough that it fits net_tx_packet which |
| 756 | * has room for PKTSIZE_ALIGN bytes). |
| 757 | */ |
| 758 | cap = 1468; |
| 759 | } |
| 760 | if (tftp_block_size_option > cap) { |
| 761 | printf("Capping tftp block size option to %d (was %d)\n", |
| 762 | cap, tftp_block_size_option); |
| 763 | saved_tftp_block_size_option = tftp_block_size_option; |
| 764 | tftp_block_size_option = cap; |
| 765 | } |
| 766 | } |
| 767 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 768 | void tftp_start(enum proto_t protocol) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 769 | { |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 770 | __maybe_unused char *ep; /* Environment pointer */ |
Rasmus Villemoes | 087648b | 2022-10-14 19:43:42 +0200 | [diff] [blame] | 771 | |
| 772 | if (saved_tftp_block_size_option) { |
| 773 | tftp_block_size_option = saved_tftp_block_size_option; |
| 774 | saved_tftp_block_size_option = 0; |
| 775 | } |
| 776 | |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 777 | if (IS_ENABLED(CONFIG_NET_TFTP_VARS)) { |
Alessandro Rubini | 89ba81d | 2009-08-07 13:59:06 +0200 | [diff] [blame] | 778 | |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 779 | /* |
| 780 | * Allow the user to choose TFTP blocksize and timeout. |
| 781 | * TFTP protocol has a minimal timeout of 1 second. |
| 782 | */ |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 783 | |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 784 | ep = env_get("tftpblocksize"); |
| 785 | if (ep != NULL) |
| 786 | tftp_block_size_option = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 787 | |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 788 | ep = env_get("tftpwindowsize"); |
| 789 | if (ep != NULL) |
| 790 | tftp_window_size_option = simple_strtol(ep, NULL, 10); |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 791 | |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 792 | ep = env_get("tftptimeout"); |
| 793 | if (ep != NULL) |
| 794 | timeout_ms = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 795 | |
Rasmus Villemoes | 4b8c44e | 2022-10-14 19:43:41 +0200 | [diff] [blame] | 796 | if (timeout_ms < 1000) { |
| 797 | printf("TFTP timeout (%ld ms) too low, set min = 1000 ms\n", |
| 798 | timeout_ms); |
| 799 | timeout_ms = 1000; |
| 800 | } |
| 801 | |
| 802 | ep = env_get("tftptimeoutcountmax"); |
| 803 | if (ep != NULL) |
| 804 | tftp_timeout_count_max = simple_strtol(ep, NULL, 10); |
| 805 | |
| 806 | if (tftp_timeout_count_max < 0) { |
| 807 | printf("TFTP timeout count max (%d ms) negative, set to 0\n", |
| 808 | tftp_timeout_count_max); |
| 809 | tftp_timeout_count_max = 0; |
| 810 | } |
Wolfgang Denk | c96f86e | 2010-01-17 23:55:53 +0100 | [diff] [blame] | 811 | } |
| 812 | |
Rasmus Villemoes | 087648b | 2022-10-14 19:43:42 +0200 | [diff] [blame] | 813 | sanitize_tftp_block_size_option(protocol); |
| 814 | |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 815 | debug("TFTP blocksize = %i, TFTP windowsize = %d timeout = %ld ms\n", |
| 816 | tftp_block_size_option, tftp_window_size_option, timeout_ms); |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 817 | |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 818 | if (IS_ENABLED(CONFIG_IPV6)) |
| 819 | tftp_remote_ip6 = net_server_ip6; |
| 820 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 821 | tftp_remote_ip = net_server_ip; |
Joe Hershberger | 6ab1283 | 2018-07-03 19:36:43 -0500 | [diff] [blame] | 822 | if (!net_parse_bootfile(&tftp_remote_ip, tftp_filename, MAX_LEN)) { |
Matthias Weisser | ea45cb0 | 2011-12-03 03:29:44 +0000 | [diff] [blame] | 823 | sprintf(default_filename, "%02X%02X%02X%02X.img", |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 824 | net_ip.s_addr & 0xFF, |
| 825 | (net_ip.s_addr >> 8) & 0xFF, |
| 826 | (net_ip.s_addr >> 16) & 0xFF, |
| 827 | (net_ip.s_addr >> 24) & 0xFF); |
Jean-Christophe PLAGNIOL-VILLARD | a93907c | 2008-01-18 01:14:03 +0100 | [diff] [blame] | 828 | |
Vladimir Zapolskiy | 0c17b1b | 2017-06-28 22:56:07 +0300 | [diff] [blame] | 829 | strncpy(tftp_filename, default_filename, DEFAULT_NAME_LEN); |
| 830 | tftp_filename[DEFAULT_NAME_LEN - 1] = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 831 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 832 | printf("*** Warning: no boot file name; using '%s'\n", |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 833 | tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 834 | } |
| 835 | |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 836 | if (IS_ENABLED(CONFIG_IPV6)) { |
| 837 | if (use_ip6) { |
| 838 | char *s, *e; |
| 839 | size_t len; |
| 840 | |
| 841 | s = strchr(net_boot_file_name, '['); |
| 842 | e = strchr(net_boot_file_name, ']'); |
| 843 | len = e - s; |
| 844 | if (s && e) { |
Ehsan Mohandesi | 7db25d9 | 2023-01-13 09:27:41 -0800 | [diff] [blame] | 845 | string_to_ip6(s + 1, len - 1, &tftp_remote_ip6); |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 846 | strlcpy(tftp_filename, e + 2, MAX_LEN); |
| 847 | } else { |
| 848 | strlcpy(tftp_filename, net_boot_file_name, MAX_LEN); |
| 849 | tftp_filename[MAX_LEN - 1] = 0; |
| 850 | } |
| 851 | } |
| 852 | } |
| 853 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 854 | printf("Using %s device\n", eth_get_name()); |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 855 | |
| 856 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) { |
| 857 | printf("TFTP from server %pI6c; our IP address is %pI6c", |
| 858 | &tftp_remote_ip6, &net_ip6); |
| 859 | |
| 860 | if (tftp_block_size_option > TFTP_MTU_BLOCKSIZE6) |
| 861 | tftp_block_size_option = TFTP_MTU_BLOCKSIZE6; |
| 862 | } else { |
| 863 | printf("TFTP %s server %pI4; our IP address is %pI4", |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 864 | #ifdef CONFIG_CMD_TFTPPUT |
| 865 | protocol == TFTPPUT ? "to" : "from", |
| 866 | #else |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 867 | "from", |
Simon Glass | 8c6914f | 2011-10-27 06:24:29 +0000 | [diff] [blame] | 868 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 869 | &tftp_remote_ip, &net_ip); |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 870 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 871 | |
| 872 | /* Check if we need to send across this subnet */ |
Viacheslav Mitrofanov | 7fbf230 | 2022-12-02 12:18:07 +0300 | [diff] [blame] | 873 | if (IS_ENABLED(CONFIG_IPV6) && use_ip6) { |
| 874 | if (!ip6_addr_in_subnet(&net_ip6, &tftp_remote_ip6, |
| 875 | net_prefix_length)) |
| 876 | printf("; sending through gateway %pI6c", |
| 877 | &net_gateway6); |
| 878 | } else if (net_gateway.s_addr && net_netmask.s_addr) { |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 879 | struct in_addr our_net; |
| 880 | struct in_addr remote_net; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 881 | |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 882 | our_net.s_addr = net_ip.s_addr & net_netmask.s_addr; |
| 883 | remote_net.s_addr = tftp_remote_ip.s_addr & net_netmask.s_addr; |
| 884 | if (our_net.s_addr != remote_net.s_addr) |
| 885 | printf("; sending through gateway %pI4", &net_gateway); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 886 | } |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 887 | putc('\n'); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 888 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 889 | printf("Filename '%s'.", tftp_filename); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 890 | |
Joe Hershberger | 1411157 | 2015-04-08 01:41:02 -0500 | [diff] [blame] | 891 | if (net_boot_file_expected_size_in_blocks) { |
| 892 | printf(" Size is 0x%x Bytes = ", |
| 893 | net_boot_file_expected_size_in_blocks << 9); |
| 894 | print_size(net_boot_file_expected_size_in_blocks << 9, ""); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 895 | } |
| 896 | |
Luca Ceresoli | c718b14 | 2011-05-14 05:49:57 +0000 | [diff] [blame] | 897 | putc('\n'); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 898 | #ifdef CONFIG_CMD_TFTPPUT |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 899 | tftp_put_active = (protocol == TFTPPUT); |
| 900 | if (tftp_put_active) { |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 901 | printf("Save address: 0x%lx\n", image_save_addr); |
| 902 | printf("Save size: 0x%lx\n", image_save_size); |
| 903 | net_boot_file_size = image_save_size; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 904 | puts("Saving: *\b"); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 905 | tftp_state = STATE_SEND_WRQ; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 906 | new_transfer(); |
| 907 | } else |
| 908 | #endif |
| 909 | { |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 910 | if (tftp_init_load_addr()) { |
| 911 | eth_halt(); |
| 912 | net_set_state(NETLOOP_FAIL); |
| 913 | puts("\nTFTP error: "); |
| 914 | puts("trying to overwrite reserved memory...\n"); |
| 915 | return; |
| 916 | } |
| 917 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 918 | puts("Loading: *\b"); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 919 | tftp_state = STATE_SEND_RRQ; |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 920 | } |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 921 | |
Simon Glass | 85b1980 | 2012-10-11 13:57:36 +0000 | [diff] [blame] | 922 | time_start = get_timer(0); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 923 | timeout_count_max = tftp_timeout_count_max; |
Bartlomiej Sieka | e83cc06 | 2008-10-01 15:26:29 +0200 | [diff] [blame] | 924 | |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 925 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 926 | net_set_udp_handler(tftp_handler); |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 927 | #ifdef CONFIG_CMD_TFTPPUT |
Simon Glass | 1fb7cd4 | 2011-10-24 18:00:07 +0000 | [diff] [blame] | 928 | net_set_icmp_handler(icmp_handler); |
Simon Glass | 39bccd2 | 2011-10-26 14:18:38 +0000 | [diff] [blame] | 929 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 930 | tftp_remote_port = WELL_KNOWN_PORT; |
| 931 | timeout_count = 0; |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 932 | /* Use a pseudo-random port unless a specific port is set */ |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 933 | tftp_our_port = 1024 + (get_timer(0) % 3072); |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 934 | |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 935 | #ifdef CONFIG_TFTP_PORT |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 936 | ep = env_get("tftpdstp"); |
Luca Ceresoli | 7bc325a | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 937 | if (ep != NULL) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 938 | tftp_remote_port = simple_strtol(ep, NULL, 10); |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 939 | ep = env_get("tftpsrcp"); |
Luca Ceresoli | 7bc325a | 2011-05-14 05:50:00 +0000 | [diff] [blame] | 940 | if (ep != NULL) |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 941 | tftp_our_port = simple_strtol(ep, NULL, 10); |
Wolfgang Denk | ecb0ccd | 2005-09-24 22:37:32 +0200 | [diff] [blame] | 942 | #endif |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 943 | tftp_cur_block = 0; |
Ramon Fried | cc6b87e | 2020-07-18 23:31:46 +0300 | [diff] [blame] | 944 | tftp_windowsize = 1; |
| 945 | tftp_last_nack = 0; |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 946 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 947 | memset(net_server_ethaddr, 0, 6); |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 948 | /* Revert tftp_block_size to dflt */ |
| 949 | tftp_block_size = TFTP_BLOCK_SIZE; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 950 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 951 | tftp_tsize = 0; |
| 952 | tftp_tsize_num_hash = 0; |
Robin Getz | 4fccb81 | 2009-08-20 10:50:20 -0400 | [diff] [blame] | 953 | #endif |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 954 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 955 | tftp_send(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 956 | } |
| 957 | |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 958 | #ifdef CONFIG_CMD_TFTPSRV |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 959 | void tftp_start_server(void) |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 960 | { |
| 961 | tftp_filename[0] = 0; |
| 962 | |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 963 | if (tftp_init_load_addr()) { |
| 964 | eth_halt(); |
| 965 | net_set_state(NETLOOP_FAIL); |
| 966 | puts("\nTFTP error: trying to overwrite reserved memory...\n"); |
| 967 | return; |
| 968 | } |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 969 | printf("Using %s device\n", eth_get_name()); |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 970 | printf("Listening for TFTP transfer on %pI4\n", &net_ip); |
Simon Goldschmidt | a156c47 | 2019-01-14 22:38:22 +0100 | [diff] [blame] | 971 | printf("Load address: 0x%lx\n", tftp_load_addr); |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 972 | |
| 973 | puts("Loading: *\b"); |
| 974 | |
Albert ARIBAUD \(3ADEV\) | f5fb734 | 2015-10-12 00:02:57 +0200 | [diff] [blame] | 975 | timeout_count_max = tftp_timeout_count_max; |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 976 | timeout_count = 0; |
| 977 | timeout_ms = TIMEOUT; |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 978 | net_set_timeout_handler(timeout_ms, tftp_timeout_handler); |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 979 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 980 | /* Revert tftp_block_size to dflt */ |
| 981 | tftp_block_size = TFTP_BLOCK_SIZE; |
| 982 | tftp_cur_block = 0; |
| 983 | tftp_our_port = WELL_KNOWN_PORT; |
Arjan Minzinga Zijlstra | 1ffe366 | 2022-03-31 08:03:16 +0000 | [diff] [blame] | 984 | tftp_windowsize = 1; |
| 985 | tftp_next_ack = tftp_windowsize; |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 986 | |
| 987 | #ifdef CONFIG_TFTP_TSIZE |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 988 | tftp_tsize = 0; |
| 989 | tftp_tsize_num_hash = 0; |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 990 | #endif |
| 991 | |
Joe Hershberger | 8885c5f | 2015-04-08 01:41:07 -0500 | [diff] [blame] | 992 | tftp_state = STATE_RECV_WRQ; |
Joe Hershberger | 049a95a | 2015-04-08 01:41:01 -0500 | [diff] [blame] | 993 | net_set_udp_handler(tftp_handler); |
Andrew Ruder | 8e52533 | 2013-10-22 19:10:28 -0500 | [diff] [blame] | 994 | |
| 995 | /* zero out server ether in case the server ip has changed */ |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 996 | memset(net_server_ethaddr, 0, 6); |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 997 | } |
| 998 | #endif /* CONFIG_CMD_TFTPSRV */ |