blob: 264ae4483331a433f84cee4b2fc7f4a02cf5be94 [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
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +00009/* We want libc to give us xxx64 functions also */
10/* http://www.unix.org/version2/whatsnew/lfs20mar.html */
11#define _LARGEFILE64_SOURCE 1
12
Rob Landleyaf12cb32006-06-27 18:41:03 +000013#include "busybox.h"
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000014#include <getopt.h> /* for struct option */
15
Eric Andersen79757c92001-04-05 21:45:54 +000016struct host_info {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +000017 // May be used if we ever will want to free() all xstrdup()s...
18 /* char *allocated; */
Eric Andersen79757c92001-04-05 21:45:54 +000019 char *host;
20 int port;
21 char *path;
22 int is_ftp;
23 char *user;
24};
25
26static void parse_url(char *url, struct host_info *h);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000027static FILE *open_socket(struct sockaddr_in *s_in);
Eric Andersen3e6ff902001-03-09 21:24:12 +000028static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersen79757c92001-04-05 21:45:54 +000029static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
Eric Andersen96700832000-09-04 15:15:55 +000030
Eric Andersenb520e082000-10-03 00:21:45 +000031/* Globals (can be accessed from signal handlers */
Denis Vlasenko7039a662006-10-08 17:54:47 +000032static off_t content_len; /* Content-length of the file */
33static off_t beg_range; /* Range at which continue begins */
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000034#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Denis Vlasenko7039a662006-10-08 17:54:47 +000035static off_t transferred; /* Number of bytes transferred so far */
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000036#endif
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000037static int chunked; /* chunked transfer encoding */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000038#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen20aab262001-07-19 22:28:02 +000039static void progressmeter(int flag);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +000040static char *curfile; /* Name of current file being transferred */
41static struct timeval start; /* Time a transfer started */
Rob Landley19a39402006-06-13 17:10:26 +000042enum {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +000043 STALLTIME = 5 /* Seconds when xfer considered "stalled" */
Rob Landley19a39402006-06-13 17:10:26 +000044};
45#else
Rob Landleyf5fc1382006-09-15 04:08:25 +000046static void progressmeter(int flag) {}
Eric Andersenb520e082000-10-03 00:21:45 +000047#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000048
Matt Kraai854125f2001-05-09 19:15:46 +000049/* Read NMEMB elements of SIZE bytes into PTR from STREAM. Returns the
50 * number of elements read, and a short count if an eof or non-interrupt
51 * error is encountered. */
52static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
53{
54 size_t ret = 0;
55
56 do {
57 clearerr(stream);
58 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
59 } while (ret < nmemb && ferror(stream) && errno == EINTR);
60
61 return ret;
62}
63
Matt Kraai854125f2001-05-09 19:15:46 +000064/* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
65 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
66static char *safe_fgets(char *s, int size, FILE *stream)
67{
68 char *ret;
69
70 do {
71 clearerr(stream);
72 ret = fgets(s, size, stream);
73 } while (ret == NULL && ferror(stream) && errno == EINTR);
74
75 return ret;
76}
77
Eric Andersenbdfd0d72001-10-24 05:00:29 +000078#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +000079/*
Denis Vlasenko21afc7d2006-09-03 15:49:40 +000080 * Base64-encode character string and return the string.
Eric Andersen79757c92001-04-05 21:45:54 +000081 */
Denis Vlasenko3526a132006-09-09 12:20:57 +000082static char *base64enc(unsigned char *p, char *buf, int len)
83{
Denis Vlasenko21afc7d2006-09-03 15:49:40 +000084 bb_uuencode(p, buf, len, bb_uuenc_tbl_base64);
Rob Landley76ef08c2006-06-13 16:44:26 +000085 return buf;
Eric Andersen79757c92001-04-05 21:45:54 +000086}
87#endif
88
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000089#define WGET_OPT_CONTINUE 1
90#define WGET_OPT_QUIET 2
91#define WGET_OPT_PASSIVE 4
92#define WGET_OPT_OUTNAME 8
93#define WGET_OPT_HEADER 16
94#define WGET_OPT_PREFIX 32
95#define WGET_OPT_PROXY 64
96#define WGET_OPT_USER_AGENT 128
Glenn L McGrath514aeab2003-12-19 12:08:56 +000097
Bernhard Reutner-Fischer289e86a2006-08-20 20:01:24 +000098#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Glenn L McGrath514aeab2003-12-19 12:08:56 +000099static const struct option wget_long_options[] = {
100 { "continue", 0, NULL, 'c' },
101 { "quiet", 0, NULL, 'q' },
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000102 { "passive-ftp", 0, NULL, 139 }, /* FIXME: what is this - 139?? */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000103 { "output-document", 1, NULL, 'O' },
Rob Landley76ef08c2006-06-13 16:44:26 +0000104 { "header", 1, NULL, 131 },
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000105 { "directory-prefix",1, NULL, 'P' },
106 { "proxy", 1, NULL, 'Y' },
Bernhard Reutner-Fischerbfbc4eb2006-09-02 15:30:26 +0000107 { "user-agent", 1, NULL, 'U' },
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000108 { 0, 0, 0, 0 }
109};
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000110#endif
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000111
Eric Andersen96700832000-09-04 15:15:55 +0000112int wget_main(int argc, char **argv)
113{
Eric Andersen79757c92001-04-05 21:45:54 +0000114 int n, try=5, status;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000115 unsigned opt;
Eric Andersen79757c92001-04-05 21:45:54 +0000116 int port;
Robert Griebld7760112002-05-14 23:36:45 +0000117 char *proxy = 0;
Eric Andersen8071c022001-06-21 19:45:06 +0000118 char *dir_prefix=NULL;
Eric Andersen29edd002000-12-09 16:55:35 +0000119 char *s, buf[512];
Eric Andersen50ae3102001-05-15 17:51:37 +0000120 char extra_headers[1024];
121 char *extra_headers_ptr = extra_headers;
122 int extra_headers_left = sizeof(extra_headers);
Eric Andersen79757c92001-04-05 21:45:54 +0000123 struct host_info server, target;
Eric Andersene6dc4392003-10-31 09:31:46 +0000124 struct sockaddr_in s_in;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000125 llist_t *headers_llist = NULL;
Eric Andersen79757c92001-04-05 21:45:54 +0000126
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000127 /* server.allocated = target.allocated = NULL; */
128
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000129 FILE *sfp = NULL; /* socket to web/ftp server */
130 FILE *dfp = NULL; /* socket to ftp server (data) */
131 char *fname_out = NULL; /* where to direct output (-O) */
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000132 int got_clen = 0; /* got content-length: from server */
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000133 int output_fd = -1;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000134 int use_proxy = 1; /* Use proxies if env vars are set */
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000135 const char *proxy_flag = "on"; /* Use proxies if env vars are set */
136 const char *user_agent = "Wget";/* Content of the "User-Agent" header field */
Eric Andersen29edd002000-12-09 16:55:35 +0000137
Eric Andersen96700832000-09-04 15:15:55 +0000138 /*
139 * Crack command line.
140 */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000141 opt_complementary = "-1:\203::";
Bernhard Reutner-Fischer289e86a2006-08-20 20:01:24 +0000142#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000143 applet_long_options = wget_long_options;
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000144#endif
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000145 opt = getopt32(argc, argv, "cq\213O:\203:P:Y:U:",
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000146 &fname_out, &headers_llist,
Bernhard Reutner-Fischerbfbc4eb2006-09-02 15:30:26 +0000147 &dir_prefix, &proxy_flag, &user_agent);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000148 if (strcmp(proxy_flag, "off") == 0) {
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000149 /* Use the proxy if necessary. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000150 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000151 }
152 if (opt & WGET_OPT_HEADER) {
153 while (headers_llist) {
154 int arglen = strlen(headers_llist->data);
155 if (extra_headers_left - arglen - 2 <= 0)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000156 bb_error_msg_and_die("extra_headers buffer too small "
157 "(need %i)", extra_headers_left - arglen);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000158 strcpy(extra_headers_ptr, headers_llist->data);
159 extra_headers_ptr += arglen;
160 extra_headers_left -= ( arglen + 2 );
161 *extra_headers_ptr++ = '\r';
162 *extra_headers_ptr++ = '\n';
163 *(extra_headers_ptr + 1) = 0;
164 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000165 }
166 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000167
Eric Andersen79757c92001-04-05 21:45:54 +0000168 parse_url(argv[optind], &target);
169 server.host = target.host;
170 server.port = target.port;
171
Eric Andersen96700832000-09-04 15:15:55 +0000172 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000173 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000174 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000175 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000176 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000177 if (proxy && *proxy) {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000178 parse_url(proxy, &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000179 } else {
180 use_proxy = 0;
181 }
Robert Griebld7760112002-05-14 23:36:45 +0000182 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000183
Eric Andersen29edd002000-12-09 16:55:35 +0000184 /* Guess an output filename */
185 if (!fname_out) {
Eric Andersen751750e2004-10-08 08:27:40 +0000186 // Dirty hack. Needed because bb_get_last_path_component
187 // will destroy trailing / by storing '\0' in last byte!
Denis Vlasenko3526a132006-09-09 12:20:57 +0000188 if (*target.path && target.path[strlen(target.path)-1] != '/') {
Eric Andersen751750e2004-10-08 08:27:40 +0000189 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000190#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen751750e2004-10-08 08:27:40 +0000191 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000192#endif
Eric Andersen751750e2004-10-08 08:27:40 +0000193 bb_get_last_path_component(target.path);
194 }
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000195 if (!fname_out || !fname_out[0]) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000196 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000197#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000198 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000199#endif
200 "index.html";
201 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000202 if (dir_prefix != NULL)
203 fname_out = concat_path_file(dir_prefix, fname_out);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000204#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000205 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000206 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000207#endif
208 }
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000209 if ((opt & WGET_OPT_CONTINUE) && !fname_out)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000210 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000211
Eric Andersen96700832000-09-04 15:15:55 +0000212 /*
213 * Determine where to start transfer.
214 */
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000215 if (!strcmp(fname_out, "-")) {
216 output_fd = 1;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000217 opt |= WGET_OPT_QUIET;
218 opt &= ~WGET_OPT_CONTINUE;
219 } else if (opt & WGET_OPT_CONTINUE) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000220 output_fd = open(fname_out, O_WRONLY);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000221 if (output_fd >= 0) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000222 beg_range = lseek(output_fd, 0, SEEK_END);
223 if (beg_range == (off_t)-1)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000224 bb_perror_msg_and_die("lseek");
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000225 }
226 /* File doesn't exist. We do not create file here yet.
227 We are not sure it exists on remove side */
Eric Andersen96700832000-09-04 15:15:55 +0000228 }
229
Eric Andersene6dc4392003-10-31 09:31:46 +0000230 /* We want to do exactly _one_ DNS lookup, since some
231 * sites (i.e. ftp.us.debian.org) use round-robin DNS
232 * and we want to connect to only one IP... */
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000233 bb_lookup_host(&s_in, server.host);
234 s_in.sin_port = server.port;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000235 if (!(opt & WGET_OPT_QUIET)) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000236 printf("Connecting to %s[%s]:%d\n",
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000237 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
Eric Andersene6dc4392003-10-31 09:31:46 +0000238 }
239
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000240 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000241 /*
242 * HTTP session
243 */
244 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000245 got_clen = chunked = 0;
246
Denis Vlasenko3526a132006-09-09 12:20:57 +0000247 if (!--try)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000248 bb_error_msg_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000249
Eric Andersen79757c92001-04-05 21:45:54 +0000250 /*
251 * Open socket to http server
252 */
253 if (sfp) fclose(sfp);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000254 sfp = open_socket(&s_in);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000255
Eric Andersen79757c92001-04-05 21:45:54 +0000256 /*
257 * Send HTTP request.
258 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000259 if (use_proxy) {
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000260 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
261#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
Rob Landley19a39402006-06-13 17:10:26 +0000262 if (strchr(target.host, ':'))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000263 format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
264#endif
265 fprintf(sfp, format,
Eric Andersen79757c92001-04-05 21:45:54 +0000266 target.is_ftp ? "f" : "ht", target.host,
Glenn L McGrath24cb17f2004-01-31 08:08:57 +0000267 ntohs(target.port), target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000268 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000269 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000270 }
Eric Andersen96700832000-09-04 15:15:55 +0000271
Bernhard Reutner-Fischerbfbc4eb2006-09-02 15:30:26 +0000272 fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n", target.host,
273 user_agent);
Eric Andersen79757c92001-04-05 21:45:54 +0000274
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000275#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000276 if (target.user) {
277 fprintf(sfp, "Authorization: Basic %s\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000278 base64enc((unsigned char*)target.user, buf, sizeof(buf)));
Eric Andersen79757c92001-04-05 21:45:54 +0000279 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000280 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000281 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000282 base64enc((unsigned char*)server.user, buf, sizeof(buf)));
Eric Andersen79757c92001-04-05 21:45:54 +0000283 }
284#endif
285
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000286 if (beg_range)
Denis Vlasenko7039a662006-10-08 17:54:47 +0000287 fprintf(sfp, "Range: bytes="OFF_FMT"-\r\n", beg_range);
Eric Andersen50ae3102001-05-15 17:51:37 +0000288 if(extra_headers_left < sizeof(extra_headers))
Eric Andersen9abfe852001-05-15 20:11:49 +0000289 fputs(extra_headers,sfp);
Eric Andersen79757c92001-04-05 21:45:54 +0000290 fprintf(sfp,"Connection: close\r\n\r\n");
291
292 /*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000293 * Retrieve HTTP response line and check for "200" status code.
294 */
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000295read_response:
296 if (fgets(buf, sizeof(buf), sfp) == NULL)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000297 bb_error_msg_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000298
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000299 s = buf;
300 while (*s != '\0' && !isspace(*s)) ++s;
301 while (isspace(*s)) ++s;
Denis Vlasenko13858992006-10-08 12:49:22 +0000302 switch (status = xatoi(s)) {
Eric Andersen79757c92001-04-05 21:45:54 +0000303 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000304 case 100:
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000305 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL)
306 /* eat all remaining headers */;
Eric Andersen6d7fa432001-04-10 18:17:05 +0000307 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000308 case 200:
Eric Andersen79757c92001-04-05 21:45:54 +0000309 break;
310 case 300: /* redirection */
311 case 301:
312 case 302:
313 case 303:
314 break;
315 case 206:
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000316 if (beg_range)
Eric Andersen79757c92001-04-05 21:45:54 +0000317 break;
318 /*FALLTHRU*/
319 default:
320 chomp(buf);
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000321 bb_error_msg_and_die("server returned error %s: %s", s, buf);
Eric Andersen79757c92001-04-05 21:45:54 +0000322 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000323
Eric Andersen79757c92001-04-05 21:45:54 +0000324 /*
325 * Retrieve HTTP headers.
326 */
327 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
328 if (strcasecmp(buf, "content-length") == 0) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000329 if (SAFE_STRTOOFF(s, &content_len) || content_len < 0) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000330 bb_error_msg_and_die("content-length %s is garbage", s);
Eric Andersen24794452004-03-06 22:11:45 +0000331 }
Eric Andersen79757c92001-04-05 21:45:54 +0000332 got_clen = 1;
333 continue;
334 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000335 if (strcasecmp(buf, "transfer-encoding") == 0) {
336 if (strcasecmp(s, "chunked") == 0) {
337 chunked = got_clen = 1;
338 } else {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000339 bb_error_msg_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000340 }
341 }
Eric Andersen79757c92001-04-05 21:45:54 +0000342 if (strcasecmp(buf, "location") == 0) {
343 if (s[0] == '/')
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000344 /* free(target.allocated); */
345 target.path = /* target.allocated = */ xstrdup(s+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000346 else {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000347 parse_url(s, &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000348 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000349 server.host = target.host;
350 server.port = target.port;
351 }
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000352 bb_lookup_host(&s_in, server.host);
353 s_in.sin_port = server.port;
354 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000355 }
356 }
357 }
358 } while(status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000359
Eric Andersen79757c92001-04-05 21:45:54 +0000360 dfp = sfp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000361
362 } else {
363
Eric Andersen79757c92001-04-05 21:45:54 +0000364 /*
365 * FTP session
366 */
Denis Vlasenko3526a132006-09-09 12:20:57 +0000367 if (!target.user)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000368 target.user = xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000369
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000370 sfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000371 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000372 bb_error_msg_and_die("%s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000373
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000374 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000375 * Splitting username:password pair,
376 * trying to log in
377 */
378 s = strchr(target.user, ':');
379 if (s)
380 *(s++) = '\0';
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000381 switch (ftpcmd("USER ", target.user, sfp, buf)) {
Eric Andersen79757c92001-04-05 21:45:54 +0000382 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000383 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000384 case 331:
385 if (ftpcmd("PASS ", s, sfp, buf) == 230)
386 break;
387 /* FALLTHRU (failed login) */
388 default:
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000389 bb_error_msg_and_die("ftp login: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000390 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000391
Eric Andersen79757c92001-04-05 21:45:54 +0000392 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000393
Eric Andersen79757c92001-04-05 21:45:54 +0000394 /*
395 * Querying file size
396 */
Rob Landleyaf12cb32006-06-27 18:41:03 +0000397 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000398 if (SAFE_STRTOOFF(buf+4, &content_len) || content_len < 0) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000399 bb_error_msg_and_die("SIZE value is garbage");
Eric Andersen24794452004-03-06 22:11:45 +0000400 }
Eric Andersen96700832000-09-04 15:15:55 +0000401 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000402 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000403
Eric Andersen79757c92001-04-05 21:45:54 +0000404 /*
405 * Entering passive mode
406 */
407 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000408 bb_error_msg_and_die("PASV: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000409 s = strrchr(buf, ',');
410 *s = 0;
Denis Vlasenko13858992006-10-08 12:49:22 +0000411 port = xatol_range(s+1, 0, 255);
Eric Andersen79757c92001-04-05 21:45:54 +0000412 s = strrchr(buf, ',');
Denis Vlasenko13858992006-10-08 12:49:22 +0000413 port += xatol_range(s+1, 0, 255) * 256;
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000414 s_in.sin_port = htons(port);
415 dfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000416
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000417 if (beg_range) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000418 sprintf(buf, "REST "OFF_FMT, beg_range);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000419 if (ftpcmd(buf, NULL, sfp, buf) == 350)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000420 content_len -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000421 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000422
Rob Landleyaf12cb32006-06-27 18:41:03 +0000423 if (ftpcmd("RETR ", target.path, sfp, buf) > 150)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000424 bb_error_msg_and_die("RETR: %s", buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000425 }
426
Eric Andersen79757c92001-04-05 21:45:54 +0000427
Eric Andersen96700832000-09-04 15:15:55 +0000428 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000429 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000430 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000431 if (chunked) {
432 fgets(buf, sizeof(buf), dfp);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000433 content_len = STRTOOFF(buf, (char **) NULL, 16);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000434 /* FIXME: error check?? */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000435 }
Rob Landley19a39402006-06-13 17:10:26 +0000436
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000437 /* Do it before progressmeter (want to have nice error message) */
438 if (output_fd < 0)
439 output_fd = xopen3(fname_out,
Denis Vlasenko7039a662006-10-08 17:54:47 +0000440 O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0666);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000441
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000442 if (!(opt & WGET_OPT_QUIET))
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000443 progressmeter(-1);
Rob Landley19a39402006-06-13 17:10:26 +0000444
Mark Whitley30ac01c2001-04-17 18:13:16 +0000445 do {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000446 while (content_len > 0 || !got_clen) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000447 unsigned rdsz = sizeof(buf);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000448 if (content_len < sizeof(buf) && (chunked || got_clen))
449 rdsz = (unsigned)content_len;
Denis Vlasenko3526a132006-09-09 12:20:57 +0000450 n = safe_fread(buf, 1, rdsz, dfp);
451 if (n <= 0)
452 break;
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000453 if (full_write(output_fd, buf, n) != n) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000454 bb_perror_msg_and_die(bb_msg_write_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000455 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000456#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Rob Landley19a39402006-06-13 17:10:26 +0000457 transferred += n;
Eric Andersenb520e082000-10-03 00:21:45 +0000458#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000459 if (got_clen) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000460 content_len -= n;
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000461 }
462 }
Eric Andersen79757c92001-04-05 21:45:54 +0000463
Eric Andersen6d7fa432001-04-10 18:17:05 +0000464 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000465 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
466 safe_fgets(buf, sizeof(buf), dfp);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000467 content_len = STRTOOFF(buf, (char **) NULL, 16);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000468 /* FIXME: error check? */
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000469 if (content_len == 0) {
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000470 chunked = 0; /* all done! */
471 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000472 }
473
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000474 if (n == 0 && ferror(dfp)) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000475 bb_perror_msg_and_die(bb_msg_read_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000476 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000477 } while (chunked);
Rob Landley19a39402006-06-13 17:10:26 +0000478
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000479 if (!(opt & WGET_OPT_QUIET))
Mark Whitley30ac01c2001-04-17 18:13:16 +0000480 progressmeter(1);
Rob Landley19a39402006-06-13 17:10:26 +0000481
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000482 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000483 fclose(dfp);
484 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000485 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000486 ftpcmd("QUIT", NULL, sfp, buf);
487 }
Eric Andersen79757c92001-04-05 21:45:54 +0000488 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000489}
490
491
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000492static void parse_url(char *src_url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000493{
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000494 char *url, *p, *cp, *sp, *up, *pp;
495
496 /* h->allocated = */ url = xstrdup(src_url);
Eric Andersen96700832000-09-04 15:15:55 +0000497
Eric Andersen79757c92001-04-05 21:45:54 +0000498 if (strncmp(url, "http://", 7) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000499 h->port = bb_lookup_port("http", "tcp", 80);
Eric Andersen79757c92001-04-05 21:45:54 +0000500 h->host = url + 7;
501 h->is_ftp = 0;
502 } else if (strncmp(url, "ftp://", 6) == 0) {
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000503 h->port = bb_lookup_port("ftp", "tcp", 21);
Eric Andersen79757c92001-04-05 21:45:54 +0000504 h->host = url + 6;
505 h->is_ftp = 1;
506 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000507 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000508
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000509 // FYI:
510 // "Real" wget 'http://busybox.net?var=a/b' sends this request:
511 // 'GET /?var=a/b HTTP 1.0'
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000512 // and saves 'index.html?var=a%2Fb' (we save 'b')
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000513 // wget 'http://busybox.net?login=john@doe':
514 // request: 'GET /?login=john@doe HTTP/1.0'
515 // saves: 'index.html?login=john@doe' (we save ?login=john@doe)
516 // wget 'http://busybox.net#test/test':
517 // request: 'GET / HTTP/1.0'
518 // saves: 'index.html' (we save 'test')
519 //
520 // We also don't add unique .N suffix if file exists...
Eric Andersen79757c92001-04-05 21:45:54 +0000521 sp = strchr(h->host, '/');
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000522 p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
523 p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
524 if (!sp) {
525 h->path = "";
526 } else if (*sp == '/') {
Matt Kraaia9711a52001-01-03 16:15:15 +0000527 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000528 h->path = sp;
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000529 } else { // '#' or '?'
530 // http://busybox.net?login=john@doe is a valid URL
531 // memmove converts to:
532 // http:/busybox.nett?login=john@doe...
533 memmove(h->host-1, h->host, sp - h->host);
534 h->host--;
535 sp[-1] = '\0';
536 h->path = sp;
537 }
Eric Andersen79757c92001-04-05 21:45:54 +0000538
539 up = strrchr(h->host, '@');
540 if (up != NULL) {
541 h->user = h->host;
542 *up++ = '\0';
543 h->host = up;
544 } else
545 h->user = NULL;
546
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000547 pp = h->host;
548
549#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
550 if (h->host[0] == '[') {
551 char *ep;
552
553 ep = h->host + 1;
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000554 while (*ep == ':' || isxdigit(*ep))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000555 ep++;
556 if (*ep == ']') {
557 h->host++;
558 *ep = '\0';
559 pp = ep + 1;
560 }
561 }
562#endif
563
564 cp = strchr(pp, ':');
Eric Andersen79757c92001-04-05 21:45:54 +0000565 if (cp != NULL) {
566 *cp++ = '\0';
Denis Vlasenko13858992006-10-08 12:49:22 +0000567 h->port = htons(xatou16(cp));
Eric Andersen79757c92001-04-05 21:45:54 +0000568 }
Eric Andersen96700832000-09-04 15:15:55 +0000569}
570
571
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000572static FILE *open_socket(struct sockaddr_in *s_in)
Eric Andersen96700832000-09-04 15:15:55 +0000573{
Eric Andersen96700832000-09-04 15:15:55 +0000574 FILE *fp;
575
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000576 fp = fdopen(xconnect(s_in), "r+");
577 if (fp == NULL)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000578 bb_perror_msg_and_die("fdopen");
Eric Andersen96700832000-09-04 15:15:55 +0000579
580 return fp;
581}
582
583
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000584static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
Eric Andersen96700832000-09-04 15:15:55 +0000585{
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{
Eric Andersen79757c92001-04-05 21:45:54 +0000633 if (s1) {
634 if (!s2) s2="";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000635 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000636 fflush(fp);
637 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000638
Eric Andersen79757c92001-04-05 21:45:54 +0000639 do {
Glenn L McGrath32da8852004-04-08 10:27:11 +0000640 char *buf_ptr;
641
642 if (fgets(buf, 510, fp) == NULL) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000643 bb_perror_msg_and_die("fgets");
Glenn L McGrath32da8852004-04-08 10:27:11 +0000644 }
645 buf_ptr = strstr(buf, "\r\n");
646 if (buf_ptr) {
647 *buf_ptr = '\0';
648 }
Denis Vlasenko3526a132006-09-09 12:20:57 +0000649 } while (!isdigit(buf[0]) || buf[3] != ' ');
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000650
Denis Vlasenko13858992006-10-08 12:49:22 +0000651 return xatoi(buf);
Eric Andersen79757c92001-04-05 21:45:54 +0000652}
653
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000654#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000655/* Stuff below is from BSD rcp util.c, as added to openshh.
Eric Andersen4e573f42000-11-14 23:29:24 +0000656 * Original copyright notice is retained at the end of this file.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000657 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000658static int
Eric Andersenb520e082000-10-03 00:21:45 +0000659getttywidth(void)
660{
Eric Andersen8efe9672003-09-15 08:33:45 +0000661 int width=0;
662 get_terminal_width_height(0, &width, NULL);
663 return (width);
Eric Andersenb520e082000-10-03 00:21:45 +0000664}
665
Eric Andersen3e6ff902001-03-09 21:24:12 +0000666static void
Eric Andersenb520e082000-10-03 00:21:45 +0000667updateprogressmeter(int ignore)
668{
669 int save_errno = errno;
670
671 progressmeter(0);
672 errno = save_errno;
673}
674
Rob Landleyc9c1a412006-07-12 19:17:55 +0000675static void alarmtimer(int iwait)
Eric Andersenb520e082000-10-03 00:21:45 +0000676{
677 struct itimerval itv;
678
Rob Landleyc9c1a412006-07-12 19:17:55 +0000679 itv.it_value.tv_sec = iwait;
Eric Andersenb520e082000-10-03 00:21:45 +0000680 itv.it_value.tv_usec = 0;
681 itv.it_interval = itv.it_value;
682 setitimer(ITIMER_REAL, &itv, NULL);
683}
684
685
Eric Andersen3e6ff902001-03-09 21:24:12 +0000686static void
Eric Andersenb520e082000-10-03 00:21:45 +0000687progressmeter(int flag)
688{
Eric Andersenb520e082000-10-03 00:21:45 +0000689 static struct timeval lastupdate;
Denis Vlasenko7039a662006-10-08 17:54:47 +0000690 static off_t lastsize, totalsize;
Rob Landley19a39402006-06-13 17:10:26 +0000691
Rob Landleyc9c1a412006-07-12 19:17:55 +0000692 struct timeval now, td, tvwait;
Denis Vlasenko7039a662006-10-08 17:54:47 +0000693 off_t abbrevsize;
Rob Landley19a39402006-06-13 17:10:26 +0000694 int elapsed, ratio, barlength, i;
Eric Andersenb520e082000-10-03 00:21:45 +0000695 char buf[256];
696
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000697 if (flag == -1) { /* first call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000698 (void) gettimeofday(&start, (struct timezone *) 0);
699 lastupdate = start;
700 lastsize = 0;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000701 totalsize = content_len + beg_range; /* as content_len changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000702 }
703
704 (void) gettimeofday(&now, (struct timezone *) 0);
Rob Landley19a39402006-06-13 17:10:26 +0000705 ratio = 100;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000706 if (totalsize != 0 && !chunked) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000707 ratio = (int) (100 * (transferred+beg_range) / totalsize);
Eric Andersenb520e082000-10-03 00:21:45 +0000708 ratio = MIN(ratio, 100);
Rob Landley19a39402006-06-13 17:10:26 +0000709 }
Eric Andersenb520e082000-10-03 00:21:45 +0000710
Rob Landley19a39402006-06-13 17:10:26 +0000711 fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
Eric Andersenb520e082000-10-03 00:21:45 +0000712
713 barlength = getttywidth() - 51;
Rob Landley19a39402006-06-13 17:10:26 +0000714 if (barlength > 0 && barlength < sizeof(buf)) {
Eric Andersenb520e082000-10-03 00:21:45 +0000715 i = barlength * ratio / 100;
Rob Landley19a39402006-06-13 17:10:26 +0000716 memset(buf, '*', i);
717 memset(buf + i, ' ', barlength - i);
718 buf[barlength] = '\0';
719 fprintf(stderr, "|%s|", buf);
Eric Andersenb520e082000-10-03 00:21:45 +0000720 }
721 i = 0;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000722 abbrevsize = transferred + beg_range;
Rob Landley19a39402006-06-13 17:10:26 +0000723 while (abbrevsize >= 100000) {
Eric Andersenb520e082000-10-03 00:21:45 +0000724 i++;
725 abbrevsize >>= 10;
726 }
Rob Landley19a39402006-06-13 17:10:26 +0000727 /* See http://en.wikipedia.org/wiki/Tera */
728 fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
Eric Andersenb520e082000-10-03 00:21:45 +0000729
Rob Landleyc9c1a412006-07-12 19:17:55 +0000730 timersub(&now, &lastupdate, &tvwait);
Rob Landley19a39402006-06-13 17:10:26 +0000731 if (transferred > lastsize) {
Eric Andersenb520e082000-10-03 00:21:45 +0000732 lastupdate = now;
Rob Landley19a39402006-06-13 17:10:26 +0000733 lastsize = transferred;
Rob Landleyc9c1a412006-07-12 19:17:55 +0000734 if (tvwait.tv_sec >= STALLTIME)
735 timeradd(&start, &tvwait, &start);
736 tvwait.tv_sec = 0;
Eric Andersenb520e082000-10-03 00:21:45 +0000737 }
738 timersub(&now, &start, &td);
Rob Landley19a39402006-06-13 17:10:26 +0000739 elapsed = td.tv_sec;
Eric Andersenb520e082000-10-03 00:21:45 +0000740
Rob Landleyc9c1a412006-07-12 19:17:55 +0000741 if (tvwait.tv_sec >= STALLTIME) {
Rob Landley19a39402006-06-13 17:10:26 +0000742 fprintf(stderr, " - stalled -");
Eric Andersenb520e082000-10-03 00:21:45 +0000743 } else {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000744 off_t to_download = totalsize - beg_range;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000745 if (transferred <= 0 || elapsed <= 0 || transferred > to_download || chunked) {
746 fprintf(stderr, "--:--:-- ETA");
747 } else {
748 /* to_download / (transferred/elapsed) - elapsed: */
749 int eta = (int) (to_download*elapsed/transferred - elapsed);
750 i = eta % 3600;
751 fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
752 }
Eric Andersenb520e082000-10-03 00:21:45 +0000753 }
Eric Andersenb520e082000-10-03 00:21:45 +0000754
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000755 if (flag == -1) { /* first call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000756 struct sigaction sa;
757 sa.sa_handler = updateprogressmeter;
758 sigemptyset(&sa.sa_mask);
759 sa.sa_flags = SA_RESTART;
760 sigaction(SIGALRM, &sa, NULL);
761 alarmtimer(1);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000762 } else if (flag == 1) { /* last call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000763 alarmtimer(0);
Rob Landley19a39402006-06-13 17:10:26 +0000764 transferred = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000765 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000766 }
767}
768#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000769
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000770/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersenaff114c2004-04-14 17:51:38 +0000771 * much of which was blatantly stolen from openssh. */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000772
Eric Andersen4e573f42000-11-14 23:29:24 +0000773/*-
774 * Copyright (c) 1992, 1993
775 * The Regents of the University of California. All rights reserved.
776 *
777 * Redistribution and use in source and binary forms, with or without
778 * modification, are permitted provided that the following conditions
779 * are met:
780 * 1. Redistributions of source code must retain the above copyright
781 * notice, this list of conditions and the following disclaimer.
782 * 2. Redistributions in binary form must reproduce the above copyright
783 * notice, this list of conditions and the following disclaimer in the
784 * documentation and/or other materials provided with the distribution.
785 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000786 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
787 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000788 *
789 * 4. Neither the name of the University nor the names of its contributors
790 * may be used to endorse or promote products derived from this software
791 * without specific prior written permission.
792 *
793 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
794 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
795 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
796 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
797 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
798 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
799 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
800 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
801 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
802 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
803 * SUCH DAMAGE.
804 *
Eric Andersen751750e2004-10-08 08:27:40 +0000805 * $Id: wget.c,v 1.75 2004/10/08 08:27:40 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000806 */