blob: ad09091d3668d6c879c9cd98b03a4dfa0ee171fc [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 */
Denis Vlasenko76791452007-06-18 08:55:57 +000011//#define _LARGEFILE64_SOURCE 1
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000012
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000013#include <getopt.h> /* for struct option */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000014#include "libbb.h"
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000015
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);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +000027static FILE *open_socket(len_and_sockaddr *lsa);
Eric Andersen3e6ff902001-03-09 21:24:12 +000028static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +000029static int ftpcmd(const char *s1, const 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 Vlasenko9cade082006-11-21 10:43:02 +000034#if ENABLE_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
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +000037static bool chunked; /* chunked transfer encoding */
Denis Vlasenko9cade082006-11-21 10:43:02 +000038#if ENABLE_FEATURE_WGET_STATUSBAR
Eric Andersen20aab262001-07-19 22:28:02 +000039static void progressmeter(int flag);
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +000040static const char *curfile; /* Name of current file being transferred */
Rob Landley19a39402006-06-13 17:10:26 +000041enum {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +000042 STALLTIME = 5 /* Seconds when xfer considered "stalled" */
Rob Landley19a39402006-06-13 17:10:26 +000043};
44#else
Denis Vlasenko12d21292007-06-27 21:40:07 +000045static ALWAYS_INLINE void progressmeter(int flag) {}
Eric Andersenb520e082000-10-03 00:21:45 +000046#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000047
Denis Vlasenko12d21292007-06-27 21:40:07 +000048/* Read NMEMB bytes into PTR from STREAM. Returns the number of bytes read,
49 * and a short count if an eof or non-interrupt error is encountered. */
50static size_t safe_fread(void *ptr, size_t nmemb, FILE *stream)
Matt Kraai854125f2001-05-09 19:15:46 +000051{
Denis Vlasenko12d21292007-06-27 21:40:07 +000052 size_t ret;
53 char *p = (char*)ptr;
Matt Kraai854125f2001-05-09 19:15:46 +000054
55 do {
56 clearerr(stream);
Denis Vlasenko12d21292007-06-27 21:40:07 +000057 ret = fread(p, 1, nmemb, stream);
58 p += ret;
59 nmemb -= ret;
60 } while (nmemb && ferror(stream) && errno == EINTR);
Matt Kraai854125f2001-05-09 19:15:46 +000061
Denis Vlasenko12d21292007-06-27 21:40:07 +000062 return p - (char*)ptr;
Matt Kraai854125f2001-05-09 19:15:46 +000063}
64
Denis Vlasenko12d21292007-06-27 21:40:07 +000065/* Read a line or SIZE-1 bytes into S, whichever is less, from STREAM.
Matt Kraai854125f2001-05-09 19:15:46 +000066 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
67static char *safe_fgets(char *s, int size, FILE *stream)
68{
69 char *ret;
70
71 do {
72 clearerr(stream);
73 ret = fgets(s, size, stream);
74 } while (ret == NULL && ferror(stream) && errno == EINTR);
75
76 return ret;
77}
78
Denis Vlasenko9cade082006-11-21 10:43:02 +000079#if ENABLE_FEATURE_WGET_AUTHENTICATION
Denis Vlasenko12d21292007-06-27 21:40:07 +000080/* Base64-encode character string. buf is assumed to be char buf[512]. */
81static char *base64enc_512(char buf[512], const char *str)
Denis Vlasenko3526a132006-09-09 12:20:57 +000082{
Denis Vlasenko12d21292007-06-27 21:40:07 +000083 unsigned len = strlen(str);
84 if (len > 512/4*3 - 10) /* paranoia */
85 len = 512/4*3 - 10;
86 bb_uuencode(buf, str, len, bb_uuenc_tbl_base64);
Rob Landley76ef08c2006-06-13 16:44:26 +000087 return buf;
Eric Andersen79757c92001-04-05 21:45:54 +000088}
89#endif
90
Denis Vlasenko06af2162007-02-03 17:28:39 +000091int wget_main(int argc, char **argv);
Eric Andersen96700832000-09-04 15:15:55 +000092int wget_main(int argc, char **argv)
93{
Denis Vlasenkoc8400a22006-10-25 00:33:44 +000094 char buf[512];
Eric Andersen79757c92001-04-05 21:45:54 +000095 struct host_info server, target;
Denis Vlasenko6536a9b2007-01-12 10:35:23 +000096 len_and_sockaddr *lsa;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +000097 int n, status;
98 int port;
99 int try = 5;
100 unsigned opt;
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000101 char *str;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000102 char *proxy = 0;
103 char *dir_prefix = NULL;
104#if ENABLE_FEATURE_WGET_LONG_OPTIONS
105 char *extra_headers = NULL;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000106 llist_t *headers_llist = NULL;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000107#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000108
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000109 FILE *sfp = NULL; /* socket to web/ftp server */
110 FILE *dfp = NULL; /* socket to ftp server (data) */
111 char *fname_out = NULL; /* where to direct output (-O) */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000112 bool got_clen = 0; /* got content-length: from server */
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000113 int output_fd = -1;
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000114 bool use_proxy = 1; /* Use proxies if env vars are set */
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000115 const char *proxy_flag = "on"; /* Use proxies if env vars are set */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000116 const char *user_agent = "Wget";/* "User-Agent" header field */
117 static const char * const keywords[] = {
118 "content-length", "transfer-encoding", "chunked", "location", NULL
119 };
120 enum {
121 KEY_content_length = 1, KEY_transfer_encoding, KEY_chunked, KEY_location
122 };
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000123 enum {
124 WGET_OPT_CONTINUE = 0x1,
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000125 WGET_OPT_SPIDER = 0x2,
126 WGET_OPT_QUIET = 0x4,
127 WGET_OPT_OUTNAME = 0x8,
128 WGET_OPT_PREFIX = 0x10,
129 WGET_OPT_PROXY = 0x20,
130 WGET_OPT_USER_AGENT = 0x40,
131 WGET_OPT_PASSIVE = 0x80,
132 WGET_OPT_HEADER = 0x100,
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000133 };
Bernhard Reutner-Fischer289e86a2006-08-20 20:01:24 +0000134#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000135 static const char wget_longopts[] =
136 /* name, has_arg, val */
137 "continue\0" No_argument "c"
138 "spider\0" No_argument "s"
139 "quiet\0" No_argument "q"
140 "output-document\0" Required_argument "O"
141 "directory-prefix\0" Required_argument "P"
142 "proxy\0" Required_argument "Y"
143 "user-agent\0" Required_argument "U"
144 "passive-ftp\0" No_argument "\xff"
145 "header\0" Required_argument "\xfe"
146 "\0";
147 applet_long_options = wget_longopts;
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000148#endif
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000149 /* server.allocated = target.allocated = NULL; */
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000150 opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::");
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000151 opt = getopt32(argc, argv, "csqO:P:Y:U:",
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000152 &fname_out, &dir_prefix,
153 &proxy_flag, &user_agent
154 USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist)
155 );
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000156 if (strcmp(proxy_flag, "off") == 0) {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000157 /* Use the proxy if necessary */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000158 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000159 }
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000160#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko7534e082006-10-23 23:21:58 +0000161 if (headers_llist) {
162 int size = 1;
163 char *cp;
Denis Vlasenko8d9f4952007-04-08 15:08:42 +0000164 llist_t *ll = headers_llist;
Denis Vlasenko7534e082006-10-23 23:21:58 +0000165 while (ll) {
166 size += strlen(ll->data) + 2;
167 ll = ll->link;
168 }
169 extra_headers = cp = xmalloc(size);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000170 while (headers_llist) {
Denis Vlasenko7534e082006-10-23 23:21:58 +0000171 cp += sprintf(cp, "%s\r\n", headers_llist->data);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000172 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000173 }
174 }
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000175#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000176
Eric Andersen79757c92001-04-05 21:45:54 +0000177 parse_url(argv[optind], &target);
178 server.host = target.host;
179 server.port = target.port;
180
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000181 /* Use the proxy if necessary */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000182 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000183 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000184 if (proxy && *proxy) {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000185 parse_url(proxy, &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000186 } else {
187 use_proxy = 0;
188 }
Robert Griebld7760112002-05-14 23:36:45 +0000189 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000190
Eric Andersen29edd002000-12-09 16:55:35 +0000191 /* Guess an output filename */
192 if (!fname_out) {
Eric Andersen751750e2004-10-08 08:27:40 +0000193 // Dirty hack. Needed because bb_get_last_path_component
194 // will destroy trailing / by storing '\0' in last byte!
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000195 if (!last_char_is(target.path, '/')) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000196 fname_out = bb_get_last_path_component(target.path);
Denis Vlasenko9cade082006-11-21 10:43:02 +0000197#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000198 curfile = fname_out;
Eric Andersen29edd002000-12-09 16:55:35 +0000199#endif
Eric Andersen751750e2004-10-08 08:27:40 +0000200 }
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000201 if (!fname_out || !fname_out[0]) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000202 /* bb_get_last_path_component writes
203 * to last '/' only. We don't have one here... */
204 fname_out = (char*)"index.html";
Denis Vlasenko9cade082006-11-21 10:43:02 +0000205#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000206 curfile = fname_out;
Eric Andersen29edd002000-12-09 16:55:35 +0000207#endif
Eric Andersen29edd002000-12-09 16:55:35 +0000208 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000209 if (dir_prefix != NULL)
210 fname_out = concat_path_file(dir_prefix, fname_out);
Denis Vlasenko9cade082006-11-21 10:43:02 +0000211#if ENABLE_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000212 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000213 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000214#endif
215 }
Denis Vlasenko4e4662c2006-11-23 13:10:23 +0000216 /* Impossible?
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000217 if ((opt & WGET_OPT_CONTINUE) && !fname_out)
Denis Vlasenko4e4662c2006-11-23 13:10:23 +0000218 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)"); */
Eric Andersen29edd002000-12-09 16:55:35 +0000219
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000220 /* Determine where to start transfer */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000221 if (LONE_DASH(fname_out)) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000222 output_fd = 1;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000223 opt &= ~WGET_OPT_CONTINUE;
Denis Vlasenko4e4662c2006-11-23 13:10:23 +0000224 }
225 if (opt & WGET_OPT_CONTINUE) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000226 output_fd = open(fname_out, O_WRONLY);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000227 if (output_fd >= 0) {
Denis Vlasenkoea620772006-10-14 02:23:43 +0000228 beg_range = xlseek(output_fd, 0, SEEK_END);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000229 }
230 /* File doesn't exist. We do not create file here yet.
231 We are not sure it exists on remove side */
Eric Andersen96700832000-09-04 15:15:55 +0000232 }
233
Eric Andersene6dc4392003-10-31 09:31:46 +0000234 /* We want to do exactly _one_ DNS lookup, since some
235 * sites (i.e. ftp.us.debian.org) use round-robin DNS
236 * and we want to connect to only one IP... */
Denis Vlasenko42823d52007-02-04 02:39:08 +0000237 lsa = xhost2sockaddr(server.host, server.port);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000238 if (!(opt & WGET_OPT_QUIET)) {
Denis Vlasenko85629f02007-01-22 09:36:41 +0000239 fprintf(stderr, "Connecting to %s (%s)\n", server.host,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000240 xmalloc_sockaddr2dotted(&lsa->sa, lsa->len));
Denis Vlasenko85629f02007-01-22 09:36:41 +0000241 /* We leak result of xmalloc_sockaddr2dotted */
Eric Andersene6dc4392003-10-31 09:31:46 +0000242 }
243
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000244 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000245 /*
246 * HTTP session
247 */
248 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000249 got_clen = chunked = 0;
250
Denis Vlasenko3526a132006-09-09 12:20:57 +0000251 if (!--try)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000252 bb_error_msg_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000253
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000254 /* Open socket to http server */
Eric Andersen79757c92001-04-05 21:45:54 +0000255 if (sfp) fclose(sfp);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000256 sfp = open_socket(lsa);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000257
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000258 /* Send HTTP request. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000259 if (use_proxy) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000260 fprintf(sfp, "GET %stp://%s/%s HTTP/1.1\r\n",
Eric Andersen79757c92001-04-05 21:45:54 +0000261 target.is_ftp ? "f" : "ht", target.host,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000262 target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000263 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000264 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000265 }
Eric Andersen96700832000-09-04 15:15:55 +0000266
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000267 fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n",
268 target.host, user_agent);
Eric Andersen79757c92001-04-05 21:45:54 +0000269
Denis Vlasenko9cade082006-11-21 10:43:02 +0000270#if ENABLE_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000271 if (target.user) {
Denis Vlasenko12d21292007-06-27 21:40:07 +0000272 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n"+6,
273 base64enc_512(buf, target.user));
Eric Andersen79757c92001-04-05 21:45:54 +0000274 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000275 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000276 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
Denis Vlasenko12d21292007-06-27 21:40:07 +0000277 base64enc_512(buf, server.user));
Eric Andersen79757c92001-04-05 21:45:54 +0000278 }
279#endif
280
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000281 if (beg_range)
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000282 fprintf(sfp, "Range: bytes=%"OFF_FMT"d-\r\n", beg_range);
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000283#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko7534e082006-10-23 23:21:58 +0000284 if (extra_headers)
285 fputs(extra_headers, sfp);
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000286#endif
Denis Vlasenko7534e082006-10-23 23:21:58 +0000287 fprintf(sfp, "Connection: close\r\n\r\n");
Eric Andersen79757c92001-04-05 21:45:54 +0000288
289 /*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000290 * Retrieve HTTP response line and check for "200" status code.
291 */
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000292 read_response:
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000293 if (fgets(buf, sizeof(buf), sfp) == NULL)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000294 bb_error_msg_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000295
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000296 str = buf;
297 str = skip_non_whitespace(str);
298 str = skip_whitespace(str);
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000299 // FIXME: no error check
300 // xatou wouldn't work: "200 OK"
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000301 status = atoi(str);
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000302 switch (status) {
303 case 0:
304 case 100:
305 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL)
306 /* eat all remaining headers */;
307 goto read_response;
308 case 200:
309 break;
310 case 300: /* redirection */
311 case 301:
312 case 302:
313 case 303:
314 break;
315 case 206:
316 if (beg_range)
Eric Andersen79757c92001-04-05 21:45:54 +0000317 break;
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000318 /*FALLTHRU*/
319 default:
Denis Vlasenko067e3f02006-11-10 23:25:53 +0000320 /* Show first line only and kill any ESC tricks */
321 buf[strcspn(buf, "\n\r\x1b")] = '\0';
322 bb_error_msg_and_die("server returned error: %s", buf);
Eric Andersen79757c92001-04-05 21:45:54 +0000323 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000324
Eric Andersen79757c92001-04-05 21:45:54 +0000325 /*
326 * Retrieve HTTP headers.
327 */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000328 while ((str = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
329 /* gethdr did already convert the "FOO:" string to lowercase */
330 smalluint key = index_in_str_array(keywords, *&buf) + 1;
331 if (key == KEY_content_length) {
332 content_len = BB_STRTOOFF(str, NULL, 10);
Denis Vlasenkod686a042006-11-27 14:43:21 +0000333 if (errno || content_len < 0) {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000334 bb_error_msg_and_die("content-length %s is garbage", str);
Eric Andersen24794452004-03-06 22:11:45 +0000335 }
Eric Andersen79757c92001-04-05 21:45:54 +0000336 got_clen = 1;
337 continue;
338 }
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000339 if (key == KEY_transfer_encoding) {
340 if (index_in_str_array(keywords, str_tolower(str)) + 1 != KEY_chunked)
341 bb_error_msg_and_die("server wants to do %s transfer encoding", str);
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000342 chunked = got_clen = 1;
Eric Andersen6d7fa432001-04-10 18:17:05 +0000343 }
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000344 if (key == KEY_location) {
345 if (str[0] == '/')
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000346 /* free(target.allocated); */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000347 target.path = /* target.allocated = */ xstrdup(str+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000348 else {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000349 parse_url(str, &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000350 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000351 server.host = target.host;
352 server.port = target.port;
353 }
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000354 free(lsa);
Denis Vlasenko42823d52007-02-04 02:39:08 +0000355 lsa = xhost2sockaddr(server.host, server.port);
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000356 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000357 }
358 }
359 }
Denis Vlasenko3469c182006-12-16 22:19:47 +0000360 } while (status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000361
Eric Andersen79757c92001-04-05 21:45:54 +0000362 dfp = sfp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000363
364 } else {
365
Eric Andersen79757c92001-04-05 21:45:54 +0000366 /*
367 * FTP session
368 */
Denis Vlasenko3526a132006-09-09 12:20:57 +0000369 if (!target.user)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000370 target.user = xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000371
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000372 sfp = open_socket(lsa);
Eric Andersen79757c92001-04-05 21:45:54 +0000373 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000374 bb_error_msg_and_die("%s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000375
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000376 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000377 * Splitting username:password pair,
378 * trying to log in
379 */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000380 str = strchr(target.user, ':');
381 if (str)
382 *(str++) = '\0';
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000383 switch (ftpcmd("USER ", target.user, sfp, buf)) {
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000384 case 230:
385 break;
386 case 331:
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000387 if (ftpcmd("PASS ", str, sfp, buf) == 230)
Eric Andersenb520e082000-10-03 00:21:45 +0000388 break;
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000389 /* FALLTHRU (failed login) */
390 default:
391 bb_error_msg_and_die("ftp login: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000392 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000393
Eric Andersen79757c92001-04-05 21:45:54 +0000394 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000395
Eric Andersen79757c92001-04-05 21:45:54 +0000396 /*
397 * Querying file size
398 */
Rob Landleyaf12cb32006-06-27 18:41:03 +0000399 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
Denis Vlasenkod686a042006-11-27 14:43:21 +0000400 content_len = BB_STRTOOFF(buf+4, NULL, 10);
401 if (errno || content_len < 0) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000402 bb_error_msg_and_die("SIZE value is garbage");
Eric Andersen24794452004-03-06 22:11:45 +0000403 }
Eric Andersen96700832000-09-04 15:15:55 +0000404 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000405 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000406
Eric Andersen79757c92001-04-05 21:45:54 +0000407 /*
408 * Entering passive mode
409 */
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000410 if (ftpcmd("PASV", NULL, sfp, buf) != 227) {
411 pasv_error:
412 bb_error_msg_and_die("bad response to %s: %s", "PASV", buf);
413 }
Denis Vlasenkof8c8bb12006-11-21 19:10:26 +0000414 // Response is "227 garbageN1,N2,N3,N4,P1,P2[)garbage]
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000415 // Server's IP is N1.N2.N3.N4 (we ignore it)
416 // Server's port for data connection is P1*256+P2
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000417 str = strrchr(buf, ')');
418 if (str) str[0] = '\0';
419 str = strrchr(buf, ',');
420 if (!str) goto pasv_error;
421 port = xatou_range(str+1, 0, 255);
422 *str = '\0';
423 str = strrchr(buf, ',');
424 if (!str) goto pasv_error;
425 port += xatou_range(str+1, 0, 255) * 256;
Denis Vlasenko5d687242007-01-12 20:59:31 +0000426 set_nport(lsa, htons(port));
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000427 dfp = open_socket(lsa);
Eric Andersen79757c92001-04-05 21:45:54 +0000428
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000429 if (beg_range) {
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000430 sprintf(buf, "REST %"OFF_FMT"d", beg_range);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000431 if (ftpcmd(buf, NULL, sfp, buf) == 350)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000432 content_len -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000433 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000434
Rob Landleyaf12cb32006-06-27 18:41:03 +0000435 if (ftpcmd("RETR ", target.path, sfp, buf) > 150)
Denis Vlasenkod686a042006-11-27 14:43:21 +0000436 bb_error_msg_and_die("bad response to RETR: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000437 }
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000438 if (opt & WGET_OPT_SPIDER) {
439 if (ENABLE_FEATURE_CLEAN_UP)
440 fclose(sfp);
441 goto done;
442 }
Eric Andersen79757c92001-04-05 21:45:54 +0000443
Eric Andersen96700832000-09-04 15:15:55 +0000444 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000445 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000446 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000447 if (chunked) {
448 fgets(buf, sizeof(buf), dfp);
Denis Vlasenkod686a042006-11-27 14:43:21 +0000449 content_len = STRTOOFF(buf, NULL, 16);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000450 /* FIXME: error check?? */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000451 }
Rob Landley19a39402006-06-13 17:10:26 +0000452
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000453 /* Do it before progressmeter (want to have nice error message) */
454 if (output_fd < 0)
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000455 output_fd = xopen(fname_out,
456 O_WRONLY|O_CREAT|O_EXCL|O_TRUNC);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000457
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000458 if (!(opt & WGET_OPT_QUIET))
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000459 progressmeter(-1);
Rob Landley19a39402006-06-13 17:10:26 +0000460
Mark Whitley30ac01c2001-04-17 18:13:16 +0000461 do {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000462 while (content_len > 0 || !got_clen) {
Denis Vlasenko3526a132006-09-09 12:20:57 +0000463 unsigned rdsz = sizeof(buf);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000464 if (content_len < sizeof(buf) && (chunked || got_clen))
465 rdsz = (unsigned)content_len;
Denis Vlasenko12d21292007-06-27 21:40:07 +0000466 n = safe_fread(buf, rdsz, dfp);
Denis Vlasenko3526a132006-09-09 12:20:57 +0000467 if (n <= 0)
468 break;
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000469 if (full_write(output_fd, buf, n) != n) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000470 bb_perror_msg_and_die(bb_msg_write_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000471 }
Denis Vlasenko9cade082006-11-21 10:43:02 +0000472#if ENABLE_FEATURE_WGET_STATUSBAR
Rob Landley19a39402006-06-13 17:10:26 +0000473 transferred += n;
Eric Andersenb520e082000-10-03 00:21:45 +0000474#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000475 if (got_clen) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000476 content_len -= n;
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000477 }
478 }
Eric Andersen79757c92001-04-05 21:45:54 +0000479
Eric Andersen6d7fa432001-04-10 18:17:05 +0000480 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000481 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
482 safe_fgets(buf, sizeof(buf), dfp);
Denis Vlasenkod686a042006-11-27 14:43:21 +0000483 content_len = STRTOOFF(buf, NULL, 16);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000484 /* FIXME: error check? */
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000485 if (content_len == 0) {
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000486 chunked = 0; /* all done! */
487 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000488 }
489
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000490 if (n == 0 && ferror(dfp)) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000491 bb_perror_msg_and_die(bb_msg_read_error);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000492 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000493 } while (chunked);
Rob Landley19a39402006-06-13 17:10:26 +0000494
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000495 if (!(opt & WGET_OPT_QUIET))
Mark Whitley30ac01c2001-04-17 18:13:16 +0000496 progressmeter(1);
Rob Landley19a39402006-06-13 17:10:26 +0000497
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000498 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000499 fclose(dfp);
500 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000501 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000502 ftpcmd("QUIT", NULL, sfp, buf);
503 }
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000504done:
Eric Andersen79757c92001-04-05 21:45:54 +0000505 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000506}
507
508
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000509static void parse_url(char *src_url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000510{
Denis Vlasenko3469c182006-12-16 22:19:47 +0000511 char *url, *p, *sp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000512
513 /* h->allocated = */ url = xstrdup(src_url);
Eric Andersen96700832000-09-04 15:15:55 +0000514
Eric Andersen79757c92001-04-05 21:45:54 +0000515 if (strncmp(url, "http://", 7) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000516 h->port = bb_lookup_port("http", "tcp", 80);
Eric Andersen79757c92001-04-05 21:45:54 +0000517 h->host = url + 7;
518 h->is_ftp = 0;
519 } else if (strncmp(url, "ftp://", 6) == 0) {
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000520 h->port = bb_lookup_port("ftp", "tcp", 21);
Eric Andersen79757c92001-04-05 21:45:54 +0000521 h->host = url + 6;
522 h->is_ftp = 1;
523 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000524 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000525
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000526 // FYI:
527 // "Real" wget 'http://busybox.net?var=a/b' sends this request:
528 // 'GET /?var=a/b HTTP 1.0'
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000529 // and saves 'index.html?var=a%2Fb' (we save 'b')
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000530 // wget 'http://busybox.net?login=john@doe':
531 // request: 'GET /?login=john@doe HTTP/1.0'
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000532 // saves: 'index.html?login=john@doe' (we save '?login=john@doe')
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000533 // wget 'http://busybox.net#test/test':
534 // request: 'GET / HTTP/1.0'
535 // saves: 'index.html' (we save 'test')
536 //
537 // We also don't add unique .N suffix if file exists...
Eric Andersen79757c92001-04-05 21:45:54 +0000538 sp = strchr(h->host, '/');
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000539 p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
540 p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
541 if (!sp) {
Denis Vlasenkode55b5d2007-02-01 01:53:25 +0000542 /* must be writable because of bb_get_last_path_component() */
Denis Vlasenkoafe488d2007-01-28 16:07:45 +0000543 static char nullstr[] = "";
544 h->path = nullstr;
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000545 } else if (*sp == '/') {
Denis Vlasenko3469c182006-12-16 22:19:47 +0000546 *sp = '\0';
547 h->path = sp + 1;
Denis Vlasenkoa6551522006-10-07 14:28:28 +0000548 } else { // '#' or '?'
549 // http://busybox.net?login=john@doe is a valid URL
550 // memmove converts to:
551 // http:/busybox.nett?login=john@doe...
552 memmove(h->host-1, h->host, sp - h->host);
553 h->host--;
554 sp[-1] = '\0';
555 h->path = sp;
556 }
Eric Andersen79757c92001-04-05 21:45:54 +0000557
Denis Vlasenko3469c182006-12-16 22:19:47 +0000558 sp = strrchr(h->host, '@');
559 h->user = NULL;
560 if (sp != NULL) {
Eric Andersen79757c92001-04-05 21:45:54 +0000561 h->user = h->host;
Denis Vlasenko3469c182006-12-16 22:19:47 +0000562 *sp = '\0';
563 h->host = sp + 1;
564 }
Eric Andersen79757c92001-04-05 21:45:54 +0000565
Denis Vlasenko3469c182006-12-16 22:19:47 +0000566 sp = h->host;
Eric Andersen96700832000-09-04 15:15:55 +0000567}
568
569
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000570static FILE *open_socket(len_and_sockaddr *lsa)
Eric Andersen96700832000-09-04 15:15:55 +0000571{
Eric Andersen96700832000-09-04 15:15:55 +0000572 FILE *fp;
573
Denis Vlasenko067e3f02006-11-10 23:25:53 +0000574 /* glibc 2.4 seems to try seeking on it - ??! */
575 /* hopefully it understands what ESPIPE means... */
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000576 fp = fdopen(xconnect_stream(lsa), "r+");
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000577 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 */
Denis Vlasenko40f62a82006-11-21 11:04:31 +0000596 for (s = buf; *s == '\r'; ++s)
Eric Andersen96700832000-09-04 15:15:55 +0000597 ;
598 if (s[0] == '\n')
599 return NULL;
600
601 /* convert the header name to lower case */
Denis Vlasenko40f62a82006-11-21 11:04:31 +0000602 for (s = buf; isalnum(*s) || *s == '-'; ++s)
Eric Andersen96700832000-09-04 15:15:55 +0000603 *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 */
Denis Vlasenko40f62a82006-11-21 11:04:31 +0000610 for (*s++ = '\0'; *s == ' ' || *s == '\t'; ++s)
Eric Andersen96700832000-09-04 15:15:55 +0000611 ;
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
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000631static int ftpcmd(const char *s1, const char *s2, FILE *fp, char *buf)
Eric Andersen79757c92001-04-05 21:45:54 +0000632{
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000633 int result;
Eric Andersen79757c92001-04-05 21:45:54 +0000634 if (s1) {
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000635 if (!s2) s2 = "";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000636 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000637 fflush(fp);
638 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000639
Eric Andersen79757c92001-04-05 21:45:54 +0000640 do {
Glenn L McGrath32da8852004-04-08 10:27:11 +0000641 char *buf_ptr;
642
643 if (fgets(buf, 510, fp) == NULL) {
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000644 bb_perror_msg_and_die("error getting response");
Glenn L McGrath32da8852004-04-08 10:27:11 +0000645 }
646 buf_ptr = strstr(buf, "\r\n");
647 if (buf_ptr) {
648 *buf_ptr = '\0';
649 }
Denis Vlasenko3526a132006-09-09 12:20:57 +0000650 } while (!isdigit(buf[0]) || buf[3] != ' ');
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000651
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000652 buf[3] = '\0';
653 result = xatoi_u(buf);
654 buf[3] = ' ';
655 return result;
Eric Andersen79757c92001-04-05 21:45:54 +0000656}
657
Denis Vlasenko9cade082006-11-21 10:43:02 +0000658#if ENABLE_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000659/* Stuff below is from BSD rcp util.c, as added to openshh.
Eric Andersen4e573f42000-11-14 23:29:24 +0000660 * Original copyright notice is retained at the end of this file.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000661 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000662static int
Eric Andersenb520e082000-10-03 00:21:45 +0000663getttywidth(void)
664{
Denis Vlasenko9cade082006-11-21 10:43:02 +0000665 int width;
Eric Andersen8efe9672003-09-15 08:33:45 +0000666 get_terminal_width_height(0, &width, NULL);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000667 return width;
Eric Andersenb520e082000-10-03 00:21:45 +0000668}
669
Eric Andersen3e6ff902001-03-09 21:24:12 +0000670static void
Eric Andersenb520e082000-10-03 00:21:45 +0000671updateprogressmeter(int ignore)
672{
673 int save_errno = errno;
674
675 progressmeter(0);
676 errno = save_errno;
677}
678
Rob Landleyc9c1a412006-07-12 19:17:55 +0000679static void alarmtimer(int iwait)
Eric Andersenb520e082000-10-03 00:21:45 +0000680{
681 struct itimerval itv;
682
Rob Landleyc9c1a412006-07-12 19:17:55 +0000683 itv.it_value.tv_sec = iwait;
Eric Andersenb520e082000-10-03 00:21:45 +0000684 itv.it_value.tv_usec = 0;
685 itv.it_interval = itv.it_value;
686 setitimer(ITIMER_REAL, &itv, NULL);
687}
688
Eric Andersen3e6ff902001-03-09 21:24:12 +0000689static void
Eric Andersenb520e082000-10-03 00:21:45 +0000690progressmeter(int flag)
691{
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000692 static unsigned lastupdate_sec;
693 static unsigned start_sec;
Denis Vlasenko7039a662006-10-08 17:54:47 +0000694 static off_t lastsize, totalsize;
Rob Landley19a39402006-06-13 17:10:26 +0000695
Denis Vlasenko7039a662006-10-08 17:54:47 +0000696 off_t abbrevsize;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000697 unsigned since_last_update, elapsed;
698 unsigned ratio;
699 int barlength, i;
Eric Andersenb520e082000-10-03 00:21:45 +0000700
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000701 if (flag == -1) { /* first call to progressmeter */
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000702 start_sec = monotonic_sec();
703 lastupdate_sec = start_sec;
Eric Andersenb520e082000-10-03 00:21:45 +0000704 lastsize = 0;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000705 totalsize = content_len + beg_range; /* as content_len changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000706 }
707
Rob Landley19a39402006-06-13 17:10:26 +0000708 ratio = 100;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000709 if (totalsize != 0 && !chunked) {
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000710 /* long long helps to have it working even if !LFS */
711 ratio = (unsigned) (100ULL * (transferred+beg_range) / totalsize);
712 if (ratio > 100) ratio = 100;
Rob Landley19a39402006-06-13 17:10:26 +0000713 }
Eric Andersenb520e082000-10-03 00:21:45 +0000714
Rob Landley19a39402006-06-13 17:10:26 +0000715 fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
Eric Andersenb520e082000-10-03 00:21:45 +0000716
Denis Vlasenko76791452007-06-18 08:55:57 +0000717 barlength = getttywidth() - 49;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000718 if (barlength > 0) {
719 /* god bless gcc for variable arrays :) */
Eric Andersenb520e082000-10-03 00:21:45 +0000720 i = barlength * ratio / 100;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000721 {
722 char buf[i+1];
723 memset(buf, '*', i);
724 buf[i] = '\0';
725 fprintf(stderr, "|%s%*s|", buf, barlength - i, "");
726 }
Eric Andersenb520e082000-10-03 00:21:45 +0000727 }
728 i = 0;
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000729 abbrevsize = transferred + beg_range;
Rob Landley19a39402006-06-13 17:10:26 +0000730 while (abbrevsize >= 100000) {
Eric Andersenb520e082000-10-03 00:21:45 +0000731 i++;
732 abbrevsize >>= 10;
733 }
Denis Vlasenko9cade082006-11-21 10:43:02 +0000734 /* see http://en.wikipedia.org/wiki/Tera */
Denis Vlasenko76791452007-06-18 08:55:57 +0000735 fprintf(stderr, "%6d%c ", (int)abbrevsize, " kMGTPEZY"[i]);
Eric Andersenb520e082000-10-03 00:21:45 +0000736
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000737// Nuts! Ain't it easier to update progress meter ONLY when we transferred++?
738// FIXME: get rid of alarmtimer + updateprogressmeter mess
Eric Andersenb520e082000-10-03 00:21:45 +0000739
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000740 elapsed = monotonic_sec();
741 since_last_update = elapsed - lastupdate_sec;
742 if (transferred > lastsize) {
743 lastupdate_sec = elapsed;
744 lastsize = transferred;
745 if (since_last_update >= STALLTIME) {
746 /* We "cut off" these seconds from elapsed time
747 * by adjusting start time */
748 start_sec += since_last_update;
749 }
750 since_last_update = 0; /* we are un-stalled now */
751 }
752 elapsed -= start_sec; /* now it's "elapsed since start" */
753
754 if (since_last_update >= STALLTIME) {
Rob Landley19a39402006-06-13 17:10:26 +0000755 fprintf(stderr, " - stalled -");
Eric Andersenb520e082000-10-03 00:21:45 +0000756 } else {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000757 off_t to_download = totalsize - beg_range;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000758 if (transferred <= 0 || (int)elapsed <= 0 || transferred > to_download || chunked) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000759 fprintf(stderr, "--:--:-- ETA");
760 } else {
761 /* to_download / (transferred/elapsed) - elapsed: */
Denis Vlasenko9cade082006-11-21 10:43:02 +0000762 int eta = (int) ((unsigned long long)to_download*elapsed/transferred - elapsed);
763 /* (long long helps to have working ETA even if !LFS) */
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000764 i = eta % 3600;
765 fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
766 }
Eric Andersenb520e082000-10-03 00:21:45 +0000767 }
Eric Andersenb520e082000-10-03 00:21:45 +0000768
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000769 if (flag == -1) { /* first call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000770 struct sigaction sa;
771 sa.sa_handler = updateprogressmeter;
772 sigemptyset(&sa.sa_mask);
773 sa.sa_flags = SA_RESTART;
774 sigaction(SIGALRM, &sa, NULL);
775 alarmtimer(1);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000776 } else if (flag == 1) { /* last call to progressmeter */
Eric Andersenb520e082000-10-03 00:21:45 +0000777 alarmtimer(0);
Rob Landley19a39402006-06-13 17:10:26 +0000778 transferred = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000779 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000780 }
781}
Denis Vlasenko12d21292007-06-27 21:40:07 +0000782#endif /* FEATURE_WGET_STATUSBAR */
Eric Andersen4e573f42000-11-14 23:29:24 +0000783
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000784/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersenaff114c2004-04-14 17:51:38 +0000785 * much of which was blatantly stolen from openssh. */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000786
Eric Andersen4e573f42000-11-14 23:29:24 +0000787/*-
788 * Copyright (c) 1992, 1993
789 * The Regents of the University of California. All rights reserved.
790 *
791 * Redistribution and use in source and binary forms, with or without
792 * modification, are permitted provided that the following conditions
793 * are met:
794 * 1. Redistributions of source code must retain the above copyright
795 * notice, this list of conditions and the following disclaimer.
796 * 2. Redistributions in binary form must reproduce the above copyright
797 * notice, this list of conditions and the following disclaimer in the
798 * documentation and/or other materials provided with the distribution.
799 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000800 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
801 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000802 *
803 * 4. Neither the name of the University nor the names of its contributors
804 * may be used to endorse or promote products derived from this software
805 * without specific prior written permission.
806 *
807 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
808 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
809 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
810 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
811 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
812 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
813 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
814 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
815 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
816 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
817 * SUCH DAMAGE.
818 *
Eric Andersen4e573f42000-11-14 23:29:24 +0000819 */