3fd1df124f749c187daf7d283c734437c0f73cac
[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                                                 bb_lookup_host(&s_in, server.host);
408                                                 s_in.sin_port = server.port;
409                                                 break;
410                                         }
411                                 }
412                         }
413                 } while(status >= 300);
414                 
415                 dfp = sfp;
416         }
417         else
418         {
419                 /*
420                  *  FTP session
421                  */
422                 if (! target.user)
423                         target.user = bb_xstrdup("anonymous:busybox@");
424
425                 sfp = open_socket(&s_in);
426                 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
427                         close_delete_and_die("%s", buf+4);
428
429                 /* 
430                  * Splitting username:password pair,
431                  * trying to log in
432                  */
433                 s = strchr(target.user, ':');
434                 if (s)
435                         *(s++) = '\0';
436                 switch(ftpcmd("USER ", target.user, sfp, buf)) {
437                         case 230:
438                                 break;
439                         case 331:
440                                 if (ftpcmd("PASS ", s, sfp, buf) == 230)
441                                         break;
442                                 /* FALLTHRU (failed login) */
443                         default:
444                                 close_delete_and_die("ftp login: %s", buf+4);
445                 }
446                 
447                 ftpcmd("CDUP", NULL, sfp, buf);
448                 ftpcmd("TYPE I", NULL, sfp, buf);
449                 
450                 /*
451                  * Querying file size
452                  */
453                 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
454                         filesize = atol(buf+4);
455                         got_clen = 1;
456                 }
457                 
458                 /*
459                  * Entering passive mode
460                  */
461                 if (ftpcmd("PASV", NULL, sfp, buf) !=  227)
462                         close_delete_and_die("PASV: %s", buf+4);
463                 s = strrchr(buf, ',');
464                 *s = 0;
465                 port = atoi(s+1);
466                 s = strrchr(buf, ',');
467                 port += atoi(s+1) * 256;
468                 s_in.sin_port = htons(port);
469                 dfp = open_socket(&s_in);
470
471                 if (do_continue) {
472                         sprintf(buf, "REST %ld", beg_range);
473                         if (ftpcmd(buf, NULL, sfp, buf) != 350) {
474                                 if (output != stdout)
475                                         output = freopen(fname_out, "w", output);
476                                 do_continue = 0;
477                         } else
478                                 filesize -= beg_range;
479                 }
480                 
481                 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
482                         close_delete_and_die("RETR: %s", buf+4);
483
484         }
485
486
487         /*
488          * Retrieve file
489          */
490         if (chunked) {
491                 fgets(buf, sizeof(buf), dfp);
492                 filesize = strtol(buf, (char **) NULL, 16);
493         }
494 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
495         if (quiet_flag==FALSE)
496                 progressmeter(-1);
497 #endif
498         do {
499                 while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, ((chunked || got_clen) && (filesize < sizeof(buf)) ? filesize : sizeof(buf)), dfp)) > 0) {
500                         if (safe_fwrite(buf, 1, n, output) != n) {
501                                 bb_perror_msg_and_die("write error");
502                         }
503 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
504                         statbytes+=n;
505 #endif
506                         if (got_clen) {
507                                 filesize -= n;
508                         }
509                 }
510
511                 if (chunked) {
512                         safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
513                         safe_fgets(buf, sizeof(buf), dfp);
514                         filesize = strtol(buf, (char **) NULL, 16);
515                         if (filesize==0) {
516                                 chunked = 0; /* all done! */
517                         }
518                 }
519
520                 if (n == 0 && ferror(dfp)) {
521                         bb_perror_msg_and_die("network read error");
522                 }
523         } while (chunked);
524 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
525         if (quiet_flag==FALSE)
526                 progressmeter(1);
527 #endif
528         if (!proxy && target.is_ftp) {
529                 fclose(dfp);
530                 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
531                         bb_error_msg_and_die("ftp error: %s", buf+4);
532                 ftpcmd("QUIT", NULL, sfp, buf);
533         }
534         exit(EXIT_SUCCESS);
535 }
536
537
538 void parse_url(char *url, struct host_info *h)
539 {
540         char *cp, *sp, *up, *pp;
541
542         if (strncmp(url, "http://", 7) == 0) {
543                 h->port = bb_lookup_port("http", "tcp", 80);
544                 h->host = url + 7;
545                 h->is_ftp = 0;
546         } else if (strncmp(url, "ftp://", 6) == 0) {
547                 h->port = bb_lookup_port("ftp", "tfp", 21);
548                 h->host = url + 6;
549                 h->is_ftp = 1;
550         } else
551                 bb_error_msg_and_die("not an http or ftp url: %s", url);
552
553         sp = strchr(h->host, '/');
554         if (sp != NULL) {
555                 *sp++ = '\0';
556                 h->path = sp;
557         } else
558                 h->path = bb_xstrdup("");
559
560         up = strrchr(h->host, '@');
561         if (up != NULL) {
562                 h->user = h->host;
563                 *up++ = '\0';
564                 h->host = up;
565         } else
566                 h->user = NULL;
567
568         pp = h->host;
569
570 #ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
571         if (h->host[0] == '[') {
572                 char *ep;
573
574                 ep = h->host + 1;
575                 while (*ep == ':' || isxdigit (*ep))
576                         ep++;
577                 if (*ep == ']') {
578                         h->host++;
579                         *ep = '\0';
580                         pp = ep + 1;
581                 }
582         }
583 #endif
584
585         cp = strchr(pp, ':');
586         if (cp != NULL) {
587                 *cp++ = '\0';
588                 h->port = htons(atoi(cp));
589         }
590 }
591
592
593 FILE *open_socket(struct sockaddr_in *s_in)
594 {
595         FILE *fp;
596
597         fp = fdopen(xconnect(s_in), "r+");
598         if (fp == NULL)
599                 bb_perror_msg_and_die("fdopen()");
600
601         return fp;
602 }
603
604
605 char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
606 {
607         char *s, *hdrval;
608         int c;
609
610         *istrunc = 0;
611
612         /* retrieve header line */
613         if (fgets(buf, bufsiz, fp) == NULL)
614                 return NULL;
615
616         /* see if we are at the end of the headers */
617         for (s = buf ; *s == '\r' ; ++s)
618                 ;
619         if (s[0] == '\n')
620                 return NULL;
621
622         /* convert the header name to lower case */
623         for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
624                 *s = tolower(*s);
625
626         /* verify we are at the end of the header name */
627         if (*s != ':')
628                 bb_error_msg_and_die("bad header line: %s", buf);
629
630         /* locate the start of the header value */
631         for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
632                 ;
633         hdrval = s;
634
635         /* locate the end of header */
636         while (*s != '\0' && *s != '\r' && *s != '\n')
637                 ++s;
638
639         /* end of header found */
640         if (*s != '\0') {
641                 *s = '\0';
642                 return hdrval;
643         }
644
645         /* Rats!  The buffer isn't big enough to hold the entire header value. */
646         while (c = getc(fp), c != EOF && c != '\n')
647                 ;
648         *istrunc = 1;
649         return hdrval;
650 }
651
652 static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
653 {
654         char *p;
655         
656         if (s1) {
657                 if (!s2) s2="";
658                 fprintf(fp, "%s%s\r\n", s1, s2);
659                 fflush(fp);
660         }
661         
662         do {
663                 p = fgets(buf, 510, fp);
664                 if (!p)
665                         bb_perror_msg_and_die("fgets()");
666         } while (! isdigit(buf[0]) || buf[3] != ' ');
667         
668         return atoi(buf);
669 }
670
671 #ifdef CONFIG_FEATURE_WGET_STATUSBAR
672 /* Stuff below is from BSD rcp util.c, as added to openshh. 
673  * Original copyright notice is retained at the end of this file.
674  * 
675  */ 
676
677
678 static int
679 getttywidth(void)
680 {
681         int width=0;
682         get_terminal_width_height(0, &width, NULL);
683         return (width);
684 }
685
686 static void
687 updateprogressmeter(int ignore)
688 {
689         int save_errno = errno;
690
691         progressmeter(0);
692         errno = save_errno;
693 }
694
695 static void
696 alarmtimer(int wait)
697 {
698         struct itimerval itv;
699
700         itv.it_value.tv_sec = wait;
701         itv.it_value.tv_usec = 0;
702         itv.it_interval = itv.it_value;
703         setitimer(ITIMER_REAL, &itv, NULL);
704 }
705
706
707 static void
708 progressmeter(int flag)
709 {
710         static const char prefixes[] = " KMGTP";
711         static struct timeval lastupdate;
712         static off_t lastsize, totalsize;
713         struct timeval now, td, wait;
714         off_t cursize, abbrevsize;
715         double elapsed;
716         int ratio, barlength, i, remaining;
717         char buf[256];
718
719         if (flag == -1) {
720                 (void) gettimeofday(&start, (struct timezone *) 0);
721                 lastupdate = start;
722                 lastsize = 0;
723                 totalsize = filesize; /* as filesize changes.. */
724         }
725
726         (void) gettimeofday(&now, (struct timezone *) 0);
727         cursize = statbytes;
728         if (totalsize != 0 && !chunked) {
729                 ratio = 100.0 * cursize / totalsize;
730                 ratio = MAX(ratio, 0);
731                 ratio = MIN(ratio, 100);
732         } else
733                 ratio = 100;
734
735         snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
736
737         barlength = getttywidth() - 51;
738         if (barlength > 0) {
739                 i = barlength * ratio / 100;
740                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
741                          "|%.*s%*s|", i,
742                          "*****************************************************************************"
743                          "*****************************************************************************",
744                          barlength - i, "");
745         }
746         i = 0;
747         abbrevsize = cursize;
748         while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
749                 i++;
750                 abbrevsize >>= 10;
751         }
752         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
753              (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
754                  'B');
755
756         timersub(&now, &lastupdate, &wait);
757         if (cursize > lastsize) {
758                 lastupdate = now;
759                 lastsize = cursize;
760                 if (wait.tv_sec >= STALLTIME) {
761                         start.tv_sec += wait.tv_sec;
762                         start.tv_usec += wait.tv_usec;
763                 }
764                 wait.tv_sec = 0;
765         }
766         timersub(&now, &start, &td);
767         elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
768
769         if (wait.tv_sec >= STALLTIME) {
770                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
771                          " - stalled -");
772         } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
773                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
774                          "   --:-- ETA");
775         } else {
776                 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
777                 i = remaining / 3600;
778                 if (i)
779                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
780                                  "%2d:", i);
781                 else
782                         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
783                                  "   ");
784                 i = remaining % 3600;
785                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
786                          "%02d:%02d ETA", i / 60, i % 60);
787         }
788         write(fileno(stderr), buf, strlen(buf));
789
790         if (flag == -1) {
791                 struct sigaction sa;
792                 sa.sa_handler = updateprogressmeter;
793                 sigemptyset(&sa.sa_mask);
794                 sa.sa_flags = SA_RESTART;
795                 sigaction(SIGALRM, &sa, NULL);
796                 alarmtimer(1);
797         } else if (flag == 1) {
798                 alarmtimer(0);
799                 statbytes = 0;
800                 putc('\n', stderr);
801         }
802 }
803 #endif
804
805 /* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
806  * much of which was blatently stolen from openssh.  */
807  
808 /*-
809  * Copyright (c) 1992, 1993
810  *      The Regents of the University of California.  All rights reserved.
811  *
812  * Redistribution and use in source and binary forms, with or without
813  * modification, are permitted provided that the following conditions
814  * are met:
815  * 1. Redistributions of source code must retain the above copyright
816  *    notice, this list of conditions and the following disclaimer.
817  * 2. Redistributions in binary form must reproduce the above copyright
818  *    notice, this list of conditions and the following disclaimer in the
819  *    documentation and/or other materials provided with the distribution.
820  *
821  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change 
822  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
823  *
824  * 4. Neither the name of the University nor the names of its contributors
825  *    may be used to endorse or promote products derived from this software
826  *    without specific prior written permission.
827  *
828  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
829  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
830  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
831  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
832  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
833  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
834  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
835  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
836  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
837  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
838  * SUCH DAMAGE.
839  *
840  *      $Id: wget.c,v 1.66 2004/01/17 23:07:14 bug1 Exp $
841  */
842
843
844
845 /*
846 Local Variables:
847 c-file-style: "linux"
848 c-basic-offset: 4
849 tab-width: 4
850 End:
851 */