accidentally applied wrong (old) patch, fixing up...
[oweals/busybox.git] / networking / wget.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * wget - retrieve a file using HTTP or FTP
4  *
5  * Chip Rosenthal Covad Communications <chip@laserlink.net>
6  *
7  */
8
9 /* We want libc to give us xxx64 functions also */
10 /* http://www.unix.org/version2/whatsnew/lfs20mar.html */
11 #define _LARGEFILE64_SOURCE 1
12
13 #include "busybox.h"
14 #include <getopt.h>     /* for struct option */
15
16 struct host_info {
17         // May be used if we ever will want to free() all xstrdup()s...
18         /* char *allocated; */
19         char *host;
20         int port;
21         char *path;
22         int is_ftp;
23         char *user;
24 };
25
26 static void parse_url(char *url, struct host_info *h);
27 static FILE *open_socket(len_and_sockaddr *lsa);
28 static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
29 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
30
31 /* Globals (can be accessed from signal handlers */
32 static off_t content_len;        /* Content-length of the file */
33 static off_t beg_range;          /* Range at which continue begins */
34 #if ENABLE_FEATURE_WGET_STATUSBAR
35 static off_t transferred;        /* Number of bytes transferred so far */
36 #endif
37 static int chunked;                     /* chunked transfer encoding */
38 #if ENABLE_FEATURE_WGET_STATUSBAR
39 static void progressmeter(int flag);
40 static char *curfile;                   /* Name of current file being transferred */
41 static struct timeval start;            /* Time a transfer started */
42 enum {
43         STALLTIME = 5                   /* Seconds when xfer considered "stalled" */
44 };
45 #else
46 static void progressmeter(int flag) {}
47 #endif
48
49 /* Read NMEMB elements of SIZE bytes into PTR from STREAM.  Returns the
50  * number of elements read, and a short count if an eof or non-interrupt
51  * error is encountered.  */
52 static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
53 {
54         size_t ret = 0;
55
56         do {
57                 clearerr(stream);
58                 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
59         } while (ret < nmemb && ferror(stream) && errno == EINTR);
60
61         return ret;
62 }
63
64 /* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
65  * Returns S, or NULL if an eof or non-interrupt error is encountered.  */
66 static char *safe_fgets(char *s, int size, FILE *stream)
67 {
68         char *ret;
69
70         do {
71                 clearerr(stream);
72                 ret = fgets(s, size, stream);
73         } while (ret == NULL && ferror(stream) && errno == EINTR);
74
75         return ret;
76 }
77
78 #if ENABLE_FEATURE_WGET_AUTHENTICATION
79 /*
80  *  Base64-encode character string and return the string.
81  */
82 static char *base64enc(unsigned char *p, char *buf, int len)
83 {
84         bb_uuencode(p, buf, len, bb_uuenc_tbl_base64);
85         return buf;
86 }
87 #endif
88
89 int wget_main(int argc, char **argv)
90 {
91         char buf[512];
92         struct host_info server, target;
93         len_and_sockaddr *lsa;
94         int n, status;
95         int port;
96         int try = 5;
97         unsigned opt;
98         char *s;
99         char *proxy = 0;
100         char *dir_prefix = NULL;
101 #if ENABLE_FEATURE_WGET_LONG_OPTIONS
102         char *extra_headers = NULL;
103         llist_t *headers_llist = NULL;
104 #endif
105
106         /* server.allocated = target.allocated = NULL; */
107
108         FILE *sfp = NULL;               /* socket to web/ftp server         */
109         FILE *dfp = NULL;               /* socket to ftp server (data)      */
110         char *fname_out = NULL;         /* where to direct output (-O)      */
111         int got_clen = 0;               /* got content-length: from server  */
112         int output_fd = -1;
113         int use_proxy = 1;              /* Use proxies if env vars are set  */
114         const char *proxy_flag = "on";  /* Use proxies if env vars are set  */
115         const char *user_agent = "Wget";/* Content of the "User-Agent" header field */
116
117         /*
118          * Crack command line.
119          */
120         enum {
121                 WGET_OPT_CONTINUE   = 0x1,
122                 WGET_OPT_QUIET      = 0x2,
123                 WGET_OPT_OUTNAME    = 0x4,
124                 WGET_OPT_PREFIX     = 0x8,
125                 WGET_OPT_PROXY      = 0x10,
126                 WGET_OPT_USER_AGENT = 0x20,
127                 WGET_OPT_PASSIVE    = 0x40,
128                 WGET_OPT_HEADER     = 0x80,
129         };
130 #if ENABLE_FEATURE_WGET_LONG_OPTIONS
131         static const struct option wget_long_options[] = {
132                 // name, has_arg, flag, val
133                 { "continue",         no_argument, NULL, 'c' },
134                 { "quiet",            no_argument, NULL, 'q' },
135                 { "output-document",  required_argument, NULL, 'O' },
136                 { "directory-prefix", required_argument, NULL, 'P' },
137                 { "proxy",            required_argument, NULL, 'Y' },
138                 { "user-agent",       required_argument, NULL, 'U' },
139                 { "passive-ftp",      no_argument, NULL, 0xff },
140                 { "header",           required_argument, NULL, 0xfe },
141                 { 0, 0, 0, 0 }
142         };
143         applet_long_options = wget_long_options;
144 #endif
145         opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::");
146         opt = getopt32(argc, argv, "cqO:P:Y:U:",
147                                 &fname_out, &dir_prefix,
148                                 &proxy_flag, &user_agent
149                                 USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist)
150                                 );
151         if (strcmp(proxy_flag, "off") == 0) {
152                 /* Use the proxy if necessary. */
153                 use_proxy = 0;
154         }
155 #if ENABLE_FEATURE_WGET_LONG_OPTIONS
156         if (headers_llist) {
157                 int size = 1;
158                 char *cp;
159                 llist_t *ll = headers_llist = rev_llist(headers_llist);
160                 while (ll) {
161                         size += strlen(ll->data) + 2;
162                         ll = ll->link;
163                 }
164                 extra_headers = cp = xmalloc(size);
165                 while (headers_llist) {
166                         cp += sprintf(cp, "%s\r\n", headers_llist->data);
167                         headers_llist = headers_llist->link;
168                 }
169         }
170 #endif
171
172         parse_url(argv[optind], &target);
173         server.host = target.host;
174         server.port = target.port;
175
176         /*
177          * Use the proxy if necessary.
178          */
179         if (use_proxy) {
180                 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
181                 if (proxy && *proxy) {
182                         parse_url(proxy, &server);
183                 } else {
184                         use_proxy = 0;
185                 }
186         }
187
188         /* Guess an output filename */
189         if (!fname_out) {
190                 // Dirty hack. Needed because bb_get_last_path_component
191                 // will destroy trailing / by storing '\0' in last byte!
192                 if (!last_char_is(target.path, '/')) {
193                         fname_out =
194 #if ENABLE_FEATURE_WGET_STATUSBAR
195                                 curfile =
196 #endif
197                                 bb_get_last_path_component(target.path);
198                 }
199                 if (!fname_out || !fname_out[0]) {
200                         fname_out =
201 #if ENABLE_FEATURE_WGET_STATUSBAR
202                                 curfile =
203 #endif
204                                 "index.html";
205                 }
206                 if (dir_prefix != NULL)
207                         fname_out = concat_path_file(dir_prefix, fname_out);
208 #if ENABLE_FEATURE_WGET_STATUSBAR
209         } else {
210                 curfile = bb_get_last_path_component(fname_out);
211 #endif
212         }
213         /* Impossible?
214         if ((opt & WGET_OPT_CONTINUE) && !fname_out)
215                 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)"); */
216
217         /*
218          * Determine where to start transfer.
219          */
220         if (LONE_DASH(fname_out)) {
221                 output_fd = 1;
222                 opt &= ~WGET_OPT_CONTINUE;
223         }
224         if (opt & WGET_OPT_CONTINUE) {
225                 output_fd = open(fname_out, O_WRONLY);
226                 if (output_fd >= 0) {
227                         beg_range = xlseek(output_fd, 0, SEEK_END);
228                 }
229                 /* File doesn't exist. We do not create file here yet.
230                    We are not sure it exists on remove side */
231         }
232
233         /* We want to do exactly _one_ DNS lookup, since some
234          * sites (i.e. ftp.us.debian.org) use round-robin DNS
235          * and we want to connect to only one IP... */
236         lsa = host2sockaddr(server.host, server.port);
237         if (!(opt & WGET_OPT_QUIET)) {
238                 fprintf(stderr, "Connecting to %s (%s)\n", server.host,
239                                 xmalloc_sockaddr2dotted(&lsa->sa, lsa->len));
240                 /* We leak result of xmalloc_sockaddr2dotted */
241         }
242
243         if (use_proxy || !target.is_ftp) {
244                 /*
245                  *  HTTP session
246                  */
247                 do {
248                         got_clen = chunked = 0;
249
250                         if (!--try)
251                                 bb_error_msg_and_die("too many redirections");
252
253                         /*
254                          * Open socket to http server
255                          */
256                         if (sfp) fclose(sfp);
257                         sfp = open_socket(lsa);
258
259                         /*
260                          * Send HTTP request.
261                          */
262                         if (use_proxy) {
263                                 fprintf(sfp, "GET %stp://%s/%s HTTP/1.1\r\n",
264                                         target.is_ftp ? "f" : "ht", target.host,
265                                         target.path);
266                         } else {
267                                 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
268                         }
269
270                         fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n",
271                                 target.host, user_agent);
272
273 #if ENABLE_FEATURE_WGET_AUTHENTICATION
274                         if (target.user) {
275                                 fprintf(sfp, "Authorization: Basic %s\r\n",
276                                         base64enc((unsigned char*)target.user, buf, sizeof(buf)));
277                         }
278                         if (use_proxy && server.user) {
279                                 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
280                                         base64enc((unsigned char*)server.user, buf, sizeof(buf)));
281                         }
282 #endif
283
284                         if (beg_range)
285                                 fprintf(sfp, "Range: bytes=%"OFF_FMT"d-\r\n", beg_range);
286 #if ENABLE_FEATURE_WGET_LONG_OPTIONS
287                         if (extra_headers)
288                                 fputs(extra_headers, sfp);
289 #endif
290                         fprintf(sfp, "Connection: close\r\n\r\n");
291
292                         /*
293                         * Retrieve HTTP response line and check for "200" status code.
294                         */
295  read_response:
296                         if (fgets(buf, sizeof(buf), sfp) == NULL)
297                                 bb_error_msg_and_die("no response from server");
298
299                         s = buf;
300                         while (*s != '\0' && !isspace(*s)) ++s;
301                         s = skip_whitespace(s);
302                         // FIXME: no error check
303                         // xatou wouldn't work: "200 OK"
304                         status = atoi(s);
305                         switch (status) {
306                         case 0:
307                         case 100:
308                                 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL)
309                                         /* eat all remaining headers */;
310                                 goto read_response;
311                         case 200:
312                                 break;
313                         case 300:       /* redirection */
314                         case 301:
315                         case 302:
316                         case 303:
317                                 break;
318                         case 206:
319                                 if (beg_range)
320                                         break;
321                                 /*FALLTHRU*/
322                         default:
323                                 /* Show first line only and kill any ESC tricks */
324                                 buf[strcspn(buf, "\n\r\x1b")] = '\0';
325                                 bb_error_msg_and_die("server returned error: %s", buf);
326                         }
327
328                         /*
329                          * Retrieve HTTP headers.
330                          */
331                         while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
332                                 if (strcasecmp(buf, "content-length") == 0) {
333                                         content_len = BB_STRTOOFF(s, NULL, 10);
334                                         if (errno || content_len < 0) {
335                                                 bb_error_msg_and_die("content-length %s is garbage", s);
336                                         }
337                                         got_clen = 1;
338                                         continue;
339                                 }
340                                 if (strcasecmp(buf, "transfer-encoding") == 0) {
341                                         if (strcasecmp(s, "chunked") != 0)
342                                                 bb_error_msg_and_die("server wants to do %s transfer encoding", s);
343                                         chunked = got_clen = 1;
344                                 }
345                                 if (strcasecmp(buf, "location") == 0) {
346                                         if (s[0] == '/')
347                                                 /* free(target.allocated); */
348                                                 target.path = /* target.allocated = */ xstrdup(s+1);
349                                         else {
350                                                 parse_url(s, &target);
351                                                 if (use_proxy == 0) {
352                                                         server.host = target.host;
353                                                         server.port = target.port;
354                                                 }
355                                                 free(lsa);
356                                                 lsa = host2sockaddr(server.host, server.port);
357                                                 break;
358                                         }
359                                 }
360                         }
361                 } while (status >= 300);
362
363                 dfp = sfp;
364
365         } else {
366
367                 /*
368                  *  FTP session
369                  */
370                 if (!target.user)
371                         target.user = xstrdup("anonymous:busybox@");
372
373                 sfp = open_socket(lsa);
374                 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
375                         bb_error_msg_and_die("%s", buf+4);
376
377                 /*
378                  * Splitting username:password pair,
379                  * trying to log in
380                  */
381                 s = strchr(target.user, ':');
382                 if (s)
383                         *(s++) = '\0';
384                 switch (ftpcmd("USER ", target.user, sfp, buf)) {
385                 case 230:
386                         break;
387                 case 331:
388                         if (ftpcmd("PASS ", s, sfp, buf) == 230)
389                                 break;
390                         /* FALLTHRU (failed login) */
391                 default:
392                         bb_error_msg_and_die("ftp login: %s", buf+4);
393                 }
394
395                 ftpcmd("TYPE I", NULL, sfp, buf);
396
397                 /*
398                  * Querying file size
399                  */
400                 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
401                         content_len = BB_STRTOOFF(buf+4, NULL, 10);
402                         if (errno || content_len < 0) {
403                                 bb_error_msg_and_die("SIZE value is garbage");
404                         }
405                         got_clen = 1;
406                 }
407
408                 /*
409                  * Entering passive mode
410                  */
411                 if (ftpcmd("PASV", NULL, sfp, buf) != 227) {
412  pasv_error:
413                         bb_error_msg_and_die("bad response to %s: %s", "PASV", buf);
414                 }
415                 // Response is "227 garbageN1,N2,N3,N4,P1,P2[)garbage]
416                 // Server's IP is N1.N2.N3.N4 (we ignore it)
417                 // Server's port for data connection is P1*256+P2
418                 s = strrchr(buf, ')');
419                 if (s) s[0] = '\0';
420                 s = strrchr(buf, ',');
421                 if (!s) goto pasv_error;
422                 port = xatou_range(s+1, 0, 255);
423                 *s = '\0';
424                 s = strrchr(buf, ',');
425                 if (!s) goto pasv_error;
426                 port += xatou_range(s+1, 0, 255) * 256;
427                 set_nport(lsa, htons(port));
428                 dfp = open_socket(lsa);
429
430                 if (beg_range) {
431                         sprintf(buf, "REST %"OFF_FMT"d", beg_range);
432                         if (ftpcmd(buf, NULL, sfp, buf) == 350)
433                                 content_len -= beg_range;
434                 }
435
436                 if (ftpcmd("RETR ", target.path, sfp, buf) > 150)
437                         bb_error_msg_and_die("bad response to RETR: %s", buf);
438         }
439
440
441         /*
442          * Retrieve file
443          */
444         if (chunked) {
445                 fgets(buf, sizeof(buf), dfp);
446                 content_len = STRTOOFF(buf, NULL, 16);
447                 /* FIXME: error check?? */
448         }
449
450         /* Do it before progressmeter (want to have nice error message) */
451         if (output_fd < 0)
452                 output_fd = xopen(fname_out,
453                         O_WRONLY|O_CREAT|O_EXCL|O_TRUNC);
454
455         if (!(opt & WGET_OPT_QUIET))
456                 progressmeter(-1);
457
458         do {
459                 while (content_len > 0 || !got_clen) {
460                         unsigned rdsz = sizeof(buf);
461                         if (content_len < sizeof(buf) && (chunked || got_clen))
462                                 rdsz = (unsigned)content_len;
463                         n = safe_fread(buf, 1, rdsz, dfp);
464                         if (n <= 0)
465                                 break;
466                         if (full_write(output_fd, buf, n) != n) {
467                                 bb_perror_msg_and_die(bb_msg_write_error);
468                         }
469 #if ENABLE_FEATURE_WGET_STATUSBAR
470                         transferred += n;
471 #endif
472                         if (got_clen) {
473                                 content_len -= n;
474                         }
475                 }
476
477                 if (chunked) {
478                         safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
479                         safe_fgets(buf, sizeof(buf), dfp);
480                         content_len = STRTOOFF(buf, NULL, 16);
481                         /* FIXME: error check? */
482                         if (content_len == 0) {
483                                 chunked = 0; /* all done! */
484                         }
485                 }
486
487                 if (n == 0 && ferror(dfp)) {
488                         bb_perror_msg_and_die(bb_msg_read_error);
489                 }
490         } while (chunked);
491
492         if (!(opt & WGET_OPT_QUIET))
493                 progressmeter(1);
494
495         if ((use_proxy == 0) && target.is_ftp) {
496                 fclose(dfp);
497                 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
498                         bb_error_msg_and_die("ftp error: %s", buf+4);
499                 ftpcmd("QUIT", NULL, sfp, buf);
500         }
501         exit(EXIT_SUCCESS);
502 }
503
504
505 static void parse_url(char *src_url, struct host_info *h)
506 {
507         char *url, *p, *sp;
508
509         /* h->allocated = */ url = xstrdup(src_url);
510
511         if (strncmp(url, "http://", 7) == 0) {
512                 h->port = bb_lookup_port("http", "tcp", 80);
513                 h->host = url + 7;
514                 h->is_ftp = 0;
515         } else if (strncmp(url, "ftp://", 6) == 0) {
516                 h->port = bb_lookup_port("ftp", "tcp", 21);
517                 h->host = url + 6;
518                 h->is_ftp = 1;
519         } else
520                 bb_error_msg_and_die("not an http or ftp url: %s", url);
521
522         // FYI:
523         // "Real" wget 'http://busybox.net?var=a/b' sends this request:
524         //   'GET /?var=a/b HTTP 1.0'
525         //   and saves 'index.html?var=a%2Fb' (we save 'b')
526         // wget 'http://busybox.net?login=john@doe':
527         //   request: 'GET /?login=john@doe HTTP/1.0'
528         //   saves: 'index.html?login=john@doe' (we save '?login=john@doe')
529         // wget 'http://busybox.net#test/test':
530         //   request: 'GET / HTTP/1.0'
531         //   saves: 'index.html' (we save 'test')
532         //
533         // We also don't add unique .N suffix if file exists...
534         sp = strchr(h->host, '/');
535         p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
536         p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
537         if (!sp) {
538                 h->path = "";
539         } else if (*sp == '/') {
540                 *sp = '\0';
541                 h->path = sp + 1;
542         } else { // '#' or '?'
543                 // http://busybox.net?login=john@doe is a valid URL
544                 // memmove converts to:
545                 // http:/busybox.nett?login=john@doe...
546                 memmove(h->host-1, h->host, sp - h->host);
547                 h->host--;
548                 sp[-1] = '\0';
549                 h->path = sp;
550         }
551
552         sp = strrchr(h->host, '@');
553         h->user = NULL;
554         if (sp != NULL) {
555                 h->user = h->host;
556                 *sp = '\0';
557                 h->host = sp + 1;
558         }
559
560         sp = h->host;
561 }
562
563
564 static FILE *open_socket(len_and_sockaddr *lsa)
565 {
566         FILE *fp;
567
568         /* glibc 2.4 seems to try seeking on it - ??! */
569         /* hopefully it understands what ESPIPE means... */
570         fp = fdopen(xconnect_stream(lsa), "r+");
571         if (fp == NULL)
572                 bb_perror_msg_and_die("fdopen");
573
574         return fp;
575 }
576
577
578 static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
579 {
580         char *s, *hdrval;
581         int c;
582
583         *istrunc = 0;
584
585         /* retrieve header line */
586         if (fgets(buf, bufsiz, fp) == NULL)
587                 return NULL;
588
589         /* see if we are at the end of the headers */
590         for (s = buf; *s == '\r'; ++s)
591                 ;
592         if (s[0] == '\n')
593                 return NULL;
594
595         /* convert the header name to lower case */
596         for (s = buf; isalnum(*s) || *s == '-'; ++s)
597                 *s = tolower(*s);
598
599         /* verify we are at the end of the header name */
600         if (*s != ':')
601                 bb_error_msg_and_die("bad header line: %s", buf);
602
603         /* locate the start of the header value */
604         for (*s++ = '\0'; *s == ' ' || *s == '\t'; ++s)
605                 ;
606         hdrval = s;
607
608         /* locate the end of header */
609         while (*s != '\0' && *s != '\r' && *s != '\n')
610                 ++s;
611
612         /* end of header found */
613         if (*s != '\0') {
614                 *s = '\0';
615                 return hdrval;
616         }
617
618         /* Rats!  The buffer isn't big enough to hold the entire header value. */
619         while (c = getc(fp), c != EOF && c != '\n')
620                 ;
621         *istrunc = 1;
622         return hdrval;
623 }
624
625 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
626 {
627         int result;
628         if (s1) {
629                 if (!s2) s2 = "";
630                 fprintf(fp, "%s%s\r\n", s1, s2);
631                 fflush(fp);
632         }
633
634         do {
635                 char *buf_ptr;
636
637                 if (fgets(buf, 510, fp) == NULL) {
638                         bb_perror_msg_and_die("error getting response");
639                 }
640                 buf_ptr = strstr(buf, "\r\n");
641                 if (buf_ptr) {
642                         *buf_ptr = '\0';
643                 }
644         } while (!isdigit(buf[0]) || buf[3] != ' ');
645
646         buf[3] = '\0';
647         result = xatoi_u(buf);
648         buf[3] = ' ';
649         return result;
650 }
651
652 #if ENABLE_FEATURE_WGET_STATUSBAR
653 /* Stuff below is from BSD rcp util.c, as added to openshh.
654  * Original copyright notice is retained at the end of this file.
655  */
656 static int
657 getttywidth(void)
658 {
659         int width;
660         get_terminal_width_height(0, &width, NULL);
661         return width;
662 }
663
664 static void
665 updateprogressmeter(int ignore)
666 {
667         int save_errno = errno;
668
669         progressmeter(0);
670         errno = save_errno;
671 }
672
673 static void alarmtimer(int iwait)
674 {
675         struct itimerval itv;
676
677         itv.it_value.tv_sec = iwait;
678         itv.it_value.tv_usec = 0;
679         itv.it_interval = itv.it_value;
680         setitimer(ITIMER_REAL, &itv, NULL);
681 }
682
683
684 static void
685 progressmeter(int flag)
686 {
687         static struct timeval lastupdate;
688         static off_t lastsize, totalsize;
689
690         struct timeval now, td, tvwait;
691         off_t abbrevsize;
692         int elapsed, ratio, barlength, i;
693         char buf[256];
694
695         if (flag == -1) { /* first call to progressmeter */
696                 gettimeofday(&start, (struct timezone *) 0);
697                 lastupdate = start;
698                 lastsize = 0;
699                 totalsize = content_len + beg_range; /* as content_len changes.. */
700         }
701
702         gettimeofday(&now, (struct timezone *) 0);
703         ratio = 100;
704         if (totalsize != 0 && !chunked) {
705                 /* long long helps to have working ETA even if !LFS */
706                 ratio = (int) (100 * (unsigned long long)(transferred+beg_range) / totalsize);
707                 ratio = MIN(ratio, 100);
708         }
709
710         fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
711
712         barlength = getttywidth() - 51;
713         if (barlength > 0 && barlength < sizeof(buf)) {
714                 i = barlength * ratio / 100;
715                 memset(buf, '*', i);
716                 memset(buf + i, ' ', barlength - i);
717                 buf[barlength] = '\0';
718                 fprintf(stderr, "|%s|", buf);
719         }
720         i = 0;
721         abbrevsize = transferred + beg_range;
722         while (abbrevsize >= 100000) {
723                 i++;
724                 abbrevsize >>= 10;
725         }
726         /* see http://en.wikipedia.org/wiki/Tera */
727         fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
728
729         timersub(&now, &lastupdate, &tvwait);
730         if (transferred > lastsize) {
731                 lastupdate = now;
732                 lastsize = transferred;
733                 if (tvwait.tv_sec >= STALLTIME)
734                         timeradd(&start, &tvwait, &start);
735                 tvwait.tv_sec = 0;
736         }
737         timersub(&now, &start, &td);
738         elapsed = td.tv_sec;
739
740         if (tvwait.tv_sec >= STALLTIME) {
741                 fprintf(stderr, " - stalled -");
742         } else {
743                 off_t to_download = totalsize - beg_range;
744                 if (transferred <= 0 || elapsed <= 0 || transferred > to_download || chunked) {
745                         fprintf(stderr, "--:--:-- ETA");
746                 } else {
747                         /* to_download / (transferred/elapsed) - elapsed: */
748                         int eta = (int) ((unsigned long long)to_download*elapsed/transferred - elapsed);
749                         /* (long long helps to have working ETA even if !LFS) */
750                         i = eta % 3600;
751                         fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
752                 }
753         }
754
755         if (flag == -1) { /* first call to progressmeter */
756                 struct sigaction sa;
757                 sa.sa_handler = updateprogressmeter;
758                 sigemptyset(&sa.sa_mask);
759                 sa.sa_flags = SA_RESTART;
760                 sigaction(SIGALRM, &sa, NULL);
761                 alarmtimer(1);
762         } else if (flag == 1) { /* last call to progressmeter */
763                 alarmtimer(0);
764                 transferred = 0;
765                 putc('\n', stderr);
766         }
767 }
768 #endif
769
770 /* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
771  * much of which was blatantly stolen from openssh.  */
772
773 /*-
774  * Copyright (c) 1992, 1993
775  *      The Regents of the University of California.  All rights reserved.
776  *
777  * Redistribution and use in source and binary forms, with or without
778  * modification, are permitted provided that the following conditions
779  * are met:
780  * 1. Redistributions of source code must retain the above copyright
781  *    notice, this list of conditions and the following disclaimer.
782  * 2. Redistributions in binary form must reproduce the above copyright
783  *    notice, this list of conditions and the following disclaimer in the
784  *    documentation and/or other materials provided with the distribution.
785  *
786  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
787  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
788  *
789  * 4. Neither the name of the University nor the names of its contributors
790  *    may be used to endorse or promote products derived from this software
791  *    without specific prior written permission.
792  *
793  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
794  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
795  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
796  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
797  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
798  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
799  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
800  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
801  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
802  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
803  * SUCH DAMAGE.
804  *
805  */