blob: 6565bb1f333c4ea2b35aa8e36d8a280cd8f4244f [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
Rob Landleyaf12cb32006-06-27 18:41:03 +00009#include "busybox.h"
Eric Andersendff9d542001-01-26 02:04:49 +000010#include <errno.h>
Eric Andersenb520e082000-10-03 00:21:45 +000011#include <signal.h>
12#include <sys/ioctl.h>
Eric Andersen50ae3102001-05-15 17:51:37 +000013#include <getopt.h>
14
Eric Andersencbe31da2001-02-20 06:14:08 +000015
Eric Andersen79757c92001-04-05 21:45:54 +000016struct host_info {
17 char *host;
18 int port;
19 char *path;
20 int is_ftp;
21 char *user;
22};
23
24static void parse_url(char *url, struct host_info *h);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000025static FILE *open_socket(struct sockaddr_in *s_in);
Eric Andersen3e6ff902001-03-09 21:24:12 +000026static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersen79757c92001-04-05 21:45:54 +000027static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
Eric Andersen96700832000-09-04 15:15:55 +000028
Eric Andersenb520e082000-10-03 00:21:45 +000029/* Globals (can be accessed from signal handlers */
Rob Landley19a39402006-06-13 17:10:26 +000030static off_t filesize; /* content-length of the file */
31static int chunked; /* chunked transfer encoding */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000032#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen20aab262001-07-19 22:28:02 +000033static void progressmeter(int flag);
Rob Landley19a39402006-06-13 17:10:26 +000034static char *curfile; /* Name of current file being transferred. */
Eric Andersenb520e082000-10-03 00:21:45 +000035static struct timeval start; /* Time a transfer started. */
Rob Landley19a39402006-06-13 17:10:26 +000036static off_t transferred; /* Number of bytes transferred so far. */
Eric Andersenb520e082000-10-03 00:21:45 +000037/* For progressmeter() -- number of seconds before xfer considered "stalled" */
Rob Landley19a39402006-06-13 17:10:26 +000038enum {
39 STALLTIME = 5
40};
41#else
42static inline void progressmeter(int flag) {}
Eric Andersenb520e082000-10-03 00:21:45 +000043#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000044
Eric Andersen3e6ff902001-03-09 21:24:12 +000045static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
Eric Andersen7d697012001-01-24 20:28:35 +000046{
47 if (output != stdout && do_continue==0) {
48 fclose(output);
49 unlink(fname_out);
50 }
51}
Eric Andersen96700832000-09-04 15:15:55 +000052
Matt Kraai854125f2001-05-09 19:15:46 +000053/* Read NMEMB elements of SIZE bytes into PTR from STREAM. Returns the
54 * number of elements read, and a short count if an eof or non-interrupt
55 * error is encountered. */
56static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
57{
58 size_t ret = 0;
59
60 do {
61 clearerr(stream);
62 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
63 } while (ret < nmemb && ferror(stream) && errno == EINTR);
64
65 return ret;
66}
67
68/* Write NMEMB elements of SIZE bytes from PTR to STREAM. Returns the
69 * number of elements written, and a short count if an eof or non-interrupt
70 * error is encountered. */
71static size_t safe_fwrite(void *ptr, size_t size, size_t nmemb, FILE *stream)
72{
73 size_t ret = 0;
74
75 do {
76 clearerr(stream);
77 ret += fwrite((char *)ptr + (ret * size), size, nmemb - ret, stream);
78 } while (ret < nmemb && ferror(stream) && errno == EINTR);
79
80 return ret;
81}
82
83/* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
84 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
85static char *safe_fgets(char *s, int size, FILE *stream)
86{
87 char *ret;
88
89 do {
90 clearerr(stream);
91 ret = fgets(s, size, stream);
92 } while (ret == NULL && ferror(stream) && errno == EINTR);
93
94 return ret;
95}
96
Eric Andersen79757c92001-04-05 21:45:54 +000097#define close_delete_and_die(s...) { \
98 close_and_delete_outfile(output, fname_out, do_continue); \
Manuel Novoa III cad53642003-03-19 09:13:01 +000099 bb_error_msg_and_die(s); }
Eric Andersen79757c92001-04-05 21:45:54 +0000100
101
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000102#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000103/*
104 * Base64-encode character string
105 * oops... isn't something similar in uuencode.c?
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000106 * XXX: It would be better to use already existing code
Eric Andersen79757c92001-04-05 21:45:54 +0000107 */
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000108static char *base64enc(unsigned char *p, char *buf, int len) {
Eric Andersen79757c92001-04-05 21:45:54 +0000109
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000110 char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
111 "0123456789+/";
Rob Landley76ef08c2006-06-13 16:44:26 +0000112 char *s = buf;
Eric Andersen79757c92001-04-05 21:45:54 +0000113
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000114 while(*p) {
Rob Landley76ef08c2006-06-13 16:44:26 +0000115 if (s >= buf+len-4)
116 bb_error_msg_and_die("buffer overflow");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000117 *(s++) = al[(*p >> 2) & 0x3F];
118 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
119 *s = *(s+1) = '=';
120 *(s+2) = 0;
121 if (! *(++p)) break;
122 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
123 if (! *(++p)) break;
124 *(s++) = al[*(p++) & 0x3F];
125 }
Eric Andersen79757c92001-04-05 21:45:54 +0000126
Rob Landley76ef08c2006-06-13 16:44:26 +0000127 return buf;
Eric Andersen79757c92001-04-05 21:45:54 +0000128}
129#endif
130
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000131#define WGET_OPT_CONTINUE 1
132#define WGET_OPT_QUIET 2
133#define WGET_OPT_PASSIVE 4
134#define WGET_OPT_OUTNAME 8
135#define WGET_OPT_HEADER 16
136#define WGET_OPT_PREFIX 32
137#define WGET_OPT_PROXY 64
138
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000139#if ENABLE_WGET_LONG_OPTIONS
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000140static const struct option wget_long_options[] = {
141 { "continue", 0, NULL, 'c' },
142 { "quiet", 0, NULL, 'q' },
143 { "passive-ftp", 0, NULL, 139 },
144 { "output-document", 1, NULL, 'O' },
Rob Landley76ef08c2006-06-13 16:44:26 +0000145 { "header", 1, NULL, 131 },
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000146 { "directory-prefix",1, NULL, 'P' },
147 { "proxy", 1, NULL, 'Y' },
148 { 0, 0, 0, 0 }
149};
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000150#endif
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000151
Eric Andersen96700832000-09-04 15:15:55 +0000152int wget_main(int argc, char **argv)
153{
Eric Andersen79757c92001-04-05 21:45:54 +0000154 int n, try=5, status;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000155 unsigned long opt;
Eric Andersen79757c92001-04-05 21:45:54 +0000156 int port;
Robert Griebld7760112002-05-14 23:36:45 +0000157 char *proxy = 0;
Eric Andersen8071c022001-06-21 19:45:06 +0000158 char *dir_prefix=NULL;
Eric Andersen29edd002000-12-09 16:55:35 +0000159 char *s, buf[512];
160 struct stat sbuf;
Eric Andersen50ae3102001-05-15 17:51:37 +0000161 char extra_headers[1024];
162 char *extra_headers_ptr = extra_headers;
163 int extra_headers_left = sizeof(extra_headers);
Eric Andersen79757c92001-04-05 21:45:54 +0000164 struct host_info server, target;
Eric Andersene6dc4392003-10-31 09:31:46 +0000165 struct sockaddr_in s_in;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000166 llist_t *headers_llist = NULL;
Eric Andersen79757c92001-04-05 21:45:54 +0000167
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000168 FILE *sfp = NULL; /* socket to web/ftp server */
169 FILE *dfp = NULL; /* socket to ftp server (data) */
170 char *fname_out = NULL; /* where to direct output (-O) */
171 int do_continue = 0; /* continue a prev transfer (-c) */
172 long beg_range = 0L; /* range at which continue begins */
173 int got_clen = 0; /* got content-length: from server */
174 FILE *output; /* socket to web server */
175 int quiet_flag = FALSE; /* Be verry, verry quiet... */
176 int use_proxy = 1; /* Use proxies if env vars are set */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000177 char *proxy_flag = "on"; /* Use proxies if env vars are set */
Eric Andersen29edd002000-12-09 16:55:35 +0000178
Eric Andersen96700832000-09-04 15:15:55 +0000179 /*
180 * Crack command line.
181 */
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000182 bb_opt_complementally = "-1:\203::";
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000183#if ENABLE_WGET_LONG_OPTIONS
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000184 bb_applet_long_options = wget_long_options;
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000185#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000186 opt = bb_getopt_ulflags(argc, argv, "cq\213O:\203:P:Y:",
187 &fname_out, &headers_llist,
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000188 &dir_prefix, &proxy_flag);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000189 if (opt & WGET_OPT_CONTINUE) {
190 ++do_continue;
191 }
192 if (opt & WGET_OPT_QUIET) {
193 quiet_flag = TRUE;
194 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000195 if (strcmp(proxy_flag, "off") == 0) {
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000196 /* Use the proxy if necessary. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000197 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000198 }
199 if (opt & WGET_OPT_HEADER) {
200 while (headers_llist) {
201 int arglen = strlen(headers_llist->data);
202 if (extra_headers_left - arglen - 2 <= 0)
203 bb_error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen);
204 strcpy(extra_headers_ptr, headers_llist->data);
205 extra_headers_ptr += arglen;
206 extra_headers_left -= ( arglen + 2 );
207 *extra_headers_ptr++ = '\r';
208 *extra_headers_ptr++ = '\n';
209 *(extra_headers_ptr + 1) = 0;
210 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000211 }
212 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000213
Eric Andersen79757c92001-04-05 21:45:54 +0000214 parse_url(argv[optind], &target);
215 server.host = target.host;
216 server.port = target.port;
217
Eric Andersen96700832000-09-04 15:15:55 +0000218 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000219 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000220 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000221 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000222 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000223 if (proxy && *proxy) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224 parse_url(bb_xstrdup(proxy), &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000225 } else {
226 use_proxy = 0;
227 }
Robert Griebld7760112002-05-14 23:36:45 +0000228 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000229
Eric Andersen29edd002000-12-09 16:55:35 +0000230 /* Guess an output filename */
231 if (!fname_out) {
Eric Andersen751750e2004-10-08 08:27:40 +0000232 // Dirty hack. Needed because bb_get_last_path_component
233 // will destroy trailing / by storing '\0' in last byte!
Rob Landley6f2a0b22006-02-21 18:34:54 +0000234 if(*target.path && target.path[strlen(target.path)-1]!='/') {
Eric Andersen751750e2004-10-08 08:27:40 +0000235 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000236#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen751750e2004-10-08 08:27:40 +0000237 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000238#endif
Eric Andersen751750e2004-10-08 08:27:40 +0000239 bb_get_last_path_component(target.path);
240 }
Eric Andersen29edd002000-12-09 16:55:35 +0000241 if (fname_out==NULL || strlen(fname_out)<1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000242 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000243#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000244 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000245#endif
246 "index.html";
247 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000248 if (dir_prefix != NULL)
249 fname_out = concat_path_file(dir_prefix, fname_out);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000250#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000251 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000252 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000253#endif
254 }
Eric Andersen7d697012001-01-24 20:28:35 +0000255 if (do_continue && !fname_out)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000256 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000257
Eric Andersen96700832000-09-04 15:15:55 +0000258
259 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000260 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000261 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000262 if (strcmp(fname_out, "-") == 0) {
Randolph Chung02553a22000-12-07 03:53:47 +0000263 output = stdout;
Eric Andersen95a349f2001-05-13 00:55:54 +0000264 quiet_flag = TRUE;
Matt Kraai65317ea2001-04-11 20:03:01 +0000265 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 output = bb_xfopen(fname_out, (do_continue ? "a" : "w"));
Eric Andersen96700832000-09-04 15:15:55 +0000267 }
268
269 /*
270 * Determine where to start transfer.
271 */
272 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000273 if (fstat(fileno(output), &sbuf) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000274 bb_perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000275 if (sbuf.st_size > 0)
276 beg_range = sbuf.st_size;
277 else
278 do_continue = 0;
279 }
280
Eric Andersene6dc4392003-10-31 09:31:46 +0000281 /* We want to do exactly _one_ DNS lookup, since some
282 * sites (i.e. ftp.us.debian.org) use round-robin DNS
283 * and we want to connect to only one IP... */
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000284 bb_lookup_host(&s_in, server.host);
285 s_in.sin_port = server.port;
Eric Andersene6dc4392003-10-31 09:31:46 +0000286 if (quiet_flag==FALSE) {
287 fprintf(stdout, "Connecting to %s[%s]:%d\n",
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000288 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
Eric Andersene6dc4392003-10-31 09:31:46 +0000289 }
290
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000291 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000292 /*
293 * HTTP session
294 */
295 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000296 got_clen = chunked = 0;
297
Eric Andersen79757c92001-04-05 21:45:54 +0000298 if (! --try)
299 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000300
Eric Andersen79757c92001-04-05 21:45:54 +0000301 /*
302 * Open socket to http server
303 */
304 if (sfp) fclose(sfp);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000305 sfp = open_socket(&s_in);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000306
Eric Andersen79757c92001-04-05 21:45:54 +0000307 /*
308 * Send HTTP request.
309 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000310 if (use_proxy) {
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000311 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
312#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
Rob Landley19a39402006-06-13 17:10:26 +0000313 if (strchr(target.host, ':'))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000314 format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
315#endif
316 fprintf(sfp, format,
Eric Andersen79757c92001-04-05 21:45:54 +0000317 target.is_ftp ? "f" : "ht", target.host,
Glenn L McGrath24cb17f2004-01-31 08:08:57 +0000318 ntohs(target.port), target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000319 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000320 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000321 }
Eric Andersen96700832000-09-04 15:15:55 +0000322
Eric Andersen79757c92001-04-05 21:45:54 +0000323 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
324
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000325#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000326 if (target.user) {
327 fprintf(sfp, "Authorization: Basic %s\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000328 base64enc((unsigned char*)target.user, buf, sizeof(buf)));
Eric Andersen79757c92001-04-05 21:45:54 +0000329 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000330 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000331 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000332 base64enc((unsigned char*)server.user, buf, sizeof(buf)));
Eric Andersen79757c92001-04-05 21:45:54 +0000333 }
334#endif
335
Eric Andersenb520e082000-10-03 00:21:45 +0000336 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000337 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
Eric Andersen50ae3102001-05-15 17:51:37 +0000338 if(extra_headers_left < sizeof(extra_headers))
Eric Andersen9abfe852001-05-15 20:11:49 +0000339 fputs(extra_headers,sfp);
Eric Andersen79757c92001-04-05 21:45:54 +0000340 fprintf(sfp,"Connection: close\r\n\r\n");
341
342 /*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000343 * Retrieve HTTP response line and check for "200" status code.
344 */
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000345read_response:
346 if (fgets(buf, sizeof(buf), sfp) == NULL)
Eric Andersen79757c92001-04-05 21:45:54 +0000347 close_delete_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000348
Eric Andersen79757c92001-04-05 21:45:54 +0000349 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
Rob Landley76ef08c2006-06-13 16:44:26 +0000350 ;
Eric Andersen79757c92001-04-05 21:45:54 +0000351 for ( ; isspace(*s) ; ++s)
Rob Landley76ef08c2006-06-13 16:44:26 +0000352 ;
Eric Andersen79757c92001-04-05 21:45:54 +0000353 switch (status = atoi(s)) {
354 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000355 case 100:
356 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
357 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000358 case 200:
359 if (do_continue && output != stdout)
360 output = freopen(fname_out, "w", output);
361 do_continue = 0;
362 break;
363 case 300: /* redirection */
364 case 301:
365 case 302:
366 case 303:
367 break;
368 case 206:
369 if (do_continue)
370 break;
371 /*FALLTHRU*/
372 default:
373 chomp(buf);
374 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
375 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000376
Eric Andersen79757c92001-04-05 21:45:54 +0000377 /*
378 * Retrieve HTTP headers.
379 */
380 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
381 if (strcasecmp(buf, "content-length") == 0) {
Eric Andersen24794452004-03-06 22:11:45 +0000382 unsigned long value;
383 if (safe_strtoul(s, &value)) {
384 close_delete_and_die("content-length %s is garbage", s);
385 }
386 filesize = value;
Eric Andersen79757c92001-04-05 21:45:54 +0000387 got_clen = 1;
388 continue;
389 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000390 if (strcasecmp(buf, "transfer-encoding") == 0) {
391 if (strcasecmp(s, "chunked") == 0) {
392 chunked = got_clen = 1;
393 } else {
Rob Landley76ef08c2006-06-13 16:44:26 +0000394 close_delete_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000395 }
396 }
Eric Andersen79757c92001-04-05 21:45:54 +0000397 if (strcasecmp(buf, "location") == 0) {
398 if (s[0] == '/')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000399 target.path = bb_xstrdup(s+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000400 else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000401 parse_url(bb_xstrdup(s), &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000402 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000403 server.host = target.host;
404 server.port = target.port;
405 }
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000406 bb_lookup_host(&s_in, server.host);
407 s_in.sin_port = server.port;
408 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000409 }
410 }
411 }
412 } while(status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000413
Eric Andersen79757c92001-04-05 21:45:54 +0000414 dfp = sfp;
415 }
416 else
417 {
418 /*
419 * FTP session
420 */
421 if (! target.user)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000422 target.user = bb_xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000423
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000424 sfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000425 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
426 close_delete_and_die("%s", buf+4);
427
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000428 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000429 * Splitting username:password pair,
430 * trying to log in
431 */
432 s = strchr(target.user, ':');
433 if (s)
434 *(s++) = '\0';
435 switch(ftpcmd("USER ", target.user, sfp, buf)) {
436 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000437 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000438 case 331:
439 if (ftpcmd("PASS ", s, sfp, buf) == 230)
440 break;
441 /* FALLTHRU (failed login) */
442 default:
443 close_delete_and_die("ftp login: %s", buf+4);
444 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000445
Eric Andersen79757c92001-04-05 21:45:54 +0000446 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000447
Eric Andersen79757c92001-04-05 21:45:54 +0000448 /*
449 * Querying file size
450 */
Rob Landleyaf12cb32006-06-27 18:41:03 +0000451 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
Eric Andersen24794452004-03-06 22:11:45 +0000452 unsigned long value;
453 if (safe_strtoul(buf+4, &value)) {
454 close_delete_and_die("SIZE value is garbage");
455 }
456 filesize = value;
Eric Andersen96700832000-09-04 15:15:55 +0000457 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000458 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000459
Eric Andersen79757c92001-04-05 21:45:54 +0000460 /*
461 * Entering passive mode
462 */
463 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
464 close_delete_and_die("PASV: %s", buf+4);
465 s = strrchr(buf, ',');
466 *s = 0;
467 port = atoi(s+1);
468 s = strrchr(buf, ',');
469 port += atoi(s+1) * 256;
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000470 s_in.sin_port = htons(port);
471 dfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000472
473 if (do_continue) {
474 sprintf(buf, "REST %ld", beg_range);
475 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
476 if (output != stdout)
477 output = freopen(fname_out, "w", output);
478 do_continue = 0;
479 } else
480 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000481 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000482
Rob Landleyaf12cb32006-06-27 18:41:03 +0000483 if (ftpcmd("RETR ", target.path, sfp, buf) > 150)
Eric Andersen79757c92001-04-05 21:45:54 +0000484 close_delete_and_die("RETR: %s", buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000485 }
486
Eric Andersen79757c92001-04-05 21:45:54 +0000487
Eric Andersen96700832000-09-04 15:15:55 +0000488 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000489 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000490 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000491 if (chunked) {
492 fgets(buf, sizeof(buf), dfp);
493 filesize = strtol(buf, (char **) NULL, 16);
494 }
Rob Landley19a39402006-06-13 17:10:26 +0000495
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000496 if (quiet_flag==FALSE)
497 progressmeter(-1);
Rob Landley19a39402006-06-13 17:10:26 +0000498
Mark Whitley30ac01c2001-04-17 18:13:16 +0000499 do {
Glenn L McGrath23365972003-08-29 06:25:04 +0000500 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 +0000501 if (safe_fwrite(buf, 1, n, output) != n) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000502 bb_perror_msg_and_die(bb_msg_write_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000503 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000504#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Rob Landley19a39402006-06-13 17:10:26 +0000505 transferred += n;
Eric Andersenb520e082000-10-03 00:21:45 +0000506#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000507 if (got_clen) {
508 filesize -= n;
509 }
510 }
Eric Andersen79757c92001-04-05 21:45:54 +0000511
Eric Andersen6d7fa432001-04-10 18:17:05 +0000512 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000513 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
514 safe_fgets(buf, sizeof(buf), dfp);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000515 filesize = strtol(buf, (char **) NULL, 16);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000516 if (filesize==0) {
517 chunked = 0; /* all done! */
518 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000519 }
520
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000521 if (n == 0 && ferror(dfp)) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000522 bb_perror_msg_and_die(bb_msg_read_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000523 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000524 } while (chunked);
Rob Landley19a39402006-06-13 17:10:26 +0000525
Mark Whitley30ac01c2001-04-17 18:13:16 +0000526 if (quiet_flag==FALSE)
527 progressmeter(1);
Rob Landley19a39402006-06-13 17:10:26 +0000528
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000529 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000530 fclose(dfp);
531 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000532 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000533 ftpcmd("QUIT", NULL, sfp, buf);
534 }
Eric Andersen79757c92001-04-05 21:45:54 +0000535 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000536}
537
538
Eric Andersen79757c92001-04-05 21:45:54 +0000539void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000540{
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000541 char *cp, *sp, *up, *pp;
Eric Andersen96700832000-09-04 15:15:55 +0000542
Eric Andersen79757c92001-04-05 21:45:54 +0000543 if (strncmp(url, "http://", 7) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000544 h->port = bb_lookup_port("http", "tcp", 80);
Eric Andersen79757c92001-04-05 21:45:54 +0000545 h->host = url + 7;
546 h->is_ftp = 0;
547 } else if (strncmp(url, "ftp://", 6) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000548 h->port = bb_lookup_port("ftp", "tfp", 21);
Eric Andersen79757c92001-04-05 21:45:54 +0000549 h->host = url + 6;
550 h->is_ftp = 1;
551 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000552 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000553
Eric Andersen79757c92001-04-05 21:45:54 +0000554 sp = strchr(h->host, '/');
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000555 if (sp) {
Matt Kraaia9711a52001-01-03 16:15:15 +0000556 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000557 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000558 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000559 h->path = bb_xstrdup("");
Eric Andersen79757c92001-04-05 21:45:54 +0000560
561 up = strrchr(h->host, '@');
562 if (up != NULL) {
563 h->user = h->host;
564 *up++ = '\0';
565 h->host = up;
566 } else
567 h->user = NULL;
568
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000569 pp = h->host;
570
571#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
572 if (h->host[0] == '[') {
573 char *ep;
574
575 ep = h->host + 1;
Eric Andersen6231f092003-09-11 08:25:11 +0000576 while (*ep == ':' || isxdigit (*ep))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000577 ep++;
578 if (*ep == ']') {
579 h->host++;
580 *ep = '\0';
581 pp = ep + 1;
582 }
583 }
584#endif
585
586 cp = strchr(pp, ':');
Eric Andersen79757c92001-04-05 21:45:54 +0000587 if (cp != NULL) {
588 *cp++ = '\0';
Glenn L McGrathf980bd52003-12-27 00:21:47 +0000589 h->port = htons(atoi(cp));
Eric Andersen79757c92001-04-05 21:45:54 +0000590 }
Eric Andersen96700832000-09-04 15:15:55 +0000591}
592
593
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000594FILE *open_socket(struct sockaddr_in *s_in)
Eric Andersen96700832000-09-04 15:15:55 +0000595{
Eric Andersen96700832000-09-04 15:15:55 +0000596 FILE *fp;
597
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000598 fp = fdopen(xconnect(s_in), "r+");
599 if (fp == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000600 bb_perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000601
602 return fp;
603}
604
605
606char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
607{
608 char *s, *hdrval;
609 int c;
610
611 *istrunc = 0;
612
613 /* retrieve header line */
614 if (fgets(buf, bufsiz, fp) == NULL)
615 return NULL;
616
617 /* see if we are at the end of the headers */
618 for (s = buf ; *s == '\r' ; ++s)
619 ;
620 if (s[0] == '\n')
621 return NULL;
622
623 /* convert the header name to lower case */
624 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
625 *s = tolower(*s);
626
627 /* verify we are at the end of the header name */
628 if (*s != ':')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000629 bb_error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000630
631 /* locate the start of the header value */
632 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
633 ;
634 hdrval = s;
635
636 /* locate the end of header */
637 while (*s != '\0' && *s != '\r' && *s != '\n')
638 ++s;
639
640 /* end of header found */
641 if (*s != '\0') {
642 *s = '\0';
643 return hdrval;
644 }
645
Eric Andersen5d638842000-09-14 21:46:30 +0000646 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000647 while (c = getc(fp), c != EOF && c != '\n')
648 ;
649 *istrunc = 1;
650 return hdrval;
651}
652
Eric Andersen79757c92001-04-05 21:45:54 +0000653static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
654{
Eric Andersen79757c92001-04-05 21:45:54 +0000655 if (s1) {
656 if (!s2) s2="";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000657 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000658 fflush(fp);
659 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000660
Eric Andersen79757c92001-04-05 21:45:54 +0000661 do {
Glenn L McGrath32da8852004-04-08 10:27:11 +0000662 char *buf_ptr;
663
664 if (fgets(buf, 510, fp) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000665 bb_perror_msg_and_die("fgets()");
Glenn L McGrath32da8852004-04-08 10:27:11 +0000666 }
667 buf_ptr = strstr(buf, "\r\n");
668 if (buf_ptr) {
669 *buf_ptr = '\0';
670 }
Eric Andersen79757c92001-04-05 21:45:54 +0000671 } while (! isdigit(buf[0]) || buf[3] != ' ');
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000672
Eric Andersen79757c92001-04-05 21:45:54 +0000673 return atoi(buf);
674}
675
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000676#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000677/* Stuff below is from BSD rcp util.c, as added to openshh.
Eric Andersen4e573f42000-11-14 23:29:24 +0000678 * Original copyright notice is retained at the end of this file.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000679 *
680 */
Eric Andersenb520e082000-10-03 00:21:45 +0000681
682
Eric Andersen3e6ff902001-03-09 21:24:12 +0000683static int
Eric Andersenb520e082000-10-03 00:21:45 +0000684getttywidth(void)
685{
Eric Andersen8efe9672003-09-15 08:33:45 +0000686 int width=0;
687 get_terminal_width_height(0, &width, NULL);
688 return (width);
Eric Andersenb520e082000-10-03 00:21:45 +0000689}
690
Eric Andersen3e6ff902001-03-09 21:24:12 +0000691static void
Eric Andersenb520e082000-10-03 00:21:45 +0000692updateprogressmeter(int ignore)
693{
694 int save_errno = errno;
695
696 progressmeter(0);
697 errno = save_errno;
698}
699
Rob Landleyc9c1a412006-07-12 19:17:55 +0000700static void alarmtimer(int iwait)
Eric Andersenb520e082000-10-03 00:21:45 +0000701{
702 struct itimerval itv;
703
Rob Landleyc9c1a412006-07-12 19:17:55 +0000704 itv.it_value.tv_sec = iwait;
Eric Andersenb520e082000-10-03 00:21:45 +0000705 itv.it_value.tv_usec = 0;
706 itv.it_interval = itv.it_value;
707 setitimer(ITIMER_REAL, &itv, NULL);
708}
709
710
Eric Andersen3e6ff902001-03-09 21:24:12 +0000711static void
Eric Andersenb520e082000-10-03 00:21:45 +0000712progressmeter(int flag)
713{
Eric Andersenb520e082000-10-03 00:21:45 +0000714 static struct timeval lastupdate;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000715 static off_t lastsize, totalsize;
Rob Landley19a39402006-06-13 17:10:26 +0000716
Rob Landleyc9c1a412006-07-12 19:17:55 +0000717 struct timeval now, td, tvwait;
Rob Landley19a39402006-06-13 17:10:26 +0000718 off_t abbrevsize;
719 int elapsed, ratio, barlength, i;
Eric Andersenb520e082000-10-03 00:21:45 +0000720 char buf[256];
721
722 if (flag == -1) {
723 (void) gettimeofday(&start, (struct timezone *) 0);
724 lastupdate = start;
725 lastsize = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000726 totalsize = filesize; /* as filesize changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000727 }
728
729 (void) gettimeofday(&now, (struct timezone *) 0);
Rob Landley19a39402006-06-13 17:10:26 +0000730 ratio = 100;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000731 if (totalsize != 0 && !chunked) {
Rob Landley19a39402006-06-13 17:10:26 +0000732 ratio = (int) (100 * transferred / totalsize);
Eric Andersenb520e082000-10-03 00:21:45 +0000733 ratio = MIN(ratio, 100);
Rob Landley19a39402006-06-13 17:10:26 +0000734 }
Eric Andersenb520e082000-10-03 00:21:45 +0000735
Rob Landley19a39402006-06-13 17:10:26 +0000736 fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
Eric Andersenb520e082000-10-03 00:21:45 +0000737
738 barlength = getttywidth() - 51;
Rob Landley19a39402006-06-13 17:10:26 +0000739 if (barlength > 0 && barlength < sizeof(buf)) {
Eric Andersenb520e082000-10-03 00:21:45 +0000740 i = barlength * ratio / 100;
Rob Landley19a39402006-06-13 17:10:26 +0000741 memset(buf, '*', i);
742 memset(buf + i, ' ', barlength - i);
743 buf[barlength] = '\0';
744 fprintf(stderr, "|%s|", buf);
Eric Andersenb520e082000-10-03 00:21:45 +0000745 }
746 i = 0;
Rob Landley19a39402006-06-13 17:10:26 +0000747 abbrevsize = transferred;
748 while (abbrevsize >= 100000) {
Eric Andersenb520e082000-10-03 00:21:45 +0000749 i++;
750 abbrevsize >>= 10;
751 }
Rob Landley19a39402006-06-13 17:10:26 +0000752 /* See http://en.wikipedia.org/wiki/Tera */
753 fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
Eric Andersenb520e082000-10-03 00:21:45 +0000754
Rob Landleyc9c1a412006-07-12 19:17:55 +0000755 timersub(&now, &lastupdate, &tvwait);
Rob Landley19a39402006-06-13 17:10:26 +0000756 if (transferred > lastsize) {
Eric Andersenb520e082000-10-03 00:21:45 +0000757 lastupdate = now;
Rob Landley19a39402006-06-13 17:10:26 +0000758 lastsize = transferred;
Rob Landleyc9c1a412006-07-12 19:17:55 +0000759 if (tvwait.tv_sec >= STALLTIME)
760 timeradd(&start, &tvwait, &start);
761 tvwait.tv_sec = 0;
Eric Andersenb520e082000-10-03 00:21:45 +0000762 }
763 timersub(&now, &start, &td);
Rob Landley19a39402006-06-13 17:10:26 +0000764 elapsed = td.tv_sec;
Eric Andersenb520e082000-10-03 00:21:45 +0000765
Rob Landleyc9c1a412006-07-12 19:17:55 +0000766 if (tvwait.tv_sec >= STALLTIME) {
Rob Landley19a39402006-06-13 17:10:26 +0000767 fprintf(stderr, " - stalled -");
768 } else if (transferred <= 0 || elapsed <= 0 || transferred > totalsize || chunked) {
769 fprintf(stderr, "--:--:-- ETA");
Eric Andersenb520e082000-10-03 00:21:45 +0000770 } else {
Rob Landley19a39402006-06-13 17:10:26 +0000771 /* totalsize / (transferred/elapsed) - elapsed: */
772 int eta = (int) (totalsize*elapsed/transferred - elapsed);
773 i = eta % 3600;
774 fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
Eric Andersenb520e082000-10-03 00:21:45 +0000775 }
Eric Andersenb520e082000-10-03 00:21:45 +0000776
777 if (flag == -1) {
778 struct sigaction sa;
779 sa.sa_handler = updateprogressmeter;
780 sigemptyset(&sa.sa_mask);
781 sa.sa_flags = SA_RESTART;
782 sigaction(SIGALRM, &sa, NULL);
783 alarmtimer(1);
784 } else if (flag == 1) {
785 alarmtimer(0);
Rob Landley19a39402006-06-13 17:10:26 +0000786 transferred = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000787 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000788 }
789}
790#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000791
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000792/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersenaff114c2004-04-14 17:51:38 +0000793 * much of which was blatantly stolen from openssh. */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000794
Eric Andersen4e573f42000-11-14 23:29:24 +0000795/*-
796 * Copyright (c) 1992, 1993
797 * The Regents of the University of California. All rights reserved.
798 *
799 * Redistribution and use in source and binary forms, with or without
800 * modification, are permitted provided that the following conditions
801 * are met:
802 * 1. Redistributions of source code must retain the above copyright
803 * notice, this list of conditions and the following disclaimer.
804 * 2. Redistributions in binary form must reproduce the above copyright
805 * notice, this list of conditions and the following disclaimer in the
806 * documentation and/or other materials provided with the distribution.
807 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000808 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
809 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000810 *
811 * 4. Neither the name of the University nor the names of its contributors
812 * may be used to endorse or promote products derived from this software
813 * without specific prior written permission.
814 *
815 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
816 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
817 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
818 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
819 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
820 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
821 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
822 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
823 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
824 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
825 * SUCH DAMAGE.
826 *
Eric Andersen751750e2004-10-08 08:27:40 +0000827 * $Id: wget.c,v 1.75 2004/10/08 08:27:40 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000828 */