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