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