blob: 59f30c06d0baec7ea525d38d772a308cbbebfff0 [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);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000043static FILE *open_socket(struct sockaddr_in *s_in);
Eric Andersen3e6ff902001-03-09 21:24:12 +000044static 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 Andersenc7bda1c2004-03-15 08:29:22 +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?
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000120 * XXX: It would be better to use already existing code
Eric Andersen79757c92001-04-05 21:45:54 +0000121 */
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000122static char *base64enc(unsigned char *p, char *buf, int len) {
Eric Andersen79757c92001-04-05 21:45:54 +0000123
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
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000145#define WGET_OPT_CONTINUE 1
146#define WGET_OPT_QUIET 2
147#define WGET_OPT_PASSIVE 4
148#define WGET_OPT_OUTNAME 8
149#define WGET_OPT_HEADER 16
150#define WGET_OPT_PREFIX 32
151#define WGET_OPT_PROXY 64
152
153static const struct option wget_long_options[] = {
154 { "continue", 0, NULL, 'c' },
155 { "quiet", 0, NULL, 'q' },
156 { "passive-ftp", 0, NULL, 139 },
157 { "output-document", 1, NULL, 'O' },
158 { "header", 1, NULL, 131 },
159 { "directory-prefix",1, NULL, 'P' },
160 { "proxy", 1, NULL, 'Y' },
161 { 0, 0, 0, 0 }
162};
163
Eric Andersen96700832000-09-04 15:15:55 +0000164int wget_main(int argc, char **argv)
165{
Eric Andersen79757c92001-04-05 21:45:54 +0000166 int n, try=5, status;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000167 unsigned long opt;
Eric Andersen79757c92001-04-05 21:45:54 +0000168 int port;
Robert Griebld7760112002-05-14 23:36:45 +0000169 char *proxy = 0;
Eric Andersen8071c022001-06-21 19:45:06 +0000170 char *dir_prefix=NULL;
Eric Andersen29edd002000-12-09 16:55:35 +0000171 char *s, buf[512];
172 struct stat sbuf;
Eric Andersen50ae3102001-05-15 17:51:37 +0000173 char extra_headers[1024];
174 char *extra_headers_ptr = extra_headers;
175 int extra_headers_left = sizeof(extra_headers);
Eric Andersen79757c92001-04-05 21:45:54 +0000176 struct host_info server, target;
Eric Andersene6dc4392003-10-31 09:31:46 +0000177 struct sockaddr_in s_in;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000178 llist_t *headers_llist = NULL;
Eric Andersen79757c92001-04-05 21:45:54 +0000179
180 FILE *sfp = NULL; /* socket to web/ftp server */
181 FILE *dfp = NULL; /* socket to ftp server (data) */
Eric Andersen96700832000-09-04 15:15:55 +0000182 char *fname_out = NULL; /* where to direct output (-O) */
183 int do_continue = 0; /* continue a prev transfer (-c) */
184 long beg_range = 0L; /* range at which continue begins */
185 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +0000186 FILE *output; /* socket to web server */
187 int quiet_flag = FALSE; /* Be verry, verry quiet... */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000188 int use_proxy = 1; /* Use proxies if env vars are set */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000189 char *proxy_flag = "on"; /* Use proxies if env vars are set */
Eric Andersen29edd002000-12-09 16:55:35 +0000190
Eric Andersen96700832000-09-04 15:15:55 +0000191 /*
192 * Crack command line.
193 */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000194 bb_opt_complementaly = "\203*";
195 bb_applet_long_options = wget_long_options;
196 opt = bb_getopt_ulflags(argc, argv, "cq\213O:\203:P:Y:", &fname_out, &headers_llist, &dir_prefix, &proxy_flag);
197 if (opt & WGET_OPT_CONTINUE) {
198 ++do_continue;
199 }
200 if (opt & WGET_OPT_QUIET) {
201 quiet_flag = TRUE;
202 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000203 if (strcmp(proxy_flag, "off") == 0) {
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000204 /* Use the proxy if necessary. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000205 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000206 }
207 if (opt & WGET_OPT_HEADER) {
208 while (headers_llist) {
209 int arglen = strlen(headers_llist->data);
210 if (extra_headers_left - arglen - 2 <= 0)
211 bb_error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen);
212 strcpy(extra_headers_ptr, headers_llist->data);
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 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000219 }
220 }
Eric Andersen96700832000-09-04 15:15:55 +0000221 if (argc - optind != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222 bb_show_usage();
Eric Andersen25b669c2000-10-02 23:19:38 +0000223
Eric Andersen79757c92001-04-05 21:45:54 +0000224 parse_url(argv[optind], &target);
225 server.host = target.host;
226 server.port = target.port;
227
Eric Andersen96700832000-09-04 15:15:55 +0000228 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000229 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000230 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000231 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000232 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000233 if (proxy && *proxy) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000234 parse_url(bb_xstrdup(proxy), &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000235 } else {
236 use_proxy = 0;
237 }
Robert Griebld7760112002-05-14 23:36:45 +0000238 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000239
Eric Andersen29edd002000-12-09 16:55:35 +0000240 /* Guess an output filename */
241 if (!fname_out) {
Eric Andersen751750e2004-10-08 08:27:40 +0000242 // Dirty hack. Needed because bb_get_last_path_component
243 // will destroy trailing / by storing '\0' in last byte!
244 if(target.path[strlen(target.path)-1]!='/') {
245 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000246#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen751750e2004-10-08 08:27:40 +0000247 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000248#endif
Eric Andersen751750e2004-10-08 08:27:40 +0000249 bb_get_last_path_component(target.path);
250 }
Eric Andersen29edd002000-12-09 16:55:35 +0000251 if (fname_out==NULL || strlen(fname_out)<1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000252 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000253#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000254 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000255#endif
256 "index.html";
257 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000258 if (dir_prefix != NULL)
259 fname_out = concat_path_file(dir_prefix, fname_out);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000260#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000261 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000263#endif
264 }
Eric Andersen7d697012001-01-24 20:28:35 +0000265 if (do_continue && !fname_out)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000267
Eric Andersen96700832000-09-04 15:15:55 +0000268
269 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000270 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000271 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000272 if (strcmp(fname_out, "-") == 0) {
Randolph Chung02553a22000-12-07 03:53:47 +0000273 output = stdout;
Eric Andersen95a349f2001-05-13 00:55:54 +0000274 quiet_flag = TRUE;
Matt Kraai65317ea2001-04-11 20:03:01 +0000275 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000276 output = bb_xfopen(fname_out, (do_continue ? "a" : "w"));
Eric Andersen96700832000-09-04 15:15:55 +0000277 }
278
279 /*
280 * Determine where to start transfer.
281 */
282 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000283 if (fstat(fileno(output), &sbuf) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000284 bb_perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000285 if (sbuf.st_size > 0)
286 beg_range = sbuf.st_size;
287 else
288 do_continue = 0;
289 }
290
Eric Andersene6dc4392003-10-31 09:31:46 +0000291 /* We want to do exactly _one_ DNS lookup, since some
292 * sites (i.e. ftp.us.debian.org) use round-robin DNS
293 * and we want to connect to only one IP... */
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000294 bb_lookup_host(&s_in, server.host);
295 s_in.sin_port = server.port;
Eric Andersene6dc4392003-10-31 09:31:46 +0000296 if (quiet_flag==FALSE) {
297 fprintf(stdout, "Connecting to %s[%s]:%d\n",
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000298 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
Eric Andersene6dc4392003-10-31 09:31:46 +0000299 }
300
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000301 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000302 /*
303 * HTTP session
304 */
305 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000306 got_clen = chunked = 0;
307
Eric Andersen79757c92001-04-05 21:45:54 +0000308 if (! --try)
309 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000310
Eric Andersen79757c92001-04-05 21:45:54 +0000311 /*
312 * Open socket to http server
313 */
314 if (sfp) fclose(sfp);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000315 sfp = open_socket(&s_in);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000316
Eric Andersen79757c92001-04-05 21:45:54 +0000317 /*
318 * Send HTTP request.
319 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000320 if (use_proxy) {
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000321 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
322#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
323 if (strchr (target.host, ':'))
324 format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
325#endif
326 fprintf(sfp, format,
Eric Andersen79757c92001-04-05 21:45:54 +0000327 target.is_ftp ? "f" : "ht", target.host,
Glenn L McGrath24cb17f2004-01-31 08:08:57 +0000328 ntohs(target.port), target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000329 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000330 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000331 }
Eric Andersen96700832000-09-04 15:15:55 +0000332
Eric Andersen79757c92001-04-05 21:45:54 +0000333 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
334
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000335#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000336 if (target.user) {
337 fprintf(sfp, "Authorization: Basic %s\r\n",
338 base64enc(target.user, buf, sizeof(buf)));
339 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000340 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000341 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
342 base64enc(server.user, buf, sizeof(buf)));
343 }
344#endif
345
Eric Andersenb520e082000-10-03 00:21:45 +0000346 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000347 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
Eric Andersen50ae3102001-05-15 17:51:37 +0000348 if(extra_headers_left < sizeof(extra_headers))
Eric Andersen9abfe852001-05-15 20:11:49 +0000349 fputs(extra_headers,sfp);
Eric Andersen79757c92001-04-05 21:45:54 +0000350 fprintf(sfp,"Connection: close\r\n\r\n");
351
352 /*
353 * Retrieve HTTP response line and check for "200" status code.
354 */
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000355read_response:
356 if (fgets(buf, sizeof(buf), sfp) == NULL)
Eric Andersen79757c92001-04-05 21:45:54 +0000357 close_delete_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000358
Eric Andersen79757c92001-04-05 21:45:54 +0000359 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
360 ;
361 for ( ; isspace(*s) ; ++s)
362 ;
363 switch (status = atoi(s)) {
364 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000365 case 100:
366 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
367 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000368 case 200:
369 if (do_continue && output != stdout)
370 output = freopen(fname_out, "w", output);
371 do_continue = 0;
372 break;
373 case 300: /* redirection */
374 case 301:
375 case 302:
376 case 303:
377 break;
378 case 206:
379 if (do_continue)
380 break;
381 /*FALLTHRU*/
382 default:
383 chomp(buf);
384 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
385 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000386
Eric Andersen79757c92001-04-05 21:45:54 +0000387 /*
388 * Retrieve HTTP headers.
389 */
390 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
391 if (strcasecmp(buf, "content-length") == 0) {
Eric Andersen24794452004-03-06 22:11:45 +0000392 unsigned long value;
393 if (safe_strtoul(s, &value)) {
394 close_delete_and_die("content-length %s is garbage", s);
395 }
396 filesize = value;
Eric Andersen79757c92001-04-05 21:45:54 +0000397 got_clen = 1;
398 continue;
399 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000400 if (strcasecmp(buf, "transfer-encoding") == 0) {
401 if (strcasecmp(s, "chunked") == 0) {
402 chunked = got_clen = 1;
403 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000404 close_delete_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000405 }
406 }
Eric Andersen79757c92001-04-05 21:45:54 +0000407 if (strcasecmp(buf, "location") == 0) {
408 if (s[0] == '/')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000409 target.path = bb_xstrdup(s+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000410 else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000411 parse_url(bb_xstrdup(s), &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000412 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000413 server.host = target.host;
414 server.port = target.port;
415 }
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000416 bb_lookup_host(&s_in, server.host);
417 s_in.sin_port = server.port;
418 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000419 }
420 }
421 }
422 } while(status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000423
Eric Andersen79757c92001-04-05 21:45:54 +0000424 dfp = sfp;
425 }
426 else
427 {
428 /*
429 * FTP session
430 */
431 if (! target.user)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000432 target.user = bb_xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000433
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000434 sfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000435 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
436 close_delete_and_die("%s", buf+4);
437
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000438 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000439 * Splitting username:password pair,
440 * trying to log in
441 */
442 s = strchr(target.user, ':');
443 if (s)
444 *(s++) = '\0';
445 switch(ftpcmd("USER ", target.user, sfp, buf)) {
446 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000447 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000448 case 331:
449 if (ftpcmd("PASS ", s, sfp, buf) == 230)
450 break;
451 /* FALLTHRU (failed login) */
452 default:
453 close_delete_and_die("ftp login: %s", buf+4);
454 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000455
Eric Andersen79757c92001-04-05 21:45:54 +0000456 ftpcmd("CDUP", NULL, sfp, buf);
457 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000458
Eric Andersen79757c92001-04-05 21:45:54 +0000459 /*
460 * Querying file size
461 */
462 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
Eric Andersen24794452004-03-06 22:11:45 +0000463 unsigned long value;
464 if (safe_strtoul(buf+4, &value)) {
465 close_delete_and_die("SIZE value is garbage");
466 }
467 filesize = value;
Eric Andersen96700832000-09-04 15:15:55 +0000468 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000469 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000470
Eric Andersen79757c92001-04-05 21:45:54 +0000471 /*
472 * Entering passive mode
473 */
474 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
475 close_delete_and_die("PASV: %s", buf+4);
476 s = strrchr(buf, ',');
477 *s = 0;
478 port = atoi(s+1);
479 s = strrchr(buf, ',');
480 port += atoi(s+1) * 256;
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000481 s_in.sin_port = htons(port);
482 dfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000483
484 if (do_continue) {
485 sprintf(buf, "REST %ld", beg_range);
486 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
487 if (output != stdout)
488 output = freopen(fname_out, "w", output);
489 do_continue = 0;
490 } else
491 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000492 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000493
Eric Andersen79757c92001-04-05 21:45:54 +0000494 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
495 close_delete_and_die("RETR: %s", buf+4);
496
Eric Andersen96700832000-09-04 15:15:55 +0000497 }
498
Eric Andersen79757c92001-04-05 21:45:54 +0000499
Eric Andersen96700832000-09-04 15:15:55 +0000500 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000501 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000502 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000503 if (chunked) {
504 fgets(buf, sizeof(buf), dfp);
505 filesize = strtol(buf, (char **) NULL, 16);
506 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000507#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000508 if (quiet_flag==FALSE)
509 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000510#endif
Mark Whitley30ac01c2001-04-17 18:13:16 +0000511 do {
Glenn L McGrath23365972003-08-29 06:25:04 +0000512 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 +0000513 if (safe_fwrite(buf, 1, n, output) != n) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000514 bb_perror_msg_and_die("write error");
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000515 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000516#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000517 statbytes+=n;
Eric Andersenb520e082000-10-03 00:21:45 +0000518#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000519 if (got_clen) {
520 filesize -= n;
521 }
522 }
Eric Andersen79757c92001-04-05 21:45:54 +0000523
Eric Andersen6d7fa432001-04-10 18:17:05 +0000524 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000525 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
526 safe_fgets(buf, sizeof(buf), dfp);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000527 filesize = strtol(buf, (char **) NULL, 16);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000528 if (filesize==0) {
529 chunked = 0; /* all done! */
530 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000531 }
532
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000533 if (n == 0 && ferror(dfp)) {
534 bb_perror_msg_and_die("network read error");
535 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000536 } while (chunked);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000537#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Mark Whitley30ac01c2001-04-17 18:13:16 +0000538 if (quiet_flag==FALSE)
539 progressmeter(1);
540#endif
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000541 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000542 fclose(dfp);
543 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000544 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000545 ftpcmd("QUIT", NULL, sfp, buf);
546 }
Eric Andersen79757c92001-04-05 21:45:54 +0000547 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000548}
549
550
Eric Andersen79757c92001-04-05 21:45:54 +0000551void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000552{
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000553 char *cp, *sp, *up, *pp;
Eric Andersen96700832000-09-04 15:15:55 +0000554
Eric Andersen79757c92001-04-05 21:45:54 +0000555 if (strncmp(url, "http://", 7) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000556 h->port = bb_lookup_port("http", "tcp", 80);
Eric Andersen79757c92001-04-05 21:45:54 +0000557 h->host = url + 7;
558 h->is_ftp = 0;
559 } else if (strncmp(url, "ftp://", 6) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000560 h->port = bb_lookup_port("ftp", "tfp", 21);
Eric Andersen79757c92001-04-05 21:45:54 +0000561 h->host = url + 6;
562 h->is_ftp = 1;
563 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000564 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000565
Eric Andersen79757c92001-04-05 21:45:54 +0000566 sp = strchr(h->host, '/');
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000567 if (sp) {
Matt Kraaia9711a52001-01-03 16:15:15 +0000568 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000569 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000570 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000571 h->path = bb_xstrdup("");
Eric Andersen79757c92001-04-05 21:45:54 +0000572
573 up = strrchr(h->host, '@');
574 if (up != NULL) {
575 h->user = h->host;
576 *up++ = '\0';
577 h->host = up;
578 } else
579 h->user = NULL;
580
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000581 pp = h->host;
582
583#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
584 if (h->host[0] == '[') {
585 char *ep;
586
587 ep = h->host + 1;
Eric Andersen6231f092003-09-11 08:25:11 +0000588 while (*ep == ':' || isxdigit (*ep))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000589 ep++;
590 if (*ep == ']') {
591 h->host++;
592 *ep = '\0';
593 pp = ep + 1;
594 }
595 }
596#endif
597
598 cp = strchr(pp, ':');
Eric Andersen79757c92001-04-05 21:45:54 +0000599 if (cp != NULL) {
600 *cp++ = '\0';
Glenn L McGrathf980bd52003-12-27 00:21:47 +0000601 h->port = htons(atoi(cp));
Eric Andersen79757c92001-04-05 21:45:54 +0000602 }
Eric Andersen96700832000-09-04 15:15:55 +0000603}
604
605
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000606FILE *open_socket(struct sockaddr_in *s_in)
Eric Andersen96700832000-09-04 15:15:55 +0000607{
Eric Andersen96700832000-09-04 15:15:55 +0000608 FILE *fp;
609
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000610 fp = fdopen(xconnect(s_in), "r+");
611 if (fp == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000612 bb_perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000613
614 return fp;
615}
616
617
618char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
619{
620 char *s, *hdrval;
621 int c;
622
623 *istrunc = 0;
624
625 /* retrieve header line */
626 if (fgets(buf, bufsiz, fp) == NULL)
627 return NULL;
628
629 /* see if we are at the end of the headers */
630 for (s = buf ; *s == '\r' ; ++s)
631 ;
632 if (s[0] == '\n')
633 return NULL;
634
635 /* convert the header name to lower case */
636 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
637 *s = tolower(*s);
638
639 /* verify we are at the end of the header name */
640 if (*s != ':')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000641 bb_error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000642
643 /* locate the start of the header value */
644 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
645 ;
646 hdrval = s;
647
648 /* locate the end of header */
649 while (*s != '\0' && *s != '\r' && *s != '\n')
650 ++s;
651
652 /* end of header found */
653 if (*s != '\0') {
654 *s = '\0';
655 return hdrval;
656 }
657
Eric Andersen5d638842000-09-14 21:46:30 +0000658 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000659 while (c = getc(fp), c != EOF && c != '\n')
660 ;
661 *istrunc = 1;
662 return hdrval;
663}
664
Eric Andersen79757c92001-04-05 21:45:54 +0000665static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
666{
Eric Andersen79757c92001-04-05 21:45:54 +0000667 if (s1) {
668 if (!s2) s2="";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000669 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000670 fflush(fp);
671 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000672
Eric Andersen79757c92001-04-05 21:45:54 +0000673 do {
Glenn L McGrath32da8852004-04-08 10:27:11 +0000674 char *buf_ptr;
675
676 if (fgets(buf, 510, fp) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000677 bb_perror_msg_and_die("fgets()");
Glenn L McGrath32da8852004-04-08 10:27:11 +0000678 }
679 buf_ptr = strstr(buf, "\r\n");
680 if (buf_ptr) {
681 *buf_ptr = '\0';
682 }
Eric Andersen79757c92001-04-05 21:45:54 +0000683 } while (! isdigit(buf[0]) || buf[3] != ' ');
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000684
Eric Andersen79757c92001-04-05 21:45:54 +0000685 return atoi(buf);
686}
687
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000688#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000689/* Stuff below is from BSD rcp util.c, as added to openshh.
Eric Andersen4e573f42000-11-14 23:29:24 +0000690 * Original copyright notice is retained at the end of this file.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000691 *
692 */
Eric Andersenb520e082000-10-03 00:21:45 +0000693
694
Eric Andersen3e6ff902001-03-09 21:24:12 +0000695static int
Eric Andersenb520e082000-10-03 00:21:45 +0000696getttywidth(void)
697{
Eric Andersen8efe9672003-09-15 08:33:45 +0000698 int width=0;
699 get_terminal_width_height(0, &width, NULL);
700 return (width);
Eric Andersenb520e082000-10-03 00:21:45 +0000701}
702
Eric Andersen3e6ff902001-03-09 21:24:12 +0000703static void
Eric Andersenb520e082000-10-03 00:21:45 +0000704updateprogressmeter(int ignore)
705{
706 int save_errno = errno;
707
708 progressmeter(0);
709 errno = save_errno;
710}
711
Eric Andersen3e6ff902001-03-09 21:24:12 +0000712static void
Eric Andersenb520e082000-10-03 00:21:45 +0000713alarmtimer(int wait)
714{
715 struct itimerval itv;
716
717 itv.it_value.tv_sec = wait;
718 itv.it_value.tv_usec = 0;
719 itv.it_interval = itv.it_value;
720 setitimer(ITIMER_REAL, &itv, NULL);
721}
722
723
Eric Andersen3e6ff902001-03-09 21:24:12 +0000724static void
Eric Andersenb520e082000-10-03 00:21:45 +0000725progressmeter(int flag)
726{
727 static const char prefixes[] = " KMGTP";
728 static struct timeval lastupdate;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000729 static off_t lastsize, totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000730 struct timeval now, td, wait;
731 off_t cursize, abbrevsize;
732 double elapsed;
733 int ratio, barlength, i, remaining;
734 char buf[256];
735
736 if (flag == -1) {
737 (void) gettimeofday(&start, (struct timezone *) 0);
738 lastupdate = start;
739 lastsize = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000740 totalsize = filesize; /* as filesize changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000741 }
742
743 (void) gettimeofday(&now, (struct timezone *) 0);
744 cursize = statbytes;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000745 if (totalsize != 0 && !chunked) {
746 ratio = 100.0 * cursize / totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000747 ratio = MAX(ratio, 0);
748 ratio = MIN(ratio, 100);
749 } else
750 ratio = 100;
751
752 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
753
754 barlength = getttywidth() - 51;
755 if (barlength > 0) {
756 i = barlength * ratio / 100;
757 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
758 "|%.*s%*s|", i,
759 "*****************************************************************************"
760 "*****************************************************************************",
761 barlength - i, "");
762 }
763 i = 0;
764 abbrevsize = cursize;
765 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
766 i++;
767 abbrevsize >>= 10;
768 }
769 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
770 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
771 'B');
772
773 timersub(&now, &lastupdate, &wait);
774 if (cursize > lastsize) {
775 lastupdate = now;
776 lastsize = cursize;
777 if (wait.tv_sec >= STALLTIME) {
778 start.tv_sec += wait.tv_sec;
779 start.tv_usec += wait.tv_usec;
780 }
781 wait.tv_sec = 0;
782 }
783 timersub(&now, &start, &td);
784 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
785
Mark Whitley30ac01c2001-04-17 18:13:16 +0000786 if (wait.tv_sec >= STALLTIME) {
Eric Andersenb520e082000-10-03 00:21:45 +0000787 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
788 " - stalled -");
Mark Whitley30ac01c2001-04-17 18:13:16 +0000789 } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
790 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
791 " --:-- ETA");
Eric Andersenb520e082000-10-03 00:21:45 +0000792 } else {
Mark Whitley30ac01c2001-04-17 18:13:16 +0000793 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
Eric Andersenb520e082000-10-03 00:21:45 +0000794 i = remaining / 3600;
795 if (i)
796 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
797 "%2d:", i);
798 else
799 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
800 " ");
801 i = remaining % 3600;
802 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
803 "%02d:%02d ETA", i / 60, i % 60);
804 }
Eric Andersen70060d22004-03-27 10:02:48 +0000805 write(STDERR_FILENO, buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000806
807 if (flag == -1) {
808 struct sigaction sa;
809 sa.sa_handler = updateprogressmeter;
810 sigemptyset(&sa.sa_mask);
811 sa.sa_flags = SA_RESTART;
812 sigaction(SIGALRM, &sa, NULL);
813 alarmtimer(1);
814 } else if (flag == 1) {
815 alarmtimer(0);
816 statbytes = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000817 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000818 }
819}
820#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000821
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000822/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersenaff114c2004-04-14 17:51:38 +0000823 * much of which was blatantly stolen from openssh. */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000824
Eric Andersen4e573f42000-11-14 23:29:24 +0000825/*-
826 * Copyright (c) 1992, 1993
827 * The Regents of the University of California. All rights reserved.
828 *
829 * Redistribution and use in source and binary forms, with or without
830 * modification, are permitted provided that the following conditions
831 * are met:
832 * 1. Redistributions of source code must retain the above copyright
833 * notice, this list of conditions and the following disclaimer.
834 * 2. Redistributions in binary form must reproduce the above copyright
835 * notice, this list of conditions and the following disclaimer in the
836 * documentation and/or other materials provided with the distribution.
837 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000838 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
839 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000840 *
841 * 4. Neither the name of the University nor the names of its contributors
842 * may be used to endorse or promote products derived from this software
843 * without specific prior written permission.
844 *
845 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
846 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
847 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
848 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
849 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
850 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
851 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
852 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
853 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
854 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
855 * SUCH DAMAGE.
856 *
Eric Andersen751750e2004-10-08 08:27:40 +0000857 * $Id: wget.c,v 1.75 2004/10/08 08:27:40 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000858 */
859
860
861
Eric Andersen96700832000-09-04 15:15:55 +0000862/*
863Local Variables:
864c-file-style: "linux"
865c-basic-offset: 4
866tab-width: 4
867End:
868*/