9f5dbaf2130bab784bf5076af6871bf06eb5565d
[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(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 noproxy = 0;            /* 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, "on") == 0) {
204                 /* Use the proxy if necessary. */
205                 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
206                 if (proxy)
207                         parse_url(bb_xstrdup(proxy), &server);
208         }
209         if (opt & WGET_OPT_HEADER) {
210                 while (headers_llist) {
211                         int arglen = strlen(headers_llist->data);
212                         if (extra_headers_left - arglen - 2 <= 0)
213                                 bb_error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen);
214                         strcpy(extra_headers_ptr, headers_llist->data);
215                         extra_headers_ptr += arglen;
216                         extra_headers_left -= ( arglen + 2 );
217                         *extra_headers_ptr++ = '\r';
218                         *extra_headers_ptr++ = '\n';
219                         *(extra_headers_ptr + 1) = 0;
220                         headers_llist = headers_llist->link;
221                 }
222         }
223         if (argc - optind != 1)
224                         bb_show_usage();
225
226         parse_url(argv[optind], &target);
227         server.host = target.host;
228         server.port = target.port;
229
230         /*
231          * Use the proxy if necessary.
232          */
233         if (!noproxy) {
234                 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
235                 if (proxy)
236                         parse_url(bb_xstrdup(proxy), &server);
237         }
238         
239         /* Guess an output filename */
240         if (!fname_out) {
241                 fname_out = 
242 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
243                         curfile = 
244 #endif
245                         bb_get_last_path_component(target.path);
246                 if (fname_out==NULL || strlen(fname_out)<1) {
247                         fname_out = 
248 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
249                                 curfile = 
250 #endif
251                                 "index.html";
252                 }
253                 if (dir_prefix != NULL)
254                         fname_out = concat_path_file(dir_prefix, fname_out);
255 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
256         } else {
257                 curfile = bb_get_last_path_component(fname_out);
258 #endif
259         }
260         if (do_continue && !fname_out)
261                 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
262
263
264         /*
265          * Open the output file stream.
266          */
267         if (strcmp(fname_out, "-") == 0) {
268                 output = stdout;
269                 quiet_flag = TRUE;
270         } else {
271                 output = bb_xfopen(fname_out, (do_continue ? "a" : "w"));
272         }
273
274         /*
275          * Determine where to start transfer.
276          */
277         if (do_continue) {
278                 if (fstat(fileno(output), &sbuf) < 0)
279                         bb_perror_msg_and_die("fstat()");
280                 if (sbuf.st_size > 0)
281                         beg_range = sbuf.st_size;
282                 else
283                         do_continue = 0;
284         }
285
286         /* We want to do exactly _one_ DNS lookup, since some
287          * sites (i.e. ftp.us.debian.org) use round-robin DNS
288          * and we want to connect to only one IP... */
289         bb_lookup_host(&s_in, server.host);
290         s_in.sin_port = server.port;
291         if (quiet_flag==FALSE) {
292                 fprintf(stdout, "Connecting to %s[%s]:%d\n",
293                                 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
294         }
295
296         if (proxy || !target.is_ftp) {
297                 /*
298                  *  HTTP session
299                  */
300                 do {
301                         got_clen = chunked = 0;
302
303                         if (! --try)
304                                 close_delete_and_die("too many redirections");
305
306                         /*
307                          * Open socket to http server
308                          */
309                         if (sfp) fclose(sfp);
310                         sfp = open_socket(&s_in);
311                         
312                         /*
313                          * Send HTTP request.
314                          */
315                         if (proxy) {
316                                 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
317 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
318                                 if (strchr (target.host, ':'))
319                                         format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
320 #endif
321                                 fprintf(sfp, format,
322                                         target.is_ftp ? "f" : "ht", target.host,
323                                         target.port, target.path);
324                         } else {
325                                 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
326                         }
327
328                         fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
329
330 #ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
331                         if (target.user) {
332                                 fprintf(sfp, "Authorization: Basic %s\r\n",
333                                         base64enc(target.user, buf, sizeof(buf)));
334                         }
335                         if (proxy && server.user) {
336                                 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
337                                         base64enc(server.user, buf, sizeof(buf)));
338                         }
339 #endif
340
341                         if (do_continue)
342                                 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
343                         if(extra_headers_left < sizeof(extra_headers))
344                                 fputs(extra_headers,sfp);
345                         fprintf(sfp,"Connection: close\r\n\r\n");
346
347                         /*
348                         * Retrieve HTTP response line and check for "200" status code.
349                         */
350 read_response:
351                         if (fgets(buf, sizeof(buf), sfp) == NULL)
352                                 close_delete_and_die("no response from server");
353                                 
354                         for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
355                         ;
356                         for ( ; isspace(*s) ; ++s)
357                         ;
358                         switch (status = atoi(s)) {
359                                 case 0:
360                                 case 100:
361                                         while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
362                                         goto read_response;
363                                 case 200:
364                                         if (do_continue && output != stdout)
365                                                 output = freopen(fname_out, "w", output);
366                                         do_continue = 0;
367                                         break;
368                                 case 300:       /* redirection */
369                                 case 301:
370                                 case 302:
371                                 case 303:
372                                         break;
373                                 case 206:
374                                         if (do_continue)
375                                                 break;
376                                         /*FALLTHRU*/
377                                 default:
378                                         chomp(buf);
379                                         close_delete_and_die("server returned error %d: %s", atoi(s), buf);
380                         }
381                 
382                         /*
383                          * Retrieve HTTP headers.
384                          */
385                         while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
386                                 if (strcasecmp(buf, "content-length") == 0) {
387                                         filesize = atol(s);
388                                         got_clen = 1;
389                                         continue;
390                                 }
391                                 if (strcasecmp(buf, "transfer-encoding") == 0) {
392                                         if (strcasecmp(s, "chunked") == 0) {
393                                                 chunked = got_clen = 1;
394                                         } else {
395                                         close_delete_and_die("server wants to do %s transfer encoding", s);
396                                         }
397                                 }
398                                 if (strcasecmp(buf, "location") == 0) {
399                                         if (s[0] == '/')
400                                                 target.path = bb_xstrdup(s+1);
401                                         else {
402                                                 parse_url(bb_xstrdup(s), &target);
403                                                 if (!proxy) {
404                                                         server.host = target.host;
405                                                         server.port = target.port;
406                                                 }
407                                         }
408                                 }
409                         }
410                 } while(status >= 300);
411                 
412                 dfp = sfp;
413         }
414         else
415         {
416                 /*
417                  *  FTP session
418                  */
419                 if (! target.user)
420                         target.user = bb_xstrdup("anonymous:busybox@");
421
422                 sfp = open_socket(&s_in);
423                 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
424                         close_delete_and_die("%s", buf+4);
425
426                 /* 
427                  * Splitting username:password pair,
428                  * trying to log in
429                  */
430                 s = strchr(target.user, ':');
431                 if (s)
432                         *(s++) = '\0';
433                 switch(ftpcmd("USER ", target.user, sfp, buf)) {
434                         case 230:
435                                 break;
436                         case 331:
437                                 if (ftpcmd("PASS ", s, sfp, buf) == 230)
438                                         break;
439                                 /* FALLTHRU (failed login) */
440                         default:
441                                 close_delete_and_die("ftp login: %s", buf+4);
442                 }
443                 
444                 ftpcmd("CDUP", NULL, sfp, buf);
445                 ftpcmd("TYPE I", NULL, sfp, buf);
446                 
447                 /*
448                  * Querying file size
449                  */
450                 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
451                         filesize = atol(buf+4);
452                         got_clen = 1;
453                 }
454                 
455                 /*
456                  * Entering passive mode
457                  */
458                 if (ftpcmd("PASV", NULL, sfp, buf) !=  227)
459                         close_delete_and_die("PASV: %s", buf+4);
460                 s = strrchr(buf, ',');
461                 *s = 0;
462                 port = atoi(s+1);
463                 s = strrchr(buf, ',');
464                 port += atoi(s+1) * 256;
465                 s_in.sin_port = htons(port);
466                 dfp = open_socket(&s_in);
467
468                 if (do_continue) {
469                         sprintf(buf, "REST %ld", beg_range);
470                         if (ftpcmd(buf, NULL, sfp, buf) != 350) {
471                                 if (output != stdout)
472                                         output = freopen(fname_out, "w", output);
473                                 do_continue = 0;
474                         } else
475                                 filesize -= beg_range;
476                 }
477                 
478                 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
479                         close_delete_and_die("RETR: %s", buf+4);
480
481         }
482
483
484         /*
485          * Retrieve file
486          */
487         if (chunked) {
488                 fgets(buf, sizeof(buf), dfp);
489                 filesize = strtol(buf, (char **) NULL, 16);
490         }
491 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
492         if (quiet_flag==FALSE)
493                 progressmeter(-1);
494 #endif
495         do {
496                 while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, ((chunked || got_clen) && (filesize < sizeof(buf)) ? filesize : sizeof(buf)), dfp)) > 0) {
497                         if (safe_fwrite(buf, 1, n, output) != n) {
498                                 bb_perror_msg_and_die("write error");
499                         }
500 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
501                         statbytes+=n;
502 #endif
503                         if (got_clen) {
504                                 filesize -= n;
505                         }
506                 }
507
508                 if (chunked) {
509                         safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
510                         safe_fgets(buf, sizeof(buf), dfp);
511                         filesize = strtol(buf, (char **) NULL, 16);
512                         if (filesize==0) {
513                                 chunked = 0; /* all done! */
514                         }
515                 }
516
517                 if (n == 0 && ferror(dfp)) {
518                         bb_perror_msg_and_die("network read error");
519                 }
520         } while (chunked);
521 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
522         if (quiet_flag==FALSE)
523                 progressmeter(1);
524 #endif
525         if (!proxy && target.is_ftp) {
526                 fclose(dfp);
527                 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
528                         bb_error_msg_and_die("ftp error: %s", buf+4);
529                 ftpcmd("QUIT", NULL, sfp, buf);
530         }
531         exit(EXIT_SUCCESS);
532 }
533
534
535 void parse_url(char *url, struct host_info *h)
536 {
537         char *cp, *sp, *up, *pp;
538
539         if (strncmp(url, "http://", 7) == 0) {
540                 h->port = bb_lookup_port("http", 80);
541                 h->host = url + 7;
542                 h->is_ftp = 0;
543         } else if (strncmp(url, "ftp://", 6) == 0) {
544                 h->port = bb_lookup_port("ftp", 21);
545                 h->host = url + 6;
546                 h->is_ftp = 1;
547         } else
548                 bb_error_msg_and_die("not an http or ftp url: %s", url);
549
550         sp = strchr(h->host, '/');
551         if (sp != NULL) {
552                 *sp++ = '\0';
553                 h->path = sp;
554         } else
555                 h->path = bb_xstrdup("");
556
557         up = strrchr(h->host, '@');
558         if (up != NULL) {
559                 h->user = h->host;
560                 *up++ = '\0';
561                 h->host = up;
562         } else
563                 h->user = NULL;
564
565         pp = h->host;
566
567 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
568         if (h->host[0] == '[') {
569                 char *ep;
570
571                 ep = h->host + 1;
572                 while (*ep == ':' || isxdigit (*ep))
573                         ep++;
574                 if (*ep == ']') {
575                         h->host++;
576                         *ep = '\0';
577                         pp = ep + 1;
578                 }
579         }
580 #endif
581
582         cp = strchr(pp, ':');
583         if (cp != NULL) {
584                 *cp++ = '\0';
585                 h->port = atoi(cp);
586         }
587
588 }
589
590
591 FILE *open_socket(struct sockaddr_in *s_in)
592 {
593         FILE *fp;
594
595         fp = fdopen(xconnect(s_in), "r+");
596         if (fp == NULL)
597                 bb_perror_msg_and_die("fdopen()");
598
599         return fp;
600 }
601
602
603 char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
604 {
605         char *s, *hdrval;
606         int c;
607
608         *istrunc = 0;
609
610         /* retrieve header line */
611         if (fgets(buf, bufsiz, fp) == NULL)
612                 return NULL;
613
614         /* see if we are at the end of the headers */
615         for (s = buf ; *s == '\r' ; ++s)
616                 ;
617         if (s[0] == '\n')
618                 return NULL;
619
620         /* convert the header name to lower case */
621         for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
622                 *s = tolower(*s);
623
624         /* verify we are at the end of the header name */
625         if (*s != ':')
626                 bb_error_msg_and_die("bad header line: %s", buf);
627
628         /* locate the start of the header value */
629         for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
630                 ;
631         hdrval = s;
632
633         /* locate the end of header */
634         while (*s != '\0' && *s != '\r' && *s != '\n')
635                 ++s;
636
637         /* end of header found */
638         if (*s != '\0') {
639                 *s = '\0';
640                 return hdrval;
641         }
642
643         /* Rats!  The buffer isn't big enough to hold the entire header value. */
644         while (c = getc(fp), c != EOF && c != '\n')
645                 ;
646         *istrunc = 1;
647         return hdrval;
648 }
649
650 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
651 {
652         char *p;
653         
654         if (s1) {
655                 if (!s2) s2="";
656                 fprintf(fp, "%s%s\r\n", s1, s2);
657                 fflush(fp);
658         }
659         
660         do {
661                 p = fgets(buf, 510, fp);
662                 if (!p)
663                         bb_perror_msg_and_die("fgets()");
664         } while (! isdigit(buf[0]) || buf[3] != ' ');
665         
666         return atoi(buf);
667 }
668
669 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
670 /* Stuff below is from BSD rcp util.c, as added to openshh. 
671  * Original copyright notice is retained at the end of this file.
672  * 
673  */ 
674
675
676 static int
677 getttywidth(void)
678 {
679         int width=0;
680         get_terminal_width_height(0, &width, NULL);
681         return (width);
682 }
683
684 static void
685 updateprogressmeter(int ignore)
686 {
687         int save_errno = errno;
688
689         progressmeter(0);
690         errno = save_errno;
691 }
692
693 static void
694 alarmtimer(int wait)
695 {
696         struct itimerval itv;
697
698         itv.it_value.tv_sec = wait;
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 const char prefixes[] = " KMGTP";
709         static struct timeval lastupdate;
710         static off_t lastsize, totalsize;
711         struct timeval now, td, wait;
712         off_t cursize, abbrevsize;
713         double elapsed;
714         int ratio, barlength, i, remaining;
715         char buf[256];
716
717         if (flag == -1) {
718                 (void) gettimeofday(&start, (struct timezone *) 0);
719                 lastupdate = start;
720                 lastsize = 0;
721                 totalsize = filesize; /* as filesize changes.. */
722         }
723
724         (void) gettimeofday(&now, (struct timezone *) 0);
725         cursize = statbytes;
726         if (totalsize != 0 && !chunked) {
727                 ratio = 100.0 * cursize / totalsize;
728                 ratio = MAX(ratio, 0);
729                 ratio = MIN(ratio, 100);
730         } else
731                 ratio = 100;
732
733         snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
734
735         barlength = getttywidth() - 51;
736         if (barlength > 0) {
737                 i = barlength * ratio / 100;
738                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
739                          "|%.*s%*s|", i,
740                          "*****************************************************************************"
741                          "*****************************************************************************",
742                          barlength - i, "");
743         }
744         i = 0;
745         abbrevsize = cursize;
746         while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
747                 i++;
748                 abbrevsize >>= 10;
749         }
750         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
751              (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
752                  'B');
753
754         timersub(&now, &lastupdate, &wait);
755         if (cursize > lastsize) {
756                 lastupdate = now;
757                 lastsize = cursize;
758                 if (wait.tv_sec >= STALLTIME) {
759                         start.tv_sec += wait.tv_sec;
760                         start.tv_usec += wait.tv_usec;
761                 }
762                 wait.tv_sec = 0;
763         }
764         timersub(&now, &start, &td);
765         elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
766
767         if (wait.tv_sec >= STALLTIME) {
768                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
769                          " - stalled -");
770         } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
771                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
772                          "   --:-- ETA");
773         } else {
774                 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
775                 i = remaining / 3600;
776                 if (i)
777                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
778                                  "%2d:", i);
779                 else
780                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
781                                  "   ");
782                 i = remaining % 3600;
783                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
784                          "%02d:%02d ETA", i / 60, i % 60);
785         }
786         write(fileno(stderr), buf, strlen(buf));
787
788         if (flag == -1) {
789                 struct sigaction sa;
790                 sa.sa_handler = updateprogressmeter;
791                 sigemptyset(&sa.sa_mask);
792                 sa.sa_flags = SA_RESTART;
793                 sigaction(SIGALRM, &sa, NULL);
794                 alarmtimer(1);
795         } else if (flag == 1) {
796                 alarmtimer(0);
797                 statbytes = 0;
798                 putc('\n', stderr);
799         }
800 }
801 #endif
802
803 /* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
804  * much of which was blatently stolen from openssh.  */
805  
806 /*-
807  * Copyright (c) 1992, 1993
808  *      The Regents of the University of California.  All rights reserved.
809  *
810  * Redistribution and use in source and binary forms, with or without
811  * modification, are permitted provided that the following conditions
812  * are met:
813  * 1. Redistributions of source code must retain the above copyright
814  *    notice, this list of conditions and the following disclaimer.
815  * 2. Redistributions in binary form must reproduce the above copyright
816  *    notice, this list of conditions and the following disclaimer in the
817  *    documentation and/or other materials provided with the distribution.
818  *
819  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change 
820  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
821  *
822  * 4. Neither the name of the University nor the names of its contributors
823  *    may be used to endorse or promote products derived from this software
824  *    without specific prior written permission.
825  *
826  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
827  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
828  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
829  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
830  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
831  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
832  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
833  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
834  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
835  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
836  * SUCH DAMAGE.
837  *
838  *      $Id: wget.c,v 1.63 2003/12/20 01:47:18 bug1 Exp $
839  */
840
841
842
843 /*
844 Local Variables:
845 c-file-style: "linux"
846 c-basic-offset: 4
847 tab-width: 4
848 End:
849 */