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