httpd: reduce ifdef forest. comment out redundant PATH setting
[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(struct sockaddr_in *s_in);
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 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
35 static off_t transferred;        /* Number of bytes transferred so far */
36 #endif
37 static int chunked;                     /* chunked transfer encoding */
38 #ifdef CONFIG_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 #ifdef CONFIG_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         struct sockaddr_in s_in;
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 (*target.path && target.path[strlen(target.path)-1] != '/') {
193                         fname_out =
194 #ifdef CONFIG_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 #ifdef CONFIG_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 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
209         } else {
210                 curfile = bb_get_last_path_component(fname_out);
211 #endif
212         }
213         if ((opt & WGET_OPT_CONTINUE) && !fname_out)
214                 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
215
216         /*
217          * Determine where to start transfer.
218          */
219         if (!strcmp(fname_out, "-")) {
220                 output_fd = 1;
221                 opt |= WGET_OPT_QUIET;
222                 opt &= ~WGET_OPT_CONTINUE;
223         } else if (opt & WGET_OPT_CONTINUE) {
224                 output_fd = open(fname_out, O_WRONLY);
225                 if (output_fd >= 0) {
226                         beg_range = xlseek(output_fd, 0, SEEK_END);
227                 }
228                 /* File doesn't exist. We do not create file here yet.
229                    We are not sure it exists on remove side */
230         }
231
232         /* We want to do exactly _one_ DNS lookup, since some
233          * sites (i.e. ftp.us.debian.org) use round-robin DNS
234          * and we want to connect to only one IP... */
235         bb_lookup_host(&s_in, server.host);
236         s_in.sin_port = server.port;
237         if (!(opt & WGET_OPT_QUIET)) {
238                 printf("Connecting to %s[%s]:%d\n",
239                                 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
240         }
241
242         if (use_proxy || !target.is_ftp) {
243                 /*
244                  *  HTTP session
245                  */
246                 do {
247                         got_clen = chunked = 0;
248
249                         if (!--try)
250                                 bb_error_msg_and_die("too many redirections");
251
252                         /*
253                          * Open socket to http server
254                          */
255                         if (sfp) fclose(sfp);
256                         sfp = open_socket(&s_in);
257
258                         /*
259                          * Send HTTP request.
260                          */
261                         if (use_proxy) {
262                                 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
263 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
264                                 if (strchr(target.host, ':'))
265                                         format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
266 #endif
267                                 fprintf(sfp, format,
268                                         target.is_ftp ? "f" : "ht", target.host,
269                                         ntohs(target.port), target.path);
270                         } else {
271                                 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
272                         }
273
274                         fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n", target.host,
275                                 user_agent);
276
277 #ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
278                         if (target.user) {
279                                 fprintf(sfp, "Authorization: Basic %s\r\n",
280                                         base64enc((unsigned char*)target.user, buf, sizeof(buf)));
281                         }
282                         if (use_proxy && server.user) {
283                                 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
284                                         base64enc((unsigned char*)server.user, buf, sizeof(buf)));
285                         }
286 #endif
287
288                         if (beg_range)
289                                 fprintf(sfp, "Range: bytes=%"OFF_FMT"-\r\n", beg_range);
290 #if ENABLE_FEATURE_WGET_LONG_OPTIONS
291                         if (extra_headers)
292                                 fputs(extra_headers, sfp);
293 #endif
294                         fprintf(sfp, "Connection: close\r\n\r\n");
295
296                         /*
297                         * Retrieve HTTP response line and check for "200" status code.
298                         */
299  read_response:
300                         if (fgets(buf, sizeof(buf), sfp) == NULL)
301                                 bb_error_msg_and_die("no response from server");
302
303                         s = buf;
304                         while (*s != '\0' && !isspace(*s)) ++s;
305                         s = skip_whitespace(s);
306                         // FIXME: no error check
307                         // xatou wouldn't work: "200 OK"
308                         status = atoi(s);
309                         switch (status) {
310                         case 0:
311                         case 100:
312                                 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL)
313                                         /* eat all remaining headers */;
314                                 goto read_response;
315                         case 200:
316                                 break;
317                         case 300:       /* redirection */
318                         case 301:
319                         case 302:
320                         case 303:
321                                 break;
322                         case 206:
323                                 if (beg_range)
324                                         break;
325                                 /*FALLTHRU*/
326                         default:
327                                 /* Show first line only and kill any ESC tricks */
328                                 buf[strcspn(buf, "\n\r\x1b")] = '\0';
329                                 bb_error_msg_and_die("server returned error: %s", buf);
330                         }
331
332                         /*
333                          * Retrieve HTTP headers.
334                          */
335                         while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
336                                 if (strcasecmp(buf, "content-length") == 0) {
337                                         if (SAFE_STRTOOFF(s, &content_len) || content_len < 0) {
338                                                 bb_error_msg_and_die("content-length %s is garbage", s);
339                                         }
340                                         got_clen = 1;
341                                         continue;
342                                 }
343                                 if (strcasecmp(buf, "transfer-encoding") == 0) {
344                                         if (strcasecmp(s, "chunked") != 0)
345                                                 bb_error_msg_and_die("server wants to do %s transfer encoding", s);
346                                         chunked = got_clen = 1;
347                                 }
348                                 if (strcasecmp(buf, "location") == 0) {
349                                         if (s[0] == '/')
350                                                 /* free(target.allocated); */
351                                                 target.path = /* target.allocated = */ xstrdup(s+1);
352                                         else {
353                                                 parse_url(s, &target);
354                                                 if (use_proxy == 0) {
355                                                         server.host = target.host;
356                                                         server.port = target.port;
357                                                 }
358                                                 bb_lookup_host(&s_in, server.host);
359                                                 s_in.sin_port = server.port;
360                                                 break;
361                                         }
362                                 }
363                         }
364                 } while(status >= 300);
365
366                 dfp = sfp;
367
368         } else {
369
370                 /*
371                  *  FTP session
372                  */
373                 if (!target.user)
374                         target.user = xstrdup("anonymous:busybox@");
375
376                 sfp = open_socket(&s_in);
377                 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
378                         bb_error_msg_and_die("%s", buf+4);
379
380                 /*
381                  * Splitting username:password pair,
382                  * trying to log in
383                  */
384                 s = strchr(target.user, ':');
385                 if (s)
386                         *(s++) = '\0';
387                 switch (ftpcmd("USER ", target.user, sfp, buf)) {
388                 case 230:
389                         break;
390                 case 331:
391                         if (ftpcmd("PASS ", s, sfp, buf) == 230)
392                                 break;
393                         /* FALLTHRU (failed login) */
394                 default:
395                         bb_error_msg_and_die("ftp login: %s", buf+4);
396                 }
397
398                 ftpcmd("TYPE I", NULL, sfp, buf);
399
400                 /*
401                  * Querying file size
402                  */
403                 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
404                         if (SAFE_STRTOOFF(buf+4, &content_len) || content_len < 0) {
405                                 bb_error_msg_and_die("SIZE value is garbage");
406                         }
407                         got_clen = 1;
408                 }
409
410                 /*
411                  * Entering passive mode
412                  */
413                 if (ftpcmd("PASV", NULL, sfp, buf) != 227) {
414  pasv_error:
415                         bb_error_msg_and_die("bad response to %s: %s", "PASV", buf);
416                 }
417                 // Response is "227 garbageN1,N2,N3,N4,P1,P2
418                 // Server's IP is N1.N2.N3.N4 (we ignore it)
419                 // Server's port for data connection is P1*256+P2
420                 s = strrchr(buf, ',');
421                 if (!s) goto pasv_error;
422                 port = xatol_range(s+1, 0, 255);
423                 *s = '\0';
424                 s = strrchr(buf, ',');
425                 if (!s) goto pasv_error;
426                 port += xatol_range(s+1, 0, 255) * 256;
427                 s_in.sin_port = htons(port);
428                 dfp = open_socket(&s_in);
429
430                 if (beg_range) {
431                         sprintf(buf, "REST %"OFF_FMT, 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 %s: %s", "RETR", buf);
438         }
439
440
441         /*
442          * Retrieve file
443          */
444         if (chunked) {
445                 fgets(buf, sizeof(buf), dfp);
446                 content_len = STRTOOFF(buf, (char **) 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 = xopen3(fname_out,
453                         O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0666);
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 #ifdef CONFIG_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, (char **) 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, *cp, *sp, *up, *pp;
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;
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         up = strrchr(h->host, '@');
553         if (up != NULL) {
554                 h->user = h->host;
555                 *up++ = '\0';
556                 h->host = up;
557         } else
558                 h->user = NULL;
559
560         pp = h->host;
561
562 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
563         if (h->host[0] == '[') {
564                 char *ep;
565
566                 ep = h->host + 1;
567                 while (*ep == ':' || isxdigit(*ep))
568                         ep++;
569                 if (*ep == ']') {
570                         h->host++;
571                         *ep = '\0';
572                         pp = ep + 1;
573                 }
574         }
575 #endif
576
577         cp = strchr(pp, ':');
578         if (cp != NULL) {
579                 *cp++ = '\0';
580                 h->port = htons(xatou16(cp));
581         }
582 }
583
584
585 static FILE *open_socket(struct sockaddr_in *s_in)
586 {
587         FILE *fp;
588
589         /* glibc 2.4 seems to try seeking on it - ??! */
590         /* hopefully it understands what ESPIPE means... */
591         fp = fdopen(xconnect_tcp_v4(s_in), "r+");
592         if (fp == NULL)
593                 bb_perror_msg_and_die("fdopen");
594
595         return fp;
596 }
597
598
599 static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
600 {
601         char *s, *hdrval;
602         int c;
603
604         *istrunc = 0;
605
606         /* retrieve header line */
607         if (fgets(buf, bufsiz, fp) == NULL)
608                 return NULL;
609
610         /* see if we are at the end of the headers */
611         for (s = buf ; *s == '\r' ; ++s)
612                 ;
613         if (s[0] == '\n')
614                 return NULL;
615
616         /* convert the header name to lower case */
617         for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
618                 *s = tolower(*s);
619
620         /* verify we are at the end of the header name */
621         if (*s != ':')
622                 bb_error_msg_and_die("bad header line: %s", buf);
623
624         /* locate the start of the header value */
625         for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
626                 ;
627         hdrval = s;
628
629         /* locate the end of header */
630         while (*s != '\0' && *s != '\r' && *s != '\n')
631                 ++s;
632
633         /* end of header found */
634         if (*s != '\0') {
635                 *s = '\0';
636                 return hdrval;
637         }
638
639         /* Rats!  The buffer isn't big enough to hold the entire header value. */
640         while (c = getc(fp), c != EOF && c != '\n')
641                 ;
642         *istrunc = 1;
643         return hdrval;
644 }
645
646 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
647 {
648         int result;
649         if (s1) {
650                 if (!s2) s2 = "";
651                 fprintf(fp, "%s%s\r\n", s1, s2);
652                 fflush(fp);
653         }
654
655         do {
656                 char *buf_ptr;
657
658                 if (fgets(buf, 510, fp) == NULL) {
659                         bb_perror_msg_and_die("error getting response");
660                 }
661                 buf_ptr = strstr(buf, "\r\n");
662                 if (buf_ptr) {
663                         *buf_ptr = '\0';
664                 }
665         } while (!isdigit(buf[0]) || buf[3] != ' ');
666
667         buf[3] = '\0';
668         result = xatoi_u(buf);
669         buf[3] = ' ';
670         return result;
671 }
672
673 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
674 /* Stuff below is from BSD rcp util.c, as added to openshh.
675  * Original copyright notice is retained at the end of this file.
676  */
677 static int
678 getttywidth(void)
679 {
680         int width=0;
681         get_terminal_width_height(0, &width, NULL);
682         return width;
683 }
684
685 static void
686 updateprogressmeter(int ignore)
687 {
688         int save_errno = errno;
689
690         progressmeter(0);
691         errno = save_errno;
692 }
693
694 static void alarmtimer(int iwait)
695 {
696         struct itimerval itv;
697
698         itv.it_value.tv_sec = iwait;
699         itv.it_value.tv_usec = 0;
700         itv.it_interval = itv.it_value;
701         setitimer(ITIMER_REAL, &itv, NULL);
702 }
703
704
705 static void
706 progressmeter(int flag)
707 {
708         static struct timeval lastupdate;
709         static off_t lastsize, totalsize;
710
711         struct timeval now, td, tvwait;
712         off_t abbrevsize;
713         int elapsed, ratio, barlength, i;
714         char buf[256];
715
716         if (flag == -1) { /* first call to progressmeter */
717                 (void) gettimeofday(&start, (struct timezone *) 0);
718                 lastupdate = start;
719                 lastsize = 0;
720                 totalsize = content_len + beg_range; /* as content_len changes.. */
721         }
722
723         (void) gettimeofday(&now, (struct timezone *) 0);
724         ratio = 100;
725         if (totalsize != 0 && !chunked) {
726                 ratio = (int) (100 * (transferred+beg_range) / totalsize);
727                 ratio = MIN(ratio, 100);
728         }
729
730         fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
731
732         barlength = getttywidth() - 51;
733         if (barlength > 0 && barlength < sizeof(buf)) {
734                 i = barlength * ratio / 100;
735                 memset(buf, '*', i);
736                 memset(buf + i, ' ', barlength - i);
737                 buf[barlength] = '\0';
738                 fprintf(stderr, "|%s|", buf);
739         }
740         i = 0;
741         abbrevsize = transferred + beg_range;
742         while (abbrevsize >= 100000) {
743                 i++;
744                 abbrevsize >>= 10;
745         }
746         /* See http://en.wikipedia.org/wiki/Tera */
747         fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
748
749         timersub(&now, &lastupdate, &tvwait);
750         if (transferred > lastsize) {
751                 lastupdate = now;
752                 lastsize = transferred;
753                 if (tvwait.tv_sec >= STALLTIME)
754                         timeradd(&start, &tvwait, &start);
755                 tvwait.tv_sec = 0;
756         }
757         timersub(&now, &start, &td);
758         elapsed = td.tv_sec;
759
760         if (tvwait.tv_sec >= STALLTIME) {
761                 fprintf(stderr, " - stalled -");
762         } else {
763                 off_t to_download = totalsize - beg_range;
764                 if (transferred <= 0 || elapsed <= 0 || transferred > to_download || chunked) {
765                         fprintf(stderr, "--:--:-- ETA");
766                 } else {
767                         /* to_download / (transferred/elapsed) - elapsed: */
768                         int eta = (int) (to_download*elapsed/transferred - elapsed);
769                         i = eta % 3600;
770                         fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
771                 }
772         }
773
774         if (flag == -1) { /* first call to progressmeter */
775                 struct sigaction sa;
776                 sa.sa_handler = updateprogressmeter;
777                 sigemptyset(&sa.sa_mask);
778                 sa.sa_flags = SA_RESTART;
779                 sigaction(SIGALRM, &sa, NULL);
780                 alarmtimer(1);
781         } else if (flag == 1) { /* last call to progressmeter */
782                 alarmtimer(0);
783                 transferred = 0;
784                 putc('\n', stderr);
785         }
786 }
787 #endif
788
789 /* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
790  * much of which was blatantly stolen from openssh.  */
791
792 /*-
793  * Copyright (c) 1992, 1993
794  *      The Regents of the University of California.  All rights reserved.
795  *
796  * Redistribution and use in source and binary forms, with or without
797  * modification, are permitted provided that the following conditions
798  * are met:
799  * 1. Redistributions of source code must retain the above copyright
800  *    notice, this list of conditions and the following disclaimer.
801  * 2. Redistributions in binary form must reproduce the above copyright
802  *    notice, this list of conditions and the following disclaimer in the
803  *    documentation and/or other materials provided with the distribution.
804  *
805  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
806  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
807  *
808  * 4. Neither the name of the University nor the names of its contributors
809  *    may be used to endorse or promote products derived from this software
810  *    without specific prior written permission.
811  *
812  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
813  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
814  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
815  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
816  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
817  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
818  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
819  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
820  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
821  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
822  * SUCH DAMAGE.
823  *
824  *      $Id: wget.c,v 1.75 2004/10/08 08:27:40 andersen Exp $
825  */