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