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