blob: 8ecd7bb6fff3f7be660736edd09483996e095d9f [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 */
Pere Orga5bc8c002011-04-11 03:29:49 +020021
22//usage:#define tftp_trivial_usage
23//usage: "[OPTIONS] HOST [PORT]"
24//usage:#define tftp_full_usage "\n\n"
25//usage: "Transfer a file from/to tftp server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020026//usage: "\n -l FILE Local FILE"
27//usage: "\n -r FILE Remote FILE"
28//usage: IF_FEATURE_TFTP_GET(
29//usage: "\n -g Get file"
30//usage: )
31//usage: IF_FEATURE_TFTP_PUT(
32//usage: "\n -p Put file"
33//usage: )
34//usage: IF_FEATURE_TFTP_BLOCKSIZE(
35//usage: "\n -b SIZE Transfer blocks of SIZE octets"
36//usage: )
37//usage:
38//usage:#define tftpd_trivial_usage
39//usage: "[-cr] [-u USER] [DIR]"
40//usage:#define tftpd_full_usage "\n\n"
41//usage: "Transfer a file on tftp client's request\n"
42//usage: "\n"
43//usage: "tftpd should be used as an inetd service.\n"
44//usage: "tftpd's line for inetd.conf:\n"
Denys Vlasenko532e9612011-04-11 05:12:53 +020045//usage: " 69 dgram udp nowait root tftpd tftpd -l /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020046//usage: "It also can be ran from udpsvd:\n"
47//usage: " udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020048//usage: "\n -r Prohibit upload"
49//usage: "\n -c Allow file creation via upload"
50//usage: "\n -u Access files as USER"
Denys Vlasenko532e9612011-04-11 05:12:53 +020051//usage: "\n -l Log to syslog (inetd mode requires this)"
Pere Orga5bc8c002011-04-11 03:29:49 +020052
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000053#include "libbb.h"
Denys Vlasenko88d3cfd2011-04-11 05:24:58 +020054#include <syslog.h>
Mark Whitley450736c2001-03-02 19:08:50 +000055
Denis Vlasenko31635552007-01-20 16:54:19 +000056#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
57
Denis Vlasenko4824cca2008-03-21 18:29:01 +000058#define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */
59#define TFTP_BLKSIZE_DEFAULT_STR "512"
Denys Vlasenko5b1dfe62010-06-18 02:47:27 +020060/* Was 50 ms but users asked to bump it up a bit */
61#define TFTP_TIMEOUT_MS 100
Denis Vlasenko4824cca2008-03-21 18:29:01 +000062#define TFTP_MAXTIMEOUT_MS 2000
63#define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +000064
Glenn L McGrathad117d82001-10-05 04:40:37 +000065/* opcodes we support */
Glenn L McGrathad117d82001-10-05 04:40:37 +000066#define TFTP_RRQ 1
67#define TFTP_WRQ 2
68#define TFTP_DATA 3
69#define TFTP_ACK 4
70#define TFTP_ERROR 5
71#define TFTP_OACK 6
72
Denis Vlasenko8474cd32008-06-16 07:12:19 +000073/* error codes sent over network (we use only 0, 1, 3 and 8) */
Denis Vlasenko71c9f012008-03-19 09:43:50 +000074/* generic (error message is included in the packet) */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000075#define ERR_UNSPEC 0
76#define ERR_NOFILE 1
77#define ERR_ACCESS 2
Denis Vlasenko71c9f012008-03-19 09:43:50 +000078/* disk full or allocation exceeded */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000079#define ERR_WRITE 3
80#define ERR_OP 4
81#define ERR_BAD_ID 5
82#define ERR_EXIST 6
83#define ERR_BAD_USER 7
84#define ERR_BAD_OPT 8
85
Denis Vlasenko403a5a22008-03-19 13:07:00 +000086/* masks coming from getopt32 */
87enum {
88 TFTP_OPT_GET = (1 << 0),
89 TFTP_OPT_PUT = (1 << 1),
90 /* pseudo option: if set, it's tftpd */
91 TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
92 TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
93 TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
94 TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
Denys Vlasenko532e9612011-04-11 05:12:53 +020095 TFTPD_OPT_l = (1 << 11) * ENABLE_TFTPD,
Denis Vlasenko403a5a22008-03-19 13:07:00 +000096};
97
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000098#if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000099#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000100#define CMD_GET(cmd) 1
101#define CMD_PUT(cmd) 0
102#elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000103#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000104#define CMD_GET(cmd) 0
105#define CMD_PUT(cmd) 1
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000106#else
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000107#define IF_GETPUT(...) __VA_ARGS__
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000108#define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
109#define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000110#endif
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000111/* NB: in the code below
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000112 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000113 */
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000114
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000115
116struct globals {
117 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
118 uint8_t error_pkt[4 + 32];
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200119 struct passwd *pw;
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200120 /* Used in tftpd_main() for initial packet */
121 /* Some HP PA-RISC firmware always sends fixed 516-byte requests */
122 char block_buf[516];
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200123 char block_buf_tail[1];
Magnus Damm8bd0af92009-11-08 18:03:09 +0100124#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
125 off_t pos;
126 off_t size;
127 const char *file;
128 bb_progress_t pmt;
129#endif
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100130} FIX_ALIASING;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000131#define G (*(struct globals*)&bb_common_bufsiz1)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100132struct BUG_G_too_big {
133 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
134};
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000135#define INIT_G() do { } while (0)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000136
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200137#define G_error_pkt_reason (G.error_pkt[3])
138#define G_error_pkt_str ((char*)(G.error_pkt + 4))
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000139
Magnus Damm8bd0af92009-11-08 18:03:09 +0100140#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100141static void tftp_progress_update(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100142{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100143 bb_progress_update(&G.pmt, 0, G.pos, G.size);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100144}
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100145static void tftp_progress_init(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100146{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100147 bb_progress_init(&G.pmt, G.file);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100148 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100149}
150static void tftp_progress_done(void)
151{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100152 if (is_bb_progress_inited(&G.pmt)) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100153 tftp_progress_update();
154 bb_putchar_stderr('\n');
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100155 bb_progress_free(&G.pmt);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100156 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100157}
158#else
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100159# define tftp_progress_init() ((void)0)
160# define tftp_progress_done() ((void)0)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100161#endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000162
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000163#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Glenn L McGrathad117d82001-10-05 04:40:37 +0000164
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000165static int tftp_blksize_check(const char *blksize_str, int maxsize)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000166{
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000167 /* Check if the blksize is valid:
Glenn L McGrathad117d82001-10-05 04:40:37 +0000168 * RFC2348 says between 8 and 65464,
169 * but our implementation makes it impossible
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000170 * to use blksizes smaller than 22 octets. */
171 unsigned blksize = bb_strtou(blksize_str, NULL, 10);
172 if (errno
173 || (blksize < 24) || (blksize > maxsize)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000174 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000175 bb_error_msg("bad blocksize '%s'", blksize_str);
176 return -1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000177 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100178# if ENABLE_TFTP_DEBUG
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000179 bb_error_msg("using blksize %u", blksize);
Magnus Dammbbd42352009-11-08 18:00:59 +0100180# endif
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000181 return blksize;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000182}
183
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000184static char *tftp_get_option(const char *option, char *buf, int len)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000185{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000186 int opt_val = 0;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000187 int opt_found = 0;
188 int k;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000189
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000190 /* buf points to:
191 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
192
Glenn L McGrathad117d82001-10-05 04:40:37 +0000193 while (len > 0) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000194 /* Make sure options are terminated correctly */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000195 for (k = 0; k < len; k++) {
196 if (buf[k] == '\0') {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000197 goto nul_found;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000198 }
199 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000200 return NULL;
201 nul_found:
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000202 if (opt_val == 0) { /* it's "name" part */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000203 if (strcasecmp(buf, option) == 0) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000204 opt_found = 1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000205 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000206 } else if (opt_found) {
207 return buf;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000208 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000209
Glenn L McGrathad117d82001-10-05 04:40:37 +0000210 k++;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000211 buf += k;
212 len -= k;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000213 opt_val ^= 1;
214 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000215
Glenn L McGrathad117d82001-10-05 04:40:37 +0000216 return NULL;
217}
218
219#endif
220
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000221static int tftp_protocol(
Magnus Dammbbd42352009-11-08 18:00:59 +0100222 /* NULL if tftp, !NULL if tftpd: */
223 len_and_sockaddr *our_lsa,
Denis Vlasenko0850cda2007-02-07 23:20:32 +0000224 len_and_sockaddr *peer_lsa,
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000225 const char *local_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000226 IF_TFTP(, const char *remote_file)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000227#if !ENABLE_TFTP
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200228# define remote_file NULL
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000229#endif
Magnus Dammbbd42352009-11-08 18:00:59 +0100230 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100231 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
Magnus Dammbbd42352009-11-08 18:00:59 +0100232 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
233{
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000234#if !ENABLE_FEATURE_TFTP_BLOCKSIZE
235 enum { blksize = TFTP_BLKSIZE_DEFAULT };
236#endif
237
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000238 struct pollfd pfd[1];
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000239#define socket_fd (pfd[0].fd)
Bernhard Reutner-Fischer62f98562006-06-10 14:32:56 +0000240 int len;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000241 int send_len;
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200242 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000243 smallint finished = 0;
244 uint16_t opcode;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000245 uint16_t block_nr;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000246 uint16_t recv_blk;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000247 int open_mode, local_fd;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000248 int retries, waittime_ms;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000249 int io_bufsize = blksize + 4;
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000250 char *cp;
Eric Andersen744a1942001-11-10 11:16:39 +0000251 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200252 * size varies meaning BUFFERS_GO_ON_STACK would fail.
253 *
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200254 * We must keep the transmit and receive buffers separate
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200255 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
256 */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000257 char *xbuf = xmalloc(io_bufsize);
258 char *rbuf = xmalloc(io_bufsize);
Mark Whitley450736c2001-03-02 19:08:50 +0000259
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000260 socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
261 setsockopt_reuseaddr(socket_fd);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000262
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200263 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000264 /* Create a socket which is:
265 * 1. bound to IP:port peer sent 1st datagram to,
266 * 2. connected to peer's IP:port
267 * This way we will answer from the IP:port peer
268 * expects, will not get any other packets on
269 * the socket, and also plain read/write will work. */
270 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
271 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000272
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000273 /* Is there an error already? Send pkt and bail out */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200274 if (G_error_pkt_reason || G_error_pkt_str[0])
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000275 goto send_err_pkt;
276
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200277 if (G.pw) {
278 change_identity(G.pw); /* initgroups, setgid, setuid */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000279 }
280 }
281
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200282 /* Prepare open mode */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000283 if (CMD_PUT(option_mask32)) {
284 open_mode = O_RDONLY;
285 } else {
286 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
287#if ENABLE_TFTPD
288 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
289 /* tftpd without -c */
290 open_mode = O_WRONLY | O_TRUNC;
291 }
292#endif
293 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200294
Denys Vlasenkobac9f032009-07-25 01:56:23 +0200295 /* Examples of network traffic.
296 * Note two cases when ACKs with block# of 0 are sent.
297 *
298 * Download without options:
299 * tftp -> "\0\1FILENAME\0octet\0"
300 * "\0\3\0\1FILEDATA..." <- tftpd
301 * tftp -> "\0\4\0\1"
302 * ...
303 * Download with option of blksize 16384:
304 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
305 * "\0\6blksize\00016384\0" <- tftpd
306 * tftp -> "\0\4\0\0"
307 * "\0\3\0\1FILEDATA..." <- tftpd
308 * tftp -> "\0\4\0\1"
309 * ...
310 * Upload without options:
311 * tftp -> "\0\2FILENAME\0octet\0"
312 * "\0\4\0\0" <- tftpd
313 * tftp -> "\0\3\0\1FILEDATA..."
314 * "\0\4\0\1" <- tftpd
315 * ...
316 * Upload with option of blksize 16384:
317 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
318 * "\0\6blksize\00016384\0" <- tftpd
319 * tftp -> "\0\3\0\1FILEDATA..."
320 * "\0\4\0\1" <- tftpd
321 * ...
322 */
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200323 block_nr = 1;
324 cp = xbuf + 2;
325
326 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
327 /* Open file (must be after changing user) */
Denys Vlasenko4b061462010-02-02 01:01:40 +0100328 local_fd = open(local_file, open_mode, 0666);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000329 if (local_fd < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200330 G_error_pkt_reason = ERR_NOFILE;
331 strcpy(G_error_pkt_str, "can't open file");
Denis Vlasenko7a601332008-03-19 13:24:13 +0000332 goto send_err_pkt;
333 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000334/* gcc 4.3.1 would NOT optimize it out as it should! */
335#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100336 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000337 /* Create and send OACK packet. */
338 /* For the download case, block_nr is still 1 -
339 * we expect 1st ACK from peer to be for (block_nr-1),
340 * that is, for "block 0" which is our OACK pkt */
341 opcode = TFTP_OACK;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000342 goto add_blksize_opt;
343 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000344#endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200345 if (CMD_GET(option_mask32)) {
346 /* It's upload and we don't send OACK.
347 * We must ACK 1st packet (with filename)
348 * as if it is "block 0" */
349 block_nr = 0;
350 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200351 } else { /* tftp */
352 /* Open file (must be after changing user) */
353 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
354 if (NOT_LONE_DASH(local_file))
355 local_fd = xopen(local_file, open_mode);
356/* Removing #if, or using if() statement instead of #if may lead to
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000357 * "warning: null argument where non-null required": */
358#if ENABLE_TFTP
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000359 /* tftp */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000360
361 /* We can't (and don't really need to) bind the socket:
362 * we don't know from which local IP datagrams will be sent,
363 * but kernel will pick the same IP every time (unless routing
364 * table is changed), thus peer will see dgrams consistently
365 * coming from the same IP.
366 * We would like to connect the socket, but since peer's
367 * UDP code can be less perfect than ours, _peer's_ IP:port
368 * in replies may differ from IP:port we used to send
369 * our first packet. We can connect() only when we get
370 * first reply. */
371
372 /* build opcode */
373 opcode = TFTP_WRQ;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000374 if (CMD_GET(option_mask32)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000375 opcode = TFTP_RRQ;
376 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000377 /* add filename and mode */
378 /* fill in packet if the filename fits into xbuf */
379 len = strlen(remote_file) + 1;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000380 if (2 + len + sizeof("octet") >= io_bufsize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000381 bb_error_msg("remote filename is too long");
382 goto ret;
383 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000384 strcpy(cp, remote_file);
385 cp += len;
Magnus Dammbbd42352009-11-08 18:00:59 +0100386 /* add "mode" part of the packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000387 strcpy(cp, "octet");
388 cp += sizeof("octet");
389
Magnus Dammbbd42352009-11-08 18:00:59 +0100390# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100391 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000392 goto send_pkt;
393
Magnus Dammbbd42352009-11-08 18:00:59 +0100394 /* Need to add option to pkt */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100395 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000396 bb_error_msg("remote filename is too long");
397 goto ret;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000398 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200399 expect_OACK = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100400# endif
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000401#endif /* ENABLE_TFTP */
402
Denis Vlasenko31e12862008-06-16 07:32:40 +0000403#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000404 add_blksize_opt:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000405 if (blksize != TFTP_BLKSIZE_DEFAULT) {
406 /* add "blksize", <nul>, blksize, <nul> */
407 strcpy(cp, "blksize");
408 cp += sizeof("blksize");
409 cp += snprintf(cp, 6, "%d", blksize) + 1;
410 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100411 if (want_transfer_size) {
Magnus Dammbbd42352009-11-08 18:00:59 +0100412 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
413 /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
414 * and this makes server to send "tsize" option with the size */
415 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
416 /* if tftpd and downloading, we are answering to client's request */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100417 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
Magnus Dammbbd42352009-11-08 18:00:59 +0100418 struct stat st;
419 strcpy(cp, "tsize");
420 cp += sizeof("tsize");
421 st.st_size = 0;
422 fstat(local_fd, &st);
423 cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
Magnus Damm8bd0af92009-11-08 18:03:09 +0100424# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Magnus Dammbbd42352009-11-08 18:00:59 +0100425 /* Save for progress bar. If 0 (tftp downloading),
426 * we look at server's reply later */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100427 G.size = st.st_size;
428 if (remote_file && st.st_size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100429 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100430# endif
431 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000432#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000433 /* First packet is built, so skip packet generation */
434 goto send_pkt;
435 }
Mark Whitley450736c2001-03-02 19:08:50 +0000436
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000437 /* Using mostly goto's - continue/break will be less clear
438 * in where we actually jump to */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000439 while (1) {
440 /* Build ACK or DATA */
441 cp = xbuf + 2;
442 *((uint16_t*)cp) = htons(block_nr);
443 cp += 2;
444 block_nr++;
445 opcode = TFTP_ACK;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000446 if (CMD_PUT(option_mask32)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000447 opcode = TFTP_DATA;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000448 len = full_read(local_fd, cp, blksize);
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000449 if (len < 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000450 goto send_read_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000451 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000452 if (len != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000453 finished = 1;
454 }
455 cp += len;
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200456 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += len;)
Mark Whitley450736c2001-03-02 19:08:50 +0000457 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000458 send_pkt:
459 /* Send packet */
460 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000461 send_len = cp - xbuf;
462 /* NB: send_len value is preserved in code below
463 * for potential resend */
Paul Fox40f0bcf2007-09-06 17:52:22 +0000464
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200465 retries = TFTP_NUM_RETRIES; /* re-initialize */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000466 waittime_ms = TFTP_TIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000467
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000468 send_again:
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000469#if ENABLE_TFTP_DEBUG
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000470 fprintf(stderr, "sending %u bytes\n", send_len);
471 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
472 fprintf(stderr, "%02x ", (unsigned char) *cp);
473 fprintf(stderr, "\n");
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000474#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000475 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100476
477#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100478 if (is_bb_progress_inited(&G.pmt))
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100479 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100480#endif
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000481 /* Was it final ACK? then exit */
482 if (finished && (opcode == TFTP_ACK))
483 goto ret;
Mark Whitley450736c2001-03-02 19:08:50 +0000484
Denis Vlasenko2c916522007-01-12 14:57:37 +0000485 recv_again:
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000486 /* Receive packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000487 /*pfd[0].fd = socket_fd;*/
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000488 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000489 switch (safe_poll(pfd, 1, waittime_ms)) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000490 default:
491 /*bb_perror_msg("poll"); - done in safe_poll */
492 goto ret;
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000493 case 0:
Paul Fox40f0bcf2007-09-06 17:52:22 +0000494 retries--;
495 if (retries == 0) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100496 tftp_progress_done();
Paul Fox40f0bcf2007-09-06 17:52:22 +0000497 bb_error_msg("timeout");
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000498 goto ret; /* no err packet sent */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000499 }
Paul Fox40f0bcf2007-09-06 17:52:22 +0000500
501 /* exponential backoff with limit */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000502 waittime_ms += waittime_ms/2;
503 if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
504 waittime_ms = TFTP_MAXTIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000505 }
506
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000507 goto send_again; /* resend last sent pkt */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000508 case 1:
509 if (!our_lsa) {
510 /* tftp (not tftpd!) receiving 1st packet */
511 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
512 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
513 &peer_lsa->u.sa, &peer_lsa->len);
514 /* Our first dgram went to port 69
515 * but reply may come from different one.
516 * Remember and use this new port (and IP) */
517 if (len >= 0)
518 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
519 } else {
520 /* tftpd, or not the very first packet:
521 * socket is connect()ed, can just read from it. */
522 /* Don't full_read()!
523 * This is not TCP, one read == one pkt! */
524 len = safe_read(socket_fd, rbuf, io_bufsize);
525 }
526 if (len < 0) {
527 goto send_read_err_pkt;
528 }
529 if (len < 4) { /* too small? */
530 goto recv_again;
531 }
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000532 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000533
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000534 /* Process recv'ed packet */
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000535 opcode = ntohs( ((uint16_t*)rbuf)[0] );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000536 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000537#if ENABLE_TFTP_DEBUG
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000538 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000539#endif
Glenn L McGrathad117d82001-10-05 04:40:37 +0000540 if (opcode == TFTP_ERROR) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000541 static const char errcode_str[] ALIGN1 =
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000542 "\0"
543 "file not found\0"
544 "access violation\0"
545 "disk full\0"
546 "bad operation\0"
547 "unknown transfer id\0"
548 "file already exists\0"
549 "no such user\0"
550 "bad option";
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000551
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000552 const char *msg = "";
Glenn L McGrathad117d82001-10-05 04:40:37 +0000553
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000554 if (len > 4 && rbuf[4] != '\0') {
Denis Vlasenko10f7dd12006-12-17 01:14:08 +0000555 msg = &rbuf[4];
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000556 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
557 } else if (recv_blk <= 8) {
558 msg = nth_string(errcode_str, recv_blk);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000559 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000560 bb_error_msg("server error: (%u) %s", recv_blk, msg);
561 goto ret;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000562 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000563
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000564#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200565 if (expect_OACK) {
566 expect_OACK = 0;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000567 if (opcode == TFTP_OACK) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000568 /* server seems to support options */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000569 char *res;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000570
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000571 res = tftp_get_option("blksize", &rbuf[2], len - 2);
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000572 if (res) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000573 blksize = tftp_blksize_check(res, blksize);
574 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200575 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000576 goto send_err_pkt;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000577 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000578 io_bufsize = blksize + 4;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000579 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100580# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100581 if (remote_file && G.size == 0) { /* if we don't know it yet */
Magnus Dammbbd42352009-11-08 18:00:59 +0100582 res = tftp_get_option("tsize", &rbuf[2], len - 2);
583 if (res) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100584 G.size = bb_strtoull(res, NULL, 10);
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100585 if (G.size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100586 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100587 }
588 }
589# endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200590 if (CMD_GET(option_mask32)) {
591 /* We'll send ACK for OACK,
592 * such ACK has "block no" of 0 */
593 block_nr = 0;
594 }
595 continue;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000596 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200597 /* rfc2347:
598 * "An option not acknowledged by the server
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100599 * must be ignored by the client and server
600 * as if it were never requested." */
Denys Vlasenko53e2f382010-06-12 03:29:58 +0200601 if (blksize != TFTP_BLKSIZE_DEFAULT)
602 bb_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000603 blksize = TFTP_BLKSIZE_DEFAULT;
604 io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000605 }
606#endif
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000607 /* block_nr is already advanced to next block# we expect
608 * to get / block# we are about to send next time */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000609
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000610 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000611 if (recv_blk == block_nr) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000612 int sz = full_write(local_fd, &rbuf[4], len - 4);
613 if (sz != len - 4) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200614 strcpy(G_error_pkt_str, bb_msg_write_error);
615 G_error_pkt_reason = ERR_WRITE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000616 goto send_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000617 }
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000618 if (sz != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000619 finished = 1;
Mark Whitley450736c2001-03-02 19:08:50 +0000620 }
Denys Vlasenko24ec9522011-04-11 04:29:39 +0200621 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += sz;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000622 continue; /* send ACK */
Mark Whitley450736c2001-03-02 19:08:50 +0000623 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200624/* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
625#if 0
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000626 if (recv_blk == (block_nr - 1)) {
Paul Fox1d4c88c2005-07-20 19:49:15 +0000627 /* Server lost our TFTP_ACK. Resend it */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000628 block_nr = recv_blk;
Paul Fox1d4c88c2005-07-20 19:49:15 +0000629 continue;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000630 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200631#endif
Mark Whitley450736c2001-03-02 19:08:50 +0000632 }
633
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000634 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000635 /* did peer ACK our last DATA pkt? */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000636 if (recv_blk == (uint16_t) (block_nr - 1)) {
637 if (finished)
638 goto ret;
639 continue; /* send next block */
Mark Whitley450736c2001-03-02 19:08:50 +0000640 }
641 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000642 /* Awww... recv'd packet is not recognized! */
643 goto recv_again;
644 /* why recv_again? - rfc1123 says:
645 * "The sender (i.e., the side originating the DATA packets)
646 * must never resend the current DATA packet on receipt
647 * of a duplicate ACK".
648 * DATA pkts are resent ONLY on timeout.
649 * Thus "goto send_again" will ba a bad mistake above.
650 * See:
651 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
652 */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000653 } /* end of "while (1)" */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000654 ret:
Denis Vlasenko2c916522007-01-12 14:57:37 +0000655 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000656 close(local_fd);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000657 close(socket_fd);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000658 free(xbuf);
659 free(rbuf);
660 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000661 return finished == 0; /* returns 1 on failure */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000662
663 send_read_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200664 strcpy(G_error_pkt_str, bb_msg_read_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000665 send_err_pkt:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200666 if (G_error_pkt_str[0])
667 bb_error_msg("%s", G_error_pkt_str);
668 G.error_pkt[1] = TFTP_ERROR;
669 xsendto(socket_fd, G.error_pkt, 4 + 1 + strlen(G_error_pkt_str),
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000670 &peer_lsa->u.sa, peer_lsa->len);
671 return EXIT_FAILURE;
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000672#undef remote_file
Mark Whitley450736c2001-03-02 19:08:50 +0000673}
674
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000675#if ENABLE_TFTP
676
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000677int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000678int tftp_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley450736c2001-03-02 19:08:50 +0000679{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000680 len_and_sockaddr *peer_lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000681 const char *local_file = NULL;
682 const char *remote_file = NULL;
Magnus Dammbbd42352009-11-08 18:00:59 +0100683# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000684 const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000685 int blksize;
Magnus Dammbbd42352009-11-08 18:00:59 +0100686# endif
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000687 int result;
688 int port;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000689 IF_GETPUT(int opt;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000690
691 INIT_G();
Mark Whitley450736c2001-03-02 19:08:50 +0000692
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000693 /* -p or -g is mandatory, and they are mutually exclusive */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000694 opt_complementary = "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
695 IF_GETPUT("g--p:p--g:");
Glenn L McGrathad117d82001-10-05 04:40:37 +0000696
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000697 IF_GETPUT(opt =) getopt32(argv,
698 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
699 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000700 &local_file, &remote_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000701 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str));
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000702 argv += optind;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000703
Magnus Dammbbd42352009-11-08 18:00:59 +0100704# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000705 /* Check if the blksize is valid:
706 * RFC2348 says between 8 and 65464 */
707 blksize = tftp_blksize_check(blksize_str, 65564);
708 if (blksize < 0) {
709 //bb_error_msg("bad block size");
Denis Vlasenko1d426652008-03-17 09:09:09 +0000710 return EXIT_FAILURE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000711 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100712# endif
Mark Whitley450736c2001-03-02 19:08:50 +0000713
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000714 if (remote_file) {
715 if (!local_file) {
716 const char *slash = strrchr(remote_file, '/');
717 local_file = slash ? slash + 1 : remote_file;
718 }
719 } else {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000720 remote_file = local_file;
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000721 }
722
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000723 /* Error if filename or host is not known */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000724 if (!remote_file || !argv[0])
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000725 bb_show_usage();
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000726
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000727 port = bb_lookup_port(argv[1], "udp", 69);
728 peer_lsa = xhost2sockaddr(argv[0], port);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000729
Magnus Dammbbd42352009-11-08 18:00:59 +0100730# if ENABLE_TFTP_DEBUG
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000731 fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000732 xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000733 remote_file, local_file);
Magnus Dammbbd42352009-11-08 18:00:59 +0100734# endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000735
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100736# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
737 G.file = remote_file;
738# endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000739 result = tftp_protocol(
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000740 NULL /*our_lsa*/, peer_lsa,
741 local_file, remote_file
Magnus Damm8bd0af92009-11-08 18:03:09 +0100742 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000743 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000744 );
Magnus Damm8bd0af92009-11-08 18:03:09 +0100745 tftp_progress_done();
Mark Whitley450736c2001-03-02 19:08:50 +0000746
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000747 if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000748 unlink(local_file);
Eric Andersena66a43e2002-04-13 09:30:25 +0000749 }
Denis Vlasenko000b9ba2006-10-05 23:12:49 +0000750 return result;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000751}
Denis Vlasenko31635552007-01-20 16:54:19 +0000752
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000753#endif /* ENABLE_TFTP */
754
755#if ENABLE_TFTPD
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000756int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000757int tftpd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000758{
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000759 len_and_sockaddr *our_lsa;
760 len_and_sockaddr *peer_lsa;
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200761 char *local_file, *mode, *user_opt;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000762 const char *error_msg;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000763 int opt, result, opcode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000764 IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100765 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000766
767 INIT_G();
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000768
769 our_lsa = get_sock_lsa(STDIN_FILENO);
Denis Vlasenko5a897632008-11-01 00:22:24 +0000770 if (!our_lsa) {
771 /* This is confusing:
772 *bb_error_msg_and_die("stdin is not a socket");
773 * Better: */
774 bb_show_usage();
775 /* Help text says that tftpd must be used as inetd service,
776 * which is by far the most usual cause of get_sock_lsa
777 * failure */
778 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000779 peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
780 peer_lsa->len = our_lsa->len;
781
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000782 /* Shifting to not collide with TFTP_OPTs */
Denys Vlasenko532e9612011-04-11 05:12:53 +0200783 opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8);
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000784 argv += optind;
Denys Vlasenko532e9612011-04-11 05:12:53 +0200785 if (opt & TFTPD_OPT_l) {
786 openlog(applet_name, LOG_PID, LOG_DAEMON);
787 logmode = LOGMODE_SYSLOG;
788 }
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200789 if (opt & TFTPD_OPT_u) {
790 /* Must be before xchroot */
791 G.pw = xgetpwnam(user_opt);
792 }
Denys Vlasenko4e3beb22012-03-08 00:28:52 +0100793 if (argv[0]) {
794 xchroot(argv[0]);
795 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000796
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200797 result = recv_from_to(STDIN_FILENO,
798 G.block_buf, sizeof(G.block_buf) + 1,
799 /* ^^^ sizeof+1 to reliably detect oversized input */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000800 0 /* flags */,
801 &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
802
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000803 error_msg = "malformed packet";
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200804 opcode = ntohs(*(uint16_t*)G.block_buf);
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200805 if (result < 4 || result > sizeof(G.block_buf)
806 /*|| G.block_buf[result-1] != '\0' - bug compatibility, see below */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000807 || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
808 IF_GETPUT(&&)
809 IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000810 )
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000811 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000812 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000813 }
Denys Vlasenko4eb1e422014-09-04 12:24:03 +0200814 /* Some HP PA-RISC firmware always sends fixed 516-byte requests,
Denys Vlasenko67e01fe2014-09-03 18:35:38 +0200815 * with trailing garbage.
816 * Support that by not requiring NUL to be the last byte (see above).
817 * To make strXYZ() ops safe, force NUL termination:
818 */
819 G.block_buf_tail[0] = '\0';
820
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200821 local_file = G.block_buf + 2;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000822 if (local_file[0] == '.' || strstr(local_file, "/.")) {
Denis Vlasenko0a0180c2008-03-19 23:37:32 +0000823 error_msg = "dot in file name";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000824 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000825 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000826 mode = local_file + strlen(local_file) + 1;
Denys Vlasenkofaf7c622011-10-06 17:19:09 +0200827 /* RFC 1350 says mode string is case independent */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200828 if (mode >= G.block_buf + result || strcasecmp(mode, "octet") != 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000829 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000830 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100831# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000832 {
833 char *res;
834 char *opt_str = mode + sizeof("octet");
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200835 int opt_len = G.block_buf + result - opt_str;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000836 if (opt_len > 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000837 res = tftp_get_option("blksize", opt_str, opt_len);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000838 if (res) {
839 blksize = tftp_blksize_check(res, 65564);
840 if (blksize < 0) {
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200841 G_error_pkt_reason = ERR_BAD_OPT;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000842 /* will just send error pkt */
843 goto do_proto;
844 }
845 }
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100846 if (opcode != TFTP_WRQ /* download? */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000847 /* did client ask us about file size? */
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100848 && tftp_get_option("tsize", opt_str, opt_len)
849 ) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100850 want_transfer_size = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100851 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000852 }
853 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100854# endif
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000855
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000856 if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000857 if (opt & TFTPD_OPT_r) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000858 /* This would mean "disk full" - not true */
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200859 /*G_error_pkt_reason = ERR_WRITE;*/
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000860 error_msg = bb_msg_write_error;
861 goto err;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000862 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000863 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000864 } else {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000865 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000866 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000867
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200868 /* NB: if G_error_pkt_str or G_error_pkt_reason is set up,
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000869 * tftp_protocol() just sends one error pkt and returns */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000870
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000871 do_proto:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000872 close(STDIN_FILENO); /* close old, possibly wildcard socket */
873 /* tftp_protocol() will create new one, bound to particular local IP */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000874 result = tftp_protocol(
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000875 our_lsa, peer_lsa,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000876 local_file IF_TFTP(, NULL /*remote_file*/)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100877 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000878 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000879 );
880
881 return result;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000882 err:
Denys Vlasenkodbed6c42012-07-18 17:32:32 +0200883 strcpy(G_error_pkt_str, error_msg);
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000884 goto do_proto;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000885}
886
887#endif /* ENABLE_TFTPD */
888
Denis Vlasenko31635552007-01-20 16:54:19 +0000889#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */