1 /* vi: set sw=4 ts=4: */
3 * A simple tftp client/server for busybox.
4 * Tries to follow RFC1350.
5 * Only "octet" mode supported.
6 * Optional blocksize negotiation (RFC2347 + RFC2348)
8 * Copyright (C) 2001 Magnus Damm <damm@opensource.se>
10 * Parts of the code based on:
12 * atftp: Copyright (C) 2000 Jean-Pierre Lefebvre <helix@step.polymtl.ca>
13 * and Remi Lefebvre <remi@debian.org>
15 * utftp: Copyright (C) 1999 Uwe Ohse <uwe@ohse.de>
17 * tftpd added by Denys Vlasenko & Vladimir Dronnikov
19 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
22 //usage:#define tftp_trivial_usage
23 //usage: "[OPTIONS] HOST [PORT]"
24 //usage:#define tftp_full_usage "\n\n"
25 //usage: "Transfer a file from/to tftp server\n"
26 //usage: "\n -l FILE Local FILE"
27 //usage: "\n -r FILE Remote FILE"
28 //usage: IF_FEATURE_TFTP_GET(
29 //usage: "\n -g Get file"
31 //usage: IF_FEATURE_TFTP_PUT(
32 //usage: "\n -p Put file"
34 //usage: IF_FEATURE_TFTP_BLOCKSIZE(
35 //usage: "\n -b SIZE Transfer blocks of SIZE octets"
38 //usage:#define tftpd_trivial_usage
39 //usage: "[-cr] [-u USER] [DIR]"
40 //usage:#define tftpd_full_usage "\n\n"
41 //usage: "Transfer a file on tftp client's request\n"
43 //usage: "tftpd should be used as an inetd service.\n"
44 //usage: "tftpd's line for inetd.conf:\n"
45 //usage: " 69 dgram udp nowait root tftpd tftpd -l /files/to/serve\n"
46 //usage: "It also can be ran from udpsvd:\n"
47 //usage: " udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n"
48 //usage: "\n -r Prohibit upload"
49 //usage: "\n -c Allow file creation via upload"
50 //usage: "\n -u Access files as USER"
51 //usage: "\n -l Log to syslog (inetd mode requires this)"
56 #if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
58 #define TFTP_BLKSIZE_DEFAULT 512 /* according to RFC 1350, don't change */
59 #define TFTP_BLKSIZE_DEFAULT_STR "512"
60 /* Was 50 ms but users asked to bump it up a bit */
61 #define TFTP_TIMEOUT_MS 100
62 #define TFTP_MAXTIMEOUT_MS 2000
63 #define TFTP_NUM_RETRIES 12 /* number of backed-off retries */
65 /* opcodes we support */
73 /* error codes sent over network (we use only 0, 1, 3 and 8) */
74 /* generic (error message is included in the packet) */
78 /* disk full or allocation exceeded */
83 #define ERR_BAD_USER 7
86 /* masks coming from getopt32 */
88 TFTP_OPT_GET
= (1 << 0),
89 TFTP_OPT_PUT
= (1 << 1),
90 /* pseudo option: if set, it's tftpd */
91 TFTPD_OPT
= (1 << 7) * ENABLE_TFTPD
,
92 TFTPD_OPT_r
= (1 << 8) * ENABLE_TFTPD
,
93 TFTPD_OPT_c
= (1 << 9) * ENABLE_TFTPD
,
94 TFTPD_OPT_u
= (1 << 10) * ENABLE_TFTPD
,
95 TFTPD_OPT_l
= (1 << 11) * ENABLE_TFTPD
,
98 #if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
99 #define IF_GETPUT(...)
100 #define CMD_GET(cmd) 1
101 #define CMD_PUT(cmd) 0
102 #elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
103 #define IF_GETPUT(...)
104 #define CMD_GET(cmd) 0
105 #define CMD_PUT(cmd) 1
107 #define IF_GETPUT(...) __VA_ARGS__
108 #define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
109 #define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
111 /* NB: in the code below
112 * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
117 /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
118 uint8_t error_pkt
[4 + 32];
120 /* used in tftpd_main(), a bit big for stack: */
121 char block_buf
[TFTP_BLKSIZE_DEFAULT
];
122 #if ENABLE_FEATURE_TFTP_PROGRESS_BAR
129 #define G (*(struct globals*)&bb_common_bufsiz1)
130 struct BUG_G_too_big
{
131 char BUG_G_too_big
[sizeof(G
) <= COMMON_BUFSIZE
? 1 : -1];
133 #define INIT_G() do { } while (0)
135 #define G_error_pkt_reason (G.error_pkt[3])
136 #define G_error_pkt_str ((char*)(G.error_pkt + 4))
138 #if ENABLE_FEATURE_TFTP_PROGRESS_BAR
139 static void tftp_progress_update(void)
141 bb_progress_update(&G
.pmt
, 0, G
.pos
, G
.size
);
143 static void tftp_progress_init(void)
145 bb_progress_init(&G
.pmt
, G
.file
);
146 tftp_progress_update();
148 static void tftp_progress_done(void)
150 if (is_bb_progress_inited(&G
.pmt
)) {
151 tftp_progress_update();
152 bb_putchar_stderr('\n');
153 bb_progress_free(&G
.pmt
);
157 # define tftp_progress_init() ((void)0)
158 # define tftp_progress_done() ((void)0)
161 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
163 static int tftp_blksize_check(const char *blksize_str
, int maxsize
)
165 /* Check if the blksize is valid:
166 * RFC2348 says between 8 and 65464,
167 * but our implementation makes it impossible
168 * to use blksizes smaller than 22 octets. */
169 unsigned blksize
= bb_strtou(blksize_str
, NULL
, 10);
171 || (blksize
< 24) || (blksize
> maxsize
)
173 bb_error_msg("bad blocksize '%s'", blksize_str
);
176 # if ENABLE_TFTP_DEBUG
177 bb_error_msg("using blksize %u", blksize
);
182 static char *tftp_get_option(const char *option
, char *buf
, int len
)
189 * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
192 /* Make sure options are terminated correctly */
193 for (k
= 0; k
< len
; k
++) {
194 if (buf
[k
] == '\0') {
200 if (opt_val
== 0) { /* it's "name" part */
201 if (strcasecmp(buf
, option
) == 0) {
204 } else if (opt_found
) {
219 static int tftp_protocol(
220 /* NULL if tftp, !NULL if tftpd: */
221 len_and_sockaddr
*our_lsa
,
222 len_and_sockaddr
*peer_lsa
,
223 const char *local_file
224 IF_TFTP(, const char *remote_file
)
226 # define remote_file NULL
228 /* 1 for tftp; 1/0 for tftpd depending whether client asked about it: */
229 IF_FEATURE_TFTP_BLOCKSIZE(, int want_transfer_size
)
230 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize
))
232 #if !ENABLE_FEATURE_TFTP_BLOCKSIZE
233 enum { blksize
= TFTP_BLKSIZE_DEFAULT
};
236 struct pollfd pfd
[1];
237 #define socket_fd (pfd[0].fd)
240 IF_FEATURE_TFTP_BLOCKSIZE(smallint expect_OACK
= 0;)
241 smallint finished
= 0;
245 int open_mode
, local_fd
;
246 int retries
, waittime_ms
;
247 int io_bufsize
= blksize
+ 4;
249 /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
250 * size varies meaning BUFFERS_GO_ON_STACK would fail.
252 * We must keep the transmit and receive buffers separate
253 * in case we rcv a garbage pkt - we need to rexmit the last pkt.
255 char *xbuf
= xmalloc(io_bufsize
);
256 char *rbuf
= xmalloc(io_bufsize
);
258 socket_fd
= xsocket(peer_lsa
->u
.sa
.sa_family
, SOCK_DGRAM
, 0);
259 setsockopt_reuseaddr(socket_fd
);
261 if (!ENABLE_TFTP
|| our_lsa
) { /* tftpd */
262 /* Create a socket which is:
263 * 1. bound to IP:port peer sent 1st datagram to,
264 * 2. connected to peer's IP:port
265 * This way we will answer from the IP:port peer
266 * expects, will not get any other packets on
267 * the socket, and also plain read/write will work. */
268 xbind(socket_fd
, &our_lsa
->u
.sa
, our_lsa
->len
);
269 xconnect(socket_fd
, &peer_lsa
->u
.sa
, peer_lsa
->len
);
271 /* Is there an error already? Send pkt and bail out */
272 if (G_error_pkt_reason
|| G_error_pkt_str
[0])
276 change_identity(G
.pw
); /* initgroups, setgid, setuid */
280 /* Prepare open mode */
281 if (CMD_PUT(option_mask32
)) {
282 open_mode
= O_RDONLY
;
284 open_mode
= O_WRONLY
| O_TRUNC
| O_CREAT
;
286 if ((option_mask32
& (TFTPD_OPT
+TFTPD_OPT_c
)) == TFTPD_OPT
) {
287 /* tftpd without -c */
288 open_mode
= O_WRONLY
| O_TRUNC
;
293 /* Examples of network traffic.
294 * Note two cases when ACKs with block# of 0 are sent.
296 * Download without options:
297 * tftp -> "\0\1FILENAME\0octet\0"
298 * "\0\3\0\1FILEDATA..." <- tftpd
301 * Download with option of blksize 16384:
302 * tftp -> "\0\1FILENAME\0octet\0blksize\00016384\0"
303 * "\0\6blksize\00016384\0" <- tftpd
305 * "\0\3\0\1FILEDATA..." <- tftpd
308 * Upload without options:
309 * tftp -> "\0\2FILENAME\0octet\0"
310 * "\0\4\0\0" <- tftpd
311 * tftp -> "\0\3\0\1FILEDATA..."
312 * "\0\4\0\1" <- tftpd
314 * Upload with option of blksize 16384:
315 * tftp -> "\0\2FILENAME\0octet\0blksize\00016384\0"
316 * "\0\6blksize\00016384\0" <- tftpd
317 * tftp -> "\0\3\0\1FILEDATA..."
318 * "\0\4\0\1" <- tftpd
324 if (!ENABLE_TFTP
|| our_lsa
) { /* tftpd */
325 /* Open file (must be after changing user) */
326 local_fd
= open(local_file
, open_mode
, 0666);
328 G_error_pkt_reason
= ERR_NOFILE
;
329 strcpy(G_error_pkt_str
, "can't open file");
332 /* gcc 4.3.1 would NOT optimize it out as it should! */
333 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
334 if (blksize
!= TFTP_BLKSIZE_DEFAULT
|| want_transfer_size
) {
335 /* Create and send OACK packet. */
336 /* For the download case, block_nr is still 1 -
337 * we expect 1st ACK from peer to be for (block_nr-1),
338 * that is, for "block 0" which is our OACK pkt */
340 goto add_blksize_opt
;
343 if (CMD_GET(option_mask32
)) {
344 /* It's upload and we don't send OACK.
345 * We must ACK 1st packet (with filename)
346 * as if it is "block 0" */
351 /* Open file (must be after changing user) */
352 local_fd
= CMD_GET(option_mask32
) ? STDOUT_FILENO
: STDIN_FILENO
;
353 if (NOT_LONE_DASH(local_file
))
354 local_fd
= xopen(local_file
, open_mode
);
355 /* Removing #if, or using if() statement instead of #if may lead to
356 * "warning: null argument where non-null required": */
360 /* We can't (and don't really need to) bind the socket:
361 * we don't know from which local IP datagrams will be sent,
362 * but kernel will pick the same IP every time (unless routing
363 * table is changed), thus peer will see dgrams consistently
364 * coming from the same IP.
365 * We would like to connect the socket, but since peer's
366 * UDP code can be less perfect than ours, _peer's_ IP:port
367 * in replies may differ from IP:port we used to send
368 * our first packet. We can connect() only when we get
373 if (CMD_GET(option_mask32
)) {
376 /* add filename and mode */
377 /* fill in packet if the filename fits into xbuf */
378 len
= strlen(remote_file
) + 1;
379 if (2 + len
+ sizeof("octet") >= io_bufsize
) {
380 bb_error_msg("remote filename is too long");
383 strcpy(cp
, remote_file
);
385 /* add "mode" part of the packet */
387 cp
+= sizeof("octet");
389 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
390 if (blksize
== TFTP_BLKSIZE_DEFAULT
&& !want_transfer_size
)
393 /* Need to add option to pkt */
394 if ((&xbuf
[io_bufsize
- 1] - cp
) < sizeof("blksize NNNNN tsize ") + sizeof(off_t
)*3) {
395 bb_error_msg("remote filename is too long");
400 #endif /* ENABLE_TFTP */
402 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
404 if (blksize
!= TFTP_BLKSIZE_DEFAULT
) {
405 /* add "blksize", <nul>, blksize, <nul> */
406 strcpy(cp
, "blksize");
407 cp
+= sizeof("blksize");
408 cp
+= snprintf(cp
, 6, "%d", blksize
) + 1;
410 if (want_transfer_size
) {
411 /* add "tsize", <nul>, size, <nul> (see RFC2349) */
412 /* if tftp and downloading, we send "0" (since we opened local_fd with O_TRUNC)
413 * and this makes server to send "tsize" option with the size */
414 /* if tftp and uploading, we send file size (maybe dont, to not confuse old servers???) */
415 /* if tftpd and downloading, we are answering to client's request */
416 /* if tftpd and uploading: !want_transfer_size, this code is not executed */
419 cp
+= sizeof("tsize");
421 fstat(local_fd
, &st
);
422 cp
+= sprintf(cp
, "%"OFF_FMT
"u", (off_t
)st
.st_size
) + 1;
423 # if ENABLE_FEATURE_TFTP_PROGRESS_BAR
424 /* Save for progress bar. If 0 (tftp downloading),
425 * we look at server's reply later */
427 if (remote_file
&& st
.st_size
)
428 tftp_progress_init();
432 /* First packet is built, so skip packet generation */
436 /* Using mostly goto's - continue/break will be less clear
437 * in where we actually jump to */
439 /* Build ACK or DATA */
441 *((uint16_t*)cp
) = htons(block_nr
);
445 if (CMD_PUT(option_mask32
)) {
447 len
= full_read(local_fd
, cp
, blksize
);
449 goto send_read_err_pkt
;
451 if (len
!= blksize
) {
455 IF_FEATURE_TFTP_PROGRESS_BAR(G
.pos
+= len
;)
459 *((uint16_t*)xbuf
) = htons(opcode
); /* fill in opcode part */
460 send_len
= cp
- xbuf
;
461 /* NB: send_len value is preserved in code below
462 * for potential resend */
464 retries
= TFTP_NUM_RETRIES
; /* re-initialize */
465 waittime_ms
= TFTP_TIMEOUT_MS
;
468 #if ENABLE_TFTP_DEBUG
469 fprintf(stderr
, "sending %u bytes\n", send_len
);
470 for (cp
= xbuf
; cp
< &xbuf
[send_len
]; cp
++)
471 fprintf(stderr
, "%02x ", (unsigned char) *cp
);
472 fprintf(stderr
, "\n");
474 xsendto(socket_fd
, xbuf
, send_len
, &peer_lsa
->u
.sa
, peer_lsa
->len
);
476 #if ENABLE_FEATURE_TFTP_PROGRESS_BAR
477 if (is_bb_progress_inited(&G
.pmt
))
478 tftp_progress_update();
480 /* Was it final ACK? then exit */
481 if (finished
&& (opcode
== TFTP_ACK
))
486 /*pfd[0].fd = socket_fd;*/
487 pfd
[0].events
= POLLIN
;
488 switch (safe_poll(pfd
, 1, waittime_ms
)) {
490 /*bb_perror_msg("poll"); - done in safe_poll */
495 tftp_progress_done();
496 bb_error_msg("timeout");
497 goto ret
; /* no err packet sent */
500 /* exponential backoff with limit */
501 waittime_ms
+= waittime_ms
/2;
502 if (waittime_ms
> TFTP_MAXTIMEOUT_MS
) {
503 waittime_ms
= TFTP_MAXTIMEOUT_MS
;
506 goto send_again
; /* resend last sent pkt */
509 /* tftp (not tftpd!) receiving 1st packet */
510 our_lsa
= ((void*)(ptrdiff_t)-1); /* not NULL */
511 len
= recvfrom(socket_fd
, rbuf
, io_bufsize
, 0,
512 &peer_lsa
->u
.sa
, &peer_lsa
->len
);
513 /* Our first dgram went to port 69
514 * but reply may come from different one.
515 * Remember and use this new port (and IP) */
517 xconnect(socket_fd
, &peer_lsa
->u
.sa
, peer_lsa
->len
);
519 /* tftpd, or not the very first packet:
520 * socket is connect()ed, can just read from it. */
521 /* Don't full_read()!
522 * This is not TCP, one read == one pkt! */
523 len
= safe_read(socket_fd
, rbuf
, io_bufsize
);
526 goto send_read_err_pkt
;
528 if (len
< 4) { /* too small? */
533 /* Process recv'ed packet */
534 opcode
= ntohs( ((uint16_t*)rbuf
)[0] );
535 recv_blk
= ntohs( ((uint16_t*)rbuf
)[1] );
536 #if ENABLE_TFTP_DEBUG
537 fprintf(stderr
, "received %d bytes: %04x %04x\n", len
, opcode
, recv_blk
);
539 if (opcode
== TFTP_ERROR
) {
540 static const char errcode_str
[] ALIGN1
=
546 "unknown transfer id\0"
547 "file already exists\0"
551 const char *msg
= "";
553 if (len
> 4 && rbuf
[4] != '\0') {
555 rbuf
[io_bufsize
- 1] = '\0'; /* paranoia */
556 } else if (recv_blk
<= 8) {
557 msg
= nth_string(errcode_str
, recv_blk
);
559 bb_error_msg("server error: (%u) %s", recv_blk
, msg
);
563 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
566 if (opcode
== TFTP_OACK
) {
567 /* server seems to support options */
570 res
= tftp_get_option("blksize", &rbuf
[2], len
- 2);
572 blksize
= tftp_blksize_check(res
, blksize
);
574 G_error_pkt_reason
= ERR_BAD_OPT
;
577 io_bufsize
= blksize
+ 4;
579 # if ENABLE_FEATURE_TFTP_PROGRESS_BAR
580 if (remote_file
&& G
.size
== 0) { /* if we don't know it yet */
581 res
= tftp_get_option("tsize", &rbuf
[2], len
- 2);
583 G
.size
= bb_strtoull(res
, NULL
, 10);
585 tftp_progress_init();
589 if (CMD_GET(option_mask32
)) {
590 /* We'll send ACK for OACK,
591 * such ACK has "block no" of 0 */
597 * "An option not acknowledged by the server
598 * must be ignored by the client and server
599 * as if it were never requested." */
600 if (blksize
!= TFTP_BLKSIZE_DEFAULT
)
601 bb_error_msg("falling back to blocksize "TFTP_BLKSIZE_DEFAULT_STR
);
602 blksize
= TFTP_BLKSIZE_DEFAULT
;
603 io_bufsize
= TFTP_BLKSIZE_DEFAULT
+ 4;
606 /* block_nr is already advanced to next block# we expect
607 * to get / block# we are about to send next time */
609 if (CMD_GET(option_mask32
) && (opcode
== TFTP_DATA
)) {
610 if (recv_blk
== block_nr
) {
611 int sz
= full_write(local_fd
, &rbuf
[4], len
- 4);
613 strcpy(G_error_pkt_str
, bb_msg_write_error
);
614 G_error_pkt_reason
= ERR_WRITE
;
620 IF_FEATURE_TFTP_PROGRESS_BAR(G
.pos
+= sz
;)
621 continue; /* send ACK */
623 /* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
625 if (recv_blk
== (block_nr
- 1)) {
626 /* Server lost our TFTP_ACK. Resend it */
633 if (CMD_PUT(option_mask32
) && (opcode
== TFTP_ACK
)) {
634 /* did peer ACK our last DATA pkt? */
635 if (recv_blk
== (uint16_t) (block_nr
- 1)) {
638 continue; /* send next block */
641 /* Awww... recv'd packet is not recognized! */
643 /* why recv_again? - rfc1123 says:
644 * "The sender (i.e., the side originating the DATA packets)
645 * must never resend the current DATA packet on receipt
646 * of a duplicate ACK".
647 * DATA pkts are resent ONLY on timeout.
648 * Thus "goto send_again" will ba a bad mistake above.
650 * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
652 } /* end of "while (1)" */
654 if (ENABLE_FEATURE_CLEAN_UP
) {
660 return finished
== 0; /* returns 1 on failure */
663 strcpy(G_error_pkt_str
, bb_msg_read_error
);
665 if (G_error_pkt_str
[0])
666 bb_error_msg("%s", G_error_pkt_str
);
667 G
.error_pkt
[1] = TFTP_ERROR
;
668 xsendto(socket_fd
, G
.error_pkt
, 4 + 1 + strlen(G_error_pkt_str
),
669 &peer_lsa
->u
.sa
, peer_lsa
->len
);
676 int tftp_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
677 int tftp_main(int argc UNUSED_PARAM
, char **argv
)
679 len_and_sockaddr
*peer_lsa
;
680 const char *local_file
= NULL
;
681 const char *remote_file
= NULL
;
682 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
683 const char *blksize_str
= TFTP_BLKSIZE_DEFAULT_STR
;
692 /* -p or -g is mandatory, and they are mutually exclusive */
693 opt_complementary
= "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
694 IF_GETPUT("g--p:p--g:");
696 IF_GETPUT(opt
=) getopt32(argv
,
697 IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
698 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"),
699 &local_file
, &remote_file
700 IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str
));
703 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
704 /* Check if the blksize is valid:
705 * RFC2348 says between 8 and 65464 */
706 blksize
= tftp_blksize_check(blksize_str
, 65564);
708 //bb_error_msg("bad block size");
715 const char *slash
= strrchr(remote_file
, '/');
716 local_file
= slash
? slash
+ 1 : remote_file
;
719 remote_file
= local_file
;
722 /* Error if filename or host is not known */
723 if (!remote_file
|| !argv
[0])
726 port
= bb_lookup_port(argv
[1], "udp", 69);
727 peer_lsa
= xhost2sockaddr(argv
[0], port
);
729 # if ENABLE_TFTP_DEBUG
730 fprintf(stderr
, "using server '%s', remote_file '%s', local_file '%s'\n",
731 xmalloc_sockaddr2dotted(&peer_lsa
->u
.sa
),
732 remote_file
, local_file
);
735 # if ENABLE_FEATURE_TFTP_PROGRESS_BAR
736 G
.file
= remote_file
;
738 result
= tftp_protocol(
739 NULL
/*our_lsa*/, peer_lsa
,
740 local_file
, remote_file
741 IF_FEATURE_TFTP_BLOCKSIZE(, 1 /* want_transfer_size */)
742 IF_FEATURE_TFTP_BLOCKSIZE(, blksize
)
744 tftp_progress_done();
746 if (result
!= EXIT_SUCCESS
&& NOT_LONE_DASH(local_file
) && CMD_GET(opt
)) {
752 #endif /* ENABLE_TFTP */
755 int tftpd_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
756 int tftpd_main(int argc UNUSED_PARAM
, char **argv
)
758 len_and_sockaddr
*our_lsa
;
759 len_and_sockaddr
*peer_lsa
;
760 char *local_file
, *mode
, *user_opt
;
761 const char *error_msg
;
762 int opt
, result
, opcode
;
763 IF_FEATURE_TFTP_BLOCKSIZE(int blksize
= TFTP_BLKSIZE_DEFAULT
;)
764 IF_FEATURE_TFTP_BLOCKSIZE(int want_transfer_size
= 0;)
768 our_lsa
= get_sock_lsa(STDIN_FILENO
);
770 /* This is confusing:
771 *bb_error_msg_and_die("stdin is not a socket");
774 /* Help text says that tftpd must be used as inetd service,
775 * which is by far the most usual cause of get_sock_lsa
778 peer_lsa
= xzalloc(LSA_LEN_SIZE
+ our_lsa
->len
);
779 peer_lsa
->len
= our_lsa
->len
;
781 /* Shifting to not collide with TFTP_OPTs */
782 opt
= option_mask32
= TFTPD_OPT
| (getopt32(argv
, "rcu:l", &user_opt
) << 8);
784 if (opt
& TFTPD_OPT_l
) {
785 openlog(applet_name
, LOG_PID
, LOG_DAEMON
);
786 logmode
= LOGMODE_SYSLOG
;
788 if (opt
& TFTPD_OPT_u
) {
789 /* Must be before xchroot */
790 G
.pw
= xgetpwnam(user_opt
);
796 result
= recv_from_to(STDIN_FILENO
, G
.block_buf
, sizeof(G
.block_buf
),
798 &peer_lsa
->u
.sa
, &our_lsa
->u
.sa
, our_lsa
->len
);
800 error_msg
= "malformed packet";
801 opcode
= ntohs(*(uint16_t*)G
.block_buf
);
802 if (result
< 4 || result
>= sizeof(G
.block_buf
)
803 || G
.block_buf
[result
-1] != '\0'
804 || (IF_FEATURE_TFTP_PUT(opcode
!= TFTP_RRQ
) /* not download */
806 IF_FEATURE_TFTP_GET(opcode
!= TFTP_WRQ
) /* not upload */
811 local_file
= G
.block_buf
+ 2;
812 if (local_file
[0] == '.' || strstr(local_file
, "/.")) {
813 error_msg
= "dot in file name";
816 mode
= local_file
+ strlen(local_file
) + 1;
817 /* RFC 1350 says mode string is case independent */
818 if (mode
>= G
.block_buf
+ result
|| strcasecmp(mode
, "octet") != 0) {
821 # if ENABLE_FEATURE_TFTP_BLOCKSIZE
824 char *opt_str
= mode
+ sizeof("octet");
825 int opt_len
= G
.block_buf
+ result
- opt_str
;
827 res
= tftp_get_option("blksize", opt_str
, opt_len
);
829 blksize
= tftp_blksize_check(res
, 65564);
831 G_error_pkt_reason
= ERR_BAD_OPT
;
832 /* will just send error pkt */
836 if (opcode
!= TFTP_WRQ
/* download? */
837 /* did client ask us about file size? */
838 && tftp_get_option("tsize", opt_str
, opt_len
)
840 want_transfer_size
= 1;
846 if (!ENABLE_FEATURE_TFTP_PUT
|| opcode
== TFTP_WRQ
) {
847 if (opt
& TFTPD_OPT_r
) {
848 /* This would mean "disk full" - not true */
849 /*G_error_pkt_reason = ERR_WRITE;*/
850 error_msg
= bb_msg_write_error
;
853 IF_GETPUT(option_mask32
|= TFTP_OPT_GET
;) /* will receive file's data */
855 IF_GETPUT(option_mask32
|= TFTP_OPT_PUT
;) /* will send file's data */
858 /* NB: if G_error_pkt_str or G_error_pkt_reason is set up,
859 * tftp_protocol() just sends one error pkt and returns */
862 close(STDIN_FILENO
); /* close old, possibly wildcard socket */
863 /* tftp_protocol() will create new one, bound to particular local IP */
864 result
= tftp_protocol(
866 local_file
IF_TFTP(, NULL
/*remote_file*/)
867 IF_FEATURE_TFTP_BLOCKSIZE(, want_transfer_size
)
868 IF_FEATURE_TFTP_BLOCKSIZE(, blksize
)
873 strcpy(G_error_pkt_str
, error_msg
);
877 #endif /* ENABLE_TFTPD */
879 #endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */