wget: code shrink by splitting main() into easier-to-optimize functions
[oweals/busybox.git] / networking / tftp.c
1 /* vi: set sw=4 ts=4: */
2 /* -------------------------------------------------------------------------
3  * tftp.c
4  *
5  * A simple tftp client/server for busybox.
6  * Tries to follow RFC1350.
7  * Only "octet" mode supported.
8  * Optional blocksize negotiation (RFC2347 + RFC2348)
9  *
10  * Copyright (C) 2001 Magnus Damm <damm@opensource.se>
11  *
12  * Parts of the code based on:
13  *
14  * atftp:  Copyright (C) 2000 Jean-Pierre Lefebvre <helix@step.polymtl.ca>
15  *                        and Remi Lefebvre <remi@debian.org>
16  *
17  * utftp:  Copyright (C) 1999 Uwe Ohse <uwe@ohse.de>
18  *
19  * tftpd added by Denys Vlasenko & Vladimir Dronnikov
20  *
21  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
22  * ------------------------------------------------------------------------- */
23
24 #include "libbb.h"
25
26 #if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
27
28 #define TFTP_BLKSIZE_DEFAULT       512  /* according to RFC 1350, don't change */
29 #define TFTP_BLKSIZE_DEFAULT_STR "512"
30 #define TFTP_TIMEOUT_MS             50
31 #define TFTP_MAXTIMEOUT_MS        2000
32 #define TFTP_NUM_RETRIES            12  /* number of backed-off retries */
33
34 /* opcodes we support */
35 #define TFTP_RRQ   1
36 #define TFTP_WRQ   2
37 #define TFTP_DATA  3
38 #define TFTP_ACK   4
39 #define TFTP_ERROR 5
40 #define TFTP_OACK  6
41
42 /* error codes sent over network (we use only 0, 1, 3 and 8) */
43 /* generic (error message is included in the packet) */
44 #define ERR_UNSPEC   0
45 #define ERR_NOFILE   1
46 #define ERR_ACCESS   2
47 /* disk full or allocation exceeded */
48 #define ERR_WRITE    3
49 #define ERR_OP       4
50 #define ERR_BAD_ID   5
51 #define ERR_EXIST    6
52 #define ERR_BAD_USER 7
53 #define ERR_BAD_OPT  8
54
55 /* masks coming from getopt32 */
56 enum {
57         TFTP_OPT_GET = (1 << 0),
58         TFTP_OPT_PUT = (1 << 1),
59         /* pseudo option: if set, it's tftpd */
60         TFTPD_OPT = (1 << 7) * ENABLE_TFTPD,
61         TFTPD_OPT_r = (1 << 8) * ENABLE_TFTPD,
62         TFTPD_OPT_c = (1 << 9) * ENABLE_TFTPD,
63         TFTPD_OPT_u = (1 << 10) * ENABLE_TFTPD,
64 };
65
66 #if ENABLE_FEATURE_TFTP_GET && !ENABLE_FEATURE_TFTP_PUT
67 #define IF_GETPUT(...)
68 #define CMD_GET(cmd) 1
69 #define CMD_PUT(cmd) 0
70 #elif !ENABLE_FEATURE_TFTP_GET && ENABLE_FEATURE_TFTP_PUT
71 #define IF_GETPUT(...)
72 #define CMD_GET(cmd) 0
73 #define CMD_PUT(cmd) 1
74 #else
75 #define IF_GETPUT(...) __VA_ARGS__
76 #define CMD_GET(cmd) ((cmd) & TFTP_OPT_GET)
77 #define CMD_PUT(cmd) ((cmd) & TFTP_OPT_PUT)
78 #endif
79 /* NB: in the code below
80  * CMD_GET(cmd) and CMD_PUT(cmd) are mutually exclusive
81  */
82
83
84 struct globals {
85         /* u16 TFTP_ERROR; u16 reason; both network-endian, then error text: */
86         uint8_t error_pkt[4 + 32];
87         char *user_opt;
88         /* used in tftpd_main(), a bit big for stack: */
89         char block_buf[TFTP_BLKSIZE_DEFAULT];
90 };
91 #define G (*(struct globals*)&bb_common_bufsiz1)
92 #define block_buf        (G.block_buf   )
93 #define user_opt         (G.user_opt    )
94 #define error_pkt        (G.error_pkt   )
95 #define INIT_G() do { } while (0)
96
97 #define error_pkt_reason (error_pkt[3])
98 #define error_pkt_str    (error_pkt + 4)
99
100
101 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
102
103 static int tftp_blksize_check(const char *blksize_str, int maxsize)
104 {
105         /* Check if the blksize is valid:
106          * RFC2348 says between 8 and 65464,
107          * but our implementation makes it impossible
108          * to use blksizes smaller than 22 octets. */
109         unsigned blksize = bb_strtou(blksize_str, NULL, 10);
110         if (errno
111          || (blksize < 24) || (blksize > maxsize)
112         ) {
113                 bb_error_msg("bad blocksize '%s'", blksize_str);
114                 return -1;
115         }
116 #if ENABLE_TFTP_DEBUG
117         bb_error_msg("using blksize %u", blksize);
118 #endif
119         return blksize;
120 }
121
122 static char *tftp_get_option(const char *option, char *buf, int len)
123 {
124         int opt_val = 0;
125         int opt_found = 0;
126         int k;
127
128         /* buf points to:
129          * "opt_name<NUL>opt_val<NUL>opt_name2<NUL>opt_val2<NUL>..." */
130
131         while (len > 0) {
132                 /* Make sure options are terminated correctly */
133                 for (k = 0; k < len; k++) {
134                         if (buf[k] == '\0') {
135                                 goto nul_found;
136                         }
137                 }
138                 return NULL;
139  nul_found:
140                 if (opt_val == 0) { /* it's "name" part */
141                         if (strcasecmp(buf, option) == 0) {
142                                 opt_found = 1;
143                         }
144                 } else if (opt_found) {
145                         return buf;
146                 }
147
148                 k++;
149                 buf += k;
150                 len -= k;
151                 opt_val ^= 1;
152         }
153
154         return NULL;
155 }
156
157 #endif
158
159 static int tftp_protocol(
160                 len_and_sockaddr *our_lsa,
161                 len_and_sockaddr *peer_lsa,
162                 const char *local_file
163                 IF_TFTP(, const char *remote_file)
164                 IF_FEATURE_TFTP_BLOCKSIZE(IF_TFTPD(, void *tsize))
165                 IF_FEATURE_TFTP_BLOCKSIZE(, int blksize))
166 {
167 #if !ENABLE_TFTP
168 #define remote_file NULL
169 #endif
170 #if !(ENABLE_FEATURE_TFTP_BLOCKSIZE && ENABLE_TFTPD)
171 #define tsize NULL
172 #endif
173 #if !ENABLE_FEATURE_TFTP_BLOCKSIZE
174         enum { blksize = TFTP_BLKSIZE_DEFAULT };
175 #endif
176
177         struct pollfd pfd[1];
178 #define socket_fd (pfd[0].fd)
179         int len;
180         int send_len;
181         IF_FEATURE_TFTP_BLOCKSIZE(smallint want_option_ack = 0;)
182         smallint finished = 0;
183         uint16_t opcode;
184         uint16_t block_nr;
185         uint16_t recv_blk;
186         int open_mode, local_fd;
187         int retries, waittime_ms;
188         int io_bufsize = blksize + 4;
189         char *cp;
190         /* Can't use RESERVE_CONFIG_BUFFER here since the allocation
191          * size varies meaning BUFFERS_GO_ON_STACK would fail */
192         /* We must keep the transmit and receive buffers seperate */
193         /* In case we rcv a garbage pkt and we need to rexmit the last pkt */
194         char *xbuf = xmalloc(io_bufsize);
195         char *rbuf = xmalloc(io_bufsize);
196
197         socket_fd = xsocket(peer_lsa->u.sa.sa_family, SOCK_DGRAM, 0);
198         setsockopt_reuseaddr(socket_fd);
199
200         block_nr = 1;
201         cp = xbuf + 2;
202
203         if (!ENABLE_TFTP || our_lsa) {
204                 /* tftpd */
205
206                 /* Create a socket which is:
207                  * 1. bound to IP:port peer sent 1st datagram to,
208                  * 2. connected to peer's IP:port
209                  * This way we will answer from the IP:port peer
210                  * expects, will not get any other packets on
211                  * the socket, and also plain read/write will work. */
212                 xbind(socket_fd, &our_lsa->u.sa, our_lsa->len);
213                 xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
214
215                 /* Is there an error already? Send pkt and bail out */
216                 if (error_pkt_reason || error_pkt_str[0])
217                         goto send_err_pkt;
218
219                 if (CMD_GET(option_mask32)) {
220                         /* it's upload - we must ACK 1st packet (with filename)
221                          * as if it's "block 0" */
222                         block_nr = 0;
223                 }
224
225                 if (user_opt) {
226                         struct passwd *pw = xgetpwnam(user_opt);
227                         change_identity(pw); /* initgroups, setgid, setuid */
228                 }
229         }
230
231         /* Open local file (must be after changing user) */
232         if (CMD_PUT(option_mask32)) {
233                 open_mode = O_RDONLY;
234         } else {
235                 open_mode = O_WRONLY | O_TRUNC | O_CREAT;
236 #if ENABLE_TFTPD
237                 if ((option_mask32 & (TFTPD_OPT+TFTPD_OPT_c)) == TFTPD_OPT) {
238                         /* tftpd without -c */
239                         open_mode = O_WRONLY | O_TRUNC;
240                 }
241 #endif
242         }
243         if (!(option_mask32 & TFTPD_OPT)) {
244                 local_fd = CMD_GET(option_mask32) ? STDOUT_FILENO : STDIN_FILENO;
245                 if (NOT_LONE_DASH(local_file))
246                         local_fd = xopen(local_file, open_mode);
247         } else {
248                 local_fd = open(local_file, open_mode);
249                 if (local_fd < 0) {
250                         error_pkt_reason = ERR_NOFILE;
251                         strcpy((char*)error_pkt_str, "can't open file");
252                         goto send_err_pkt;
253                 }
254         }
255
256         if (!ENABLE_TFTP || our_lsa) {
257 /* gcc 4.3.1 would NOT optimize it out as it should! */
258 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
259                 if (blksize != TFTP_BLKSIZE_DEFAULT || tsize) {
260                         /* Create and send OACK packet. */
261                         /* For the download case, block_nr is still 1 -
262                          * we expect 1st ACK from peer to be for (block_nr-1),
263                          * that is, for "block 0" which is our OACK pkt */
264                         opcode = TFTP_OACK;
265                         goto add_blksize_opt;
266                 }
267 #endif
268         } else {
269 /* Removing it, or using if() statement instead of #if may lead to
270  * "warning: null argument where non-null required": */
271 #if ENABLE_TFTP
272                 /* tftp */
273
274                 /* We can't (and don't really need to) bind the socket:
275                  * we don't know from which local IP datagrams will be sent,
276                  * but kernel will pick the same IP every time (unless routing
277                  * table is changed), thus peer will see dgrams consistently
278                  * coming from the same IP.
279                  * We would like to connect the socket, but since peer's
280                  * UDP code can be less perfect than ours, _peer's_ IP:port
281                  * in replies may differ from IP:port we used to send
282                  * our first packet. We can connect() only when we get
283                  * first reply. */
284
285                 /* build opcode */
286                 opcode = TFTP_WRQ;
287                 if (CMD_GET(option_mask32)) {
288                         opcode = TFTP_RRQ;
289                 }
290                 /* add filename and mode */
291                 /* fill in packet if the filename fits into xbuf */
292                 len = strlen(remote_file) + 1;
293                 if (2 + len + sizeof("octet") >= io_bufsize) {
294                         bb_error_msg("remote filename is too long");
295                         goto ret;
296                 }
297                 strcpy(cp, remote_file);
298                 cp += len;
299                 /* add "mode" part of the package */
300                 strcpy(cp, "octet");
301                 cp += sizeof("octet");
302
303 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
304                 if (blksize == TFTP_BLKSIZE_DEFAULT)
305                         goto send_pkt;
306
307                 /* Non-standard blocksize: add option to pkt */
308                 if ((&xbuf[io_bufsize - 1] - cp) < sizeof("blksize NNNNN")) {
309                         bb_error_msg("remote filename is too long");
310                         goto ret;
311                 }
312                 want_option_ack = 1;
313 #endif
314 #endif /* ENABLE_TFTP */
315
316 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
317  add_blksize_opt:
318 #if ENABLE_TFTPD
319                 if (tsize) {
320                         struct stat st;
321                         /* add "tsize", <nul>, size, <nul> */
322                         strcpy(cp, "tsize");
323                         cp += sizeof("tsize");
324                         fstat(local_fd, &st);
325                         cp += snprintf(cp, 10, "%u", (int) st.st_size) + 1;
326                 }
327 #endif
328                 if (blksize != TFTP_BLKSIZE_DEFAULT) {
329                         /* add "blksize", <nul>, blksize, <nul> */
330                         strcpy(cp, "blksize");
331                         cp += sizeof("blksize");
332                         cp += snprintf(cp, 6, "%d", blksize) + 1;
333                 }
334 #endif
335                 /* First packet is built, so skip packet generation */
336                 goto send_pkt;
337         }
338
339         /* Using mostly goto's - continue/break will be less clear
340          * in where we actually jump to */
341         while (1) {
342                 /* Build ACK or DATA */
343                 cp = xbuf + 2;
344                 *((uint16_t*)cp) = htons(block_nr);
345                 cp += 2;
346                 block_nr++;
347                 opcode = TFTP_ACK;
348                 if (CMD_PUT(option_mask32)) {
349                         opcode = TFTP_DATA;
350                         len = full_read(local_fd, cp, blksize);
351                         if (len < 0) {
352                                 goto send_read_err_pkt;
353                         }
354                         if (len != blksize) {
355                                 finished = 1;
356                         }
357                         cp += len;
358                 }
359  send_pkt:
360                 /* Send packet */
361                 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
362                 send_len = cp - xbuf;
363                 /* NB: send_len value is preserved in code below
364                  * for potential resend */
365
366                 retries = TFTP_NUM_RETRIES;     /* re-initialize */
367                 waittime_ms = TFTP_TIMEOUT_MS;
368
369  send_again:
370 #if ENABLE_TFTP_DEBUG
371                 fprintf(stderr, "sending %u bytes\n", send_len);
372                 for (cp = xbuf; cp < &xbuf[send_len]; cp++)
373                         fprintf(stderr, "%02x ", (unsigned char) *cp);
374                 fprintf(stderr, "\n");
375 #endif
376                 xsendto(socket_fd, xbuf, send_len, &peer_lsa->u.sa, peer_lsa->len);
377                 /* Was it final ACK? then exit */
378                 if (finished && (opcode == TFTP_ACK))
379                         goto ret;
380
381  recv_again:
382                 /* Receive packet */
383                 /*pfd[0].fd = socket_fd;*/
384                 pfd[0].events = POLLIN;
385                 switch (safe_poll(pfd, 1, waittime_ms)) {
386                 default:
387                         /*bb_perror_msg("poll"); - done in safe_poll */
388                         goto ret;
389                 case 0:
390                         retries--;
391                         if (retries == 0) {
392                                 bb_error_msg("timeout");
393                                 goto ret; /* no err packet sent */
394                         }
395
396                         /* exponential backoff with limit */
397                         waittime_ms += waittime_ms/2;
398                         if (waittime_ms > TFTP_MAXTIMEOUT_MS) {
399                                 waittime_ms = TFTP_MAXTIMEOUT_MS;
400                         }
401
402                         goto send_again; /* resend last sent pkt */
403                 case 1:
404                         if (!our_lsa) {
405                                 /* tftp (not tftpd!) receiving 1st packet */
406                                 our_lsa = ((void*)(ptrdiff_t)-1); /* not NULL */
407                                 len = recvfrom(socket_fd, rbuf, io_bufsize, 0,
408                                                 &peer_lsa->u.sa, &peer_lsa->len);
409                                 /* Our first dgram went to port 69
410                                  * but reply may come from different one.
411                                  * Remember and use this new port (and IP) */
412                                 if (len >= 0)
413                                         xconnect(socket_fd, &peer_lsa->u.sa, peer_lsa->len);
414                         } else {
415                                 /* tftpd, or not the very first packet:
416                                  * socket is connect()ed, can just read from it. */
417                                 /* Don't full_read()!
418                                  * This is not TCP, one read == one pkt! */
419                                 len = safe_read(socket_fd, rbuf, io_bufsize);
420                         }
421                         if (len < 0) {
422                                 goto send_read_err_pkt;
423                         }
424                         if (len < 4) { /* too small? */
425                                 goto recv_again;
426                         }
427                 }
428
429                 /* Process recv'ed packet */
430                 opcode = ntohs( ((uint16_t*)rbuf)[0] );
431                 recv_blk = ntohs( ((uint16_t*)rbuf)[1] );
432 #if ENABLE_TFTP_DEBUG
433                 fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, recv_blk);
434 #endif
435                 if (opcode == TFTP_ERROR) {
436                         static const char errcode_str[] ALIGN1 =
437                                 "\0"
438                                 "file not found\0"
439                                 "access violation\0"
440                                 "disk full\0"
441                                 "bad operation\0"
442                                 "unknown transfer id\0"
443                                 "file already exists\0"
444                                 "no such user\0"
445                                 "bad option";
446
447                         const char *msg = "";
448
449                         if (len > 4 && rbuf[4] != '\0') {
450                                 msg = &rbuf[4];
451                                 rbuf[io_bufsize - 1] = '\0'; /* paranoia */
452                         } else if (recv_blk <= 8) {
453                                 msg = nth_string(errcode_str, recv_blk);
454                         }
455                         bb_error_msg("server error: (%u) %s", recv_blk, msg);
456                         goto ret;
457                 }
458
459 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
460                 if (want_option_ack) {
461                         want_option_ack = 0;
462                         if (opcode == TFTP_OACK) {
463                                 /* server seems to support options */
464                                 char *res;
465
466                                 res = tftp_get_option("blksize", &rbuf[2], len - 2);
467                                 if (res) {
468                                         blksize = tftp_blksize_check(res, blksize);
469                                         if (blksize < 0) {
470                                                 error_pkt_reason = ERR_BAD_OPT;
471                                                 goto send_err_pkt;
472                                         }
473                                         io_bufsize = blksize + 4;
474                                         /* Send ACK for OACK ("block" no: 0) */
475                                         block_nr = 0;
476                                         continue;
477                                 }
478                                 /* rfc2347:
479                                  * "An option not acknowledged by the server
480                                  *  must be ignored by the client and server
481                                  *  as if it were never requested." */
482                         }
483                         bb_error_msg("server only supports blocksize of 512");
484                         blksize = TFTP_BLKSIZE_DEFAULT;
485                         io_bufsize = TFTP_BLKSIZE_DEFAULT + 4;
486                 }
487 #endif
488                 /* block_nr is already advanced to next block# we expect
489                  * to get / block# we are about to send next time */
490
491                 if (CMD_GET(option_mask32) && (opcode == TFTP_DATA)) {
492                         if (recv_blk == block_nr) {
493                                 int sz = full_write(local_fd, &rbuf[4], len - 4);
494                                 if (sz != len - 4) {
495                                         strcpy((char*)error_pkt_str, bb_msg_write_error);
496                                         error_pkt_reason = ERR_WRITE;
497                                         goto send_err_pkt;
498                                 }
499                                 if (sz != blksize) {
500                                         finished = 1;
501                                 }
502                                 continue; /* send ACK */
503                         }
504 /* Disabled to cope with servers with Sorcerer's Apprentice Syndrome */
505 #if 0
506                         if (recv_blk == (block_nr - 1)) {
507                                 /* Server lost our TFTP_ACK.  Resend it */
508                                 block_nr = recv_blk;
509                                 continue;
510                         }
511 #endif
512                 }
513
514                 if (CMD_PUT(option_mask32) && (opcode == TFTP_ACK)) {
515                         /* did peer ACK our last DATA pkt? */
516                         if (recv_blk == (uint16_t) (block_nr - 1)) {
517                                 if (finished)
518                                         goto ret;
519                                 continue; /* send next block */
520                         }
521                 }
522                 /* Awww... recv'd packet is not recognized! */
523                 goto recv_again;
524                 /* why recv_again? - rfc1123 says:
525                  * "The sender (i.e., the side originating the DATA packets)
526                  *  must never resend the current DATA packet on receipt
527                  *  of a duplicate ACK".
528                  * DATA pkts are resent ONLY on timeout.
529                  * Thus "goto send_again" will ba a bad mistake above.
530                  * See:
531                  * http://en.wikipedia.org/wiki/Sorcerer's_Apprentice_Syndrome
532                  */
533         } /* end of "while (1)" */
534  ret:
535         if (ENABLE_FEATURE_CLEAN_UP) {
536                 close(local_fd);
537                 close(socket_fd);
538                 free(xbuf);
539                 free(rbuf);
540         }
541         return finished == 0; /* returns 1 on failure */
542
543  send_read_err_pkt:
544         strcpy((char*)error_pkt_str, bb_msg_read_error);
545  send_err_pkt:
546         if (error_pkt_str[0])
547                 bb_error_msg((char*)error_pkt_str);
548         error_pkt[1] = TFTP_ERROR;
549         xsendto(socket_fd, error_pkt, 4 + 1 + strlen((char*)error_pkt_str),
550                         &peer_lsa->u.sa, peer_lsa->len);
551         return EXIT_FAILURE;
552 #undef remote_file
553 #undef tsize
554 }
555
556 #if ENABLE_TFTP
557
558 int tftp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
559 int tftp_main(int argc UNUSED_PARAM, char **argv)
560 {
561         len_and_sockaddr *peer_lsa;
562         const char *local_file = NULL;
563         const char *remote_file = NULL;
564 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
565         const char *blksize_str = TFTP_BLKSIZE_DEFAULT_STR;
566         int blksize;
567 #endif
568         int result;
569         int port;
570         IF_GETPUT(int opt;)
571
572         INIT_G();
573
574         /* -p or -g is mandatory, and they are mutually exclusive */
575         opt_complementary = "" IF_FEATURE_TFTP_GET("g:") IF_FEATURE_TFTP_PUT("p:")
576                         IF_GETPUT("g--p:p--g:");
577
578         IF_GETPUT(opt =) getopt32(argv,
579                         IF_FEATURE_TFTP_GET("g") IF_FEATURE_TFTP_PUT("p")
580                                 "l:r:" IF_FEATURE_TFTP_BLOCKSIZE("b:"),
581                         &local_file, &remote_file
582                         IF_FEATURE_TFTP_BLOCKSIZE(, &blksize_str));
583         argv += optind;
584
585 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
586         /* Check if the blksize is valid:
587          * RFC2348 says between 8 and 65464 */
588         blksize = tftp_blksize_check(blksize_str, 65564);
589         if (blksize < 0) {
590                 //bb_error_msg("bad block size");
591                 return EXIT_FAILURE;
592         }
593 #endif
594
595         if (remote_file) {
596                 if (!local_file) {
597                         const char *slash = strrchr(remote_file, '/');
598                         local_file = slash ? slash + 1 : remote_file;
599                 }
600         } else {
601                 remote_file = local_file;
602         }
603
604         /* Error if filename or host is not known */
605         if (!remote_file || !argv[0])
606                 bb_show_usage();
607
608         port = bb_lookup_port(argv[1], "udp", 69);
609         peer_lsa = xhost2sockaddr(argv[0], port);
610
611 #if ENABLE_TFTP_DEBUG
612         fprintf(stderr, "using server '%s', remote_file '%s', local_file '%s'\n",
613                         xmalloc_sockaddr2dotted(&peer_lsa->u.sa),
614                         remote_file, local_file);
615 #endif
616
617         result = tftp_protocol(
618                 NULL /*our_lsa*/, peer_lsa,
619                 local_file, remote_file
620                 IF_FEATURE_TFTP_BLOCKSIZE(IF_TFTPD(, NULL /*tsize*/))
621                 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
622         );
623
624         if (result != EXIT_SUCCESS && NOT_LONE_DASH(local_file) && CMD_GET(opt)) {
625                 unlink(local_file);
626         }
627         return result;
628 }
629
630 #endif /* ENABLE_TFTP */
631
632 #if ENABLE_TFTPD
633 int tftpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
634 int tftpd_main(int argc UNUSED_PARAM, char **argv)
635 {
636         len_and_sockaddr *our_lsa;
637         len_and_sockaddr *peer_lsa;
638         char *local_file, *mode;
639         const char *error_msg;
640         int opt, result, opcode;
641         IF_FEATURE_TFTP_BLOCKSIZE(int blksize = TFTP_BLKSIZE_DEFAULT;)
642         IF_FEATURE_TFTP_BLOCKSIZE(char *tsize = NULL;)
643
644         INIT_G();
645
646         our_lsa = get_sock_lsa(STDIN_FILENO);
647         if (!our_lsa) {
648                 /* This is confusing:
649                  *bb_error_msg_and_die("stdin is not a socket");
650                  * Better: */
651                 bb_show_usage();
652                 /* Help text says that tftpd must be used as inetd service,
653                  * which is by far the most usual cause of get_sock_lsa
654                  * failure */
655         }
656         peer_lsa = xzalloc(LSA_LEN_SIZE + our_lsa->len);
657         peer_lsa->len = our_lsa->len;
658
659         /* Shifting to not collide with TFTP_OPTs */
660         opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:", &user_opt) << 8);
661         argv += optind;
662         if (argv[0])
663                 xchdir(argv[0]);
664
665         result = recv_from_to(STDIN_FILENO, block_buf, sizeof(block_buf),
666                         0 /* flags */,
667                         &peer_lsa->u.sa, &our_lsa->u.sa, our_lsa->len);
668
669         error_msg = "malformed packet";
670         opcode = ntohs(*(uint16_t*)block_buf);
671         if (result < 4 || result >= sizeof(block_buf)
672          || block_buf[result-1] != '\0'
673          || (IF_FEATURE_TFTP_PUT(opcode != TFTP_RRQ) /* not download */
674              IF_GETPUT(&&)
675              IF_FEATURE_TFTP_GET(opcode != TFTP_WRQ) /* not upload */
676             )
677         ) {
678                 goto err;
679         }
680         local_file = block_buf + 2;
681         if (local_file[0] == '.' || strstr(local_file, "/.")) {
682                 error_msg = "dot in file name";
683                 goto err;
684         }
685         mode = local_file + strlen(local_file) + 1;
686         if (mode >= block_buf + result || strcmp(mode, "octet") != 0) {
687                 goto err;
688         }
689 #if ENABLE_FEATURE_TFTP_BLOCKSIZE
690         {
691                 char *res;
692                 char *opt_str = mode + sizeof("octet");
693                 int opt_len = block_buf + result - opt_str;
694                 if (opt_len > 0) {
695                         res = tftp_get_option("blksize", opt_str, opt_len);
696                         if (res) {
697                                 blksize = tftp_blksize_check(res, 65564);
698                                 if (blksize < 0) {
699                                         error_pkt_reason = ERR_BAD_OPT;
700                                         /* will just send error pkt */
701                                         goto do_proto;
702                                 }
703                         }
704                         /* did client ask us about file size? */
705                         tsize = tftp_get_option("tsize", opt_str, opt_len);
706                 }
707         }
708 #endif
709
710         if (!ENABLE_FEATURE_TFTP_PUT || opcode == TFTP_WRQ) {
711                 if (opt & TFTPD_OPT_r) {
712                         /* This would mean "disk full" - not true */
713                         /*error_pkt_reason = ERR_WRITE;*/
714                         error_msg = bb_msg_write_error;
715                         goto err;
716                 }
717                 IF_GETPUT(option_mask32 |= TFTP_OPT_GET;) /* will receive file's data */
718         } else {
719                 IF_GETPUT(option_mask32 |= TFTP_OPT_PUT;) /* will send file's data */
720         }
721
722         /* NB: if error_pkt_str or error_pkt_reason is set up,
723          * tftp_protocol() just sends one error pkt and returns */
724
725  do_proto:
726         close(STDIN_FILENO); /* close old, possibly wildcard socket */
727         /* tftp_protocol() will create new one, bound to particular local IP */
728         result = tftp_protocol(
729                 our_lsa, peer_lsa,
730                 local_file IF_TFTP(, NULL /*remote_file*/)
731                 IF_FEATURE_TFTP_BLOCKSIZE(, tsize)
732                 IF_FEATURE_TFTP_BLOCKSIZE(, blksize)
733         );
734
735         return result;
736  err:
737         strcpy((char*)error_pkt_str, error_msg);
738         goto do_proto;
739 }
740
741 #endif /* ENABLE_TFTPD */
742
743 #endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */