Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | bac9f03 | 2009-07-25 01:56:23 +0200 | [diff] [blame] | 2 | /* |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 3 | * A simple tftp client/server for busybox. |
Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 4 | * Tries to follow RFC1350. |
| 5 | * Only "octet" mode supported. |
| 6 | * Optional blocksize negotiation (RFC2347 + RFC2348) |
| 7 | * |
| 8 | * Copyright (C) 2001 Magnus Damm <damm@opensource.se> |
| 9 | * |
| 10 | * Parts of the code based on: |
| 11 | * |
| 12 | * atftp: Copyright (C) 2000 Jean-Pierre Lefebvre <helix@step.polymtl.ca> |
| 13 | * and Remi Lefebvre <remi@debian.org> |
| 14 | * |
| 15 | * utftp: Copyright (C) 1999 Uwe Ohse <uwe@ohse.de> |
| 16 | * |
Denis Vlasenko | 78c5656 | 2008-03-18 00:11:46 +0000 | [diff] [blame] | 17 | * tftpd added by Denys Vlasenko & Vladimir Dronnikov |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 18 | * |
Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 19 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Denys Vlasenko | bac9f03 | 2009-07-25 01:56:23 +0200 | [diff] [blame] | 20 | */ |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 21 | #include "libbb.h" |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 22 | |
Denis Vlasenko | 3163555 | 2007-01-20 16:54:19 +0000 | [diff] [blame] | 23 | #if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT |
| 24 | |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 25 | #define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */ |
| 26 | #define TFTP_BLKSIZE_DEFAULT_STR "512" |
| 27 | #define TFTP_TIMEOUT_MS 50 |
| 28 | #define TFTP_MAXTIMEOUT_MS 2000 |
| 29 | #define TFTP_NUM_RETRIES 12 /* number of backed-off retries */ |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 30 | |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 31 | /* opcodes we support */ |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 32 | #define TFTP_RRQ 1 |
| 33 | #define TFTP_WRQ 2 |
| 34 | #define TFTP_DATA 3 |
| 35 | #define TFTP_ACK 4 |
| 36 | #define TFTP_ERROR 5 |
| 37 | #define TFTP_OACK 6 |
| 38 | |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 39 | /* error codes sent over network (we use only 0, 1, 3 and 8) */ |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 40 | /* generic (error message is included in the packet) */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 41 | #define ERR_UNSPEC 0 |
| 42 | #define ERR_NOFILE 1 |
| 43 | #define ERR_ACCESS 2 |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 44 | /* disk full or allocation exceeded */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 45 | #define ERR_WRITE 3 |
| 46 | #define ERR_OP 4 |
| 47 | #define ERR_BAD_ID 5 |
| 48 | #define ERR_EXIST 6 |
| 49 | #define ERR_BAD_USER 7 |
| 50 | #define ERR_BAD_OPT 8 |
| 51 | |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 52 | /* masks coming from getopt32 */ |
| 53 | enum { |
| 54 | TFTP_OPT_GET = (1 << 0), |
| 55 | TFTP_OPT_PUT = (1 << 1), |
| 56 | /* pseudo option: if set, it's tftpd */ |
| 57 | TFTPD_OPT = (1 << 7) * ENABLE_TFTPD, |
| 58 | TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD, |
| 59 | TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD, |
| 60 | TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD, |
| 61 | }; |
| 62 | |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 63 | #if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 64 | #define IF_GETPUT(...) |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 65 | #define CMD_GET(cmd) 1 |
| 66 | #define CMD_PUT(cmd) 0 |
| 67 | #elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 68 | #define IF_GETPUT(...) |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 69 | #define CMD_GET(cmd) 0 |
| 70 | #define CMD_PUT(cmd) 1 |
"Vladimir N. Oleynik" | 86ac072 | 2005-10-17 10:47:19 +0000 | [diff] [blame] | 71 | #else |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 72 | #define IF_GETPUT(...) __VA_ARGS__ |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 73 | #define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET) |
| 74 | #define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT) |
"Vladimir N. Oleynik" | 86ac072 | 2005-10-17 10:47:19 +0000 | [diff] [blame] | 75 | #endif |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 76 | /* NB: in the code below |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 77 | * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 78 | */ |
"Vladimir N. Oleynik" | 86ac072 | 2005-10-17 10:47:19 +0000 | [diff] [blame] | 79 | |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 80 | |
| 81 | struct globals { |
| 82 | /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */ |
| 83 | uint8_t error_pkt[4 + 32]; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 84 | char *user_opt; |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 85 | /* used in tftpd_main(), a bit big for stack: */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 86 | char block_buf[TFTP_BLKSIZE_DEFAULT]; |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 87 | #if ENABLE_FEATURE_TFTP_PROGRESS_BAR |
| 88 | off_t pos; |
| 89 | off_t size; |
| 90 | const char *file; |
| 91 | bb_progress_t pmt; |
| 92 | #endif |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 93 | } FIX_ALIASING; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 94 | #define G (*(struct globals*)&bb_common_bufsiz1) |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 95 | struct BUG_G_too_big { |
| 96 | char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1]; |
| 97 | }; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 98 | #define block_buf (G.block_buf ) |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 99 | #define user_opt (G.user_opt ) |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 100 | #define error_pkt (G.error_pkt ) |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 101 | #define INIT_G() do { } while (0) |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 102 | |
| 103 | #define error_pkt_reason (error_pkt[3]) |
| 104 | #define error_pkt_str (error_pkt + 4) |
Denis Vlasenko | d7e6af2 | 2008-03-18 01:13:11 +0000 | [diff] [blame] | 105 | |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 106 | #if ENABLE_FEATURE_TFTP_PROGRESS_BAR |
| 107 | /* SIGALRM logic nicked from the wget applet */ |
| 108 | static void progress_meter(int flag) |
| 109 | { |
| 110 | /* We can be called from signal handler */ |
| 111 | int save_errno = errno; |
| 112 | |
| 113 | if (flag == -1) { /* first call to progress_meter */ |
| 114 | bb_progress_init(&G.pmt); |
| 115 | } |
| 116 | |
| 117 | bb_progress_update(&G.pmt, G.file, 0, G.pos, G.size); |
| 118 | |
| 119 | if (flag == 0) { |
| 120 | /* last call to progress_meter */ |
| 121 | alarm(0); |
| 122 | fputc('\n', stderr); |
| 123 | } else { |
| 124 | if (flag == -1) { /* first call to progress_meter */ |
| 125 | signal_SA_RESTART_empty_mask(SIGALRM, progress_meter); |
| 126 | } |
| 127 | alarm(1); |
| 128 | } |
| 129 | |
| 130 | errno = save_errno; |
| 131 | } |
Denys Vlasenko | adc08ef | 2009-11-08 18:07:36 +0100 | [diff] [blame] | 132 | static void tftp_progress_init(void) |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 133 | { |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 134 | progress_meter(-1); |
| 135 | } |
| 136 | static void tftp_progress_done(void) |
| 137 | { |
Denys Vlasenko | cbcc123 | 2010-03-05 23:38:54 +0100 | [diff] [blame] | 138 | if (G.pmt.inited) |
| 139 | progress_meter(0); |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 140 | } |
| 141 | #else |
Denys Vlasenko | adc08ef | 2009-11-08 18:07:36 +0100 | [diff] [blame] | 142 | # define tftp_progress_init() ((void)0) |
| 143 | # define tftp_progress_done() ((void)0) |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 144 | #endif |
Eric Andersen | 76fa8ea | 2001-08-20 17:47:49 +0000 | [diff] [blame] | 145 | |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 146 | #if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 147 | |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 148 | static int tftp_blksize_check(const char *blksize_str, int maxsize) |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 149 | { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 150 | /* Check if the blksize is valid: |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 151 | * RFC2348 says between 8 and 65464, |
| 152 | * but our implementation makes it impossible |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 153 | * to use blksizes smaller than 22 octets. */ |
| 154 | unsigned blksize = bb_strtou(blksize_str, NULL, 10); |
| 155 | if (errno |
| 156 | || (blksize < 24) || (blksize > maxsize) |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 157 | ) { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 158 | bb_error_msg("bad blocksize '%s'", blksize_str); |
| 159 | return -1; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 160 | } |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 161 | # if ENABLE_TFTP_DEBUG |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 162 | bb_error_msg("using blksize %u", blksize); |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 163 | # endif |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 164 | return blksize; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 167 | static char *tftp_get_option(const char *option, char *buf, int len) |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 168 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 169 | int opt_val = 0; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 170 | int opt_found = 0; |
| 171 | int k; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 172 | |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 173 | /* buf points to: |
| 174 | * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */ |
| 175 | |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 176 | while (len > 0) { |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 177 | /* Make sure options are terminated correctly */ |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 178 | for (k = 0; k < len; k++) { |
| 179 | if (buf[k] == '\0') { |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 180 | goto nul_found; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 181 | } |
| 182 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 183 | return NULL; |
| 184 | nul_found: |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 185 | if (opt_val == 0) { /* it's "name" part */ |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 186 | if (strcasecmp(buf, option) == 0) { |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 187 | opt_found = 1; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 188 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 189 | } else if (opt_found) { |
| 190 | return buf; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 191 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 192 | |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 193 | k++; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 194 | buf += k; |
| 195 | len -= k; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 196 | opt_val ^= 1; |
| 197 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 198 | |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 199 | return NULL; |
| 200 | } |
| 201 | |
| 202 | #endif |
| 203 | |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 204 | static int tftp_protocol( |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 205 | /* NULL if tftp, !NULL if tftpd: */ |
| 206 | len_and_sockaddr *our_lsa, |
Denis Vlasenko | 0850cda | 2007-02-07 23:20:32 +0000 | [diff] [blame] | 207 | len_and_sockaddr *peer_lsa, |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 208 | const char *local_file |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 209 | IF_TFTP(, const char *remote_file) |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 210 | #if !ENABLE_TFTP |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 211 | # define remote_file NULL |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 212 | #endif |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 213 | /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */ |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 214 | IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size) |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 215 | IF_FEATURE_TFTP_BLOCKSIZE(, int blksize)) |
| 216 | { |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 217 | #if !ENABLE_FEATURE_TFTP_BLOCKSIZE |
| 218 | enum { blksize = TFTP_BLKSIZE_DEFAULT }; |
| 219 | #endif |
| 220 | |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 221 | struct pollfd pfd[1]; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 222 | #define socket_fd (pfd[0].fd) |
Bernhard Reutner-Fischer | 62f9856 | 2006-06-10 14:32:56 +0000 | [diff] [blame] | 223 | int len; |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 224 | int send_len; |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 225 | IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;) |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 226 | smallint finished = 0; |
| 227 | uint16_t opcode; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 228 | uint16_t block_nr; |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 229 | uint16_t recv_blk; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 230 | int open_mode, local_fd; |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 231 | int retries, waittime_ms; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 232 | int io_bufsize = blksize + 4; |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 233 | char *cp; |
Eric Andersen | 744a194 | 2001-11-10 11:16:39 +0000 | [diff] [blame] | 234 | /* Can't use RESERVE_CONFIG_BUFFER here since the allocation |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 235 | * size varies meaning BUFFERS_GO_ON_STACK would fail. |
| 236 | * |
Denys Vlasenko | 5370bfb | 2009-09-06 02:58:59 +0200 | [diff] [blame] | 237 | * We must keep the transmit and receive buffers separate |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 238 | * in case we rcv a garbage pkt - we need to rexmit the last pkt. |
| 239 | */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 240 | char *xbuf = xmalloc(io_bufsize); |
| 241 | char *rbuf = xmalloc(io_bufsize); |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 242 | |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 243 | socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0); |
| 244 | setsockopt_reuseaddr(socket_fd); |
Denis Vlasenko | 6536a9b | 2007-01-12 10:35:23 +0000 | [diff] [blame] | 245 | |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 246 | if (!ENABLE_TFTP || our_lsa) { /* tftpd */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 247 | /* Create a socket which is: |
| 248 | * 1. bound to IP:port peer sent 1st datagram to, |
| 249 | * 2. connected to peer's IP:port |
| 250 | * This way we will answer from the IP:port peer |
| 251 | * expects, will not get any other packets on |
| 252 | * the socket, and also plain read/write will work. */ |
| 253 | xbind(socket_fd, &our_lsa->u.sa, our_lsa->len); |
| 254 | xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len); |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 255 | |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 256 | /* Is there an error already? Send pkt and bail out */ |
| 257 | if (error_pkt_reason || error_pkt_str[0]) |
| 258 | goto send_err_pkt; |
| 259 | |
Denis Vlasenko | 7a60133 | 2008-03-19 13:24:13 +0000 | [diff] [blame] | 260 | if (user_opt) { |
Denis Vlasenko | d7a805e | 2008-12-03 19:05:55 +0000 | [diff] [blame] | 261 | struct passwd *pw = xgetpwnam(user_opt); |
Denis Vlasenko | 7a60133 | 2008-03-19 13:24:13 +0000 | [diff] [blame] | 262 | change_identity(pw); /* initgroups, setgid, setuid */ |
| 263 | } |
| 264 | } |
| 265 | |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 266 | /* Prepare open mode */ |
Denis Vlasenko | 7a60133 | 2008-03-19 13:24:13 +0000 | [diff] [blame] | 267 | if (CMD_PUT(option_mask32)) { |
| 268 | open_mode = O_RDONLY; |
| 269 | } else { |
| 270 | open_mode = O_WRONLY | O_TRUNC | O_CREAT; |
| 271 | #if ENABLE_TFTPD |
| 272 | if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) { |
| 273 | /* tftpd without -c */ |
| 274 | open_mode = O_WRONLY | O_TRUNC; |
| 275 | } |
| 276 | #endif |
| 277 | } |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 278 | |
Denys Vlasenko | bac9f03 | 2009-07-25 01:56:23 +0200 | [diff] [blame] | 279 | /* Examples of network traffic. |
| 280 | * Note two cases when ACKs with block# of 0 are sent. |
| 281 | * |
| 282 | * Download without options: |
| 283 | * tftp -> "\0\1FILENAME\0octet\0" |
| 284 | * "\0\3\0\1FILEDATA..." <- tftpd |
| 285 | * tftp -> "\0\4\0\1" |
| 286 | * ... |
| 287 | * Download with option of blksize 16384: |
| 288 | * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0" |
| 289 | * "\0\6blksize\00016384\0" <- tftpd |
| 290 | * tftp -> "\0\4\0\0" |
| 291 | * "\0\3\0\1FILEDATA..." <- tftpd |
| 292 | * tftp -> "\0\4\0\1" |
| 293 | * ... |
| 294 | * Upload without options: |
| 295 | * tftp -> "\0\2FILENAME\0octet\0" |
| 296 | * "\0\4\0\0" <- tftpd |
| 297 | * tftp -> "\0\3\0\1FILEDATA..." |
| 298 | * "\0\4\0\1" <- tftpd |
| 299 | * ... |
| 300 | * Upload with option of blksize 16384: |
| 301 | * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0" |
| 302 | * "\0\6blksize\00016384\0" <- tftpd |
| 303 | * tftp -> "\0\3\0\1FILEDATA..." |
| 304 | * "\0\4\0\1" <- tftpd |
| 305 | * ... |
| 306 | */ |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 307 | block_nr = 1; |
| 308 | cp = xbuf + 2; |
| 309 | |
| 310 | if (!ENABLE_TFTP || our_lsa) { /* tftpd */ |
| 311 | /* Open file (must be after changing user) */ |
Denys Vlasenko | 4b06146 | 2010-02-02 01:01:40 +0100 | [diff] [blame] | 312 | local_fd = open(local_file, open_mode, 0666); |
Denis Vlasenko | 7a60133 | 2008-03-19 13:24:13 +0000 | [diff] [blame] | 313 | if (local_fd < 0) { |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 314 | error_pkt_reason = ERR_NOFILE; |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 315 | strcpy((char*)error_pkt_str, "can't open file"); |
Denis Vlasenko | 7a60133 | 2008-03-19 13:24:13 +0000 | [diff] [blame] | 316 | goto send_err_pkt; |
| 317 | } |
Denis Vlasenko | 31e1286 | 2008-06-16 07:32:40 +0000 | [diff] [blame] | 318 | /* gcc 4.3.1 would NOT optimize it out as it should! */ |
| 319 | #if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 320 | if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) { |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 321 | /* Create and send OACK packet. */ |
| 322 | /* For the download case, block_nr is still 1 - |
| 323 | * we expect 1st ACK from peer to be for (block_nr-1), |
| 324 | * that is, for "block 0" which is our OACK pkt */ |
| 325 | opcode = TFTP_OACK; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 326 | goto add_blksize_opt; |
| 327 | } |
Denis Vlasenko | 31e1286 | 2008-06-16 07:32:40 +0000 | [diff] [blame] | 328 | #endif |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 329 | if (CMD_GET(option_mask32)) { |
| 330 | /* It's upload and we don't send OACK. |
| 331 | * We must ACK 1st packet (with filename) |
| 332 | * as if it is "block 0" */ |
| 333 | block_nr = 0; |
| 334 | } |
| 335 | |
| 336 | } else { /* tftp */ |
| 337 | /* Open file (must be after changing user) */ |
| 338 | local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO; |
| 339 | if (NOT_LONE_DASH(local_file)) |
| 340 | local_fd = xopen(local_file, open_mode); |
| 341 | /* Removing #if, or using if() statement instead of #if may lead to |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 342 | * "warning: null argument where non-null required": */ |
| 343 | #if ENABLE_TFTP |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 344 | /* tftp */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 345 | |
| 346 | /* We can't (and don't really need to) bind the socket: |
| 347 | * we don't know from which local IP datagrams will be sent, |
| 348 | * but kernel will pick the same IP every time (unless routing |
| 349 | * table is changed), thus peer will see dgrams consistently |
| 350 | * coming from the same IP. |
| 351 | * We would like to connect the socket, but since peer's |
| 352 | * UDP code can be less perfect than ours, _peer's_ IP:port |
| 353 | * in replies may differ from IP:port we used to send |
| 354 | * our first packet. We can connect() only when we get |
| 355 | * first reply. */ |
| 356 | |
| 357 | /* build opcode */ |
| 358 | opcode = TFTP_WRQ; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 359 | if (CMD_GET(option_mask32)) { |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 360 | opcode = TFTP_RRQ; |
| 361 | } |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 362 | /* add filename and mode */ |
| 363 | /* fill in packet if the filename fits into xbuf */ |
| 364 | len = strlen(remote_file) + 1; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 365 | if (2 + len + sizeof("octet") >= io_bufsize) { |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 366 | bb_error_msg("remote filename is too long"); |
| 367 | goto ret; |
| 368 | } |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 369 | strcpy(cp, remote_file); |
| 370 | cp += len; |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 371 | /* add "mode" part of the packet */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 372 | strcpy(cp, "octet"); |
| 373 | cp += sizeof("octet"); |
| 374 | |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 375 | # if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 376 | if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size) |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 377 | goto send_pkt; |
| 378 | |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 379 | /* Need to add option to pkt */ |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 380 | if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) { |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 381 | bb_error_msg("remote filename is too long"); |
| 382 | goto ret; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 383 | } |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 384 | expect_OACK = 1; |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 385 | # endif |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 386 | #endif /* ENABLE_TFTP */ |
| 387 | |
Denis Vlasenko | 31e1286 | 2008-06-16 07:32:40 +0000 | [diff] [blame] | 388 | #if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 389 | add_blksize_opt: |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 390 | if (blksize != TFTP_BLKSIZE_DEFAULT) { |
| 391 | /* add "blksize", <nul>, blksize, <nul> */ |
| 392 | strcpy(cp, "blksize"); |
| 393 | cp += sizeof("blksize"); |
| 394 | cp += snprintf(cp, 6, "%d", blksize) + 1; |
| 395 | } |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 396 | if (want_transfer_size) { |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 397 | /* add "tsize", <nul>, size, <nul> (see RFC2349) */ |
| 398 | /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC) |
| 399 | * and this makes server to send "tsize" option with the size */ |
| 400 | /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */ |
| 401 | /* if tftpd and downloading, we are answering to client's request */ |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 402 | /* if tftpd and uploading: !want_transfer_size, this code is not executed */ |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 403 | struct stat st; |
| 404 | strcpy(cp, "tsize"); |
| 405 | cp += sizeof("tsize"); |
| 406 | st.st_size = 0; |
| 407 | fstat(local_fd, &st); |
| 408 | cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1; |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 409 | # if ENABLE_FEATURE_TFTP_PROGRESS_BAR |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 410 | /* Save for progress bar. If 0 (tftp downloading), |
| 411 | * we look at server's reply later */ |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 412 | G.size = st.st_size; |
| 413 | if (remote_file && st.st_size) |
Denys Vlasenko | adc08ef | 2009-11-08 18:07:36 +0100 | [diff] [blame] | 414 | tftp_progress_init(); |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 415 | # endif |
| 416 | } |
Denis Vlasenko | 31e1286 | 2008-06-16 07:32:40 +0000 | [diff] [blame] | 417 | #endif |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 418 | /* First packet is built, so skip packet generation */ |
| 419 | goto send_pkt; |
| 420 | } |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 421 | |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 422 | /* Using mostly goto's - continue/break will be less clear |
| 423 | * in where we actually jump to */ |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 424 | while (1) { |
| 425 | /* Build ACK or DATA */ |
| 426 | cp = xbuf + 2; |
| 427 | *((uint16_t*)cp) = htons(block_nr); |
| 428 | cp += 2; |
| 429 | block_nr++; |
| 430 | opcode = TFTP_ACK; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 431 | if (CMD_PUT(option_mask32)) { |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 432 | opcode = TFTP_DATA; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 433 | len = full_read(local_fd, cp, blksize); |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 434 | if (len < 0) { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 435 | goto send_read_err_pkt; |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 436 | } |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 437 | if (len != blksize) { |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 438 | finished = 1; |
| 439 | } |
| 440 | cp += len; |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 441 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 442 | send_pkt: |
| 443 | /* Send packet */ |
| 444 | *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */ |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 445 | send_len = cp - xbuf; |
| 446 | /* NB: send_len value is preserved in code below |
| 447 | * for potential resend */ |
Paul Fox | 40f0bcf | 2007-09-06 17:52:22 +0000 | [diff] [blame] | 448 | |
| 449 | retries = TFTP_NUM_RETRIES; /* re-initialize */ |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 450 | waittime_ms = TFTP_TIMEOUT_MS; |
Paul Fox | 40f0bcf | 2007-09-06 17:52:22 +0000 | [diff] [blame] | 451 | |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 452 | send_again: |
Denis Vlasenko | 35a064b | 2008-11-06 00:49:59 +0000 | [diff] [blame] | 453 | #if ENABLE_TFTP_DEBUG |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 454 | fprintf(stderr, "sending %u bytes\n", send_len); |
| 455 | for (cp = xbuf; cp < &xbuf[send_len]; cp++) |
| 456 | fprintf(stderr, "%02x ", (unsigned char) *cp); |
| 457 | fprintf(stderr, "\n"); |
Eric Andersen | 76fa8ea | 2001-08-20 17:47:49 +0000 | [diff] [blame] | 458 | #endif |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 459 | xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len); |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 460 | |
| 461 | #if ENABLE_FEATURE_TFTP_PROGRESS_BAR |
| 462 | if (ENABLE_TFTP && remote_file) { /* tftp */ |
| 463 | G.pos = (block_nr - 1) * (uoff_t)blksize; |
| 464 | } |
| 465 | #endif |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 466 | /* Was it final ACK? then exit */ |
| 467 | if (finished && (opcode == TFTP_ACK)) |
| 468 | goto ret; |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 469 | |
Denis Vlasenko | 2c91652 | 2007-01-12 14:57:37 +0000 | [diff] [blame] | 470 | recv_again: |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 471 | /* Receive packet */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 472 | /*pfd[0].fd = socket_fd;*/ |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 473 | pfd[0].events = POLLIN; |
Denis Vlasenko | 5d61e71 | 2007-09-27 10:09:59 +0000 | [diff] [blame] | 474 | switch (safe_poll(pfd, 1, waittime_ms)) { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 475 | default: |
| 476 | /*bb_perror_msg("poll"); - done in safe_poll */ |
| 477 | goto ret; |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 478 | case 0: |
Paul Fox | 40f0bcf | 2007-09-06 17:52:22 +0000 | [diff] [blame] | 479 | retries--; |
| 480 | if (retries == 0) { |
| 481 | bb_error_msg("timeout"); |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 482 | goto ret; /* no err packet sent */ |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 483 | } |
Paul Fox | 40f0bcf | 2007-09-06 17:52:22 +0000 | [diff] [blame] | 484 | |
| 485 | /* exponential backoff with limit */ |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 486 | waittime_ms += waittime_ms/2; |
| 487 | if (waittime_ms > TFTP_MAXTIMEOUT_MS) { |
| 488 | waittime_ms = TFTP_MAXTIMEOUT_MS; |
Paul Fox | 40f0bcf | 2007-09-06 17:52:22 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 491 | goto send_again; /* resend last sent pkt */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 492 | case 1: |
| 493 | if (!our_lsa) { |
| 494 | /* tftp (not tftpd!) receiving 1st packet */ |
| 495 | our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */ |
| 496 | len = recvfrom(socket_fd, rbuf, io_bufsize, 0, |
| 497 | &peer_lsa->u.sa, &peer_lsa->len); |
| 498 | /* Our first dgram went to port 69 |
| 499 | * but reply may come from different one. |
| 500 | * Remember and use this new port (and IP) */ |
| 501 | if (len >= 0) |
| 502 | xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len); |
| 503 | } else { |
| 504 | /* tftpd, or not the very first packet: |
| 505 | * socket is connect()ed, can just read from it. */ |
| 506 | /* Don't full_read()! |
| 507 | * This is not TCP, one read == one pkt! */ |
| 508 | len = safe_read(socket_fd, rbuf, io_bufsize); |
| 509 | } |
| 510 | if (len < 0) { |
| 511 | goto send_read_err_pkt; |
| 512 | } |
| 513 | if (len < 4) { /* too small? */ |
| 514 | goto recv_again; |
| 515 | } |
Denis Vlasenko | bf678d5 | 2007-05-09 12:50:08 +0000 | [diff] [blame] | 516 | } |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 517 | |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 518 | /* Process recv'ed packet */ |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 519 | opcode = ntohs( ((uint16_t*)rbuf)[0] ); |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 520 | recv_blk = ntohs( ((uint16_t*)rbuf)[1] ); |
Denis Vlasenko | 35a064b | 2008-11-06 00:49:59 +0000 | [diff] [blame] | 521 | #if ENABLE_TFTP_DEBUG |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 522 | fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk); |
Eric Andersen | 76fa8ea | 2001-08-20 17:47:49 +0000 | [diff] [blame] | 523 | #endif |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 524 | if (opcode == TFTP_ERROR) { |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 525 | static const char errcode_str[] ALIGN1 = |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 526 | "\0" |
| 527 | "file not found\0" |
| 528 | "access violation\0" |
| 529 | "disk full\0" |
| 530 | "bad operation\0" |
| 531 | "unknown transfer id\0" |
| 532 | "file already exists\0" |
| 533 | "no such user\0" |
| 534 | "bad option"; |
Denis Vlasenko | 80b8b39 | 2007-06-25 10:55:35 +0000 | [diff] [blame] | 535 | |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 536 | const char *msg = ""; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 537 | |
Denis Vlasenko | d7e6af2 | 2008-03-18 01:13:11 +0000 | [diff] [blame] | 538 | if (len > 4 && rbuf[4] != '\0') { |
Denis Vlasenko | 10f7dd1 | 2006-12-17 01:14:08 +0000 | [diff] [blame] | 539 | msg = &rbuf[4]; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 540 | rbuf[io_bufsize - 1] = '\0'; /* paranoia */ |
| 541 | } else if (recv_blk <= 8) { |
| 542 | msg = nth_string(errcode_str, recv_blk); |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 543 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 544 | bb_error_msg("server error: (%u) %s", recv_blk, msg); |
| 545 | goto ret; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 546 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 547 | |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 548 | #if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 549 | if (expect_OACK) { |
| 550 | expect_OACK = 0; |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 551 | if (opcode == TFTP_OACK) { |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 552 | /* server seems to support options */ |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 553 | char *res; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 554 | |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 555 | res = tftp_get_option("blksize", &rbuf[2], len - 2); |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 556 | if (res) { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 557 | blksize = tftp_blksize_check(res, blksize); |
| 558 | if (blksize < 0) { |
| 559 | error_pkt_reason = ERR_BAD_OPT; |
| 560 | goto send_err_pkt; |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 561 | } |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 562 | io_bufsize = blksize + 4; |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 563 | } |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 564 | # if ENABLE_FEATURE_TFTP_PROGRESS_BAR |
Denys Vlasenko | 1e9ac9f | 2009-11-08 18:15:10 +0100 | [diff] [blame] | 565 | if (remote_file && G.size == 0) { /* if we don't know it yet */ |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 566 | res = tftp_get_option("tsize", &rbuf[2], len - 2); |
| 567 | if (res) { |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 568 | G.size = bb_strtoull(res, NULL, 10); |
Denys Vlasenko | 1e9ac9f | 2009-11-08 18:15:10 +0100 | [diff] [blame] | 569 | if (G.size) |
Denys Vlasenko | adc08ef | 2009-11-08 18:07:36 +0100 | [diff] [blame] | 570 | tftp_progress_init(); |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 571 | } |
| 572 | } |
| 573 | # endif |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 574 | if (CMD_GET(option_mask32)) { |
| 575 | /* We'll send ACK for OACK, |
| 576 | * such ACK has "block no" of 0 */ |
| 577 | block_nr = 0; |
| 578 | } |
| 579 | continue; |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 580 | } |
Atsushi Nemoto | 330d898 | 2009-07-24 22:34:47 +0200 | [diff] [blame] | 581 | /* rfc2347: |
| 582 | * "An option not acknowledged by the server |
Denys Vlasenko | 1e9ac9f | 2009-11-08 18:15:10 +0100 | [diff] [blame] | 583 | * must be ignored by the client and server |
| 584 | * as if it were never requested." */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 585 | bb_error_msg("server only supports blocksize of 512"); |
| 586 | blksize = TFTP_BLKSIZE_DEFAULT; |
| 587 | io_bufsize = TFTP_BLKSIZE_DEFAULT + 4; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 588 | } |
| 589 | #endif |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 590 | /* block_nr is already advanced to next block# we expect |
| 591 | * to get / block# we are about to send next time */ |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 592 | |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 593 | if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) { |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 594 | if (recv_blk == block_nr) { |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 595 | int sz = full_write(local_fd, &rbuf[4], len - 4); |
| 596 | if (sz != len - 4) { |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 597 | strcpy((char*)error_pkt_str, bb_msg_write_error); |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 598 | error_pkt_reason = ERR_WRITE; |
| 599 | goto send_err_pkt; |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 600 | } |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 601 | if (sz != blksize) { |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 602 | finished = 1; |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 603 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 604 | continue; /* send ACK */ |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 605 | } |
Denys Vlasenko | c8ab67c | 2009-05-10 23:27:43 +0200 | [diff] [blame] | 606 | /* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */ |
| 607 | #if 0 |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 608 | if (recv_blk == (block_nr - 1)) { |
Paul Fox | 1d4c88c | 2005-07-20 19:49:15 +0000 | [diff] [blame] | 609 | /* Server lost our TFTP_ACK. Resend it */ |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 610 | block_nr = recv_blk; |
Paul Fox | 1d4c88c | 2005-07-20 19:49:15 +0000 | [diff] [blame] | 611 | continue; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 612 | } |
Denys Vlasenko | c8ab67c | 2009-05-10 23:27:43 +0200 | [diff] [blame] | 613 | #endif |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 614 | } |
| 615 | |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 616 | if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) { |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 617 | /* did peer ACK our last DATA pkt? */ |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 618 | if (recv_blk == (uint16_t) (block_nr - 1)) { |
| 619 | if (finished) |
| 620 | goto ret; |
| 621 | continue; /* send next block */ |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 622 | } |
| 623 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 624 | /* Awww... recv'd packet is not recognized! */ |
| 625 | goto recv_again; |
| 626 | /* why recv_again? - rfc1123 says: |
| 627 | * "The sender (i.e., the side originating the DATA packets) |
| 628 | * must never resend the current DATA packet on receipt |
| 629 | * of a duplicate ACK". |
| 630 | * DATA pkts are resent ONLY on timeout. |
| 631 | * Thus "goto send_again" will ba a bad mistake above. |
| 632 | * See: |
| 633 | * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome |
| 634 | */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 635 | } /* end of "while (1)" */ |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 636 | ret: |
Denis Vlasenko | 2c91652 | 2007-01-12 14:57:37 +0000 | [diff] [blame] | 637 | if (ENABLE_FEATURE_CLEAN_UP) { |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 638 | close(local_fd); |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 639 | close(socket_fd); |
Denis Vlasenko | 2c91652 | 2007-01-12 14:57:37 +0000 | [diff] [blame] | 640 | free(xbuf); |
| 641 | free(rbuf); |
| 642 | } |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 643 | return finished == 0; /* returns 1 on failure */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 644 | |
| 645 | send_read_err_pkt: |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 646 | strcpy((char*)error_pkt_str, bb_msg_read_error); |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 647 | send_err_pkt: |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 648 | if (error_pkt_str[0]) |
Denys Vlasenko | 0939f2e | 2009-10-24 17:47:56 +0200 | [diff] [blame] | 649 | bb_error_msg("%s", (char*)error_pkt_str); |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 650 | error_pkt[1] = TFTP_ERROR; |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 651 | xsendto(socket_fd, error_pkt, 4 + 1 + strlen((char*)error_pkt_str), |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 652 | &peer_lsa->u.sa, peer_lsa->len); |
| 653 | return EXIT_FAILURE; |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 654 | #undef remote_file |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 657 | #if ENABLE_TFTP |
| 658 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 659 | int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 660 | int tftp_main(int argc UNUSED_PARAM, char **argv) |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 661 | { |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 662 | len_and_sockaddr *peer_lsa; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 663 | const char *local_file = NULL; |
| 664 | const char *remote_file = NULL; |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 665 | # if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame] | 666 | const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 667 | int blksize; |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 668 | # endif |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 669 | int result; |
| 670 | int port; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 671 | IF_GETPUT(int opt;) |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 672 | |
| 673 | INIT_G(); |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 674 | |
Denis Vlasenko | 8e9ccba | 2007-01-11 16:50:23 +0000 | [diff] [blame] | 675 | /* -p or -g is mandatory, and they are mutually exclusive */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 676 | opt_complementary = "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:") |
| 677 | IF_GETPUT("g--p:p--g:"); |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 678 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 679 | IF_GETPUT(opt =) getopt32(argv, |
| 680 | IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p") |
| 681 | "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"), |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 682 | &local_file, &remote_file |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 683 | IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str)); |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 684 | argv += optind; |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 685 | |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 686 | # if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 687 | /* Check if the blksize is valid: |
| 688 | * RFC2348 says between 8 and 65464 */ |
| 689 | blksize = tftp_blksize_check(blksize_str, 65564); |
| 690 | if (blksize < 0) { |
| 691 | //bb_error_msg("bad block size"); |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 692 | return EXIT_FAILURE; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 693 | } |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 694 | # endif |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 695 | |
Denis Vlasenko | f9beb61 | 2009-03-25 03:55:53 +0000 | [diff] [blame] | 696 | if (remote_file) { |
| 697 | if (!local_file) { |
| 698 | const char *slash = strrchr(remote_file, '/'); |
| 699 | local_file = slash ? slash + 1 : remote_file; |
| 700 | } |
| 701 | } else { |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 702 | remote_file = local_file; |
Denis Vlasenko | f9beb61 | 2009-03-25 03:55:53 +0000 | [diff] [blame] | 703 | } |
| 704 | |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 705 | /* Error if filename or host is not known */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 706 | if (!remote_file || !argv[0]) |
Bernhard Reutner-Fischer | b25f98a | 2006-06-10 14:15:03 +0000 | [diff] [blame] | 707 | bb_show_usage(); |
"Vladimir N. Oleynik" | 86ac072 | 2005-10-17 10:47:19 +0000 | [diff] [blame] | 708 | |
Denis Vlasenko | a04561f | 2007-05-08 23:12:21 +0000 | [diff] [blame] | 709 | port = bb_lookup_port(argv[1], "udp", 69); |
| 710 | peer_lsa = xhost2sockaddr(argv[0], port); |
Eric Andersen | 76fa8ea | 2001-08-20 17:47:49 +0000 | [diff] [blame] | 711 | |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 712 | # if ENABLE_TFTP_DEBUG |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 713 | fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n", |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 714 | xmalloc_sockaddr2dotted(&peer_lsa->u.sa), |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 715 | remote_file, local_file); |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 716 | # endif |
Eric Andersen | 76fa8ea | 2001-08-20 17:47:49 +0000 | [diff] [blame] | 717 | |
Denys Vlasenko | adc08ef | 2009-11-08 18:07:36 +0100 | [diff] [blame] | 718 | # if ENABLE_FEATURE_TFTP_PROGRESS_BAR |
| 719 | G.file = remote_file; |
| 720 | # endif |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 721 | result = tftp_protocol( |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 722 | NULL /*our_lsa*/, peer_lsa, |
| 723 | local_file, remote_file |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 724 | IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 725 | IF_FEATURE_TFTP_BLOCKSIZE(, blksize) |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 726 | ); |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 727 | tftp_progress_done(); |
Mark Whitley | 450736c | 2001-03-02 19:08:50 +0000 | [diff] [blame] | 728 | |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 729 | if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) { |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 730 | unlink(local_file); |
Eric Andersen | a66a43e | 2002-04-13 09:30:25 +0000 | [diff] [blame] | 731 | } |
Denis Vlasenko | 000b9ba | 2006-10-05 23:12:49 +0000 | [diff] [blame] | 732 | return result; |
Glenn L McGrath | ad117d8 | 2001-10-05 04:40:37 +0000 | [diff] [blame] | 733 | } |
Denis Vlasenko | 3163555 | 2007-01-20 16:54:19 +0000 | [diff] [blame] | 734 | |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 735 | #endif /* ENABLE_TFTP */ |
| 736 | |
| 737 | #if ENABLE_TFTPD |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 738 | int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 739 | int tftpd_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 740 | { |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 741 | len_and_sockaddr *our_lsa; |
| 742 | len_and_sockaddr *peer_lsa; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 743 | char *local_file, *mode; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 744 | const char *error_msg; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 745 | int opt, result, opcode; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 746 | IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;) |
Denys Vlasenko | 31e2e7b | 2009-12-12 02:42:35 +0100 | [diff] [blame] | 747 | IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;) |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 748 | |
| 749 | INIT_G(); |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 750 | |
| 751 | our_lsa = get_sock_lsa(STDIN_FILENO); |
Denis Vlasenko | 5a89763 | 2008-11-01 00:22:24 +0000 | [diff] [blame] | 752 | if (!our_lsa) { |
| 753 | /* This is confusing: |
| 754 | *bb_error_msg_and_die("stdin is not a socket"); |
| 755 | * Better: */ |
| 756 | bb_show_usage(); |
| 757 | /* Help text says that tftpd must be used as inetd service, |
| 758 | * which is by far the most usual cause of get_sock_lsa |
| 759 | * failure */ |
| 760 | } |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 761 | peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len); |
| 762 | peer_lsa->len = our_lsa->len; |
| 763 | |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 764 | /* Shifting to not collide with TFTP_OPTs */ |
| 765 | opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:", &user_opt) << 8); |
Denis Vlasenko | d7e6af2 | 2008-03-18 01:13:11 +0000 | [diff] [blame] | 766 | argv += optind; |
| 767 | if (argv[0]) |
| 768 | xchdir(argv[0]); |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 769 | |
| 770 | result = recv_from_to(STDIN_FILENO, block_buf, sizeof(block_buf), |
| 771 | 0 /* flags */, |
| 772 | &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len); |
| 773 | |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 774 | error_msg = "malformed packet"; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 775 | opcode = ntohs(*(uint16_t*)block_buf); |
| 776 | if (result < 4 || result >= sizeof(block_buf) |
| 777 | || block_buf[result-1] != '\0' |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 778 | || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */ |
| 779 | IF_GETPUT(&&) |
| 780 | IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */ |
Denis Vlasenko | d7e6af2 | 2008-03-18 01:13:11 +0000 | [diff] [blame] | 781 | ) |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 782 | ) { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 783 | goto err; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 784 | } |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 785 | local_file = block_buf + 2; |
| 786 | if (local_file[0] == '.' || strstr(local_file, "/.")) { |
Denis Vlasenko | 0a0180c | 2008-03-19 23:37:32 +0000 | [diff] [blame] | 787 | error_msg = "dot in file name"; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 788 | goto err; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 789 | } |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 790 | mode = local_file + strlen(local_file) + 1; |
| 791 | if (mode >= block_buf + result || strcmp(mode, "octet") != 0) { |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 792 | goto err; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 793 | } |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 794 | # if ENABLE_FEATURE_TFTP_BLOCKSIZE |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 795 | { |
| 796 | char *res; |
| 797 | char *opt_str = mode + sizeof("octet"); |
| 798 | int opt_len = block_buf + result - opt_str; |
| 799 | if (opt_len > 0) { |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 800 | res = tftp_get_option("blksize", opt_str, opt_len); |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 801 | if (res) { |
| 802 | blksize = tftp_blksize_check(res, 65564); |
| 803 | if (blksize < 0) { |
| 804 | error_pkt_reason = ERR_BAD_OPT; |
| 805 | /* will just send error pkt */ |
| 806 | goto do_proto; |
| 807 | } |
| 808 | } |
Denys Vlasenko | 6528abe | 2009-11-08 18:27:18 +0100 | [diff] [blame] | 809 | if (opcode != TFTP_WRQ /* download? */ |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 810 | /* did client ask us about file size? */ |
Denys Vlasenko | 6528abe | 2009-11-08 18:27:18 +0100 | [diff] [blame] | 811 | && tftp_get_option("tsize", opt_str, opt_len) |
| 812 | ) { |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 813 | want_transfer_size = 1; |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 814 | } |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 815 | } |
| 816 | } |
Magnus Damm | bbd4235 | 2009-11-08 18:00:59 +0100 | [diff] [blame] | 817 | # endif |
Denis Vlasenko | d7e6af2 | 2008-03-18 01:13:11 +0000 | [diff] [blame] | 818 | |
Denis Vlasenko | d7e6af2 | 2008-03-18 01:13:11 +0000 | [diff] [blame] | 819 | if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) { |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 820 | if (opt & TFTPD_OPT_r) { |
Denis Vlasenko | 71c9f01 | 2008-03-19 09:43:50 +0000 | [diff] [blame] | 821 | /* This would mean "disk full" - not true */ |
| 822 | /*error_pkt_reason = ERR_WRITE;*/ |
| 823 | error_msg = bb_msg_write_error; |
| 824 | goto err; |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 825 | } |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 826 | IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */ |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 827 | } else { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 828 | IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */ |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 829 | } |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 830 | |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 831 | /* NB: if error_pkt_str or error_pkt_reason is set up, |
| 832 | * tftp_protocol() just sends one error pkt and returns */ |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 833 | |
Denis Vlasenko | dd9228b | 2008-03-19 05:00:05 +0000 | [diff] [blame] | 834 | do_proto: |
Denis Vlasenko | 8474cd3 | 2008-06-16 07:12:19 +0000 | [diff] [blame] | 835 | close(STDIN_FILENO); /* close old, possibly wildcard socket */ |
| 836 | /* tftp_protocol() will create new one, bound to particular local IP */ |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 837 | result = tftp_protocol( |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 838 | our_lsa, peer_lsa, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 839 | local_file IF_TFTP(, NULL /*remote_file*/) |
Magnus Damm | 8bd0af9 | 2009-11-08 18:03:09 +0100 | [diff] [blame] | 840 | IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 841 | IF_FEATURE_TFTP_BLOCKSIZE(, blksize) |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 842 | ); |
| 843 | |
| 844 | return result; |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 845 | err: |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 846 | strcpy((char*)error_pkt_str, error_msg); |
Denis Vlasenko | 403a5a2 | 2008-03-19 13:07:00 +0000 | [diff] [blame] | 847 | goto do_proto; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | #endif /* ENABLE_TFTPD */ |
| 851 | |
Denis Vlasenko | 3163555 | 2007-01-20 16:54:19 +0000 | [diff] [blame] | 852 | #endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */ |