blob: 071cd94c79aafa81d1bd2442f86018a7d6c4359d [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>
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2, see file LICENSE in this source tree.
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +02007 *
8 * Copyright (C) 2010 Bradley M. Kuhn <bkuhn@ebb.org>
Denys Vlasenkofb132e42010-10-29 11:46:52 +02009 * Kuhn's copyrights are licensed GPLv2-or-later. File as a whole remains GPLv2.
Eric Andersen96700832000-09-04 15:15:55 +000010 */
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +010011
12//usage:#define wget_trivial_usage
13//usage: IF_FEATURE_WGET_LONG_OPTIONS(
14//usage: "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document FILE]\n"
15//usage: " [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n"
Tanguy Pruvot823694d2012-11-18 13:20:29 +010016/* Since we ignore these opts, we don't show them in --help */
17/* //usage: " [--no-check-certificate] [--no-cache]" */
18//usage: " [-U|--user-agent AGENT]" IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..."
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +010019//usage: )
20//usage: IF_NOT_FEATURE_WGET_LONG_OPTIONS(
21//usage: "[-csq] [-O FILE] [-Y on/off] [-P DIR] [-U AGENT]"
22//usage: IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..."
23//usage: )
24//usage:#define wget_full_usage "\n\n"
25//usage: "Retrieve files via HTTP or FTP\n"
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +010026//usage: "\n -s Spider mode - only check file existence"
27//usage: "\n -c Continue retrieval of aborted transfer"
28//usage: "\n -q Quiet"
29//usage: "\n -P DIR Save to DIR (default .)"
30//usage: IF_FEATURE_WGET_TIMEOUT(
31//usage: "\n -T SEC Network read timeout is SEC seconds"
32//usage: )
33//usage: "\n -O FILE Save to FILE ('-' for stdout)"
34//usage: "\n -U STR Use STR for User-Agent header"
35//usage: "\n -Y Use proxy ('on' or 'off')"
36
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000037#include "libbb.h"
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000038
Tanguy Pruvot823694d2012-11-18 13:20:29 +010039#if 0
40# define log_io(...) bb_error_msg(__VA_ARGS__)
41#else
42# define log_io(...) ((void)0)
43#endif
Denys Vlasenkof836f012011-02-10 23:02:28 +010044
45
Eric Andersen79757c92001-04-05 21:45:54 +000046struct host_info {
Denys Vlasenkoa3661092011-02-13 02:33:11 +010047 char *allocated;
Denis Vlasenko818322b2007-09-24 18:27:04 +000048 const char *path;
49 const char *user;
50 char *host;
51 int port;
52 smallint is_ftp;
Eric Andersen79757c92001-04-05 21:45:54 +000053};
54
Denis Vlasenko77105632007-09-24 15:04:00 +000055
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020056/* Globals */
Denis Vlasenko77105632007-09-24 15:04:00 +000057struct globals {
58 off_t content_len; /* Content-length of the file */
59 off_t beg_range; /* Range at which continue begins */
60#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenko77105632007-09-24 15:04:00 +000061 off_t transferred; /* Number of bytes transferred so far */
62 const char *curfile; /* Name of current file being transferred */
Magnus Dammf5914992009-11-08 16:34:43 +010063 bb_progress_t pmt;
Denis Vlasenko77105632007-09-24 15:04:00 +000064#endif
Denys Vlasenkoa3661092011-02-13 02:33:11 +010065 char *dir_prefix;
66#if ENABLE_FEATURE_WGET_LONG_OPTIONS
67 char *post_data;
68 char *extra_headers;
69#endif
70 char *fname_out; /* where to direct output (-O) */
71 const char *proxy_flag; /* Use proxies if env vars are set */
72 const char *user_agent; /* "User-Agent" header field */
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020073#if ENABLE_FEATURE_WGET_TIMEOUT
74 unsigned timeout_seconds;
75#endif
Denys Vlasenko2384a352011-02-15 00:58:36 +010076 int output_fd;
77 int o_flags;
Denys Vlasenko7f432802009-06-28 01:02:24 +020078 smallint chunked; /* chunked transfer encoding */
79 smallint got_clen; /* got content-length: from server */
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +010080 /* Local downloads do benefit from big buffer.
81 * With 512 byte buffer, it was measured to be
82 * an order of magnitude slower than with big one.
83 */
84 uint64_t just_to_align_next_member;
85 char wget_buf[CONFIG_FEATURE_COPYBUF_KB*1024];
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010086} FIX_ALIASING;
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +010087#define G (*ptr_to_globals)
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020088#define INIT_G() do { \
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +010089 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020090 IF_FEATURE_WGET_TIMEOUT(G.timeout_seconds = 900;) \
91} while (0)
Denis Vlasenko77105632007-09-24 15:04:00 +000092
93
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020094/* Must match option string! */
95enum {
96 WGET_OPT_CONTINUE = (1 << 0),
Denys Vlasenkofb132e42010-10-29 11:46:52 +020097 WGET_OPT_SPIDER = (1 << 1),
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020098 WGET_OPT_QUIET = (1 << 2),
99 WGET_OPT_OUTNAME = (1 << 3),
100 WGET_OPT_PREFIX = (1 << 4),
101 WGET_OPT_PROXY = (1 << 5),
102 WGET_OPT_USER_AGENT = (1 << 6),
103 WGET_OPT_NETWORK_READ_TIMEOUT = (1 << 7),
104 WGET_OPT_RETRIES = (1 << 8),
105 WGET_OPT_PASSIVE = (1 << 9),
106 WGET_OPT_HEADER = (1 << 10) * ENABLE_FEATURE_WGET_LONG_OPTIONS,
107 WGET_OPT_POST_DATA = (1 << 11) * ENABLE_FEATURE_WGET_LONG_OPTIONS,
108};
109
110enum {
111 PROGRESS_START = -1,
112 PROGRESS_END = 0,
113 PROGRESS_BUMP = 1,
114};
Denis Vlasenko9cade082006-11-21 10:43:02 +0000115#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenko00d84172008-11-24 07:34:42 +0000116static void progress_meter(int flag)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000117{
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200118 if (option_mask32 & WGET_OPT_QUIET)
119 return;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000120
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200121 if (flag == PROGRESS_START)
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100122 bb_progress_init(&G.pmt, G.curfile);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000123
Denys Vlasenko2384a352011-02-15 00:58:36 +0100124 bb_progress_update(&G.pmt,
125 G.beg_range,
126 G.transferred,
127 (G.chunked || !G.got_clen) ? 0 : G.beg_range + G.transferred + G.content_len
128 );
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000129
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200130 if (flag == PROGRESS_END) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100131 bb_progress_free(&G.pmt);
Denys Vlasenko19ced5c2010-06-06 21:53:09 +0200132 bb_putchar_stderr('\n');
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100133 G.transferred = 0;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000134 }
135}
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200136#else
Denis Vlasenko00d84172008-11-24 07:34:42 +0000137static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) { }
Eric Andersenb520e082000-10-03 00:21:45 +0000138#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000139
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000140
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +0200141/* IPv6 knows scoped address types i.e. link and site local addresses. Link
142 * local addresses can have a scope identifier to specify the
143 * interface/link an address is valid on (e.g. fe80::1%eth0). This scope
144 * identifier is only valid on a single node.
145 *
146 * RFC 4007 says that the scope identifier MUST NOT be sent across the wire,
147 * unless all nodes agree on the semantic. Apache e.g. regards zone identifiers
148 * in the Host header as invalid requests, see
149 * https://issues.apache.org/bugzilla/show_bug.cgi?id=35122
150 */
151static void strip_ipv6_scope_id(char *host)
152{
153 char *scope, *cp;
154
155 /* bbox wget actually handles IPv6 addresses without [], like
156 * wget "http://::1/xxx", but this is not standard.
157 * To save code, _here_ we do not support it. */
158
159 if (host[0] != '[')
160 return; /* not IPv6 */
161
162 scope = strchr(host, '%');
163 if (!scope)
164 return;
165
166 /* Remove the IPv6 zone identifier from the host address */
167 cp = strchr(host, ']');
168 if (!cp || (cp[1] != ':' && cp[1] != '\0')) {
169 /* malformed address (not "[xx]:nn" or "[xx]") */
170 return;
171 }
172
173 /* cp points to "]...", scope points to "%eth0]..." */
174 overlapping_strcpy(scope, cp);
175}
176
Denis Vlasenko9cade082006-11-21 10:43:02 +0000177#if ENABLE_FEATURE_WGET_AUTHENTICATION
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100178/* Base64-encode character string. */
179static char *base64enc(const char *str)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000180{
Denis Vlasenko12d21292007-06-27 21:40:07 +0000181 unsigned len = strlen(str);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100182 if (len > sizeof(G.wget_buf)/4*3 - 10) /* paranoia */
183 len = sizeof(G.wget_buf)/4*3 - 10;
184 bb_uuencode(G.wget_buf, str, len, bb_uuenc_tbl_base64);
185 return G.wget_buf;
Eric Andersen79757c92001-04-05 21:45:54 +0000186}
187#endif
188
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200189static char* sanitize_string(char *s)
190{
191 unsigned char *p = (void *) s;
192 while (*p >= ' ')
193 p++;
194 *p = '\0';
195 return s;
196}
197
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000198static FILE *open_socket(len_and_sockaddr *lsa)
199{
200 FILE *fp;
201
202 /* glibc 2.4 seems to try seeking on it - ??! */
203 /* hopefully it understands what ESPIPE means... */
204 fp = fdopen(xconnect_stream(lsa), "r+");
205 if (fp == NULL)
Tanguy Pruvot8aeb3712011-06-30 08:59:26 +0200206 bb_perror_msg_and_die("%s", bb_msg_memory_exhausted);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000207
208 return fp;
209}
210
Denys Vlasenkof836f012011-02-10 23:02:28 +0100211/* Returns '\n' if it was seen, else '\0'. Trims at first '\r' or '\n' */
212static char fgets_and_trim(FILE *fp)
213{
214 char c;
215 char *buf_ptr;
216
217 if (fgets(G.wget_buf, sizeof(G.wget_buf) - 1, fp) == NULL)
218 bb_perror_msg_and_die("error getting response");
219
220 buf_ptr = strchrnul(G.wget_buf, '\n');
221 c = *buf_ptr;
222 *buf_ptr = '\0';
223 buf_ptr = strchrnul(G.wget_buf, '\r');
224 *buf_ptr = '\0';
225
226 log_io("< %s", G.wget_buf);
227
228 return c;
229}
230
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100231static int ftpcmd(const char *s1, const char *s2, FILE *fp)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000232{
233 int result;
234 if (s1) {
Denys Vlasenkof836f012011-02-10 23:02:28 +0100235 if (!s2)
236 s2 = "";
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000237 fprintf(fp, "%s%s\r\n", s1, s2);
238 fflush(fp);
Denys Vlasenkof836f012011-02-10 23:02:28 +0100239 log_io("> %s%s", s1, s2);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000240 }
241
242 do {
Denys Vlasenkof836f012011-02-10 23:02:28 +0100243 fgets_and_trim(fp);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100244 } while (!isdigit(G.wget_buf[0]) || G.wget_buf[3] != ' ');
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000245
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100246 G.wget_buf[3] = '\0';
247 result = xatoi_positive(G.wget_buf);
248 G.wget_buf[3] = ' ';
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000249 return result;
250}
251
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100252static void parse_url(const char *src_url, struct host_info *h)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000253{
254 char *url, *p, *sp;
255
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100256 free(h->allocated);
257 h->allocated = url = xstrdup(src_url);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000258
259 if (strncmp(url, "http://", 7) == 0) {
260 h->port = bb_lookup_port("http", "tcp", 80);
261 h->host = url + 7;
262 h->is_ftp = 0;
263 } else if (strncmp(url, "ftp://", 6) == 0) {
264 h->port = bb_lookup_port("ftp", "tcp", 21);
265 h->host = url + 6;
266 h->is_ftp = 1;
267 } else
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200268 bb_error_msg_and_die("not an http or ftp url: %s", sanitize_string(url));
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000269
270 // FYI:
271 // "Real" wget 'http://busybox.net?var=a/b' sends this request:
272 // 'GET /?var=a/b HTTP 1.0'
273 // and saves 'index.html?var=a%2Fb' (we save 'b')
274 // wget 'http://busybox.net?login=john@doe':
275 // request: 'GET /?login=john@doe HTTP/1.0'
276 // saves: 'index.html?login=john@doe' (we save '?login=john@doe')
277 // wget 'http://busybox.net#test/test':
278 // request: 'GET / HTTP/1.0'
279 // saves: 'index.html' (we save 'test')
280 //
281 // We also don't add unique .N suffix if file exists...
282 sp = strchr(h->host, '/');
283 p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
284 p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
285 if (!sp) {
Denis Vlasenko818322b2007-09-24 18:27:04 +0000286 h->path = "";
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000287 } else if (*sp == '/') {
288 *sp = '\0';
289 h->path = sp + 1;
290 } else { // '#' or '?'
291 // http://busybox.net?login=john@doe is a valid URL
292 // memmove converts to:
293 // http:/busybox.nett?login=john@doe...
Denis Vlasenko818322b2007-09-24 18:27:04 +0000294 memmove(h->host - 1, h->host, sp - h->host);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000295 h->host--;
296 sp[-1] = '\0';
297 h->path = sp;
298 }
299
Vladimir Dronnikovbe168b12009-10-05 02:18:01 +0200300 // We used to set h->user to NULL here, but this interferes
301 // with handling of code 302 ("object was moved")
302
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000303 sp = strrchr(h->host, '@');
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000304 if (sp != NULL) {
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200305 // URL-decode "user:password" string before base64-encoding:
306 // wget http://test:my%20pass@example.com should send
307 // Authorization: Basic dGVzdDpteSBwYXNz
308 // which decodes to "test:my pass".
309 // Standard wget and curl do this too.
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000310 *sp = '\0';
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200311 h->user = percent_decode_in_place(h->host, /*strict:*/ 0);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000312 h->host = sp + 1;
313 }
314
315 sp = h->host;
316}
317
Denys Vlasenkof836f012011-02-10 23:02:28 +0100318static char *gethdr(FILE *fp)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000319{
320 char *s, *hdrval;
321 int c;
322
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000323 /* retrieve header line */
Denys Vlasenkof836f012011-02-10 23:02:28 +0100324 c = fgets_and_trim(fp);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000325
Denys Vlasenkof836f012011-02-10 23:02:28 +0100326 /* end of the headers? */
327 if (G.wget_buf[0] == '\0')
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000328 return NULL;
329
330 /* convert the header name to lower case */
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100331 for (s = G.wget_buf; isalnum(*s) || *s == '-' || *s == '.'; ++s) {
Denys Vlasenko48363312010-04-04 15:29:32 +0200332 /* tolower for "A-Z", no-op for "0-9a-z-." */
Denys Vlasenkof836f012011-02-10 23:02:28 +0100333 *s |= 0x20;
Denys Vlasenko48363312010-04-04 15:29:32 +0200334 }
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000335
336 /* verify we are at the end of the header name */
337 if (*s != ':')
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100338 bb_error_msg_and_die("bad header line: %s", sanitize_string(G.wget_buf));
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000339
340 /* locate the start of the header value */
341 *s++ = '\0';
342 hdrval = skip_whitespace(s);
343
Denys Vlasenkof836f012011-02-10 23:02:28 +0100344 if (c != '\n') {
345 /* Rats! The buffer isn't big enough to hold the entire header value */
346 while (c = getc(fp), c != EOF && c != '\n')
347 continue;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000348 }
349
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000350 return hdrval;
351}
352
Denys Vlasenko6030af92012-06-13 17:31:07 +0200353static void reset_beg_range_to_zero(void)
354{
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100355 bb_error_msg("restart failed");
Denys Vlasenko6030af92012-06-13 17:31:07 +0200356 G.beg_range = 0;
357 xlseek(G.output_fd, 0, SEEK_SET);
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100358 /* Done at the end instead: */
359 /* ftruncate(G.output_fd, 0); */
Denys Vlasenko6030af92012-06-13 17:31:07 +0200360}
361
Denys Vlasenko7f432802009-06-28 01:02:24 +0200362static FILE* prepare_ftp_session(FILE **dfpp, struct host_info *target, len_and_sockaddr *lsa)
363{
Denys Vlasenko7f432802009-06-28 01:02:24 +0200364 FILE *sfp;
365 char *str;
366 int port;
367
368 if (!target->user)
369 target->user = xstrdup("anonymous:busybox@");
370
371 sfp = open_socket(lsa);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100372 if (ftpcmd(NULL, NULL, sfp) != 220)
373 bb_error_msg_and_die("%s", sanitize_string(G.wget_buf + 4));
Denys Vlasenko7f432802009-06-28 01:02:24 +0200374
375 /*
376 * Splitting username:password pair,
377 * trying to log in
378 */
379 str = strchr(target->user, ':');
380 if (str)
381 *str++ = '\0';
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100382 switch (ftpcmd("USER ", target->user, sfp)) {
Denys Vlasenko7f432802009-06-28 01:02:24 +0200383 case 230:
384 break;
385 case 331:
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100386 if (ftpcmd("PASS ", str, sfp) == 230)
Denys Vlasenko7f432802009-06-28 01:02:24 +0200387 break;
388 /* fall through (failed login) */
389 default:
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100390 bb_error_msg_and_die("ftp login: %s", sanitize_string(G.wget_buf + 4));
Denys Vlasenko7f432802009-06-28 01:02:24 +0200391 }
392
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100393 ftpcmd("TYPE I", NULL, sfp);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200394
395 /*
396 * Querying file size
397 */
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100398 if (ftpcmd("SIZE ", target->path, sfp) == 213) {
399 G.content_len = BB_STRTOOFF(G.wget_buf + 4, NULL, 10);
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100400 if (G.content_len < 0 || errno) {
Denys Vlasenko7f432802009-06-28 01:02:24 +0200401 bb_error_msg_and_die("SIZE value is garbage");
402 }
403 G.got_clen = 1;
404 }
405
406 /*
407 * Entering passive mode
408 */
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100409 if (ftpcmd("PASV", NULL, sfp) != 227) {
Denys Vlasenko7f432802009-06-28 01:02:24 +0200410 pasv_error:
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100411 bb_error_msg_and_die("bad response to %s: %s", "PASV", sanitize_string(G.wget_buf));
Denys Vlasenko7f432802009-06-28 01:02:24 +0200412 }
413 // Response is "227 garbageN1,N2,N3,N4,P1,P2[)garbage]
414 // Server's IP is N1.N2.N3.N4 (we ignore it)
415 // Server's port for data connection is P1*256+P2
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100416 str = strrchr(G.wget_buf, ')');
Denys Vlasenko7f432802009-06-28 01:02:24 +0200417 if (str) str[0] = '\0';
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100418 str = strrchr(G.wget_buf, ',');
Denys Vlasenko7f432802009-06-28 01:02:24 +0200419 if (!str) goto pasv_error;
420 port = xatou_range(str+1, 0, 255);
421 *str = '\0';
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100422 str = strrchr(G.wget_buf, ',');
Denys Vlasenko7f432802009-06-28 01:02:24 +0200423 if (!str) goto pasv_error;
424 port += xatou_range(str+1, 0, 255) * 256;
Denys Vlasenkoca183112011-04-07 17:52:20 +0200425 set_nport(&lsa->u.sa, htons(port));
Denys Vlasenko7f432802009-06-28 01:02:24 +0200426
427 *dfpp = open_socket(lsa);
428
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100429 if (G.beg_range != 0) {
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100430 sprintf(G.wget_buf, "REST %"OFF_FMT"u", G.beg_range);
431 if (ftpcmd(G.wget_buf, NULL, sfp) == 350)
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100432 G.content_len -= G.beg_range;
Denys Vlasenko6030af92012-06-13 17:31:07 +0200433 else
434 reset_beg_range_to_zero();
Denys Vlasenko7f432802009-06-28 01:02:24 +0200435 }
436
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100437 if (ftpcmd("RETR ", target->path, sfp) > 150)
438 bb_error_msg_and_die("bad response to %s: %s", "RETR", sanitize_string(G.wget_buf));
Denys Vlasenko7f432802009-06-28 01:02:24 +0200439
440 return sfp;
441}
442
Denys Vlasenko2384a352011-02-15 00:58:36 +0100443static void NOINLINE retrieve_file_data(FILE *dfp)
Denys Vlasenko7f432802009-06-28 01:02:24 +0200444{
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200445#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
446# if ENABLE_FEATURE_WGET_TIMEOUT
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100447 unsigned second_cnt = G.timeout_seconds;
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200448# endif
449 struct pollfd polldata;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200450
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200451 polldata.fd = fileno(dfp);
452 polldata.events = POLLIN | POLLPRI;
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200453#endif
454 progress_meter(PROGRESS_START);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200455
456 if (G.chunked)
457 goto get_clen;
458
459 /* Loops only if chunked */
460 while (1) {
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100461
462#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
463 /* Must use nonblocking I/O, otherwise fread will loop
464 * and *block* until it reads full buffer,
465 * which messes up progress bar and/or timeout logic.
466 * Because of nonblocking I/O, we need to dance
467 * very carefully around EAGAIN. See explanation at
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100468 * clearerr() calls.
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100469 */
470 ndelay_on(polldata.fd);
471#endif
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100472 while (1) {
Denys Vlasenko7f432802009-06-28 01:02:24 +0200473 int n;
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100474 unsigned rdsz;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200475
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200476#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
Denys Vlasenko8766a792011-02-11 21:42:00 +0100477 /* fread internally uses read loop, which in our case
478 * is usually exited when we get EAGAIN.
479 * In this case, libc sets error marker on the stream.
480 * Need to clear it before next fread to avoid possible
481 * rare false positive ferror below. Rare because usually
482 * fread gets more than zero bytes, and we don't fall
483 * into if (n <= 0) ...
484 */
485 clearerr(dfp);
Denys Vlasenkof9af3752011-02-11 22:01:33 +0100486#endif
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100487 errno = 0;
488 rdsz = sizeof(G.wget_buf);
489 if (G.got_clen) {
490 if (G.content_len < (off_t)sizeof(G.wget_buf)) {
491 if ((int)G.content_len <= 0)
492 break;
493 rdsz = (unsigned)G.content_len;
494 }
495 }
Denys Vlasenko0fac2f72011-02-10 09:55:05 +0100496 n = fread(G.wget_buf, 1, rdsz, dfp);
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100497
498 if (n > 0) {
499 xwrite(G.output_fd, G.wget_buf, n);
500#if ENABLE_FEATURE_WGET_STATUSBAR
501 G.transferred += n;
502#endif
503 if (G.got_clen) {
504 G.content_len -= n;
505 if (G.content_len == 0)
506 break;
507 }
508#if ENABLE_FEATURE_WGET_TIMEOUT
509 second_cnt = G.timeout_seconds;
510#endif
511 continue;
512 }
513
514 /* n <= 0.
515 * man fread:
Denys Vlasenko8766a792011-02-11 21:42:00 +0100516 * If error occurs, or EOF is reached, the return value
517 * is a short item count (or zero).
518 * fread does not distinguish between EOF and error.
519 */
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100520 if (errno != EAGAIN) {
521 if (ferror(dfp)) {
522 progress_meter(PROGRESS_END);
Tanguy Pruvotf7ae0a22011-07-04 05:30:48 +0200523 bb_perror_msg_and_die(bb_msg_read_error);
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100524 }
Denys Vlasenko8766a792011-02-11 21:42:00 +0100525 break; /* EOF, not error */
Denys Vlasenko7f432802009-06-28 01:02:24 +0200526 }
Denys Vlasenko8766a792011-02-11 21:42:00 +0100527
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100528#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
529 /* It was EAGAIN. There is no data. Wait up to one second
530 * then abort if timed out, or update the bar and try reading again.
531 */
532 if (safe_poll(&polldata, 1, 1000) == 0) {
533# if ENABLE_FEATURE_WGET_TIMEOUT
534 if (second_cnt != 0 && --second_cnt == 0) {
535 progress_meter(PROGRESS_END);
536 bb_error_msg_and_die("download timed out");
537 }
538# endif
539 /* We used to loop back to poll here,
540 * but there is no great harm in letting fread
541 * to try reading anyway.
542 */
543 }
544 /* Need to do it _every_ second for "stalled" indicator
545 * to be shown properly.
546 */
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200547 progress_meter(PROGRESS_BUMP);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200548#endif
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100549 } /* while (reading data) */
550
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100551#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
552 clearerr(dfp);
Denys Vlasenko88ad9da2011-02-11 23:06:21 +0100553 ndelay_off(polldata.fd); /* else fgets can get very unhappy */
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100554#endif
Denys Vlasenko7f432802009-06-28 01:02:24 +0200555 if (!G.chunked)
556 break;
557
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100558 fgets_and_trim(dfp); /* Eat empty line */
Denys Vlasenko7f432802009-06-28 01:02:24 +0200559 get_clen:
Denys Vlasenkof836f012011-02-10 23:02:28 +0100560 fgets_and_trim(dfp);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100561 G.content_len = STRTOOFF(G.wget_buf, NULL, 16);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200562 /* FIXME: error check? */
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100563 if (G.content_len == 0)
Denys Vlasenko7f432802009-06-28 01:02:24 +0200564 break; /* all done! */
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100565 G.got_clen = 1;
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100566 /*
567 * Note that fgets may result in some data being buffered in dfp.
568 * We loop back to fread, which will retrieve this data.
569 * Also note that code has to be arranged so that fread
570 * is done _before_ one-second poll wait - poll doesn't know
571 * about stdio buffering and can result in spurious one second waits!
572 */
573 }
574
575 /* If -c failed, we restart from the beginning,
576 * but we do not truncate file then, we do it only now, at the end.
577 * This lets user to ^C if his 99% complete 10 GB file download
578 * failed to restart *without* losing the almost complete file.
579 */
580 {
581 off_t pos = lseek(G.output_fd, 0, SEEK_CUR);
582 if (pos != (off_t)-1)
583 ftruncate(G.output_fd, pos);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200584 }
585
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100586 /* Draw full bar and free its resources */
Denys Vlasenko2384a352011-02-15 00:58:36 +0100587 G.chunked = 0; /* makes it show 100% even for chunked download */
588 G.got_clen = 1; /* makes it show 100% even for download of (formerly) unknown size */
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200589 progress_meter(PROGRESS_END);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200590}
591
Pere Orga53695632011-02-16 20:09:36 +0100592static void download_one_url(const char *url)
Eric Andersen96700832000-09-04 15:15:55 +0000593{
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100594 bool use_proxy; /* Use proxies if env vars are set */
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200595 int redir_limit;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100596 len_and_sockaddr *lsa;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200597 FILE *sfp; /* socket to web/ftp server */
Denis Vlasenkoa36535b2007-09-27 15:07:23 +0000598 FILE *dfp; /* socket to ftp server (data) */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100599 char *proxy = NULL;
600 char *fname_out_alloc;
Denys Vlasenko8a90e612012-02-04 19:55:27 +0100601 char *redirected_path = NULL;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100602 struct host_info server;
603 struct host_info target;
Denis Vlasenko77105632007-09-24 15:04:00 +0000604
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100605 server.allocated = NULL;
606 target.allocated = NULL;
607 server.user = NULL;
Vladimir Dronnikovbe168b12009-10-05 02:18:01 +0200608 target.user = NULL;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100609
610 parse_url(url, &target);
Eric Andersen79757c92001-04-05 21:45:54 +0000611
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000612 /* Use the proxy if necessary */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100613 use_proxy = (strcmp(G.proxy_flag, "off") != 0);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000614 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000615 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Denys Vlasenko2384a352011-02-15 00:58:36 +0100616 use_proxy = (proxy && proxy[0]);
617 if (use_proxy)
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000618 parse_url(proxy, &server);
Robert Griebld7760112002-05-14 23:36:45 +0000619 }
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +0200620 if (!use_proxy) {
621 server.port = target.port;
622 if (ENABLE_FEATURE_IPV6) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100623 //free(server.allocated); - can't be non-NULL
624 server.host = server.allocated = xstrdup(target.host);
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +0200625 } else {
626 server.host = target.host;
627 }
628 }
629
630 if (ENABLE_FEATURE_IPV6)
631 strip_ipv6_scope_id(target.host);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000632
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100633 /* If there was no -O FILE, guess output filename */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100634 fname_out_alloc = NULL;
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +0100635 if (!(option_mask32 & WGET_OPT_OUTNAME)) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100636 G.fname_out = bb_get_last_path_component_nostrip(target.path);
Denis Vlasenko818322b2007-09-24 18:27:04 +0000637 /* handle "wget http://kernel.org//" */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100638 if (G.fname_out[0] == '/' || !G.fname_out[0])
639 G.fname_out = (char*)"index.html";
Denis Vlasenko818322b2007-09-24 18:27:04 +0000640 /* -P DIR is considered only if there was no -O FILE */
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100641 if (G.dir_prefix)
642 G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, G.fname_out);
Denys Vlasenko625f2182011-03-21 00:29:37 +0100643 else {
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100644 /* redirects may free target.path later, need to make a copy */
645 G.fname_out = fname_out_alloc = xstrdup(G.fname_out);
Denys Vlasenko625f2182011-03-21 00:29:37 +0100646 }
Eric Andersen29edd002000-12-09 16:55:35 +0000647 }
Denis Vlasenko818322b2007-09-24 18:27:04 +0000648#if ENABLE_FEATURE_WGET_STATUSBAR
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100649 G.curfile = bb_get_last_path_component_nostrip(G.fname_out);
Denis Vlasenko818322b2007-09-24 18:27:04 +0000650#endif
651
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000652 /* Determine where to start transfer */
Denys Vlasenko2384a352011-02-15 00:58:36 +0100653 G.beg_range = 0;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100654 if (option_mask32 & WGET_OPT_CONTINUE) {
Denys Vlasenko2384a352011-02-15 00:58:36 +0100655 G.output_fd = open(G.fname_out, O_WRONLY);
656 if (G.output_fd >= 0) {
657 G.beg_range = xlseek(G.output_fd, 0, SEEK_END);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000658 }
659 /* File doesn't exist. We do not create file here yet.
Denys Vlasenkoa84eadf2011-02-12 23:40:31 +0100660 * We are not sure it exists on remote side */
Eric Andersen96700832000-09-04 15:15:55 +0000661 }
662
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200663 redir_limit = 5;
664 resolve_lsa:
Denis Vlasenko42823d52007-02-04 02:39:08 +0000665 lsa = xhost2sockaddr(server.host, server.port);
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100666 if (!(option_mask32 & WGET_OPT_QUIET)) {
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200667 char *s = xmalloc_sockaddr2dotted(&lsa->u.sa);
668 fprintf(stderr, "Connecting to %s (%s)\n", server.host, s);
669 free(s);
Eric Andersene6dc4392003-10-31 09:31:46 +0000670 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200671 establish_session:
Denys Vlasenko2384a352011-02-15 00:58:36 +0100672 /*G.content_len = 0; - redundant, got_clen = 0 is enough */
673 G.got_clen = 0;
674 G.chunked = 0;
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000675 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000676 /*
677 * HTTP session
678 */
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200679 char *str;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200680 int status;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200681
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100682
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200683 /* Open socket to http server */
684 sfp = open_socket(lsa);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200685
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200686 /* Send HTTP request */
687 if (use_proxy) {
688 fprintf(sfp, "GET %stp://%s/%s HTTP/1.1\r\n",
689 target.is_ftp ? "f" : "ht", target.host,
690 target.path);
691 } else {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100692 if (option_mask32 & WGET_OPT_POST_DATA)
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200693 fprintf(sfp, "POST /%s HTTP/1.1\r\n", target.path);
694 else
695 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
696 }
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000697
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200698 fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n",
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100699 target.host, G.user_agent);
Eric Andersen79757c92001-04-05 21:45:54 +0000700
Denys Vlasenko9213a552011-02-10 13:23:45 +0100701 /* Ask server to close the connection as soon as we are done
702 * (IOW: we do not intend to send more requests)
703 */
704 fprintf(sfp, "Connection: close\r\n");
705
Denis Vlasenko9cade082006-11-21 10:43:02 +0000706#if ENABLE_FEATURE_WGET_AUTHENTICATION
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200707 if (target.user) {
708 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n"+6,
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100709 base64enc(target.user));
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200710 }
711 if (use_proxy && server.user) {
712 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100713 base64enc(server.user));
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200714 }
Eric Andersen79757c92001-04-05 21:45:54 +0000715#endif
716
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100717 if (G.beg_range != 0)
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100718 fprintf(sfp, "Range: bytes=%"OFF_FMT"u-\r\n", G.beg_range);
Denys Vlasenko9213a552011-02-10 13:23:45 +0100719
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000720#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100721 if (G.extra_headers)
722 fputs(G.extra_headers, sfp);
Denis Vlasenko5a2ad692009-03-04 14:13:37 +0000723
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100724 if (option_mask32 & WGET_OPT_POST_DATA) {
Denys Vlasenko9213a552011-02-10 13:23:45 +0100725 fprintf(sfp,
726 "Content-Type: application/x-www-form-urlencoded\r\n"
727 "Content-Length: %u\r\n"
728 "\r\n"
729 "%s",
Vitaly Magerya700fbc32011-03-27 22:33:13 +0200730 (int) strlen(G.post_data), G.post_data
Denys Vlasenko9213a552011-02-10 13:23:45 +0100731 );
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200732 } else
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000733#endif
Denys Vlasenko9213a552011-02-10 13:23:45 +0100734 {
735 fprintf(sfp, "\r\n");
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200736 }
Eric Andersen79757c92001-04-05 21:45:54 +0000737
Nguyễn Thái Ngọc Duyebec11d2010-09-23 15:18:41 +0200738 fflush(sfp);
739
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200740 /*
741 * Retrieve HTTP response line and check for "200" status code.
742 */
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000743 read_response:
Denys Vlasenkof836f012011-02-10 23:02:28 +0100744 fgets_and_trim(sfp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000745
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100746 str = G.wget_buf;
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200747 str = skip_non_whitespace(str);
748 str = skip_whitespace(str);
749 // FIXME: no error check
750 // xatou wouldn't work: "200 OK"
751 status = atoi(str);
752 switch (status) {
753 case 0:
754 case 100:
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100755 while (gethdr(sfp) != NULL)
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200756 /* eat all remaining headers */;
757 goto read_response;
758 case 200:
Denis Vlasenko50b5cac2008-06-22 16:28:02 +0000759/*
760Response 204 doesn't say "null file", it says "metadata
761has changed but data didn't":
762
763"10.2.5 204 No Content
764The server has fulfilled the request but does not need to return
765an entity-body, and might want to return updated metainformation.
766The response MAY include new or updated metainformation in the form
767of entity-headers, which if present SHOULD be associated with
768the requested variant.
769
770If the client is a user agent, it SHOULD NOT change its document
771view from that which caused the request to be sent. This response
772is primarily intended to allow input for actions to take place
773without causing a change to the user agent's active document view,
774although any new or updated metainformation SHOULD be applied
775to the document currently in the user agent's active view.
776
777The 204 response MUST NOT include a message-body, and thus
778is always terminated by the first empty line after the header fields."
779
780However, in real world it was observed that some web servers
781(e.g. Boa/0.94.14rc21) simply use code 204 when file size is zero.
782*/
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200783 case 204:
Denys Vlasenko6030af92012-06-13 17:31:07 +0200784 if (G.beg_range != 0) {
785 /* "Range:..." was not honored by the server.
786 * Restart download from the beginning.
787 */
788 reset_beg_range_to_zero();
789 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200790 break;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200791 case 300: /* redirection */
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200792 case 301:
793 case 302:
794 case 303:
795 break;
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100796 case 206: /* Partial Content */
797 if (G.beg_range != 0)
798 /* "Range:..." worked. Good. */
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000799 break;
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100800 /* Partial Content even though we did not ask for it??? */
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200801 /* fall through */
802 default:
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100803 bb_error_msg_and_die("server returned error: %s", sanitize_string(G.wget_buf));
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200804 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000805
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200806 /*
807 * Retrieve HTTP headers.
808 */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100809 while ((str = gethdr(sfp)) != NULL) {
810 static const char keywords[] ALIGN1 =
811 "content-length\0""transfer-encoding\0""location\0";
812 enum {
813 KEY_content_length = 1, KEY_transfer_encoding, KEY_location
814 };
Matthijs van de Water0d586662009-08-22 20:19:48 +0200815 smalluint key;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100816
817 /* gethdr converted "FOO:" string to lowercase */
818
Matthijs van de Water0d586662009-08-22 20:19:48 +0200819 /* strip trailing whitespace */
820 char *s = strchrnul(str, '\0') - 1;
821 while (s >= str && (*s == ' ' || *s == '\t')) {
822 *s = '\0';
823 s--;
824 }
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100825 key = index_in_strings(keywords, G.wget_buf) + 1;
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200826 if (key == KEY_content_length) {
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100827 G.content_len = BB_STRTOOFF(str, NULL, 10);
828 if (G.content_len < 0 || errno) {
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200829 bb_error_msg_and_die("content-length %s is garbage", sanitize_string(str));
Eric Andersen79757c92001-04-05 21:45:54 +0000830 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200831 G.got_clen = 1;
832 continue;
833 }
834 if (key == KEY_transfer_encoding) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100835 if (strcmp(str_tolower(str), "chunked") != 0)
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200836 bb_error_msg_and_die("transfer encoding '%s' is not supported", sanitize_string(str));
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100837 G.chunked = 1;
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200838 }
839 if (key == KEY_location && status >= 300) {
840 if (--redir_limit == 0)
841 bb_error_msg_and_die("too many redirections");
842 fclose(sfp);
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100843 if (str[0] == '/') {
Denys Vlasenko8a90e612012-02-04 19:55:27 +0100844 free(redirected_path);
845 target.path = redirected_path = xstrdup(str+1);
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200846 /* lsa stays the same: it's on the same server */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100847 } else {
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200848 parse_url(str, &target);
849 if (!use_proxy) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100850 free(server.allocated);
Pere Orga57b49092011-02-14 23:56:07 +0100851 server.allocated = NULL;
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200852 server.host = target.host;
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +0200853 /* strip_ipv6_scope_id(target.host); - no! */
854 /* we assume remote never gives us IPv6 addr with scope id */
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200855 server.port = target.port;
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000856 free(lsa);
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200857 goto resolve_lsa;
858 } /* else: lsa stays the same: we use proxy */
Eric Andersen79757c92001-04-05 21:45:54 +0000859 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200860 goto establish_session;
Eric Andersen79757c92001-04-05 21:45:54 +0000861 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200862 }
863// if (status >= 300)
864// bb_error_msg_and_die("bad redirection (no Location: header from server)");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000865
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200866 /* For HTTP, data is pumped over the same connection */
Eric Andersen79757c92001-04-05 21:45:54 +0000867 dfp = sfp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000868
869 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000870 /*
871 * FTP session
872 */
Denys Vlasenko7f432802009-06-28 01:02:24 +0200873 sfp = prepare_ftp_session(&dfp, &target, lsa);
Eric Andersen96700832000-09-04 15:15:55 +0000874 }
Denis Vlasenko77105632007-09-24 15:04:00 +0000875
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100876 free(lsa);
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100877
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +0100878 if (!(option_mask32 & WGET_OPT_SPIDER)) {
Denys Vlasenko2384a352011-02-15 00:58:36 +0100879 if (G.output_fd < 0)
880 G.output_fd = xopen(G.fname_out, G.o_flags);
881 retrieve_file_data(dfp);
882 if (!(option_mask32 & WGET_OPT_OUTNAME)) {
883 xclose(G.output_fd);
884 G.output_fd = -1;
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +0100885 }
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000886 }
Eric Andersen79757c92001-04-05 21:45:54 +0000887
Denys Vlasenkof1fab092009-06-28 03:33:57 +0200888 if (dfp != sfp) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100889 /* It's ftp. Close data connection properly */
Eric Andersen79757c92001-04-05 21:45:54 +0000890 fclose(dfp);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100891 if (ftpcmd(NULL, NULL, sfp) != 226)
892 bb_error_msg_and_die("ftp error: %s", sanitize_string(G.wget_buf + 4));
893 /* ftpcmd("QUIT", NULL, sfp); - why bother? */
Eric Andersen79757c92001-04-05 21:45:54 +0000894 }
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100895 fclose(sfp);
Denis Vlasenko77105632007-09-24 15:04:00 +0000896
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +0100897 free(server.allocated);
898 free(target.allocated);
899 free(fname_out_alloc);
Denys Vlasenko8a90e612012-02-04 19:55:27 +0100900 free(redirected_path);
Eric Andersen96700832000-09-04 15:15:55 +0000901}
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100902
903int wget_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
904int wget_main(int argc UNUSED_PARAM, char **argv)
905{
906#if ENABLE_FEATURE_WGET_LONG_OPTIONS
907 static const char wget_longopts[] ALIGN1 =
908 /* name, has_arg, val */
909 "continue\0" No_argument "c"
910//FIXME: -s isn't --spider, it's --save-headers!
911 "spider\0" No_argument "s"
912 "quiet\0" No_argument "q"
913 "output-document\0" Required_argument "O"
914 "directory-prefix\0" Required_argument "P"
915 "proxy\0" Required_argument "Y"
916 "user-agent\0" Required_argument "U"
917#if ENABLE_FEATURE_WGET_TIMEOUT
918 "timeout\0" Required_argument "T"
919#endif
920 /* Ignored: */
921 // "tries\0" Required_argument "t"
922 /* Ignored (we always use PASV): */
923 "passive-ftp\0" No_argument "\xff"
924 "header\0" Required_argument "\xfe"
925 "post-data\0" Required_argument "\xfd"
926 /* Ignored (we don't do ssl) */
927 "no-check-certificate\0" No_argument "\xfc"
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100928 /* Ignored (we don't support caching) */
929 "no-cache\0" No_argument "\xfb"
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100930 ;
931#endif
932
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100933#if ENABLE_FEATURE_WGET_LONG_OPTIONS
934 llist_t *headers_llist = NULL;
935#endif
936
937 INIT_G();
938
939 IF_FEATURE_WGET_TIMEOUT(G.timeout_seconds = 900;)
940 G.proxy_flag = "on"; /* use proxies if env vars are set */
941 G.user_agent = "Wget"; /* "User-Agent" header field */
942
943#if ENABLE_FEATURE_WGET_LONG_OPTIONS
944 applet_long_options = wget_longopts;
945#endif
946 opt_complementary = "-1" IF_FEATURE_WGET_TIMEOUT(":T+") IF_FEATURE_WGET_LONG_OPTIONS(":\xfe::");
947 getopt32(argv, "csqO:P:Y:U:T:" /*ignored:*/ "t:",
948 &G.fname_out, &G.dir_prefix,
949 &G.proxy_flag, &G.user_agent,
950 IF_FEATURE_WGET_TIMEOUT(&G.timeout_seconds) IF_NOT_FEATURE_WGET_TIMEOUT(NULL),
951 NULL /* -t RETRIES */
952 IF_FEATURE_WGET_LONG_OPTIONS(, &headers_llist)
953 IF_FEATURE_WGET_LONG_OPTIONS(, &G.post_data)
954 );
955 argv += optind;
956
957#if ENABLE_FEATURE_WGET_LONG_OPTIONS
958 if (headers_llist) {
959 int size = 1;
960 char *cp;
961 llist_t *ll = headers_llist;
962 while (ll) {
963 size += strlen(ll->data) + 2;
964 ll = ll->link;
965 }
966 G.extra_headers = cp = xmalloc(size);
967 while (headers_llist) {
968 cp += sprintf(cp, "%s\r\n", (char*)llist_pop(&headers_llist));
969 }
970 }
971#endif
972
Denys Vlasenko2384a352011-02-15 00:58:36 +0100973 G.output_fd = -1;
974 G.o_flags = O_WRONLY | O_CREAT | O_TRUNC | O_EXCL;
975 if (G.fname_out) { /* -O FILE ? */
976 if (LONE_DASH(G.fname_out)) { /* -O - ? */
977 G.output_fd = 1;
978 option_mask32 &= ~WGET_OPT_CONTINUE;
979 }
980 /* compat with wget: -O FILE can overwrite */
981 G.o_flags = O_WRONLY | O_CREAT | O_TRUNC;
982 }
983
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100984 while (*argv)
Pere Orga53695632011-02-16 20:09:36 +0100985 download_one_url(*argv++);
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100986
Denys Vlasenko28556b92011-02-15 11:03:53 +0100987 if (G.output_fd >= 0)
988 xclose(G.output_fd);
989
Pere Orga53695632011-02-16 20:09:36 +0100990 return EXIT_SUCCESS;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100991}