blob: 5bec0ddd5a918dd9d5a31a981e665ee0b56395bd [file] [log] [blame]
Eric Andersen96700832000-09-04 15:15:55 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersen79757c92001-04-05 21:45:54 +00003 * wget - retrieve a file using HTTP or FTP
Eric Andersen96700832000-09-04 15:15:55 +00004 *
Eric Andersen4e573f42000-11-14 23:29:24 +00005 * Chip Rosenthal Covad Communications <chip@laserlink.net>
Eric Andersenb520e082000-10-03 00:21:45 +00006 *
Eric Andersen4e573f42000-11-14 23:29:24 +00007 * Note: According to RFC2616 section 3.6.1, "All HTTP/1.1 applications MUST be
8 * able to receive and decode the "chunked" transfer-coding, and MUST ignore
9 * chunk-extension extensions they do not understand."
Eric Andersenb520e082000-10-03 00:21:45 +000010 *
Eric Andersen4e573f42000-11-14 23:29:24 +000011 * This prevents this particular wget app from completely RFC compliant, and as
12 * such, prevents it from being used as a general purpose web browser... This
13 * is a design decision, since it makes the code smaller.
Eric Andersenb520e082000-10-03 00:21:45 +000014 *
Eric Andersen96700832000-09-04 15:15:55 +000015 */
16
Eric Andersen96700832000-09-04 15:15:55 +000017#include <stdio.h>
Eric Andersendff9d542001-01-26 02:04:49 +000018#include <errno.h>
Eric Andersen96700832000-09-04 15:15:55 +000019#include <stdlib.h>
20#include <unistd.h>
21#include <ctype.h>
22#include <string.h>
Eric Andersenb520e082000-10-03 00:21:45 +000023#include <unistd.h>
24#include <signal.h>
25#include <sys/ioctl.h>
Eric Andersen96700832000-09-04 15:15:55 +000026
Eric Andersenb520e082000-10-03 00:21:45 +000027#include <sys/time.h>
Eric Andersen96700832000-09-04 15:15:55 +000028#include <sys/types.h>
29#include <sys/stat.h>
30#include <sys/socket.h>
31#include <netinet/in.h>
32#include <arpa/inet.h>
33#include <netdb.h>
34
Eric Andersencbe31da2001-02-20 06:14:08 +000035#include "busybox.h"
36
Eric Andersened3ef502001-01-27 08:24:39 +000037/* Stupid libc5 doesn't define this... */
38#ifndef timersub
39#define timersub(a, b, result) \
40 do { \
41 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
42 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
43 if ((result)->tv_usec < 0) { \
44 --(result)->tv_sec; \
45 (result)->tv_usec += 1000000; \
46 } \
47 } while (0)
48#endif
Eric Andersen96700832000-09-04 15:15:55 +000049
Eric Andersen79757c92001-04-05 21:45:54 +000050struct host_info {
51 char *host;
52 int port;
53 char *path;
54 int is_ftp;
55 char *user;
56};
57
58static void parse_url(char *url, struct host_info *h);
Eric Andersen3e6ff902001-03-09 21:24:12 +000059static FILE *open_socket(char *host, int port);
60static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersen79757c92001-04-05 21:45:54 +000061static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
Eric Andersen3e6ff902001-03-09 21:24:12 +000062static void progressmeter(int flag);
Eric Andersen96700832000-09-04 15:15:55 +000063
Eric Andersenb520e082000-10-03 00:21:45 +000064/* Globals (can be accessed from signal handlers */
65static off_t filesize = 0; /* content-length of the file */
Eric Andersen370fb082001-01-20 20:07:00 +000066#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +000067static char *curfile; /* Name of current file being transferred. */
68static struct timeval start; /* Time a transfer started. */
Eric Andersen3e6ff902001-03-09 21:24:12 +000069static volatile unsigned long statbytes; /* Number of bytes transferred so far. */
Eric Andersenb520e082000-10-03 00:21:45 +000070/* For progressmeter() -- number of seconds before xfer considered "stalled" */
Mark Whitley59ab0252001-01-23 22:30:04 +000071static const int STALLTIME = 5;
Eric Andersenb520e082000-10-03 00:21:45 +000072#endif
Eric Andersen7d697012001-01-24 20:28:35 +000073
Eric Andersen3e6ff902001-03-09 21:24:12 +000074static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
Eric Andersen7d697012001-01-24 20:28:35 +000075{
76 if (output != stdout && do_continue==0) {
77 fclose(output);
78 unlink(fname_out);
79 }
80}
Eric Andersen96700832000-09-04 15:15:55 +000081
Eric Andersen79757c92001-04-05 21:45:54 +000082#define close_delete_and_die(s...) { \
83 close_and_delete_outfile(output, fname_out, do_continue); \
84 error_msg_and_die(s); }
85
86
87#ifdef BB_FEATURE_WGET_AUTHENTICATION
88/*
89 * Base64-encode character string
90 * oops... isn't something similar in uuencode.c?
91 * It would be better to use already existing code
92 */
93char *base64enc(char *p, char *buf, int len) {
94
95 char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
96 "0123456789+/";
97 char *s = buf;
98
99 while(*p) {
100 if (s >= buf+len-4)
101 error_msg_and_die("buffer overflow");
102 *(s++) = al[(*p >> 2) & 0x3F];
103 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
104 *s = *(s+1) = '=';
105 *(s+2) = 0;
106 if (! *(++p)) break;
107 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
108 if (! *(++p)) break;
109 *(s++) = al[*(p++) & 0x3F];
110 }
111
112 return buf;
113}
114#endif
115
Eric Andersen96700832000-09-04 15:15:55 +0000116int wget_main(int argc, char **argv)
117{
Eric Andersen79757c92001-04-05 21:45:54 +0000118 int n, try=5, status;
119 int port;
120 char *proxy;
Eric Andersen29edd002000-12-09 16:55:35 +0000121 char *s, buf[512];
122 struct stat sbuf;
123
Eric Andersen79757c92001-04-05 21:45:54 +0000124 struct host_info server, target;
125
126 FILE *sfp = NULL; /* socket to web/ftp server */
127 FILE *dfp = NULL; /* socket to ftp server (data) */
Eric Andersen96700832000-09-04 15:15:55 +0000128 char *fname_out = NULL; /* where to direct output (-O) */
129 int do_continue = 0; /* continue a prev transfer (-c) */
130 long beg_range = 0L; /* range at which continue begins */
131 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +0000132 FILE *output; /* socket to web server */
133 int quiet_flag = FALSE; /* Be verry, verry quiet... */
134
Eric Andersen96700832000-09-04 15:15:55 +0000135 /*
136 * Crack command line.
137 */
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000138 while ((n = getopt(argc, argv, "cqO:")) != EOF) {
Eric Andersen96700832000-09-04 15:15:55 +0000139 switch (n) {
140 case 'c':
141 ++do_continue;
142 break;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000143 case 'q':
144 quiet_flag = TRUE;
145 break;
Eric Andersen96700832000-09-04 15:15:55 +0000146 case 'O':
Randolph Chung02553a22000-12-07 03:53:47 +0000147 /* can't set fname_out to NULL if outputting to stdout, because
148 * this gets interpreted as the auto-gen output filename
149 * case below - tausq@debian.org
150 */
151 fname_out = (strcmp(optarg, "-") == 0 ? (char *)1 : optarg);
Eric Andersen96700832000-09-04 15:15:55 +0000152 break;
153 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000154 show_usage();
Eric Andersen96700832000-09-04 15:15:55 +0000155 }
156 }
Eric Andersen25b669c2000-10-02 23:19:38 +0000157
Eric Andersen96700832000-09-04 15:15:55 +0000158 if (argc - optind != 1)
Eric Andersen67991cf2001-02-14 21:23:06 +0000159 show_usage();
Eric Andersen25b669c2000-10-02 23:19:38 +0000160
Eric Andersen79757c92001-04-05 21:45:54 +0000161 parse_url(argv[optind], &target);
162 server.host = target.host;
163 server.port = target.port;
164
Eric Andersen96700832000-09-04 15:15:55 +0000165 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000166 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000167 */
Eric Andersen79757c92001-04-05 21:45:54 +0000168 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
169 if (proxy)
170 parse_url(xstrdup(proxy), &server);
Eric Andersen29edd002000-12-09 16:55:35 +0000171
172 /* Guess an output filename */
173 if (!fname_out) {
174 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000175#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000176 curfile =
177#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000178 get_last_path_component(target.path);
Eric Andersen29edd002000-12-09 16:55:35 +0000179 if (fname_out==NULL || strlen(fname_out)<1) {
180 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000181#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000182 curfile =
183#endif
184 "index.html";
185 }
Eric Andersen370fb082001-01-20 20:07:00 +0000186#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000187 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000188 curfile = get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000189#endif
190 }
Eric Andersen7d697012001-01-24 20:28:35 +0000191 if (do_continue && !fname_out)
Matt Kraaidd19c692001-01-31 19:00:21 +0000192 error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000193
Eric Andersen96700832000-09-04 15:15:55 +0000194
195 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000196 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000197 */
Randolph Chung02553a22000-12-07 03:53:47 +0000198 if (fname_out != (char *)1) {
Eric Andersen79e898a2001-01-31 17:49:47 +0000199 output = xfopen( fname_out, (do_continue ? "a" : "w") );
Randolph Chung02553a22000-12-07 03:53:47 +0000200 } else {
201 output = stdout;
Eric Andersen96700832000-09-04 15:15:55 +0000202 }
203
204 /*
205 * Determine where to start transfer.
206 */
207 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000208 if (fstat(fileno(output), &sbuf) < 0)
Matt Kraai0dab8292000-12-18 03:08:29 +0000209 perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000210 if (sbuf.st_size > 0)
211 beg_range = sbuf.st_size;
212 else
213 do_continue = 0;
214 }
215
Eric Andersen79757c92001-04-05 21:45:54 +0000216 if (proxy || !target.is_ftp) {
217 /*
218 * HTTP session
219 */
220 do {
221 if (! --try)
222 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000223
Eric Andersen79757c92001-04-05 21:45:54 +0000224 /*
225 * Open socket to http server
226 */
227 if (sfp) fclose(sfp);
228 sfp = open_socket(server.host, server.port);
229
230 /*
231 * Send HTTP request.
232 */
233 if (proxy) {
234 fprintf(sfp, "GET %stp://%s:%d/%s HTTP/1.0\r\n",
235 target.is_ftp ? "f" : "ht", target.host,
236 target.port, target.path);
237 } else {
238 fprintf(sfp, "GET /%s HTTP/1.0\r\n", target.path);
239 }
Eric Andersen96700832000-09-04 15:15:55 +0000240
Eric Andersen79757c92001-04-05 21:45:54 +0000241 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
242
243#ifdef BB_FEATURE_WGET_AUTHENTICATION
244 if (target.user) {
245 fprintf(sfp, "Authorization: Basic %s\r\n",
246 base64enc(target.user, buf, sizeof(buf)));
247 }
248 if (proxy && server.user) {
249 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
250 base64enc(server.user, buf, sizeof(buf)));
251 }
252#endif
253
Eric Andersenb520e082000-10-03 00:21:45 +0000254 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000255 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
256 fprintf(sfp,"Connection: close\r\n\r\n");
257
258 /*
259 * Retrieve HTTP response line and check for "200" status code.
260 */
261 if (fgets(buf, sizeof(buf), sfp) == NULL)
262 close_delete_and_die("no response from server");
263
264 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
265 ;
266 for ( ; isspace(*s) ; ++s)
267 ;
268 switch (status = atoi(s)) {
269 case 0:
270 case 200:
271 if (do_continue && output != stdout)
272 output = freopen(fname_out, "w", output);
273 do_continue = 0;
274 break;
275 case 300: /* redirection */
276 case 301:
277 case 302:
278 case 303:
279 break;
280 case 206:
281 if (do_continue)
282 break;
283 /*FALLTHRU*/
284 default:
285 chomp(buf);
286 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
287 }
288
289 /*
290 * Retrieve HTTP headers.
291 */
292 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
293 if (strcasecmp(buf, "content-length") == 0) {
294 filesize = atol(s);
295 got_clen = 1;
296 continue;
297 }
298 if (strcasecmp(buf, "transfer-encoding") == 0)
299 close_delete_and_die("server wants to do %s transfer encoding", s);
300
301 if (strcasecmp(buf, "location") == 0) {
302 if (s[0] == '/')
303 target.path = xstrdup(s+1);
304 else {
305 parse_url(xstrdup(s), &target);
306 if (!proxy) {
307 server.host = target.host;
308 server.port = target.port;
309 }
310 }
311 }
312 }
313 } while(status >= 300);
314
315 dfp = sfp;
316 }
317 else
318 {
319 /*
320 * FTP session
321 */
322 if (! target.user)
323 target.user = xstrdup("anonymous:busybox@");
324
325 sfp = open_socket(server.host, server.port);
326 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
327 close_delete_and_die("%s", buf+4);
328
329 /*
330 * Splitting username:password pair,
331 * trying to log in
332 */
333 s = strchr(target.user, ':');
334 if (s)
335 *(s++) = '\0';
336 switch(ftpcmd("USER ", target.user, sfp, buf)) {
337 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000338 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000339 case 331:
340 if (ftpcmd("PASS ", s, sfp, buf) == 230)
341 break;
342 /* FALLTHRU (failed login) */
343 default:
344 close_delete_and_die("ftp login: %s", buf+4);
345 }
346
347 ftpcmd("CDUP", NULL, sfp, buf);
348 ftpcmd("TYPE I", NULL, sfp, buf);
349
350 /*
351 * Querying file size
352 */
353 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
354 filesize = atol(buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000355 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000356 }
Eric Andersen79757c92001-04-05 21:45:54 +0000357
358 /*
359 * Entering passive mode
360 */
361 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
362 close_delete_and_die("PASV: %s", buf+4);
363 s = strrchr(buf, ',');
364 *s = 0;
365 port = atoi(s+1);
366 s = strrchr(buf, ',');
367 port += atoi(s+1) * 256;
368 dfp = open_socket(server.host, port);
369
370 if (do_continue) {
371 sprintf(buf, "REST %ld", beg_range);
372 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
373 if (output != stdout)
374 output = freopen(fname_out, "w", output);
375 do_continue = 0;
376 } else
377 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000378 }
Eric Andersen79757c92001-04-05 21:45:54 +0000379
380 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
381 close_delete_and_die("RETR: %s", buf+4);
382
Eric Andersen96700832000-09-04 15:15:55 +0000383 }
384
Eric Andersen79757c92001-04-05 21:45:54 +0000385
Eric Andersen96700832000-09-04 15:15:55 +0000386 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000387 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000388 */
Eric Andersen370fb082001-01-20 20:07:00 +0000389#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000390 statbytes=0;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000391 if (quiet_flag==FALSE)
392 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000393#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000394 while ((filesize > 0 || !got_clen) && (n = fread(buf, 1, sizeof(buf), dfp)) > 0) {
Eric Andersenb520e082000-10-03 00:21:45 +0000395 fwrite(buf, 1, n, output);
Eric Andersen370fb082001-01-20 20:07:00 +0000396#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000397 statbytes+=n;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000398 if (quiet_flag==FALSE)
399 progressmeter(1);
Eric Andersenb520e082000-10-03 00:21:45 +0000400#endif
Eric Andersen96700832000-09-04 15:15:55 +0000401 if (got_clen)
Eric Andersenb520e082000-10-03 00:21:45 +0000402 filesize -= n;
Eric Andersen96700832000-09-04 15:15:55 +0000403 }
Eric Andersen79757c92001-04-05 21:45:54 +0000404
405 if (n == 0 && ferror(dfp))
Mark Whitleyf57c9442000-12-07 19:56:48 +0000406 perror_msg_and_die("network read error");
Eric Andersen96700832000-09-04 15:15:55 +0000407
Eric Andersen79757c92001-04-05 21:45:54 +0000408 if (!proxy && target.is_ftp) {
409 fclose(dfp);
410 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
411 error_msg_and_die("ftp error: %s", buf+4);
412 ftpcmd("QUIT", NULL, sfp, buf);
413 }
414
415 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000416}
417
418
Eric Andersen79757c92001-04-05 21:45:54 +0000419void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000420{
Eric Andersen79757c92001-04-05 21:45:54 +0000421 char *cp, *sp, *up;
Eric Andersen96700832000-09-04 15:15:55 +0000422
Eric Andersen79757c92001-04-05 21:45:54 +0000423 if (strncmp(url, "http://", 7) == 0) {
424 h->port = 80;
425 h->host = url + 7;
426 h->is_ftp = 0;
427 } else if (strncmp(url, "ftp://", 6) == 0) {
428 h->port = 21;
429 h->host = url + 6;
430 h->is_ftp = 1;
431 } else
432 error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000433
Eric Andersen79757c92001-04-05 21:45:54 +0000434 sp = strchr(h->host, '/');
Matt Kraaia9711a52001-01-03 16:15:15 +0000435 if (sp != NULL) {
436 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000437 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000438 } else
Eric Andersen79757c92001-04-05 21:45:54 +0000439 h->path = "";
440
441 up = strrchr(h->host, '@');
442 if (up != NULL) {
443 h->user = h->host;
444 *up++ = '\0';
445 h->host = up;
446 } else
447 h->user = NULL;
448
449 cp = strchr(h->host, ':');
450 if (cp != NULL) {
451 *cp++ = '\0';
452 h->port = atoi(cp);
453 }
454
Eric Andersen96700832000-09-04 15:15:55 +0000455}
456
457
458FILE *open_socket(char *host, int port)
459{
Eric Andersen1ca20a72001-03-21 07:34:27 +0000460 struct sockaddr_in s_in;
Eric Andersen96700832000-09-04 15:15:55 +0000461 struct hostent *hp;
462 int fd;
463 FILE *fp;
464
Eric Andersen1ca20a72001-03-21 07:34:27 +0000465 memset(&s_in, 0, sizeof(s_in));
466 s_in.sin_family = AF_INET;
Eric Andersen96700832000-09-04 15:15:55 +0000467 if ((hp = (struct hostent *) gethostbyname(host)) == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +0000468 error_msg_and_die("cannot resolve %s", host);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000469 memcpy(&s_in.sin_addr, hp->h_addr_list[0], hp->h_length);
470 s_in.sin_port = htons(port);
Eric Andersen96700832000-09-04 15:15:55 +0000471
472 /*
473 * Get the server onto a stdio stream.
474 */
475 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000476 perror_msg_and_die("socket()");
Eric Andersen1ca20a72001-03-21 07:34:27 +0000477 if (connect(fd, (struct sockaddr *) &s_in, sizeof(s_in)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000478 perror_msg_and_die("connect(%s)", host);
Eric Andersen96700832000-09-04 15:15:55 +0000479 if ((fp = fdopen(fd, "r+")) == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000480 perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000481
482 return fp;
483}
484
485
486char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
487{
488 char *s, *hdrval;
489 int c;
490
491 *istrunc = 0;
492
493 /* retrieve header line */
494 if (fgets(buf, bufsiz, fp) == NULL)
495 return NULL;
496
497 /* see if we are at the end of the headers */
498 for (s = buf ; *s == '\r' ; ++s)
499 ;
500 if (s[0] == '\n')
501 return NULL;
502
503 /* convert the header name to lower case */
504 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
505 *s = tolower(*s);
506
507 /* verify we are at the end of the header name */
508 if (*s != ':')
Matt Kraaidd19c692001-01-31 19:00:21 +0000509 error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000510
511 /* locate the start of the header value */
512 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
513 ;
514 hdrval = s;
515
516 /* locate the end of header */
517 while (*s != '\0' && *s != '\r' && *s != '\n')
518 ++s;
519
520 /* end of header found */
521 if (*s != '\0') {
522 *s = '\0';
523 return hdrval;
524 }
525
Eric Andersen5d638842000-09-14 21:46:30 +0000526 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000527 while (c = getc(fp), c != EOF && c != '\n')
528 ;
529 *istrunc = 1;
530 return hdrval;
531}
532
Eric Andersen79757c92001-04-05 21:45:54 +0000533static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
534{
535 char *p;
536
537 if (s1) {
538 if (!s2) s2="";
539 fprintf(fp, "%s%s\n", s1, s2);
540 fflush(fp);
541 }
542
543 do {
544 p = fgets(buf, 510, fp);
545 if (!p)
546 perror_msg_and_die("fgets()");
547 } while (! isdigit(buf[0]) || buf[3] != ' ');
548
549 return atoi(buf);
550}
551
Eric Andersen370fb082001-01-20 20:07:00 +0000552#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen4e573f42000-11-14 23:29:24 +0000553/* Stuff below is from BSD rcp util.c, as added to openshh.
554 * Original copyright notice is retained at the end of this file.
555 *
556 */
Eric Andersenb520e082000-10-03 00:21:45 +0000557
558
Eric Andersen3e6ff902001-03-09 21:24:12 +0000559static int
Eric Andersenb520e082000-10-03 00:21:45 +0000560getttywidth(void)
561{
562 struct winsize winsize;
563
564 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
565 return (winsize.ws_col ? winsize.ws_col : 80);
566 else
567 return (80);
568}
569
Eric Andersen3e6ff902001-03-09 21:24:12 +0000570static void
Eric Andersenb520e082000-10-03 00:21:45 +0000571updateprogressmeter(int ignore)
572{
573 int save_errno = errno;
574
575 progressmeter(0);
576 errno = save_errno;
577}
578
Eric Andersen3e6ff902001-03-09 21:24:12 +0000579static void
Eric Andersenb520e082000-10-03 00:21:45 +0000580alarmtimer(int wait)
581{
582 struct itimerval itv;
583
584 itv.it_value.tv_sec = wait;
585 itv.it_value.tv_usec = 0;
586 itv.it_interval = itv.it_value;
587 setitimer(ITIMER_REAL, &itv, NULL);
588}
589
590
Eric Andersen3e6ff902001-03-09 21:24:12 +0000591static void
Eric Andersenb520e082000-10-03 00:21:45 +0000592progressmeter(int flag)
593{
594 static const char prefixes[] = " KMGTP";
595 static struct timeval lastupdate;
596 static off_t lastsize;
597 struct timeval now, td, wait;
598 off_t cursize, abbrevsize;
599 double elapsed;
600 int ratio, barlength, i, remaining;
601 char buf[256];
602
603 if (flag == -1) {
604 (void) gettimeofday(&start, (struct timezone *) 0);
605 lastupdate = start;
606 lastsize = 0;
607 }
608
609 (void) gettimeofday(&now, (struct timezone *) 0);
610 cursize = statbytes;
611 if (filesize != 0) {
612 ratio = 100.0 * cursize / filesize;
613 ratio = MAX(ratio, 0);
614 ratio = MIN(ratio, 100);
615 } else
616 ratio = 100;
617
618 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
619
620 barlength = getttywidth() - 51;
621 if (barlength > 0) {
622 i = barlength * ratio / 100;
623 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
624 "|%.*s%*s|", i,
625 "*****************************************************************************"
626 "*****************************************************************************",
627 barlength - i, "");
628 }
629 i = 0;
630 abbrevsize = cursize;
631 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
632 i++;
633 abbrevsize >>= 10;
634 }
635 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
636 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
637 'B');
638
639 timersub(&now, &lastupdate, &wait);
640 if (cursize > lastsize) {
641 lastupdate = now;
642 lastsize = cursize;
643 if (wait.tv_sec >= STALLTIME) {
644 start.tv_sec += wait.tv_sec;
645 start.tv_usec += wait.tv_usec;
646 }
647 wait.tv_sec = 0;
648 }
649 timersub(&now, &start, &td);
650 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
651
652 if (statbytes <= 0 || elapsed <= 0.0 || cursize > filesize) {
653 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
654 " --:-- ETA");
655 } else if (wait.tv_sec >= STALLTIME) {
656 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
657 " - stalled -");
658 } else {
659 remaining = (int) (filesize / (statbytes / elapsed) - elapsed);
660 i = remaining / 3600;
661 if (i)
662 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
663 "%2d:", i);
664 else
665 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
666 " ");
667 i = remaining % 3600;
668 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
669 "%02d:%02d ETA", i / 60, i % 60);
670 }
Randolph Chungda7b8292000-12-07 03:55:35 +0000671 write(fileno(stderr), buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000672
673 if (flag == -1) {
674 struct sigaction sa;
675 sa.sa_handler = updateprogressmeter;
676 sigemptyset(&sa.sa_mask);
677 sa.sa_flags = SA_RESTART;
678 sigaction(SIGALRM, &sa, NULL);
679 alarmtimer(1);
680 } else if (flag == 1) {
681 alarmtimer(0);
682 statbytes = 0;
683 }
684}
685#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000686
Eric Andersen370fb082001-01-20 20:07:00 +0000687/* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000688 * much of which was blatently stolen from openssh. */
689
690/*-
691 * Copyright (c) 1992, 1993
692 * The Regents of the University of California. All rights reserved.
693 *
694 * Redistribution and use in source and binary forms, with or without
695 * modification, are permitted provided that the following conditions
696 * are met:
697 * 1. Redistributions of source code must retain the above copyright
698 * notice, this list of conditions and the following disclaimer.
699 * 2. Redistributions in binary form must reproduce the above copyright
700 * notice, this list of conditions and the following disclaimer in the
701 * documentation and/or other materials provided with the distribution.
702 *
703 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
704 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
705 *
706 * 4. Neither the name of the University nor the names of its contributors
707 * may be used to endorse or promote products derived from this software
708 * without specific prior written permission.
709 *
710 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
711 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
712 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
713 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
714 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
715 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
716 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
717 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
718 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
719 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
720 * SUCH DAMAGE.
721 *
Eric Andersen79757c92001-04-05 21:45:54 +0000722 * $Id: wget.c,v 1.31 2001/04/05 21:45:53 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000723 */
724
725
726
Eric Andersen96700832000-09-04 15:15:55 +0000727/*
728Local Variables:
729c-file-style: "linux"
730c-basic-offset: 4
731tab-width: 4
732End:
733*/
Eric Andersenb520e082000-10-03 00:21:45 +0000734
Eric Andersen4e573f42000-11-14 23:29:24 +0000735
736