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