blob: 60fdff2322394cf97fb415bb0363550fd1b3c925 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenkobac9f032009-07-25 01:56:23 +02002/*
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +00003 * A simple tftp client/server for busybox.
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00004 * 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 Vlasenko78c56562008-03-18 00:11:46 +000017 * tftpd added by Denys Vlasenko & Vladimir Dronnikov
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +000018 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020019 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denys Vlasenkobac9f032009-07-25 01:56:23 +020020 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010021//config:config TFTP
Denys Vlasenkob097a842018-12-28 03:20:17 +010022//config: bool "tftp (11 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010023//config: default y
24//config: help
Denys Vlasenko68b653b2017-07-27 10:53:09 +020025//config: Trivial File Transfer Protocol client. TFTP is usually used
26//config: for simple, small transfers such as a root image
Denys Vlasenko72089cf2017-07-21 09:50:55 +020027//config: for a network-enabled bootloader.
Denys Vlasenko47367e12016-11-23 09:05:14 +010028//config:
Denys Vlasenko68b653b2017-07-27 10:53:09 +020029//config:config FEATURE_TFTP_PROGRESS_BAR
30//config: bool "Enable progress bar"
31//config: default y
32//config: depends on TFTP
33//config:
Denys Vlasenko3b8025f2019-06-09 11:12:02 +020034//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 Vlasenko47367e12016-11-23 09:05:14 +010039//config:config TFTPD
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020040//config: bool "tftpd (10 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010041//config: default y
42//config: help
Denys Vlasenko68b653b2017-07-27 10:53:09 +020043//config: Trivial File Transfer Protocol server.
Denys Vlasenko72089cf2017-07-21 09:50:55 +020044//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 Vlasenko47367e12016-11-23 09:05:14 +010048//config:
Denys Vlasenko47367e12016-11-23 09:05:14 +010049//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 Vlasenko72089cf2017-07-21 09:50:55 +020054//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 Vlasenko47367e12016-11-23 09:05:14 +010057//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020058//config: Note: this option does _not_ make tftpd capable of download
59//config: (the usual operation people need from it)!
Denys Vlasenko47367e12016-11-23 09:05:14 +010060//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 Vlasenko72089cf2017-07-21 09:50:55 +020066//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 Vlasenko47367e12016-11-23 09:05:14 +010069//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 Vlasenko72089cf2017-07-21 09:50:55 +020075//config: Allow tftp to specify block size, and tftpd to understand
76//config: "blksize" and "tsize" options.
Denys Vlasenko47367e12016-11-23 09:05:14 +010077//config:
Denys Vlasenko47367e12016-11-23 09:05:14 +010078//config:config TFTP_DEBUG
79//config: bool "Enable debug"
80//config: default n
81//config: depends on TFTP || TFTPD
82//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020083//config: Make tftp[d] print debugging messages on stderr.
84//config: This is useful if you are diagnosing a bug in tftp[d].
Denys Vlasenko47367e12016-11-23 09:05:14 +010085
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 Orga5bc8c002011-04-11 03:29:49 +020093
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 Orga5bc8c002011-04-11 03:29:49 +020098//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 Vlasenko3b8025f2019-06-09 11:12:02 +0200109///////: "\n -m STR Accepted and ignored ('-m binary' compat with tftp-hpa 5.2)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200110//usage:
111//usage:#define tftpd_trivial_usage
Denys Vlasenko3b8025f2019-06-09 11:12:02 +0200112//usage: "[-crl] [-u USER] [DIR]"
Pere Orga5bc8c002011-04-11 03:29:49 +0200113//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 Vlasenko532e9612011-04-11 05:12:53 +0200118//usage: " 69 dgram udp nowait root tftpd tftpd -l /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200119//usage: "It also can be ran from udpsvd:\n"
120//usage: " udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200121//usage: "\n -r Prohibit upload"
122//usage: "\n -c Allow file creation via upload"
123//usage: "\n -u Access files as USER"
Denys Vlasenko532e9612011-04-11 05:12:53 +0200124//usage: "\n -l Log to syslog (inetd mode requires this)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200125
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000126#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200127#include "common_bufsiz.h"
Denys Vlasenko88d3cfd2011-04-11 05:24:58 +0200128#include <syslog.h>
Mark Whitley450736c2001-03-02 19:08:50 +0000129
Denis Vlasenko31635552007-01-20 16:54:19 +0000130#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
131
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000132#define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */
133#define TFTP_BLKSIZE_DEFAULT_STR "512"
Denys Vlasenko5b1dfe62010-06-18 02:47:27 +0200134/* Was 50 ms but users asked to bump it up a bit */
135#define TFTP_TIMEOUT_MS 100
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000136#define TFTP_MAXTIMEOUT_MS 2000
137#define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000138
Glenn L McGrathad117d82001-10-05 04:40:37 +0000139/* opcodes we support */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000140#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 Vlasenko8474cd32008-06-16 07:12:19 +0000147/* error codes sent over network (we use only 0, 1, 3 and 8) */
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000148/* generic (error message is included in the packet) */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000149#define ERR_UNSPEC 0
150#define ERR_NOFILE 1
151#define ERR_ACCESS 2
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000152/* disk full or allocation exceeded */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000153#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 Vlasenko403a5a22008-03-19 13:07:00 +0000160/* masks coming from getopt32 */
161enum {
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 Vlasenko532e9612011-04-11 05:12:53 +0200169 TFTPD_OPT_l = (1 << 11) * ENABLE_TFTPD,
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000170};
171
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000172#if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000173#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000174#define CMD_GET(cmd) 1
175#define CMD_PUT(cmd) 0
176#elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000177#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000178#define CMD_GET(cmd) 0
179#define CMD_PUT(cmd) 1
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000180#else
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000181#define IF_GETPUT(...) __VA_ARGS__
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000182#define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
183#define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000184#endif
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000185/* NB: in the code below
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000186 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000187 */
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000188
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000189
190struct globals {
191 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
192 uint8_t error_pkt[4 + 32];
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200193 struct passwd *pw;
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200194 /* 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 Vlasenko67e01fe2014-09-03 18:35:38 +0200197 char block_buf_tail[1];
Magnus Damm8bd0af92009-11-08 18:03:09 +0100198#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 Vlasenko98a4c7c2010-02-04 15:00:15 +0100204} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200205#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenkoab3964d2015-10-13 14:50:20 +0200206#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200207 setup_common_bufsiz(); \
Denys Vlasenkoab3964d2015-10-13 14:50:20 +0200208 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
209} while (0)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000210
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200211#define G_error_pkt_reason (G.error_pkt[3])
212#define G_error_pkt_str ((char*)(G.error_pkt + 4))
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000213
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100214#if ENABLE_FEATURE_TFTP_PROGRESS_BAR && ENABLE_FEATURE_TFTP_BLOCKSIZE
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100215static void tftp_progress_update(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100216{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100217 bb_progress_update(&G.pmt, 0, G.pos, G.size);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100218}
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100219static void tftp_progress_init(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100220{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100221 bb_progress_init(&G.pmt, G.file);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100222 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100223}
224static void tftp_progress_done(void)
225{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100226 if (is_bb_progress_inited(&G.pmt)) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100227 tftp_progress_update();
228 bb_putchar_stderr('\n');
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100229 bb_progress_free(&G.pmt);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100230 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100231}
232#else
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100233# define tftp_progress_update() ((void)0)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100234# define tftp_progress_init() ((void)0)
235# define tftp_progress_done() ((void)0)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100236#endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000237
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000238#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Glenn L McGrathad117d82001-10-05 04:40:37 +0000239
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000240static int tftp_blksize_check(const char *blksize_str, int maxsize)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000241{
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000242 /* Check if the blksize is valid:
Glenn L McGrathad117d82001-10-05 04:40:37 +0000243 * RFC2348 says between 8 and 65464,
244 * but our implementation makes it impossible
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000245 * 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 Vlasenko8e9ccba2007-01-11 16:50:23 +0000249 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000250 bb_error_msg("bad blocksize '%s'", blksize_str);
251 return -1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000252 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100253# if ENABLE_TFTP_DEBUG
James Byrne253c4e72019-04-12 17:01:51 +0000254 bb_info_msg("using blksize %u", blksize);
Magnus Dammbbd42352009-11-08 18:00:59 +0100255# endif
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000256 return blksize;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000257}
258
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000259static char *tftp_get_option(const char *option, char *buf, int len)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000260{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000261 int opt_val = 0;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000262 int opt_found = 0;
263 int k;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000264
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000265 /* buf points to:
266 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
267
Glenn L McGrathad117d82001-10-05 04:40:37 +0000268 while (len > 0) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000269 /* Make sure options are terminated correctly */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000270 for (k = 0; k < len; k++) {
271 if (buf[k] == '\0') {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000272 goto nul_found;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000273 }
274 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000275 return NULL;
276 nul_found:
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000277 if (opt_val == 0) { /* it's "name" part */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000278 if (strcasecmp(buf, option) == 0) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000279 opt_found = 1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000280 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000281 } else if (opt_found) {
282 return buf;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000283 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000284
Glenn L McGrathad117d82001-10-05 04:40:37 +0000285 k++;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000286 buf += k;
287 len -= k;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000288 opt_val ^= 1;
289 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000290
Glenn L McGrathad117d82001-10-05 04:40:37 +0000291 return NULL;
292}
293
294#endif
295
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000296static int tftp_protocol(
Magnus Dammbbd42352009-11-08 18:00:59 +0100297 /* NULL if tftp, !NULL if tftpd: */
298 len_and_sockaddr *our_lsa,
Denis Vlasenko0850cda2007-02-07 23:20:32 +0000299 len_and_sockaddr *peer_lsa,
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000300 const char *local_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000301 IF_TFTP(, const char *remote_file)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000302#if !ENABLE_TFTP
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200303# define remote_file NULL
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000304#endif
Magnus Dammbbd42352009-11-08 18:00:59 +0100305 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100306 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
Magnus Dammbbd42352009-11-08 18:00:59 +0100307 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
308{
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000309#if !ENABLE_FEATURE_TFTP_BLOCKSIZE
310 enum { blksize = TFTP_BLKSIZE_DEFAULT };
311#endif
312
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000313 struct pollfd pfd[1];
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000314#define socket_fd (pfd[0].fd)
Bernhard Reutner-Fischer62f98562006-06-10 14:32:56 +0000315 int len;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000316 int send_len;
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200317 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000318 smallint finished = 0;
319 uint16_t opcode;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000320 uint16_t block_nr;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000321 uint16_t recv_blk;
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100322 int local_fd = -1;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000323 int retries, waittime_ms;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000324 int io_bufsize = blksize + 4;
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000325 char *cp;
Eric Andersen744a1942001-11-10 11:16:39 +0000326 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200327 * size varies meaning BUFFERS_GO_ON_STACK would fail.
328 *
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200329 * We must keep the transmit and receive buffers separate
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200330 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
331 */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000332 char *xbuf = xmalloc(io_bufsize);
333 char *rbuf = xmalloc(io_bufsize);
Mark Whitley450736c2001-03-02 19:08:50 +0000334
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000335 socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
336 setsockopt_reuseaddr(socket_fd);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000337
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200338 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000339 /* 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 McGrathad117d82001-10-05 04:40:37 +0000347
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000348 /* Is there an error already? Send pkt and bail out */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200349 if (G_error_pkt_reason || G_error_pkt_str[0])
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000350 goto send_err_pkt;
351
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200352 if (G.pw) {
353 change_identity(G.pw); /* initgroups, setgid, setuid */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000354 }
355 }
356
Denys Vlasenkobac9f032009-07-25 01:56:23 +0200357 /* Examples of network traffic.
358 * Note two cases when ACKs with block# of 0 are sent.
359 *
360 * Download without options:
361 * tftp -> "\0\1FILENAME\0octet\0"
362 * "\0\3\0\1FILEDATA..." <- tftpd
363 * tftp -> "\0\4\0\1"
364 * ...
365 * Download with option of blksize 16384:
366 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
367 * "\0\6blksize\00016384\0" <- tftpd
368 * tftp -> "\0\4\0\0"
369 * "\0\3\0\1FILEDATA..." <- tftpd
370 * tftp -> "\0\4\0\1"
371 * ...
372 * Upload without options:
373 * tftp -> "\0\2FILENAME\0octet\0"
374 * "\0\4\0\0" <- tftpd
375 * tftp -> "\0\3\0\1FILEDATA..."
376 * "\0\4\0\1" <- tftpd
377 * ...
378 * Upload with option of blksize 16384:
379 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
380 * "\0\6blksize\00016384\0" <- tftpd
381 * tftp -> "\0\3\0\1FILEDATA..."
382 * "\0\4\0\1" <- tftpd
383 * ...
384 */
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200385 block_nr = 1;
386 cp = xbuf + 2;
387
388 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
389 /* Open file (must be after changing user) */
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100390 int open_mode = O_RDONLY;
391 if (CMD_GET(option_mask32)) {
392 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
393 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
394 /* tftpd without -c */
395 open_mode = O_WRONLY | O_TRUNC;
396 }
397 }
Denys Vlasenko4b061462010-02-02 01:01:40 +0100398 local_fd = open(local_file, open_mode, 0666);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000399 if (local_fd < 0) {
Denys Vlasenko260bd212020-02-13 12:58:46 +0100400 /* sanitize name, it came from untrusted remote side */
401 unsigned char *p = (void *) local_file;
402 while (*p) {
403 if (*p < ' ')
404 *p = '?';
405 p++;
406 }
407 bb_perror_msg("can't open '%s'", local_file);
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200408 G_error_pkt_reason = ERR_NOFILE;
409 strcpy(G_error_pkt_str, "can't open file");
Denys Vlasenko260bd212020-02-13 12:58:46 +0100410 goto send_err_pkt_nomsg;
Denis Vlasenko7a601332008-03-19 13:24:13 +0000411 }
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100412
Denis Vlasenko31e12862008-06-16 07:32:40 +0000413/* gcc 4.3.1 would NOT optimize it out as it should! */
414#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100415 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000416 /* Create and send OACK packet. */
417 /* For the download case, block_nr is still 1 -
418 * we expect 1st ACK from peer to be for (block_nr-1),
419 * that is, for "block 0" which is our OACK pkt */
420 opcode = TFTP_OACK;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000421 goto add_blksize_opt;
422 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000423#endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200424 if (CMD_GET(option_mask32)) {
425 /* It's upload and we don't send OACK.
426 * We must ACK 1st packet (with filename)
427 * as if it is "block 0" */
428 block_nr = 0;
429 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200430 } else { /* tftp */
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100431 if (CMD_PUT(option_mask32)) {
432 local_fd = STDIN_FILENO;
433 if (local_file)
434 local_fd = xopen(local_file, O_RDONLY);
435 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200436/* Removing #if, or using if() statement instead of #if may lead to
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000437 * "warning: null argument where non-null required": */
438#if ENABLE_TFTP
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000439 /* tftp */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000440
441 /* We can't (and don't really need to) bind the socket:
442 * we don't know from which local IP datagrams will be sent,
443 * but kernel will pick the same IP every time (unless routing
444 * table is changed), thus peer will see dgrams consistently
445 * coming from the same IP.
446 * We would like to connect the socket, but since peer's
447 * UDP code can be less perfect than ours, _peer's_ IP:port
448 * in replies may differ from IP:port we used to send
449 * our first packet. We can connect() only when we get
450 * first reply. */
451
452 /* build opcode */
453 opcode = TFTP_WRQ;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000454 if (CMD_GET(option_mask32)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000455 opcode = TFTP_RRQ;
456 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000457 /* add filename and mode */
458 /* fill in packet if the filename fits into xbuf */
Denys Vlasenko779df9f2020-02-13 13:01:43 +0100459 len = strlen(remote_file);
460 if (len + 3 + sizeof("octet") >= io_bufsize) {
James Byrne69374872019-07-02 11:35:03 +0200461 bb_simple_error_msg("remote filename is too long");
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000462 goto ret;
463 }
Denys Vlasenko779df9f2020-02-13 13:01:43 +0100464 cp = stpcpy(cp, remote_file) + 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100465 /* add "mode" part of the packet */
Denys Vlasenko0c4e5972020-02-13 15:03:12 +0100466 cp = stpcpy(cp, "octet") + 1;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000467
Magnus Dammbbd42352009-11-08 18:00:59 +0100468# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100469 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000470 goto send_pkt;
471
Magnus Dammbbd42352009-11-08 18:00:59 +0100472 /* Need to add option to pkt */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100473 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
James Byrne69374872019-07-02 11:35:03 +0200474 bb_simple_error_msg("remote filename is too long");
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000475 goto ret;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000476 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200477 expect_OACK = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100478# endif
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000479#endif /* ENABLE_TFTP */
480
Denis Vlasenko31e12862008-06-16 07:32:40 +0000481#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000482 add_blksize_opt:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000483 if (blksize != TFTP_BLKSIZE_DEFAULT) {
484 /* add "blksize", <nul>, blksize, <nul> */
485 strcpy(cp, "blksize");
486 cp += sizeof("blksize");
487 cp += snprintf(cp, 6, "%d", blksize) + 1;
488 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100489 if (want_transfer_size) {
Magnus Dammbbd42352009-11-08 18:00:59 +0100490 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100491 /* if tftp and downloading, we send "0" (local_fd is not open yet)
Magnus Dammbbd42352009-11-08 18:00:59 +0100492 * and this makes server to send "tsize" option with the size */
493 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
494 /* if tftpd and downloading, we are answering to client's request */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100495 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
Magnus Dammbbd42352009-11-08 18:00:59 +0100496 struct stat st;
497 strcpy(cp, "tsize");
498 cp += sizeof("tsize");
499 st.st_size = 0;
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100500 if (local_fd >= 0)
501 fstat(local_fd, &st);
Magnus Dammbbd42352009-11-08 18:00:59 +0100502 cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
Magnus Damm8bd0af92009-11-08 18:03:09 +0100503# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Magnus Dammbbd42352009-11-08 18:00:59 +0100504 /* Save for progress bar. If 0 (tftp downloading),
505 * we look at server's reply later */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100506 G.size = st.st_size;
507 if (remote_file && st.st_size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100508 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100509# endif
510 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000511#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000512 /* First packet is built, so skip packet generation */
513 goto send_pkt;
514 }
Mark Whitley450736c2001-03-02 19:08:50 +0000515
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000516 /* Using mostly goto's - continue/break will be less clear
517 * in where we actually jump to */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000518 while (1) {
519 /* Build ACK or DATA */
520 cp = xbuf + 2;
521 *((uint16_t*)cp) = htons(block_nr);
522 cp += 2;
523 block_nr++;
524 opcode = TFTP_ACK;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000525 if (CMD_PUT(option_mask32)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000526 opcode = TFTP_DATA;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000527 len = full_read(local_fd, cp, blksize);
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000528 if (len < 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000529 goto send_read_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000530 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000531 if (len != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000532 finished = 1;
533 }
534 cp += len;
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200535 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += len;)
Mark Whitley450736c2001-03-02 19:08:50 +0000536 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000537 send_pkt:
538 /* Send packet */
539 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000540 send_len = cp - xbuf;
541 /* NB: send_len value is preserved in code below
542 * for potential resend */
Paul Fox40f0bcf2007-09-06 17:52:22 +0000543
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200544 retries = TFTP_NUM_RETRIES; /* re-initialize */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000545 waittime_ms = TFTP_TIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000546
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000547 send_again:
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000548#if ENABLE_TFTP_DEBUG
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000549 fprintf(stderr, "sending %u bytes\n", send_len);
550 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
551 fprintf(stderr, "%02x ", (unsigned char) *cp);
552 fprintf(stderr, "\n");
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000553#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000554 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100555
556#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100557 if (is_bb_progress_inited(&G.pmt))
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100558 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100559#endif
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000560 /* Was it final ACK? then exit */
561 if (finished && (opcode == TFTP_ACK))
562 goto ret;
Mark Whitley450736c2001-03-02 19:08:50 +0000563
Denis Vlasenko2c916522007-01-12 14:57:37 +0000564 recv_again:
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000565 /* Receive packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000566 /*pfd[0].fd = socket_fd;*/
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000567 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000568 switch (safe_poll(pfd, 1, waittime_ms)) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000569 default:
570 /*bb_perror_msg("poll"); - done in safe_poll */
571 goto ret;
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000572 case 0:
Paul Fox40f0bcf2007-09-06 17:52:22 +0000573 retries--;
574 if (retries == 0) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100575 tftp_progress_done();
James Byrne69374872019-07-02 11:35:03 +0200576 bb_simple_error_msg("timeout");
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000577 goto ret; /* no err packet sent */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000578 }
Paul Fox40f0bcf2007-09-06 17:52:22 +0000579
580 /* exponential backoff with limit */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000581 waittime_ms += waittime_ms/2;
582 if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
583 waittime_ms = TFTP_MAXTIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000584 }
585
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000586 goto send_again; /* resend last sent pkt */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000587 case 1:
588 if (!our_lsa) {
589 /* tftp (not tftpd!) receiving 1st packet */
590 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
591 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
592 &peer_lsa->u.sa, &peer_lsa->len);
593 /* Our first dgram went to port 69
594 * but reply may come from different one.
595 * Remember and use this new port (and IP) */
596 if (len >= 0)
597 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
598 } else {
599 /* tftpd, or not the very first packet:
600 * socket is connect()ed, can just read from it. */
601 /* Don't full_read()!
602 * This is not TCP, one read == one pkt! */
603 len = safe_read(socket_fd, rbuf, io_bufsize);
604 }
605 if (len < 0) {
606 goto send_read_err_pkt;
607 }
608 if (len < 4) { /* too small? */
609 goto recv_again;
610 }
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000611 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000612
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000613 /* Process recv'ed packet */
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000614 opcode = ntohs( ((uint16_t*)rbuf)[0] );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000615 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000616#if ENABLE_TFTP_DEBUG
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000617 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000618#endif
Glenn L McGrathad117d82001-10-05 04:40:37 +0000619 if (opcode == TFTP_ERROR) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000620 static const char errcode_str[] ALIGN1 =
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000621 "\0"
622 "file not found\0"
623 "access violation\0"
624 "disk full\0"
625 "bad operation\0"
626 "unknown transfer id\0"
627 "file already exists\0"
628 "no such user\0"
629 "bad option";
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000630
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000631 const char *msg = "";
Glenn L McGrathad117d82001-10-05 04:40:37 +0000632
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000633 if (len > 4 && rbuf[4] != '\0') {
Denis Vlasenko10f7dd12006-12-17 01:14:08 +0000634 msg = &rbuf[4];
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000635 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
636 } else if (recv_blk <= 8) {
637 msg = nth_string(errcode_str, recv_blk);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000638 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000639 bb_error_msg("server error: (%u) %s", recv_blk, msg);
640 goto ret;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000641 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000642
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000643#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200644 if (expect_OACK) {
645 expect_OACK = 0;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000646 if (opcode == TFTP_OACK) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000647 /* server seems to support options */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000648 char *res;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000649
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000650 res = tftp_get_option("blksize", &rbuf[2], len - 2);
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000651 if (res) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000652 blksize = tftp_blksize_check(res, blksize);
653 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200654 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000655 goto send_err_pkt;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000656 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000657 io_bufsize = blksize + 4;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000658 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100659# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100660 if (remote_file && G.size == 0) { /* if we don't know it yet */
Magnus Dammbbd42352009-11-08 18:00:59 +0100661 res = tftp_get_option("tsize", &rbuf[2], len - 2);
662 if (res) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100663 G.size = bb_strtoull(res, NULL, 10);
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100664 if (G.size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100665 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100666 }
667 }
668# endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200669 if (CMD_GET(option_mask32)) {
670 /* We'll send ACK for OACK,
671 * such ACK has "block no" of 0 */
672 block_nr = 0;
673 }
674 continue;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000675 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200676 /* rfc2347:
677 * "An option not acknowledged by the server
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100678 * must be ignored by the client and server
679 * as if it were never requested." */
Denys Vlasenko53e2f382010-06-12 03:29:58 +0200680 if (blksize != TFTP_BLKSIZE_DEFAULT)
James Byrne69374872019-07-02 11:35:03 +0200681 bb_simple_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000682 blksize = TFTP_BLKSIZE_DEFAULT;
683 io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000684 }
685#endif
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000686 /* block_nr is already advanced to next block# we expect
687 * to get / block# we are about to send next time */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000688
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000689 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000690 if (recv_blk == block_nr) {
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100691 int sz;
692 if (local_fd == -1) {
693 local_fd = STDOUT_FILENO;
694 if (local_file)
695 local_fd = xopen(local_file, O_WRONLY | O_TRUNC | O_CREAT);
696 }
697 sz = full_write(local_fd, &rbuf[4], len - 4);
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000698 if (sz != len - 4) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200699 strcpy(G_error_pkt_str, bb_msg_write_error);
700 G_error_pkt_reason = ERR_WRITE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000701 goto send_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000702 }
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000703 if (sz != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000704 finished = 1;
Mark Whitley450736c2001-03-02 19:08:50 +0000705 }
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200706 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += sz;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000707 continue; /* send ACK */
Mark Whitley450736c2001-03-02 19:08:50 +0000708 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200709/* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
710#if 0
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000711 if (recv_blk == (block_nr - 1)) {
Paul Fox1d4c88c2005-07-20 19:49:15 +0000712 /* Server lost our TFTP_ACK. Resend it */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000713 block_nr = recv_blk;
Paul Fox1d4c88c2005-07-20 19:49:15 +0000714 continue;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000715 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200716#endif
Mark Whitley450736c2001-03-02 19:08:50 +0000717 }
718
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000719 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000720 /* did peer ACK our last DATA pkt? */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000721 if (recv_blk == (uint16_t) (block_nr - 1)) {
722 if (finished)
723 goto ret;
724 continue; /* send next block */
Mark Whitley450736c2001-03-02 19:08:50 +0000725 }
726 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000727 /* Awww... recv'd packet is not recognized! */
728 goto recv_again;
729 /* why recv_again? - rfc1123 says:
730 * "The sender (i.e., the side originating the DATA packets)
731 * must never resend the current DATA packet on receipt
732 * of a duplicate ACK".
733 * DATA pkts are resent ONLY on timeout.
Denys Vlasenko260bd212020-02-13 12:58:46 +0100734 * Thus "goto send_again" will be a bad mistake above.
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000735 * See:
736 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
737 */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000738 } /* end of "while (1)" */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000739 ret:
Denis Vlasenko2c916522007-01-12 14:57:37 +0000740 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000741 close(local_fd);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000742 close(socket_fd);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000743 free(xbuf);
744 free(rbuf);
745 }
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100746 if (!finished)
747 goto err;
748 return EXIT_SUCCESS;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000749
750 send_read_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200751 strcpy(G_error_pkt_str, bb_msg_read_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000752 send_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200753 if (G_error_pkt_str[0])
James Byrne69374872019-07-02 11:35:03 +0200754 bb_simple_error_msg(G_error_pkt_str);
Denys Vlasenko260bd212020-02-13 12:58:46 +0100755 send_err_pkt_nomsg:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200756 G.error_pkt[1] = TFTP_ERROR;
757 xsendto(socket_fd, G.error_pkt, 4 + 1 + strlen(G_error_pkt_str),
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000758 &peer_lsa->u.sa, peer_lsa->len);
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100759 err:
760 if (local_fd >= 0 && CMD_GET(option_mask32) && local_file)
761 unlink(local_file);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000762 return EXIT_FAILURE;
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000763#undef remote_file
Mark Whitley450736c2001-03-02 19:08:50 +0000764}
765
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000766#if ENABLE_TFTP
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000767int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000768int tftp_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley450736c2001-03-02 19:08:50 +0000769{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000770 len_and_sockaddr *peer_lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000771 const char *local_file = NULL;
772 const char *remote_file = NULL;
Magnus Dammbbd42352009-11-08 18:00:59 +0100773# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000774 const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000775 int blksize;
Magnus Dammbbd42352009-11-08 18:00:59 +0100776# endif
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000777 int result;
778 int port;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000779
780 INIT_G();
Mark Whitley450736c2001-03-02 19:08:50 +0000781
Denys Vlasenko3b8025f2019-06-09 11:12:02 +0200782 if (ENABLE_FEATURE_TFTP_HPA_COMPAT) {
783 /* As of 2019, common tftp client in Linux distros
784 * is one maintained by H. Peter Anvin:
785 * I've seen "tftp-hpa 5.2" version.
786 * Make the following command work:
787 * "tftp HOST [PORT] -m binary -c get/put FILE"
788 * by mangling it into "....... -g/-p -r FILE"
789 * and accepting and ignoring -m STR option.
790 */
791 unsigned i = 1;
792 while (argv[i]) {
Denys Vlasenko894f0a32019-06-09 12:41:17 +0200793 /* Accept not only -c, but also
794 * -lc, -cl, -llcclcllcc etc:
795 * "-l Literal mode (do not recognize HOST:FILE)"
796 * since we do not recognize that syntax anyway,
797 * might as well allow the option.
798 */
799 if (argv[i][0] == '-' && strchr(argv[i], 'c')
800 /*&& argv[i][1+strspn(argv[i]+1, "lc")] == '\0'*/
801 ) {
Denys Vlasenko3b8025f2019-06-09 11:12:02 +0200802 if (!argv[++i])
803 break;
804 if (strcmp(argv[i], "get") == 0) {
805 argv[i-1] = (char*)"-g";
806 argv[i] = (char*)"-r";
807 break;
808 }
809 if (strcmp(argv[i], "put") == 0) {
810 argv[i-1] = (char*)"-p";
811 argv[i] = (char*)"-r";
812 break;
813 }
814 }
815 i++;
816 }
817 }
818
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100819 getopt32(argv, "^"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000820 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200821 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:")
Denys Vlasenko3b8025f2019-06-09 11:12:02 +0200822 IF_FEATURE_TFTP_HPA_COMPAT("m:")
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200823 "\0"
824 /* -p or -g is mandatory, and they are mutually exclusive */
825 IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
826 IF_GETPUT("g--p:p--g:"),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000827 &local_file, &remote_file
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200828 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str)
Denys Vlasenko3b8025f2019-06-09 11:12:02 +0200829 IF_FEATURE_TFTP_HPA_COMPAT(, NULL)
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200830 );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000831 argv += optind;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000832
Magnus Dammbbd42352009-11-08 18:00:59 +0100833# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000834 /* Check if the blksize is valid:
835 * RFC2348 says between 8 and 65464 */
836 blksize = tftp_blksize_check(blksize_str, 65564);
837 if (blksize < 0) {
838 //bb_error_msg("bad block size");
Denis Vlasenko1d426652008-03-17 09:09:09 +0000839 return EXIT_FAILURE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000840 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100841# endif
Mark Whitley450736c2001-03-02 19:08:50 +0000842
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000843 if (remote_file) {
844 if (!local_file) {
845 const char *slash = strrchr(remote_file, '/');
846 local_file = slash ? slash + 1 : remote_file;
847 }
848 } else {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000849 remote_file = local_file;
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000850 }
851
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000852 /* Error if filename or host is not known */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000853 if (!remote_file || !argv[0])
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000854 bb_show_usage();
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000855
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000856 port = bb_lookup_port(argv[1], "udp", 69);
857 peer_lsa = xhost2sockaddr(argv[0], port);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000858
Magnus Dammbbd42352009-11-08 18:00:59 +0100859# if ENABLE_TFTP_DEBUG
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000860 fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000861 xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000862 remote_file, local_file);
Magnus Dammbbd42352009-11-08 18:00:59 +0100863# endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000864
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100865# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
866 G.file = remote_file;
867# endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000868 result = tftp_protocol(
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000869 NULL /*our_lsa*/, peer_lsa,
Denys Vlasenkoadc540f2020-02-13 15:27:23 +0100870 (LONE_DASH(local_file) ? NULL : local_file), remote_file
Magnus Damm8bd0af92009-11-08 18:03:09 +0100871 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000872 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000873 );
Magnus Damm8bd0af92009-11-08 18:03:09 +0100874 tftp_progress_done();
Mark Whitley450736c2001-03-02 19:08:50 +0000875
Denis Vlasenko000b9ba2006-10-05 23:12:49 +0000876 return result;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000877}
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000878#endif /* ENABLE_TFTP */
879
880#if ENABLE_TFTPD
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000881int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000882int tftpd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000883{
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000884 len_and_sockaddr *our_lsa;
885 len_and_sockaddr *peer_lsa;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200886 char *mode, *user_opt;
887 char *local_file = local_file;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000888 const char *error_msg;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000889 int opt, result, opcode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000890 IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100891 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000892
893 INIT_G();
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000894
895 our_lsa = get_sock_lsa(STDIN_FILENO);
Denis Vlasenko5a897632008-11-01 00:22:24 +0000896 if (!our_lsa) {
897 /* This is confusing:
898 *bb_error_msg_and_die("stdin is not a socket");
899 * Better: */
900 bb_show_usage();
901 /* Help text says that tftpd must be used as inetd service,
902 * which is by far the most usual cause of get_sock_lsa
903 * failure */
904 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000905 peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
906 peer_lsa->len = our_lsa->len;
907
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000908 /* Shifting to not collide with TFTP_OPTs */
Denys Vlasenko94ce1c02019-06-09 11:32:23 +0200909 opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8);
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000910 argv += optind;
Denys Vlasenko532e9612011-04-11 05:12:53 +0200911 if (opt & TFTPD_OPT_l) {
912 openlog(applet_name, LOG_PID, LOG_DAEMON);
913 logmode = LOGMODE_SYSLOG;
914 }
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200915 if (opt & TFTPD_OPT_u) {
916 /* Must be before xchroot */
917 G.pw = xgetpwnam(user_opt);
918 }
Denys Vlasenko4e3beb22012-03-08 00:28:52 +0100919 if (argv[0]) {
920 xchroot(argv[0]);
921 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000922
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200923 result = recv_from_to(STDIN_FILENO,
924 G.block_buf, sizeof(G.block_buf) + 1,
925 /* ^^^ sizeof+1 to reliably detect oversized input */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000926 0 /* flags */,
927 &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
928
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000929 error_msg = "malformed packet";
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200930 opcode = ntohs(*(uint16_t*)G.block_buf);
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200931 if (result < 4 || result > sizeof(G.block_buf)
932 /*|| G.block_buf[result-1] != '\0' - bug compatibility, see below */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000933 || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
934 IF_GETPUT(&&)
935 IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000936 )
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000937 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000938 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000939 }
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200940 /* Some HP PA-RISC firmware always sends fixed 516-byte requests,
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200941 * with trailing garbage.
942 * Support that by not requiring NUL to be the last byte (see above).
943 * To make strXYZ() ops safe, force NUL termination:
944 */
945 G.block_buf_tail[0] = '\0';
946
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200947 local_file = G.block_buf + 2;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000948 if (local_file[0] == '.' || strstr(local_file, "/.")) {
Denis Vlasenko0a0180c2008-03-19 23:37:32 +0000949 error_msg = "dot in file name";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000950 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000951 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000952 mode = local_file + strlen(local_file) + 1;
Denys Vlasenkofaf7c622011-10-06 17:19:09 +0200953 /* RFC 1350 says mode string is case independent */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200954 if (mode >= G.block_buf + result || strcasecmp(mode, "octet") != 0) {
Denys Vlasenko3b8025f2019-06-09 11:12:02 +0200955 error_msg = "mode is not 'octet'";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000956 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000957 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100958# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000959 {
960 char *res;
961 char *opt_str = mode + sizeof("octet");
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200962 int opt_len = G.block_buf + result - opt_str;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000963 if (opt_len > 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000964 res = tftp_get_option("blksize", opt_str, opt_len);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000965 if (res) {
966 blksize = tftp_blksize_check(res, 65564);
967 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200968 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000969 /* will just send error pkt */
970 goto do_proto;
971 }
972 }
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100973 if (opcode != TFTP_WRQ /* download? */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000974 /* did client ask us about file size? */
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100975 && tftp_get_option("tsize", opt_str, opt_len)
976 ) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100977 want_transfer_size = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100978 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000979 }
980 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100981# endif
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000982
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000983 if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000984 if (opt & TFTPD_OPT_r) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000985 /* This would mean "disk full" - not true */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200986 /*G_error_pkt_reason = ERR_WRITE;*/
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000987 error_msg = bb_msg_write_error;
988 goto err;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000989 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000990 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000991 } else {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000992 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000993 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000994
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200995 /* NB: if G_error_pkt_str or G_error_pkt_reason is set up,
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000996 * tftp_protocol() just sends one error pkt and returns */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000997
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000998 do_proto:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000999 close(STDIN_FILENO); /* close old, possibly wildcard socket */
1000 /* tftp_protocol() will create new one, bound to particular local IP */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +00001001 result = tftp_protocol(
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +00001002 our_lsa, peer_lsa,
Denys Vlasenko3b8025f2019-06-09 11:12:02 +02001003 local_file
1004 IF_TFTP(, NULL /*remote_file*/)
Magnus Damm8bd0af92009-11-08 18:03:09 +01001005 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001006 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +00001007 );
1008
1009 return result;
Denis Vlasenko403a5a22008-03-19 13:07:00 +00001010 err:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +02001011 strcpy(G_error_pkt_str, error_msg);
Denis Vlasenko403a5a22008-03-19 13:07:00 +00001012 goto do_proto;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +00001013}
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +00001014#endif /* ENABLE_TFTPD */
1015
Denis Vlasenko31635552007-01-20 16:54:19 +00001016#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */