Steve Grubb writes:
[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 #include <stdio.h>
10 #include <errno.h>
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <ctype.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include <signal.h>
17 #include <sys/ioctl.h>
18
19 #include <sys/time.h>
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <netdb.h>
26
27 #ifndef _GNU_SOURCE
28 #define _GNU_SOURCE
29 #endif
30 #include <getopt.h>
31
32 #include "busybox.h"
33
34 struct host_info {
35         char *host;
36         int port;
37         char *path;
38         int is_ftp;
39         char *user;
40 };
41
42 static void parse_url(char *url, struct host_info *h);
43 static FILE *open_socket(struct sockaddr_in *s_in);
44 static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
45 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
46
47 /* Globals (can be accessed from signal handlers */
48 static off_t filesize = 0;              /* content-length of the file */
49 static int chunked = 0;                 /* chunked transfer encoding */
50 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
51 static void progressmeter(int flag);
52 static char *curfile;                   /* Name of current file being transferred. */
53 static struct timeval start;    /* Time a transfer started. */
54 static volatile unsigned long statbytes = 0; /* Number of bytes transferred so far. */
55 /* For progressmeter() -- number of seconds before xfer considered "stalled" */
56 static const int STALLTIME = 5;
57 #endif
58
59 static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
60 {
61         if (output != stdout && do_continue==0) {
62                 fclose(output);
63                 unlink(fname_out);
64         }
65 }
66
67 /* Read NMEMB elements of SIZE bytes into PTR from STREAM.  Returns the
68  * number of elements read, and a short count if an eof or non-interrupt
69  * error is encountered.  */
70 static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
71 {
72         size_t ret = 0;
73
74         do {
75                 clearerr(stream);
76                 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
77         } while (ret < nmemb && ferror(stream) && errno == EINTR);
78
79         return ret;
80 }
81
82 /* Write NMEMB elements of SIZE bytes from PTR to STREAM.  Returns the
83  * number of elements written, and a short count if an eof or non-interrupt
84  * error is encountered.  */
85 static size_t safe_fwrite(void *ptr, size_t size, size_t nmemb, FILE *stream)
86 {
87         size_t ret = 0;
88
89         do {
90                 clearerr(stream);
91                 ret += fwrite((char *)ptr + (ret * size), size, nmemb - ret, stream);
92         } while (ret < nmemb && ferror(stream) && errno == EINTR);
93
94         return ret;
95 }
96
97 /* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
98  * Returns S, or NULL if an eof or non-interrupt error is encountered.  */
99 static char *safe_fgets(char *s, int size, FILE *stream)
100 {
101         char *ret;
102
103         do {
104                 clearerr(stream);
105                 ret = fgets(s, size, stream);
106         } while (ret == NULL && ferror(stream) && errno == EINTR);
107
108         return ret;
109 }
110
111 #define close_delete_and_die(s...) { \
112         close_and_delete_outfile(output, fname_out, do_continue); \
113         bb_error_msg_and_die(s); }
114
115
116 #ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
117 /*
118  *  Base64-encode character string
119  *  oops... isn't something similar in uuencode.c?
120  *  It would be better to use already existing code
121  */
122 char *base64enc(unsigned char *p, char *buf, int len) {
123
124         char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
125                     "0123456789+/";
126                 char *s = buf;
127
128         while(*p) {
129                                 if (s >= buf+len-4)
130                                         bb_error_msg_and_die("buffer overflow");
131                 *(s++) = al[(*p >> 2) & 0x3F];
132                 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
133                 *s = *(s+1) = '=';
134                 *(s+2) = 0;
135                 if (! *(++p)) break;
136                 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
137                 if (! *(++p)) break;
138                 *(s++) = al[*(p++) & 0x3F];
139         }
140
141                 return buf;
142 }
143 #endif
144
145 #define WGET_OPT_CONTINUE       1
146 #define WGET_OPT_QUIET  2
147 #define WGET_OPT_PASSIVE        4
148 #define WGET_OPT_OUTNAME        8
149 #define WGET_OPT_HEADER 16
150 #define WGET_OPT_PREFIX 32
151 #define WGET_OPT_PROXY  64
152
153 static const struct option wget_long_options[] = {
154         { "continue",        0, NULL, 'c' },
155         { "quiet",           0, NULL, 'q' },
156         { "passive-ftp",     0, NULL, 139 },
157         { "output-document", 1, NULL, 'O' },
158         { "header",              1, NULL, 131 },
159         { "directory-prefix",1, NULL, 'P' },
160         { "proxy",           1, NULL, 'Y' },
161         { 0,                 0, 0, 0 }
162 };
163
164 int wget_main(int argc, char **argv)
165 {
166         int n, try=5, status;
167         unsigned long opt;
168         int port;
169         char *proxy = 0;
170         char *dir_prefix=NULL;
171         char *s, buf[512];
172         struct stat sbuf;
173         char extra_headers[1024];
174         char *extra_headers_ptr = extra_headers;
175         int extra_headers_left = sizeof(extra_headers);
176         struct host_info server, target;
177         struct sockaddr_in s_in;
178         llist_t *headers_llist = NULL;
179
180         FILE *sfp = NULL;                       /* socket to web/ftp server                     */
181         FILE *dfp = NULL;                       /* socket to ftp server (data)          */
182         char *fname_out = NULL;         /* where to direct output (-O)          */
183         int do_continue = 0;            /* continue a prev transfer (-c)        */
184         long beg_range = 0L;            /*   range at which continue begins     */
185         int got_clen = 0;                       /* got content-length: from server      */
186         FILE *output;                           /* socket to web server                         */
187         int quiet_flag = FALSE;         /* Be verry, verry quiet...                     */
188         int use_proxy = 1;          /* Use proxies if env vars are set  */
189         char *proxy_flag = "on";        /* Use proxies if env vars are set  */
190
191         /*
192          * Crack command line.
193          */
194         bb_opt_complementaly = "\203*";
195         bb_applet_long_options = wget_long_options;
196         opt = bb_getopt_ulflags(argc, argv, "cq\213O:\203:P:Y:", &fname_out, &headers_llist, &dir_prefix, &proxy_flag);
197         if (opt & WGET_OPT_CONTINUE) {
198                 ++do_continue;
199         }
200         if (opt & WGET_OPT_QUIET) {
201                 quiet_flag = TRUE;
202         }
203         if (strcmp(proxy_flag, "off") == 0) {
204                 /* Use the proxy if necessary. */
205                 use_proxy = 0;
206         }
207         if (opt & WGET_OPT_HEADER) {
208                 while (headers_llist) {
209                         int arglen = strlen(headers_llist->data);
210                         if (extra_headers_left - arglen - 2 <= 0)
211                                 bb_error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen);
212                         strcpy(extra_headers_ptr, headers_llist->data);
213                         extra_headers_ptr += arglen;
214                         extra_headers_left -= ( arglen + 2 );
215                         *extra_headers_ptr++ = '\r';
216                         *extra_headers_ptr++ = '\n';
217                         *(extra_headers_ptr + 1) = 0;
218                         headers_llist = headers_llist->link;
219                 }
220         }
221         if (argc - optind != 1)
222                         bb_show_usage();
223
224         parse_url(argv[optind], &target);
225         server.host = target.host;
226         server.port = target.port;
227
228         /*
229          * Use the proxy if necessary.
230          */
231         if (use_proxy) {
232                 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
233                 if (proxy && *proxy) {
234                         parse_url(bb_xstrdup(proxy), &server);
235                 } else {
236                         use_proxy = 0;
237                 }
238         }
239
240         /* Guess an output filename */
241         if (!fname_out) {
242                 fname_out =
243 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
244                         curfile =
245 #endif
246                         bb_get_last_path_component(target.path);
247                 if (fname_out==NULL || strlen(fname_out)<1) {
248                         fname_out =
249 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
250                                 curfile =
251 #endif
252                                 "index.html";
253                 }
254                 if (dir_prefix != NULL)
255                         fname_out = concat_path_file(dir_prefix, fname_out);
256 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
257         } else {
258                 curfile = bb_get_last_path_component(fname_out);
259 #endif
260         }
261         if (do_continue && !fname_out)
262                 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
263
264
265         /*
266          * Open the output file stream.
267          */
268         if (strcmp(fname_out, "-") == 0) {
269                 output = stdout;
270                 quiet_flag = TRUE;
271         } else {
272                 output = bb_xfopen(fname_out, (do_continue ? "a" : "w"));
273         }
274
275         /*
276          * Determine where to start transfer.
277          */
278         if (do_continue) {
279                 if (fstat(fileno(output), &sbuf) < 0)
280                         bb_perror_msg_and_die("fstat()");
281                 if (sbuf.st_size > 0)
282                         beg_range = sbuf.st_size;
283                 else
284                         do_continue = 0;
285         }
286
287         /* We want to do exactly _one_ DNS lookup, since some
288          * sites (i.e. ftp.us.debian.org) use round-robin DNS
289          * and we want to connect to only one IP... */
290         bb_lookup_host(&s_in, server.host);
291         s_in.sin_port = server.port;
292         if (quiet_flag==FALSE) {
293                 fprintf(stdout, "Connecting to %s[%s]:%d\n",
294                                 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
295         }
296
297         if (use_proxy || !target.is_ftp) {
298                 /*
299                  *  HTTP session
300                  */
301                 do {
302                         got_clen = chunked = 0;
303
304                         if (! --try)
305                                 close_delete_and_die("too many redirections");
306
307                         /*
308                          * Open socket to http server
309                          */
310                         if (sfp) fclose(sfp);
311                         sfp = open_socket(&s_in);
312
313                         /*
314                          * Send HTTP request.
315                          */
316                         if (use_proxy) {
317                                 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
318 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
319                                 if (strchr (target.host, ':'))
320                                         format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
321 #endif
322                                 fprintf(sfp, format,
323                                         target.is_ftp ? "f" : "ht", target.host,
324                                         ntohs(target.port), target.path);
325                         } else {
326                                 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
327                         }
328
329                         fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
330
331 #ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
332                         if (target.user) {
333                                 fprintf(sfp, "Authorization: Basic %s\r\n",
334                                         base64enc(target.user, buf, sizeof(buf)));
335                         }
336                         if (use_proxy && server.user) {
337                                 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
338                                         base64enc(server.user, buf, sizeof(buf)));
339                         }
340 #endif
341
342                         if (do_continue)
343                                 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
344                         if(extra_headers_left < sizeof(extra_headers))
345                                 fputs(extra_headers,sfp);
346                         fprintf(sfp,"Connection: close\r\n\r\n");
347
348                         /*
349                         * Retrieve HTTP response line and check for "200" status code.
350                         */
351 read_response:
352                         if (fgets(buf, sizeof(buf), sfp) == NULL)
353                                 close_delete_and_die("no response from server");
354
355                         for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
356                         ;
357                         for ( ; isspace(*s) ; ++s)
358                         ;
359                         switch (status = atoi(s)) {
360                                 case 0:
361                                 case 100:
362                                         while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
363                                         goto read_response;
364                                 case 200:
365                                         if (do_continue && output != stdout)
366                                                 output = freopen(fname_out, "w", output);
367                                         do_continue = 0;
368                                         break;
369                                 case 300:       /* redirection */
370                                 case 301:
371                                 case 302:
372                                 case 303:
373                                         break;
374                                 case 206:
375                                         if (do_continue)
376                                                 break;
377                                         /*FALLTHRU*/
378                                 default:
379                                         chomp(buf);
380                                         close_delete_and_die("server returned error %d: %s", atoi(s), buf);
381                         }
382
383                         /*
384                          * Retrieve HTTP headers.
385                          */
386                         while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
387                                 if (strcasecmp(buf, "content-length") == 0) {
388                                         unsigned long value;
389                                         if (safe_strtoul(s, &value)) {
390                                                 close_delete_and_die("content-length %s is garbage", s);
391                                         }
392                                         filesize = value;
393                                         got_clen = 1;
394                                         continue;
395                                 }
396                                 if (strcasecmp(buf, "transfer-encoding") == 0) {
397                                         if (strcasecmp(s, "chunked") == 0) {
398                                                 chunked = got_clen = 1;
399                                         } else {
400                                         close_delete_and_die("server wants to do %s transfer encoding", s);
401                                         }
402                                 }
403                                 if (strcasecmp(buf, "location") == 0) {
404                                         if (s[0] == '/')
405                                                 target.path = bb_xstrdup(s+1);
406                                         else {
407                                                 parse_url(bb_xstrdup(s), &target);
408                                                 if (use_proxy == 0) {
409                                                         server.host = target.host;
410                                                         server.port = target.port;
411                                                 }
412                                                 bb_lookup_host(&s_in, server.host);
413                                                 s_in.sin_port = server.port;
414                                                 break;
415                                         }
416                                 }
417                         }
418                 } while(status >= 300);
419
420                 dfp = sfp;
421         }
422         else
423         {
424                 /*
425                  *  FTP session
426                  */
427                 if (! target.user)
428                         target.user = bb_xstrdup("anonymous:busybox@");
429
430                 sfp = open_socket(&s_in);
431                 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
432                         close_delete_and_die("%s", buf+4);
433
434                 /*
435                  * Splitting username:password pair,
436                  * trying to log in
437                  */
438                 s = strchr(target.user, ':');
439                 if (s)
440                         *(s++) = '\0';
441                 switch(ftpcmd("USER ", target.user, sfp, buf)) {
442                         case 230:
443                                 break;
444                         case 331:
445                                 if (ftpcmd("PASS ", s, sfp, buf) == 230)
446                                         break;
447                                 /* FALLTHRU (failed login) */
448                         default:
449                                 close_delete_and_die("ftp login: %s", buf+4);
450                 }
451
452                 ftpcmd("CDUP", NULL, sfp, buf);
453                 ftpcmd("TYPE I", NULL, sfp, buf);
454
455                 /*
456                  * Querying file size
457                  */
458                 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
459                         unsigned long value;
460                         if (safe_strtoul(buf+4, &value)) {
461                                 close_delete_and_die("SIZE value is garbage");
462                         }
463                         filesize = value;
464                         got_clen = 1;
465                 }
466
467                 /*
468                  * Entering passive mode
469                  */
470                 if (ftpcmd("PASV", NULL, sfp, buf) !=  227)
471                         close_delete_and_die("PASV: %s", buf+4);
472                 s = strrchr(buf, ',');
473                 *s = 0;
474                 port = atoi(s+1);
475                 s = strrchr(buf, ',');
476                 port += atoi(s+1) * 256;
477                 s_in.sin_port = htons(port);
478                 dfp = open_socket(&s_in);
479
480                 if (do_continue) {
481                         sprintf(buf, "REST %ld", beg_range);
482                         if (ftpcmd(buf, NULL, sfp, buf) != 350) {
483                                 if (output != stdout)
484                                         output = freopen(fname_out, "w", output);
485                                 do_continue = 0;
486                         } else
487                                 filesize -= beg_range;
488                 }
489
490                 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
491                         close_delete_and_die("RETR: %s", buf+4);
492
493         }
494
495
496         /*
497          * Retrieve file
498          */
499         if (chunked) {
500                 fgets(buf, sizeof(buf), dfp);
501                 filesize = strtol(buf, (char **) NULL, 16);
502         }
503 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
504         if (quiet_flag==FALSE)
505                 progressmeter(-1);
506 #endif
507         do {
508                 while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, ((chunked || got_clen) && (filesize < sizeof(buf)) ? filesize : sizeof(buf)), dfp)) > 0) {
509                         if (safe_fwrite(buf, 1, n, output) != n) {
510                                 bb_perror_msg_and_die("write error");
511                         }
512 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
513                         statbytes+=n;
514 #endif
515                         if (got_clen) {
516                                 filesize -= n;
517                         }
518                 }
519
520                 if (chunked) {
521                         safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
522                         safe_fgets(buf, sizeof(buf), dfp);
523                         filesize = strtol(buf, (char **) NULL, 16);
524                         if (filesize==0) {
525                                 chunked = 0; /* all done! */
526                         }
527                 }
528
529                 if (n == 0 && ferror(dfp)) {
530                         bb_perror_msg_and_die("network read error");
531                 }
532         } while (chunked);
533 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
534         if (quiet_flag==FALSE)
535                 progressmeter(1);
536 #endif
537         if ((use_proxy == 0) && target.is_ftp) {
538                 fclose(dfp);
539                 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
540                         bb_error_msg_and_die("ftp error: %s", buf+4);
541                 ftpcmd("QUIT", NULL, sfp, buf);
542         }
543         exit(EXIT_SUCCESS);
544 }
545
546
547 void parse_url(char *url, struct host_info *h)
548 {
549         char *cp, *sp, *up, *pp;
550
551         if (strncmp(url, "http://", 7) == 0) {
552                 h->port = bb_lookup_port("http", "tcp", 80);
553                 h->host = url + 7;
554                 h->is_ftp = 0;
555         } else if (strncmp(url, "ftp://", 6) == 0) {
556                 h->port = bb_lookup_port("ftp", "tfp", 21);
557                 h->host = url + 6;
558                 h->is_ftp = 1;
559         } else
560                 bb_error_msg_and_die("not an http or ftp url: %s", url);
561
562         sp = strchr(h->host, '/');
563         if (sp) {
564                 *sp++ = '\0';
565                 h->path = sp;
566         } else
567                 h->path = bb_xstrdup("");
568
569         up = strrchr(h->host, '@');
570         if (up != NULL) {
571                 h->user = h->host;
572                 *up++ = '\0';
573                 h->host = up;
574         } else
575                 h->user = NULL;
576
577         pp = h->host;
578
579 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
580         if (h->host[0] == '[') {
581                 char *ep;
582
583                 ep = h->host + 1;
584                 while (*ep == ':' || isxdigit (*ep))
585                         ep++;
586                 if (*ep == ']') {
587                         h->host++;
588                         *ep = '\0';
589                         pp = ep + 1;
590                 }
591         }
592 #endif
593
594         cp = strchr(pp, ':');
595         if (cp != NULL) {
596                 *cp++ = '\0';
597                 h->port = htons(atoi(cp));
598         }
599 }
600
601
602 FILE *open_socket(struct sockaddr_in *s_in)
603 {
604         FILE *fp;
605
606         fp = fdopen(xconnect(s_in), "r+");
607         if (fp == NULL)
608                 bb_perror_msg_and_die("fdopen()");
609
610         return fp;
611 }
612
613
614 char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
615 {
616         char *s, *hdrval;
617         int c;
618
619         *istrunc = 0;
620
621         /* retrieve header line */
622         if (fgets(buf, bufsiz, fp) == NULL)
623                 return NULL;
624
625         /* see if we are at the end of the headers */
626         for (s = buf ; *s == '\r' ; ++s)
627                 ;
628         if (s[0] == '\n')
629                 return NULL;
630
631         /* convert the header name to lower case */
632         for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
633                 *s = tolower(*s);
634
635         /* verify we are at the end of the header name */
636         if (*s != ':')
637                 bb_error_msg_and_die("bad header line: %s", buf);
638
639         /* locate the start of the header value */
640         for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
641                 ;
642         hdrval = s;
643
644         /* locate the end of header */
645         while (*s != '\0' && *s != '\r' && *s != '\n')
646                 ++s;
647
648         /* end of header found */
649         if (*s != '\0') {
650                 *s = '\0';
651                 return hdrval;
652         }
653
654         /* Rats!  The buffer isn't big enough to hold the entire header value. */
655         while (c = getc(fp), c != EOF && c != '\n')
656                 ;
657         *istrunc = 1;
658         return hdrval;
659 }
660
661 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
662 {
663         if (s1) {
664                 if (!s2) s2="";
665                 fprintf(fp, "%s%s\r\n", s1, s2);
666                 fflush(fp);
667         }
668
669         do {
670                 char *buf_ptr;
671
672                 if (fgets(buf, 510, fp) == NULL) {
673                         bb_perror_msg_and_die("fgets()");
674                 }
675                 buf_ptr = strstr(buf, "\r\n");
676                 if (buf_ptr) {
677                         *buf_ptr = '\0';
678                 }
679         } while (! isdigit(buf[0]) || buf[3] != ' ');
680
681         return atoi(buf);
682 }
683
684 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
685 /* Stuff below is from BSD rcp util.c, as added to openshh.
686  * Original copyright notice is retained at the end of this file.
687  *
688  */
689
690
691 static int
692 getttywidth(void)
693 {
694         int width=0;
695         get_terminal_width_height(0, &width, NULL);
696         return (width);
697 }
698
699 static void
700 updateprogressmeter(int ignore)
701 {
702         int save_errno = errno;
703
704         progressmeter(0);
705         errno = save_errno;
706 }
707
708 static void
709 alarmtimer(int wait)
710 {
711         struct itimerval itv;
712
713         itv.it_value.tv_sec = wait;
714         itv.it_value.tv_usec = 0;
715         itv.it_interval = itv.it_value;
716         setitimer(ITIMER_REAL, &itv, NULL);
717 }
718
719
720 static void
721 progressmeter(int flag)
722 {
723         static const char prefixes[] = " KMGTP";
724         static struct timeval lastupdate;
725         static off_t lastsize, totalsize;
726         struct timeval now, td, wait;
727         off_t cursize, abbrevsize;
728         double elapsed;
729         int ratio, barlength, i, remaining;
730         char buf[256];
731
732         if (flag == -1) {
733                 (void) gettimeofday(&start, (struct timezone *) 0);
734                 lastupdate = start;
735                 lastsize = 0;
736                 totalsize = filesize; /* as filesize changes.. */
737         }
738
739         (void) gettimeofday(&now, (struct timezone *) 0);
740         cursize = statbytes;
741         if (totalsize != 0 && !chunked) {
742                 ratio = 100.0 * cursize / totalsize;
743                 ratio = MAX(ratio, 0);
744                 ratio = MIN(ratio, 100);
745         } else
746                 ratio = 100;
747
748         snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
749
750         barlength = getttywidth() - 51;
751         if (barlength > 0) {
752                 i = barlength * ratio / 100;
753                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
754                          "|%.*s%*s|", i,
755                          "*****************************************************************************"
756                          "*****************************************************************************",
757                          barlength - i, "");
758         }
759         i = 0;
760         abbrevsize = cursize;
761         while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
762                 i++;
763                 abbrevsize >>= 10;
764         }
765         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
766              (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
767                  'B');
768
769         timersub(&now, &lastupdate, &wait);
770         if (cursize > lastsize) {
771                 lastupdate = now;
772                 lastsize = cursize;
773                 if (wait.tv_sec >= STALLTIME) {
774                         start.tv_sec += wait.tv_sec;
775                         start.tv_usec += wait.tv_usec;
776                 }
777                 wait.tv_sec = 0;
778         }
779         timersub(&now, &start, &td);
780         elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
781
782         if (wait.tv_sec >= STALLTIME) {
783                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
784                          " - stalled -");
785         } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
786                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
787                          "   --:-- ETA");
788         } else {
789                 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
790                 i = remaining / 3600;
791                 if (i)
792                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
793                                  "%2d:", i);
794                 else
795                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
796                                  "   ");
797                 i = remaining % 3600;
798                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
799                          "%02d:%02d ETA", i / 60, i % 60);
800         }
801         write(STDERR_FILENO, buf, strlen(buf));
802
803         if (flag == -1) {
804                 struct sigaction sa;
805                 sa.sa_handler = updateprogressmeter;
806                 sigemptyset(&sa.sa_mask);
807                 sa.sa_flags = SA_RESTART;
808                 sigaction(SIGALRM, &sa, NULL);
809                 alarmtimer(1);
810         } else if (flag == 1) {
811                 alarmtimer(0);
812                 statbytes = 0;
813                 putc('\n', stderr);
814         }
815 }
816 #endif
817
818 /* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
819  * much of which was blatantly stolen from openssh.  */
820
821 /*-
822  * Copyright (c) 1992, 1993
823  *      The Regents of the University of California.  All rights reserved.
824  *
825  * Redistribution and use in source and binary forms, with or without
826  * modification, are permitted provided that the following conditions
827  * are met:
828  * 1. Redistributions of source code must retain the above copyright
829  *    notice, this list of conditions and the following disclaimer.
830  * 2. Redistributions in binary form must reproduce the above copyright
831  *    notice, this list of conditions and the following disclaimer in the
832  *    documentation and/or other materials provided with the distribution.
833  *
834  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
835  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
836  *
837  * 4. Neither the name of the University nor the names of its contributors
838  *    may be used to endorse or promote products derived from this software
839  *    without specific prior written permission.
840  *
841  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
842  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
843  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
844  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
845  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
846  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
847  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
848  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
849  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
850  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
851  * SUCH DAMAGE.
852  *
853  *      $Id: wget.c,v 1.74 2004/04/14 17:51:24 andersen Exp $
854  */
855
856
857
858 /*
859 Local Variables:
860 c-file-style: "linux"
861 c-basic-offset: 4
862 tab-width: 4
863 End:
864 */