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