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