config: trim/improve item names and help texts, take 2
[oweals/busybox.git] / networking / tftp.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * A simple tftp client/server for busybox.
4  * 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  *
17  * tftpd added by Denys Vlasenko & Vladimir Dronnikov
18  *
19  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
20  */
21 //config:config TFTP
22 //config:       bool "tftp (12 kb)"
23 //config:       default y
24 //config:       help
25 //config:       Trivial File Transfer Protocol client. TFTP is usually used
26 //config:       for simple, small transfers such as a root image
27 //config:       for a network-enabled bootloader.
28 //config:
29 //config:config FEATURE_TFTP_PROGRESS_BAR
30 //config:       bool "Enable progress bar"
31 //config:       default y
32 //config:       depends on TFTP
33 //config:
34 //config:config TFTPD
35 //config:       bool "tftpd (10 kb)"
36 //config:       default y
37 //config:       help
38 //config:       Trivial File Transfer Protocol server.
39 //config:       It expects that stdin is a datagram socket and a packet
40 //config:       is already pending on it. It will exit after one transfer.
41 //config:       In other words: it should be run from inetd in nowait mode,
42 //config:       or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
43 //config:
44 //config:comment "Common options for tftp/tftpd"
45 //config:       depends on TFTP || TFTPD
46 //config:
47 //config:config FEATURE_TFTP_GET
48 //config:       bool "Enable 'tftp get' and/or tftpd upload code"
49 //config:       default y
50 //config:       depends on TFTP || TFTPD
51 //config:       help
52 //config:       Add support for the GET command within the TFTP client. This allows
53 //config:       a client to retrieve a file from a TFTP server.
54 //config:       Also enable upload support in tftpd, if tftpd is selected.
55 //config:
56 //config:       Note: this option does _not_ make tftpd capable of download
57 //config:       (the usual operation people need from it)!
58 //config:
59 //config:config FEATURE_TFTP_PUT
60 //config:       bool "Enable 'tftp put' and/or tftpd download code"
61 //config:       default y
62 //config:       depends on TFTP || TFTPD
63 //config:       help
64 //config:       Add support for the PUT command within the TFTP client. This allows
65 //config:       a client to transfer a file to a TFTP server.
66 //config:       Also enable download support in tftpd, if tftpd is selected.
67 //config:
68 //config:config FEATURE_TFTP_BLOCKSIZE
69 //config:       bool "Enable 'blksize' and 'tsize' protocol options"
70 //config:       default y
71 //config:       depends on TFTP || TFTPD
72 //config:       help
73 //config:       Allow tftp to specify block size, and tftpd to understand
74 //config:       "blksize" and "tsize" options.
75 //config:
76 //config:config TFTP_DEBUG
77 //config:       bool "Enable debug"
78 //config:       default n
79 //config:       depends on TFTP || TFTPD
80 //config:       help
81 //config:       Make tftp[d] print debugging messages on stderr.
82 //config:       This is useful if you are diagnosing a bug in tftp[d].
83
84 //applet:#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
85 //applet:IF_TFTP(APPLET(tftp, BB_DIR_USR_BIN, BB_SUID_DROP))
86 //applet:IF_TFTPD(APPLET(tftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
87 //applet:#endif
88
89 //kbuild:lib-$(CONFIG_TFTP) += tftp.o
90 //kbuild:lib-$(CONFIG_TFTPD) += tftp.o
91
92 //usage:#define tftp_trivial_usage
93 //usage:       "[OPTIONS] HOST [PORT]"
94 //usage:#define tftp_full_usage "\n\n"
95 //usage:       "Transfer a file from/to tftp server\n"
96 //usage:     "\n        -l FILE Local FILE"
97 //usage:     "\n        -r FILE Remote FILE"
98 //usage:        IF_FEATURE_TFTP_GET(
99 //usage:     "\n        -g      Get file"
100 //usage:        )
101 //usage:        IF_FEATURE_TFTP_PUT(
102 //usage:     "\n        -p      Put file"
103 //usage:        )
104 //usage:        IF_FEATURE_TFTP_BLOCKSIZE(
105 //usage:     "\n        -b SIZE Transfer blocks of SIZE octets"
106 //usage:        )
107 //usage:
108 //usage:#define tftpd_trivial_usage
109 //usage:       "[-cr] [-u USER] [DIR]"
110 //usage:#define tftpd_full_usage "\n\n"
111 //usage:       "Transfer a file on tftp client's request\n"
112 //usage:       "\n"
113 //usage:       "tftpd should be used as an inetd service.\n"
114 //usage:       "tftpd's line for inetd.conf:\n"
115 //usage:       "        69 dgram udp nowait root tftpd tftpd -l /files/to/serve\n"
116 //usage:       "It also can be ran from udpsvd:\n"
117 //usage:       "        udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n"
118 //usage:     "\n        -r      Prohibit upload"
119 //usage:     "\n        -c      Allow file creation via upload"
120 //usage:     "\n        -u      Access files as USER"
121 //usage:     "\n        -l      Log to syslog (inetd mode requires this)"
122
123 #include "libbb.h"
124 #include "common_bufsiz.h"
125 #include <syslog.h>
126
127 #if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
128
129 #define TFTP_BLKSIZE_DEFAULT       512  /* according to RFC 1350, don't change */
130 #define TFTP_BLKSIZE_DEFAULT_STR "512"
131 /* Was 50 ms but users asked to bump it up a bit */
132 #define TFTP_TIMEOUT_MS            100
133 #define TFTP_MAXTIMEOUT_MS        2000
134 #define TFTP_NUM_RETRIES            12  /* number of backed-off retries */
135
136 /* opcodes we support */
137 #define TFTP_RRQ   1
138 #define TFTP_WRQ   2
139 #define TFTP_DATA  3
140 #define TFTP_ACK   4
141 #define TFTP_ERROR 5
142 #define TFTP_OACK  6
143
144 /* error codes sent over network (we use only 0, 1, 3 and 8) */
145 /* generic (error message is included in the packet) */
146 #define ERR_UNSPEC   0
147 #define ERR_NOFILE   1
148 #define ERR_ACCESS   2
149 /* disk full or allocation exceeded */
150 #define ERR_WRITE    3
151 #define ERR_OP       4
152 #define ERR_BAD_ID   5
153 #define ERR_EXIST    6
154 #define ERR_BAD_USER 7
155 #define ERR_BAD_OPT  8
156
157 /* masks coming from getopt32 */
158 enum {
159         TFTP_OPT_GET = (1 << 0),
160         TFTP_OPT_PUT = (1 << 1),
161         /* pseudo option: if set, it's tftpd */
162         TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
163         TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
164         TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
165         TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
166         TFTPD_OPT_l = (1 << 11) * ENABLE_TFTPD,
167 };
168
169 #if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
170 #define IF_GETPUT(...)
171 #define CMD_GET(cmd) 1
172 #define CMD_PUT(cmd) 0
173 #elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
174 #define IF_GETPUT(...)
175 #define CMD_GET(cmd) 0
176 #define CMD_PUT(cmd) 1
177 #else
178 #define IF_GETPUT(...) __VA_ARGS__
179 #define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
180 #define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
181 #endif
182 /* NB: in the code below
183  * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
184  */
185
186
187 struct globals {
188         /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
189         uint8_t error_pkt[4 + 32];
190         struct passwd *pw;
191         /* Used in tftpd_main() for initial packet */
192         /* Some HP PA-RISC firmware always sends fixed 516-byte requests */
193         char block_buf[516];
194         char block_buf_tail[1];
195 #if ENABLE_FEATURE_TFTP_PROGRESS_BAR
196         off_t pos;
197         off_t size;
198         const char *file;
199         bb_progress_t pmt;
200 #endif
201 } FIX_ALIASING;
202 #define G (*(struct globals*)bb_common_bufsiz1)
203 #define INIT_G() do { \
204         setup_common_bufsiz(); \
205         BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
206 } while (0)
207
208 #define G_error_pkt_reason (G.error_pkt[3])
209 #define G_error_pkt_str    ((char*)(G.error_pkt + 4))
210
211 #if ENABLE_FEATURE_TFTP_PROGRESS_BAR
212 static void tftp_progress_update(void)
213 {
214         bb_progress_update(&G.pmt, 0, G.pos, G.size);
215 }
216 static void tftp_progress_init(void)
217 {
218         bb_progress_init(&G.pmt, G.file);
219         tftp_progress_update();
220 }
221 static void tftp_progress_done(void)
222 {
223         if (is_bb_progress_inited(&G.pmt)) {
224                 tftp_progress_update();
225                 bb_putchar_stderr('\n');
226                 bb_progress_free(&G.pmt);
227         }
228 }
229 #else
230 # define tftp_progress_init() ((void)0)
231 # define tftp_progress_done() ((void)0)
232 #endif
233
234 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
235
236 static int tftp_blksize_check(const char *blksize_str, int maxsize)
237 {
238         /* Check if the blksize is valid:
239          * RFC2348 says between 8 and 65464,
240          * but our implementation makes it impossible
241          * to use blksizes smaller than 22 octets. */
242         unsigned blksize = bb_strtou(blksize_str, NULL, 10);
243         if (errno
244          || (blksize < 24) || (blksize > maxsize)
245         ) {
246                 bb_error_msg("bad blocksize '%s'", blksize_str);
247                 return -1;
248         }
249 # if ENABLE_TFTP_DEBUG
250         bb_error_msg("using blksize %u", blksize);
251 # endif
252         return blksize;
253 }
254
255 static char *tftp_get_option(const char *option, char *buf, int len)
256 {
257         int opt_val = 0;
258         int opt_found = 0;
259         int k;
260
261         /* buf points to:
262          * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
263
264         while (len > 0) {
265                 /* Make sure options are terminated correctly */
266                 for (k = 0; k < len; k++) {
267                         if (buf[k] == '\0') {
268                                 goto nul_found;
269                         }
270                 }
271                 return NULL;
272  nul_found:
273                 if (opt_val == 0) { /* it's "name" part */
274                         if (strcasecmp(buf, option) == 0) {
275                                 opt_found = 1;
276                         }
277                 } else if (opt_found) {
278                         return buf;
279                 }
280
281                 k++;
282                 buf += k;
283                 len -= k;
284                 opt_val ^= 1;
285         }
286
287         return NULL;
288 }
289
290 #endif
291
292 static int tftp_protocol(
293                 /* NULL if tftp, !NULL if tftpd: */
294                 len_and_sockaddr *our_lsa,
295                 len_and_sockaddr *peer_lsa,
296                 const char *local_file
297                 IF_TFTP(, const char *remote_file)
298 #if !ENABLE_TFTP
299 # define remote_file NULL
300 #endif
301                 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
302                 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size)
303                 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
304 {
305 #if !ENABLE_FEATURE_TFTP_BLOCKSIZE
306         enum { blksize = TFTP_BLKSIZE_DEFAULT };
307 #endif
308
309         struct pollfd pfd[1];
310 #define socket_fd (pfd[0].fd)
311         int len;
312         int send_len;
313         IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK = 0;)
314         smallint finished = 0;
315         uint16_t opcode;
316         uint16_t block_nr;
317         uint16_t recv_blk;
318         int open_mode, local_fd;
319         int retries, waittime_ms;
320         int io_bufsize = blksize + 4;
321         char *cp;
322         /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
323          * size varies meaning BUFFERS_GO_ON_STACK would fail.
324          *
325          * We must keep the transmit and receive buffers separate
326          * in case we rcv a garbage pkt - we need to rexmit the last pkt.
327          */
328         char *xbuf = xmalloc(io_bufsize);
329         char *rbuf = xmalloc(io_bufsize);
330
331         socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
332         setsockopt_reuseaddr(socket_fd);
333
334         if (!ENABLE_TFTP || our_lsa) { /* tftpd */
335                 /* Create a socket which is:
336                  * 1. bound to IP:port peer sent 1st datagram to,
337                  * 2. connected to peer's IP:port
338                  * This way we will answer from the IP:port peer
339                  * expects, will not get any other packets on
340                  * the socket, and also plain read/write will work. */
341                 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
342                 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
343
344                 /* Is there an error already? Send pkt and bail out */
345                 if (G_error_pkt_reason || G_error_pkt_str[0])
346                         goto send_err_pkt;
347
348                 if (G.pw) {
349                         change_identity(G.pw); /* initgroups, setgid, setuid */
350                 }
351         }
352
353         /* Prepare open mode */
354         if (CMD_PUT(option_mask32)) {
355                 open_mode = O_RDONLY;
356         } else {
357                 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
358 #if ENABLE_TFTPD
359                 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
360                         /* tftpd without -c */
361                         open_mode = O_WRONLY | O_TRUNC;
362                 }
363 #endif
364         }
365
366         /* Examples of network traffic.
367          * Note two cases when ACKs with block# of 0 are sent.
368          *
369          * Download without options:
370          * tftp -> "\0\1FILENAME\0octet\0"
371          *         "\0\3\0\1FILEDATA..." <- tftpd
372          * tftp -> "\0\4\0\1"
373          * ...
374          * Download with option of blksize 16384:
375          * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
376          *         "\0\6blksize\00016384\0" <- tftpd
377          * tftp -> "\0\4\0\0"
378          *         "\0\3\0\1FILEDATA..." <- tftpd
379          * tftp -> "\0\4\0\1"
380          * ...
381          * Upload without options:
382          * tftp -> "\0\2FILENAME\0octet\0"
383          *         "\0\4\0\0" <- tftpd
384          * tftp -> "\0\3\0\1FILEDATA..."
385          *         "\0\4\0\1" <- tftpd
386          * ...
387          * Upload with option of blksize 16384:
388          * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
389          *         "\0\6blksize\00016384\0" <- tftpd
390          * tftp -> "\0\3\0\1FILEDATA..."
391          *         "\0\4\0\1" <- tftpd
392          * ...
393          */
394         block_nr = 1;
395         cp = xbuf + 2;
396
397         if (!ENABLE_TFTP || our_lsa) { /* tftpd */
398                 /* Open file (must be after changing user) */
399                 local_fd = open(local_file, open_mode, 0666);
400                 if (local_fd < 0) {
401                         G_error_pkt_reason = ERR_NOFILE;
402                         strcpy(G_error_pkt_str, "can't open file");
403                         goto send_err_pkt;
404                 }
405 /* gcc 4.3.1 would NOT optimize it out as it should! */
406 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
407                 if (blksize != TFTP_BLKSIZE_DEFAULT || want_transfer_size) {
408                         /* Create and send OACK packet. */
409                         /* For the download case, block_nr is still 1 -
410                          * we expect 1st ACK from peer to be for (block_nr-1),
411                          * that is, for "block 0" which is our OACK pkt */
412                         opcode = TFTP_OACK;
413                         goto add_blksize_opt;
414                 }
415 #endif
416                 if (CMD_GET(option_mask32)) {
417                         /* It's upload and we don't send OACK.
418                          * We must ACK 1st packet (with filename)
419                          * as if it is "block 0" */
420                         block_nr = 0;
421                 }
422         } else { /* tftp */
423                 /* Open file (must be after changing user) */
424                 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
425                 if (NOT_LONE_DASH(local_file))
426                         local_fd = xopen(local_file, open_mode);
427 /* Removing #if, or using if() statement instead of #if may lead to
428  * "warning: null argument where non-null required": */
429 #if ENABLE_TFTP
430                 /* tftp */
431
432                 /* We can't (and don't really need to) bind the socket:
433                  * we don't know from which local IP datagrams will be sent,
434                  * but kernel will pick the same IP every time (unless routing
435                  * table is changed), thus peer will see dgrams consistently
436                  * coming from the same IP.
437                  * We would like to connect the socket, but since peer's
438                  * UDP code can be less perfect than ours, _peer's_ IP:port
439                  * in replies may differ from IP:port we used to send
440                  * our first packet. We can connect() only when we get
441                  * first reply. */
442
443                 /* build opcode */
444                 opcode = TFTP_WRQ;
445                 if (CMD_GET(option_mask32)) {
446                         opcode = TFTP_RRQ;
447                 }
448                 /* add filename and mode */
449                 /* fill in packet if the filename fits into xbuf */
450                 len = strlen(remote_file) + 1;
451                 if (2 + len + sizeof("octet") >= io_bufsize) {
452                         bb_error_msg("remote filename is too long");
453                         goto ret;
454                 }
455                 strcpy(cp, remote_file);
456                 cp += len;
457                 /* add "mode" part of the packet */
458                 strcpy(cp, "octet");
459                 cp += sizeof("octet");
460
461 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
462                 if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
463                         goto send_pkt;
464
465                 /* Need to add option to pkt */
466                 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN tsize ") + sizeof(off_t)*3) {
467                         bb_error_msg("remote filename is too long");
468                         goto ret;
469                 }
470                 expect_OACK = 1;
471 # endif
472 #endif /* ENABLE_TFTP */
473
474 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
475  add_blksize_opt:
476                 if (blksize != TFTP_BLKSIZE_DEFAULT) {
477                         /* add "blksize", <nul>, blksize, <nul> */
478                         strcpy(cp, "blksize");
479                         cp += sizeof("blksize");
480                         cp += snprintf(cp, 6, "%d", blksize) + 1;
481                 }
482                 if (want_transfer_size) {
483                         /* add "tsize", <nul>, size, <nul> (see RFC2349) */
484                         /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
485                          * and this makes server to send "tsize" option with the size */
486                         /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
487                         /* if tftpd and downloading, we are answering to client's request */
488                         /* if tftpd and uploading: !want_transfer_size, this code is not executed */
489                         struct stat st;
490                         strcpy(cp, "tsize");
491                         cp += sizeof("tsize");
492                         st.st_size = 0;
493                         fstat(local_fd, &st);
494                         cp += sprintf(cp, "%"OFF_FMT"u", (off_t)st.st_size) + 1;
495 # if ENABLE_FEATURE_TFTP_PROGRESS_BAR
496                         /* Save for progress bar. If 0 (tftp downloading),
497                          * we look at server's reply later */
498                         G.size = st.st_size;
499                         if (remote_file && st.st_size)
500                                 tftp_progress_init();
501 # endif
502                 }
503 #endif
504                 /* First packet is built, so skip packet generation */
505                 goto send_pkt;
506         }
507
508         /* Using mostly goto's - continue/break will be less clear
509          * in where we actually jump to */
510         while (1) {
511                 /* Build ACK or DATA */
512                 cp = xbuf + 2;
513                 *((uint16_t*)cp) = htons(block_nr);
514                 cp += 2;
515                 block_nr++;
516                 opcode = TFTP_ACK;
517                 if (CMD_PUT(option_mask32)) {
518                         opcode = TFTP_DATA;
519                         len = full_read(local_fd, cp, blksize);
520                         if (len < 0) {
521                                 goto send_read_err_pkt;
522                         }
523                         if (len != blksize) {
524                                 finished = 1;
525                         }
526                         cp += len;
527                         IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += len;)
528                 }
529  send_pkt:
530                 /* Send packet */
531                 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
532                 send_len = cp - xbuf;
533                 /* NB: send_len value is preserved in code below
534                  * for potential resend */
535
536                 retries = TFTP_NUM_RETRIES;  /* re-initialize */
537                 waittime_ms = TFTP_TIMEOUT_MS;
538
539  send_again:
540 #if ENABLE_TFTP_DEBUG
541                 fprintf(stderr, "sending %u bytes\n", send_len);
542                 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
543                         fprintf(stderr, "%02x ", (unsigned char) *cp);
544                 fprintf(stderr, "\n");
545 #endif
546                 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
547
548 #if ENABLE_FEATURE_TFTP_PROGRESS_BAR
549                 if (is_bb_progress_inited(&G.pmt))
550                         tftp_progress_update();
551 #endif
552                 /* Was it final ACK? then exit */
553                 if (finished && (opcode == TFTP_ACK))
554                         goto ret;
555
556  recv_again:
557                 /* Receive packet */
558                 /*pfd[0].fd = socket_fd;*/
559                 pfd[0].events = POLLIN;
560                 switch (safe_poll(pfd, 1, waittime_ms)) {
561                 default:
562                         /*bb_perror_msg("poll"); - done in safe_poll */
563                         goto ret;
564                 case 0:
565                         retries--;
566                         if (retries == 0) {
567                                 tftp_progress_done();
568                                 bb_error_msg("timeout");
569                                 goto ret; /* no err packet sent */
570                         }
571
572                         /* exponential backoff with limit */
573                         waittime_ms += waittime_ms/2;
574                         if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
575                                 waittime_ms = TFTP_MAXTIMEOUT_MS;
576                         }
577
578                         goto send_again; /* resend last sent pkt */
579                 case 1:
580                         if (!our_lsa) {
581                                 /* tftp (not tftpd!) receiving 1st packet */
582                                 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
583                                 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
584                                                 &peer_lsa->u.sa, &peer_lsa->len);
585                                 /* Our first dgram went to port 69
586                                  * but reply may come from different one.
587                                  * Remember and use this new port (and IP) */
588                                 if (len >= 0)
589                                         xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
590                         } else {
591                                 /* tftpd, or not the very first packet:
592                                  * socket is connect()ed, can just read from it. */
593                                 /* Don't full_read()!
594                                  * This is not TCP, one read == one pkt! */
595                                 len = safe_read(socket_fd, rbuf, io_bufsize);
596                         }
597                         if (len < 0) {
598                                 goto send_read_err_pkt;
599                         }
600                         if (len < 4) { /* too small? */
601                                 goto recv_again;
602                         }
603                 }
604
605                 /* Process recv'ed packet */
606                 opcode = ntohs( ((uint16_t*)rbuf)[0] );
607                 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
608 #if ENABLE_TFTP_DEBUG
609                 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
610 #endif
611                 if (opcode == TFTP_ERROR) {
612                         static const char errcode_str[] ALIGN1 =
613                                 "\0"
614                                 "file not found\0"
615                                 "access violation\0"
616                                 "disk full\0"
617                                 "bad operation\0"
618                                 "unknown transfer id\0"
619                                 "file already exists\0"
620                                 "no such user\0"
621                                 "bad option";
622
623                         const char *msg = "";
624
625                         if (len > 4 && rbuf[4] != '\0') {
626                                 msg = &rbuf[4];
627                                 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
628                         } else if (recv_blk <= 8) {
629                                 msg = nth_string(errcode_str, recv_blk);
630                         }
631                         bb_error_msg("server error: (%u) %s", recv_blk, msg);
632                         goto ret;
633                 }
634
635 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
636                 if (expect_OACK) {
637                         expect_OACK = 0;
638                         if (opcode == TFTP_OACK) {
639                                 /* server seems to support options */
640                                 char *res;
641
642                                 res = tftp_get_option("blksize", &rbuf[2], len - 2);
643                                 if (res) {
644                                         blksize = tftp_blksize_check(res, blksize);
645                                         if (blksize < 0) {
646                                                 G_error_pkt_reason = ERR_BAD_OPT;
647                                                 goto send_err_pkt;
648                                         }
649                                         io_bufsize = blksize + 4;
650                                 }
651 # if ENABLE_FEATURE_TFTP_PROGRESS_BAR
652                                 if (remote_file && G.size == 0) { /* if we don't know it yet */
653                                         res = tftp_get_option("tsize", &rbuf[2], len - 2);
654                                         if (res) {
655                                                 G.size = bb_strtoull(res, NULL, 10);
656                                                 if (G.size)
657                                                         tftp_progress_init();
658                                         }
659                                 }
660 # endif
661                                 if (CMD_GET(option_mask32)) {
662                                         /* We'll send ACK for OACK,
663                                          * such ACK has "block no" of 0 */
664                                         block_nr = 0;
665                                 }
666                                 continue;
667                         }
668                         /* rfc2347:
669                          * "An option not acknowledged by the server
670                          * must be ignored by the client and server
671                          * as if it were never requested." */
672                         if (blksize != TFTP_BLKSIZE_DEFAULT)
673                                 bb_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR);
674                         blksize = TFTP_BLKSIZE_DEFAULT;
675                         io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
676                 }
677 #endif
678                 /* block_nr is already advanced to next block# we expect
679                  * to get / block# we are about to send next time */
680
681                 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
682                         if (recv_blk == block_nr) {
683                                 int sz = full_write(local_fd, &rbuf[4], len - 4);
684                                 if (sz != len - 4) {
685                                         strcpy(G_error_pkt_str, bb_msg_write_error);
686                                         G_error_pkt_reason = ERR_WRITE;
687                                         goto send_err_pkt;
688                                 }
689                                 if (sz != blksize) {
690                                         finished = 1;
691                                 }
692                                 IF_FEATURE_TFTP_PROGRESS_BAR(G.pos += sz;)
693                                 continue; /* send ACK */
694                         }
695 /* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
696 #if 0
697                         if (recv_blk == (block_nr - 1)) {
698                                 /* Server lost our TFTP_ACK.  Resend it */
699                                 block_nr = recv_blk;
700                                 continue;
701                         }
702 #endif
703                 }
704
705                 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
706                         /* did peer ACK our last DATA pkt? */
707                         if (recv_blk == (uint16_t) (block_nr - 1)) {
708                                 if (finished)
709                                         goto ret;
710                                 continue; /* send next block */
711                         }
712                 }
713                 /* Awww... recv'd packet is not recognized! */
714                 goto recv_again;
715                 /* why recv_again? - rfc1123 says:
716                  * "The sender (i.e., the side originating the DATA packets)
717                  *  must never resend the current DATA packet on receipt
718                  *  of a duplicate ACK".
719                  * DATA pkts are resent ONLY on timeout.
720                  * Thus "goto send_again" will ba a bad mistake above.
721                  * See:
722                  * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
723                  */
724         } /* end of "while (1)" */
725  ret:
726         if (ENABLE_FEATURE_CLEAN_UP) {
727                 close(local_fd);
728                 close(socket_fd);
729                 free(xbuf);
730                 free(rbuf);
731         }
732         return finished == 0; /* returns 1 on failure */
733
734  send_read_err_pkt:
735         strcpy(G_error_pkt_str, bb_msg_read_error);
736  send_err_pkt:
737         if (G_error_pkt_str[0])
738                 bb_error_msg("%s", G_error_pkt_str);
739         G.error_pkt[1] = TFTP_ERROR;
740         xsendto(socket_fd, G.error_pkt, 4 + 1 + strlen(G_error_pkt_str),
741                         &peer_lsa->u.sa, peer_lsa->len);
742         return EXIT_FAILURE;
743 #undef remote_file
744 }
745
746 #if ENABLE_TFTP
747
748 int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
749 int tftp_main(int argc UNUSED_PARAM, char **argv)
750 {
751         len_and_sockaddr *peer_lsa;
752         const char *local_file = NULL;
753         const char *remote_file = NULL;
754 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
755         const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
756         int blksize;
757 # endif
758         int result;
759         int port;
760         IF_GETPUT(int opt;)
761
762         INIT_G();
763
764         /* -p or -g is mandatory, and they are mutually exclusive */
765         opt_complementary = "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
766                         IF_GETPUT("g--p:p--g:");
767
768         IF_GETPUT(opt =) getopt32(argv,
769                         IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
770                                 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"),
771                         &local_file, &remote_file
772                         IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str));
773         argv += optind;
774
775 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
776         /* Check if the blksize is valid:
777          * RFC2348 says between 8 and 65464 */
778         blksize = tftp_blksize_check(blksize_str, 65564);
779         if (blksize < 0) {
780                 //bb_error_msg("bad block size");
781                 return EXIT_FAILURE;
782         }
783 # endif
784
785         if (remote_file) {
786                 if (!local_file) {
787                         const char *slash = strrchr(remote_file, '/');
788                         local_file = slash ? slash + 1 : remote_file;
789                 }
790         } else {
791                 remote_file = local_file;
792         }
793
794         /* Error if filename or host is not known */
795         if (!remote_file || !argv[0])
796                 bb_show_usage();
797
798         port = bb_lookup_port(argv[1], "udp", 69);
799         peer_lsa = xhost2sockaddr(argv[0], port);
800
801 # if ENABLE_TFTP_DEBUG
802         fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
803                         xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
804                         remote_file, local_file);
805 # endif
806
807 # if ENABLE_FEATURE_TFTP_PROGRESS_BAR
808         G.file = remote_file;
809 # endif
810         result = tftp_protocol(
811                 NULL /*our_lsa*/, peer_lsa,
812                 local_file, remote_file
813                 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
814                 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
815         );
816         tftp_progress_done();
817
818         if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
819                 unlink(local_file);
820         }
821         return result;
822 }
823
824 #endif /* ENABLE_TFTP */
825
826 #if ENABLE_TFTPD
827 int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
828 int tftpd_main(int argc UNUSED_PARAM, char **argv)
829 {
830         len_and_sockaddr *our_lsa;
831         len_and_sockaddr *peer_lsa;
832         char *mode, *user_opt;
833         char *local_file = local_file;
834         const char *error_msg;
835         int opt, result, opcode;
836         IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
837         IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size = 0;)
838
839         INIT_G();
840
841         our_lsa = get_sock_lsa(STDIN_FILENO);
842         if (!our_lsa) {
843                 /* This is confusing:
844                  *bb_error_msg_and_die("stdin is not a socket");
845                  * Better: */
846                 bb_show_usage();
847                 /* Help text says that tftpd must be used as inetd service,
848                  * which is by far the most usual cause of get_sock_lsa
849                  * failure */
850         }
851         peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
852         peer_lsa->len = our_lsa->len;
853
854         /* Shifting to not collide with TFTP_OPTs */
855         opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8);
856         argv += optind;
857         if (opt & TFTPD_OPT_l) {
858                 openlog(applet_name, LOG_PID, LOG_DAEMON);
859                 logmode = LOGMODE_SYSLOG;
860         }
861         if (opt & TFTPD_OPT_u) {
862                 /* Must be before xchroot */
863                 G.pw = xgetpwnam(user_opt);
864         }
865         if (argv[0]) {
866                 xchroot(argv[0]);
867         }
868
869         result = recv_from_to(STDIN_FILENO,
870                         G.block_buf, sizeof(G.block_buf) + 1,
871                         /* ^^^ sizeof+1 to reliably detect oversized input */
872                         0 /* flags */,
873                         &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
874
875         error_msg = "malformed packet";
876         opcode = ntohs(*(uint16_t*)G.block_buf);
877         if (result < 4 || result > sizeof(G.block_buf)
878         /*|| G.block_buf[result-1] != '\0' - bug compatibility, see below */
879          || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
880              IF_GETPUT(&&)
881              IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
882             )
883         ) {
884                 goto err;
885         }
886         /* Some HP PA-RISC firmware always sends fixed 516-byte requests,
887          * with trailing garbage.
888          * Support that by not requiring NUL to be the last byte (see above).
889          * To make strXYZ() ops safe, force NUL termination:
890          */
891         G.block_buf_tail[0] = '\0';
892
893         local_file = G.block_buf + 2;
894         if (local_file[0] == '.' || strstr(local_file, "/.")) {
895                 error_msg = "dot in file name";
896                 goto err;
897         }
898         mode = local_file + strlen(local_file) + 1;
899         /* RFC 1350 says mode string is case independent */
900         if (mode >= G.block_buf + result || strcasecmp(mode, "octet") != 0) {
901                 goto err;
902         }
903 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
904         {
905                 char *res;
906                 char *opt_str = mode + sizeof("octet");
907                 int opt_len = G.block_buf + result - opt_str;
908                 if (opt_len > 0) {
909                         res = tftp_get_option("blksize", opt_str, opt_len);
910                         if (res) {
911                                 blksize = tftp_blksize_check(res, 65564);
912                                 if (blksize < 0) {
913                                         G_error_pkt_reason = ERR_BAD_OPT;
914                                         /* will just send error pkt */
915                                         goto do_proto;
916                                 }
917                         }
918                         if (opcode != TFTP_WRQ /* download? */
919                         /* did client ask us about file size? */
920                          && tftp_get_option("tsize", opt_str, opt_len)
921                         ) {
922                                 want_transfer_size = 1;
923                         }
924                 }
925         }
926 # endif
927
928         if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
929                 if (opt & TFTPD_OPT_r) {
930                         /* This would mean "disk full" - not true */
931                         /*G_error_pkt_reason = ERR_WRITE;*/
932                         error_msg = bb_msg_write_error;
933                         goto err;
934                 }
935                 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
936         } else {
937                 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
938         }
939
940         /* NB: if G_error_pkt_str or G_error_pkt_reason is set up,
941          * tftp_protocol() just sends one error pkt and returns */
942
943  do_proto:
944         close(STDIN_FILENO); /* close old, possibly wildcard socket */
945         /* tftp_protocol() will create new one, bound to particular local IP */
946         result = tftp_protocol(
947                 our_lsa, peer_lsa,
948                 local_file IF_TFTP(, NULL /*remote_file*/)
949                 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size)
950                 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
951         );
952
953         return result;
954  err:
955         strcpy(G_error_pkt_str, error_msg);
956         goto do_proto;
957 }
958
959 #endif /* ENABLE_TFTPD */
960
961 #endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */