blob: 5ea559b8930fef1417f12063819c6ca8231df879 [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 Andersen96700832000-09-04 15:15:55 +00007 */
8
Eric Andersen96700832000-09-04 15:15:55 +00009#include <stdio.h>
Eric Andersendff9d542001-01-26 02:04:49 +000010#include <errno.h>
Eric Andersen96700832000-09-04 15:15:55 +000011#include <stdlib.h>
12#include <unistd.h>
13#include <ctype.h>
14#include <string.h>
Eric Andersenb520e082000-10-03 00:21:45 +000015#include <unistd.h>
16#include <signal.h>
17#include <sys/ioctl.h>
Eric Andersen96700832000-09-04 15:15:55 +000018
Eric Andersenb520e082000-10-03 00:21:45 +000019#include <sys/time.h>
Eric Andersen96700832000-09-04 15:15:55 +000020#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
Eric Andersen50ae3102001-05-15 17:51:37 +000027#ifndef _GNU_SOURCE
28#define _GNU_SOURCE
29#endif
30#include <getopt.h>
31
Eric Andersencbe31da2001-02-20 06:14:08 +000032#include "busybox.h"
33
Eric Andersen79757c92001-04-05 21:45:54 +000034struct host_info {
35 char *host;
36 int port;
37 char *path;
38 int is_ftp;
39 char *user;
40};
41
42static void parse_url(char *url, struct host_info *h);
Eric Andersen3e6ff902001-03-09 21:24:12 +000043static FILE *open_socket(char *host, int port);
44static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersen79757c92001-04-05 21:45:54 +000045static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
Eric Andersen96700832000-09-04 15:15:55 +000046
Eric Andersenb520e082000-10-03 00:21:45 +000047/* Globals (can be accessed from signal handlers */
48static off_t filesize = 0; /* content-length of the file */
Eric Andersen6d7fa432001-04-10 18:17:05 +000049static int chunked = 0; /* chunked transfer encoding */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000050#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen20aab262001-07-19 22:28:02 +000051static void progressmeter(int flag);
Eric Andersenb520e082000-10-03 00:21:45 +000052static char *curfile; /* Name of current file being transferred. */
53static struct timeval start; /* Time a transfer started. */
Mark Whitley30ac01c2001-04-17 18:13:16 +000054static volatile unsigned long statbytes = 0; /* Number of bytes transferred so far. */
Eric Andersenb520e082000-10-03 00:21:45 +000055/* For progressmeter() -- number of seconds before xfer considered "stalled" */
Mark Whitley59ab0252001-01-23 22:30:04 +000056static const int STALLTIME = 5;
Eric Andersenb520e082000-10-03 00:21:45 +000057#endif
Eric Andersen7d697012001-01-24 20:28:35 +000058
Eric Andersen3e6ff902001-03-09 21:24:12 +000059static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
Eric Andersen7d697012001-01-24 20:28:35 +000060{
61 if (output != stdout && do_continue==0) {
62 fclose(output);
63 unlink(fname_out);
64 }
65}
Eric Andersen96700832000-09-04 15:15:55 +000066
Matt Kraai854125f2001-05-09 19:15:46 +000067/* 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. */
70static 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. */
85static 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. */
99static 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
Eric Andersen79757c92001-04-05 21:45:54 +0000111#define close_delete_and_die(s...) { \
112 close_and_delete_outfile(output, fname_out, do_continue); \
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 bb_error_msg_and_die(s); }
Eric Andersen79757c92001-04-05 21:45:54 +0000114
115
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000116#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000117/*
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 */
122char *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)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130 bb_error_msg_and_die("buffer overflow");
Eric Andersen79757c92001-04-05 21:45:54 +0000131 *(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
Eric Andersen96700832000-09-04 15:15:55 +0000145int wget_main(int argc, char **argv)
146{
Eric Andersen79757c92001-04-05 21:45:54 +0000147 int n, try=5, status;
148 int port;
Robert Griebld7760112002-05-14 23:36:45 +0000149 char *proxy = 0;
Eric Andersen8071c022001-06-21 19:45:06 +0000150 char *dir_prefix=NULL;
Eric Andersen29edd002000-12-09 16:55:35 +0000151 char *s, buf[512];
152 struct stat sbuf;
Eric Andersen50ae3102001-05-15 17:51:37 +0000153 char extra_headers[1024];
154 char *extra_headers_ptr = extra_headers;
155 int extra_headers_left = sizeof(extra_headers);
156 int which_long_opt = 0, option_index = -1;
Eric Andersen79757c92001-04-05 21:45:54 +0000157 struct host_info server, target;
158
159 FILE *sfp = NULL; /* socket to web/ftp server */
160 FILE *dfp = NULL; /* socket to ftp server (data) */
Eric Andersen96700832000-09-04 15:15:55 +0000161 char *fname_out = NULL; /* where to direct output (-O) */
162 int do_continue = 0; /* continue a prev transfer (-c) */
163 long beg_range = 0L; /* range at which continue begins */
164 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +0000165 FILE *output; /* socket to web server */
166 int quiet_flag = FALSE; /* Be verry, verry quiet... */
Robert Griebld7760112002-05-14 23:36:45 +0000167 int noproxy = 0; /* Use proxies if env vars are set */
Eric Andersen29edd002000-12-09 16:55:35 +0000168
Robert Grieble8fcf4b2002-07-12 00:04:46 +0000169#define LONG_HEADER 1
170#define LONG_PASSIVE 2
171
Eric Andersen50ae3102001-05-15 17:51:37 +0000172 struct option long_options[] = {
Robert Grieble8fcf4b2002-07-12 00:04:46 +0000173 { "continue", 0, NULL, 'c' },
174 { "quiet", 0, NULL, 'q' },
175 { "output-document", 1, NULL, 'O' },
176 { "header", 1, &which_long_opt, LONG_HEADER },
177 { "proxy", 1, NULL, 'Y' },
178 { "passive-ftp", 0, &which_long_opt, LONG_PASSIVE },
179 { 0, 0, 0, 0 }
Eric Andersen50ae3102001-05-15 17:51:37 +0000180 };
Eric Andersen96700832000-09-04 15:15:55 +0000181 /*
182 * Crack command line.
183 */
Robert Griebld7760112002-05-14 23:36:45 +0000184 while ((n = getopt_long(argc, argv, "cqO:P:Y:", long_options, &option_index)) != EOF) {
Eric Andersen96700832000-09-04 15:15:55 +0000185 switch (n) {
186 case 'c':
187 ++do_continue;
188 break;
Eric Andersen8071c022001-06-21 19:45:06 +0000189 case 'P':
Matt Kraai0382eb82001-07-19 19:13:55 +0000190 dir_prefix = optarg;
Eric Andersen8071c022001-06-21 19:45:06 +0000191 break;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000192 case 'q':
193 quiet_flag = TRUE;
194 break;
Eric Andersen96700832000-09-04 15:15:55 +0000195 case 'O':
Randolph Chung02553a22000-12-07 03:53:47 +0000196 /* can't set fname_out to NULL if outputting to stdout, because
197 * this gets interpreted as the auto-gen output filename
198 * case below - tausq@debian.org
199 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000200 fname_out = optarg;
Eric Andersen96700832000-09-04 15:15:55 +0000201 break;
Robert Griebld7760112002-05-14 23:36:45 +0000202 case 'Y':
203 if (strcmp(optarg, "off") == 0)
204 noproxy=1;
205 break;
Eric Andersen50ae3102001-05-15 17:51:37 +0000206 case 0:
207 switch (which_long_opt) {
208 case LONG_HEADER: {
209 int arglen = strlen(optarg);
210 if(extra_headers_left - arglen - 2 <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000211 bb_error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen);
Eric Andersen50ae3102001-05-15 17:51:37 +0000212 strcpy(extra_headers_ptr, optarg);
213 extra_headers_ptr += arglen;
214 extra_headers_left -= ( arglen + 2 );
215 *extra_headers_ptr++ = '\r';
216 *extra_headers_ptr++ = '\n';
217 *(extra_headers_ptr + 1) = 0;
218 break;
219 }
Robert Grieble8fcf4b2002-07-12 00:04:46 +0000220 case LONG_PASSIVE:
221 // ignore -- we always use passive mode
222 break;
Eric Andersen50ae3102001-05-15 17:51:37 +0000223 }
224 break;
Eric Andersen96700832000-09-04 15:15:55 +0000225 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000226 bb_show_usage();
Eric Andersen96700832000-09-04 15:15:55 +0000227 }
228 }
Eric Andersen25b669c2000-10-02 23:19:38 +0000229
Eric Andersen96700832000-09-04 15:15:55 +0000230 if (argc - optind != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000231 bb_show_usage();
Eric Andersen25b669c2000-10-02 23:19:38 +0000232
Eric Andersen79757c92001-04-05 21:45:54 +0000233 parse_url(argv[optind], &target);
234 server.host = target.host;
235 server.port = target.port;
236
Eric Andersen96700832000-09-04 15:15:55 +0000237 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000238 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000239 */
Robert Griebld7760112002-05-14 23:36:45 +0000240 if (!noproxy) {
241 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
242 if (proxy)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000243 parse_url(bb_xstrdup(proxy), &server);
Robert Griebld7760112002-05-14 23:36:45 +0000244 }
Eric Andersen29edd002000-12-09 16:55:35 +0000245
246 /* Guess an output filename */
247 if (!fname_out) {
248 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000249#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000250 curfile =
251#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000252 bb_get_last_path_component(target.path);
Eric Andersen29edd002000-12-09 16:55:35 +0000253 if (fname_out==NULL || strlen(fname_out)<1) {
254 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000255#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000256 curfile =
257#endif
258 "index.html";
259 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000260 if (dir_prefix != NULL)
261 fname_out = concat_path_file(dir_prefix, fname_out);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000262#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000263 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000265#endif
266 }
Eric Andersen7d697012001-01-24 20:28:35 +0000267 if (do_continue && !fname_out)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000268 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000269
Eric Andersen96700832000-09-04 15:15:55 +0000270
271 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000272 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000273 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000274 if (strcmp(fname_out, "-") == 0) {
Randolph Chung02553a22000-12-07 03:53:47 +0000275 output = stdout;
Eric Andersen95a349f2001-05-13 00:55:54 +0000276 quiet_flag = TRUE;
Matt Kraai65317ea2001-04-11 20:03:01 +0000277 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000278 output = bb_xfopen(fname_out, (do_continue ? "a" : "w"));
Eric Andersen96700832000-09-04 15:15:55 +0000279 }
280
281 /*
282 * Determine where to start transfer.
283 */
284 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000285 if (fstat(fileno(output), &sbuf) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000286 bb_perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000287 if (sbuf.st_size > 0)
288 beg_range = sbuf.st_size;
289 else
290 do_continue = 0;
291 }
292
Eric Andersen79757c92001-04-05 21:45:54 +0000293 if (proxy || !target.is_ftp) {
294 /*
295 * HTTP session
296 */
297 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000298 got_clen = chunked = 0;
299
Eric Andersen79757c92001-04-05 21:45:54 +0000300 if (! --try)
301 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000302
Eric Andersen79757c92001-04-05 21:45:54 +0000303 /*
304 * Open socket to http server
305 */
306 if (sfp) fclose(sfp);
307 sfp = open_socket(server.host, server.port);
308
309 /*
310 * Send HTTP request.
311 */
312 if (proxy) {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000313 fprintf(sfp, "GET %stp://%s:%d/%s HTTP/1.1\r\n",
Eric Andersen79757c92001-04-05 21:45:54 +0000314 target.is_ftp ? "f" : "ht", target.host,
315 target.port, target.path);
316 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000317 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000318 }
Eric Andersen96700832000-09-04 15:15:55 +0000319
Eric Andersen79757c92001-04-05 21:45:54 +0000320 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
321
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000322#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000323 if (target.user) {
324 fprintf(sfp, "Authorization: Basic %s\r\n",
325 base64enc(target.user, buf, sizeof(buf)));
326 }
327 if (proxy && server.user) {
328 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
329 base64enc(server.user, buf, sizeof(buf)));
330 }
331#endif
332
Eric Andersenb520e082000-10-03 00:21:45 +0000333 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000334 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
Eric Andersen50ae3102001-05-15 17:51:37 +0000335 if(extra_headers_left < sizeof(extra_headers))
Eric Andersen9abfe852001-05-15 20:11:49 +0000336 fputs(extra_headers,sfp);
Eric Andersen79757c92001-04-05 21:45:54 +0000337 fprintf(sfp,"Connection: close\r\n\r\n");
338
339 /*
340 * Retrieve HTTP response line and check for "200" status code.
341 */
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000342read_response:
343 if (fgets(buf, sizeof(buf), sfp) == NULL)
Eric Andersen79757c92001-04-05 21:45:54 +0000344 close_delete_and_die("no response from server");
345
346 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
347 ;
348 for ( ; isspace(*s) ; ++s)
349 ;
350 switch (status = atoi(s)) {
351 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000352 case 100:
353 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
354 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000355 case 200:
356 if (do_continue && output != stdout)
357 output = freopen(fname_out, "w", output);
358 do_continue = 0;
359 break;
360 case 300: /* redirection */
361 case 301:
362 case 302:
363 case 303:
364 break;
365 case 206:
366 if (do_continue)
367 break;
368 /*FALLTHRU*/
369 default:
370 chomp(buf);
371 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
372 }
373
374 /*
375 * Retrieve HTTP headers.
376 */
377 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
378 if (strcasecmp(buf, "content-length") == 0) {
379 filesize = atol(s);
380 got_clen = 1;
381 continue;
382 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000383 if (strcasecmp(buf, "transfer-encoding") == 0) {
384 if (strcasecmp(s, "chunked") == 0) {
385 chunked = got_clen = 1;
386 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000387 close_delete_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000388 }
389 }
Eric Andersen79757c92001-04-05 21:45:54 +0000390 if (strcasecmp(buf, "location") == 0) {
391 if (s[0] == '/')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000392 target.path = bb_xstrdup(s+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000393 else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000394 parse_url(bb_xstrdup(s), &target);
Eric Andersen79757c92001-04-05 21:45:54 +0000395 if (!proxy) {
396 server.host = target.host;
397 server.port = target.port;
398 }
399 }
400 }
401 }
402 } while(status >= 300);
403
404 dfp = sfp;
405 }
406 else
407 {
408 /*
409 * FTP session
410 */
411 if (! target.user)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000412 target.user = bb_xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000413
414 sfp = open_socket(server.host, server.port);
415 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
416 close_delete_and_die("%s", buf+4);
417
418 /*
419 * Splitting username:password pair,
420 * trying to log in
421 */
422 s = strchr(target.user, ':');
423 if (s)
424 *(s++) = '\0';
425 switch(ftpcmd("USER ", target.user, sfp, buf)) {
426 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000427 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000428 case 331:
429 if (ftpcmd("PASS ", s, sfp, buf) == 230)
430 break;
431 /* FALLTHRU (failed login) */
432 default:
433 close_delete_and_die("ftp login: %s", buf+4);
434 }
435
436 ftpcmd("CDUP", NULL, sfp, buf);
437 ftpcmd("TYPE I", NULL, sfp, buf);
438
439 /*
440 * Querying file size
441 */
442 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
443 filesize = atol(buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000444 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000445 }
Eric Andersen79757c92001-04-05 21:45:54 +0000446
447 /*
448 * Entering passive mode
449 */
450 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
451 close_delete_and_die("PASV: %s", buf+4);
452 s = strrchr(buf, ',');
453 *s = 0;
454 port = atoi(s+1);
455 s = strrchr(buf, ',');
456 port += atoi(s+1) * 256;
457 dfp = open_socket(server.host, port);
458
459 if (do_continue) {
460 sprintf(buf, "REST %ld", beg_range);
461 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
462 if (output != stdout)
463 output = freopen(fname_out, "w", output);
464 do_continue = 0;
465 } else
466 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000467 }
Eric Andersen79757c92001-04-05 21:45:54 +0000468
469 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
470 close_delete_and_die("RETR: %s", buf+4);
471
Eric Andersen96700832000-09-04 15:15:55 +0000472 }
473
Eric Andersen79757c92001-04-05 21:45:54 +0000474
Eric Andersen96700832000-09-04 15:15:55 +0000475 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000476 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000477 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000478 if (chunked) {
479 fgets(buf, sizeof(buf), dfp);
480 filesize = strtol(buf, (char **) NULL, 16);
481 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000482#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000483 if (quiet_flag==FALSE)
484 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000485#endif
Mark Whitley30ac01c2001-04-17 18:13:16 +0000486 do {
Glenn L McGrath23365972003-08-29 06:25:04 +0000487 while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, ((chunked || got_clen) && (filesize < sizeof(buf)) ? filesize : sizeof(buf)), dfp)) > 0) {
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000488 if (safe_fwrite(buf, 1, n, output) != n) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000489 bb_perror_msg_and_die("write error");
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000490 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000491#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000492 statbytes+=n;
Eric Andersenb520e082000-10-03 00:21:45 +0000493#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000494 if (got_clen) {
495 filesize -= n;
496 }
497 }
Eric Andersen79757c92001-04-05 21:45:54 +0000498
Eric Andersen6d7fa432001-04-10 18:17:05 +0000499 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000500 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
501 safe_fgets(buf, sizeof(buf), dfp);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000502 filesize = strtol(buf, (char **) NULL, 16);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000503 if (filesize==0) {
504 chunked = 0; /* all done! */
505 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000506 }
507
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000508 if (n == 0 && ferror(dfp)) {
509 bb_perror_msg_and_die("network read error");
510 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000511 } while (chunked);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000512#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Mark Whitley30ac01c2001-04-17 18:13:16 +0000513 if (quiet_flag==FALSE)
514 progressmeter(1);
515#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000516 if (!proxy && target.is_ftp) {
517 fclose(dfp);
518 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000519 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000520 ftpcmd("QUIT", NULL, sfp, buf);
521 }
Eric Andersen79757c92001-04-05 21:45:54 +0000522 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000523}
524
525
Eric Andersen79757c92001-04-05 21:45:54 +0000526void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000527{
Eric Andersen79757c92001-04-05 21:45:54 +0000528 char *cp, *sp, *up;
Eric Andersen96700832000-09-04 15:15:55 +0000529
Eric Andersen79757c92001-04-05 21:45:54 +0000530 if (strncmp(url, "http://", 7) == 0) {
531 h->port = 80;
532 h->host = url + 7;
533 h->is_ftp = 0;
534 } else if (strncmp(url, "ftp://", 6) == 0) {
535 h->port = 21;
536 h->host = url + 6;
537 h->is_ftp = 1;
538 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000539 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000540
Eric Andersen79757c92001-04-05 21:45:54 +0000541 sp = strchr(h->host, '/');
Matt Kraaia9711a52001-01-03 16:15:15 +0000542 if (sp != NULL) {
543 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000544 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000545 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000546 h->path = bb_xstrdup("");
Eric Andersen79757c92001-04-05 21:45:54 +0000547
548 up = strrchr(h->host, '@');
549 if (up != NULL) {
550 h->user = h->host;
551 *up++ = '\0';
552 h->host = up;
553 } else
554 h->user = NULL;
555
556 cp = strchr(h->host, ':');
557 if (cp != NULL) {
558 *cp++ = '\0';
559 h->port = atoi(cp);
560 }
561
Eric Andersen96700832000-09-04 15:15:55 +0000562}
563
564
565FILE *open_socket(char *host, int port)
566{
Eric Andersen96700832000-09-04 15:15:55 +0000567 int fd;
568 FILE *fp;
Eric Andersen0b315862002-07-03 11:51:44 +0000569 char port_str[10];
Eric Andersen96700832000-09-04 15:15:55 +0000570
Eric Andersen0b315862002-07-03 11:51:44 +0000571 snprintf(port_str, sizeof(port_str), "%d", port);
572 fd=xconnect(host, port_str);
Eric Andersen96700832000-09-04 15:15:55 +0000573
574 /*
575 * Get the server onto a stdio stream.
576 */
Eric Andersen96700832000-09-04 15:15:55 +0000577 if ((fp = fdopen(fd, "r+")) == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000578 bb_perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000579
580 return fp;
581}
582
583
584char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
585{
586 char *s, *hdrval;
587 int c;
588
589 *istrunc = 0;
590
591 /* retrieve header line */
592 if (fgets(buf, bufsiz, fp) == NULL)
593 return NULL;
594
595 /* see if we are at the end of the headers */
596 for (s = buf ; *s == '\r' ; ++s)
597 ;
598 if (s[0] == '\n')
599 return NULL;
600
601 /* convert the header name to lower case */
602 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
603 *s = tolower(*s);
604
605 /* verify we are at the end of the header name */
606 if (*s != ':')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000607 bb_error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000608
609 /* locate the start of the header value */
610 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
611 ;
612 hdrval = s;
613
614 /* locate the end of header */
615 while (*s != '\0' && *s != '\r' && *s != '\n')
616 ++s;
617
618 /* end of header found */
619 if (*s != '\0') {
620 *s = '\0';
621 return hdrval;
622 }
623
Eric Andersen5d638842000-09-14 21:46:30 +0000624 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000625 while (c = getc(fp), c != EOF && c != '\n')
626 ;
627 *istrunc = 1;
628 return hdrval;
629}
630
Eric Andersen79757c92001-04-05 21:45:54 +0000631static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
632{
633 char *p;
634
635 if (s1) {
636 if (!s2) s2="";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000637 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000638 fflush(fp);
639 }
640
641 do {
642 p = fgets(buf, 510, fp);
643 if (!p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000644 bb_perror_msg_and_die("fgets()");
Eric Andersen79757c92001-04-05 21:45:54 +0000645 } while (! isdigit(buf[0]) || buf[3] != ' ');
646
647 return atoi(buf);
648}
649
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000650#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen4e573f42000-11-14 23:29:24 +0000651/* Stuff below is from BSD rcp util.c, as added to openshh.
652 * Original copyright notice is retained at the end of this file.
653 *
654 */
Eric Andersenb520e082000-10-03 00:21:45 +0000655
656
Eric Andersen3e6ff902001-03-09 21:24:12 +0000657static int
Eric Andersenb520e082000-10-03 00:21:45 +0000658getttywidth(void)
659{
660 struct winsize winsize;
661
662 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
663 return (winsize.ws_col ? winsize.ws_col : 80);
664 else
665 return (80);
666}
667
Eric Andersen3e6ff902001-03-09 21:24:12 +0000668static void
Eric Andersenb520e082000-10-03 00:21:45 +0000669updateprogressmeter(int ignore)
670{
671 int save_errno = errno;
672
673 progressmeter(0);
674 errno = save_errno;
675}
676
Eric Andersen3e6ff902001-03-09 21:24:12 +0000677static void
Eric Andersenb520e082000-10-03 00:21:45 +0000678alarmtimer(int wait)
679{
680 struct itimerval itv;
681
682 itv.it_value.tv_sec = wait;
683 itv.it_value.tv_usec = 0;
684 itv.it_interval = itv.it_value;
685 setitimer(ITIMER_REAL, &itv, NULL);
686}
687
688
Eric Andersen3e6ff902001-03-09 21:24:12 +0000689static void
Eric Andersenb520e082000-10-03 00:21:45 +0000690progressmeter(int flag)
691{
692 static const char prefixes[] = " KMGTP";
693 static struct timeval lastupdate;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000694 static off_t lastsize, totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000695 struct timeval now, td, wait;
696 off_t cursize, abbrevsize;
697 double elapsed;
698 int ratio, barlength, i, remaining;
699 char buf[256];
700
701 if (flag == -1) {
702 (void) gettimeofday(&start, (struct timezone *) 0);
703 lastupdate = start;
704 lastsize = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000705 totalsize = filesize; /* as filesize changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000706 }
707
708 (void) gettimeofday(&now, (struct timezone *) 0);
709 cursize = statbytes;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000710 if (totalsize != 0 && !chunked) {
711 ratio = 100.0 * cursize / totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000712 ratio = MAX(ratio, 0);
713 ratio = MIN(ratio, 100);
714 } else
715 ratio = 100;
716
717 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
718
719 barlength = getttywidth() - 51;
720 if (barlength > 0) {
721 i = barlength * ratio / 100;
722 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
723 "|%.*s%*s|", i,
724 "*****************************************************************************"
725 "*****************************************************************************",
726 barlength - i, "");
727 }
728 i = 0;
729 abbrevsize = cursize;
730 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
731 i++;
732 abbrevsize >>= 10;
733 }
734 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
735 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
736 'B');
737
738 timersub(&now, &lastupdate, &wait);
739 if (cursize > lastsize) {
740 lastupdate = now;
741 lastsize = cursize;
742 if (wait.tv_sec >= STALLTIME) {
743 start.tv_sec += wait.tv_sec;
744 start.tv_usec += wait.tv_usec;
745 }
746 wait.tv_sec = 0;
747 }
748 timersub(&now, &start, &td);
749 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
750
Mark Whitley30ac01c2001-04-17 18:13:16 +0000751 if (wait.tv_sec >= STALLTIME) {
Eric Andersenb520e082000-10-03 00:21:45 +0000752 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
753 " - stalled -");
Mark Whitley30ac01c2001-04-17 18:13:16 +0000754 } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
755 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
756 " --:-- ETA");
Eric Andersenb520e082000-10-03 00:21:45 +0000757 } else {
Mark Whitley30ac01c2001-04-17 18:13:16 +0000758 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
Eric Andersenb520e082000-10-03 00:21:45 +0000759 i = remaining / 3600;
760 if (i)
761 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
762 "%2d:", i);
763 else
764 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
765 " ");
766 i = remaining % 3600;
767 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
768 "%02d:%02d ETA", i / 60, i % 60);
769 }
Randolph Chungda7b8292000-12-07 03:55:35 +0000770 write(fileno(stderr), buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000771
772 if (flag == -1) {
773 struct sigaction sa;
774 sa.sa_handler = updateprogressmeter;
775 sigemptyset(&sa.sa_mask);
776 sa.sa_flags = SA_RESTART;
777 sigaction(SIGALRM, &sa, NULL);
778 alarmtimer(1);
779 } else if (flag == 1) {
780 alarmtimer(0);
781 statbytes = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000782 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000783 }
784}
785#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000786
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000787/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000788 * much of which was blatently stolen from openssh. */
789
790/*-
791 * Copyright (c) 1992, 1993
792 * The Regents of the University of California. All rights reserved.
793 *
794 * Redistribution and use in source and binary forms, with or without
795 * modification, are permitted provided that the following conditions
796 * are met:
797 * 1. Redistributions of source code must retain the above copyright
798 * notice, this list of conditions and the following disclaimer.
799 * 2. Redistributions in binary form must reproduce the above copyright
800 * notice, this list of conditions and the following disclaimer in the
801 * documentation and/or other materials provided with the distribution.
802 *
803 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
804 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
805 *
806 * 4. Neither the name of the University nor the names of its contributors
807 * may be used to endorse or promote products derived from this software
808 * without specific prior written permission.
809 *
810 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
811 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
812 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
813 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
814 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
815 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
816 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
817 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
818 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
819 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
820 * SUCH DAMAGE.
821 *
Glenn L McGrath23365972003-08-29 06:25:04 +0000822 * $Id: wget.c,v 1.57 2003/08/29 06:25:04 bug1 Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000823 */
824
825
826
Eric Andersen96700832000-09-04 15:15:55 +0000827/*
828Local Variables:
829c-file-style: "linux"
830c-basic-offset: 4
831tab-width: 4
832End:
833*/