blob: 35cf0dbd99cb58d4c0866a1220cbcbbbdb597012 [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 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
Mark Whitley450736c2001-03-02 19:08:50 +000022
Denis Vlasenko31635552007-01-20 16:54:19 +000023#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
24
Denis Vlasenko4824cca2008-03-21 18:29:01 +000025#define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */
26#define TFTP_BLKSIZE_DEFAULT_STR "512"
Denys Vlasenko5b1dfe62010-06-18 02:47:27 +020027/* Was 50 ms but users asked to bump it up a bit */
28#define TFTP_TIMEOUT_MS 100
Denis Vlasenko4824cca2008-03-21 18:29:01 +000029#define TFTP_MAXTIMEOUT_MS 2000
30#define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +000031
Glenn L McGrathad117d82001-10-05 04:40:37 +000032/* opcodes we support */
Glenn L McGrathad117d82001-10-05 04:40:37 +000033#define TFTP_RRQ 1
34#define TFTP_WRQ 2
35#define TFTP_DATA 3
36#define TFTP_ACK 4
37#define TFTP_ERROR 5
38#define TFTP_OACK 6
39
Denis Vlasenko8474cd32008-06-16 07:12:19 +000040/* error codes sent over network (we use only 0, 1, 3 and 8) */
Denis Vlasenko71c9f012008-03-19 09:43:50 +000041/* generic (error message is included in the packet) */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000042#define ERR_UNSPEC 0
43#define ERR_NOFILE 1
44#define ERR_ACCESS 2
Denis Vlasenko71c9f012008-03-19 09:43:50 +000045/* disk full or allocation exceeded */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000046#define ERR_WRITE 3
47#define ERR_OP 4
48#define ERR_BAD_ID 5
49#define ERR_EXIST 6
50#define ERR_BAD_USER 7
51#define ERR_BAD_OPT 8
52
Denis Vlasenko403a5a22008-03-19 13:07:00 +000053/* masks coming from getopt32 */
54enum {
55 TFTP_OPT_GET = (1 << 0),
56 TFTP_OPT_PUT = (1 << 1),
57 /* pseudo option: if set, it's tftpd */
58 TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
59 TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
60 TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
61 TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
62};
63
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000064#if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000065#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000066#define CMD_GET(cmd) 1
67#define CMD_PUT(cmd) 0
68#elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000069#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000070#define CMD_GET(cmd) 0
71#define CMD_PUT(cmd) 1
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +000072#else
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000073#define IF_GETPUT(...) __VA_ARGS__
Denis Vlasenko403a5a22008-03-19 13:07:00 +000074#define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
75#define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +000076#endif
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000077/* NB: in the code below
Denis Vlasenkoa04561f2007-05-08 23:12:21 +000078 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000079 */
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +000080
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000081
82struct globals {
83 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
84 uint8_t error_pkt[4 + 32];
Denis Vlasenko403a5a22008-03-19 13:07:00 +000085 char *user_opt;
Denis Vlasenko71c9f012008-03-19 09:43:50 +000086 /* used in tftpd_main(), a bit big for stack: */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000087 char block_buf[TFTP_BLKSIZE_DEFAULT];
Magnus Damm8bd0af92009-11-08 18:03:09 +010088#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
89 off_t pos;
90 off_t size;
91 const char *file;
92 bb_progress_t pmt;
93#endif
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010094} FIX_ALIASING;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000095#define G (*(struct globals*)&bb_common_bufsiz1)
Magnus Damm8bd0af92009-11-08 18:03:09 +010096struct BUG_G_too_big {
97 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
98};
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000099#define block_buf (G.block_buf )
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000100#define user_opt (G.user_opt )
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000101#define error_pkt (G.error_pkt )
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000102#define INIT_G() do { } while (0)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000103
104#define error_pkt_reason (error_pkt[3])
105#define error_pkt_str (error_pkt + 4)
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000106
Magnus Damm8bd0af92009-11-08 18:03:09 +0100107#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100108static void tftp_progress_update(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100109{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100110 bb_progress_update(&G.pmt, 0, G.pos, G.size);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100111}
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100112static void tftp_progress_init(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100113{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100114 bb_progress_init(&G.pmt, G.file);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100115 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100116}
117static void tftp_progress_done(void)
118{
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100119 if (is_bb_progress_inited(&G.pmt)) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100120 tftp_progress_update();
121 bb_putchar_stderr('\n');
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100122 bb_progress_free(&G.pmt);
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100123 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100124}
125#else
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100126# define tftp_progress_init() ((void)0)
127# define tftp_progress_done() ((void)0)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100128#endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000129
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000130#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Glenn L McGrathad117d82001-10-05 04:40:37 +0000131
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000132static int tftp_blksize_check(const char *blksize_str, int maxsize)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000133{
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000134 /* Check if the blksize is valid:
Glenn L McGrathad117d82001-10-05 04:40:37 +0000135 * RFC2348 says between 8 and 65464,
136 * but our implementation makes it impossible
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000137 * to use blksizes smaller than 22 octets. */
138 unsigned blksize = bb_strtou(blksize_str, NULL, 10);
139 if (errno
140 || (blksize < 24) || (blksize > maxsize)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000141 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000142 bb_error_msg("bad blocksize '%s'", blksize_str);
143 return -1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000144 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100145# if ENABLE_TFTP_DEBUG
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000146 bb_error_msg("using blksize %u", blksize);
Magnus Dammbbd42352009-11-08 18:00:59 +0100147# endif
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000148 return blksize;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000149}
150
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000151static char *tftp_get_option(const char *option, char *buf, int len)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000152{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000153 int opt_val = 0;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000154 int opt_found = 0;
155 int k;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000156
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000157 /* buf points to:
158 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
159
Glenn L McGrathad117d82001-10-05 04:40:37 +0000160 while (len > 0) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000161 /* Make sure options are terminated correctly */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000162 for (k = 0; k < len; k++) {
163 if (buf[k] == '\0') {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000164 goto nul_found;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000165 }
166 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000167 return NULL;
168 nul_found:
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000169 if (opt_val == 0) { /* it's "name" part */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000170 if (strcasecmp(buf, option) == 0) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000171 opt_found = 1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000172 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000173 } else if (opt_found) {
174 return buf;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000175 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000176
Glenn L McGrathad117d82001-10-05 04:40:37 +0000177 k++;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000178 buf += k;
179 len -= k;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000180 opt_val ^= 1;
181 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000182
Glenn L McGrathad117d82001-10-05 04:40:37 +0000183 return NULL;
184}
185
186#endif
187
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000188static int tftp_protocol(
Magnus Dammbbd42352009-11-08 18:00:59 +0100189 /* NULL if tftp, !NULL if tftpd: */
190 len_and_sockaddr *our_lsa,
Denis Vlasenko0850cda2007-02-07 23:20:32 +0000191 len_and_sockaddr *peer_lsa,
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000192 const char *local_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000193 IF_TFTP(, const char *remote_file)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000194#if !ENABLE_TFTP
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200195# define remote_file NULL
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000196#endif
Magnus Dammbbd42352009-11-08 18:00:59 +0100197 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100198 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
Magnus Dammbbd42352009-11-08 18:00:59 +0100199 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
200{
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000201#if !ENABLE_FEATURE_TFTP_BLOCKSIZE
202 enum { blksize = TFTP_BLKSIZE_DEFAULT };
203#endif
204
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000205 struct pollfd pfd[1];
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000206#define socket_fd (pfd[0].fd)
Bernhard Reutner-Fischer62f98562006-06-10 14:32:56 +0000207 int len;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000208 int send_len;
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200209 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000210 smallint finished = 0;
211 uint16_t opcode;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000212 uint16_t block_nr;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000213 uint16_t recv_blk;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000214 int open_mode, local_fd;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000215 int retries, waittime_ms;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000216 int io_bufsize = blksize + 4;
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000217 char *cp;
Eric Andersen744a1942001-11-10 11:16:39 +0000218 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200219 * size varies meaning BUFFERS_GO_ON_STACK would fail.
220 *
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200221 * We must keep the transmit and receive buffers separate
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200222 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
223 */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000224 char *xbuf = xmalloc(io_bufsize);
225 char *rbuf = xmalloc(io_bufsize);
Mark Whitley450736c2001-03-02 19:08:50 +0000226
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000227 socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
228 setsockopt_reuseaddr(socket_fd);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000229
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200230 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000231 /* Create a socket which is:
232 * 1. bound to IP:port peer sent 1st datagram to,
233 * 2. connected to peer's IP:port
234 * This way we will answer from the IP:port peer
235 * expects, will not get any other packets on
236 * the socket, and also plain read/write will work. */
237 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
238 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000239
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000240 /* Is there an error already? Send pkt and bail out */
241 if (error_pkt_reason || error_pkt_str[0])
242 goto send_err_pkt;
243
Denis Vlasenko7a601332008-03-19 13:24:13 +0000244 if (user_opt) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000245 struct passwd *pw = xgetpwnam(user_opt);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000246 change_identity(pw); /* initgroups, setgid, setuid */
247 }
248 }
249
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200250 /* Prepare open mode */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000251 if (CMD_PUT(option_mask32)) {
252 open_mode = O_RDONLY;
253 } else {
254 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
255#if ENABLE_TFTPD
256 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
257 /* tftpd without -c */
258 open_mode = O_WRONLY | O_TRUNC;
259 }
260#endif
261 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200262
Denys Vlasenkobac9f032009-07-25 01:56:23 +0200263 /* Examples of network traffic.
264 * Note two cases when ACKs with block# of 0 are sent.
265 *
266 * Download without options:
267 * tftp -> "\0\1FILENAME\0octet\0"
268 * "\0\3\0\1FILEDATA..." <- tftpd
269 * tftp -> "\0\4\0\1"
270 * ...
271 * Download with option of blksize 16384:
272 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
273 * "\0\6blksize\00016384\0" <- tftpd
274 * tftp -> "\0\4\0\0"
275 * "\0\3\0\1FILEDATA..." <- tftpd
276 * tftp -> "\0\4\0\1"
277 * ...
278 * Upload without options:
279 * tftp -> "\0\2FILENAME\0octet\0"
280 * "\0\4\0\0" <- tftpd
281 * tftp -> "\0\3\0\1FILEDATA..."
282 * "\0\4\0\1" <- tftpd
283 * ...
284 * Upload with option of blksize 16384:
285 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
286 * "\0\6blksize\00016384\0" <- tftpd
287 * tftp -> "\0\3\0\1FILEDATA..."
288 * "\0\4\0\1" <- tftpd
289 * ...
290 */
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200291 block_nr = 1;
292 cp = xbuf + 2;
293
294 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
295 /* Open file (must be after changing user) */
Denys Vlasenko4b061462010-02-02 01:01:40 +0100296 local_fd = open(local_file, open_mode, 0666);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000297 if (local_fd < 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000298 error_pkt_reason = ERR_NOFILE;
Denis Vlasenko55995022008-05-18 22:28:26 +0000299 strcpy((char*)error_pkt_str, "can't open file");
Denis Vlasenko7a601332008-03-19 13:24:13 +0000300 goto send_err_pkt;
301 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000302/* gcc 4.3.1 would NOT optimize it out as it should! */
303#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100304 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000305 /* Create and send OACK packet. */
306 /* For the download case, block_nr is still 1 -
307 * we expect 1st ACK from peer to be for (block_nr-1),
308 * that is, for "block 0" which is our OACK pkt */
309 opcode = TFTP_OACK;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000310 goto add_blksize_opt;
311 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000312#endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200313 if (CMD_GET(option_mask32)) {
314 /* It's upload and we don't send OACK.
315 * We must ACK 1st packet (with filename)
316 * as if it is "block 0" */
317 block_nr = 0;
318 }
319
320 } else { /* tftp */
321 /* Open file (must be after changing user) */
322 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
323 if (NOT_LONE_DASH(local_file))
324 local_fd = xopen(local_file, open_mode);
325/* Removing #if, or using if() statement instead of #if may lead to
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000326 * "warning: null argument where non-null required": */
327#if ENABLE_TFTP
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000328 /* tftp */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000329
330 /* We can't (and don't really need to) bind the socket:
331 * we don't know from which local IP datagrams will be sent,
332 * but kernel will pick the same IP every time (unless routing
333 * table is changed), thus peer will see dgrams consistently
334 * coming from the same IP.
335 * We would like to connect the socket, but since peer's
336 * UDP code can be less perfect than ours, _peer's_ IP:port
337 * in replies may differ from IP:port we used to send
338 * our first packet. We can connect() only when we get
339 * first reply. */
340
341 /* build opcode */
342 opcode = TFTP_WRQ;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000343 if (CMD_GET(option_mask32)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000344 opcode = TFTP_RRQ;
345 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000346 /* add filename and mode */
347 /* fill in packet if the filename fits into xbuf */
348 len = strlen(remote_file) + 1;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000349 if (2 + len + sizeof("octet") >= io_bufsize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000350 bb_error_msg("remote filename is too long");
351 goto ret;
352 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000353 strcpy(cp, remote_file);
354 cp += len;
Magnus Dammbbd42352009-11-08 18:00:59 +0100355 /* add "mode" part of the packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000356 strcpy(cp, "octet");
357 cp += sizeof("octet");
358
Magnus Dammbbd42352009-11-08 18:00:59 +0100359# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100360 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000361 goto send_pkt;
362
Magnus Dammbbd42352009-11-08 18:00:59 +0100363 /* Need to add option to pkt */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100364 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000365 bb_error_msg("remote filename is too long");
366 goto ret;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000367 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200368 expect_OACK = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100369# endif
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000370#endif /* ENABLE_TFTP */
371
Denis Vlasenko31e12862008-06-16 07:32:40 +0000372#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000373 add_blksize_opt:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000374 if (blksize != TFTP_BLKSIZE_DEFAULT) {
375 /* add "blksize", <nul>, blksize, <nul> */
376 strcpy(cp, "blksize");
377 cp += sizeof("blksize");
378 cp += snprintf(cp, 6, "%d", blksize) + 1;
379 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100380 if (want_transfer_size) {
Magnus Dammbbd42352009-11-08 18:00:59 +0100381 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
382 /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
383 * and this makes server to send "tsize" option with the size */
384 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
385 /* if tftpd and downloading, we are answering to client's request */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100386 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
Magnus Dammbbd42352009-11-08 18:00:59 +0100387 struct stat st;
388 strcpy(cp, "tsize");
389 cp += sizeof("tsize");
390 st.st_size = 0;
391 fstat(local_fd, &st);
392 cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
Magnus Damm8bd0af92009-11-08 18:03:09 +0100393# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Magnus Dammbbd42352009-11-08 18:00:59 +0100394 /* Save for progress bar. If 0 (tftp downloading),
395 * we look at server's reply later */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100396 G.size = st.st_size;
397 if (remote_file && st.st_size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100398 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100399# endif
400 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000401#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000402 /* First packet is built, so skip packet generation */
403 goto send_pkt;
404 }
Mark Whitley450736c2001-03-02 19:08:50 +0000405
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000406 /* Using mostly goto's - continue/break will be less clear
407 * in where we actually jump to */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000408 while (1) {
409 /* Build ACK or DATA */
410 cp = xbuf + 2;
411 *((uint16_t*)cp) = htons(block_nr);
412 cp += 2;
413 block_nr++;
414 opcode = TFTP_ACK;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000415 if (CMD_PUT(option_mask32)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000416 opcode = TFTP_DATA;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000417 len = full_read(local_fd, cp, blksize);
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000418 if (len < 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000419 goto send_read_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000420 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000421 if (len != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000422 finished = 1;
423 }
424 cp += len;
Mark Whitley450736c2001-03-02 19:08:50 +0000425 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000426 send_pkt:
427 /* Send packet */
428 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000429 send_len = cp - xbuf;
430 /* NB: send_len value is preserved in code below
431 * for potential resend */
Paul Fox40f0bcf2007-09-06 17:52:22 +0000432
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200433 retries = TFTP_NUM_RETRIES; /* re-initialize */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000434 waittime_ms = TFTP_TIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000435
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000436 send_again:
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000437#if ENABLE_TFTP_DEBUG
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000438 fprintf(stderr, "sending %u bytes\n", send_len);
439 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
440 fprintf(stderr, "%02x ", (unsigned char) *cp);
441 fprintf(stderr, "\n");
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000442#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000443 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100444
445#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100446 if (ENABLE_TFTP && remote_file) /* tftp */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100447 G.pos = (block_nr - 1) * (uoff_t)blksize;
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100448 if (is_bb_progress_inited(&G.pmt))
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100449 tftp_progress_update();
Magnus Damm8bd0af92009-11-08 18:03:09 +0100450#endif
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000451 /* Was it final ACK? then exit */
452 if (finished && (opcode == TFTP_ACK))
453 goto ret;
Mark Whitley450736c2001-03-02 19:08:50 +0000454
Denis Vlasenko2c916522007-01-12 14:57:37 +0000455 recv_again:
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000456 /* Receive packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000457 /*pfd[0].fd = socket_fd;*/
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000458 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000459 switch (safe_poll(pfd, 1, waittime_ms)) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000460 default:
461 /*bb_perror_msg("poll"); - done in safe_poll */
462 goto ret;
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000463 case 0:
Paul Fox40f0bcf2007-09-06 17:52:22 +0000464 retries--;
465 if (retries == 0) {
Denys Vlasenko84dba9c2011-01-10 12:51:44 +0100466 tftp_progress_done();
Paul Fox40f0bcf2007-09-06 17:52:22 +0000467 bb_error_msg("timeout");
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000468 goto ret; /* no err packet sent */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000469 }
Paul Fox40f0bcf2007-09-06 17:52:22 +0000470
471 /* exponential backoff with limit */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000472 waittime_ms += waittime_ms/2;
473 if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
474 waittime_ms = TFTP_MAXTIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000475 }
476
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000477 goto send_again; /* resend last sent pkt */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000478 case 1:
479 if (!our_lsa) {
480 /* tftp (not tftpd!) receiving 1st packet */
481 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
482 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
483 &peer_lsa->u.sa, &peer_lsa->len);
484 /* Our first dgram went to port 69
485 * but reply may come from different one.
486 * Remember and use this new port (and IP) */
487 if (len >= 0)
488 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
489 } else {
490 /* tftpd, or not the very first packet:
491 * socket is connect()ed, can just read from it. */
492 /* Don't full_read()!
493 * This is not TCP, one read == one pkt! */
494 len = safe_read(socket_fd, rbuf, io_bufsize);
495 }
496 if (len < 0) {
497 goto send_read_err_pkt;
498 }
499 if (len < 4) { /* too small? */
500 goto recv_again;
501 }
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000502 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000503
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000504 /* Process recv'ed packet */
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000505 opcode = ntohs( ((uint16_t*)rbuf)[0] );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000506 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000507#if ENABLE_TFTP_DEBUG
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000508 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000509#endif
Glenn L McGrathad117d82001-10-05 04:40:37 +0000510 if (opcode == TFTP_ERROR) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000511 static const char errcode_str[] ALIGN1 =
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000512 "\0"
513 "file not found\0"
514 "access violation\0"
515 "disk full\0"
516 "bad operation\0"
517 "unknown transfer id\0"
518 "file already exists\0"
519 "no such user\0"
520 "bad option";
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000521
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000522 const char *msg = "";
Glenn L McGrathad117d82001-10-05 04:40:37 +0000523
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000524 if (len > 4 && rbuf[4] != '\0') {
Denis Vlasenko10f7dd12006-12-17 01:14:08 +0000525 msg = &rbuf[4];
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000526 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
527 } else if (recv_blk <= 8) {
528 msg = nth_string(errcode_str, recv_blk);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000529 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000530 bb_error_msg("server error: (%u) %s", recv_blk, msg);
531 goto ret;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000532 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000533
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000534#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200535 if (expect_OACK) {
536 expect_OACK = 0;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000537 if (opcode == TFTP_OACK) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000538 /* server seems to support options */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000539 char *res;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000540
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000541 res = tftp_get_option("blksize", &rbuf[2], len - 2);
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000542 if (res) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000543 blksize = tftp_blksize_check(res, blksize);
544 if (blksize < 0) {
545 error_pkt_reason = ERR_BAD_OPT;
546 goto send_err_pkt;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000547 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000548 io_bufsize = blksize + 4;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000549 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100550# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100551 if (remote_file && G.size == 0) { /* if we don't know it yet */
Magnus Dammbbd42352009-11-08 18:00:59 +0100552 res = tftp_get_option("tsize", &rbuf[2], len - 2);
553 if (res) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100554 G.size = bb_strtoull(res, NULL, 10);
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100555 if (G.size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100556 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100557 }
558 }
559# endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200560 if (CMD_GET(option_mask32)) {
561 /* We'll send ACK for OACK,
562 * such ACK has "block no" of 0 */
563 block_nr = 0;
564 }
565 continue;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000566 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200567 /* rfc2347:
568 * "An option not acknowledged by the server
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100569 * must be ignored by the client and server
570 * as if it were never requested." */
Denys Vlasenko53e2f382010-06-12 03:29:58 +0200571 if (blksize != TFTP_BLKSIZE_DEFAULT)
572 bb_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000573 blksize = TFTP_BLKSIZE_DEFAULT;
574 io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000575 }
576#endif
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000577 /* block_nr is already advanced to next block# we expect
578 * to get / block# we are about to send next time */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000579
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000580 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000581 if (recv_blk == block_nr) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000582 int sz = full_write(local_fd, &rbuf[4], len - 4);
583 if (sz != len - 4) {
Denis Vlasenko55995022008-05-18 22:28:26 +0000584 strcpy((char*)error_pkt_str, bb_msg_write_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000585 error_pkt_reason = ERR_WRITE;
586 goto send_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000587 }
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000588 if (sz != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000589 finished = 1;
Mark Whitley450736c2001-03-02 19:08:50 +0000590 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000591 continue; /* send ACK */
Mark Whitley450736c2001-03-02 19:08:50 +0000592 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200593/* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
594#if 0
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000595 if (recv_blk == (block_nr - 1)) {
Paul Fox1d4c88c2005-07-20 19:49:15 +0000596 /* Server lost our TFTP_ACK. Resend it */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000597 block_nr = recv_blk;
Paul Fox1d4c88c2005-07-20 19:49:15 +0000598 continue;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000599 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200600#endif
Mark Whitley450736c2001-03-02 19:08:50 +0000601 }
602
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000603 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000604 /* did peer ACK our last DATA pkt? */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000605 if (recv_blk == (uint16_t) (block_nr - 1)) {
606 if (finished)
607 goto ret;
608 continue; /* send next block */
Mark Whitley450736c2001-03-02 19:08:50 +0000609 }
610 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000611 /* Awww... recv'd packet is not recognized! */
612 goto recv_again;
613 /* why recv_again? - rfc1123 says:
614 * "The sender (i.e., the side originating the DATA packets)
615 * must never resend the current DATA packet on receipt
616 * of a duplicate ACK".
617 * DATA pkts are resent ONLY on timeout.
618 * Thus "goto send_again" will ba a bad mistake above.
619 * See:
620 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
621 */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000622 } /* end of "while (1)" */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000623 ret:
Denis Vlasenko2c916522007-01-12 14:57:37 +0000624 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000625 close(local_fd);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000626 close(socket_fd);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000627 free(xbuf);
628 free(rbuf);
629 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000630 return finished == 0; /* returns 1 on failure */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000631
632 send_read_err_pkt:
Denis Vlasenko55995022008-05-18 22:28:26 +0000633 strcpy((char*)error_pkt_str, bb_msg_read_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000634 send_err_pkt:
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000635 if (error_pkt_str[0])
Denys Vlasenko0939f2e2009-10-24 17:47:56 +0200636 bb_error_msg("%s", (char*)error_pkt_str);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000637 error_pkt[1] = TFTP_ERROR;
Denis Vlasenko55995022008-05-18 22:28:26 +0000638 xsendto(socket_fd, error_pkt, 4 + 1 + strlen((char*)error_pkt_str),
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000639 &peer_lsa->u.sa, peer_lsa->len);
640 return EXIT_FAILURE;
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000641#undef remote_file
Mark Whitley450736c2001-03-02 19:08:50 +0000642}
643
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000644#if ENABLE_TFTP
645
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000646int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000647int tftp_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley450736c2001-03-02 19:08:50 +0000648{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000649 len_and_sockaddr *peer_lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000650 const char *local_file = NULL;
651 const char *remote_file = NULL;
Magnus Dammbbd42352009-11-08 18:00:59 +0100652# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000653 const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000654 int blksize;
Magnus Dammbbd42352009-11-08 18:00:59 +0100655# endif
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000656 int result;
657 int port;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000658 IF_GETPUT(int opt;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000659
660 INIT_G();
Mark Whitley450736c2001-03-02 19:08:50 +0000661
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000662 /* -p or -g is mandatory, and they are mutually exclusive */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000663 opt_complementary = "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
664 IF_GETPUT("g--p:p--g:");
Glenn L McGrathad117d82001-10-05 04:40:37 +0000665
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000666 IF_GETPUT(opt =) getopt32(argv,
667 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
668 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000669 &local_file, &remote_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000670 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str));
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000671 argv += optind;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000672
Magnus Dammbbd42352009-11-08 18:00:59 +0100673# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000674 /* Check if the blksize is valid:
675 * RFC2348 says between 8 and 65464 */
676 blksize = tftp_blksize_check(blksize_str, 65564);
677 if (blksize < 0) {
678 //bb_error_msg("bad block size");
Denis Vlasenko1d426652008-03-17 09:09:09 +0000679 return EXIT_FAILURE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000680 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100681# endif
Mark Whitley450736c2001-03-02 19:08:50 +0000682
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000683 if (remote_file) {
684 if (!local_file) {
685 const char *slash = strrchr(remote_file, '/');
686 local_file = slash ? slash + 1 : remote_file;
687 }
688 } else {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000689 remote_file = local_file;
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000690 }
691
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000692 /* Error if filename or host is not known */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000693 if (!remote_file || !argv[0])
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000694 bb_show_usage();
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000695
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000696 port = bb_lookup_port(argv[1], "udp", 69);
697 peer_lsa = xhost2sockaddr(argv[0], port);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000698
Magnus Dammbbd42352009-11-08 18:00:59 +0100699# if ENABLE_TFTP_DEBUG
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000700 fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000701 xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000702 remote_file, local_file);
Magnus Dammbbd42352009-11-08 18:00:59 +0100703# endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000704
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100705# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
706 G.file = remote_file;
707# endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000708 result = tftp_protocol(
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000709 NULL /*our_lsa*/, peer_lsa,
710 local_file, remote_file
Magnus Damm8bd0af92009-11-08 18:03:09 +0100711 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000712 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000713 );
Magnus Damm8bd0af92009-11-08 18:03:09 +0100714 tftp_progress_done();
Mark Whitley450736c2001-03-02 19:08:50 +0000715
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000716 if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000717 unlink(local_file);
Eric Andersena66a43e2002-04-13 09:30:25 +0000718 }
Denis Vlasenko000b9ba2006-10-05 23:12:49 +0000719 return result;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000720}
Denis Vlasenko31635552007-01-20 16:54:19 +0000721
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000722#endif /* ENABLE_TFTP */
723
724#if ENABLE_TFTPD
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000725int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000726int tftpd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000727{
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000728 len_and_sockaddr *our_lsa;
729 len_and_sockaddr *peer_lsa;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000730 char *local_file, *mode;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000731 const char *error_msg;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000732 int opt, result, opcode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000733 IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100734 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000735
736 INIT_G();
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000737
738 our_lsa = get_sock_lsa(STDIN_FILENO);
Denis Vlasenko5a897632008-11-01 00:22:24 +0000739 if (!our_lsa) {
740 /* This is confusing:
741 *bb_error_msg_and_die("stdin is not a socket");
742 * Better: */
743 bb_show_usage();
744 /* Help text says that tftpd must be used as inetd service,
745 * which is by far the most usual cause of get_sock_lsa
746 * failure */
747 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000748 peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
749 peer_lsa->len = our_lsa->len;
750
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000751 /* Shifting to not collide with TFTP_OPTs */
752 opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:", &user_opt) << 8);
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000753 argv += optind;
754 if (argv[0])
755 xchdir(argv[0]);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000756
757 result = recv_from_to(STDIN_FILENO, block_buf, sizeof(block_buf),
758 0 /* flags */,
759 &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
760
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000761 error_msg = "malformed packet";
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000762 opcode = ntohs(*(uint16_t*)block_buf);
763 if (result < 4 || result >= sizeof(block_buf)
764 || block_buf[result-1] != '\0'
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000765 || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
766 IF_GETPUT(&&)
767 IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000768 )
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000769 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000770 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000771 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000772 local_file = block_buf + 2;
773 if (local_file[0] == '.' || strstr(local_file, "/.")) {
Denis Vlasenko0a0180c2008-03-19 23:37:32 +0000774 error_msg = "dot in file name";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000775 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000776 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000777 mode = local_file + strlen(local_file) + 1;
778 if (mode >= block_buf + result || strcmp(mode, "octet") != 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000779 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000780 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100781# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000782 {
783 char *res;
784 char *opt_str = mode + sizeof("octet");
785 int opt_len = block_buf + result - opt_str;
786 if (opt_len > 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000787 res = tftp_get_option("blksize", opt_str, opt_len);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000788 if (res) {
789 blksize = tftp_blksize_check(res, 65564);
790 if (blksize < 0) {
791 error_pkt_reason = ERR_BAD_OPT;
792 /* will just send error pkt */
793 goto do_proto;
794 }
795 }
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100796 if (opcode != TFTP_WRQ /* download? */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000797 /* did client ask us about file size? */
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100798 && tftp_get_option("tsize", opt_str, opt_len)
799 ) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100800 want_transfer_size = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100801 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000802 }
803 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100804# endif
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000805
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000806 if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000807 if (opt & TFTPD_OPT_r) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000808 /* This would mean "disk full" - not true */
809 /*error_pkt_reason = ERR_WRITE;*/
810 error_msg = bb_msg_write_error;
811 goto err;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000812 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000813 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000814 } else {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000815 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000816 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000817
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000818 /* NB: if error_pkt_str or error_pkt_reason is set up,
819 * tftp_protocol() just sends one error pkt and returns */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000820
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000821 do_proto:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000822 close(STDIN_FILENO); /* close old, possibly wildcard socket */
823 /* tftp_protocol() will create new one, bound to particular local IP */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000824 result = tftp_protocol(
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000825 our_lsa, peer_lsa,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000826 local_file IF_TFTP(, NULL /*remote_file*/)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100827 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000828 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000829 );
830
831 return result;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000832 err:
Denis Vlasenko55995022008-05-18 22:28:26 +0000833 strcpy((char*)error_pkt_str, error_msg);
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000834 goto do_proto;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000835}
836
837#endif /* ENABLE_TFTPD */
838
Denis Vlasenko31635552007-01-20 16:54:19 +0000839#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */