blob: 5ebd221059f8b4782ba3b922d8ade21f2f4ca089 [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 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:
Denys Vlasenko47367e12016-11-23 09:05:14 +010044//config:config FEATURE_TFTP_GET
45//config: bool "Enable 'tftp get' and/or tftpd upload code"
46//config: default y
47//config: depends on TFTP || TFTPD
48//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020049//config: Add support for the GET command within the TFTP client. This allows
50//config: a client to retrieve a file from a TFTP server.
51//config: Also enable upload support in tftpd, if tftpd is selected.
Denys Vlasenko47367e12016-11-23 09:05:14 +010052//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020053//config: Note: this option does _not_ make tftpd capable of download
54//config: (the usual operation people need from it)!
Denys Vlasenko47367e12016-11-23 09:05:14 +010055//config:
56//config:config FEATURE_TFTP_PUT
57//config: bool "Enable 'tftp put' and/or tftpd download code"
58//config: default y
59//config: depends on TFTP || TFTPD
60//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020061//config: Add support for the PUT command within the TFTP client. This allows
62//config: a client to transfer a file to a TFTP server.
63//config: Also enable download support in tftpd, if tftpd is selected.
Denys Vlasenko47367e12016-11-23 09:05:14 +010064//config:
65//config:config FEATURE_TFTP_BLOCKSIZE
66//config: bool "Enable 'blksize' and 'tsize' protocol options"
67//config: default y
68//config: depends on TFTP || TFTPD
69//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020070//config: Allow tftp to specify block size, and tftpd to understand
71//config: "blksize" and "tsize" options.
Denys Vlasenko47367e12016-11-23 09:05:14 +010072//config:
Denys Vlasenko47367e12016-11-23 09:05:14 +010073//config:config TFTP_DEBUG
74//config: bool "Enable debug"
75//config: default n
76//config: depends on TFTP || TFTPD
77//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020078//config: Make tftp[d] print debugging messages on stderr.
79//config: This is useful if you are diagnosing a bug in tftp[d].
Denys Vlasenko47367e12016-11-23 09:05:14 +010080
81//applet:#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
82//applet:IF_TFTP(APPLET(tftp, BB_DIR_USR_BIN, BB_SUID_DROP))
83//applet:IF_TFTPD(APPLET(tftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
84//applet:#endif
85
86//kbuild:lib-$(CONFIG_TFTP) += tftp.o
87//kbuild:lib-$(CONFIG_TFTPD) += tftp.o
Pere Orga5bc8c002011-04-11 03:29:49 +020088
89//usage:#define tftp_trivial_usage
90//usage: "[OPTIONS] HOST [PORT]"
91//usage:#define tftp_full_usage "\n\n"
92//usage: "Transfer a file from/to tftp server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020093//usage: "\n -l FILE Local FILE"
94//usage: "\n -r FILE Remote FILE"
95//usage: IF_FEATURE_TFTP_GET(
96//usage: "\n -g Get file"
97//usage: )
98//usage: IF_FEATURE_TFTP_PUT(
99//usage: "\n -p Put file"
100//usage: )
101//usage: IF_FEATURE_TFTP_BLOCKSIZE(
102//usage: "\n -b SIZE Transfer blocks of SIZE octets"
103//usage: )
104//usage:
105//usage:#define tftpd_trivial_usage
106//usage: "[-cr] [-u USER] [DIR]"
107//usage:#define tftpd_full_usage "\n\n"
108//usage: "Transfer a file on tftp client's request\n"
109//usage: "\n"
110//usage: "tftpd should be used as an inetd service.\n"
111//usage: "tftpd's line for inetd.conf:\n"
Denys Vlasenko532e9612011-04-11 05:12:53 +0200112//usage: " 69 dgram udp nowait root tftpd tftpd -l /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200113//usage: "It also can be ran from udpsvd:\n"
114//usage: " udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200115//usage: "\n -r Prohibit upload"
116//usage: "\n -c Allow file creation via upload"
117//usage: "\n -u Access files as USER"
Denys Vlasenko532e9612011-04-11 05:12:53 +0200118//usage: "\n -l Log to syslog (inetd mode requires this)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200119
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000120#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200121#include "common_bufsiz.h"
Denys Vlasenko88d3cfd2011-04-11 05:24:58 +0200122#include <syslog.h>
Mark Whitley450736c2001-03-02 19:08:50 +0000123
Denis Vlasenko31635552007-01-20 16:54:19 +0000124#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
125
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000126#define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */
127#define TFTP_BLKSIZE_DEFAULT_STR "512"
Denys Vlasenko5b1dfe62010-06-18 02:47:27 +0200128/* Was 50 ms but users asked to bump it up a bit */
129#define TFTP_TIMEOUT_MS 100
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000130#define TFTP_MAXTIMEOUT_MS 2000
131#define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000132
Glenn L McGrathad117d82001-10-05 04:40:37 +0000133/* opcodes we support */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000134#define TFTP_RRQ 1
135#define TFTP_WRQ 2
136#define TFTP_DATA 3
137#define TFTP_ACK 4
138#define TFTP_ERROR 5
139#define TFTP_OACK 6
140
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000141/* error codes sent over network (we use only 0, 1, 3 and 8) */
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000142/* generic (error message is included in the packet) */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000143#define ERR_UNSPEC 0
144#define ERR_NOFILE 1
145#define ERR_ACCESS 2
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000146/* disk full or allocation exceeded */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000147#define ERR_WRITE 3
148#define ERR_OP 4
149#define ERR_BAD_ID 5
150#define ERR_EXIST 6
151#define ERR_BAD_USER 7
152#define ERR_BAD_OPT 8
153
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000154/* masks coming from getopt32 */
155enum {
156 TFTP_OPT_GET = (1 << 0),
157 TFTP_OPT_PUT = (1 << 1),
158 /* pseudo option: if set, it's tftpd */
159 TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
160 TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
161 TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
162 TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
Denys Vlasenko532e9612011-04-11 05:12:53 +0200163 TFTPD_OPT_l = (1 << 11) * ENABLE_TFTPD,
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000164};
165
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000166#if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000167#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000168#define CMD_GET(cmd) 1
169#define CMD_PUT(cmd) 0
170#elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000171#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000172#define CMD_GET(cmd) 0
173#define CMD_PUT(cmd) 1
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000174#else
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000175#define IF_GETPUT(...) __VA_ARGS__
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000176#define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
177#define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000178#endif
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000179/* NB: in the code below
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000180 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000181 */
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000182
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000183
184struct globals {
185 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
186 uint8_t error_pkt[4 + 32];
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200187 struct passwd *pw;
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200188 /* Used in tftpd_main() for initial packet */
189 /* Some HP PA-RISC firmware always sends fixed 516-byte requests */
190 char block_buf[516];
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200191 char block_buf_tail[1];
Magnus Damm8bd0af92009-11-08 18:03:09 +0100192#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
193 off_t pos;
194 off_t size;
195 const char *file;
196 bb_progress_t pmt;
197#endif
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100198} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200199#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenkoab3964d2015-10-13 14:50:20 +0200200#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200201 setup_common_bufsiz(); \
Denys Vlasenkoab3964d2015-10-13 14:50:20 +0200202 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
203} while (0)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000204
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200205#define G_error_pkt_reason (G.error_pkt[3])
206#define G_error_pkt_str ((char*)(G.error_pkt + 4))
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000207
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100208#if ENABLE_FEATURE_TFTP_PROGRESS_BAR && ENABLE_FEATURE_TFTP_BLOCKSIZE
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100209static void tftp_progress_update(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100210{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100211 bb_progress_update(&G.pmt, 0, G.pos, G.size);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100212}
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100213static void tftp_progress_init(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100214{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100215 bb_progress_init(&G.pmt, G.file);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100216 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100217}
218static void tftp_progress_done(void)
219{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100220 if (is_bb_progress_inited(&G.pmt)) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100221 tftp_progress_update();
222 bb_putchar_stderr('\n');
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100223 bb_progress_free(&G.pmt);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100224 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100225}
226#else
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100227# define tftp_progress_update() ((void)0)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100228# define tftp_progress_init() ((void)0)
229# define tftp_progress_done() ((void)0)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100230#endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000231
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000232#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Glenn L McGrathad117d82001-10-05 04:40:37 +0000233
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000234static int tftp_blksize_check(const char *blksize_str, int maxsize)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000235{
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000236 /* Check if the blksize is valid:
Glenn L McGrathad117d82001-10-05 04:40:37 +0000237 * RFC2348 says between 8 and 65464,
238 * but our implementation makes it impossible
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000239 * to use blksizes smaller than 22 octets. */
240 unsigned blksize = bb_strtou(blksize_str, NULL, 10);
241 if (errno
242 || (blksize < 24) || (blksize > maxsize)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000243 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000244 bb_error_msg("bad blocksize '%s'", blksize_str);
245 return -1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000246 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100247# if ENABLE_TFTP_DEBUG
James Byrne253c4e72019-04-12 17:01:51 +0000248 bb_info_msg("using blksize %u", blksize);
Magnus Dammbbd42352009-11-08 18:00:59 +0100249# endif
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000250 return blksize;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000251}
252
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000253static char *tftp_get_option(const char *option, char *buf, int len)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000254{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000255 int opt_val = 0;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000256 int opt_found = 0;
257 int k;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000258
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000259 /* buf points to:
260 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
261
Glenn L McGrathad117d82001-10-05 04:40:37 +0000262 while (len > 0) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000263 /* Make sure options are terminated correctly */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000264 for (k = 0; k < len; k++) {
265 if (buf[k] == '\0') {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000266 goto nul_found;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000267 }
268 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000269 return NULL;
270 nul_found:
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000271 if (opt_val == 0) { /* it's "name" part */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000272 if (strcasecmp(buf, option) == 0) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000273 opt_found = 1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000274 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000275 } else if (opt_found) {
276 return buf;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000277 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000278
Glenn L McGrathad117d82001-10-05 04:40:37 +0000279 k++;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000280 buf += k;
281 len -= k;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000282 opt_val ^= 1;
283 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000284
Glenn L McGrathad117d82001-10-05 04:40:37 +0000285 return NULL;
286}
287
288#endif
289
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000290static int tftp_protocol(
Magnus Dammbbd42352009-11-08 18:00:59 +0100291 /* NULL if tftp, !NULL if tftpd: */
292 len_and_sockaddr *our_lsa,
Denis Vlasenko0850cda2007-02-07 23:20:32 +0000293 len_and_sockaddr *peer_lsa,
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000294 const char *local_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000295 IF_TFTP(, const char *remote_file)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000296#if !ENABLE_TFTP
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200297# define remote_file NULL
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000298#endif
Magnus Dammbbd42352009-11-08 18:00:59 +0100299 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100300 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
Magnus Dammbbd42352009-11-08 18:00:59 +0100301 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
302{
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000303#if !ENABLE_FEATURE_TFTP_BLOCKSIZE
304 enum { blksize = TFTP_BLKSIZE_DEFAULT };
305#endif
306
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000307 struct pollfd pfd[1];
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000308#define socket_fd (pfd[0].fd)
Bernhard Reutner-Fischer62f98562006-06-10 14:32:56 +0000309 int len;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000310 int send_len;
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200311 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000312 smallint finished = 0;
313 uint16_t opcode;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000314 uint16_t block_nr;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000315 uint16_t recv_blk;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000316 int open_mode, local_fd;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000317 int retries, waittime_ms;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000318 int io_bufsize = blksize + 4;
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000319 char *cp;
Eric Andersen744a1942001-11-10 11:16:39 +0000320 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200321 * size varies meaning BUFFERS_GO_ON_STACK would fail.
322 *
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200323 * We must keep the transmit and receive buffers separate
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200324 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
325 */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000326 char *xbuf = xmalloc(io_bufsize);
327 char *rbuf = xmalloc(io_bufsize);
Mark Whitley450736c2001-03-02 19:08:50 +0000328
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000329 socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
330 setsockopt_reuseaddr(socket_fd);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000331
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200332 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000333 /* Create a socket which is:
334 * 1. bound to IP:port peer sent 1st datagram to,
335 * 2. connected to peer's IP:port
336 * This way we will answer from the IP:port peer
337 * expects, will not get any other packets on
338 * the socket, and also plain read/write will work. */
339 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
340 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000341
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000342 /* Is there an error already? Send pkt and bail out */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200343 if (G_error_pkt_reason || G_error_pkt_str[0])
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000344 goto send_err_pkt;
345
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200346 if (G.pw) {
347 change_identity(G.pw); /* initgroups, setgid, setuid */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000348 }
349 }
350
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200351 /* Prepare open mode */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000352 if (CMD_PUT(option_mask32)) {
353 open_mode = O_RDONLY;
354 } else {
355 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
356#if ENABLE_TFTPD
357 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
358 /* tftpd without -c */
359 open_mode = O_WRONLY | O_TRUNC;
360 }
361#endif
362 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200363
Denys Vlasenkobac9f032009-07-25 01:56:23 +0200364 /* Examples of network traffic.
365 * Note two cases when ACKs with block# of 0 are sent.
366 *
367 * Download without options:
368 * tftp -> "\0\1FILENAME\0octet\0"
369 * "\0\3\0\1FILEDATA..." <- tftpd
370 * tftp -> "\0\4\0\1"
371 * ...
372 * Download with option of blksize 16384:
373 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
374 * "\0\6blksize\00016384\0" <- tftpd
375 * tftp -> "\0\4\0\0"
376 * "\0\3\0\1FILEDATA..." <- tftpd
377 * tftp -> "\0\4\0\1"
378 * ...
379 * Upload without options:
380 * tftp -> "\0\2FILENAME\0octet\0"
381 * "\0\4\0\0" <- tftpd
382 * tftp -> "\0\3\0\1FILEDATA..."
383 * "\0\4\0\1" <- tftpd
384 * ...
385 * Upload with option of blksize 16384:
386 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
387 * "\0\6blksize\00016384\0" <- tftpd
388 * tftp -> "\0\3\0\1FILEDATA..."
389 * "\0\4\0\1" <- tftpd
390 * ...
391 */
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200392 block_nr = 1;
393 cp = xbuf + 2;
394
395 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
396 /* Open file (must be after changing user) */
Denys Vlasenko4b061462010-02-02 01:01:40 +0100397 local_fd = open(local_file, open_mode, 0666);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000398 if (local_fd < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200399 G_error_pkt_reason = ERR_NOFILE;
400 strcpy(G_error_pkt_str, "can't open file");
Denis Vlasenko7a601332008-03-19 13:24:13 +0000401 goto send_err_pkt;
402 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000403/* gcc 4.3.1 would NOT optimize it out as it should! */
404#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100405 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000406 /* Create and send OACK packet. */
407 /* For the download case, block_nr is still 1 -
408 * we expect 1st ACK from peer to be for (block_nr-1),
409 * that is, for "block 0" which is our OACK pkt */
410 opcode = TFTP_OACK;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000411 goto add_blksize_opt;
412 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000413#endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200414 if (CMD_GET(option_mask32)) {
415 /* It's upload and we don't send OACK.
416 * We must ACK 1st packet (with filename)
417 * as if it is "block 0" */
418 block_nr = 0;
419 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200420 } else { /* tftp */
421 /* Open file (must be after changing user) */
422 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
423 if (NOT_LONE_DASH(local_file))
424 local_fd = xopen(local_file, open_mode);
425/* Removing #if, or using if() statement instead of #if may lead to
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000426 * "warning: null argument where non-null required": */
427#if ENABLE_TFTP
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000428 /* tftp */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000429
430 /* We can't (and don't really need to) bind the socket:
431 * we don't know from which local IP datagrams will be sent,
432 * but kernel will pick the same IP every time (unless routing
433 * table is changed), thus peer will see dgrams consistently
434 * coming from the same IP.
435 * We would like to connect the socket, but since peer's
436 * UDP code can be less perfect than ours, _peer's_ IP:port
437 * in replies may differ from IP:port we used to send
438 * our first packet. We can connect() only when we get
439 * first reply. */
440
441 /* build opcode */
442 opcode = TFTP_WRQ;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000443 if (CMD_GET(option_mask32)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000444 opcode = TFTP_RRQ;
445 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000446 /* add filename and mode */
447 /* fill in packet if the filename fits into xbuf */
448 len = strlen(remote_file) + 1;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000449 if (2 + len + sizeof("octet") >= io_bufsize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000450 bb_error_msg("remote filename is too long");
451 goto ret;
452 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000453 strcpy(cp, remote_file);
454 cp += len;
Magnus Dammbbd42352009-11-08 18:00:59 +0100455 /* add "mode" part of the packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000456 strcpy(cp, "octet");
457 cp += sizeof("octet");
458
Magnus Dammbbd42352009-11-08 18:00:59 +0100459# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100460 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000461 goto send_pkt;
462
Magnus Dammbbd42352009-11-08 18:00:59 +0100463 /* Need to add option to pkt */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100464 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000465 bb_error_msg("remote filename is too long");
466 goto ret;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000467 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200468 expect_OACK = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100469# endif
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000470#endif /* ENABLE_TFTP */
471
Denis Vlasenko31e12862008-06-16 07:32:40 +0000472#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000473 add_blksize_opt:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000474 if (blksize != TFTP_BLKSIZE_DEFAULT) {
475 /* add "blksize", <nul>, blksize, <nul> */
476 strcpy(cp, "blksize");
477 cp += sizeof("blksize");
478 cp += snprintf(cp, 6, "%d", blksize) + 1;
479 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100480 if (want_transfer_size) {
Magnus Dammbbd42352009-11-08 18:00:59 +0100481 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
482 /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
483 * and this makes server to send "tsize" option with the size */
484 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
485 /* if tftpd and downloading, we are answering to client's request */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100486 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
Magnus Dammbbd42352009-11-08 18:00:59 +0100487 struct stat st;
488 strcpy(cp, "tsize");
489 cp += sizeof("tsize");
490 st.st_size = 0;
491 fstat(local_fd, &st);
492 cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
Magnus Damm8bd0af92009-11-08 18:03:09 +0100493# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Magnus Dammbbd42352009-11-08 18:00:59 +0100494 /* Save for progress bar. If 0 (tftp downloading),
495 * we look at server's reply later */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100496 G.size = st.st_size;
497 if (remote_file && st.st_size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100498 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100499# endif
500 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000501#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000502 /* First packet is built, so skip packet generation */
503 goto send_pkt;
504 }
Mark Whitley450736c2001-03-02 19:08:50 +0000505
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000506 /* Using mostly goto's - continue/break will be less clear
507 * in where we actually jump to */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000508 while (1) {
509 /* Build ACK or DATA */
510 cp = xbuf + 2;
511 *((uint16_t*)cp) = htons(block_nr);
512 cp += 2;
513 block_nr++;
514 opcode = TFTP_ACK;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000515 if (CMD_PUT(option_mask32)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000516 opcode = TFTP_DATA;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000517 len = full_read(local_fd, cp, blksize);
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000518 if (len < 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000519 goto send_read_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000520 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000521 if (len != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000522 finished = 1;
523 }
524 cp += len;
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200525 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += len;)
Mark Whitley450736c2001-03-02 19:08:50 +0000526 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000527 send_pkt:
528 /* Send packet */
529 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000530 send_len = cp - xbuf;
531 /* NB: send_len value is preserved in code below
532 * for potential resend */
Paul Fox40f0bcf2007-09-06 17:52:22 +0000533
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200534 retries = TFTP_NUM_RETRIES; /* re-initialize */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000535 waittime_ms = TFTP_TIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000536
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000537 send_again:
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000538#if ENABLE_TFTP_DEBUG
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000539 fprintf(stderr, "sending %u bytes\n", send_len);
540 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
541 fprintf(stderr, "%02x ", (unsigned char) *cp);
542 fprintf(stderr, "\n");
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000543#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000544 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100545
546#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100547 if (is_bb_progress_inited(&G.pmt))
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100548 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100549#endif
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000550 /* Was it final ACK? then exit */
551 if (finished && (opcode == TFTP_ACK))
552 goto ret;
Mark Whitley450736c2001-03-02 19:08:50 +0000553
Denis Vlasenko2c916522007-01-12 14:57:37 +0000554 recv_again:
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000555 /* Receive packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000556 /*pfd[0].fd = socket_fd;*/
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000557 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000558 switch (safe_poll(pfd, 1, waittime_ms)) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000559 default:
560 /*bb_perror_msg("poll"); - done in safe_poll */
561 goto ret;
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000562 case 0:
Paul Fox40f0bcf2007-09-06 17:52:22 +0000563 retries--;
564 if (retries == 0) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100565 tftp_progress_done();
Paul Fox40f0bcf2007-09-06 17:52:22 +0000566 bb_error_msg("timeout");
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000567 goto ret; /* no err packet sent */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000568 }
Paul Fox40f0bcf2007-09-06 17:52:22 +0000569
570 /* exponential backoff with limit */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000571 waittime_ms += waittime_ms/2;
572 if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
573 waittime_ms = TFTP_MAXTIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000574 }
575
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000576 goto send_again; /* resend last sent pkt */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000577 case 1:
578 if (!our_lsa) {
579 /* tftp (not tftpd!) receiving 1st packet */
580 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
581 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
582 &peer_lsa->u.sa, &peer_lsa->len);
583 /* Our first dgram went to port 69
584 * but reply may come from different one.
585 * Remember and use this new port (and IP) */
586 if (len >= 0)
587 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
588 } else {
589 /* tftpd, or not the very first packet:
590 * socket is connect()ed, can just read from it. */
591 /* Don't full_read()!
592 * This is not TCP, one read == one pkt! */
593 len = safe_read(socket_fd, rbuf, io_bufsize);
594 }
595 if (len < 0) {
596 goto send_read_err_pkt;
597 }
598 if (len < 4) { /* too small? */
599 goto recv_again;
600 }
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000601 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000602
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000603 /* Process recv'ed packet */
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000604 opcode = ntohs( ((uint16_t*)rbuf)[0] );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000605 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000606#if ENABLE_TFTP_DEBUG
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000607 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000608#endif
Glenn L McGrathad117d82001-10-05 04:40:37 +0000609 if (opcode == TFTP_ERROR) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000610 static const char errcode_str[] ALIGN1 =
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000611 "\0"
612 "file not found\0"
613 "access violation\0"
614 "disk full\0"
615 "bad operation\0"
616 "unknown transfer id\0"
617 "file already exists\0"
618 "no such user\0"
619 "bad option";
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000620
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000621 const char *msg = "";
Glenn L McGrathad117d82001-10-05 04:40:37 +0000622
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000623 if (len > 4 && rbuf[4] != '\0') {
Denis Vlasenko10f7dd12006-12-17 01:14:08 +0000624 msg = &rbuf[4];
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000625 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
626 } else if (recv_blk <= 8) {
627 msg = nth_string(errcode_str, recv_blk);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000628 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000629 bb_error_msg("server error: (%u) %s", recv_blk, msg);
630 goto ret;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000631 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000632
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000633#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200634 if (expect_OACK) {
635 expect_OACK = 0;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000636 if (opcode == TFTP_OACK) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000637 /* server seems to support options */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000638 char *res;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000639
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000640 res = tftp_get_option("blksize", &rbuf[2], len - 2);
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000641 if (res) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000642 blksize = tftp_blksize_check(res, blksize);
643 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200644 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000645 goto send_err_pkt;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000646 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000647 io_bufsize = blksize + 4;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000648 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100649# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100650 if (remote_file && G.size == 0) { /* if we don't know it yet */
Magnus Dammbbd42352009-11-08 18:00:59 +0100651 res = tftp_get_option("tsize", &rbuf[2], len - 2);
652 if (res) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100653 G.size = bb_strtoull(res, NULL, 10);
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100654 if (G.size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100655 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100656 }
657 }
658# endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200659 if (CMD_GET(option_mask32)) {
660 /* We'll send ACK for OACK,
661 * such ACK has "block no" of 0 */
662 block_nr = 0;
663 }
664 continue;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000665 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200666 /* rfc2347:
667 * "An option not acknowledged by the server
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100668 * must be ignored by the client and server
669 * as if it were never requested." */
Denys Vlasenko53e2f382010-06-12 03:29:58 +0200670 if (blksize != TFTP_BLKSIZE_DEFAULT)
671 bb_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000672 blksize = TFTP_BLKSIZE_DEFAULT;
673 io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000674 }
675#endif
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000676 /* block_nr is already advanced to next block# we expect
677 * to get / block# we are about to send next time */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000678
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000679 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000680 if (recv_blk == block_nr) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000681 int sz = full_write(local_fd, &rbuf[4], len - 4);
682 if (sz != len - 4) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200683 strcpy(G_error_pkt_str, bb_msg_write_error);
684 G_error_pkt_reason = ERR_WRITE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000685 goto send_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000686 }
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000687 if (sz != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000688 finished = 1;
Mark Whitley450736c2001-03-02 19:08:50 +0000689 }
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200690 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += sz;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000691 continue; /* send ACK */
Mark Whitley450736c2001-03-02 19:08:50 +0000692 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200693/* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
694#if 0
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000695 if (recv_blk == (block_nr - 1)) {
Paul Fox1d4c88c2005-07-20 19:49:15 +0000696 /* Server lost our TFTP_ACK. Resend it */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000697 block_nr = recv_blk;
Paul Fox1d4c88c2005-07-20 19:49:15 +0000698 continue;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000699 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200700#endif
Mark Whitley450736c2001-03-02 19:08:50 +0000701 }
702
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000703 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000704 /* did peer ACK our last DATA pkt? */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000705 if (recv_blk == (uint16_t) (block_nr - 1)) {
706 if (finished)
707 goto ret;
708 continue; /* send next block */
Mark Whitley450736c2001-03-02 19:08:50 +0000709 }
710 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000711 /* Awww... recv'd packet is not recognized! */
712 goto recv_again;
713 /* why recv_again? - rfc1123 says:
714 * "The sender (i.e., the side originating the DATA packets)
715 * must never resend the current DATA packet on receipt
716 * of a duplicate ACK".
717 * DATA pkts are resent ONLY on timeout.
718 * Thus "goto send_again" will ba a bad mistake above.
719 * See:
720 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
721 */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000722 } /* end of "while (1)" */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000723 ret:
Denis Vlasenko2c916522007-01-12 14:57:37 +0000724 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000725 close(local_fd);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000726 close(socket_fd);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000727 free(xbuf);
728 free(rbuf);
729 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000730 return finished == 0; /* returns 1 on failure */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000731
732 send_read_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200733 strcpy(G_error_pkt_str, bb_msg_read_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000734 send_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200735 if (G_error_pkt_str[0])
736 bb_error_msg("%s", G_error_pkt_str);
737 G.error_pkt[1] = TFTP_ERROR;
738 xsendto(socket_fd, G.error_pkt, 4 + 1 + strlen(G_error_pkt_str),
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000739 &peer_lsa->u.sa, peer_lsa->len);
740 return EXIT_FAILURE;
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000741#undef remote_file
Mark Whitley450736c2001-03-02 19:08:50 +0000742}
743
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000744#if ENABLE_TFTP
745
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000746int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000747int tftp_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley450736c2001-03-02 19:08:50 +0000748{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000749 len_and_sockaddr *peer_lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000750 const char *local_file = NULL;
751 const char *remote_file = NULL;
Magnus Dammbbd42352009-11-08 18:00:59 +0100752# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000753 const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000754 int blksize;
Magnus Dammbbd42352009-11-08 18:00:59 +0100755# endif
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000756 int result;
757 int port;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000758 IF_GETPUT(int opt;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000759
760 INIT_G();
Mark Whitley450736c2001-03-02 19:08:50 +0000761
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200762 IF_GETPUT(opt =) getopt32(argv, "^"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000763 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200764 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:")
765 "\0"
766 /* -p or -g is mandatory, and they are mutually exclusive */
767 IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
768 IF_GETPUT("g--p:p--g:"),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000769 &local_file, &remote_file
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200770 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str)
771 );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000772 argv += optind;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000773
Magnus Dammbbd42352009-11-08 18:00:59 +0100774# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000775 /* Check if the blksize is valid:
776 * RFC2348 says between 8 and 65464 */
777 blksize = tftp_blksize_check(blksize_str, 65564);
778 if (blksize < 0) {
779 //bb_error_msg("bad block size");
Denis Vlasenko1d426652008-03-17 09:09:09 +0000780 return EXIT_FAILURE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000781 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100782# endif
Mark Whitley450736c2001-03-02 19:08:50 +0000783
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000784 if (remote_file) {
785 if (!local_file) {
786 const char *slash = strrchr(remote_file, '/');
787 local_file = slash ? slash + 1 : remote_file;
788 }
789 } else {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000790 remote_file = local_file;
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000791 }
792
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000793 /* Error if filename or host is not known */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000794 if (!remote_file || !argv[0])
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000795 bb_show_usage();
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000796
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000797 port = bb_lookup_port(argv[1], "udp", 69);
798 peer_lsa = xhost2sockaddr(argv[0], port);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000799
Magnus Dammbbd42352009-11-08 18:00:59 +0100800# if ENABLE_TFTP_DEBUG
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000801 fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000802 xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000803 remote_file, local_file);
Magnus Dammbbd42352009-11-08 18:00:59 +0100804# endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000805
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100806# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
807 G.file = remote_file;
808# endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000809 result = tftp_protocol(
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000810 NULL /*our_lsa*/, peer_lsa,
811 local_file, remote_file
Magnus Damm8bd0af92009-11-08 18:03:09 +0100812 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000813 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000814 );
Magnus Damm8bd0af92009-11-08 18:03:09 +0100815 tftp_progress_done();
Mark Whitley450736c2001-03-02 19:08:50 +0000816
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000817 if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000818 unlink(local_file);
Eric Andersena66a43e2002-04-13 09:30:25 +0000819 }
Denis Vlasenko000b9ba2006-10-05 23:12:49 +0000820 return result;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000821}
Denis Vlasenko31635552007-01-20 16:54:19 +0000822
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000823#endif /* ENABLE_TFTP */
824
825#if ENABLE_TFTPD
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000826int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000827int tftpd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000828{
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000829 len_and_sockaddr *our_lsa;
830 len_and_sockaddr *peer_lsa;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200831 char *mode, *user_opt;
832 char *local_file = local_file;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000833 const char *error_msg;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000834 int opt, result, opcode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000835 IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100836 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000837
838 INIT_G();
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000839
840 our_lsa = get_sock_lsa(STDIN_FILENO);
Denis Vlasenko5a897632008-11-01 00:22:24 +0000841 if (!our_lsa) {
842 /* This is confusing:
843 *bb_error_msg_and_die("stdin is not a socket");
844 * Better: */
845 bb_show_usage();
846 /* Help text says that tftpd must be used as inetd service,
847 * which is by far the most usual cause of get_sock_lsa
848 * failure */
849 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000850 peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
851 peer_lsa->len = our_lsa->len;
852
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000853 /* Shifting to not collide with TFTP_OPTs */
Denys Vlasenko532e9612011-04-11 05:12:53 +0200854 opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8);
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000855 argv += optind;
Denys Vlasenko532e9612011-04-11 05:12:53 +0200856 if (opt & TFTPD_OPT_l) {
857 openlog(applet_name, LOG_PID, LOG_DAEMON);
858 logmode = LOGMODE_SYSLOG;
859 }
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200860 if (opt & TFTPD_OPT_u) {
861 /* Must be before xchroot */
862 G.pw = xgetpwnam(user_opt);
863 }
Denys Vlasenko4e3beb22012-03-08 00:28:52 +0100864 if (argv[0]) {
865 xchroot(argv[0]);
866 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000867
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200868 result = recv_from_to(STDIN_FILENO,
869 G.block_buf, sizeof(G.block_buf) + 1,
870 /* ^^^ sizeof+1 to reliably detect oversized input */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000871 0 /* flags */,
872 &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
873
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000874 error_msg = "malformed packet";
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200875 opcode = ntohs(*(uint16_t*)G.block_buf);
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200876 if (result < 4 || result > sizeof(G.block_buf)
877 /*|| G.block_buf[result-1] != '\0' - bug compatibility, see below */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000878 || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
879 IF_GETPUT(&&)
880 IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000881 )
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000882 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000883 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000884 }
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200885 /* Some HP PA-RISC firmware always sends fixed 516-byte requests,
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200886 * with trailing garbage.
887 * Support that by not requiring NUL to be the last byte (see above).
888 * To make strXYZ() ops safe, force NUL termination:
889 */
890 G.block_buf_tail[0] = '\0';
891
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200892 local_file = G.block_buf + 2;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000893 if (local_file[0] == '.' || strstr(local_file, "/.")) {
Denis Vlasenko0a0180c2008-03-19 23:37:32 +0000894 error_msg = "dot in file name";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000895 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000896 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000897 mode = local_file + strlen(local_file) + 1;
Denys Vlasenkofaf7c622011-10-06 17:19:09 +0200898 /* RFC 1350 says mode string is case independent */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200899 if (mode >= G.block_buf + result || strcasecmp(mode, "octet") != 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000900 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000901 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100902# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000903 {
904 char *res;
905 char *opt_str = mode + sizeof("octet");
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200906 int opt_len = G.block_buf + result - opt_str;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000907 if (opt_len > 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000908 res = tftp_get_option("blksize", opt_str, opt_len);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000909 if (res) {
910 blksize = tftp_blksize_check(res, 65564);
911 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200912 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000913 /* will just send error pkt */
914 goto do_proto;
915 }
916 }
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100917 if (opcode != TFTP_WRQ /* download? */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000918 /* did client ask us about file size? */
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100919 && tftp_get_option("tsize", opt_str, opt_len)
920 ) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100921 want_transfer_size = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100922 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000923 }
924 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100925# endif
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000926
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000927 if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000928 if (opt & TFTPD_OPT_r) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000929 /* This would mean "disk full" - not true */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200930 /*G_error_pkt_reason = ERR_WRITE;*/
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000931 error_msg = bb_msg_write_error;
932 goto err;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000933 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000934 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000935 } else {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000936 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000937 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000938
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200939 /* NB: if G_error_pkt_str or G_error_pkt_reason is set up,
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000940 * tftp_protocol() just sends one error pkt and returns */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000941
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000942 do_proto:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000943 close(STDIN_FILENO); /* close old, possibly wildcard socket */
944 /* tftp_protocol() will create new one, bound to particular local IP */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000945 result = tftp_protocol(
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000946 our_lsa, peer_lsa,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000947 local_file IF_TFTP(, NULL /*remote_file*/)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100948 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000949 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000950 );
951
952 return result;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000953 err:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200954 strcpy(G_error_pkt_str, error_msg);
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000955 goto do_proto;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000956}
957
958#endif /* ENABLE_TFTPD */
959
Denis Vlasenko31635552007-01-20 16:54:19 +0000960#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */