blob: d76f7ae5b9a5df628d1e7231822dee47fcc60e8a [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 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +000019 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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"
27#define TFTP_TIMEOUT_MS 50
28#define TFTP_MAXTIMEOUT_MS 2000
29#define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +000030
Glenn L McGrathad117d82001-10-05 04:40:37 +000031/* opcodes we support */
Glenn L McGrathad117d82001-10-05 04:40:37 +000032#define TFTP_RRQ 1
33#define TFTP_WRQ 2
34#define TFTP_DATA 3
35#define TFTP_ACK 4
36#define TFTP_ERROR 5
37#define TFTP_OACK 6
38
Denis Vlasenko8474cd32008-06-16 07:12:19 +000039/* error codes sent over network (we use only 0, 1, 3 and 8) */
Denis Vlasenko71c9f012008-03-19 09:43:50 +000040/* generic (error message is included in the packet) */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000041#define ERR_UNSPEC 0
42#define ERR_NOFILE 1
43#define ERR_ACCESS 2
Denis Vlasenko71c9f012008-03-19 09:43:50 +000044/* disk full or allocation exceeded */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000045#define ERR_WRITE 3
46#define ERR_OP 4
47#define ERR_BAD_ID 5
48#define ERR_EXIST 6
49#define ERR_BAD_USER 7
50#define ERR_BAD_OPT 8
51
Denis Vlasenko403a5a22008-03-19 13:07:00 +000052/* masks coming from getopt32 */
53enum {
54 TFTP_OPT_GET = (1 << 0),
55 TFTP_OPT_PUT = (1 << 1),
56 /* pseudo option: if set, it's tftpd */
57 TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
58 TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
59 TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
60 TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
61};
62
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000063#if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000064#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000065#define CMD_GET(cmd) 1
66#define CMD_PUT(cmd) 0
67#elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000068#define IF_GETPUT(...)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000069#define CMD_GET(cmd) 0
70#define CMD_PUT(cmd) 1
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +000071#else
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000072#define IF_GETPUT(...) __VA_ARGS__
Denis Vlasenko403a5a22008-03-19 13:07:00 +000073#define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
74#define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +000075#endif
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000076/* NB: in the code below
Denis Vlasenkoa04561f2007-05-08 23:12:21 +000077 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000078 */
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +000079
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000080
81struct globals {
82 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
83 uint8_t error_pkt[4 + 32];
Denis Vlasenko403a5a22008-03-19 13:07:00 +000084 char *user_opt;
Denis Vlasenko71c9f012008-03-19 09:43:50 +000085 /* used in tftpd_main(), a bit big for stack: */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000086 char block_buf[TFTP_BLKSIZE_DEFAULT];
Magnus Damm8bd0af92009-11-08 18:03:09 +010087#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
88 off_t pos;
89 off_t size;
90 const char *file;
91 bb_progress_t pmt;
92#endif
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010093} FIX_ALIASING;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000094#define G (*(struct globals*)&bb_common_bufsiz1)
Magnus Damm8bd0af92009-11-08 18:03:09 +010095struct BUG_G_too_big {
96 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
97};
Denis Vlasenkodd9228b2008-03-19 05:00:05 +000098#define block_buf (G.block_buf )
Denis Vlasenko403a5a22008-03-19 13:07:00 +000099#define user_opt (G.user_opt )
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000100#define error_pkt (G.error_pkt )
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000101#define INIT_G() do { } while (0)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000102
103#define error_pkt_reason (error_pkt[3])
104#define error_pkt_str (error_pkt + 4)
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000105
Magnus Damm8bd0af92009-11-08 18:03:09 +0100106#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
107/* SIGALRM logic nicked from the wget applet */
108static void progress_meter(int flag)
109{
110 /* We can be called from signal handler */
111 int save_errno = errno;
112
113 if (flag == -1) { /* first call to progress_meter */
114 bb_progress_init(&G.pmt);
115 }
116
117 bb_progress_update(&G.pmt, G.file, 0, G.pos, G.size);
118
119 if (flag == 0) {
120 /* last call to progress_meter */
121 alarm(0);
122 fputc('\n', stderr);
123 } else {
124 if (flag == -1) { /* first call to progress_meter */
125 signal_SA_RESTART_empty_mask(SIGALRM, progress_meter);
126 }
127 alarm(1);
128 }
129
130 errno = save_errno;
131}
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100132static void tftp_progress_init(void)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100133{
Magnus Damm8bd0af92009-11-08 18:03:09 +0100134 progress_meter(-1);
135}
136static void tftp_progress_done(void)
137{
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100138 if (G.pmt.inited)
139 progress_meter(0);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100140}
141#else
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100142# define tftp_progress_init() ((void)0)
143# define tftp_progress_done() ((void)0)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100144#endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000145
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000146#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Glenn L McGrathad117d82001-10-05 04:40:37 +0000147
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000148static int tftp_blksize_check(const char *blksize_str, int maxsize)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000149{
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000150 /* Check if the blksize is valid:
Glenn L McGrathad117d82001-10-05 04:40:37 +0000151 * RFC2348 says between 8 and 65464,
152 * but our implementation makes it impossible
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000153 * to use blksizes smaller than 22 octets. */
154 unsigned blksize = bb_strtou(blksize_str, NULL, 10);
155 if (errno
156 || (blksize < 24) || (blksize > maxsize)
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000157 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000158 bb_error_msg("bad blocksize '%s'", blksize_str);
159 return -1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000160 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100161# if ENABLE_TFTP_DEBUG
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000162 bb_error_msg("using blksize %u", blksize);
Magnus Dammbbd42352009-11-08 18:00:59 +0100163# endif
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000164 return blksize;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000165}
166
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000167static char *tftp_get_option(const char *option, char *buf, int len)
Glenn L McGrathad117d82001-10-05 04:40:37 +0000168{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000169 int opt_val = 0;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000170 int opt_found = 0;
171 int k;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000172
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000173 /* buf points to:
174 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
175
Glenn L McGrathad117d82001-10-05 04:40:37 +0000176 while (len > 0) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000177 /* Make sure options are terminated correctly */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000178 for (k = 0; k < len; k++) {
179 if (buf[k] == '\0') {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000180 goto nul_found;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000181 }
182 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000183 return NULL;
184 nul_found:
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000185 if (opt_val == 0) { /* it's "name" part */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000186 if (strcasecmp(buf, option) == 0) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000187 opt_found = 1;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000188 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000189 } else if (opt_found) {
190 return buf;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000191 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000192
Glenn L McGrathad117d82001-10-05 04:40:37 +0000193 k++;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000194 buf += k;
195 len -= k;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000196 opt_val ^= 1;
197 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000198
Glenn L McGrathad117d82001-10-05 04:40:37 +0000199 return NULL;
200}
201
202#endif
203
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000204static int tftp_protocol(
Magnus Dammbbd42352009-11-08 18:00:59 +0100205 /* NULL if tftp, !NULL if tftpd: */
206 len_and_sockaddr *our_lsa,
Denis Vlasenko0850cda2007-02-07 23:20:32 +0000207 len_and_sockaddr *peer_lsa,
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000208 const char *local_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000209 IF_TFTP(, const char *remote_file)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000210#if !ENABLE_TFTP
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200211# define remote_file NULL
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000212#endif
Magnus Dammbbd42352009-11-08 18:00:59 +0100213 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100214 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
Magnus Dammbbd42352009-11-08 18:00:59 +0100215 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
216{
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000217#if !ENABLE_FEATURE_TFTP_BLOCKSIZE
218 enum { blksize = TFTP_BLKSIZE_DEFAULT };
219#endif
220
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000221 struct pollfd pfd[1];
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000222#define socket_fd (pfd[0].fd)
Bernhard Reutner-Fischer62f98562006-06-10 14:32:56 +0000223 int len;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000224 int send_len;
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200225 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000226 smallint finished = 0;
227 uint16_t opcode;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000228 uint16_t block_nr;
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000229 uint16_t recv_blk;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000230 int open_mode, local_fd;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000231 int retries, waittime_ms;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000232 int io_bufsize = blksize + 4;
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000233 char *cp;
Eric Andersen744a1942001-11-10 11:16:39 +0000234 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200235 * size varies meaning BUFFERS_GO_ON_STACK would fail.
236 *
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200237 * We must keep the transmit and receive buffers separate
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200238 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
239 */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000240 char *xbuf = xmalloc(io_bufsize);
241 char *rbuf = xmalloc(io_bufsize);
Mark Whitley450736c2001-03-02 19:08:50 +0000242
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000243 socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
244 setsockopt_reuseaddr(socket_fd);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000245
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200246 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000247 /* Create a socket which is:
248 * 1. bound to IP:port peer sent 1st datagram to,
249 * 2. connected to peer's IP:port
250 * This way we will answer from the IP:port peer
251 * expects, will not get any other packets on
252 * the socket, and also plain read/write will work. */
253 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
254 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000255
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000256 /* Is there an error already? Send pkt and bail out */
257 if (error_pkt_reason || error_pkt_str[0])
258 goto send_err_pkt;
259
Denis Vlasenko7a601332008-03-19 13:24:13 +0000260 if (user_opt) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000261 struct passwd *pw = xgetpwnam(user_opt);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000262 change_identity(pw); /* initgroups, setgid, setuid */
263 }
264 }
265
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200266 /* Prepare open mode */
Denis Vlasenko7a601332008-03-19 13:24:13 +0000267 if (CMD_PUT(option_mask32)) {
268 open_mode = O_RDONLY;
269 } else {
270 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
271#if ENABLE_TFTPD
272 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
273 /* tftpd without -c */
274 open_mode = O_WRONLY | O_TRUNC;
275 }
276#endif
277 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200278
Denys Vlasenkobac9f032009-07-25 01:56:23 +0200279 /* Examples of network traffic.
280 * Note two cases when ACKs with block# of 0 are sent.
281 *
282 * Download without options:
283 * tftp -> "\0\1FILENAME\0octet\0"
284 * "\0\3\0\1FILEDATA..." <- tftpd
285 * tftp -> "\0\4\0\1"
286 * ...
287 * Download with option of blksize 16384:
288 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
289 * "\0\6blksize\00016384\0" <- tftpd
290 * tftp -> "\0\4\0\0"
291 * "\0\3\0\1FILEDATA..." <- tftpd
292 * tftp -> "\0\4\0\1"
293 * ...
294 * Upload without options:
295 * tftp -> "\0\2FILENAME\0octet\0"
296 * "\0\4\0\0" <- tftpd
297 * tftp -> "\0\3\0\1FILEDATA..."
298 * "\0\4\0\1" <- tftpd
299 * ...
300 * Upload with option of blksize 16384:
301 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
302 * "\0\6blksize\00016384\0" <- tftpd
303 * tftp -> "\0\3\0\1FILEDATA..."
304 * "\0\4\0\1" <- tftpd
305 * ...
306 */
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200307 block_nr = 1;
308 cp = xbuf + 2;
309
310 if (!ENABLE_TFTP || our_lsa) { /* tftpd */
311 /* Open file (must be after changing user) */
Denys Vlasenko4b061462010-02-02 01:01:40 +0100312 local_fd = open(local_file, open_mode, 0666);
Denis Vlasenko7a601332008-03-19 13:24:13 +0000313 if (local_fd < 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000314 error_pkt_reason = ERR_NOFILE;
Denis Vlasenko55995022008-05-18 22:28:26 +0000315 strcpy((char*)error_pkt_str, "can't open file");
Denis Vlasenko7a601332008-03-19 13:24:13 +0000316 goto send_err_pkt;
317 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000318/* gcc 4.3.1 would NOT optimize it out as it should! */
319#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100320 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000321 /* Create and send OACK packet. */
322 /* For the download case, block_nr is still 1 -
323 * we expect 1st ACK from peer to be for (block_nr-1),
324 * that is, for "block 0" which is our OACK pkt */
325 opcode = TFTP_OACK;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000326 goto add_blksize_opt;
327 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000328#endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200329 if (CMD_GET(option_mask32)) {
330 /* It's upload and we don't send OACK.
331 * We must ACK 1st packet (with filename)
332 * as if it is "block 0" */
333 block_nr = 0;
334 }
335
336 } else { /* tftp */
337 /* Open file (must be after changing user) */
338 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
339 if (NOT_LONE_DASH(local_file))
340 local_fd = xopen(local_file, open_mode);
341/* Removing #if, or using if() statement instead of #if may lead to
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000342 * "warning: null argument where non-null required": */
343#if ENABLE_TFTP
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000344 /* tftp */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000345
346 /* We can't (and don't really need to) bind the socket:
347 * we don't know from which local IP datagrams will be sent,
348 * but kernel will pick the same IP every time (unless routing
349 * table is changed), thus peer will see dgrams consistently
350 * coming from the same IP.
351 * We would like to connect the socket, but since peer's
352 * UDP code can be less perfect than ours, _peer's_ IP:port
353 * in replies may differ from IP:port we used to send
354 * our first packet. We can connect() only when we get
355 * first reply. */
356
357 /* build opcode */
358 opcode = TFTP_WRQ;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000359 if (CMD_GET(option_mask32)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000360 opcode = TFTP_RRQ;
361 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000362 /* add filename and mode */
363 /* fill in packet if the filename fits into xbuf */
364 len = strlen(remote_file) + 1;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000365 if (2 + len + sizeof("octet") >= io_bufsize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000366 bb_error_msg("remote filename is too long");
367 goto ret;
368 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000369 strcpy(cp, remote_file);
370 cp += len;
Magnus Dammbbd42352009-11-08 18:00:59 +0100371 /* add "mode" part of the packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000372 strcpy(cp, "octet");
373 cp += sizeof("octet");
374
Magnus Dammbbd42352009-11-08 18:00:59 +0100375# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100376 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000377 goto send_pkt;
378
Magnus Dammbbd42352009-11-08 18:00:59 +0100379 /* Need to add option to pkt */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100380 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000381 bb_error_msg("remote filename is too long");
382 goto ret;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000383 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200384 expect_OACK = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100385# endif
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000386#endif /* ENABLE_TFTP */
387
Denis Vlasenko31e12862008-06-16 07:32:40 +0000388#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000389 add_blksize_opt:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000390 if (blksize != TFTP_BLKSIZE_DEFAULT) {
391 /* add "blksize", <nul>, blksize, <nul> */
392 strcpy(cp, "blksize");
393 cp += sizeof("blksize");
394 cp += snprintf(cp, 6, "%d", blksize) + 1;
395 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100396 if (want_transfer_size) {
Magnus Dammbbd42352009-11-08 18:00:59 +0100397 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
398 /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
399 * and this makes server to send "tsize" option with the size */
400 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
401 /* if tftpd and downloading, we are answering to client's request */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100402 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
Magnus Dammbbd42352009-11-08 18:00:59 +0100403 struct stat st;
404 strcpy(cp, "tsize");
405 cp += sizeof("tsize");
406 st.st_size = 0;
407 fstat(local_fd, &st);
408 cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
Magnus Damm8bd0af92009-11-08 18:03:09 +0100409# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Magnus Dammbbd42352009-11-08 18:00:59 +0100410 /* Save for progress bar. If 0 (tftp downloading),
411 * we look at server's reply later */
Magnus Damm8bd0af92009-11-08 18:03:09 +0100412 G.size = st.st_size;
413 if (remote_file && st.st_size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100414 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100415# endif
416 }
Denis Vlasenko31e12862008-06-16 07:32:40 +0000417#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000418 /* First packet is built, so skip packet generation */
419 goto send_pkt;
420 }
Mark Whitley450736c2001-03-02 19:08:50 +0000421
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000422 /* Using mostly goto's - continue/break will be less clear
423 * in where we actually jump to */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000424 while (1) {
425 /* Build ACK or DATA */
426 cp = xbuf + 2;
427 *((uint16_t*)cp) = htons(block_nr);
428 cp += 2;
429 block_nr++;
430 opcode = TFTP_ACK;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000431 if (CMD_PUT(option_mask32)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000432 opcode = TFTP_DATA;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000433 len = full_read(local_fd, cp, blksize);
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000434 if (len < 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000435 goto send_read_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000436 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000437 if (len != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000438 finished = 1;
439 }
440 cp += len;
Mark Whitley450736c2001-03-02 19:08:50 +0000441 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000442 send_pkt:
443 /* Send packet */
444 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000445 send_len = cp - xbuf;
446 /* NB: send_len value is preserved in code below
447 * for potential resend */
Paul Fox40f0bcf2007-09-06 17:52:22 +0000448
449 retries = TFTP_NUM_RETRIES; /* re-initialize */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000450 waittime_ms = TFTP_TIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000451
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000452 send_again:
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000453#if ENABLE_TFTP_DEBUG
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000454 fprintf(stderr, "sending %u bytes\n", send_len);
455 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
456 fprintf(stderr, "%02x ", (unsigned char) *cp);
457 fprintf(stderr, "\n");
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000458#endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000459 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
Magnus Damm8bd0af92009-11-08 18:03:09 +0100460
461#if ENABLE_FEATURE_TFTP_PROGRESS_BAR
462 if (ENABLE_TFTP && remote_file) { /* tftp */
463 G.pos = (block_nr - 1) * (uoff_t)blksize;
464 }
465#endif
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000466 /* Was it final ACK? then exit */
467 if (finished && (opcode == TFTP_ACK))
468 goto ret;
Mark Whitley450736c2001-03-02 19:08:50 +0000469
Denis Vlasenko2c916522007-01-12 14:57:37 +0000470 recv_again:
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000471 /* Receive packet */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000472 /*pfd[0].fd = socket_fd;*/
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000473 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000474 switch (safe_poll(pfd, 1, waittime_ms)) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000475 default:
476 /*bb_perror_msg("poll"); - done in safe_poll */
477 goto ret;
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000478 case 0:
Paul Fox40f0bcf2007-09-06 17:52:22 +0000479 retries--;
480 if (retries == 0) {
481 bb_error_msg("timeout");
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000482 goto ret; /* no err packet sent */
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000483 }
Paul Fox40f0bcf2007-09-06 17:52:22 +0000484
485 /* exponential backoff with limit */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000486 waittime_ms += waittime_ms/2;
487 if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
488 waittime_ms = TFTP_MAXTIMEOUT_MS;
Paul Fox40f0bcf2007-09-06 17:52:22 +0000489 }
490
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000491 goto send_again; /* resend last sent pkt */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000492 case 1:
493 if (!our_lsa) {
494 /* tftp (not tftpd!) receiving 1st packet */
495 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
496 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
497 &peer_lsa->u.sa, &peer_lsa->len);
498 /* Our first dgram went to port 69
499 * but reply may come from different one.
500 * Remember and use this new port (and IP) */
501 if (len >= 0)
502 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
503 } else {
504 /* tftpd, or not the very first packet:
505 * socket is connect()ed, can just read from it. */
506 /* Don't full_read()!
507 * This is not TCP, one read == one pkt! */
508 len = safe_read(socket_fd, rbuf, io_bufsize);
509 }
510 if (len < 0) {
511 goto send_read_err_pkt;
512 }
513 if (len < 4) { /* too small? */
514 goto recv_again;
515 }
Denis Vlasenkobf678d52007-05-09 12:50:08 +0000516 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000517
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000518 /* Process recv'ed packet */
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000519 opcode = ntohs( ((uint16_t*)rbuf)[0] );
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000520 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000521#if ENABLE_TFTP_DEBUG
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000522 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000523#endif
Glenn L McGrathad117d82001-10-05 04:40:37 +0000524 if (opcode == TFTP_ERROR) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000525 static const char errcode_str[] ALIGN1 =
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000526 "\0"
527 "file not found\0"
528 "access violation\0"
529 "disk full\0"
530 "bad operation\0"
531 "unknown transfer id\0"
532 "file already exists\0"
533 "no such user\0"
534 "bad option";
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000535
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000536 const char *msg = "";
Glenn L McGrathad117d82001-10-05 04:40:37 +0000537
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000538 if (len > 4 && rbuf[4] != '\0') {
Denis Vlasenko10f7dd12006-12-17 01:14:08 +0000539 msg = &rbuf[4];
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000540 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
541 } else if (recv_blk <= 8) {
542 msg = nth_string(errcode_str, recv_blk);
Glenn L McGrathad117d82001-10-05 04:40:37 +0000543 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000544 bb_error_msg("server error: (%u) %s", recv_blk, msg);
545 goto ret;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000546 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000547
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000548#if ENABLE_FEATURE_TFTP_BLOCKSIZE
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200549 if (expect_OACK) {
550 expect_OACK = 0;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000551 if (opcode == TFTP_OACK) {
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000552 /* server seems to support options */
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000553 char *res;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000554
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000555 res = tftp_get_option("blksize", &rbuf[2], len - 2);
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000556 if (res) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000557 blksize = tftp_blksize_check(res, blksize);
558 if (blksize < 0) {
559 error_pkt_reason = ERR_BAD_OPT;
560 goto send_err_pkt;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000561 }
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000562 io_bufsize = blksize + 4;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000563 }
Magnus Damm8bd0af92009-11-08 18:03:09 +0100564# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100565 if (remote_file && G.size == 0) { /* if we don't know it yet */
Magnus Dammbbd42352009-11-08 18:00:59 +0100566 res = tftp_get_option("tsize", &rbuf[2], len - 2);
567 if (res) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100568 G.size = bb_strtoull(res, NULL, 10);
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100569 if (G.size)
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100570 tftp_progress_init();
Magnus Dammbbd42352009-11-08 18:00:59 +0100571 }
572 }
573# endif
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200574 if (CMD_GET(option_mask32)) {
575 /* We'll send ACK for OACK,
576 * such ACK has "block no" of 0 */
577 block_nr = 0;
578 }
579 continue;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000580 }
Atsushi Nemoto330d8982009-07-24 22:34:47 +0200581 /* rfc2347:
582 * "An option not acknowledged by the server
Denys Vlasenko1e9ac9f2009-11-08 18:15:10 +0100583 * must be ignored by the client and server
584 * as if it were never requested." */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000585 bb_error_msg("server only supports blocksize of 512");
586 blksize = TFTP_BLKSIZE_DEFAULT;
587 io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000588 }
589#endif
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000590 /* block_nr is already advanced to next block# we expect
591 * to get / block# we are about to send next time */
Glenn L McGrathad117d82001-10-05 04:40:37 +0000592
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000593 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000594 if (recv_blk == block_nr) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000595 int sz = full_write(local_fd, &rbuf[4], len - 4);
596 if (sz != len - 4) {
Denis Vlasenko55995022008-05-18 22:28:26 +0000597 strcpy((char*)error_pkt_str, bb_msg_write_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000598 error_pkt_reason = ERR_WRITE;
599 goto send_err_pkt;
Mark Whitley450736c2001-03-02 19:08:50 +0000600 }
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000601 if (sz != blksize) {
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000602 finished = 1;
Mark Whitley450736c2001-03-02 19:08:50 +0000603 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000604 continue; /* send ACK */
Mark Whitley450736c2001-03-02 19:08:50 +0000605 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200606/* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
607#if 0
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000608 if (recv_blk == (block_nr - 1)) {
Paul Fox1d4c88c2005-07-20 19:49:15 +0000609 /* Server lost our TFTP_ACK. Resend it */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000610 block_nr = recv_blk;
Paul Fox1d4c88c2005-07-20 19:49:15 +0000611 continue;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000612 }
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +0200613#endif
Mark Whitley450736c2001-03-02 19:08:50 +0000614 }
615
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000616 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000617 /* did peer ACK our last DATA pkt? */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000618 if (recv_blk == (uint16_t) (block_nr - 1)) {
619 if (finished)
620 goto ret;
621 continue; /* send next block */
Mark Whitley450736c2001-03-02 19:08:50 +0000622 }
623 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000624 /* Awww... recv'd packet is not recognized! */
625 goto recv_again;
626 /* why recv_again? - rfc1123 says:
627 * "The sender (i.e., the side originating the DATA packets)
628 * must never resend the current DATA packet on receipt
629 * of a duplicate ACK".
630 * DATA pkts are resent ONLY on timeout.
631 * Thus "goto send_again" will ba a bad mistake above.
632 * See:
633 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
634 */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000635 } /* end of "while (1)" */
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000636 ret:
Denis Vlasenko2c916522007-01-12 14:57:37 +0000637 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000638 close(local_fd);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000639 close(socket_fd);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000640 free(xbuf);
641 free(rbuf);
642 }
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000643 return finished == 0; /* returns 1 on failure */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000644
645 send_read_err_pkt:
Denis Vlasenko55995022008-05-18 22:28:26 +0000646 strcpy((char*)error_pkt_str, bb_msg_read_error);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000647 send_err_pkt:
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000648 if (error_pkt_str[0])
Denys Vlasenko0939f2e2009-10-24 17:47:56 +0200649 bb_error_msg("%s", (char*)error_pkt_str);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000650 error_pkt[1] = TFTP_ERROR;
Denis Vlasenko55995022008-05-18 22:28:26 +0000651 xsendto(socket_fd, error_pkt, 4 + 1 + strlen((char*)error_pkt_str),
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000652 &peer_lsa->u.sa, peer_lsa->len);
653 return EXIT_FAILURE;
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000654#undef remote_file
Mark Whitley450736c2001-03-02 19:08:50 +0000655}
656
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000657#if ENABLE_TFTP
658
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000659int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000660int tftp_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley450736c2001-03-02 19:08:50 +0000661{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000662 len_and_sockaddr *peer_lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000663 const char *local_file = NULL;
664 const char *remote_file = NULL;
Magnus Dammbbd42352009-11-08 18:00:59 +0100665# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenko4824cca2008-03-21 18:29:01 +0000666 const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000667 int blksize;
Magnus Dammbbd42352009-11-08 18:00:59 +0100668# endif
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000669 int result;
670 int port;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000671 IF_GETPUT(int opt;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000672
673 INIT_G();
Mark Whitley450736c2001-03-02 19:08:50 +0000674
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000675 /* -p or -g is mandatory, and they are mutually exclusive */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000676 opt_complementary = "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
677 IF_GETPUT("g--p:p--g:");
Glenn L McGrathad117d82001-10-05 04:40:37 +0000678
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000679 IF_GETPUT(opt =) getopt32(argv,
680 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
681 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000682 &local_file, &remote_file
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000683 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str));
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000684 argv += optind;
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000685
Magnus Dammbbd42352009-11-08 18:00:59 +0100686# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000687 /* Check if the blksize is valid:
688 * RFC2348 says between 8 and 65464 */
689 blksize = tftp_blksize_check(blksize_str, 65564);
690 if (blksize < 0) {
691 //bb_error_msg("bad block size");
Denis Vlasenko1d426652008-03-17 09:09:09 +0000692 return EXIT_FAILURE;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000693 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100694# endif
Mark Whitley450736c2001-03-02 19:08:50 +0000695
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000696 if (remote_file) {
697 if (!local_file) {
698 const char *slash = strrchr(remote_file, '/');
699 local_file = slash ? slash + 1 : remote_file;
700 }
701 } else {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000702 remote_file = local_file;
Denis Vlasenkof9beb612009-03-25 03:55:53 +0000703 }
704
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000705 /* Error if filename or host is not known */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000706 if (!remote_file || !argv[0])
Bernhard Reutner-Fischerb25f98a2006-06-10 14:15:03 +0000707 bb_show_usage();
"Vladimir N. Oleynik"86ac0722005-10-17 10:47:19 +0000708
Denis Vlasenkoa04561f2007-05-08 23:12:21 +0000709 port = bb_lookup_port(argv[1], "udp", 69);
710 peer_lsa = xhost2sockaddr(argv[0], port);
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000711
Magnus Dammbbd42352009-11-08 18:00:59 +0100712# if ENABLE_TFTP_DEBUG
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000713 fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000714 xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000715 remote_file, local_file);
Magnus Dammbbd42352009-11-08 18:00:59 +0100716# endif
Eric Andersen76fa8ea2001-08-20 17:47:49 +0000717
Denys Vlasenkoadc08ef2009-11-08 18:07:36 +0100718# if ENABLE_FEATURE_TFTP_PROGRESS_BAR
719 G.file = remote_file;
720# endif
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000721 result = tftp_protocol(
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000722 NULL /*our_lsa*/, peer_lsa,
723 local_file, remote_file
Magnus Damm8bd0af92009-11-08 18:03:09 +0100724 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000725 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000726 );
Magnus Damm8bd0af92009-11-08 18:03:09 +0100727 tftp_progress_done();
Mark Whitley450736c2001-03-02 19:08:50 +0000728
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000729 if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000730 unlink(local_file);
Eric Andersena66a43e2002-04-13 09:30:25 +0000731 }
Denis Vlasenko000b9ba2006-10-05 23:12:49 +0000732 return result;
Glenn L McGrathad117d82001-10-05 04:40:37 +0000733}
Denis Vlasenko31635552007-01-20 16:54:19 +0000734
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000735#endif /* ENABLE_TFTP */
736
737#if ENABLE_TFTPD
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000738int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000739int tftpd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000740{
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000741 len_and_sockaddr *our_lsa;
742 len_and_sockaddr *peer_lsa;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000743 char *local_file, *mode;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000744 const char *error_msg;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000745 int opt, result, opcode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000746 IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100747 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000748
749 INIT_G();
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000750
751 our_lsa = get_sock_lsa(STDIN_FILENO);
Denis Vlasenko5a897632008-11-01 00:22:24 +0000752 if (!our_lsa) {
753 /* This is confusing:
754 *bb_error_msg_and_die("stdin is not a socket");
755 * Better: */
756 bb_show_usage();
757 /* Help text says that tftpd must be used as inetd service,
758 * which is by far the most usual cause of get_sock_lsa
759 * failure */
760 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000761 peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
762 peer_lsa->len = our_lsa->len;
763
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000764 /* Shifting to not collide with TFTP_OPTs */
765 opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:", &user_opt) << 8);
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000766 argv += optind;
767 if (argv[0])
768 xchdir(argv[0]);
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000769
770 result = recv_from_to(STDIN_FILENO, block_buf, sizeof(block_buf),
771 0 /* flags */,
772 &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
773
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000774 error_msg = "malformed packet";
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000775 opcode = ntohs(*(uint16_t*)block_buf);
776 if (result < 4 || result >= sizeof(block_buf)
777 || block_buf[result-1] != '\0'
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000778 || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
779 IF_GETPUT(&&)
780 IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000781 )
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000782 ) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000783 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000784 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000785 local_file = block_buf + 2;
786 if (local_file[0] == '.' || strstr(local_file, "/.")) {
Denis Vlasenko0a0180c2008-03-19 23:37:32 +0000787 error_msg = "dot in file name";
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000788 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000789 }
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000790 mode = local_file + strlen(local_file) + 1;
791 if (mode >= block_buf + result || strcmp(mode, "octet") != 0) {
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000792 goto err;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000793 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100794# if ENABLE_FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000795 {
796 char *res;
797 char *opt_str = mode + sizeof("octet");
798 int opt_len = block_buf + result - opt_str;
799 if (opt_len > 0) {
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000800 res = tftp_get_option("blksize", opt_str, opt_len);
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000801 if (res) {
802 blksize = tftp_blksize_check(res, 65564);
803 if (blksize < 0) {
804 error_pkt_reason = ERR_BAD_OPT;
805 /* will just send error pkt */
806 goto do_proto;
807 }
808 }
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100809 if (opcode != TFTP_WRQ /* download? */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000810 /* did client ask us about file size? */
Denys Vlasenko6528abe2009-11-08 18:27:18 +0100811 && tftp_get_option("tsize", opt_str, opt_len)
812 ) {
Magnus Damm8bd0af92009-11-08 18:03:09 +0100813 want_transfer_size = 1;
Magnus Dammbbd42352009-11-08 18:00:59 +0100814 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000815 }
816 }
Magnus Dammbbd42352009-11-08 18:00:59 +0100817# endif
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000818
Denis Vlasenkod7e6af22008-03-18 01:13:11 +0000819 if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000820 if (opt & TFTPD_OPT_r) {
Denis Vlasenko71c9f012008-03-19 09:43:50 +0000821 /* This would mean "disk full" - not true */
822 /*error_pkt_reason = ERR_WRITE;*/
823 error_msg = bb_msg_write_error;
824 goto err;
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000825 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000826 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000827 } else {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000828 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000829 }
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000830
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000831 /* NB: if error_pkt_str or error_pkt_reason is set up,
832 * tftp_protocol() just sends one error pkt and returns */
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000833
Denis Vlasenkodd9228b2008-03-19 05:00:05 +0000834 do_proto:
Denis Vlasenko8474cd32008-06-16 07:12:19 +0000835 close(STDIN_FILENO); /* close old, possibly wildcard socket */
836 /* tftp_protocol() will create new one, bound to particular local IP */
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000837 result = tftp_protocol(
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000838 our_lsa, peer_lsa,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000839 local_file IF_TFTP(, NULL /*remote_file*/)
Magnus Damm8bd0af92009-11-08 18:03:09 +0100840 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000841 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000842 );
843
844 return result;
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000845 err:
Denis Vlasenko55995022008-05-18 22:28:26 +0000846 strcpy((char*)error_pkt_str, error_msg);
Denis Vlasenko403a5a22008-03-19 13:07:00 +0000847 goto do_proto;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000848}
849
850#endif /* ENABLE_TFTPD */
851
Denis Vlasenko31635552007-01-20 16:54:19 +0000852#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */