blob: 4cd39186a0eafad166a1aca0c8a629e0e735d85d [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 Vlasenko4eed2c62017-07-18 22:01:24 +020022//config: bool "tftp (12 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 Vlasenko47367e12016-11-23 09:05:14 +010034//config:config TFTPD
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020035//config: bool "tftpd (10 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010036//config: default y
37//config: help
Denys Vlasenko68b653b2017-07-27 10:53:09 +020038//config: Trivial File Transfer Protocol server.
Denys Vlasenko72089cf2017-07-21 09:50:55 +020039//config: It expects that stdin is a datagram socket and a packet
40//config: is already pending on it. It will exit after one transfer.
41//config: In other words: it should be run from inetd in nowait mode,
42//config: or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
Denys Vlasenko47367e12016-11-23 09:05:14 +010043//config:
44//config:comment "Common options for tftp/tftpd"
45//config: depends on TFTP || TFTPD
46//config:
47//config:config FEATURE_TFTP_GET
48//config: bool "Enable 'tftp get' and/or tftpd upload code"
49//config: default y
50//config: depends on TFTP || TFTPD
51//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020052//config: Add support for the GET command within the TFTP client. This allows
53//config: a client to retrieve a file from a TFTP server.
54//config: Also enable upload support in tftpd, if tftpd is selected.
Denys Vlasenko47367e12016-11-23 09:05:14 +010055//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020056//config: Note: this option does _not_ make tftpd capable of download
57//config: (the usual operation people need from it)!
Denys Vlasenko47367e12016-11-23 09:05:14 +010058//config:
59//config:config FEATURE_TFTP_PUT
60//config: bool "Enable 'tftp put' and/or tftpd download code"
61//config: default y
62//config: depends on TFTP || TFTPD
63//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020064//config: Add support for the PUT command within the TFTP client. This allows
65//config: a client to transfer a file to a TFTP server.
66//config: Also enable download support in tftpd, if tftpd is selected.
Denys Vlasenko47367e12016-11-23 09:05:14 +010067//config:
68//config:config FEATURE_TFTP_BLOCKSIZE
69//config: bool "Enable 'blksize' and 'tsize' protocol options"
70//config: default y
71//config: depends on TFTP || TFTPD
72//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020073//config: Allow tftp to specify block size, and tftpd to understand
74//config: "blksize" and "tsize" options.
Denys Vlasenko47367e12016-11-23 09:05:14 +010075//config:
Denys Vlasenko47367e12016-11-23 09:05:14 +010076//config:config TFTP_DEBUG
77//config: bool "Enable debug"
78//config: default n
79//config: depends on TFTP || TFTPD
80//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020081//config: Make tftp[d] print debugging messages on stderr.
82//config: This is useful if you are diagnosing a bug in tftp[d].
Denys Vlasenko47367e12016-11-23 09:05:14 +010083
84//applet:#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
85//applet:IF_TFTP(APPLET(tftp, BB_DIR_USR_BIN, BB_SUID_DROP))
86//applet:IF_TFTPD(APPLET(tftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
87//applet:#endif
88
89//kbuild:lib-$(CONFIG_TFTP) += tftp.o
90//kbuild:lib-$(CONFIG_TFTPD) += tftp.o
Pere Orga5bc8c002011-04-11 03:29:49 +020091
92//usage:#define tftp_trivial_usage
93//usage: "[OPTIONS] HOST [PORT]"
94//usage:#define tftp_full_usage "\n\n"
95//usage: "Transfer a file from/to tftp server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020096//usage: "\n -l FILE Local FILE"
97//usage: "\n -r FILE Remote FILE"
98//usage: IF_FEATURE_TFTP_GET(
99//usage: "\n -g Get file"
100//usage: )
101//usage: IF_FEATURE_TFTP_PUT(
102//usage: "\n -p Put file"
103//usage: )
104//usage: IF_FEATURE_TFTP_BLOCKSIZE(
105//usage: "\n -b SIZE Transfer blocks of SIZE octets"
106//usage: )
107//usage:
108//usage:#define tftpd_trivial_usage
109//usage: "[-cr] [-u USER] [DIR]"
110//usage:#define tftpd_full_usage "\n\n"
111//usage: "Transfer a file on tftp client's request\n"
112//usage: "\n"
113//usage: "tftpd should be used as an inetd service.\n"
114//usage: "tftpd's line for inetd.conf:\n"
Denys Vlasenko532e9612011-04-11 05:12:53 +0200115//usage: " 69 dgram udp nowait root tftpd tftpd -l /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200116//usage: "It also can be ran from udpsvd:\n"
117//usage: " udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200118//usage: "\n -r Prohibit upload"
119//usage: "\n -c Allow file creation via upload"
120//usage: "\n -u Access files as USER"
Denys Vlasenko532e9612011-04-11 05:12:53 +0200121//usage: "\n -l Log to syslog (inetd mode requires this)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200122
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000123#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200124#include "common_bufsiz.h"
Denys Vlasenko88d3cfd2011-04-11 05:24:58 +0200125#include <syslog.h>
Mark Whitley450736c2001-03-02 19:08:50 +0000126
Denis Vlasenko31635552007-01-20 16:54:19 +0000127#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
128
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000129#define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */
130#define TFTP_BLKSIZE_DEFAULT_STR "512"
Denys Vlasenko5b1dfe62010-06-18 02:47:27 +0200131/* Was 50 ms but users asked to bump it up a bit */
132#define TFTP_TIMEOUT_MS 100
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000133#define TFTP_MAXTIMEOUT_MS 2000
134#define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000135
Glenn L McGrathad117d82001-10-05 04:40:37 +0000136/* opcodes we support */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000137#define TFTP_RRQ 1
138#define TFTP_WRQ 2
139#define TFTP_DATA 3
140#define TFTP_ACK 4
141#define TFTP_ERROR 5
142#define TFTP_OACK 6
143
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000144/* error codes sent over network (we use only 0, 1, 3 and 8) */
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000145/* generic (error message is included in the packet) */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000146#define ERR_UNSPEC 0
147#define ERR_NOFILE 1
148#define ERR_ACCESS 2
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000149/* disk full or allocation exceeded */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000150#define ERR_WRITE 3
151#define ERR_OP 4
152#define ERR_BAD_ID 5
153#define ERR_EXIST 6
154#define ERR_BAD_USER 7
155#define ERR_BAD_OPT 8
156
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000157/* masks coming from getopt32 */
158enum {
159 TFTP_OPT_GET = (1 << 0),
160 TFTP_OPT_PUT = (1 << 1),
161 /* pseudo option: if set, it's tftpd */
162 TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
163 TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
164 TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
165 TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
Denys Vlasenko532e9612011-04-11 05:12:53 +0200166 TFTPD_OPT_l = (1 << 11) * ENABLE_TFTPD,
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000167};
168
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000169#if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000170#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000171#define CMD_GET(cmd) 1
172#define CMD_PUT(cmd) 0
173#elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000174#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000175#define CMD_GET(cmd) 0
176#define CMD_PUT(cmd) 1
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000177#else
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000178#define IF_GETPUT(...) __VA_ARGS__
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000179#define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
180#define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000181#endif
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000182/* NB: in the code below
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000183 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000184 */
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000185
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000186
187struct globals {
188 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
189 uint8_t error_pkt[4 + 32];
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200190 struct passwd *pw;
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200191 /* Used in tftpd_main() for initial packet */
192 /* Some HP PA-RISC firmware always sends fixed 516-byte requests */
193 char block_buf[516];
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200194 char block_buf_tail[1];
Magnus Damm8bd0af92009-11-08 18:03:09 +0100195#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
196 off_t pos;
197 off_t size;
198 const char *file;
199 bb_progress_t pmt;
200#endif
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100201} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200202#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenkoab3964d2015-10-13 14:50:20 +0200203#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200204 setup_common_bufsiz(); \
Denys Vlasenkoab3964d2015-10-13 14:50:20 +0200205 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
206} while (0)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000207
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200208#define G_error_pkt_reason (G.error_pkt[3])
209#define G_error_pkt_str ((char*)(G.error_pkt + 4))
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000210
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100211#if ENABLE_FEATURE_TFTP_PROGRESS_BAR && ENABLE_FEATURE_TFTP_BLOCKSIZE
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100212static void tftp_progress_update(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100213{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100214 bb_progress_update(&G.pmt, 0, G.pos, G.size);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100215}
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100216static void tftp_progress_init(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100217{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100218 bb_progress_init(&G.pmt, G.file);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100219 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100220}
221static void tftp_progress_done(void)
222{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100223 if (is_bb_progress_inited(&G.pmt)) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100224 tftp_progress_update();
225 bb_putchar_stderr('\n');
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100226 bb_progress_free(&G.pmt);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100227 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100228}
229#else
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100230# define tftp_progress_update() ((void)0)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100231# define tftp_progress_init() ((void)0)
232# define tftp_progress_done() ((void)0)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100233#endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000234
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000235#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Glenn L McGrathad117d82001-10-05 04:40:37 +0000236
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000237static int tftp_blksize_check(const char *blksize_str, int maxsize)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000238{
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000239 /* Check if the blksize is valid:
Glenn L McGrathad117d82001-10-05 04:40:37 +0000240 * RFC2348 says between 8 and 65464,
241 * but our implementation makes it impossible
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000242 * to use blksizes smaller than 22 octets. */
243 unsigned blksize = bb_strtou(blksize_str, NULL, 10);
244 if (errno
245 || (blksize < 24) || (blksize > maxsize)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000246 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000247 bb_error_msg("bad blocksize '%s'", blksize_str);
248 return -1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000249 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100250# if ENABLE_TFTP_DEBUG
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000251 bb_error_msg("using blksize %u", blksize);
Magnus Dammbbd42352009-11-08 18:00:59 +0100252# endif
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000253 return blksize;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000254}
255
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000256static char *tftp_get_option(const char *option, char *buf, int len)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000257{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000258 int opt_val = 0;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000259 int opt_found = 0;
260 int k;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000261
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000262 /* buf points to:
263 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
264
Glenn L McGrathad117d82001-10-05 04:40:37 +0000265 while (len > 0) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000266 /* Make sure options are terminated correctly */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000267 for (k = 0; k < len; k++) {
268 if (buf[k] == '\0') {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000269 goto nul_found;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000270 }
271 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000272 return NULL;
273 nul_found:
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000274 if (opt_val == 0) { /* it's "name" part */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000275 if (strcasecmp(buf, option) == 0) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000276 opt_found = 1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000277 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000278 } else if (opt_found) {
279 return buf;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000280 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000281
Glenn L McGrathad117d82001-10-05 04:40:37 +0000282 k++;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000283 buf += k;
284 len -= k;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000285 opt_val ^= 1;
286 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000287
Glenn L McGrathad117d82001-10-05 04:40:37 +0000288 return NULL;
289}
290
291#endif
292
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000293static int tftp_protocol(
Magnus Dammbbd42352009-11-08 18:00:59 +0100294 /* NULL if tftp, !NULL if tftpd: */
295 len_and_sockaddr *our_lsa,
Denis Vlasenko0850cda2007-02-07 23:20:32 +0000296 len_and_sockaddr *peer_lsa,
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000297 const char *local_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000298 IF_TFTP(, const char *remote_file)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000299#if !ENABLE_TFTP
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200300# define remote_file NULL
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000301#endif
Magnus Dammbbd42352009-11-08 18:00:59 +0100302 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100303 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
Magnus Dammbbd42352009-11-08 18:00:59 +0100304 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
305{
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000306#if !ENABLE_FEATURE_TFTP_BLOCKSIZE
307 enum { blksize = TFTP_BLKSIZE_DEFAULT };
308#endif
309
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000310 struct pollfd pfd[1];
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000311#define socket_fd (pfd[0].fd)
Bernhard Reutner-Fischer62f98562006-06-10 14:32:56 +0000312 int len;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000313 int send_len;
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200314 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000315 smallint finished = 0;
316 uint16_t opcode;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000317 uint16_t block_nr;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000318 uint16_t recv_blk;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000319 int open_mode, local_fd;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000320 int retries, waittime_ms;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000321 int io_bufsize = blksize + 4;
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000322 char *cp;
Eric Andersen744a1942001-11-10 11:16:39 +0000323 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200324 * size varies meaning BUFFERS_GO_ON_STACK would fail.
325 *
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200326 * We must keep the transmit and receive buffers separate
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200327 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
328 */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000329 char *xbuf = xmalloc(io_bufsize);
330 char *rbuf = xmalloc(io_bufsize);
Mark Whitley450736c2001-03-02 19:08:50 +0000331
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000332 socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
333 setsockopt_reuseaddr(socket_fd);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000334
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200335 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000336 /* Create a socket which is:
337 * 1. bound to IP:port peer sent 1st datagram to,
338 * 2. connected to peer's IP:port
339 * This way we will answer from the IP:port peer
340 * expects, will not get any other packets on
341 * the socket, and also plain read/write will work. */
342 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
343 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000344
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000345 /* Is there an error already? Send pkt and bail out */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200346 if (G_error_pkt_reason || G_error_pkt_str[0])
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000347 goto send_err_pkt;
348
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200349 if (G.pw) {
350 change_identity(G.pw); /* initgroups, setgid, setuid */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000351 }
352 }
353
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200354 /* Prepare open mode */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000355 if (CMD_PUT(option_mask32)) {
356 open_mode = O_RDONLY;
357 } else {
358 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
359#if ENABLE_TFTPD
360 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
361 /* tftpd without -c */
362 open_mode = O_WRONLY | O_TRUNC;
363 }
364#endif
365 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200366
Denys Vlasenkobac9f032009-07-25 01:56:23 +0200367 /* Examples of network traffic.
368 * Note two cases when ACKs with block# of 0 are sent.
369 *
370 * Download without options:
371 * tftp -> "\0\1FILENAME\0octet\0"
372 * "\0\3\0\1FILEDATA..." <- tftpd
373 * tftp -> "\0\4\0\1"
374 * ...
375 * Download with option of blksize 16384:
376 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
377 * "\0\6blksize\00016384\0" <- tftpd
378 * tftp -> "\0\4\0\0"
379 * "\0\3\0\1FILEDATA..." <- tftpd
380 * tftp -> "\0\4\0\1"
381 * ...
382 * Upload without options:
383 * tftp -> "\0\2FILENAME\0octet\0"
384 * "\0\4\0\0" <- tftpd
385 * tftp -> "\0\3\0\1FILEDATA..."
386 * "\0\4\0\1" <- tftpd
387 * ...
388 * Upload with option of blksize 16384:
389 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
390 * "\0\6blksize\00016384\0" <- tftpd
391 * tftp -> "\0\3\0\1FILEDATA..."
392 * "\0\4\0\1" <- tftpd
393 * ...
394 */
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200395 block_nr = 1;
396 cp = xbuf + 2;
397
398 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
399 /* Open file (must be after changing user) */
Denys Vlasenko4b061462010-02-02 01:01:40 +0100400 local_fd = open(local_file, open_mode, 0666);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000401 if (local_fd < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200402 G_error_pkt_reason = ERR_NOFILE;
403 strcpy(G_error_pkt_str, "can't open file");
Denis Vlasenko7a601332008-03-19 13:24:13 +0000404 goto send_err_pkt;
405 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000406/* gcc 4.3.1 would NOT optimize it out as it should! */
407#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100408 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000409 /* Create and send OACK packet. */
410 /* For the download case, block_nr is still 1 -
411 * we expect 1st ACK from peer to be for (block_nr-1),
412 * that is, for "block 0" which is our OACK pkt */
413 opcode = TFTP_OACK;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000414 goto add_blksize_opt;
415 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000416#endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200417 if (CMD_GET(option_mask32)) {
418 /* It's upload and we don't send OACK.
419 * We must ACK 1st packet (with filename)
420 * as if it is "block 0" */
421 block_nr = 0;
422 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200423 } else { /* tftp */
424 /* Open file (must be after changing user) */
425 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
426 if (NOT_LONE_DASH(local_file))
427 local_fd = xopen(local_file, open_mode);
428/* Removing #if, or using if() statement instead of #if may lead to
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000429 * "warning: null argument where non-null required": */
430#if ENABLE_TFTP
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000431 /* tftp */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000432
433 /* We can't (and don't really need to) bind the socket:
434 * we don't know from which local IP datagrams will be sent,
435 * but kernel will pick the same IP every time (unless routing
436 * table is changed), thus peer will see dgrams consistently
437 * coming from the same IP.
438 * We would like to connect the socket, but since peer's
439 * UDP code can be less perfect than ours, _peer's_ IP:port
440 * in replies may differ from IP:port we used to send
441 * our first packet. We can connect() only when we get
442 * first reply. */
443
444 /* build opcode */
445 opcode = TFTP_WRQ;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000446 if (CMD_GET(option_mask32)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000447 opcode = TFTP_RRQ;
448 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000449 /* add filename and mode */
450 /* fill in packet if the filename fits into xbuf */
451 len = strlen(remote_file) + 1;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000452 if (2 + len + sizeof("octet") >= io_bufsize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000453 bb_error_msg("remote filename is too long");
454 goto ret;
455 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000456 strcpy(cp, remote_file);
457 cp += len;
Magnus Dammbbd42352009-11-08 18:00:59 +0100458 /* add "mode" part of the packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000459 strcpy(cp, "octet");
460 cp += sizeof("octet");
461
Magnus Dammbbd42352009-11-08 18:00:59 +0100462# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100463 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000464 goto send_pkt;
465
Magnus Dammbbd42352009-11-08 18:00:59 +0100466 /* Need to add option to pkt */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100467 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000468 bb_error_msg("remote filename is too long");
469 goto ret;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000470 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200471 expect_OACK = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100472# endif
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000473#endif /* ENABLE_TFTP */
474
Denis Vlasenko31e12862008-06-16 07:32:40 +0000475#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000476 add_blksize_opt:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000477 if (blksize != TFTP_BLKSIZE_DEFAULT) {
478 /* add "blksize", <nul>, blksize, <nul> */
479 strcpy(cp, "blksize");
480 cp += sizeof("blksize");
481 cp += snprintf(cp, 6, "%d", blksize) + 1;
482 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100483 if (want_transfer_size) {
Magnus Dammbbd42352009-11-08 18:00:59 +0100484 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
485 /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
486 * and this makes server to send "tsize" option with the size */
487 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
488 /* if tftpd and downloading, we are answering to client's request */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100489 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
Magnus Dammbbd42352009-11-08 18:00:59 +0100490 struct stat st;
491 strcpy(cp, "tsize");
492 cp += sizeof("tsize");
493 st.st_size = 0;
494 fstat(local_fd, &st);
495 cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
Magnus Damm8bd0af92009-11-08 18:03:09 +0100496# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Magnus Dammbbd42352009-11-08 18:00:59 +0100497 /* Save for progress bar. If 0 (tftp downloading),
498 * we look at server's reply later */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100499 G.size = st.st_size;
500 if (remote_file && st.st_size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100501 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100502# endif
503 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000504#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000505 /* First packet is built, so skip packet generation */
506 goto send_pkt;
507 }
Mark Whitley450736c2001-03-02 19:08:50 +0000508
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000509 /* Using mostly goto's - continue/break will be less clear
510 * in where we actually jump to */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000511 while (1) {
512 /* Build ACK or DATA */
513 cp = xbuf + 2;
514 *((uint16_t*)cp) = htons(block_nr);
515 cp += 2;
516 block_nr++;
517 opcode = TFTP_ACK;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000518 if (CMD_PUT(option_mask32)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000519 opcode = TFTP_DATA;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000520 len = full_read(local_fd, cp, blksize);
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000521 if (len < 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000522 goto send_read_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000523 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000524 if (len != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000525 finished = 1;
526 }
527 cp += len;
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200528 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += len;)
Mark Whitley450736c2001-03-02 19:08:50 +0000529 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000530 send_pkt:
531 /* Send packet */
532 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000533 send_len = cp - xbuf;
534 /* NB: send_len value is preserved in code below
535 * for potential resend */
Paul Fox40f0bcf2007-09-06 17:52:22 +0000536
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200537 retries = TFTP_NUM_RETRIES; /* re-initialize */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000538 waittime_ms = TFTP_TIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000539
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000540 send_again:
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000541#if ENABLE_TFTP_DEBUG
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000542 fprintf(stderr, "sending %u bytes\n", send_len);
543 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
544 fprintf(stderr, "%02x ", (unsigned char) *cp);
545 fprintf(stderr, "\n");
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000546#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000547 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100548
549#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100550 if (is_bb_progress_inited(&G.pmt))
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100551 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100552#endif
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000553 /* Was it final ACK? then exit */
554 if (finished && (opcode == TFTP_ACK))
555 goto ret;
Mark Whitley450736c2001-03-02 19:08:50 +0000556
Denis Vlasenko2c916522007-01-12 14:57:37 +0000557 recv_again:
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000558 /* Receive packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000559 /*pfd[0].fd = socket_fd;*/
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000560 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000561 switch (safe_poll(pfd, 1, waittime_ms)) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000562 default:
563 /*bb_perror_msg("poll"); - done in safe_poll */
564 goto ret;
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000565 case 0:
Paul Fox40f0bcf2007-09-06 17:52:22 +0000566 retries--;
567 if (retries == 0) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100568 tftp_progress_done();
Paul Fox40f0bcf2007-09-06 17:52:22 +0000569 bb_error_msg("timeout");
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000570 goto ret; /* no err packet sent */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000571 }
Paul Fox40f0bcf2007-09-06 17:52:22 +0000572
573 /* exponential backoff with limit */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000574 waittime_ms += waittime_ms/2;
575 if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
576 waittime_ms = TFTP_MAXTIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000577 }
578
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000579 goto send_again; /* resend last sent pkt */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000580 case 1:
581 if (!our_lsa) {
582 /* tftp (not tftpd!) receiving 1st packet */
583 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
584 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
585 &peer_lsa->u.sa, &peer_lsa->len);
586 /* Our first dgram went to port 69
587 * but reply may come from different one.
588 * Remember and use this new port (and IP) */
589 if (len >= 0)
590 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
591 } else {
592 /* tftpd, or not the very first packet:
593 * socket is connect()ed, can just read from it. */
594 /* Don't full_read()!
595 * This is not TCP, one read == one pkt! */
596 len = safe_read(socket_fd, rbuf, io_bufsize);
597 }
598 if (len < 0) {
599 goto send_read_err_pkt;
600 }
601 if (len < 4) { /* too small? */
602 goto recv_again;
603 }
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000604 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000605
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000606 /* Process recv'ed packet */
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000607 opcode = ntohs( ((uint16_t*)rbuf)[0] );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000608 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000609#if ENABLE_TFTP_DEBUG
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000610 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000611#endif
Glenn L McGrathad117d82001-10-05 04:40:37 +0000612 if (opcode == TFTP_ERROR) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000613 static const char errcode_str[] ALIGN1 =
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000614 "\0"
615 "file not found\0"
616 "access violation\0"
617 "disk full\0"
618 "bad operation\0"
619 "unknown transfer id\0"
620 "file already exists\0"
621 "no such user\0"
622 "bad option";
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000623
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000624 const char *msg = "";
Glenn L McGrathad117d82001-10-05 04:40:37 +0000625
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000626 if (len > 4 && rbuf[4] != '\0') {
Denis Vlasenko10f7dd12006-12-17 01:14:08 +0000627 msg = &rbuf[4];
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000628 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
629 } else if (recv_blk <= 8) {
630 msg = nth_string(errcode_str, recv_blk);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000631 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000632 bb_error_msg("server error: (%u) %s", recv_blk, msg);
633 goto ret;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000634 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000635
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000636#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200637 if (expect_OACK) {
638 expect_OACK = 0;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000639 if (opcode == TFTP_OACK) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000640 /* server seems to support options */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000641 char *res;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000642
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000643 res = tftp_get_option("blksize", &rbuf[2], len - 2);
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000644 if (res) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000645 blksize = tftp_blksize_check(res, blksize);
646 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200647 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000648 goto send_err_pkt;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000649 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000650 io_bufsize = blksize + 4;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000651 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100652# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100653 if (remote_file && G.size == 0) { /* if we don't know it yet */
Magnus Dammbbd42352009-11-08 18:00:59 +0100654 res = tftp_get_option("tsize", &rbuf[2], len - 2);
655 if (res) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100656 G.size = bb_strtoull(res, NULL, 10);
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100657 if (G.size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100658 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100659 }
660 }
661# endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200662 if (CMD_GET(option_mask32)) {
663 /* We'll send ACK for OACK,
664 * such ACK has "block no" of 0 */
665 block_nr = 0;
666 }
667 continue;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000668 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200669 /* rfc2347:
670 * "An option not acknowledged by the server
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100671 * must be ignored by the client and server
672 * as if it were never requested." */
Denys Vlasenko53e2f382010-06-12 03:29:58 +0200673 if (blksize != TFTP_BLKSIZE_DEFAULT)
674 bb_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000675 blksize = TFTP_BLKSIZE_DEFAULT;
676 io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000677 }
678#endif
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000679 /* block_nr is already advanced to next block# we expect
680 * to get / block# we are about to send next time */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000681
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000682 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000683 if (recv_blk == block_nr) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000684 int sz = full_write(local_fd, &rbuf[4], len - 4);
685 if (sz != len - 4) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200686 strcpy(G_error_pkt_str, bb_msg_write_error);
687 G_error_pkt_reason = ERR_WRITE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000688 goto send_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000689 }
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000690 if (sz != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000691 finished = 1;
Mark Whitley450736c2001-03-02 19:08:50 +0000692 }
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200693 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += sz;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000694 continue; /* send ACK */
Mark Whitley450736c2001-03-02 19:08:50 +0000695 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200696/* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
697#if 0
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000698 if (recv_blk == (block_nr - 1)) {
Paul Fox1d4c88c2005-07-20 19:49:15 +0000699 /* Server lost our TFTP_ACK. Resend it */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000700 block_nr = recv_blk;
Paul Fox1d4c88c2005-07-20 19:49:15 +0000701 continue;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000702 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200703#endif
Mark Whitley450736c2001-03-02 19:08:50 +0000704 }
705
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000706 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000707 /* did peer ACK our last DATA pkt? */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000708 if (recv_blk == (uint16_t) (block_nr - 1)) {
709 if (finished)
710 goto ret;
711 continue; /* send next block */
Mark Whitley450736c2001-03-02 19:08:50 +0000712 }
713 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000714 /* Awww... recv'd packet is not recognized! */
715 goto recv_again;
716 /* why recv_again? - rfc1123 says:
717 * "The sender (i.e., the side originating the DATA packets)
718 * must never resend the current DATA packet on receipt
719 * of a duplicate ACK".
720 * DATA pkts are resent ONLY on timeout.
721 * Thus "goto send_again" will ba a bad mistake above.
722 * See:
723 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
724 */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000725 } /* end of "while (1)" */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000726 ret:
Denis Vlasenko2c916522007-01-12 14:57:37 +0000727 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000728 close(local_fd);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000729 close(socket_fd);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000730 free(xbuf);
731 free(rbuf);
732 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000733 return finished == 0; /* returns 1 on failure */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000734
735 send_read_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200736 strcpy(G_error_pkt_str, bb_msg_read_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000737 send_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200738 if (G_error_pkt_str[0])
739 bb_error_msg("%s", G_error_pkt_str);
740 G.error_pkt[1] = TFTP_ERROR;
741 xsendto(socket_fd, G.error_pkt, 4 + 1 + strlen(G_error_pkt_str),
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000742 &peer_lsa->u.sa, peer_lsa->len);
743 return EXIT_FAILURE;
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000744#undef remote_file
Mark Whitley450736c2001-03-02 19:08:50 +0000745}
746
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000747#if ENABLE_TFTP
748
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000749int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000750int tftp_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley450736c2001-03-02 19:08:50 +0000751{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000752 len_and_sockaddr *peer_lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000753 const char *local_file = NULL;
754 const char *remote_file = NULL;
Magnus Dammbbd42352009-11-08 18:00:59 +0100755# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000756 const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000757 int blksize;
Magnus Dammbbd42352009-11-08 18:00:59 +0100758# endif
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000759 int result;
760 int port;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000761 IF_GETPUT(int opt;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000762
763 INIT_G();
Mark Whitley450736c2001-03-02 19:08:50 +0000764
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200765 IF_GETPUT(opt =) getopt32(argv, "^"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000766 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200767 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:")
768 "\0"
769 /* -p or -g is mandatory, and they are mutually exclusive */
770 IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
771 IF_GETPUT("g--p:p--g:"),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000772 &local_file, &remote_file
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200773 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str)
774 );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000775 argv += optind;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000776
Magnus Dammbbd42352009-11-08 18:00:59 +0100777# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000778 /* Check if the blksize is valid:
779 * RFC2348 says between 8 and 65464 */
780 blksize = tftp_blksize_check(blksize_str, 65564);
781 if (blksize < 0) {
782 //bb_error_msg("bad block size");
Denis Vlasenko1d426652008-03-17 09:09:09 +0000783 return EXIT_FAILURE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000784 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100785# endif
Mark Whitley450736c2001-03-02 19:08:50 +0000786
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000787 if (remote_file) {
788 if (!local_file) {
789 const char *slash = strrchr(remote_file, '/');
790 local_file = slash ? slash + 1 : remote_file;
791 }
792 } else {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000793 remote_file = local_file;
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000794 }
795
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000796 /* Error if filename or host is not known */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000797 if (!remote_file || !argv[0])
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000798 bb_show_usage();
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000799
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000800 port = bb_lookup_port(argv[1], "udp", 69);
801 peer_lsa = xhost2sockaddr(argv[0], port);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000802
Magnus Dammbbd42352009-11-08 18:00:59 +0100803# if ENABLE_TFTP_DEBUG
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000804 fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000805 xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000806 remote_file, local_file);
Magnus Dammbbd42352009-11-08 18:00:59 +0100807# endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000808
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100809# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
810 G.file = remote_file;
811# endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000812 result = tftp_protocol(
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000813 NULL /*our_lsa*/, peer_lsa,
814 local_file, remote_file
Magnus Damm8bd0af92009-11-08 18:03:09 +0100815 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000816 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000817 );
Magnus Damm8bd0af92009-11-08 18:03:09 +0100818 tftp_progress_done();
Mark Whitley450736c2001-03-02 19:08:50 +0000819
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000820 if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000821 unlink(local_file);
Eric Andersena66a43e2002-04-13 09:30:25 +0000822 }
Denis Vlasenko000b9ba2006-10-05 23:12:49 +0000823 return result;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000824}
Denis Vlasenko31635552007-01-20 16:54:19 +0000825
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000826#endif /* ENABLE_TFTP */
827
828#if ENABLE_TFTPD
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000829int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000830int tftpd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000831{
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000832 len_and_sockaddr *our_lsa;
833 len_and_sockaddr *peer_lsa;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200834 char *mode, *user_opt;
835 char *local_file = local_file;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000836 const char *error_msg;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000837 int opt, result, opcode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000838 IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100839 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000840
841 INIT_G();
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000842
843 our_lsa = get_sock_lsa(STDIN_FILENO);
Denis Vlasenko5a897632008-11-01 00:22:24 +0000844 if (!our_lsa) {
845 /* This is confusing:
846 *bb_error_msg_and_die("stdin is not a socket");
847 * Better: */
848 bb_show_usage();
849 /* Help text says that tftpd must be used as inetd service,
850 * which is by far the most usual cause of get_sock_lsa
851 * failure */
852 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000853 peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
854 peer_lsa->len = our_lsa->len;
855
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000856 /* Shifting to not collide with TFTP_OPTs */
Denys Vlasenko532e9612011-04-11 05:12:53 +0200857 opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8);
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000858 argv += optind;
Denys Vlasenko532e9612011-04-11 05:12:53 +0200859 if (opt & TFTPD_OPT_l) {
860 openlog(applet_name, LOG_PID, LOG_DAEMON);
861 logmode = LOGMODE_SYSLOG;
862 }
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200863 if (opt & TFTPD_OPT_u) {
864 /* Must be before xchroot */
865 G.pw = xgetpwnam(user_opt);
866 }
Denys Vlasenko4e3beb22012-03-08 00:28:52 +0100867 if (argv[0]) {
868 xchroot(argv[0]);
869 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000870
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200871 result = recv_from_to(STDIN_FILENO,
872 G.block_buf, sizeof(G.block_buf) + 1,
873 /* ^^^ sizeof+1 to reliably detect oversized input */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000874 0 /* flags */,
875 &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
876
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000877 error_msg = "malformed packet";
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200878 opcode = ntohs(*(uint16_t*)G.block_buf);
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200879 if (result < 4 || result > sizeof(G.block_buf)
880 /*|| G.block_buf[result-1] != '\0' - bug compatibility, see below */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000881 || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
882 IF_GETPUT(&&)
883 IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000884 )
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000885 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000886 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000887 }
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200888 /* Some HP PA-RISC firmware always sends fixed 516-byte requests,
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200889 * with trailing garbage.
890 * Support that by not requiring NUL to be the last byte (see above).
891 * To make strXYZ() ops safe, force NUL termination:
892 */
893 G.block_buf_tail[0] = '\0';
894
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200895 local_file = G.block_buf + 2;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000896 if (local_file[0] == '.' || strstr(local_file, "/.")) {
Denis Vlasenko0a0180c2008-03-19 23:37:32 +0000897 error_msg = "dot in file name";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000898 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000899 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000900 mode = local_file + strlen(local_file) + 1;
Denys Vlasenkofaf7c622011-10-06 17:19:09 +0200901 /* RFC 1350 says mode string is case independent */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200902 if (mode >= G.block_buf + result || strcasecmp(mode, "octet") != 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000903 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000904 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100905# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000906 {
907 char *res;
908 char *opt_str = mode + sizeof("octet");
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200909 int opt_len = G.block_buf + result - opt_str;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000910 if (opt_len > 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000911 res = tftp_get_option("blksize", opt_str, opt_len);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000912 if (res) {
913 blksize = tftp_blksize_check(res, 65564);
914 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200915 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000916 /* will just send error pkt */
917 goto do_proto;
918 }
919 }
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100920 if (opcode != TFTP_WRQ /* download? */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000921 /* did client ask us about file size? */
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100922 && tftp_get_option("tsize", opt_str, opt_len)
923 ) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100924 want_transfer_size = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100925 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000926 }
927 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100928# endif
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000929
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000930 if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000931 if (opt & TFTPD_OPT_r) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000932 /* This would mean "disk full" - not true */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200933 /*G_error_pkt_reason = ERR_WRITE;*/
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000934 error_msg = bb_msg_write_error;
935 goto err;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000936 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000937 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000938 } else {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000939 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000940 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000941
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200942 /* NB: if G_error_pkt_str or G_error_pkt_reason is set up,
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000943 * tftp_protocol() just sends one error pkt and returns */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000944
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000945 do_proto:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000946 close(STDIN_FILENO); /* close old, possibly wildcard socket */
947 /* tftp_protocol() will create new one, bound to particular local IP */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000948 result = tftp_protocol(
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000949 our_lsa, peer_lsa,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000950 local_file IF_TFTP(, NULL /*remote_file*/)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100951 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000952 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000953 );
954
955 return result;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000956 err:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200957 strcpy(G_error_pkt_str, error_msg);
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000958 goto do_proto;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000959}
960
961#endif /* ENABLE_TFTPD */
962
Denis Vlasenko31635552007-01-20 16:54:19 +0000963#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */