blob: eda0bb87cc5319860df9898a2456992d1866c08b [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 Vlasenkof8aa1092006-10-01 10:58:54 +000032static FILEOFF_TYPE content_len; /* Content-length of the file */
33static FILEOFF_TYPE beg_range; /* Range at which continue begins */
34static FILEOFF_TYPE transferred; /* Number of bytes transferred so far */
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000035static int chunked; /* chunked transfer encoding */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000036#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen20aab262001-07-19 22:28:02 +000037static void progressmeter(int flag);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +000038static char *curfile; /* Name of current file being transferred */
39static struct timeval start; /* Time a transfer started */
Rob Landley19a39402006-06-13 17:10:26 +000040enum {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +000041 STALLTIME = 5 /* Seconds when xfer considered "stalled" */
Rob Landley19a39402006-06-13 17:10:26 +000042};
43#else
Rob Landleyf5fc1382006-09-15 04:08:25 +000044static void progressmeter(int flag) {}
Eric Andersenb520e082000-10-03 00:21:45 +000045#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000046
Matt Kraai854125f2001-05-09 19:15:46 +000047/* Read NMEMB elements of SIZE bytes into PTR from STREAM. Returns the
48 * number of elements read, and a short count if an eof or non-interrupt
49 * error is encountered. */
50static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
51{
52 size_t ret = 0;
53
54 do {
55 clearerr(stream);
56 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
57 } while (ret < nmemb && ferror(stream) && errno == EINTR);
58
59 return ret;
60}
61
Matt Kraai854125f2001-05-09 19:15:46 +000062/* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
63 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
64static char *safe_fgets(char *s, int size, FILE *stream)
65{
66 char *ret;
67
68 do {
69 clearerr(stream);
70 ret = fgets(s, size, stream);
71 } while (ret == NULL && ferror(stream) && errno == EINTR);
72
73 return ret;
74}
75
Eric Andersenbdfd0d72001-10-24 05:00:29 +000076#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +000077/*
Denis Vlasenko21afc7d2006-09-03 15:49:40 +000078 * Base64-encode character string and return the string.
Eric Andersen79757c92001-04-05 21:45:54 +000079 */
Denis Vlasenko3526a132006-09-09 12:20:57 +000080static char *base64enc(unsigned char *p, char *buf, int len)
81{
Denis Vlasenko21afc7d2006-09-03 15:49:40 +000082 bb_uuencode(p, buf, len, bb_uuenc_tbl_base64);
Rob Landley76ef08c2006-06-13 16:44:26 +000083 return buf;
Eric Andersen79757c92001-04-05 21:45:54 +000084}
85#endif
86
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000087#define WGET_OPT_CONTINUE 1
88#define WGET_OPT_QUIET 2
89#define WGET_OPT_PASSIVE 4
90#define WGET_OPT_OUTNAME 8
91#define WGET_OPT_HEADER 16
92#define WGET_OPT_PREFIX 32
93#define WGET_OPT_PROXY 64
94#define WGET_OPT_USER_AGENT 128
Glenn L McGrath514aeab2003-12-19 12:08:56 +000095
Bernhard Reutner-Fischer289e86a2006-08-20 20:01:24 +000096#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Glenn L McGrath514aeab2003-12-19 12:08:56 +000097static const struct option wget_long_options[] = {
98 { "continue", 0, NULL, 'c' },
99 { "quiet", 0, NULL, 'q' },
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000100 { "passive-ftp", 0, NULL, 139 }, /* FIXME: what is this - 139?? */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000101 { "output-document", 1, NULL, 'O' },
Rob Landley76ef08c2006-06-13 16:44:26 +0000102 { "header", 1, NULL, 131 },
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000103 { "directory-prefix",1, NULL, 'P' },
104 { "proxy", 1, NULL, 'Y' },
Bernhard Reutner-Fischerbfbc4eb2006-09-02 15:30:26 +0000105 { "user-agent", 1, NULL, 'U' },
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000106 { 0, 0, 0, 0 }
107};
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000108#endif
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000109
Eric Andersen96700832000-09-04 15:15:55 +0000110int wget_main(int argc, char **argv)
111{
Eric Andersen79757c92001-04-05 21:45:54 +0000112 int n, try=5, status;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000113 unsigned opt;
Eric Andersen79757c92001-04-05 21:45:54 +0000114 int port;
Robert Griebld7760112002-05-14 23:36:45 +0000115 char *proxy = 0;
Eric Andersen8071c022001-06-21 19:45:06 +0000116 char *dir_prefix=NULL;
Eric Andersen29edd002000-12-09 16:55:35 +0000117 char *s, buf[512];
Eric Andersen50ae3102001-05-15 17:51:37 +0000118 char extra_headers[1024];
119 char *extra_headers_ptr = extra_headers;
120 int extra_headers_left = sizeof(extra_headers);
Eric Andersen79757c92001-04-05 21:45:54 +0000121 struct host_info server, target;
Eric Andersene6dc4392003-10-31 09:31:46 +0000122 struct sockaddr_in s_in;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000123 llist_t *headers_llist = NULL;
Eric Andersen79757c92001-04-05 21:45:54 +0000124
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000125 /* server.allocated = target.allocated = NULL; */
126
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000127 FILE *sfp = NULL; /* socket to web/ftp server */
128 FILE *dfp = NULL; /* socket to ftp server (data) */
129 char *fname_out = NULL; /* where to direct output (-O) */
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000130 int got_clen = 0; /* got content-length: from server */
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000131 int output_fd = -1;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000132 int use_proxy = 1; /* Use proxies if env vars are set */
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000133 const char *proxy_flag = "on"; /* Use proxies if env vars are set */
134 const char *user_agent = "Wget";/* Content of the "User-Agent" header field */
Eric Andersen29edd002000-12-09 16:55:35 +0000135
Eric Andersen96700832000-09-04 15:15:55 +0000136 /*
137 * Crack command line.
138 */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000139 opt_complementary = "-1:\203::";
Bernhard Reutner-Fischer289e86a2006-08-20 20:01:24 +0000140#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000141 applet_long_options = wget_long_options;
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000142#endif
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000143 opt = getopt32(argc, argv, "cq\213O:\203:P:Y:U:",
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000144 &fname_out, &headers_llist,
Bernhard Reutner-Fischerbfbc4eb2006-09-02 15:30:26 +0000145 &dir_prefix, &proxy_flag, &user_agent);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000146 if (strcmp(proxy_flag, "off") == 0) {
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000147 /* Use the proxy if necessary. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000148 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000149 }
150 if (opt & WGET_OPT_HEADER) {
151 while (headers_llist) {
152 int arglen = strlen(headers_llist->data);
153 if (extra_headers_left - arglen - 2 <= 0)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000154 bb_error_msg_and_die("extra_headers buffer too small "
155 "(need %i)", extra_headers_left - arglen);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000156 strcpy(extra_headers_ptr, headers_llist->data);
157 extra_headers_ptr += arglen;
158 extra_headers_left -= ( arglen + 2 );
159 *extra_headers_ptr++ = '\r';
160 *extra_headers_ptr++ = '\n';
161 *(extra_headers_ptr + 1) = 0;
162 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000163 }
164 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000165
Eric Andersen79757c92001-04-05 21:45:54 +0000166 parse_url(argv[optind], &target);
167 server.host = target.host;
168 server.port = target.port;
169
Eric Andersen96700832000-09-04 15:15:55 +0000170 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000171 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000172 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000173 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000174 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000175 if (proxy && *proxy) {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000176 parse_url(proxy, &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000177 } else {
178 use_proxy = 0;
179 }
Robert Griebld7760112002-05-14 23:36:45 +0000180 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000181
Eric Andersen29edd002000-12-09 16:55:35 +0000182 /* Guess an output filename */
183 if (!fname_out) {
Eric Andersen751750e2004-10-08 08:27:40 +0000184 // Dirty hack. Needed because bb_get_last_path_component
185 // will destroy trailing / by storing '\0' in last byte!
Denis Vlasenko3526a132006-09-09 12:20:57 +0000186 if (*target.path && target.path[strlen(target.path)-1] != '/') {
Eric Andersen751750e2004-10-08 08:27:40 +0000187 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000188#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen751750e2004-10-08 08:27:40 +0000189 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000190#endif
Eric Andersen751750e2004-10-08 08:27:40 +0000191 bb_get_last_path_component(target.path);
192 }
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000193 if (!fname_out || !fname_out[0]) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000194 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000195#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000196 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000197#endif
198 "index.html";
199 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000200 if (dir_prefix != NULL)
201 fname_out = concat_path_file(dir_prefix, fname_out);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000202#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000203 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000204 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000205#endif
206 }
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000207 if ((opt & WGET_OPT_CONTINUE) && !fname_out)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000209
Eric Andersen96700832000-09-04 15:15:55 +0000210 /*
211 * Determine where to start transfer.
212 */
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000213 if (!strcmp(fname_out, "-")) {
214 output_fd = 1;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000215 opt |= WGET_OPT_QUIET;
216 opt &= ~WGET_OPT_CONTINUE;
217 } else if (opt & WGET_OPT_CONTINUE) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000218 output_fd = open(fname_out, O_WRONLY|O_LARGEFILE);
219 if (output_fd >= 0) {
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000220 beg_range = LSEEK(output_fd, 0, SEEK_END);
221 if (beg_range == (FILEOFF_TYPE)-1)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000222 bb_perror_msg_and_die("lseek");
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000223 }
224 /* File doesn't exist. We do not create file here yet.
225 We are not sure it exists on remove side */
Eric Andersen96700832000-09-04 15:15:55 +0000226 }
227
Eric Andersene6dc4392003-10-31 09:31:46 +0000228 /* We want to do exactly _one_ DNS lookup, since some
229 * sites (i.e. ftp.us.debian.org) use round-robin DNS
230 * and we want to connect to only one IP... */
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000231 bb_lookup_host(&s_in, server.host);
232 s_in.sin_port = server.port;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000233 if (!(opt & WGET_OPT_QUIET)) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000234 printf("Connecting to %s[%s]:%d\n",
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000235 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
Eric Andersene6dc4392003-10-31 09:31:46 +0000236 }
237
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000238 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000239 /*
240 * HTTP session
241 */
242 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000243 got_clen = chunked = 0;
244
Denis Vlasenko3526a132006-09-09 12:20:57 +0000245 if (!--try)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000246 bb_error_msg_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000247
Eric Andersen79757c92001-04-05 21:45:54 +0000248 /*
249 * Open socket to http server
250 */
251 if (sfp) fclose(sfp);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000252 sfp = open_socket(&s_in);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000253
Eric Andersen79757c92001-04-05 21:45:54 +0000254 /*
255 * Send HTTP request.
256 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000257 if (use_proxy) {
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000258 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
259#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
Rob Landley19a39402006-06-13 17:10:26 +0000260 if (strchr(target.host, ':'))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000261 format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
262#endif
263 fprintf(sfp, format,
Eric Andersen79757c92001-04-05 21:45:54 +0000264 target.is_ftp ? "f" : "ht", target.host,
Glenn L McGrath24cb17f2004-01-31 08:08:57 +0000265 ntohs(target.port), target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000266 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000267 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000268 }
Eric Andersen96700832000-09-04 15:15:55 +0000269
Bernhard Reutner-Fischerbfbc4eb2006-09-02 15:30:26 +0000270 fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n", target.host,
271 user_agent);
Eric Andersen79757c92001-04-05 21:45:54 +0000272
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000273#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000274 if (target.user) {
275 fprintf(sfp, "Authorization: Basic %s\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000276 base64enc((unsigned char*)target.user, buf, sizeof(buf)));
Eric Andersen79757c92001-04-05 21:45:54 +0000277 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000278 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000279 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000280 base64enc((unsigned char*)server.user, buf, sizeof(buf)));
Eric Andersen79757c92001-04-05 21:45:54 +0000281 }
282#endif
283
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000284 if (beg_range)
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000285 fprintf(sfp, "Range: bytes="FILEOFF_FMT"-\r\n", beg_range);
Eric Andersen50ae3102001-05-15 17:51:37 +0000286 if(extra_headers_left < sizeof(extra_headers))
Eric Andersen9abfe852001-05-15 20:11:49 +0000287 fputs(extra_headers,sfp);
Eric Andersen79757c92001-04-05 21:45:54 +0000288 fprintf(sfp,"Connection: close\r\n\r\n");
289
290 /*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000291 * Retrieve HTTP response line and check for "200" status code.
292 */
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000293read_response:
294 if (fgets(buf, sizeof(buf), sfp) == NULL)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000295 bb_error_msg_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000296
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000297 s = buf;
298 while (*s != '\0' && !isspace(*s)) ++s;
299 while (isspace(*s)) ++s;
Eric Andersen79757c92001-04-05 21:45:54 +0000300 switch (status = atoi(s)) {
301 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000302 case 100:
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000303 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL)
304 /* eat all remaining headers */;
Eric Andersen6d7fa432001-04-10 18:17:05 +0000305 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000306 case 200:
Eric Andersen79757c92001-04-05 21:45:54 +0000307 break;
308 case 300: /* redirection */
309 case 301:
310 case 302:
311 case 303:
312 break;
313 case 206:
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000314 if (beg_range)
Eric Andersen79757c92001-04-05 21:45:54 +0000315 break;
316 /*FALLTHRU*/
317 default:
318 chomp(buf);
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000319 bb_error_msg_and_die("server returned error %s: %s", s, buf);
Eric Andersen79757c92001-04-05 21:45:54 +0000320 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000321
Eric Andersen79757c92001-04-05 21:45:54 +0000322 /*
323 * Retrieve HTTP headers.
324 */
325 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
326 if (strcasecmp(buf, "content-length") == 0) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000327 if (SAFE_STRTOOFF(s, &content_len) || content_len < 0) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000328 bb_error_msg_and_die("content-length %s is garbage", s);
Eric Andersen24794452004-03-06 22:11:45 +0000329 }
Eric Andersen79757c92001-04-05 21:45:54 +0000330 got_clen = 1;
331 continue;
332 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000333 if (strcasecmp(buf, "transfer-encoding") == 0) {
334 if (strcasecmp(s, "chunked") == 0) {
335 chunked = got_clen = 1;
336 } else {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000337 bb_error_msg_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000338 }
339 }
Eric Andersen79757c92001-04-05 21:45:54 +0000340 if (strcasecmp(buf, "location") == 0) {
341 if (s[0] == '/')
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000342 /* free(target.allocated); */
343 target.path = /* target.allocated = */ xstrdup(s+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000344 else {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000345 parse_url(s, &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000346 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000347 server.host = target.host;
348 server.port = target.port;
349 }
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000350 bb_lookup_host(&s_in, server.host);
351 s_in.sin_port = server.port;
352 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000353 }
354 }
355 }
356 } while(status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000357
Eric Andersen79757c92001-04-05 21:45:54 +0000358 dfp = sfp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000359
360 } else {
361
Eric Andersen79757c92001-04-05 21:45:54 +0000362 /*
363 * FTP session
364 */
Denis Vlasenko3526a132006-09-09 12:20:57 +0000365 if (!target.user)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000366 target.user = xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000367
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000368 sfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000369 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000370 bb_error_msg_and_die("%s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000371
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000372 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000373 * Splitting username:password pair,
374 * trying to log in
375 */
376 s = strchr(target.user, ':');
377 if (s)
378 *(s++) = '\0';
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000379 switch (ftpcmd("USER ", target.user, sfp, buf)) {
Eric Andersen79757c92001-04-05 21:45:54 +0000380 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000381 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000382 case 331:
383 if (ftpcmd("PASS ", s, sfp, buf) == 230)
384 break;
385 /* FALLTHRU (failed login) */
386 default:
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000387 bb_error_msg_and_die("ftp login: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000388 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000389
Eric Andersen79757c92001-04-05 21:45:54 +0000390 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000391
Eric Andersen79757c92001-04-05 21:45:54 +0000392 /*
393 * Querying file size
394 */
Rob Landleyaf12cb32006-06-27 18:41:03 +0000395 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000396 if (SAFE_STRTOOFF(buf+4, &content_len) || content_len < 0) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000397 bb_error_msg_and_die("SIZE value is garbage");
Eric Andersen24794452004-03-06 22:11:45 +0000398 }
Eric Andersen96700832000-09-04 15:15:55 +0000399 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000400 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000401
Eric Andersen79757c92001-04-05 21:45:54 +0000402 /*
403 * Entering passive mode
404 */
405 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000406 bb_error_msg_and_die("PASV: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000407 s = strrchr(buf, ',');
408 *s = 0;
409 port = atoi(s+1);
410 s = strrchr(buf, ',');
411 port += atoi(s+1) * 256;
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000412 s_in.sin_port = htons(port);
413 dfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000414
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000415 if (beg_range) {
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000416 sprintf(buf, "REST "FILEOFF_FMT, beg_range);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000417 if (ftpcmd(buf, NULL, sfp, buf) == 350)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000418 content_len -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000419 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000420
Rob Landleyaf12cb32006-06-27 18:41:03 +0000421 if (ftpcmd("RETR ", target.path, sfp, buf) > 150)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000422 bb_error_msg_and_die("RETR: %s", buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000423 }
424
Eric Andersen79757c92001-04-05 21:45:54 +0000425
Eric Andersen96700832000-09-04 15:15:55 +0000426 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000427 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000428 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000429 if (chunked) {
430 fgets(buf, sizeof(buf), dfp);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000431 content_len = STRTOOFF(buf, (char **) NULL, 16);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000432 /* FIXME: error check?? */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000433 }
Rob Landley19a39402006-06-13 17:10:26 +0000434
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000435 /* Do it before progressmeter (want to have nice error message) */
436 if (output_fd < 0)
437 output_fd = xopen3(fname_out,
438 O_WRONLY|O_CREAT|O_EXCL|O_TRUNC|O_LARGEFILE, 0666);
439
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000440 if (!(opt & WGET_OPT_QUIET))
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000441 progressmeter(-1);
Rob Landley19a39402006-06-13 17:10:26 +0000442
Mark Whitley30ac01c2001-04-17 18:13:16 +0000443 do {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000444 while (content_len > 0 || !got_clen) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000445 unsigned rdsz = sizeof(buf);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000446 if (content_len < sizeof(buf) && (chunked || got_clen))
447 rdsz = (unsigned)content_len;
Denis Vlasenko3526a132006-09-09 12:20:57 +0000448 n = safe_fread(buf, 1, rdsz, dfp);
449 if (n <= 0)
450 break;
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000451 if (full_write(output_fd, buf, n) != n) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000452 bb_perror_msg_and_die(bb_msg_write_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000453 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000454#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Rob Landley19a39402006-06-13 17:10:26 +0000455 transferred += n;
Eric Andersenb520e082000-10-03 00:21:45 +0000456#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000457 if (got_clen) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000458 content_len -= n;
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000459 }
460 }
Eric Andersen79757c92001-04-05 21:45:54 +0000461
Eric Andersen6d7fa432001-04-10 18:17:05 +0000462 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000463 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
464 safe_fgets(buf, sizeof(buf), dfp);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000465 content_len = STRTOOFF(buf, (char **) NULL, 16);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000466 /* FIXME: error check? */
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000467 if (content_len == 0) {
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000468 chunked = 0; /* all done! */
469 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000470 }
471
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000472 if (n == 0 && ferror(dfp)) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000473 bb_perror_msg_and_die(bb_msg_read_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000474 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000475 } while (chunked);
Rob Landley19a39402006-06-13 17:10:26 +0000476
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000477 if (!(opt & WGET_OPT_QUIET))
Mark Whitley30ac01c2001-04-17 18:13:16 +0000478 progressmeter(1);
Rob Landley19a39402006-06-13 17:10:26 +0000479
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000480 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000481 fclose(dfp);
482 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000483 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000484 ftpcmd("QUIT", NULL, sfp, buf);
485 }
Eric Andersen79757c92001-04-05 21:45:54 +0000486 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000487}
488
489
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000490static void parse_url(char *src_url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000491{
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000492 char *url, *p, *cp, *sp, *up, *pp;
493
494 /* h->allocated = */ url = xstrdup(src_url);
Eric Andersen96700832000-09-04 15:15:55 +0000495
Eric Andersen79757c92001-04-05 21:45:54 +0000496 if (strncmp(url, "http://", 7) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000497 h->port = bb_lookup_port("http", "tcp", 80);
Eric Andersen79757c92001-04-05 21:45:54 +0000498 h->host = url + 7;
499 h->is_ftp = 0;
500 } else if (strncmp(url, "ftp://", 6) == 0) {
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000501 h->port = bb_lookup_port("ftp", "tcp", 21);
Eric Andersen79757c92001-04-05 21:45:54 +0000502 h->host = url + 6;
503 h->is_ftp = 1;
504 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000505 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000506
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000507 // FYI:
508 // "Real" wget 'http://busybox.net?var=a/b' sends this request:
509 // 'GET /?var=a/b HTTP 1.0'
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000510 // and saves 'index.html?var=a%2Fb' (we save 'b')
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000511 // wget 'http://busybox.net?login=john@doe':
512 // request: 'GET /?login=john@doe HTTP/1.0'
513 // saves: 'index.html?login=john@doe' (we save ?login=john@doe)
514 // wget 'http://busybox.net#test/test':
515 // request: 'GET / HTTP/1.0'
516 // saves: 'index.html' (we save 'test')
517 //
518 // We also don't add unique .N suffix if file exists...
Eric Andersen79757c92001-04-05 21:45:54 +0000519 sp = strchr(h->host, '/');
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000520 p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
521 p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
522 if (!sp) {
523 h->path = "";
524 } else if (*sp == '/') {
Matt Kraaia9711a52001-01-03 16:15:15 +0000525 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000526 h->path = sp;
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000527 } else { // '#' or '?'
528 // http://busybox.net?login=john@doe is a valid URL
529 // memmove converts to:
530 // http:/busybox.nett?login=john@doe...
531 memmove(h->host-1, h->host, sp - h->host);
532 h->host--;
533 sp[-1] = '\0';
534 h->path = sp;
535 }
Eric Andersen79757c92001-04-05 21:45:54 +0000536
537 up = strrchr(h->host, '@');
538 if (up != NULL) {
539 h->user = h->host;
540 *up++ = '\0';
541 h->host = up;
542 } else
543 h->user = NULL;
544
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000545 pp = h->host;
546
547#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
548 if (h->host[0] == '[') {
549 char *ep;
550
551 ep = h->host + 1;
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000552 while (*ep == ':' || isxdigit(*ep))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000553 ep++;
554 if (*ep == ']') {
555 h->host++;
556 *ep = '\0';
557 pp = ep + 1;
558 }
559 }
560#endif
561
562 cp = strchr(pp, ':');
Eric Andersen79757c92001-04-05 21:45:54 +0000563 if (cp != NULL) {
564 *cp++ = '\0';
Glenn L McGrathf980bd52003-12-27 00:21:47 +0000565 h->port = htons(atoi(cp));
Eric Andersen79757c92001-04-05 21:45:54 +0000566 }
Eric Andersen96700832000-09-04 15:15:55 +0000567}
568
569
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000570static FILE *open_socket(struct sockaddr_in *s_in)
Eric Andersen96700832000-09-04 15:15:55 +0000571{
Eric Andersen96700832000-09-04 15:15:55 +0000572 FILE *fp;
573
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000574 fp = fdopen(xconnect(s_in), "r+");
575 if (fp == NULL)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000576 bb_perror_msg_and_die("fdopen");
Eric Andersen96700832000-09-04 15:15:55 +0000577
578 return fp;
579}
580
581
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000582static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
Eric Andersen96700832000-09-04 15:15:55 +0000583{
584 char *s, *hdrval;
585 int c;
586
587 *istrunc = 0;
588
589 /* retrieve header line */
590 if (fgets(buf, bufsiz, fp) == NULL)
591 return NULL;
592
593 /* see if we are at the end of the headers */
594 for (s = buf ; *s == '\r' ; ++s)
595 ;
596 if (s[0] == '\n')
597 return NULL;
598
599 /* convert the header name to lower case */
600 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
601 *s = tolower(*s);
602
603 /* verify we are at the end of the header name */
604 if (*s != ':')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000605 bb_error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000606
607 /* locate the start of the header value */
608 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
609 ;
610 hdrval = s;
611
612 /* locate the end of header */
613 while (*s != '\0' && *s != '\r' && *s != '\n')
614 ++s;
615
616 /* end of header found */
617 if (*s != '\0') {
618 *s = '\0';
619 return hdrval;
620 }
621
Eric Andersen5d638842000-09-14 21:46:30 +0000622 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000623 while (c = getc(fp), c != EOF && c != '\n')
624 ;
625 *istrunc = 1;
626 return hdrval;
627}
628
Eric Andersen79757c92001-04-05 21:45:54 +0000629static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
630{
Eric Andersen79757c92001-04-05 21:45:54 +0000631 if (s1) {
632 if (!s2) s2="";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000633 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000634 fflush(fp);
635 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000636
Eric Andersen79757c92001-04-05 21:45:54 +0000637 do {
Glenn L McGrath32da8852004-04-08 10:27:11 +0000638 char *buf_ptr;
639
640 if (fgets(buf, 510, fp) == NULL) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000641 bb_perror_msg_and_die("fgets");
Glenn L McGrath32da8852004-04-08 10:27:11 +0000642 }
643 buf_ptr = strstr(buf, "\r\n");
644 if (buf_ptr) {
645 *buf_ptr = '\0';
646 }
Denis Vlasenko3526a132006-09-09 12:20:57 +0000647 } while (!isdigit(buf[0]) || buf[3] != ' ');
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000648
Eric Andersen79757c92001-04-05 21:45:54 +0000649 return atoi(buf);
650}
651
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000652#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000653/* Stuff below is from BSD rcp util.c, as added to openshh.
Eric Andersen4e573f42000-11-14 23:29:24 +0000654 * Original copyright notice is retained at the end of this file.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000655 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000656static int
Eric Andersenb520e082000-10-03 00:21:45 +0000657getttywidth(void)
658{
Eric Andersen8efe9672003-09-15 08:33:45 +0000659 int width=0;
660 get_terminal_width_height(0, &width, NULL);
661 return (width);
Eric Andersenb520e082000-10-03 00:21:45 +0000662}
663
Eric Andersen3e6ff902001-03-09 21:24:12 +0000664static void
Eric Andersenb520e082000-10-03 00:21:45 +0000665updateprogressmeter(int ignore)
666{
667 int save_errno = errno;
668
669 progressmeter(0);
670 errno = save_errno;
671}
672
Rob Landleyc9c1a412006-07-12 19:17:55 +0000673static void alarmtimer(int iwait)
Eric Andersenb520e082000-10-03 00:21:45 +0000674{
675 struct itimerval itv;
676
Rob Landleyc9c1a412006-07-12 19:17:55 +0000677 itv.it_value.tv_sec = iwait;
Eric Andersenb520e082000-10-03 00:21:45 +0000678 itv.it_value.tv_usec = 0;
679 itv.it_interval = itv.it_value;
680 setitimer(ITIMER_REAL, &itv, NULL);
681}
682
683
Eric Andersen3e6ff902001-03-09 21:24:12 +0000684static void
Eric Andersenb520e082000-10-03 00:21:45 +0000685progressmeter(int flag)
686{
Eric Andersenb520e082000-10-03 00:21:45 +0000687 static struct timeval lastupdate;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000688 static FILEOFF_TYPE lastsize, totalsize;
Rob Landley19a39402006-06-13 17:10:26 +0000689
Rob Landleyc9c1a412006-07-12 19:17:55 +0000690 struct timeval now, td, tvwait;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000691 FILEOFF_TYPE abbrevsize;
Rob Landley19a39402006-06-13 17:10:26 +0000692 int elapsed, ratio, barlength, i;
Eric Andersenb520e082000-10-03 00:21:45 +0000693 char buf[256];
694
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000695 if (flag == -1) { /* first call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000696 (void) gettimeofday(&start, (struct timezone *) 0);
697 lastupdate = start;
698 lastsize = 0;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000699 totalsize = content_len + beg_range; /* as content_len changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000700 }
701
702 (void) gettimeofday(&now, (struct timezone *) 0);
Rob Landley19a39402006-06-13 17:10:26 +0000703 ratio = 100;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000704 if (totalsize != 0 && !chunked) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000705 ratio = (int) (100 * (transferred+beg_range) / totalsize);
Eric Andersenb520e082000-10-03 00:21:45 +0000706 ratio = MIN(ratio, 100);
Rob Landley19a39402006-06-13 17:10:26 +0000707 }
Eric Andersenb520e082000-10-03 00:21:45 +0000708
Rob Landley19a39402006-06-13 17:10:26 +0000709 fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
Eric Andersenb520e082000-10-03 00:21:45 +0000710
711 barlength = getttywidth() - 51;
Rob Landley19a39402006-06-13 17:10:26 +0000712 if (barlength > 0 && barlength < sizeof(buf)) {
Eric Andersenb520e082000-10-03 00:21:45 +0000713 i = barlength * ratio / 100;
Rob Landley19a39402006-06-13 17:10:26 +0000714 memset(buf, '*', i);
715 memset(buf + i, ' ', barlength - i);
716 buf[barlength] = '\0';
717 fprintf(stderr, "|%s|", buf);
Eric Andersenb520e082000-10-03 00:21:45 +0000718 }
719 i = 0;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000720 abbrevsize = transferred + beg_range;
Rob Landley19a39402006-06-13 17:10:26 +0000721 while (abbrevsize >= 100000) {
Eric Andersenb520e082000-10-03 00:21:45 +0000722 i++;
723 abbrevsize >>= 10;
724 }
Rob Landley19a39402006-06-13 17:10:26 +0000725 /* See http://en.wikipedia.org/wiki/Tera */
726 fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
Eric Andersenb520e082000-10-03 00:21:45 +0000727
Rob Landleyc9c1a412006-07-12 19:17:55 +0000728 timersub(&now, &lastupdate, &tvwait);
Rob Landley19a39402006-06-13 17:10:26 +0000729 if (transferred > lastsize) {
Eric Andersenb520e082000-10-03 00:21:45 +0000730 lastupdate = now;
Rob Landley19a39402006-06-13 17:10:26 +0000731 lastsize = transferred;
Rob Landleyc9c1a412006-07-12 19:17:55 +0000732 if (tvwait.tv_sec >= STALLTIME)
733 timeradd(&start, &tvwait, &start);
734 tvwait.tv_sec = 0;
Eric Andersenb520e082000-10-03 00:21:45 +0000735 }
736 timersub(&now, &start, &td);
Rob Landley19a39402006-06-13 17:10:26 +0000737 elapsed = td.tv_sec;
Eric Andersenb520e082000-10-03 00:21:45 +0000738
Rob Landleyc9c1a412006-07-12 19:17:55 +0000739 if (tvwait.tv_sec >= STALLTIME) {
Rob Landley19a39402006-06-13 17:10:26 +0000740 fprintf(stderr, " - stalled -");
Eric Andersenb520e082000-10-03 00:21:45 +0000741 } else {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000742 FILEOFF_TYPE to_download = totalsize - beg_range;
743 if (transferred <= 0 || elapsed <= 0 || transferred > to_download || chunked) {
744 fprintf(stderr, "--:--:-- ETA");
745 } else {
746 /* to_download / (transferred/elapsed) - elapsed: */
747 int eta = (int) (to_download*elapsed/transferred - elapsed);
748 i = eta % 3600;
749 fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
750 }
Eric Andersenb520e082000-10-03 00:21:45 +0000751 }
Eric Andersenb520e082000-10-03 00:21:45 +0000752
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000753 if (flag == -1) { /* first call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000754 struct sigaction sa;
755 sa.sa_handler = updateprogressmeter;
756 sigemptyset(&sa.sa_mask);
757 sa.sa_flags = SA_RESTART;
758 sigaction(SIGALRM, &sa, NULL);
759 alarmtimer(1);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000760 } else if (flag == 1) { /* last call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000761 alarmtimer(0);
Rob Landley19a39402006-06-13 17:10:26 +0000762 transferred = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000763 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000764 }
765}
766#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000767
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000768/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersenaff114c2004-04-14 17:51:38 +0000769 * much of which was blatantly stolen from openssh. */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000770
Eric Andersen4e573f42000-11-14 23:29:24 +0000771/*-
772 * Copyright (c) 1992, 1993
773 * The Regents of the University of California. All rights reserved.
774 *
775 * Redistribution and use in source and binary forms, with or without
776 * modification, are permitted provided that the following conditions
777 * are met:
778 * 1. Redistributions of source code must retain the above copyright
779 * notice, this list of conditions and the following disclaimer.
780 * 2. Redistributions in binary form must reproduce the above copyright
781 * notice, this list of conditions and the following disclaimer in the
782 * documentation and/or other materials provided with the distribution.
783 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000784 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
785 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000786 *
787 * 4. Neither the name of the University nor the names of its contributors
788 * may be used to endorse or promote products derived from this software
789 * without specific prior written permission.
790 *
791 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
792 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
793 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
794 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
795 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
796 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
797 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
798 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
799 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
800 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
801 * SUCH DAMAGE.
802 *
Eric Andersen751750e2004-10-08 08:27:40 +0000803 * $Id: wget.c,v 1.75 2004/10/08 08:27:40 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000804 */