blob: e660c279c9e0616d4be09b7c1436c66417d138c9 [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 Vlasenko1c6c6702015-10-07 01:39:40 +020011//config:config WGET
Denys Vlasenkob097a842018-12-28 03:20:17 +010012//config: bool "wget (38 kb)"
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020013//config: default y
14//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020015//config: wget is a utility for non-interactive download of files from HTTP
16//config: and FTP servers.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020017//config:
Denys Vlasenkof5604222017-01-10 14:58:54 +010018//config:config FEATURE_WGET_LONG_OPTIONS
19//config: bool "Enable long options"
20//config: default y
21//config: depends on WGET && LONG_OPTS
22//config:
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020023//config:config FEATURE_WGET_STATUSBAR
Denys Vlasenkof5604222017-01-10 14:58:54 +010024//config: bool "Enable progress bar (+2k)"
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020025//config: default y
26//config: depends on WGET
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020027//config:
28//config:config FEATURE_WGET_AUTHENTICATION
29//config: bool "Enable HTTP authentication"
30//config: default y
31//config: depends on WGET
32//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020033//config: Support authenticated HTTP transfers.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020034//config:
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020035//config:config FEATURE_WGET_TIMEOUT
36//config: bool "Enable timeout option -T SEC"
37//config: default y
38//config: depends on WGET
39//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020040//config: Supports network read and connect timeouts for wget,
41//config: so that wget will give up and timeout, through the -T
42//config: command line option.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020043//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020044//config: Currently only connect and network data read timeout are
45//config: supported (i.e., timeout is not applied to the DNS query). When
46//config: FEATURE_WGET_LONG_OPTIONS is also enabled, the --timeout option
47//config: will work in addition to -T.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +020048//config:
Denys Vlasenko9a647c32017-01-23 01:08:16 +010049//config:config FEATURE_WGET_HTTPS
50//config: bool "Support HTTPS using internal TLS code"
Denys Vlasenko403f2992018-02-06 15:15:08 +010051//it also enables FTPS support, but it's not well tested yet
Denys Vlasenko9a647c32017-01-23 01:08:16 +010052//config: default y
53//config: depends on WGET
54//config: select TLS
55//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020056//config: wget will use internal TLS code to connect to https:// URLs.
57//config: Note:
58//config: On NOMMU machines, ssl_helper applet should be available
59//config: in the $PATH for this to work. Make sure to select that applet.
Denys Vlasenko9a647c32017-01-23 01:08:16 +010060//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020061//config: Note: currently, TLS code only makes TLS I/O work, it
62//config: does *not* check that the peer is who it claims to be, etc.
63//config: IOW: it uses peer-supplied public keys to establish encryption
64//config: and signing keys, then encrypts and signs outgoing data and
65//config: decrypts incoming data.
66//config: It does not check signature hashes on the incoming data:
67//config: this means that attackers manipulating TCP packets can
68//config: send altered data and we unknowingly receive garbage.
69//config: (This check might be relatively easy to add).
70//config: It does not check public key's certificate:
71//config: this means that the peer may be an attacker impersonating
72//config: the server we think we are talking to.
Denys Vlasenko67f6db62017-01-30 16:27:37 +010073//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020074//config: If you think this is unacceptable, consider this. As more and more
75//config: servers switch to HTTPS-only operation, without such "crippled"
76//config: TLS code it is *impossible* to simply download a kernel source
77//config: from kernel.org. Which can in real world translate into
78//config: "my small automatic tooling to build cross-compilers from sources
79//config: no longer works, I need to additionally keep a local copy
80//config: of ~4 megabyte source tarball of a SSL library and ~2 megabyte
81//config: source of wget, need to compile and built both before I can
82//config: download anything. All this despite the fact that the build
83//config: is done in a QEMU sandbox on a machine with absolutely nothing
84//config: worth stealing, so I don't care if someone would go to a lot
85//config: of trouble to intercept my HTTPS download to send me an altered
86//config: kernel tarball".
Denys Vlasenko67f6db62017-01-30 16:27:37 +010087//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020088//config: If you still think this is unacceptable, send patches.
Denys Vlasenko67f6db62017-01-30 16:27:37 +010089//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020090//config: If you still think this is unacceptable, do not want to send
91//config: patches, but do want to waste bandwidth expaining how wrong
92//config: it is, you will be ignored.
Denys Vlasenko67f6db62017-01-30 16:27:37 +010093//config:
Dimitri John Ledkov45fa3f12020-05-19 18:20:39 +010094//config: FEATURE_WGET_OPENSSL does implement TLS verification
95//config: using the certificates available to OpenSSL.
96//config:
Denys Vlasenko2007ef52015-10-07 02:40:53 +020097//config:config FEATURE_WGET_OPENSSL
98//config: bool "Try to connect to HTTPS using openssl"
99//config: default y
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200100//config: depends on WGET
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200101//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200102//config: Try to use openssl to handle HTTPS.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200103//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200104//config: OpenSSL has a simple SSL client for debug purposes.
105//config: If you select this option, wget will effectively run:
106//config: "openssl s_client -quiet -connect hostname:443
107//config: -servername hostname 2>/dev/null" and pipe its data
108//config: through it. -servername is not used if hostname is numeric.
109//config: Note inconvenient API: host resolution is done twice,
110//config: and there is no guarantee openssl's idea of IPv6 address
111//config: format is the same as ours.
112//config: Another problem is that s_client prints debug information
113//config: to stderr, and it needs to be suppressed. This means
114//config: all error messages get suppressed too.
115//config: openssl is also a big binary, often dynamically linked
116//config: against ~15 libraries.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200117//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200118//config: If openssl can't be executed, internal TLS code will be used
119//config: (if you enabled it); if openssl can be executed but fails later,
120//config: wget can't detect this, and download will fail.
Dimitri John Ledkov45fa3f12020-05-19 18:20:39 +0100121//config:
122//config: By default TLS verification is performed, unless
123//config: --no-check-certificate option is passed.
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200124
125//applet:IF_WGET(APPLET(wget, BB_DIR_USR_BIN, BB_SUID_DROP))
126
127//kbuild:lib-$(CONFIG_WGET) += wget.o
128
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +0100129//usage:#define wget_trivial_usage
130//usage: IF_FEATURE_WGET_LONG_OPTIONS(
Denys Vlasenkoa2f18d92020-12-18 04:12:51 +0100131//usage: "[-cqS] [--spider] [-O FILE] [-o LOGFILE] [--header 'HEADER: VALUE'] [-Y on/off]\n"
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +0200132/* Since we ignore these opts, we don't show them in --help */
Dimitri John Ledkov45fa3f12020-05-19 18:20:39 +0100133/* //usage: " [--no-cache] [--passive-ftp] [-t TRIES]" */
Denys Vlasenko92e1b082015-10-20 21:51:52 +0200134/* //usage: " [-nv] [-nc] [-nH] [-np]" */
Denys Vlasenkoa2f18d92020-12-18 04:12:51 +0100135//usage: " "IF_FEATURE_WGET_OPENSSL("[--no-check-certificate] ")"[-P DIR] [-U AGENT]"IF_FEATURE_WGET_TIMEOUT(" [-T SEC]")" URL..."
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +0100136//usage: )
137//usage: IF_NOT_FEATURE_WGET_LONG_OPTIONS(
Denys Vlasenkoa2f18d92020-12-18 04:12:51 +0100138//usage: "[-cqS] [-O FILE] [-o LOGFILE] [-Y on/off] [-P DIR] [-U AGENT]"IF_FEATURE_WGET_TIMEOUT(" [-T SEC]")" URL..."
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +0100139//usage: )
140//usage:#define wget_full_usage "\n\n"
141//usage: "Retrieve files via HTTP or FTP\n"
Denys Vlasenko2972e2c2016-10-04 04:23:09 +0200142//usage: IF_FEATURE_WGET_LONG_OPTIONS(
Denys Vlasenkodff9fef2017-01-24 21:41:43 +0100143//usage: "\n --spider Only check URL existence: $? is 0 if exists"
Dimitri John Ledkov45fa3f12020-05-19 18:20:39 +0100144//usage: IF_FEATURE_WGET_OPENSSL(
145//usage: "\n --no-check-certificate Don't validate the server's certificate"
146//usage: )
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +0100147//usage: )
Denys Vlasenko2972e2c2016-10-04 04:23:09 +0200148//usage: "\n -c Continue retrieval of aborted transfer"
149//usage: "\n -q Quiet"
150//usage: "\n -P DIR Save to DIR (default .)"
Denys Vlasenkodff9fef2017-01-24 21:41:43 +0100151//usage: "\n -S Show server response"
Denys Vlasenko2972e2c2016-10-04 04:23:09 +0200152//usage: IF_FEATURE_WGET_TIMEOUT(
153//usage: "\n -T SEC Network read timeout is SEC seconds"
154//usage: )
155//usage: "\n -O FILE Save to FILE ('-' for stdout)"
Denys Vlasenkoa2f18d92020-12-18 04:12:51 +0100156//usage: "\n -o LOGFILE Log messages to FILE"
Denys Vlasenko2972e2c2016-10-04 04:23:09 +0200157//usage: "\n -U STR Use STR for User-Agent header"
158//usage: "\n -Y on/off Use proxy"
Denys Vlasenkoe2e55b02011-03-21 00:37:05 +0100159
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000160#include "libbb.h"
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000161
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +0200162#if 0
163# define log_io(...) bb_error_msg(__VA_ARGS__)
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +0100164# define SENDFMT(fp, fmt, ...) \
165 do { \
166 log_io("> " fmt, ##__VA_ARGS__); \
167 fprintf(fp, fmt, ##__VA_ARGS__); \
168 } while (0);
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +0200169#else
170# define log_io(...) ((void)0)
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +0100171# define SENDFMT(fp, fmt, ...) fprintf(fp, fmt, ##__VA_ARGS__)
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +0200172#endif
Denys Vlasenkof836f012011-02-10 23:02:28 +0100173
174
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100175#define SSL_SUPPORTED (ENABLE_FEATURE_WGET_OPENSSL || ENABLE_FEATURE_WGET_HTTPS)
Denys Vlasenkoa6f86512017-01-11 20:16:45 +0100176
Eric Andersen79757c92001-04-05 21:45:54 +0000177struct host_info {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100178 char *allocated;
Denis Vlasenko818322b2007-09-24 18:27:04 +0000179 const char *path;
Denys Vlasenkod353bff2014-02-03 14:09:42 +0100180 char *user;
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100181 const char *protocol;
Denis Vlasenko818322b2007-09-24 18:27:04 +0000182 char *host;
183 int port;
Eric Andersen79757c92001-04-05 21:45:54 +0000184};
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200185static const char P_FTP[] ALIGN1 = "ftp";
186static const char P_HTTP[] ALIGN1 = "http";
Denys Vlasenkoa6f86512017-01-11 20:16:45 +0100187#if SSL_SUPPORTED
Denys Vlasenko403f2992018-02-06 15:15:08 +0100188# if ENABLE_FEATURE_WGET_HTTPS
189static const char P_FTPS[] ALIGN1 = "ftps";
190# endif
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200191static const char P_HTTPS[] ALIGN1 = "https";
Ron Yorston4d0c1ea2015-10-12 10:51:25 +0100192#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000193
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +0100194#if ENABLE_FEATURE_WGET_LONG_OPTIONS
195/* User-specified headers prevent using our corresponding built-in headers. */
196enum {
197 HDR_HOST = (1<<0),
198 HDR_USER_AGENT = (1<<1),
199 HDR_RANGE = (1<<2),
200 HDR_AUTH = (1<<3) * ENABLE_FEATURE_WGET_AUTHENTICATION,
201 HDR_PROXY_AUTH = (1<<4) * ENABLE_FEATURE_WGET_AUTHENTICATION,
202};
203static const char wget_user_headers[] ALIGN1 =
204 "Host:\0"
205 "User-Agent:\0"
206 "Range:\0"
207# if ENABLE_FEATURE_WGET_AUTHENTICATION
208 "Authorization:\0"
209 "Proxy-Authorization:\0"
210# endif
211 ;
212# define USR_HEADER_HOST (G.user_headers & HDR_HOST)
213# define USR_HEADER_USER_AGENT (G.user_headers & HDR_USER_AGENT)
214# define USR_HEADER_RANGE (G.user_headers & HDR_RANGE)
215# define USR_HEADER_AUTH (G.user_headers & HDR_AUTH)
216# define USR_HEADER_PROXY_AUTH (G.user_headers & HDR_PROXY_AUTH)
217#else /* No long options, no user-headers :( */
218# define USR_HEADER_HOST 0
219# define USR_HEADER_USER_AGENT 0
220# define USR_HEADER_RANGE 0
221# define USR_HEADER_AUTH 0
222# define USR_HEADER_PROXY_AUTH 0
223#endif
Denis Vlasenko77105632007-09-24 15:04:00 +0000224
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200225/* Globals */
Denis Vlasenko77105632007-09-24 15:04:00 +0000226struct globals {
227 off_t content_len; /* Content-length of the file */
228 off_t beg_range; /* Range at which continue begins */
229#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenko77105632007-09-24 15:04:00 +0000230 off_t transferred; /* Number of bytes transferred so far */
231 const char *curfile; /* Name of current file being transferred */
Magnus Dammf5914992009-11-08 16:34:43 +0100232 bb_progress_t pmt;
Denis Vlasenko77105632007-09-24 15:04:00 +0000233#endif
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200234 char *dir_prefix;
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100235#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200236 char *post_data;
237 char *extra_headers;
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +0100238 unsigned char user_headers; /* Headers mentioned by the user */
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100239#endif
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200240 char *fname_out; /* where to direct output (-O) */
Martin Lewis64f35362018-12-26 16:28:45 +0100241 char *fname_log; /* where to direct log (-o) */
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200242 const char *proxy_flag; /* Use proxies if env vars are set */
243 const char *user_agent; /* "User-Agent" header field */
Denys Vlasenko2384a352011-02-15 00:58:36 +0100244 int output_fd;
Martin Lewis64f35362018-12-26 16:28:45 +0100245 int log_fd;
Denys Vlasenko2384a352011-02-15 00:58:36 +0100246 int o_flags;
Denys Vlasenko5084bae2018-11-24 21:56:21 +0100247#if ENABLE_FEATURE_WGET_TIMEOUT
248 unsigned timeout_seconds;
249 smallint die_if_timed_out;
250#endif
Denys Vlasenko7f432802009-06-28 01:02:24 +0200251 smallint chunked; /* chunked transfer encoding */
252 smallint got_clen; /* got content-length: from server */
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100253 /* Local downloads do benefit from big buffer.
254 * With 512 byte buffer, it was measured to be
255 * an order of magnitude slower than with big one.
256 */
Denys Vlasenko9b313dd2019-01-21 13:53:26 +0100257 char wget_buf[CONFIG_FEATURE_COPYBUF_KB*1024] ALIGNED(16);
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100258} FIX_ALIASING;
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100259#define G (*ptr_to_globals)
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200260#define INIT_G() do { \
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200261 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200262} while (0)
Guilherme Maciel Ferreira840ef172013-10-16 14:43:30 +0200263#define FINI_G() do { \
264 FREE_PTR_TO_GLOBALS(); \
265} while (0)
Denis Vlasenko77105632007-09-24 15:04:00 +0000266
267
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200268/* Must match option string! */
269enum {
270 WGET_OPT_CONTINUE = (1 << 0),
Denys Vlasenko2972e2c2016-10-04 04:23:09 +0200271 WGET_OPT_QUIET = (1 << 1),
Denys Vlasenkodff9fef2017-01-24 21:41:43 +0100272 WGET_OPT_SERVER_RESPONSE = (1 << 2),
273 WGET_OPT_OUTNAME = (1 << 3),
Martin Lewis64f35362018-12-26 16:28:45 +0100274 WGET_OPT_LOGNAME = (1 << 4),
275 WGET_OPT_PREFIX = (1 << 5),
276 WGET_OPT_PROXY = (1 << 6),
277 WGET_OPT_USER_AGENT = (1 << 7),
278 WGET_OPT_NETWORK_READ_TIMEOUT = (1 << 8),
279 WGET_OPT_RETRIES = (1 << 9),
280 WGET_OPT_nsomething = (1 << 10),
281 WGET_OPT_HEADER = (1 << 11) * ENABLE_FEATURE_WGET_LONG_OPTIONS,
282 WGET_OPT_POST_DATA = (1 << 12) * ENABLE_FEATURE_WGET_LONG_OPTIONS,
283 WGET_OPT_SPIDER = (1 << 13) * ENABLE_FEATURE_WGET_LONG_OPTIONS,
284 WGET_OPT_NO_CHECK_CERT = (1 << 14) * ENABLE_FEATURE_WGET_LONG_OPTIONS,
Denys Vlasenkoe7d853b2020-12-08 19:06:28 +0100285 /* hijack this bit for other than opts purposes: */
286 WGET_NO_FTRUNCATE = (1 << 31)
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200287};
288
289enum {
290 PROGRESS_START = -1,
291 PROGRESS_END = 0,
292 PROGRESS_BUMP = 1,
293};
Denis Vlasenko9cade082006-11-21 10:43:02 +0000294#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenko00d84172008-11-24 07:34:42 +0000295static void progress_meter(int flag)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000296{
Denys Vlasenko26602b82018-11-23 19:14:52 +0100297 int notty;
298
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200299 if (option_mask32 & WGET_OPT_QUIET)
300 return;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000301
Martin Lewis64f35362018-12-26 16:28:45 +0100302 /* Don't save progress to log file */
303 if (G.log_fd >= 0)
304 return;
305
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200306 if (flag == PROGRESS_START)
Denys Vlasenkod55e1392011-02-11 18:56:13 +0100307 bb_progress_init(&G.pmt, G.curfile);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000308
Denys Vlasenko26602b82018-11-23 19:14:52 +0100309 notty = bb_progress_update(&G.pmt,
Denys Vlasenko2384a352011-02-15 00:58:36 +0100310 G.beg_range,
311 G.transferred,
312 (G.chunked || !G.got_clen) ? 0 : G.beg_range + G.transferred + G.content_len
313 );
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000314
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200315 if (flag == PROGRESS_END) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100316 bb_progress_free(&G.pmt);
Denys Vlasenko26602b82018-11-23 19:14:52 +0100317 if (notty == 0)
318 bb_putchar_stderr('\n'); /* it's tty */
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100319 G.transferred = 0;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000320 }
321}
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200322#else
Denys Vlasenko8c317f02019-05-14 17:26:47 +0200323static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) {}
Eric Andersenb520e082000-10-03 00:21:45 +0000324#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000325
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000326
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +0200327/* IPv6 knows scoped address types i.e. link and site local addresses. Link
328 * local addresses can have a scope identifier to specify the
329 * interface/link an address is valid on (e.g. fe80::1%eth0). This scope
330 * identifier is only valid on a single node.
331 *
332 * RFC 4007 says that the scope identifier MUST NOT be sent across the wire,
333 * unless all nodes agree on the semantic. Apache e.g. regards zone identifiers
334 * in the Host header as invalid requests, see
335 * https://issues.apache.org/bugzilla/show_bug.cgi?id=35122
336 */
337static void strip_ipv6_scope_id(char *host)
338{
339 char *scope, *cp;
340
341 /* bbox wget actually handles IPv6 addresses without [], like
342 * wget "http://::1/xxx", but this is not standard.
343 * To save code, _here_ we do not support it. */
344
345 if (host[0] != '[')
346 return; /* not IPv6 */
347
348 scope = strchr(host, '%');
349 if (!scope)
350 return;
351
352 /* Remove the IPv6 zone identifier from the host address */
353 cp = strchr(host, ']');
354 if (!cp || (cp[1] != ':' && cp[1] != '\0')) {
355 /* malformed address (not "[xx]:nn" or "[xx]") */
356 return;
357 }
358
359 /* cp points to "]...", scope points to "%eth0]..." */
360 overlapping_strcpy(scope, cp);
361}
362
Denis Vlasenko9cade082006-11-21 10:43:02 +0000363#if ENABLE_FEATURE_WGET_AUTHENTICATION
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100364/* Base64-encode character string. */
365static char *base64enc(const char *str)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000366{
Denys Vlasenko5084bae2018-11-24 21:56:21 +0100367 /* paranoia */
368 unsigned len = strnlen(str, sizeof(G.wget_buf)/4*3 - 10);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100369 bb_uuencode(G.wget_buf, str, len, bb_uuenc_tbl_base64);
370 return G.wget_buf;
Eric Andersen79757c92001-04-05 21:45:54 +0000371}
372#endif
373
Lauri Kasanend074b412013-10-12 21:47:07 +0200374#if ENABLE_FEATURE_WGET_TIMEOUT
375static void alarm_handler(int sig UNUSED_PARAM)
376{
377 /* This is theoretically unsafe (uses stdio and malloc in signal handler) */
Denys Vlasenko6701e912016-03-17 15:58:16 +0100378 if (G.die_if_timed_out)
James Byrne69374872019-07-02 11:35:03 +0200379 bb_simple_error_msg_and_die("download timed out");
Lauri Kasanend074b412013-10-12 21:47:07 +0200380}
Denys Vlasenko6701e912016-03-17 15:58:16 +0100381static void set_alarm(void)
382{
383 if (G.timeout_seconds) {
384 alarm(G.timeout_seconds);
385 G.die_if_timed_out = 1;
386 }
387}
388# define clear_alarm() ((void)(G.die_if_timed_out = 0))
389#else
390# define set_alarm() ((void)0)
391# define clear_alarm() ((void)0)
Lauri Kasanend074b412013-10-12 21:47:07 +0200392#endif
393
Denys Vlasenkoed727612016-07-25 21:34:57 +0200394#if ENABLE_FEATURE_WGET_OPENSSL
395/*
396 * is_ip_address() attempts to verify whether or not a string
397 * contains an IPv4 or IPv6 address (vs. an FQDN). The result
398 * of inet_pton() can be used to determine this.
Denys Vlasenkoed727612016-07-25 21:34:57 +0200399 */
400static int is_ip_address(const char *string)
401{
402 struct sockaddr_in sa;
403
404 int result = inet_pton(AF_INET, string, &(sa.sin_addr));
405# if ENABLE_FEATURE_IPV6
406 if (result == 0) {
407 struct sockaddr_in6 sa6;
408 result = inet_pton(AF_INET6, string, &(sa6.sin6_addr));
409 }
410# endif
411 return (result == 1);
412}
413#endif
414
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000415static FILE *open_socket(len_and_sockaddr *lsa)
416{
Lauri Kasanend074b412013-10-12 21:47:07 +0200417 int fd;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000418 FILE *fp;
419
Denys Vlasenko6701e912016-03-17 15:58:16 +0100420 set_alarm();
Lauri Kasanend074b412013-10-12 21:47:07 +0200421 fd = xconnect_stream(lsa);
Denys Vlasenko6701e912016-03-17 15:58:16 +0100422 clear_alarm();
Lauri Kasanend074b412013-10-12 21:47:07 +0200423
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000424 /* glibc 2.4 seems to try seeking on it - ??! */
425 /* hopefully it understands what ESPIPE means... */
Lauri Kasanend074b412013-10-12 21:47:07 +0200426 fp = fdopen(fd, "r+");
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100427 if (!fp)
Denys Vlasenko899ae532018-04-01 19:59:37 +0200428 bb_die_memory_exhausted();
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000429
430 return fp;
431}
432
Denys Vlasenko34590242018-02-12 16:46:13 +0100433/* We balk at any control chars in other side's messages.
434 * This prevents nasty surprises (e.g. ESC sequences) in "Location:" URLs
435 * and error messages.
436 *
437 * The only exception is tabs, which are converted to (one) space:
438 * HTTP's "headers: <whitespace> values" may have those.
439 */
440static char* sanitize_string(char *s)
441{
442 unsigned char *p = (void *) s;
443 while (*p) {
444 if (*p < ' ') {
445 if (*p != '\t')
446 break;
447 *p = ' ';
448 }
449 p++;
450 }
451 *p = '\0';
452 return s;
453}
454
Denys Vlasenkof836f012011-02-10 23:02:28 +0100455/* Returns '\n' if it was seen, else '\0'. Trims at first '\r' or '\n' */
Denys Vlasenko34590242018-02-12 16:46:13 +0100456static char fgets_trim_sanitize(FILE *fp, const char *fmt)
Denys Vlasenkof836f012011-02-10 23:02:28 +0100457{
458 char c;
459 char *buf_ptr;
460
Denys Vlasenko6701e912016-03-17 15:58:16 +0100461 set_alarm();
Denys Vlasenko34590242018-02-12 16:46:13 +0100462 if (fgets(G.wget_buf, sizeof(G.wget_buf), fp) == NULL)
James Byrne69374872019-07-02 11:35:03 +0200463 bb_simple_perror_msg_and_die("error getting response");
Denys Vlasenko6701e912016-03-17 15:58:16 +0100464 clear_alarm();
Denys Vlasenkof836f012011-02-10 23:02:28 +0100465
466 buf_ptr = strchrnul(G.wget_buf, '\n');
467 c = *buf_ptr;
Denys Vlasenko34590242018-02-12 16:46:13 +0100468#if 1
469 /* Disallow any control chars: trim at first char < 0x20 */
470 sanitize_string(G.wget_buf);
471#else
Denys Vlasenkof836f012011-02-10 23:02:28 +0100472 *buf_ptr = '\0';
473 buf_ptr = strchrnul(G.wget_buf, '\r');
474 *buf_ptr = '\0';
Denys Vlasenko34590242018-02-12 16:46:13 +0100475#endif
Denys Vlasenkof836f012011-02-10 23:02:28 +0100476
477 log_io("< %s", G.wget_buf);
478
Denys Vlasenkodff9fef2017-01-24 21:41:43 +0100479 if (fmt && (option_mask32 & WGET_OPT_SERVER_RESPONSE))
480 fprintf(stderr, fmt, G.wget_buf);
481
Denys Vlasenkof836f012011-02-10 23:02:28 +0100482 return c;
483}
484
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100485static int ftpcmd(const char *s1, const char *s2, FILE *fp)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000486{
487 int result;
488 if (s1) {
Denys Vlasenkof836f012011-02-10 23:02:28 +0100489 if (!s2)
490 s2 = "";
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000491 fprintf(fp, "%s%s\r\n", s1, s2);
Denys Vlasenkodff9fef2017-01-24 21:41:43 +0100492 /* With --server-response, wget also shows its ftp commands */
493 if (option_mask32 & WGET_OPT_SERVER_RESPONSE)
494 fprintf(stderr, "--> %s%s\n\n", s1, s2);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000495 fflush(fp);
Denys Vlasenkof836f012011-02-10 23:02:28 +0100496 log_io("> %s%s", s1, s2);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000497 }
498
Denys Vlasenko34590242018-02-12 16:46:13 +0100499 /* Read until "Nxx something" is received */
500 G.wget_buf[3] = 0;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000501 do {
Denys Vlasenko34590242018-02-12 16:46:13 +0100502 fgets_trim_sanitize(fp, "%s\n");
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100503 } while (!isdigit(G.wget_buf[0]) || G.wget_buf[3] != ' ');
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000504
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +0100505 G.wget_buf[3] = '\0';
506 result = xatoi_positive(G.wget_buf);
507 G.wget_buf[3] = ' ';
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000508 return result;
509}
510
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100511static void parse_url(const char *src_url, struct host_info *h)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000512{
513 char *url, *p, *sp;
514
Denys Vlasenkoa3661092011-02-13 02:33:11 +0100515 free(h->allocated);
516 h->allocated = url = xstrdup(src_url);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000517
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100518 h->protocol = P_FTP;
519 p = strstr(url, "://");
520 if (p) {
521 *p = '\0';
522 h->host = p + 3;
523 if (strcmp(url, P_FTP) == 0) {
Denys Vlasenko2aeb2012018-04-17 12:43:54 +0200524 h->port = bb_lookup_std_port(P_FTP, "tcp", 21);
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100525 } else
Denys Vlasenkoa6f86512017-01-11 20:16:45 +0100526#if SSL_SUPPORTED
Denys Vlasenko403f2992018-02-06 15:15:08 +0100527# if ENABLE_FEATURE_WGET_HTTPS
528 if (strcmp(url, P_FTPS) == 0) {
Denys Vlasenko2aeb2012018-04-17 12:43:54 +0200529 h->port = bb_lookup_std_port(P_FTPS, "tcp", 990);
Denys Vlasenko403f2992018-02-06 15:15:08 +0100530 h->protocol = P_FTPS;
531 } else
532# endif
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100533 if (strcmp(url, P_HTTPS) == 0) {
Denys Vlasenko2aeb2012018-04-17 12:43:54 +0200534 h->port = bb_lookup_std_port(P_HTTPS, "tcp", 443);
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100535 h->protocol = P_HTTPS;
536 } else
Ron Yorston4d0c1ea2015-10-12 10:51:25 +0100537#endif
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100538 if (strcmp(url, P_HTTP) == 0) {
Lauri Kasanen4967a412013-12-17 19:03:41 +0100539 http:
Denys Vlasenko2aeb2012018-04-17 12:43:54 +0200540 h->port = bb_lookup_std_port(P_HTTP, "tcp", 80);
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100541 h->protocol = P_HTTP;
542 } else {
543 *p = ':';
Denys Vlasenko34590242018-02-12 16:46:13 +0100544 bb_error_msg_and_die("not an http or ftp url: %s", url);
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100545 }
546 } else {
Lauri Kasanen4967a412013-12-17 19:03:41 +0100547 // GNU wget is user-friendly and falls back to http://
548 h->host = url;
549 goto http;
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100550 }
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000551
552 // FYI:
553 // "Real" wget 'http://busybox.net?var=a/b' sends this request:
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +0100554 // 'GET /?var=a/b HTTP/1.0'
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000555 // and saves 'index.html?var=a%2Fb' (we save 'b')
556 // wget 'http://busybox.net?login=john@doe':
557 // request: 'GET /?login=john@doe HTTP/1.0'
Denys Vlasenkodf45eb42018-04-24 13:35:32 +0200558 // saves: 'index.html?login=john@doe' (we save 'login=john@doe')
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000559 // wget 'http://busybox.net#test/test':
560 // request: 'GET / HTTP/1.0'
561 // saves: 'index.html' (we save 'test')
562 //
563 // We also don't add unique .N suffix if file exists...
564 sp = strchr(h->host, '/');
565 p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
566 p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
567 if (!sp) {
Denis Vlasenko818322b2007-09-24 18:27:04 +0000568 h->path = "";
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000569 } else if (*sp == '/') {
570 *sp = '\0';
571 h->path = sp + 1;
Denys Vlasenkodf45eb42018-04-24 13:35:32 +0200572 } else {
573 // sp points to '#' or '?'
574 // Note:
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000575 // http://busybox.net?login=john@doe is a valid URL
Denys Vlasenkodf45eb42018-04-24 13:35:32 +0200576 // (without '/' between ".net" and "?"),
577 // can't store NUL at sp[-1] - this destroys hostname.
578 *sp++ = '\0';
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000579 h->path = sp;
580 }
581
582 sp = strrchr(h->host, '@');
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000583 if (sp != NULL) {
Denys Vlasenkodd1061b2011-09-11 21:04:02 +0200584 // URL-decode "user:password" string before base64-encoding:
585 // wget http://test:my%20pass@example.com should send
586 // Authorization: Basic dGVzdDpteSBwYXNz
587 // which decodes to "test:my pass".
588 // Standard wget and curl do this too.
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000589 *sp = '\0';
Denys Vlasenkod353bff2014-02-03 14:09:42 +0100590 free(h->user);
591 h->user = xstrdup(percent_decode_in_place(h->host, /*strict:*/ 0));
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000592 h->host = sp + 1;
593 }
Denys Vlasenkod353bff2014-02-03 14:09:42 +0100594 /* else: h->user remains NULL, or as set by original request
595 * before redirect (if we are here after a redirect).
596 */
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000597}
598
Denys Vlasenko34590242018-02-12 16:46:13 +0100599static char *get_sanitized_hdr(FILE *fp)
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000600{
601 char *s, *hdrval;
602 int c;
603
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000604 /* retrieve header line */
Denys Vlasenko34590242018-02-12 16:46:13 +0100605 c = fgets_trim_sanitize(fp, " %s\n");
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000606
Denys Vlasenkof836f012011-02-10 23:02:28 +0100607 /* end of the headers? */
608 if (G.wget_buf[0] == '\0')
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000609 return NULL;
610
611 /* convert the header name to lower case */
Denys Vlasenkoea267d52013-07-01 15:01:50 +0200612 for (s = G.wget_buf; isalnum(*s) || *s == '-' || *s == '.' || *s == '_'; ++s) {
613 /*
614 * No-op for 20-3f and 60-7f. "0-9a-z-." are in these ranges.
615 * 40-5f range ("@A-Z[\]^_") maps to 60-7f.
616 * "A-Z" maps to "a-z".
617 * "@[\]" can't occur in header names.
618 * "^_" maps to "~,DEL" (which is wrong).
619 * "^" was never seen yet, "_" was seen from web.archive.org
620 * (x-archive-orig-x_commoncrawl_Signature: HEXSTRING).
621 */
Denys Vlasenkof836f012011-02-10 23:02:28 +0100622 *s |= 0x20;
Denys Vlasenko48363312010-04-04 15:29:32 +0200623 }
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000624
625 /* verify we are at the end of the header name */
626 if (*s != ':')
Denys Vlasenko34590242018-02-12 16:46:13 +0100627 bb_error_msg_and_die("bad header line: %s", G.wget_buf);
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000628
629 /* locate the start of the header value */
630 *s++ = '\0';
631 hdrval = skip_whitespace(s);
632
Denys Vlasenkof836f012011-02-10 23:02:28 +0100633 if (c != '\n') {
634 /* Rats! The buffer isn't big enough to hold the entire header value */
635 while (c = getc(fp), c != EOF && c != '\n')
636 continue;
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000637 }
638
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000639 return hdrval;
640}
641
Denys Vlasenkobf146b82012-06-13 17:31:07 +0200642static void reset_beg_range_to_zero(void)
643{
James Byrne69374872019-07-02 11:35:03 +0200644 bb_simple_error_msg("restart failed");
Denys Vlasenkobf146b82012-06-13 17:31:07 +0200645 G.beg_range = 0;
646 xlseek(G.output_fd, 0, SEEK_SET);
Denys Vlasenko61441242012-06-17 19:52:25 +0200647 /* Done at the end instead: */
648 /* ftruncate(G.output_fd, 0); */
Denys Vlasenkobf146b82012-06-13 17:31:07 +0200649}
650
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200651#if ENABLE_FEATURE_WGET_OPENSSL
Denys Vlasenko2007ef52015-10-07 02:40:53 +0200652static int spawn_https_helper_openssl(const char *host, unsigned port)
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100653{
654 char *allocated = NULL;
Denys Vlasenkoed727612016-07-25 21:34:57 +0200655 char *servername;
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100656 int sp[2];
657 int pid;
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100658 IF_FEATURE_WGET_HTTPS(volatile int child_failed = 0;)
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100659
660 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) != 0)
661 /* Kernel can have AF_UNIX support disabled */
James Byrne69374872019-07-02 11:35:03 +0200662 bb_simple_perror_msg_and_die("socketpair");
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100663
664 if (!strchr(host, ':'))
665 host = allocated = xasprintf("%s:%u", host, port);
Denys Vlasenkoed727612016-07-25 21:34:57 +0200666 servername = xstrdup(host);
667 strrchr(servername, ':')[0] = '\0';
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100668
Denys Vlasenko2007ef52015-10-07 02:40:53 +0200669 fflush_all();
670 pid = xvfork();
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100671 if (pid == 0) {
672 /* Child */
Scott Courtfc2ce042020-06-29 14:30:12 +0200673 char *argv[13];
674 char **argp;
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100675
676 close(sp[0]);
677 xmove_fd(sp[1], 0);
678 xdup2(0, 1);
679 /*
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100680 * openssl s_client -quiet -connect www.kernel.org:443 2>/dev/null
681 * It prints some debug stuff on stderr, don't know how to suppress it.
682 * Work around by dev-nulling stderr. We lose all error messages :(
683 */
684 xmove_fd(2, 3);
685 xopen("/dev/null", O_RDWR);
Denys Vlasenkoed727612016-07-25 21:34:57 +0200686 memset(&argv, 0, sizeof(argv));
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100687 argv[0] = (char*)"openssl";
688 argv[1] = (char*)"s_client";
689 argv[2] = (char*)"-quiet";
690 argv[3] = (char*)"-connect";
691 argv[4] = (char*)host;
Denys Vlasenkoed727612016-07-25 21:34:57 +0200692 /*
693 * Per RFC 6066 Section 3, the only permitted values in the
694 * TLS server_name (SNI) field are FQDNs (DNS hostnames).
695 * IPv4 and IPv6 addresses, port numbers are not allowed.
696 */
Scott Courtfc2ce042020-06-29 14:30:12 +0200697 argp = &argv[5];
Denys Vlasenkoed727612016-07-25 21:34:57 +0200698 if (!is_ip_address(servername)) {
Scott Courtfc2ce042020-06-29 14:30:12 +0200699 *argp++ = (char*)"-servername"; //[5]
700 *argp++ = (char*)servername; //[6]
Denys Vlasenkoed727612016-07-25 21:34:57 +0200701 }
Dimitri John Ledkov45fa3f12020-05-19 18:20:39 +0100702 if (!(option_mask32 & WGET_OPT_NO_CHECK_CERT)) {
Scott Courtfc2ce042020-06-29 14:30:12 +0200703 /* Abort on bad server certificate */
704 *argp++ = (char*)"-verify"; //[7]
705 *argp++ = (char*)"100"; //[8]
706 *argp++ = (char*)"-verify_return_error"; //[9]
707 if (!is_ip_address(servername)) {
708 *argp++ = (char*)"-verify_hostname"; //[10]
709 *argp++ = (char*)servername; //[11]
710 } else {
711 *argp++ = (char*)"-verify_ip"; //[10]
712 *argp++ = (char*)host; //[11]
713 }
Dimitri John Ledkov45fa3f12020-05-19 18:20:39 +0100714 }
Scott Courtfc2ce042020-06-29 14:30:12 +0200715 //[12] (or earlier) is NULL terminator
Denys Vlasenkoed727612016-07-25 21:34:57 +0200716
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100717 BB_EXECVP(argv[0], argv);
718 xmove_fd(3, 2);
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100719# if ENABLE_FEATURE_WGET_HTTPS
Denys Vlasenko2007ef52015-10-07 02:40:53 +0200720 child_failed = 1;
721 xfunc_die();
722# else
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100723 bb_perror_msg_and_die("can't execute '%s'", argv[0]);
Denys Vlasenko2007ef52015-10-07 02:40:53 +0200724# endif
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100725 /* notreached */
726 }
727
Denys Vlasenko53315572014-02-23 23:39:47 +0100728 /* Parent */
Denys Vlasenkoed727612016-07-25 21:34:57 +0200729 free(servername);
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100730 free(allocated);
731 close(sp[1]);
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100732# if ENABLE_FEATURE_WGET_HTTPS
Denys Vlasenko2007ef52015-10-07 02:40:53 +0200733 if (child_failed) {
734 close(sp[0]);
735 return -1;
736 }
737# endif
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100738 return sp[0];
739}
Denys Vlasenko1c6c6702015-10-07 01:39:40 +0200740#endif
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +0100741
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100742#if ENABLE_FEATURE_WGET_HTTPS
Denys Vlasenko403f2992018-02-06 15:15:08 +0100743static void spawn_ssl_client(const char *host, int network_fd, int flags)
Denys Vlasenko53315572014-02-23 23:39:47 +0100744{
745 int sp[2];
746 int pid;
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100747 char *servername, *p;
748
Denys Vlasenkodbe95682018-11-13 12:00:19 +0100749 if (!(option_mask32 & WGET_OPT_NO_CHECK_CERT)) {
Denys Vlasenkodbe95682018-11-13 12:00:19 +0100750 option_mask32 |= WGET_OPT_NO_CHECK_CERT;
James Byrne69374872019-07-02 11:35:03 +0200751 bb_simple_error_msg("note: TLS certificate validation not implemented");
Denys Vlasenkodbe95682018-11-13 12:00:19 +0100752 }
Denys Vlasenko0972c7f2018-05-28 14:36:26 +0200753
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100754 servername = xstrdup(host);
755 p = strrchr(servername, ':');
756 if (p) *p = '\0';
Denys Vlasenko53315572014-02-23 23:39:47 +0100757
758 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) != 0)
759 /* Kernel can have AF_UNIX support disabled */
James Byrne69374872019-07-02 11:35:03 +0200760 bb_simple_perror_msg_and_die("socketpair");
Denys Vlasenko53315572014-02-23 23:39:47 +0100761
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100762 fflush_all();
Denys Vlasenko53315572014-02-23 23:39:47 +0100763 pid = BB_MMU ? xfork() : xvfork();
764 if (pid == 0) {
765 /* Child */
Denys Vlasenko53315572014-02-23 23:39:47 +0100766 close(sp[0]);
767 xmove_fd(sp[1], 0);
768 xdup2(0, 1);
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100769 if (BB_MMU) {
770 tls_state_t *tls = new_tls_state();
771 tls->ifd = tls->ofd = network_fd;
772 tls_handshake(tls, servername);
Denys Vlasenko403f2992018-02-06 15:15:08 +0100773 tls_run_copy_loop(tls, flags);
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100774 exit(0);
775 } else {
Denys Vlasenko403f2992018-02-06 15:15:08 +0100776 char *argv[6];
777
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100778 xmove_fd(network_fd, 3);
779 argv[0] = (char*)"ssl_client";
780 argv[1] = (char*)"-s3";
781 //TODO: if (!is_ip_address(servername))...
782 argv[2] = (char*)"-n";
783 argv[3] = servername;
Denys Vlasenko403f2992018-02-06 15:15:08 +0100784 argv[4] = (flags & TLSLOOP_EXIT_ON_LOCAL_EOF ? (char*)"-e" : NULL);
785 argv[5] = NULL;
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100786 BB_EXECVP(argv[0], argv);
787 bb_perror_msg_and_die("can't execute '%s'", argv[0]);
788 }
Denys Vlasenko53315572014-02-23 23:39:47 +0100789 /* notreached */
790 }
791
792 /* Parent */
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100793 free(servername);
Denys Vlasenko53315572014-02-23 23:39:47 +0100794 close(sp[1]);
795 xmove_fd(sp[0], network_fd);
796}
797#endif
798
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100799static FILE* prepare_ftp_session(FILE **dfpp, struct host_info *target, len_and_sockaddr *lsa)
800{
801 FILE *sfp;
Denys Vlasenko32c3e3a2018-04-07 13:22:52 +0200802 char *pass;
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100803 int port;
804
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100805 sfp = open_socket(lsa);
Denys Vlasenko403f2992018-02-06 15:15:08 +0100806#if ENABLE_FEATURE_WGET_HTTPS
807 if (target->protocol == P_FTPS)
808 spawn_ssl_client(target->host, fileno(sfp), TLSLOOP_EXIT_ON_LOCAL_EOF);
809#endif
810
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100811 if (ftpcmd(NULL, NULL, sfp) != 220)
James Byrne69374872019-07-02 11:35:03 +0200812 bb_simple_error_msg_and_die(G.wget_buf);
Denys Vlasenko34590242018-02-12 16:46:13 +0100813 /* note: ftpcmd() sanitizes G.wget_buf, ok to print */
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100814
Denys Vlasenko32c3e3a2018-04-07 13:22:52 +0200815 /* Split username:password pair */
816 pass = (char*)"busybox"; /* password for "anonymous" */
817 if (target->user) {
818 pass = strchr(target->user, ':');
819 if (pass)
820 *pass++ = '\0';
821 }
822
823 /* Log in */
824 switch (ftpcmd("USER ", target->user ?: "anonymous", sfp)) {
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100825 case 230:
826 break;
827 case 331:
Denys Vlasenko32c3e3a2018-04-07 13:22:52 +0200828 if (ftpcmd("PASS ", pass, sfp) == 230)
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100829 break;
830 /* fall through (failed login) */
831 default:
Denys Vlasenko34590242018-02-12 16:46:13 +0100832 bb_error_msg_and_die("ftp login: %s", G.wget_buf);
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100833 }
834
835 ftpcmd("TYPE I", NULL, sfp);
836
Denys Vlasenko32c3e3a2018-04-07 13:22:52 +0200837 /* Query file size */
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100838 if (ftpcmd("SIZE ", target->path, sfp) == 213) {
839 G.content_len = BB_STRTOOFF(G.wget_buf + 4, NULL, 10);
840 if (G.content_len < 0 || errno) {
Denys Vlasenko8e2174e2018-04-08 18:06:24 +0200841 bb_error_msg_and_die("bad SIZE value '%s'", G.wget_buf + 4);
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100842 }
843 G.got_clen = 1;
844 }
845
Denys Vlasenko32c3e3a2018-04-07 13:22:52 +0200846 /* Enter passive mode */
Denys Vlasenko1783ffa2018-02-06 15:48:12 +0100847 if (ENABLE_FEATURE_IPV6 && ftpcmd("EPSV", NULL, sfp) == 229) {
848 /* good */
849 } else
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100850 if (ftpcmd("PASV", NULL, sfp) != 227) {
851 pasv_error:
Denys Vlasenko34590242018-02-12 16:46:13 +0100852 bb_error_msg_and_die("bad response to %s: %s", "PASV", G.wget_buf);
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100853 }
Denys Vlasenko1783ffa2018-02-06 15:48:12 +0100854 port = parse_pasv_epsv(G.wget_buf);
855 if (port < 0)
856 goto pasv_error;
857
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100858 set_nport(&lsa->u.sa, htons(port));
859
860 *dfpp = open_socket(lsa);
861
Denys Vlasenko2b751572018-02-06 20:49:27 +0100862#if ENABLE_FEATURE_WGET_HTTPS
Denys Vlasenko237a9002018-02-08 00:28:30 +0100863 if (target->protocol == P_FTPS) {
864 /* "PROT P" enables encryption of data stream.
865 * Without it (or with "PROT C"), data is sent unencrypted.
866 */
867 if (ftpcmd("PROT P", NULL, sfp) == 200)
868 spawn_ssl_client(target->host, fileno(*dfpp), /*flags*/ 0);
869 }
Denys Vlasenko2b751572018-02-06 20:49:27 +0100870#endif
Denys Vlasenko403f2992018-02-06 15:15:08 +0100871
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100872 if (G.beg_range != 0) {
873 sprintf(G.wget_buf, "REST %"OFF_FMT"u", G.beg_range);
874 if (ftpcmd(G.wget_buf, NULL, sfp) == 350)
875 G.content_len -= G.beg_range;
876 else
877 reset_beg_range_to_zero();
878 }
879
Denys Vlasenko34590242018-02-12 16:46:13 +0100880//TODO: needs ftp-escaping 0xff and '\n' bytes here.
881//Or disallow '\n' altogether via sanitize_string() in parse_url().
882//But 0xff's are possible in valid utf8 filenames.
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100883 if (ftpcmd("RETR ", target->path, sfp) > 150)
Denys Vlasenko34590242018-02-12 16:46:13 +0100884 bb_error_msg_and_die("bad response to %s: %s", "RETR", G.wget_buf);
Denys Vlasenkoe9996572018-02-06 15:02:16 +0100885
886 return sfp;
887}
888
Denys Vlasenko2384a352011-02-15 00:58:36 +0100889static void NOINLINE retrieve_file_data(FILE *dfp)
Denys Vlasenko7f432802009-06-28 01:02:24 +0200890{
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200891#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
892# if ENABLE_FEATURE_WGET_TIMEOUT
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200893 unsigned second_cnt = G.timeout_seconds;
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200894# endif
895 struct pollfd polldata;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200896
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200897 polldata.fd = fileno(dfp);
898 polldata.events = POLLIN | POLLPRI;
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200899#endif
Martin Lewis94e748d2019-01-10 13:59:30 +0100900 if (!(option_mask32 & WGET_OPT_QUIET)) {
901 if (G.output_fd == 1)
902 fprintf(stderr, "writing to stdout\n");
903 else
904 fprintf(stderr, "saving to '%s'\n", G.fname_out);
905 }
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200906 progress_meter(PROGRESS_START);
Denys Vlasenko7f432802009-06-28 01:02:24 +0200907
908 if (G.chunked)
909 goto get_clen;
910
911 /* Loops only if chunked */
912 while (1) {
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100913
914#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
915 /* Must use nonblocking I/O, otherwise fread will loop
916 * and *block* until it reads full buffer,
917 * which messes up progress bar and/or timeout logic.
918 * Because of nonblocking I/O, we need to dance
919 * very carefully around EAGAIN. See explanation at
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200920 * clearerr() calls.
Denys Vlasenkoc60f4462011-02-11 22:23:23 +0100921 */
922 ndelay_on(polldata.fd);
923#endif
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100924 while (1) {
Denys Vlasenko7f432802009-06-28 01:02:24 +0200925 int n;
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100926 unsigned rdsz;
Denys Vlasenko7f432802009-06-28 01:02:24 +0200927
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200928#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
Denys Vlasenko8766a792011-02-11 21:42:00 +0100929 /* fread internally uses read loop, which in our case
930 * is usually exited when we get EAGAIN.
931 * In this case, libc sets error marker on the stream.
932 * Need to clear it before next fread to avoid possible
933 * rare false positive ferror below. Rare because usually
934 * fread gets more than zero bytes, and we don't fall
935 * into if (n <= 0) ...
936 */
937 clearerr(dfp);
Denys Vlasenkof9af3752011-02-11 22:01:33 +0100938#endif
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200939 errno = 0;
940 rdsz = sizeof(G.wget_buf);
941 if (G.got_clen) {
942 if (G.content_len < (off_t)sizeof(G.wget_buf)) {
943 if ((int)G.content_len <= 0)
944 break;
945 rdsz = (unsigned)G.content_len;
946 }
947 }
Denys Vlasenko0fac2f72011-02-10 09:55:05 +0100948 n = fread(G.wget_buf, 1, rdsz, dfp);
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200949
950 if (n > 0) {
951 xwrite(G.output_fd, G.wget_buf, n);
952#if ENABLE_FEATURE_WGET_STATUSBAR
953 G.transferred += n;
954#endif
955 if (G.got_clen) {
956 G.content_len -= n;
957 if (G.content_len == 0)
958 break;
959 }
960#if ENABLE_FEATURE_WGET_TIMEOUT
961 second_cnt = G.timeout_seconds;
962#endif
Denys Vlasenkofaa9e942014-03-27 16:50:29 +0100963 goto bump;
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200964 }
965
966 /* n <= 0.
967 * man fread:
Denys Vlasenko8766a792011-02-11 21:42:00 +0100968 * If error occurs, or EOF is reached, the return value
969 * is a short item count (or zero).
970 * fread does not distinguish between EOF and error.
971 */
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200972 if (errno != EAGAIN) {
973 if (ferror(dfp)) {
974 progress_meter(PROGRESS_END);
James Byrne69374872019-07-02 11:35:03 +0200975 bb_simple_perror_msg_and_die(bb_msg_read_error);
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200976 }
Denys Vlasenko8766a792011-02-11 21:42:00 +0100977 break; /* EOF, not error */
Denys Vlasenko7f432802009-06-28 01:02:24 +0200978 }
Denys Vlasenko8766a792011-02-11 21:42:00 +0100979
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200980#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
981 /* It was EAGAIN. There is no data. Wait up to one second
982 * then abort if timed out, or update the bar and try reading again.
983 */
984 if (safe_poll(&polldata, 1, 1000) == 0) {
985# if ENABLE_FEATURE_WGET_TIMEOUT
986 if (second_cnt != 0 && --second_cnt == 0) {
987 progress_meter(PROGRESS_END);
James Byrne69374872019-07-02 11:35:03 +0200988 bb_simple_error_msg_and_die("download timed out");
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200989 }
990# endif
991 /* We used to loop back to poll here,
992 * but there is no great harm in letting fread
993 * to try reading anyway.
994 */
995 }
Denys Vlasenkofaa9e942014-03-27 16:50:29 +0100996#endif
997 bump:
Denys Vlasenkob7812ce2012-09-03 12:49:30 +0200998 /* Need to do it _every_ second for "stalled" indicator
999 * to be shown properly.
1000 */
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +02001001 progress_meter(PROGRESS_BUMP);
Denys Vlasenkob7812ce2012-09-03 12:49:30 +02001002 } /* while (reading data) */
1003
Denys Vlasenkoc60f4462011-02-11 22:23:23 +01001004#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT
1005 clearerr(dfp);
Denys Vlasenko88ad9da2011-02-11 23:06:21 +01001006 ndelay_off(polldata.fd); /* else fgets can get very unhappy */
Denys Vlasenkoc60f4462011-02-11 22:23:23 +01001007#endif
Denys Vlasenko7f432802009-06-28 01:02:24 +02001008 if (!G.chunked)
1009 break;
1010
Denys Vlasenko8e2174e2018-04-08 18:06:24 +02001011 /* Each chunk ends with "\r\n" - eat it */
Denys Vlasenko34590242018-02-12 16:46:13 +01001012 fgets_trim_sanitize(dfp, NULL);
Denys Vlasenko8e2174e2018-04-08 18:06:24 +02001013 get_clen:
1014 /* chunk size format is "HEXNUM[;name[=val]]\r\n" */
1015 fgets_trim_sanitize(dfp, NULL);
1016 errno = 0;
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001017 G.content_len = STRTOOFF(G.wget_buf, NULL, 16);
Denys Vlasenko8e2174e2018-04-08 18:06:24 +02001018 /*
1019 * Had a bug with inputs like "ffffffff0001f400"
1020 * smashing the heap later. Ensure >= 0.
1021 */
1022 if (G.content_len < 0 || errno)
1023 bb_error_msg_and_die("bad chunk length '%s'", G.wget_buf);
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001024 if (G.content_len == 0)
Denys Vlasenko7f432802009-06-28 01:02:24 +02001025 break; /* all done! */
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001026 G.got_clen = 1;
Denys Vlasenkob7812ce2012-09-03 12:49:30 +02001027 /*
1028 * Note that fgets may result in some data being buffered in dfp.
1029 * We loop back to fread, which will retrieve this data.
1030 * Also note that code has to be arranged so that fread
1031 * is done _before_ one-second poll wait - poll doesn't know
1032 * about stdio buffering and can result in spurious one second waits!
1033 */
Denys Vlasenko7f432802009-06-28 01:02:24 +02001034 }
1035
Denys Vlasenko9b313dd2019-01-21 13:53:26 +01001036 /* Draw full bar and free its resources */
1037 G.chunked = 0; /* makes it show 100% even for chunked download */
1038 G.got_clen = 1; /* makes it show 100% even for download of (formerly) unknown size */
1039 progress_meter(PROGRESS_END);
1040 if (G.content_len != 0) {
James Byrne69374872019-07-02 11:35:03 +02001041 bb_simple_perror_msg_and_die("connection closed prematurely");
Denys Vlasenko9b313dd2019-01-21 13:53:26 +01001042 /* GNU wget says "DATE TIME (NN MB/s) - Connection closed at byte NNN. Retrying." */
1043 }
1044
Denys Vlasenko61441242012-06-17 19:52:25 +02001045 /* If -c failed, we restart from the beginning,
1046 * but we do not truncate file then, we do it only now, at the end.
1047 * This lets user to ^C if his 99% complete 10 GB file download
1048 * failed to restart *without* losing the almost complete file.
1049 */
1050 {
1051 off_t pos = lseek(G.output_fd, 0, SEEK_CUR);
Denys Vlasenkoe7d853b2020-12-08 19:06:28 +01001052 if (pos != (off_t)-1) {
1053 /* do not truncate if -O- is in use, a user complained about
1054 * "wget -qO- 'http://example.com/empty' >>FILE" truncating FILE.
1055 */
1056 if (!(option_mask32 & WGET_NO_FTRUNCATE))
1057 ftruncate(G.output_fd, pos);
1058 }
Denys Vlasenko61441242012-06-17 19:52:25 +02001059 }
1060
Martin Lewis94e748d2019-01-10 13:59:30 +01001061 if (!(option_mask32 & WGET_OPT_QUIET)) {
1062 if (G.output_fd == 1)
1063 fprintf(stderr, "written to stdout\n");
1064 else
1065 fprintf(stderr, "'%s' saved\n", G.fname_out);
1066 }
Denys Vlasenko7f432802009-06-28 01:02:24 +02001067}
1068
Pere Orga53695632011-02-16 20:09:36 +01001069static void download_one_url(const char *url)
Eric Andersen96700832000-09-04 15:15:55 +00001070{
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001071 bool use_proxy; /* Use proxies if env vars are set */
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001072 int redir_limit;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001073 len_and_sockaddr *lsa;
Denys Vlasenko7f432802009-06-28 01:02:24 +02001074 FILE *sfp; /* socket to web/ftp server */
Denis Vlasenkoa36535b2007-09-27 15:07:23 +00001075 FILE *dfp; /* socket to ftp server (data) */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001076 char *fname_out_alloc;
Denys Vlasenko93b4a602011-12-18 05:11:56 +01001077 char *redirected_path = NULL;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001078 struct host_info server;
1079 struct host_info target;
Denis Vlasenko77105632007-09-24 15:04:00 +00001080
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001081 server.allocated = NULL;
1082 target.allocated = NULL;
1083 server.user = NULL;
Vladimir Dronnikovbe168b12009-10-05 02:18:01 +02001084 target.user = NULL;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001085
1086 parse_url(url, &target);
Eric Andersen79757c92001-04-05 21:45:54 +00001087
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +00001088 /* Use the proxy if necessary */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001089 use_proxy = (strcmp(G.proxy_flag, "off") != 0);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +00001090 if (use_proxy) {
Peter Lloyd804ce5a2018-03-05 00:17:02 +01001091 char *proxy = getenv(target.protocol[0] == 'f' ? "ftp_proxy" : "http_proxy");
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +01001092//FIXME: what if protocol is https? Ok to use http_proxy?
Denys Vlasenko2384a352011-02-15 00:58:36 +01001093 use_proxy = (proxy && proxy[0]);
1094 if (use_proxy)
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +00001095 parse_url(proxy, &server);
Robert Griebld7760112002-05-14 23:36:45 +00001096 }
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +02001097 if (!use_proxy) {
Peter Lloyd804ce5a2018-03-05 00:17:02 +01001098 server.protocol = target.protocol;
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +02001099 server.port = target.port;
1100 if (ENABLE_FEATURE_IPV6) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001101 //free(server.allocated); - can't be non-NULL
1102 server.host = server.allocated = xstrdup(target.host);
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +02001103 } else {
1104 server.host = target.host;
1105 }
1106 }
1107
1108 if (ENABLE_FEATURE_IPV6)
1109 strip_ipv6_scope_id(target.host);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001110
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001111 /* If there was no -O FILE, guess output filename */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001112 fname_out_alloc = NULL;
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +01001113 if (!(option_mask32 & WGET_OPT_OUTNAME)) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001114 G.fname_out = bb_get_last_path_component_nostrip(target.path);
Denis Vlasenko818322b2007-09-24 18:27:04 +00001115 /* handle "wget http://kernel.org//" */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001116 if (G.fname_out[0] == '/' || !G.fname_out[0])
1117 G.fname_out = (char*)"index.html";
Denis Vlasenko818322b2007-09-24 18:27:04 +00001118 /* -P DIR is considered only if there was no -O FILE */
Denys Vlasenkoaacd4482012-06-17 20:21:30 +02001119 if (G.dir_prefix)
1120 G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, G.fname_out);
Denys Vlasenko625f2182011-03-21 00:29:37 +01001121 else {
Denys Vlasenkoaacd4482012-06-17 20:21:30 +02001122 /* redirects may free target.path later, need to make a copy */
1123 G.fname_out = fname_out_alloc = xstrdup(G.fname_out);
Denys Vlasenko625f2182011-03-21 00:29:37 +01001124 }
Eric Andersen29edd002000-12-09 16:55:35 +00001125 }
Denis Vlasenko818322b2007-09-24 18:27:04 +00001126#if ENABLE_FEATURE_WGET_STATUSBAR
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001127 G.curfile = bb_get_last_path_component_nostrip(G.fname_out);
Denis Vlasenko818322b2007-09-24 18:27:04 +00001128#endif
1129
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +00001130 /* Determine where to start transfer */
Denys Vlasenko2384a352011-02-15 00:58:36 +01001131 G.beg_range = 0;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001132 if (option_mask32 & WGET_OPT_CONTINUE) {
Denys Vlasenko2384a352011-02-15 00:58:36 +01001133 G.output_fd = open(G.fname_out, O_WRONLY);
1134 if (G.output_fd >= 0) {
1135 G.beg_range = xlseek(G.output_fd, 0, SEEK_END);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +00001136 }
1137 /* File doesn't exist. We do not create file here yet.
Denys Vlasenkoa84eadf2011-02-12 23:40:31 +01001138 * We are not sure it exists on remote side */
Eric Andersen96700832000-09-04 15:15:55 +00001139 }
1140
David Demelier4a9daf22019-08-29 14:05:27 +02001141 redir_limit = 16;
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001142 resolve_lsa:
Denis Vlasenko42823d52007-02-04 02:39:08 +00001143 lsa = xhost2sockaddr(server.host, server.port);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001144 if (!(option_mask32 & WGET_OPT_QUIET)) {
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001145 char *s = xmalloc_sockaddr2dotted(&lsa->u.sa);
1146 fprintf(stderr, "Connecting to %s (%s)\n", server.host, s);
1147 free(s);
Eric Andersene6dc4392003-10-31 09:31:46 +00001148 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001149 establish_session:
Denys Vlasenko2384a352011-02-15 00:58:36 +01001150 /*G.content_len = 0; - redundant, got_clen = 0 is enough */
1151 G.got_clen = 0;
1152 G.chunked = 0;
Denys Vlasenko403f2992018-02-06 15:15:08 +01001153 if (use_proxy || target.protocol[0] != 'f' /*not ftp[s]*/) {
Eric Andersen79757c92001-04-05 21:45:54 +00001154 /*
1155 * HTTP session
1156 */
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001157 char *str;
Denys Vlasenko7f432802009-06-28 01:02:24 +02001158 int status;
Denys Vlasenko7f432802009-06-28 01:02:24 +02001159
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +01001160 /* Open socket to http(s) server */
Denys Vlasenko1c6c6702015-10-07 01:39:40 +02001161#if ENABLE_FEATURE_WGET_OPENSSL
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001162 /* openssl (and maybe internal TLS) support is configured */
Peter Lloyd804ce5a2018-03-05 00:17:02 +01001163 if (server.protocol == P_HTTPS) {
Denys Vlasenko1c6c6702015-10-07 01:39:40 +02001164 /* openssl-based helper
1165 * Inconvenient API since we can't give it an open fd
1166 */
Denys Vlasenko2007ef52015-10-07 02:40:53 +02001167 int fd = spawn_https_helper_openssl(server.host, server.port);
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001168# if ENABLE_FEATURE_WGET_HTTPS
1169 if (fd < 0) { /* no openssl? try internal */
Denys Vlasenko2007ef52015-10-07 02:40:53 +02001170 sfp = open_socket(lsa);
Denys Vlasenko403f2992018-02-06 15:15:08 +01001171 spawn_ssl_client(server.host, fileno(sfp), /*flags*/ 0);
Denys Vlasenko2007ef52015-10-07 02:40:53 +02001172 goto socket_opened;
1173 }
1174# else
1175 /* We don't check for exec("openssl") failure in this case */
1176# endif
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +01001177 sfp = fdopen(fd, "r+");
1178 if (!sfp)
Denys Vlasenko899ae532018-04-01 19:59:37 +02001179 bb_die_memory_exhausted();
Denys Vlasenko2007ef52015-10-07 02:40:53 +02001180 goto socket_opened;
1181 }
1182 sfp = open_socket(lsa);
1183 socket_opened:
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001184#elif ENABLE_FEATURE_WGET_HTTPS
1185 /* Only internal TLS support is configured */
Denys Vlasenko2007ef52015-10-07 02:40:53 +02001186 sfp = open_socket(lsa);
Peter Lloyd804ce5a2018-03-05 00:17:02 +01001187 if (server.protocol == P_HTTPS)
Denys Vlasenko403f2992018-02-06 15:15:08 +01001188 spawn_ssl_client(server.host, fileno(sfp), /*flags*/ 0);
Denys Vlasenko2007ef52015-10-07 02:40:53 +02001189#else
1190 /* ssl (https) support is not configured */
1191 sfp = open_socket(lsa);
Denys Vlasenko53315572014-02-23 23:39:47 +01001192#endif
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001193 /* Send HTTP request */
1194 if (use_proxy) {
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001195 SENDFMT(sfp, "GET %s://%s/%s HTTP/1.1\r\n",
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +01001196 target.protocol, target.host,
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001197 target.path);
1198 } else {
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001199 SENDFMT(sfp, "%s /%s HTTP/1.1\r\n",
Denys Vlasenko8b7e8ae2014-02-22 14:12:29 +01001200 (option_mask32 & WGET_OPT_POST_DATA) ? "POST" : "GET",
1201 target.path);
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001202 }
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001203 if (!USR_HEADER_HOST)
1204 SENDFMT(sfp, "Host: %s\r\n", target.host);
1205 if (!USR_HEADER_USER_AGENT)
1206 SENDFMT(sfp, "User-Agent: %s\r\n", G.user_agent);
Eric Andersen79757c92001-04-05 21:45:54 +00001207
Denys Vlasenko9213a552011-02-10 13:23:45 +01001208 /* Ask server to close the connection as soon as we are done
1209 * (IOW: we do not intend to send more requests)
1210 */
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001211 SENDFMT(sfp, "Connection: close\r\n");
Denys Vlasenko9213a552011-02-10 13:23:45 +01001212
Denis Vlasenko9cade082006-11-21 10:43:02 +00001213#if ENABLE_FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001214 if (target.user && !USR_HEADER_AUTH) {
1215 SENDFMT(sfp, "Proxy-Authorization: Basic %s\r\n"+6,
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001216 base64enc(target.user));
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001217 }
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001218 if (use_proxy && server.user && !USR_HEADER_PROXY_AUTH) {
1219 SENDFMT(sfp, "Proxy-Authorization: Basic %s\r\n",
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001220 base64enc(server.user));
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001221 }
Eric Andersen79757c92001-04-05 21:45:54 +00001222#endif
1223
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001224 if (G.beg_range != 0 && !USR_HEADER_RANGE)
1225 SENDFMT(sfp, "Range: bytes=%"OFF_FMT"u-\r\n", G.beg_range);
Denys Vlasenko9213a552011-02-10 13:23:45 +01001226
Denis Vlasenkoc8400a22006-10-25 00:33:44 +00001227#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001228 if (G.extra_headers) {
1229 log_io(G.extra_headers);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001230 fputs(G.extra_headers, sfp);
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001231 }
Denis Vlasenko5a2ad692009-03-04 14:13:37 +00001232
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001233 if (option_mask32 & WGET_OPT_POST_DATA) {
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001234 SENDFMT(sfp,
Denys Vlasenko9213a552011-02-10 13:23:45 +01001235 "Content-Type: application/x-www-form-urlencoded\r\n"
1236 "Content-Length: %u\r\n"
1237 "\r\n"
1238 "%s",
Vitaly Magerya700fbc32011-03-27 22:33:13 +02001239 (int) strlen(G.post_data), G.post_data
Denys Vlasenko9213a552011-02-10 13:23:45 +01001240 );
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001241 } else
Denis Vlasenkoc8400a22006-10-25 00:33:44 +00001242#endif
Denys Vlasenko9213a552011-02-10 13:23:45 +01001243 {
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001244 SENDFMT(sfp, "\r\n");
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001245 }
Eric Andersen79757c92001-04-05 21:45:54 +00001246
Nguyễn Thái Ngọc Duyebec11d2010-09-23 15:18:41 +02001247 fflush(sfp);
Denys Vlasenkoa6f86512017-01-11 20:16:45 +01001248
Denys Vlasenko4e08a122017-01-16 17:31:05 +01001249/* Tried doing this unconditionally.
1250 * Cloudflare and nginx/1.11.5 are shocked to see SHUT_WR on non-HTTPS.
1251 */
Denys Vlasenkoa6f86512017-01-11 20:16:45 +01001252#if SSL_SUPPORTED
1253 if (target.protocol == P_HTTPS) {
1254 /* If we use SSL helper, keeping our end of the socket open for writing
1255 * makes our end (i.e. the same fd!) readable (EAGAIN instead of EOF)
1256 * even after child closes its copy of the fd.
1257 * This helps:
1258 */
1259 shutdown(fileno(sfp), SHUT_WR);
1260 }
1261#endif
Nguyễn Thái Ngọc Duyebec11d2010-09-23 15:18:41 +02001262
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001263 /*
1264 * Retrieve HTTP response line and check for "200" status code.
1265 */
Denis Vlasenko023b57d2006-10-15 17:05:55 +00001266 read_response:
Denys Vlasenko34590242018-02-12 16:46:13 +01001267 fgets_trim_sanitize(sfp, " %s\n");
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001268
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001269 str = G.wget_buf;
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001270 str = skip_non_whitespace(str);
1271 str = skip_whitespace(str);
1272 // FIXME: no error check
1273 // xatou wouldn't work: "200 OK"
1274 status = atoi(str);
1275 switch (status) {
1276 case 0:
1277 case 100:
Denys Vlasenko34590242018-02-12 16:46:13 +01001278 while (get_sanitized_hdr(sfp) != NULL)
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001279 /* eat all remaining headers */;
1280 goto read_response;
Denys Vlasenko9ff910d2016-08-31 13:28:53 +02001281
1282 /* Success responses */
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001283 case 200:
Denys Vlasenko9ff910d2016-08-31 13:28:53 +02001284 /* fall through */
1285 case 201: /* 201 Created */
1286/* "The request has been fulfilled and resulted in a new resource being created" */
Denys Vlasenkoef159702016-09-01 11:16:22 +02001287 /* Standard wget is reported to treat this as success */
Denys Vlasenko9ff910d2016-08-31 13:28:53 +02001288 /* fall through */
1289 case 202: /* 202 Accepted */
1290/* "The request has been accepted for processing, but the processing has not been completed" */
1291 /* Treat as success: fall through */
1292 case 203: /* 203 Non-Authoritative Information */
1293/* "Use of this response code is not required and is only appropriate when the response would otherwise be 200 (OK)" */
1294 /* fall through */
1295 case 204: /* 204 No Content */
Denis Vlasenko50b5cac2008-06-22 16:28:02 +00001296/*
1297Response 204 doesn't say "null file", it says "metadata
1298has changed but data didn't":
1299
1300"10.2.5 204 No Content
1301The server has fulfilled the request but does not need to return
1302an entity-body, and might want to return updated metainformation.
1303The response MAY include new or updated metainformation in the form
1304of entity-headers, which if present SHOULD be associated with
1305the requested variant.
1306
1307If the client is a user agent, it SHOULD NOT change its document
1308view from that which caused the request to be sent. This response
1309is primarily intended to allow input for actions to take place
1310without causing a change to the user agent's active document view,
1311although any new or updated metainformation SHOULD be applied
1312to the document currently in the user agent's active view.
1313
1314The 204 response MUST NOT include a message-body, and thus
1315is always terminated by the first empty line after the header fields."
1316
1317However, in real world it was observed that some web servers
1318(e.g. Boa/0.94.14rc21) simply use code 204 when file size is zero.
1319*/
Denys Vlasenkobf146b82012-06-13 17:31:07 +02001320 if (G.beg_range != 0) {
1321 /* "Range:..." was not honored by the server.
1322 * Restart download from the beginning.
1323 */
1324 reset_beg_range_to_zero();
1325 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001326 break;
Denys Vlasenko9ff910d2016-08-31 13:28:53 +02001327 /* 205 Reset Content ?? what to do on this ?? */
1328
Denys Vlasenkofb132e42010-10-29 11:46:52 +02001329 case 300: /* redirection */
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001330 case 301:
1331 case 302:
1332 case 303:
1333 break;
Denys Vlasenko9ff910d2016-08-31 13:28:53 +02001334
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +02001335 case 206: /* Partial Content */
1336 if (G.beg_range != 0)
1337 /* "Range:..." worked. Good. */
Denis Vlasenko023b57d2006-10-15 17:05:55 +00001338 break;
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +02001339 /* Partial Content even though we did not ask for it??? */
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001340 /* fall through */
1341 default:
Denys Vlasenko34590242018-02-12 16:46:13 +01001342 bb_error_msg_and_die("server returned error: %s", G.wget_buf);
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001343 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001344
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001345 /*
1346 * Retrieve HTTP headers.
1347 */
Denys Vlasenko34590242018-02-12 16:46:13 +01001348 while ((str = get_sanitized_hdr(sfp)) != NULL) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001349 static const char keywords[] ALIGN1 =
1350 "content-length\0""transfer-encoding\0""location\0";
1351 enum {
1352 KEY_content_length = 1, KEY_transfer_encoding, KEY_location
1353 };
Matthijs van de Water0d586662009-08-22 20:19:48 +02001354 smalluint key;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001355
Denys Vlasenko34590242018-02-12 16:46:13 +01001356 /* get_sanitized_hdr converted "FOO:" string to lowercase */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001357
Matthijs van de Water0d586662009-08-22 20:19:48 +02001358 /* strip trailing whitespace */
1359 char *s = strchrnul(str, '\0') - 1;
1360 while (s >= str && (*s == ' ' || *s == '\t')) {
1361 *s = '\0';
1362 s--;
1363 }
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001364 key = index_in_strings(keywords, G.wget_buf) + 1;
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001365 if (key == KEY_content_length) {
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001366 G.content_len = BB_STRTOOFF(str, NULL, 10);
1367 if (G.content_len < 0 || errno) {
Denys Vlasenko34590242018-02-12 16:46:13 +01001368 bb_error_msg_and_die("content-length %s is garbage", str);
Eric Andersen79757c92001-04-05 21:45:54 +00001369 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001370 G.got_clen = 1;
1371 continue;
1372 }
1373 if (key == KEY_transfer_encoding) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001374 if (strcmp(str_tolower(str), "chunked") != 0)
Denys Vlasenko34590242018-02-12 16:46:13 +01001375 bb_error_msg_and_die("transfer encoding '%s' is not supported", str);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001376 G.chunked = 1;
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001377 }
1378 if (key == KEY_location && status >= 300) {
1379 if (--redir_limit == 0)
James Byrne69374872019-07-02 11:35:03 +02001380 bb_simple_error_msg_and_die("too many redirections");
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001381 fclose(sfp);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001382 if (str[0] == '/') {
Denys Vlasenko93b4a602011-12-18 05:11:56 +01001383 free(redirected_path);
Denys Vlasenko34590242018-02-12 16:46:13 +01001384 target.path = redirected_path = xstrdup(str + 1);
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001385 /* lsa stays the same: it's on the same server */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001386 } else {
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001387 parse_url(str, &target);
1388 if (!use_proxy) {
Denys Vlasenkod353bff2014-02-03 14:09:42 +01001389 /* server.user remains untouched */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001390 free(server.allocated);
Pere Orga57b49092011-02-14 23:56:07 +01001391 server.allocated = NULL;
Denys Vlasenko9634e8a2018-07-02 18:31:02 +02001392 server.protocol = target.protocol;
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001393 server.host = target.host;
Denys Vlasenko7d5ddf12009-06-30 20:36:27 +02001394 /* strip_ipv6_scope_id(target.host); - no! */
1395 /* we assume remote never gives us IPv6 addr with scope id */
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001396 server.port = target.port;
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001397 free(lsa);
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001398 goto resolve_lsa;
1399 } /* else: lsa stays the same: we use proxy */
Eric Andersen79757c92001-04-05 21:45:54 +00001400 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001401 goto establish_session;
Eric Andersen79757c92001-04-05 21:45:54 +00001402 }
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001403 }
1404// if (status >= 300)
1405// bb_error_msg_and_die("bad redirection (no Location: header from server)");
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001406
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001407 /* For HTTP, data is pumped over the same connection */
Eric Andersen79757c92001-04-05 21:45:54 +00001408 dfp = sfp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +00001409 } else {
Eric Andersen79757c92001-04-05 21:45:54 +00001410 /*
1411 * FTP session
1412 */
Denys Vlasenko7f432802009-06-28 01:02:24 +02001413 sfp = prepare_ftp_session(&dfp, &target, lsa);
Eric Andersen96700832000-09-04 15:15:55 +00001414 }
Denis Vlasenko77105632007-09-24 15:04:00 +00001415
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001416 free(lsa);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001417
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +01001418 if (!(option_mask32 & WGET_OPT_SPIDER)) {
Denys Vlasenko2384a352011-02-15 00:58:36 +01001419 if (G.output_fd < 0)
1420 G.output_fd = xopen(G.fname_out, G.o_flags);
1421 retrieve_file_data(dfp);
1422 if (!(option_mask32 & WGET_OPT_OUTNAME)) {
1423 xclose(G.output_fd);
1424 G.output_fd = -1;
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +01001425 }
Martin Lewis46fc3292019-01-04 18:26:04 +01001426 } else {
Martin Lewis94e748d2019-01-10 13:59:30 +01001427 if (!(option_mask32 & WGET_OPT_QUIET))
1428 fprintf(stderr, "remote file exists\n");
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +00001429 }
Eric Andersen79757c92001-04-05 21:45:54 +00001430
Denys Vlasenkof1fab092009-06-28 03:33:57 +02001431 if (dfp != sfp) {
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001432 /* It's ftp. Close data connection properly */
Eric Andersen79757c92001-04-05 21:45:54 +00001433 fclose(dfp);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001434 if (ftpcmd(NULL, NULL, sfp) != 226)
Denys Vlasenko34590242018-02-12 16:46:13 +01001435 bb_error_msg_and_die("ftp error: %s", G.wget_buf);
Denys Vlasenkodf4e16c2011-02-10 06:29:06 +01001436 /* ftpcmd("QUIT", NULL, sfp); - why bother? */
Eric Andersen79757c92001-04-05 21:45:54 +00001437 }
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001438 fclose(sfp);
Denis Vlasenko77105632007-09-24 15:04:00 +00001439
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +01001440 free(server.allocated);
1441 free(target.allocated);
Denys Vlasenkod353bff2014-02-03 14:09:42 +01001442 free(server.user);
1443 free(target.user);
Denys Vlasenko9a5b7f62011-02-13 02:49:43 +01001444 free(fname_out_alloc);
Denys Vlasenko93b4a602011-12-18 05:11:56 +01001445 free(redirected_path);
Eric Andersen96700832000-09-04 15:15:55 +00001446}
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001447
1448int wget_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1449int wget_main(int argc UNUSED_PARAM, char **argv)
1450{
1451#if ENABLE_FEATURE_WGET_LONG_OPTIONS
1452 static const char wget_longopts[] ALIGN1 =
1453 /* name, has_arg, val */
1454 "continue\0" No_argument "c"
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001455 "quiet\0" No_argument "q"
Denys Vlasenkodff9fef2017-01-24 21:41:43 +01001456 "server-response\0" No_argument "S"
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001457 "output-document\0" Required_argument "O"
Martin Lewis64f35362018-12-26 16:28:45 +01001458 "output-file\0" Required_argument "o"
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001459 "directory-prefix\0" Required_argument "P"
1460 "proxy\0" Required_argument "Y"
1461 "user-agent\0" Required_argument "U"
Denys Vlasenko92e1b082015-10-20 21:51:52 +02001462IF_FEATURE_WGET_TIMEOUT(
1463 "timeout\0" Required_argument "T")
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001464 /* Ignored: */
Denys Vlasenko92e1b082015-10-20 21:51:52 +02001465IF_DESKTOP( "tries\0" Required_argument "t")
1466 "header\0" Required_argument "\xff"
1467 "post-data\0" Required_argument "\xfe"
Denys Vlasenko2972e2c2016-10-04 04:23:09 +02001468 "spider\0" No_argument "\xfd"
Denys Vlasenko0972c7f2018-05-28 14:36:26 +02001469 "no-check-certificate\0" No_argument "\xfc"
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001470 /* Ignored (we always use PASV): */
Denys Vlasenko92e1b082015-10-20 21:51:52 +02001471IF_DESKTOP( "passive-ftp\0" No_argument "\xf0")
Vladimir Dronnikovf5abc782012-06-13 17:29:41 +02001472 /* Ignored (we don't support caching) */
Denys Vlasenko92e1b082015-10-20 21:51:52 +02001473IF_DESKTOP( "no-cache\0" No_argument "\xf0")
1474IF_DESKTOP( "no-verbose\0" No_argument "\xf0")
1475IF_DESKTOP( "no-clobber\0" No_argument "\xf0")
1476IF_DESKTOP( "no-host-directories\0" No_argument "\xf0")
1477IF_DESKTOP( "no-parent\0" No_argument "\xf0")
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001478 ;
Denys Vlasenko036585a2017-08-08 16:38:18 +02001479# define GETOPT32 getopt32long
1480# define LONGOPTS ,wget_longopts
1481#else
1482# define GETOPT32 getopt32
1483# define LONGOPTS
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001484#endif
1485
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001486#if ENABLE_FEATURE_WGET_LONG_OPTIONS
1487 llist_t *headers_llist = NULL;
1488#endif
1489
1490 INIT_G();
1491
Lauri Kasanend074b412013-10-12 21:47:07 +02001492#if ENABLE_FEATURE_WGET_TIMEOUT
1493 G.timeout_seconds = 900;
1494 signal(SIGALRM, alarm_handler);
1495#endif
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001496 G.proxy_flag = "on"; /* use proxies if env vars are set */
1497 G.user_agent = "Wget"; /* "User-Agent" header field */
1498
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001499 GETOPT32(argv, "^"
Martin Lewis64f35362018-12-26 16:28:45 +01001500 "cqSO:o:P:Y:U:T:+"
Denys Vlasenko92e1b082015-10-20 21:51:52 +02001501 /*ignored:*/ "t:"
1502 /*ignored:*/ "n::"
1503 /* wget has exactly four -n<letter> opts, all of which we can ignore:
1504 * -nv --no-verbose: be moderately quiet (-q is full quiet)
1505 * -nc --no-clobber: abort if exists, neither download to FILE.n nor overwrite FILE
1506 * -nH --no-host-directories: wget -r http://host/ won't create host/
1507 * -np --no-parent
1508 * "n::" above says that we accept -n[ARG].
1509 * Specifying "n:" would be a bug: "-n ARG" would eat ARG!
1510 */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001511 "\0"
1512 "-1" /* at least one URL */
1513 IF_FEATURE_WGET_LONG_OPTIONS(":\xff::") /* --header is a list */
Denys Vlasenko036585a2017-08-08 16:38:18 +02001514 LONGOPTS
Martin Lewis64f35362018-12-26 16:28:45 +01001515 , &G.fname_out, &G.fname_log, &G.dir_prefix,
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001516 &G.proxy_flag, &G.user_agent,
1517 IF_FEATURE_WGET_TIMEOUT(&G.timeout_seconds) IF_NOT_FEATURE_WGET_TIMEOUT(NULL),
Denys Vlasenko92e1b082015-10-20 21:51:52 +02001518 NULL, /* -t RETRIES */
1519 NULL /* -n[ARG] */
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001520 IF_FEATURE_WGET_LONG_OPTIONS(, &headers_llist)
1521 IF_FEATURE_WGET_LONG_OPTIONS(, &G.post_data)
1522 );
Denys Vlasenko2972e2c2016-10-04 04:23:09 +02001523#if 0 /* option bits debug */
1524 if (option_mask32 & WGET_OPT_RETRIES) bb_error_msg("-t NUM");
1525 if (option_mask32 & WGET_OPT_nsomething) bb_error_msg("-nsomething");
1526 if (option_mask32 & WGET_OPT_HEADER) bb_error_msg("--header");
1527 if (option_mask32 & WGET_OPT_POST_DATA) bb_error_msg("--post-data");
1528 if (option_mask32 & WGET_OPT_SPIDER) bb_error_msg("--spider");
Denys Vlasenko0972c7f2018-05-28 14:36:26 +02001529 if (option_mask32 & WGET_OPT_NO_CHECK_CERT) bb_error_msg("--no-check-certificate");
Denys Vlasenko2972e2c2016-10-04 04:23:09 +02001530 exit(0);
1531#endif
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001532 argv += optind;
1533
1534#if ENABLE_FEATURE_WGET_LONG_OPTIONS
1535 if (headers_llist) {
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001536 int size = 0;
1537 char *hdr;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001538 llist_t *ll = headers_llist;
1539 while (ll) {
1540 size += strlen(ll->data) + 2;
1541 ll = ll->link;
1542 }
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001543 G.extra_headers = hdr = xmalloc(size + 1);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001544 while (headers_llist) {
Bernhard Reutner-Fischerd7bfee12015-02-18 20:41:02 +01001545 int bit;
1546 const char *words;
1547
1548 size = sprintf(hdr, "%s\r\n",
1549 (char*)llist_pop(&headers_llist));
1550 /* a bit like index_in_substrings but don't match full key */
1551 bit = 1;
1552 words = wget_user_headers;
1553 while (*words) {
1554 if (strstr(hdr, words) == hdr) {
1555 G.user_headers |= bit;
1556 break;
1557 }
1558 bit <<= 1;
1559 words += strlen(words) + 1;
1560 }
1561 hdr += size;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001562 }
1563 }
1564#endif
1565
Denys Vlasenko2384a352011-02-15 00:58:36 +01001566 G.output_fd = -1;
1567 G.o_flags = O_WRONLY | O_CREAT | O_TRUNC | O_EXCL;
1568 if (G.fname_out) { /* -O FILE ? */
1569 if (LONE_DASH(G.fname_out)) { /* -O - ? */
1570 G.output_fd = 1;
Denys Vlasenkoe7d853b2020-12-08 19:06:28 +01001571 option_mask32 = (option_mask32 & (~WGET_OPT_CONTINUE)) | WGET_NO_FTRUNCATE;
Denys Vlasenko2384a352011-02-15 00:58:36 +01001572 }
1573 /* compat with wget: -O FILE can overwrite */
1574 G.o_flags = O_WRONLY | O_CREAT | O_TRUNC;
1575 }
1576
Martin Lewis64f35362018-12-26 16:28:45 +01001577 G.log_fd = -1;
1578 if (G.fname_log) { /* -o FILE ? */
1579 if (!LONE_DASH(G.fname_log)) { /* not -o - ? */
1580 /* compat with wget: -o FILE can overwrite */
1581 G.log_fd = xopen(G.fname_log, O_WRONLY | O_CREAT | O_TRUNC);
1582 /* Redirect only stderr to log file, so -O - will work */
1583 xdup2(G.log_fd, STDERR_FILENO);
1584 }
1585 }
1586
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001587 while (*argv)
Pere Orga53695632011-02-16 20:09:36 +01001588 download_one_url(*argv++);
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001589
Denys Vlasenko28556b92011-02-15 11:03:53 +01001590 if (G.output_fd >= 0)
1591 xclose(G.output_fd);
1592
Martin Lewis64f35362018-12-26 16:28:45 +01001593 if (G.log_fd >= 0)
1594 xclose(G.log_fd);
1595
Guilherme Maciel Ferreira840ef172013-10-16 14:43:30 +02001596#if ENABLE_FEATURE_CLEAN_UP && ENABLE_FEATURE_WGET_LONG_OPTIONS
1597 free(G.extra_headers);
1598#endif
1599 FINI_G();
1600
Pere Orga53695632011-02-16 20:09:36 +01001601 return EXIT_SUCCESS;
Denys Vlasenkoa3661092011-02-13 02:33:11 +01001602}