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