Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 3 | * wget - retrieve a file using HTTP or FTP |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 5 | * Chip Rosenthal Covad Communications <chip@laserlink.net> |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 6 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 7 | * |
| 8 | * Copyright (C) 2010 Bradley M. Kuhn <bkuhn@ebb.org> |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 9 | * Kuhn's copyrights are licensed GPLv2-or-later. File as a whole remains GPLv2. |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 10 | */ |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 11 | //config:config WGET |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 12 | //config: bool "wget (35 kb)" |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 13 | //config: default y |
| 14 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 15 | //config: wget is a utility for non-interactive download of files from HTTP |
| 16 | //config: and FTP servers. |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 17 | //config: |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 18 | //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 Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 23 | //config:config FEATURE_WGET_STATUSBAR |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 24 | //config: bool "Enable progress bar (+2k)" |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 25 | //config: default y |
| 26 | //config: depends on WGET |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 27 | //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 Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 33 | //config: Support authenticated HTTP transfers. |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 34 | //config: |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 35 | //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 Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 40 | //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 Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 43 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 44 | //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 Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 48 | //config: |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 49 | //config:config FEATURE_WGET_HTTPS |
| 50 | //config: bool "Support HTTPS using internal TLS code" |
| 51 | //config: default y |
| 52 | //config: depends on WGET |
| 53 | //config: select TLS |
| 54 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 55 | //config: wget will use internal TLS code to connect to https:// URLs. |
| 56 | //config: Note: |
| 57 | //config: On NOMMU machines, ssl_helper applet should be available |
| 58 | //config: in the $PATH for this to work. Make sure to select that applet. |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 59 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 60 | //config: Note: currently, TLS code only makes TLS I/O work, it |
| 61 | //config: does *not* check that the peer is who it claims to be, etc. |
| 62 | //config: IOW: it uses peer-supplied public keys to establish encryption |
| 63 | //config: and signing keys, then encrypts and signs outgoing data and |
| 64 | //config: decrypts incoming data. |
| 65 | //config: It does not check signature hashes on the incoming data: |
| 66 | //config: this means that attackers manipulating TCP packets can |
| 67 | //config: send altered data and we unknowingly receive garbage. |
| 68 | //config: (This check might be relatively easy to add). |
| 69 | //config: It does not check public key's certificate: |
| 70 | //config: this means that the peer may be an attacker impersonating |
| 71 | //config: the server we think we are talking to. |
Denys Vlasenko | 67f6db6 | 2017-01-30 16:27:37 +0100 | [diff] [blame] | 72 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 73 | //config: If you think this is unacceptable, consider this. As more and more |
| 74 | //config: servers switch to HTTPS-only operation, without such "crippled" |
| 75 | //config: TLS code it is *impossible* to simply download a kernel source |
| 76 | //config: from kernel.org. Which can in real world translate into |
| 77 | //config: "my small automatic tooling to build cross-compilers from sources |
| 78 | //config: no longer works, I need to additionally keep a local copy |
| 79 | //config: of ~4 megabyte source tarball of a SSL library and ~2 megabyte |
| 80 | //config: source of wget, need to compile and built both before I can |
| 81 | //config: download anything. All this despite the fact that the build |
| 82 | //config: is done in a QEMU sandbox on a machine with absolutely nothing |
| 83 | //config: worth stealing, so I don't care if someone would go to a lot |
| 84 | //config: of trouble to intercept my HTTPS download to send me an altered |
| 85 | //config: kernel tarball". |
Denys Vlasenko | 67f6db6 | 2017-01-30 16:27:37 +0100 | [diff] [blame] | 86 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 87 | //config: If you still think this is unacceptable, send patches. |
Denys Vlasenko | 67f6db6 | 2017-01-30 16:27:37 +0100 | [diff] [blame] | 88 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 89 | //config: If you still think this is unacceptable, do not want to send |
| 90 | //config: patches, but do want to waste bandwidth expaining how wrong |
| 91 | //config: it is, you will be ignored. |
Denys Vlasenko | 67f6db6 | 2017-01-30 16:27:37 +0100 | [diff] [blame] | 92 | //config: |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 93 | //config:config FEATURE_WGET_OPENSSL |
| 94 | //config: bool "Try to connect to HTTPS using openssl" |
| 95 | //config: default y |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 96 | //config: depends on WGET |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 97 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 98 | //config: Try to use openssl to handle HTTPS. |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 99 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 100 | //config: OpenSSL has a simple SSL client for debug purposes. |
| 101 | //config: If you select this option, wget will effectively run: |
| 102 | //config: "openssl s_client -quiet -connect hostname:443 |
| 103 | //config: -servername hostname 2>/dev/null" and pipe its data |
| 104 | //config: through it. -servername is not used if hostname is numeric. |
| 105 | //config: Note inconvenient API: host resolution is done twice, |
| 106 | //config: and there is no guarantee openssl's idea of IPv6 address |
| 107 | //config: format is the same as ours. |
| 108 | //config: Another problem is that s_client prints debug information |
| 109 | //config: to stderr, and it needs to be suppressed. This means |
| 110 | //config: all error messages get suppressed too. |
| 111 | //config: openssl is also a big binary, often dynamically linked |
| 112 | //config: against ~15 libraries. |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 113 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 114 | //config: If openssl can't be executed, internal TLS code will be used |
| 115 | //config: (if you enabled it); if openssl can be executed but fails later, |
| 116 | //config: wget can't detect this, and download will fail. |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 117 | |
| 118 | //applet:IF_WGET(APPLET(wget, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 119 | |
| 120 | //kbuild:lib-$(CONFIG_WGET) += wget.o |
| 121 | |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 122 | //usage:#define wget_trivial_usage |
| 123 | //usage: IF_FEATURE_WGET_LONG_OPTIONS( |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 124 | //usage: "[-c|--continue] [--spider] [-q|--quiet] [-O|--output-document FILE]\n" |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 125 | //usage: " [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 126 | /* Since we ignore these opts, we don't show them in --help */ |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 127 | /* //usage: " [--no-check-certificate] [--no-cache] [--passive-ftp] [-t TRIES]" */ |
| 128 | /* //usage: " [-nv] [-nc] [-nH] [-np]" */ |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 129 | //usage: " [-S|--server-response] [-U|--user-agent AGENT]" IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 130 | //usage: ) |
| 131 | //usage: IF_NOT_FEATURE_WGET_LONG_OPTIONS( |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 132 | //usage: "[-cq] [-O FILE] [-Y on/off] [-P DIR] [-S] [-U AGENT]" |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 133 | //usage: IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." |
| 134 | //usage: ) |
| 135 | //usage:#define wget_full_usage "\n\n" |
| 136 | //usage: "Retrieve files via HTTP or FTP\n" |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 137 | //usage: IF_FEATURE_WGET_LONG_OPTIONS( |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 138 | //usage: "\n --spider Only check URL existence: $? is 0 if exists" |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 139 | //usage: ) |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 140 | //usage: "\n -c Continue retrieval of aborted transfer" |
| 141 | //usage: "\n -q Quiet" |
| 142 | //usage: "\n -P DIR Save to DIR (default .)" |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 143 | //usage: "\n -S Show server response" |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 144 | //usage: IF_FEATURE_WGET_TIMEOUT( |
| 145 | //usage: "\n -T SEC Network read timeout is SEC seconds" |
| 146 | //usage: ) |
| 147 | //usage: "\n -O FILE Save to FILE ('-' for stdout)" |
| 148 | //usage: "\n -U STR Use STR for User-Agent header" |
| 149 | //usage: "\n -Y on/off Use proxy" |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 150 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 151 | #include "libbb.h" |
Denis Vlasenko | a552eeb | 2006-09-26 09:22:12 +0000 | [diff] [blame] | 152 | |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 153 | #if 0 |
| 154 | # define log_io(...) bb_error_msg(__VA_ARGS__) |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 155 | # define SENDFMT(fp, fmt, ...) \ |
| 156 | do { \ |
| 157 | log_io("> " fmt, ##__VA_ARGS__); \ |
| 158 | fprintf(fp, fmt, ##__VA_ARGS__); \ |
| 159 | } while (0); |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 160 | #else |
| 161 | # define log_io(...) ((void)0) |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 162 | # define SENDFMT(fp, fmt, ...) fprintf(fp, fmt, ##__VA_ARGS__) |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 163 | #endif |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 164 | |
| 165 | |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 166 | #define SSL_SUPPORTED (ENABLE_FEATURE_WGET_OPENSSL || ENABLE_FEATURE_WGET_HTTPS) |
Denys Vlasenko | a6f8651 | 2017-01-11 20:16:45 +0100 | [diff] [blame] | 167 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 168 | struct host_info { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 169 | char *allocated; |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 170 | const char *path; |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 171 | char *user; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 172 | const char *protocol; |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 173 | char *host; |
| 174 | int port; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 175 | }; |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 176 | static const char P_FTP[] ALIGN1 = "ftp"; |
| 177 | static const char P_HTTP[] ALIGN1 = "http"; |
Denys Vlasenko | a6f8651 | 2017-01-11 20:16:45 +0100 | [diff] [blame] | 178 | #if SSL_SUPPORTED |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 179 | static const char P_HTTPS[] ALIGN1 = "https"; |
Ron Yorston | 4d0c1ea | 2015-10-12 10:51:25 +0100 | [diff] [blame] | 180 | #endif |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 181 | |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 182 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 183 | /* User-specified headers prevent using our corresponding built-in headers. */ |
| 184 | enum { |
| 185 | HDR_HOST = (1<<0), |
| 186 | HDR_USER_AGENT = (1<<1), |
| 187 | HDR_RANGE = (1<<2), |
| 188 | HDR_AUTH = (1<<3) * ENABLE_FEATURE_WGET_AUTHENTICATION, |
| 189 | HDR_PROXY_AUTH = (1<<4) * ENABLE_FEATURE_WGET_AUTHENTICATION, |
| 190 | }; |
| 191 | static const char wget_user_headers[] ALIGN1 = |
| 192 | "Host:\0" |
| 193 | "User-Agent:\0" |
| 194 | "Range:\0" |
| 195 | # if ENABLE_FEATURE_WGET_AUTHENTICATION |
| 196 | "Authorization:\0" |
| 197 | "Proxy-Authorization:\0" |
| 198 | # endif |
| 199 | ; |
| 200 | # define USR_HEADER_HOST (G.user_headers & HDR_HOST) |
| 201 | # define USR_HEADER_USER_AGENT (G.user_headers & HDR_USER_AGENT) |
| 202 | # define USR_HEADER_RANGE (G.user_headers & HDR_RANGE) |
| 203 | # define USR_HEADER_AUTH (G.user_headers & HDR_AUTH) |
| 204 | # define USR_HEADER_PROXY_AUTH (G.user_headers & HDR_PROXY_AUTH) |
| 205 | #else /* No long options, no user-headers :( */ |
| 206 | # define USR_HEADER_HOST 0 |
| 207 | # define USR_HEADER_USER_AGENT 0 |
| 208 | # define USR_HEADER_RANGE 0 |
| 209 | # define USR_HEADER_AUTH 0 |
| 210 | # define USR_HEADER_PROXY_AUTH 0 |
| 211 | #endif |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 212 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 213 | /* Globals */ |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 214 | struct globals { |
| 215 | off_t content_len; /* Content-length of the file */ |
| 216 | off_t beg_range; /* Range at which continue begins */ |
| 217 | #if ENABLE_FEATURE_WGET_STATUSBAR |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 218 | off_t transferred; /* Number of bytes transferred so far */ |
| 219 | const char *curfile; /* Name of current file being transferred */ |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 220 | bb_progress_t pmt; |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 221 | #endif |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 222 | char *dir_prefix; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 223 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 224 | char *post_data; |
| 225 | char *extra_headers; |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 226 | unsigned char user_headers; /* Headers mentioned by the user */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 227 | #endif |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 228 | char *fname_out; /* where to direct output (-O) */ |
| 229 | const char *proxy_flag; /* Use proxies if env vars are set */ |
| 230 | const char *user_agent; /* "User-Agent" header field */ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 231 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 232 | unsigned timeout_seconds; |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 233 | bool die_if_timed_out; |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 234 | #endif |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 235 | int output_fd; |
| 236 | int o_flags; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 237 | smallint chunked; /* chunked transfer encoding */ |
| 238 | smallint got_clen; /* got content-length: from server */ |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 239 | /* Local downloads do benefit from big buffer. |
| 240 | * With 512 byte buffer, it was measured to be |
| 241 | * an order of magnitude slower than with big one. |
| 242 | */ |
| 243 | uint64_t just_to_align_next_member; |
| 244 | char wget_buf[CONFIG_FEATURE_COPYBUF_KB*1024]; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 245 | } FIX_ALIASING; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 246 | #define G (*ptr_to_globals) |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 247 | #define INIT_G() do { \ |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 248 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 249 | } while (0) |
Guilherme Maciel Ferreira | 840ef17 | 2013-10-16 14:43:30 +0200 | [diff] [blame] | 250 | #define FINI_G() do { \ |
| 251 | FREE_PTR_TO_GLOBALS(); \ |
| 252 | } while (0) |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 253 | |
| 254 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 255 | /* Must match option string! */ |
| 256 | enum { |
| 257 | WGET_OPT_CONTINUE = (1 << 0), |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 258 | WGET_OPT_QUIET = (1 << 1), |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 259 | WGET_OPT_SERVER_RESPONSE = (1 << 2), |
| 260 | WGET_OPT_OUTNAME = (1 << 3), |
| 261 | WGET_OPT_PREFIX = (1 << 4), |
| 262 | WGET_OPT_PROXY = (1 << 5), |
| 263 | WGET_OPT_USER_AGENT = (1 << 6), |
| 264 | WGET_OPT_NETWORK_READ_TIMEOUT = (1 << 7), |
| 265 | WGET_OPT_RETRIES = (1 << 8), |
| 266 | WGET_OPT_nsomething = (1 << 9), |
| 267 | WGET_OPT_HEADER = (1 << 10) * ENABLE_FEATURE_WGET_LONG_OPTIONS, |
| 268 | WGET_OPT_POST_DATA = (1 << 11) * ENABLE_FEATURE_WGET_LONG_OPTIONS, |
| 269 | WGET_OPT_SPIDER = (1 << 12) * ENABLE_FEATURE_WGET_LONG_OPTIONS, |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 270 | }; |
| 271 | |
| 272 | enum { |
| 273 | PROGRESS_START = -1, |
| 274 | PROGRESS_END = 0, |
| 275 | PROGRESS_BUMP = 1, |
| 276 | }; |
Denis Vlasenko | 9cade08 | 2006-11-21 10:43:02 +0000 | [diff] [blame] | 277 | #if ENABLE_FEATURE_WGET_STATUSBAR |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 278 | static void progress_meter(int flag) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 279 | { |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 280 | if (option_mask32 & WGET_OPT_QUIET) |
| 281 | return; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 282 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 283 | if (flag == PROGRESS_START) |
Denys Vlasenko | d55e139 | 2011-02-11 18:56:13 +0100 | [diff] [blame] | 284 | bb_progress_init(&G.pmt, G.curfile); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 285 | |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 286 | bb_progress_update(&G.pmt, |
| 287 | G.beg_range, |
| 288 | G.transferred, |
| 289 | (G.chunked || !G.got_clen) ? 0 : G.beg_range + G.transferred + G.content_len |
| 290 | ); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 291 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 292 | if (flag == PROGRESS_END) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 293 | bb_progress_free(&G.pmt); |
Denys Vlasenko | 19ced5c | 2010-06-06 21:53:09 +0200 | [diff] [blame] | 294 | bb_putchar_stderr('\n'); |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 295 | G.transferred = 0; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 296 | } |
| 297 | } |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 298 | #else |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 299 | static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) { } |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 300 | #endif |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 301 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 302 | |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 303 | /* IPv6 knows scoped address types i.e. link and site local addresses. Link |
| 304 | * local addresses can have a scope identifier to specify the |
| 305 | * interface/link an address is valid on (e.g. fe80::1%eth0). This scope |
| 306 | * identifier is only valid on a single node. |
| 307 | * |
| 308 | * RFC 4007 says that the scope identifier MUST NOT be sent across the wire, |
| 309 | * unless all nodes agree on the semantic. Apache e.g. regards zone identifiers |
| 310 | * in the Host header as invalid requests, see |
| 311 | * https://issues.apache.org/bugzilla/show_bug.cgi?id=35122 |
| 312 | */ |
| 313 | static void strip_ipv6_scope_id(char *host) |
| 314 | { |
| 315 | char *scope, *cp; |
| 316 | |
| 317 | /* bbox wget actually handles IPv6 addresses without [], like |
| 318 | * wget "http://::1/xxx", but this is not standard. |
| 319 | * To save code, _here_ we do not support it. */ |
| 320 | |
| 321 | if (host[0] != '[') |
| 322 | return; /* not IPv6 */ |
| 323 | |
| 324 | scope = strchr(host, '%'); |
| 325 | if (!scope) |
| 326 | return; |
| 327 | |
| 328 | /* Remove the IPv6 zone identifier from the host address */ |
| 329 | cp = strchr(host, ']'); |
| 330 | if (!cp || (cp[1] != ':' && cp[1] != '\0')) { |
| 331 | /* malformed address (not "[xx]:nn" or "[xx]") */ |
| 332 | return; |
| 333 | } |
| 334 | |
| 335 | /* cp points to "]...", scope points to "%eth0]..." */ |
| 336 | overlapping_strcpy(scope, cp); |
| 337 | } |
| 338 | |
Denis Vlasenko | 9cade08 | 2006-11-21 10:43:02 +0000 | [diff] [blame] | 339 | #if ENABLE_FEATURE_WGET_AUTHENTICATION |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 340 | /* Base64-encode character string. */ |
| 341 | static char *base64enc(const char *str) |
Denis Vlasenko | 3526a13 | 2006-09-09 12:20:57 +0000 | [diff] [blame] | 342 | { |
Denis Vlasenko | 12d2129 | 2007-06-27 21:40:07 +0000 | [diff] [blame] | 343 | unsigned len = strlen(str); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 344 | if (len > sizeof(G.wget_buf)/4*3 - 10) /* paranoia */ |
| 345 | len = sizeof(G.wget_buf)/4*3 - 10; |
| 346 | bb_uuencode(G.wget_buf, str, len, bb_uuenc_tbl_base64); |
| 347 | return G.wget_buf; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 348 | } |
| 349 | #endif |
| 350 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 351 | static char* sanitize_string(char *s) |
| 352 | { |
| 353 | unsigned char *p = (void *) s; |
| 354 | while (*p >= ' ') |
| 355 | p++; |
| 356 | *p = '\0'; |
| 357 | return s; |
| 358 | } |
| 359 | |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 360 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 361 | static void alarm_handler(int sig UNUSED_PARAM) |
| 362 | { |
| 363 | /* This is theoretically unsafe (uses stdio and malloc in signal handler) */ |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 364 | if (G.die_if_timed_out) |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 365 | bb_error_msg_and_die("download timed out"); |
| 366 | } |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 367 | static void set_alarm(void) |
| 368 | { |
| 369 | if (G.timeout_seconds) { |
| 370 | alarm(G.timeout_seconds); |
| 371 | G.die_if_timed_out = 1; |
| 372 | } |
| 373 | } |
| 374 | # define clear_alarm() ((void)(G.die_if_timed_out = 0)) |
| 375 | #else |
| 376 | # define set_alarm() ((void)0) |
| 377 | # define clear_alarm() ((void)0) |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 378 | #endif |
| 379 | |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 380 | #if ENABLE_FEATURE_WGET_OPENSSL |
| 381 | /* |
| 382 | * is_ip_address() attempts to verify whether or not a string |
| 383 | * contains an IPv4 or IPv6 address (vs. an FQDN). The result |
| 384 | * of inet_pton() can be used to determine this. |
| 385 | * |
| 386 | * TODO add proper error checking when inet_pton() returns -1 |
| 387 | * (some form of system error has occurred, and errno is set) |
| 388 | */ |
| 389 | static int is_ip_address(const char *string) |
| 390 | { |
| 391 | struct sockaddr_in sa; |
| 392 | |
| 393 | int result = inet_pton(AF_INET, string, &(sa.sin_addr)); |
| 394 | # if ENABLE_FEATURE_IPV6 |
| 395 | if (result == 0) { |
| 396 | struct sockaddr_in6 sa6; |
| 397 | result = inet_pton(AF_INET6, string, &(sa6.sin6_addr)); |
| 398 | } |
| 399 | # endif |
| 400 | return (result == 1); |
| 401 | } |
| 402 | #endif |
| 403 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 404 | static FILE *open_socket(len_and_sockaddr *lsa) |
| 405 | { |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 406 | int fd; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 407 | FILE *fp; |
| 408 | |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 409 | set_alarm(); |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 410 | fd = xconnect_stream(lsa); |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 411 | clear_alarm(); |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 412 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 413 | /* glibc 2.4 seems to try seeking on it - ??! */ |
| 414 | /* hopefully it understands what ESPIPE means... */ |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 415 | fp = fdopen(fd, "r+"); |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 416 | if (!fp) |
Denys Vlasenko | dee0fc9 | 2011-02-10 10:01:49 +0100 | [diff] [blame] | 417 | bb_perror_msg_and_die(bb_msg_memory_exhausted); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 418 | |
| 419 | return fp; |
| 420 | } |
| 421 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 422 | /* Returns '\n' if it was seen, else '\0'. Trims at first '\r' or '\n' */ |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 423 | static char fgets_and_trim(FILE *fp, const char *fmt) |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 424 | { |
| 425 | char c; |
| 426 | char *buf_ptr; |
| 427 | |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 428 | set_alarm(); |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 429 | if (fgets(G.wget_buf, sizeof(G.wget_buf) - 1, fp) == NULL) |
| 430 | bb_perror_msg_and_die("error getting response"); |
Denys Vlasenko | 6701e91 | 2016-03-17 15:58:16 +0100 | [diff] [blame] | 431 | clear_alarm(); |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 432 | |
| 433 | buf_ptr = strchrnul(G.wget_buf, '\n'); |
| 434 | c = *buf_ptr; |
| 435 | *buf_ptr = '\0'; |
| 436 | buf_ptr = strchrnul(G.wget_buf, '\r'); |
| 437 | *buf_ptr = '\0'; |
| 438 | |
| 439 | log_io("< %s", G.wget_buf); |
| 440 | |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 441 | if (fmt && (option_mask32 & WGET_OPT_SERVER_RESPONSE)) |
| 442 | fprintf(stderr, fmt, G.wget_buf); |
| 443 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 444 | return c; |
| 445 | } |
| 446 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 447 | static int ftpcmd(const char *s1, const char *s2, FILE *fp) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 448 | { |
| 449 | int result; |
| 450 | if (s1) { |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 451 | if (!s2) |
| 452 | s2 = ""; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 453 | fprintf(fp, "%s%s\r\n", s1, s2); |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 454 | /* With --server-response, wget also shows its ftp commands */ |
| 455 | if (option_mask32 & WGET_OPT_SERVER_RESPONSE) |
| 456 | fprintf(stderr, "--> %s%s\n\n", s1, s2); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 457 | fflush(fp); |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 458 | log_io("> %s%s", s1, s2); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | do { |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 462 | fgets_and_trim(fp, "%s\n"); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 463 | } while (!isdigit(G.wget_buf[0]) || G.wget_buf[3] != ' '); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 464 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 465 | G.wget_buf[3] = '\0'; |
| 466 | result = xatoi_positive(G.wget_buf); |
| 467 | G.wget_buf[3] = ' '; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 468 | return result; |
| 469 | } |
| 470 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 471 | static void parse_url(const char *src_url, struct host_info *h) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 472 | { |
| 473 | char *url, *p, *sp; |
| 474 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 475 | free(h->allocated); |
| 476 | h->allocated = url = xstrdup(src_url); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 477 | |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 478 | h->protocol = P_FTP; |
| 479 | p = strstr(url, "://"); |
| 480 | if (p) { |
| 481 | *p = '\0'; |
| 482 | h->host = p + 3; |
| 483 | if (strcmp(url, P_FTP) == 0) { |
| 484 | h->port = bb_lookup_port(P_FTP, "tcp", 21); |
| 485 | } else |
Denys Vlasenko | a6f8651 | 2017-01-11 20:16:45 +0100 | [diff] [blame] | 486 | #if SSL_SUPPORTED |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 487 | if (strcmp(url, P_HTTPS) == 0) { |
| 488 | h->port = bb_lookup_port(P_HTTPS, "tcp", 443); |
| 489 | h->protocol = P_HTTPS; |
| 490 | } else |
Ron Yorston | 4d0c1ea | 2015-10-12 10:51:25 +0100 | [diff] [blame] | 491 | #endif |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 492 | if (strcmp(url, P_HTTP) == 0) { |
Lauri Kasanen | 4967a41 | 2013-12-17 19:03:41 +0100 | [diff] [blame] | 493 | http: |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 494 | h->port = bb_lookup_port(P_HTTP, "tcp", 80); |
| 495 | h->protocol = P_HTTP; |
| 496 | } else { |
| 497 | *p = ':'; |
| 498 | bb_error_msg_and_die("not an http or ftp url: %s", sanitize_string(url)); |
| 499 | } |
| 500 | } else { |
Lauri Kasanen | 4967a41 | 2013-12-17 19:03:41 +0100 | [diff] [blame] | 501 | // GNU wget is user-friendly and falls back to http:// |
| 502 | h->host = url; |
| 503 | goto http; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 504 | } |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 505 | |
| 506 | // FYI: |
| 507 | // "Real" wget 'http://busybox.net?var=a/b' sends this request: |
Denys Vlasenko | a0aae9f | 2017-01-20 14:12:10 +0100 | [diff] [blame] | 508 | // 'GET /?var=a/b HTTP/1.0' |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 509 | // and saves 'index.html?var=a%2Fb' (we save 'b') |
| 510 | // wget 'http://busybox.net?login=john@doe': |
| 511 | // request: 'GET /?login=john@doe HTTP/1.0' |
| 512 | // saves: 'index.html?login=john@doe' (we save '?login=john@doe') |
| 513 | // wget 'http://busybox.net#test/test': |
| 514 | // request: 'GET / HTTP/1.0' |
| 515 | // saves: 'index.html' (we save 'test') |
| 516 | // |
| 517 | // We also don't add unique .N suffix if file exists... |
| 518 | sp = strchr(h->host, '/'); |
| 519 | p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p; |
| 520 | p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p; |
| 521 | if (!sp) { |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 522 | h->path = ""; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 523 | } else if (*sp == '/') { |
| 524 | *sp = '\0'; |
| 525 | h->path = sp + 1; |
| 526 | } else { // '#' or '?' |
| 527 | // http://busybox.net?login=john@doe is a valid URL |
| 528 | // memmove converts to: |
| 529 | // http:/busybox.nett?login=john@doe... |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 530 | memmove(h->host - 1, h->host, sp - h->host); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 531 | h->host--; |
| 532 | sp[-1] = '\0'; |
| 533 | h->path = sp; |
| 534 | } |
| 535 | |
| 536 | sp = strrchr(h->host, '@'); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 537 | if (sp != NULL) { |
Denys Vlasenko | dd1061b | 2011-09-11 21:04:02 +0200 | [diff] [blame] | 538 | // URL-decode "user:password" string before base64-encoding: |
| 539 | // wget http://test:my%20pass@example.com should send |
| 540 | // Authorization: Basic dGVzdDpteSBwYXNz |
| 541 | // which decodes to "test:my pass". |
| 542 | // Standard wget and curl do this too. |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 543 | *sp = '\0'; |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 544 | free(h->user); |
| 545 | h->user = xstrdup(percent_decode_in_place(h->host, /*strict:*/ 0)); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 546 | h->host = sp + 1; |
| 547 | } |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 548 | /* else: h->user remains NULL, or as set by original request |
| 549 | * before redirect (if we are here after a redirect). |
| 550 | */ |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 553 | static char *gethdr(FILE *fp) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 554 | { |
| 555 | char *s, *hdrval; |
| 556 | int c; |
| 557 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 558 | /* retrieve header line */ |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 559 | c = fgets_and_trim(fp, " %s\n"); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 560 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 561 | /* end of the headers? */ |
| 562 | if (G.wget_buf[0] == '\0') |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 563 | return NULL; |
| 564 | |
| 565 | /* convert the header name to lower case */ |
Denys Vlasenko | ea267d5 | 2013-07-01 15:01:50 +0200 | [diff] [blame] | 566 | for (s = G.wget_buf; isalnum(*s) || *s == '-' || *s == '.' || *s == '_'; ++s) { |
| 567 | /* |
| 568 | * No-op for 20-3f and 60-7f. "0-9a-z-." are in these ranges. |
| 569 | * 40-5f range ("@A-Z[\]^_") maps to 60-7f. |
| 570 | * "A-Z" maps to "a-z". |
| 571 | * "@[\]" can't occur in header names. |
| 572 | * "^_" maps to "~,DEL" (which is wrong). |
| 573 | * "^" was never seen yet, "_" was seen from web.archive.org |
| 574 | * (x-archive-orig-x_commoncrawl_Signature: HEXSTRING). |
| 575 | */ |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 576 | *s |= 0x20; |
Denys Vlasenko | 4836331 | 2010-04-04 15:29:32 +0200 | [diff] [blame] | 577 | } |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 578 | |
| 579 | /* verify we are at the end of the header name */ |
| 580 | if (*s != ':') |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 581 | bb_error_msg_and_die("bad header line: %s", sanitize_string(G.wget_buf)); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 582 | |
| 583 | /* locate the start of the header value */ |
| 584 | *s++ = '\0'; |
| 585 | hdrval = skip_whitespace(s); |
| 586 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 587 | if (c != '\n') { |
| 588 | /* Rats! The buffer isn't big enough to hold the entire header value */ |
| 589 | while (c = getc(fp), c != EOF && c != '\n') |
| 590 | continue; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 593 | return hdrval; |
| 594 | } |
| 595 | |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 596 | static void reset_beg_range_to_zero(void) |
| 597 | { |
Denys Vlasenko | 6144124 | 2012-06-17 19:52:25 +0200 | [diff] [blame] | 598 | bb_error_msg("restart failed"); |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 599 | G.beg_range = 0; |
| 600 | xlseek(G.output_fd, 0, SEEK_SET); |
Denys Vlasenko | 6144124 | 2012-06-17 19:52:25 +0200 | [diff] [blame] | 601 | /* Done at the end instead: */ |
| 602 | /* ftruncate(G.output_fd, 0); */ |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 603 | } |
| 604 | |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 605 | static FILE* prepare_ftp_session(FILE **dfpp, struct host_info *target, len_and_sockaddr *lsa) |
| 606 | { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 607 | FILE *sfp; |
| 608 | char *str; |
| 609 | int port; |
| 610 | |
| 611 | if (!target->user) |
| 612 | target->user = xstrdup("anonymous:busybox@"); |
| 613 | |
| 614 | sfp = open_socket(lsa); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 615 | if (ftpcmd(NULL, NULL, sfp) != 220) |
| 616 | bb_error_msg_and_die("%s", sanitize_string(G.wget_buf + 4)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 617 | |
| 618 | /* |
| 619 | * Splitting username:password pair, |
| 620 | * trying to log in |
| 621 | */ |
| 622 | str = strchr(target->user, ':'); |
| 623 | if (str) |
| 624 | *str++ = '\0'; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 625 | switch (ftpcmd("USER ", target->user, sfp)) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 626 | case 230: |
| 627 | break; |
| 628 | case 331: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 629 | if (ftpcmd("PASS ", str, sfp) == 230) |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 630 | break; |
| 631 | /* fall through (failed login) */ |
| 632 | default: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 633 | bb_error_msg_and_die("ftp login: %s", sanitize_string(G.wget_buf + 4)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 634 | } |
| 635 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 636 | ftpcmd("TYPE I", NULL, sfp); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 637 | |
| 638 | /* |
| 639 | * Querying file size |
| 640 | */ |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 641 | if (ftpcmd("SIZE ", target->path, sfp) == 213) { |
| 642 | G.content_len = BB_STRTOOFF(G.wget_buf + 4, NULL, 10); |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 643 | if (G.content_len < 0 || errno) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 644 | bb_error_msg_and_die("SIZE value is garbage"); |
| 645 | } |
| 646 | G.got_clen = 1; |
| 647 | } |
| 648 | |
| 649 | /* |
| 650 | * Entering passive mode |
| 651 | */ |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 652 | if (ftpcmd("PASV", NULL, sfp) != 227) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 653 | pasv_error: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 654 | bb_error_msg_and_die("bad response to %s: %s", "PASV", sanitize_string(G.wget_buf)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 655 | } |
| 656 | // Response is "227 garbageN1,N2,N3,N4,P1,P2[)garbage] |
| 657 | // Server's IP is N1.N2.N3.N4 (we ignore it) |
| 658 | // Server's port for data connection is P1*256+P2 |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 659 | str = strrchr(G.wget_buf, ')'); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 660 | if (str) str[0] = '\0'; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 661 | str = strrchr(G.wget_buf, ','); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 662 | if (!str) goto pasv_error; |
| 663 | port = xatou_range(str+1, 0, 255); |
| 664 | *str = '\0'; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 665 | str = strrchr(G.wget_buf, ','); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 666 | if (!str) goto pasv_error; |
| 667 | port += xatou_range(str+1, 0, 255) * 256; |
Denys Vlasenko | ca18311 | 2011-04-07 17:52:20 +0200 | [diff] [blame] | 668 | set_nport(&lsa->u.sa, htons(port)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 669 | |
| 670 | *dfpp = open_socket(lsa); |
| 671 | |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 672 | if (G.beg_range != 0) { |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 673 | sprintf(G.wget_buf, "REST %"OFF_FMT"u", G.beg_range); |
| 674 | if (ftpcmd(G.wget_buf, NULL, sfp) == 350) |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 675 | G.content_len -= G.beg_range; |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 676 | else |
| 677 | reset_beg_range_to_zero(); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 678 | } |
| 679 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 680 | if (ftpcmd("RETR ", target->path, sfp) > 150) |
| 681 | bb_error_msg_and_die("bad response to %s: %s", "RETR", sanitize_string(G.wget_buf)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 682 | |
| 683 | return sfp; |
| 684 | } |
| 685 | |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 686 | #if ENABLE_FEATURE_WGET_OPENSSL |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 687 | static int spawn_https_helper_openssl(const char *host, unsigned port) |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 688 | { |
| 689 | char *allocated = NULL; |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 690 | char *servername; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 691 | int sp[2]; |
| 692 | int pid; |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 693 | IF_FEATURE_WGET_HTTPS(volatile int child_failed = 0;) |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 694 | |
| 695 | if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) != 0) |
| 696 | /* Kernel can have AF_UNIX support disabled */ |
| 697 | bb_perror_msg_and_die("socketpair"); |
| 698 | |
| 699 | if (!strchr(host, ':')) |
| 700 | host = allocated = xasprintf("%s:%u", host, port); |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 701 | servername = xstrdup(host); |
| 702 | strrchr(servername, ':')[0] = '\0'; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 703 | |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 704 | fflush_all(); |
| 705 | pid = xvfork(); |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 706 | if (pid == 0) { |
| 707 | /* Child */ |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 708 | char *argv[8]; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 709 | |
| 710 | close(sp[0]); |
| 711 | xmove_fd(sp[1], 0); |
| 712 | xdup2(0, 1); |
| 713 | /* |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 714 | * openssl s_client -quiet -connect www.kernel.org:443 2>/dev/null |
| 715 | * It prints some debug stuff on stderr, don't know how to suppress it. |
| 716 | * Work around by dev-nulling stderr. We lose all error messages :( |
| 717 | */ |
| 718 | xmove_fd(2, 3); |
| 719 | xopen("/dev/null", O_RDWR); |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 720 | memset(&argv, 0, sizeof(argv)); |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 721 | argv[0] = (char*)"openssl"; |
| 722 | argv[1] = (char*)"s_client"; |
| 723 | argv[2] = (char*)"-quiet"; |
| 724 | argv[3] = (char*)"-connect"; |
| 725 | argv[4] = (char*)host; |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 726 | /* |
| 727 | * Per RFC 6066 Section 3, the only permitted values in the |
| 728 | * TLS server_name (SNI) field are FQDNs (DNS hostnames). |
| 729 | * IPv4 and IPv6 addresses, port numbers are not allowed. |
| 730 | */ |
| 731 | if (!is_ip_address(servername)) { |
| 732 | argv[5] = (char*)"-servername"; |
| 733 | argv[6] = (char*)servername; |
| 734 | } |
| 735 | |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 736 | BB_EXECVP(argv[0], argv); |
| 737 | xmove_fd(3, 2); |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 738 | # if ENABLE_FEATURE_WGET_HTTPS |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 739 | child_failed = 1; |
| 740 | xfunc_die(); |
| 741 | # else |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 742 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 743 | # endif |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 744 | /* notreached */ |
| 745 | } |
| 746 | |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 747 | /* Parent */ |
Denys Vlasenko | ed72761 | 2016-07-25 21:34:57 +0200 | [diff] [blame] | 748 | free(servername); |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 749 | free(allocated); |
| 750 | close(sp[1]); |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 751 | # if ENABLE_FEATURE_WGET_HTTPS |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 752 | if (child_failed) { |
| 753 | close(sp[0]); |
| 754 | return -1; |
| 755 | } |
| 756 | # endif |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 757 | return sp[0]; |
| 758 | } |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 759 | #endif |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 760 | |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 761 | #if ENABLE_FEATURE_WGET_HTTPS |
| 762 | static void spawn_ssl_client(const char *host, int network_fd) |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 763 | { |
| 764 | int sp[2]; |
| 765 | int pid; |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 766 | char *servername, *p; |
| 767 | |
| 768 | servername = xstrdup(host); |
| 769 | p = strrchr(servername, ':'); |
| 770 | if (p) *p = '\0'; |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 771 | |
| 772 | if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) != 0) |
| 773 | /* Kernel can have AF_UNIX support disabled */ |
| 774 | bb_perror_msg_and_die("socketpair"); |
| 775 | |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 776 | fflush_all(); |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 777 | pid = BB_MMU ? xfork() : xvfork(); |
| 778 | if (pid == 0) { |
| 779 | /* Child */ |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 780 | close(sp[0]); |
| 781 | xmove_fd(sp[1], 0); |
| 782 | xdup2(0, 1); |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 783 | if (BB_MMU) { |
| 784 | tls_state_t *tls = new_tls_state(); |
| 785 | tls->ifd = tls->ofd = network_fd; |
| 786 | tls_handshake(tls, servername); |
| 787 | tls_run_copy_loop(tls); |
| 788 | exit(0); |
| 789 | } else { |
| 790 | char *argv[5]; |
| 791 | xmove_fd(network_fd, 3); |
| 792 | argv[0] = (char*)"ssl_client"; |
| 793 | argv[1] = (char*)"-s3"; |
| 794 | //TODO: if (!is_ip_address(servername))... |
| 795 | argv[2] = (char*)"-n"; |
| 796 | argv[3] = servername; |
| 797 | argv[4] = NULL; |
| 798 | BB_EXECVP(argv[0], argv); |
| 799 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
| 800 | } |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 801 | /* notreached */ |
| 802 | } |
| 803 | |
| 804 | /* Parent */ |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 805 | free(servername); |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 806 | close(sp[1]); |
| 807 | xmove_fd(sp[0], network_fd); |
| 808 | } |
| 809 | #endif |
| 810 | |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 811 | static void NOINLINE retrieve_file_data(FILE *dfp) |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 812 | { |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 813 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 814 | # if ENABLE_FEATURE_WGET_TIMEOUT |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 815 | unsigned second_cnt = G.timeout_seconds; |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 816 | # endif |
| 817 | struct pollfd polldata; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 818 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 819 | polldata.fd = fileno(dfp); |
| 820 | polldata.events = POLLIN | POLLPRI; |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 821 | #endif |
| 822 | progress_meter(PROGRESS_START); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 823 | |
| 824 | if (G.chunked) |
| 825 | goto get_clen; |
| 826 | |
| 827 | /* Loops only if chunked */ |
| 828 | while (1) { |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 829 | |
| 830 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 831 | /* Must use nonblocking I/O, otherwise fread will loop |
| 832 | * and *block* until it reads full buffer, |
| 833 | * which messes up progress bar and/or timeout logic. |
| 834 | * Because of nonblocking I/O, we need to dance |
| 835 | * very carefully around EAGAIN. See explanation at |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 836 | * clearerr() calls. |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 837 | */ |
| 838 | ndelay_on(polldata.fd); |
| 839 | #endif |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 840 | while (1) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 841 | int n; |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 842 | unsigned rdsz; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 843 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 844 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 845 | /* fread internally uses read loop, which in our case |
| 846 | * is usually exited when we get EAGAIN. |
| 847 | * In this case, libc sets error marker on the stream. |
| 848 | * Need to clear it before next fread to avoid possible |
| 849 | * rare false positive ferror below. Rare because usually |
| 850 | * fread gets more than zero bytes, and we don't fall |
| 851 | * into if (n <= 0) ... |
| 852 | */ |
| 853 | clearerr(dfp); |
Denys Vlasenko | f9af375 | 2011-02-11 22:01:33 +0100 | [diff] [blame] | 854 | #endif |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 855 | errno = 0; |
| 856 | rdsz = sizeof(G.wget_buf); |
| 857 | if (G.got_clen) { |
| 858 | if (G.content_len < (off_t)sizeof(G.wget_buf)) { |
| 859 | if ((int)G.content_len <= 0) |
| 860 | break; |
| 861 | rdsz = (unsigned)G.content_len; |
| 862 | } |
| 863 | } |
Denys Vlasenko | 0fac2f7 | 2011-02-10 09:55:05 +0100 | [diff] [blame] | 864 | n = fread(G.wget_buf, 1, rdsz, dfp); |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 865 | |
| 866 | if (n > 0) { |
| 867 | xwrite(G.output_fd, G.wget_buf, n); |
| 868 | #if ENABLE_FEATURE_WGET_STATUSBAR |
| 869 | G.transferred += n; |
| 870 | #endif |
| 871 | if (G.got_clen) { |
| 872 | G.content_len -= n; |
| 873 | if (G.content_len == 0) |
| 874 | break; |
| 875 | } |
| 876 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 877 | second_cnt = G.timeout_seconds; |
| 878 | #endif |
Denys Vlasenko | faa9e94 | 2014-03-27 16:50:29 +0100 | [diff] [blame] | 879 | goto bump; |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | /* n <= 0. |
| 883 | * man fread: |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 884 | * If error occurs, or EOF is reached, the return value |
| 885 | * is a short item count (or zero). |
| 886 | * fread does not distinguish between EOF and error. |
| 887 | */ |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 888 | if (errno != EAGAIN) { |
| 889 | if (ferror(dfp)) { |
| 890 | progress_meter(PROGRESS_END); |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 891 | bb_perror_msg_and_die(bb_msg_read_error); |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 892 | } |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 893 | break; /* EOF, not error */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 894 | } |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 895 | |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 896 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 897 | /* It was EAGAIN. There is no data. Wait up to one second |
| 898 | * then abort if timed out, or update the bar and try reading again. |
| 899 | */ |
| 900 | if (safe_poll(&polldata, 1, 1000) == 0) { |
| 901 | # if ENABLE_FEATURE_WGET_TIMEOUT |
| 902 | if (second_cnt != 0 && --second_cnt == 0) { |
| 903 | progress_meter(PROGRESS_END); |
| 904 | bb_error_msg_and_die("download timed out"); |
| 905 | } |
| 906 | # endif |
| 907 | /* We used to loop back to poll here, |
| 908 | * but there is no great harm in letting fread |
| 909 | * to try reading anyway. |
| 910 | */ |
| 911 | } |
Denys Vlasenko | faa9e94 | 2014-03-27 16:50:29 +0100 | [diff] [blame] | 912 | #endif |
| 913 | bump: |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 914 | /* Need to do it _every_ second for "stalled" indicator |
| 915 | * to be shown properly. |
| 916 | */ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 917 | progress_meter(PROGRESS_BUMP); |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 918 | } /* while (reading data) */ |
| 919 | |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 920 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 921 | clearerr(dfp); |
Denys Vlasenko | 88ad9da | 2011-02-11 23:06:21 +0100 | [diff] [blame] | 922 | ndelay_off(polldata.fd); /* else fgets can get very unhappy */ |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 923 | #endif |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 924 | if (!G.chunked) |
| 925 | break; |
| 926 | |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 927 | fgets_and_trim(dfp, NULL); /* Eat empty line */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 928 | get_clen: |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 929 | fgets_and_trim(dfp, NULL); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 930 | G.content_len = STRTOOFF(G.wget_buf, NULL, 16); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 931 | /* FIXME: error check? */ |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 932 | if (G.content_len == 0) |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 933 | break; /* all done! */ |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 934 | G.got_clen = 1; |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 935 | /* |
| 936 | * Note that fgets may result in some data being buffered in dfp. |
| 937 | * We loop back to fread, which will retrieve this data. |
| 938 | * Also note that code has to be arranged so that fread |
| 939 | * is done _before_ one-second poll wait - poll doesn't know |
| 940 | * about stdio buffering and can result in spurious one second waits! |
| 941 | */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 942 | } |
| 943 | |
Denys Vlasenko | 6144124 | 2012-06-17 19:52:25 +0200 | [diff] [blame] | 944 | /* If -c failed, we restart from the beginning, |
| 945 | * but we do not truncate file then, we do it only now, at the end. |
| 946 | * This lets user to ^C if his 99% complete 10 GB file download |
| 947 | * failed to restart *without* losing the almost complete file. |
| 948 | */ |
| 949 | { |
| 950 | off_t pos = lseek(G.output_fd, 0, SEEK_CUR); |
| 951 | if (pos != (off_t)-1) |
| 952 | ftruncate(G.output_fd, pos); |
| 953 | } |
| 954 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 955 | /* Draw full bar and free its resources */ |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 956 | G.chunked = 0; /* makes it show 100% even for chunked download */ |
| 957 | G.got_clen = 1; /* makes it show 100% even for download of (formerly) unknown size */ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 958 | progress_meter(PROGRESS_END); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 959 | } |
| 960 | |
Pere Orga | 5369563 | 2011-02-16 20:09:36 +0100 | [diff] [blame] | 961 | static void download_one_url(const char *url) |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 962 | { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 963 | bool use_proxy; /* Use proxies if env vars are set */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 964 | int redir_limit; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 965 | len_and_sockaddr *lsa; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 966 | FILE *sfp; /* socket to web/ftp server */ |
Denis Vlasenko | a36535b | 2007-09-27 15:07:23 +0000 | [diff] [blame] | 967 | FILE *dfp; /* socket to ftp server (data) */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 968 | char *proxy = NULL; |
| 969 | char *fname_out_alloc; |
Denys Vlasenko | 93b4a60 | 2011-12-18 05:11:56 +0100 | [diff] [blame] | 970 | char *redirected_path = NULL; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 971 | struct host_info server; |
| 972 | struct host_info target; |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 973 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 974 | server.allocated = NULL; |
| 975 | target.allocated = NULL; |
| 976 | server.user = NULL; |
Vladimir Dronnikov | be168b1 | 2009-10-05 02:18:01 +0200 | [diff] [blame] | 977 | target.user = NULL; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 978 | |
| 979 | parse_url(url, &target); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 980 | |
Bernhard Reutner-Fischer | 7e8a53a | 2007-04-10 09:37:29 +0000 | [diff] [blame] | 981 | /* Use the proxy if necessary */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 982 | use_proxy = (strcmp(G.proxy_flag, "off") != 0); |
Glenn L McGrath | f1c4b11 | 2004-02-22 00:27:34 +0000 | [diff] [blame] | 983 | if (use_proxy) { |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 984 | proxy = getenv(target.protocol == P_FTP ? "ftp_proxy" : "http_proxy"); |
| 985 | //FIXME: what if protocol is https? Ok to use http_proxy? |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 986 | use_proxy = (proxy && proxy[0]); |
| 987 | if (use_proxy) |
Denis Vlasenko | 96e9d3c | 2006-10-07 14:28:55 +0000 | [diff] [blame] | 988 | parse_url(proxy, &server); |
Robert Griebl | d776011 | 2002-05-14 23:36:45 +0000 | [diff] [blame] | 989 | } |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 990 | if (!use_proxy) { |
| 991 | server.port = target.port; |
| 992 | if (ENABLE_FEATURE_IPV6) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 993 | //free(server.allocated); - can't be non-NULL |
| 994 | server.host = server.allocated = xstrdup(target.host); |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 995 | } else { |
| 996 | server.host = target.host; |
| 997 | } |
| 998 | } |
| 999 | |
| 1000 | if (ENABLE_FEATURE_IPV6) |
| 1001 | strip_ipv6_scope_id(target.host); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1002 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1003 | /* If there was no -O FILE, guess output filename */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1004 | fname_out_alloc = NULL; |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1005 | if (!(option_mask32 & WGET_OPT_OUTNAME)) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1006 | G.fname_out = bb_get_last_path_component_nostrip(target.path); |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 1007 | /* handle "wget http://kernel.org//" */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1008 | if (G.fname_out[0] == '/' || !G.fname_out[0]) |
| 1009 | G.fname_out = (char*)"index.html"; |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 1010 | /* -P DIR is considered only if there was no -O FILE */ |
Denys Vlasenko | aacd448 | 2012-06-17 20:21:30 +0200 | [diff] [blame] | 1011 | if (G.dir_prefix) |
| 1012 | G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, G.fname_out); |
Denys Vlasenko | 625f218 | 2011-03-21 00:29:37 +0100 | [diff] [blame] | 1013 | else { |
Denys Vlasenko | aacd448 | 2012-06-17 20:21:30 +0200 | [diff] [blame] | 1014 | /* redirects may free target.path later, need to make a copy */ |
| 1015 | G.fname_out = fname_out_alloc = xstrdup(G.fname_out); |
Denys Vlasenko | 625f218 | 2011-03-21 00:29:37 +0100 | [diff] [blame] | 1016 | } |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 1017 | } |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 1018 | #if ENABLE_FEATURE_WGET_STATUSBAR |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1019 | G.curfile = bb_get_last_path_component_nostrip(G.fname_out); |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 1020 | #endif |
| 1021 | |
Bernhard Reutner-Fischer | 7e8a53a | 2007-04-10 09:37:29 +0000 | [diff] [blame] | 1022 | /* Determine where to start transfer */ |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1023 | G.beg_range = 0; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1024 | if (option_mask32 & WGET_OPT_CONTINUE) { |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1025 | G.output_fd = open(G.fname_out, O_WRONLY); |
| 1026 | if (G.output_fd >= 0) { |
| 1027 | G.beg_range = xlseek(G.output_fd, 0, SEEK_END); |
Denis Vlasenko | a94554d | 2006-09-23 17:49:09 +0000 | [diff] [blame] | 1028 | } |
| 1029 | /* File doesn't exist. We do not create file here yet. |
Denys Vlasenko | a84eadf | 2011-02-12 23:40:31 +0100 | [diff] [blame] | 1030 | * We are not sure it exists on remote side */ |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1031 | } |
| 1032 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1033 | redir_limit = 5; |
| 1034 | resolve_lsa: |
Denis Vlasenko | 42823d5 | 2007-02-04 02:39:08 +0000 | [diff] [blame] | 1035 | lsa = xhost2sockaddr(server.host, server.port); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1036 | if (!(option_mask32 & WGET_OPT_QUIET)) { |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1037 | char *s = xmalloc_sockaddr2dotted(&lsa->u.sa); |
| 1038 | fprintf(stderr, "Connecting to %s (%s)\n", server.host, s); |
| 1039 | free(s); |
Eric Andersen | e6dc439 | 2003-10-31 09:31:46 +0000 | [diff] [blame] | 1040 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1041 | establish_session: |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1042 | /*G.content_len = 0; - redundant, got_clen = 0 is enough */ |
| 1043 | G.got_clen = 0; |
| 1044 | G.chunked = 0; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 1045 | if (use_proxy || target.protocol != P_FTP) { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1046 | /* |
| 1047 | * HTTP session |
| 1048 | */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1049 | char *str; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 1050 | int status; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 1051 | |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 1052 | /* Open socket to http(s) server */ |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 1053 | #if ENABLE_FEATURE_WGET_OPENSSL |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 1054 | /* openssl (and maybe internal TLS) support is configured */ |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 1055 | if (target.protocol == P_HTTPS) { |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 1056 | /* openssl-based helper |
| 1057 | * Inconvenient API since we can't give it an open fd |
| 1058 | */ |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 1059 | int fd = spawn_https_helper_openssl(server.host, server.port); |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 1060 | # if ENABLE_FEATURE_WGET_HTTPS |
| 1061 | if (fd < 0) { /* no openssl? try internal */ |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 1062 | sfp = open_socket(lsa); |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 1063 | spawn_ssl_client(server.host, fileno(sfp)); |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 1064 | goto socket_opened; |
| 1065 | } |
| 1066 | # else |
| 1067 | /* We don't check for exec("openssl") failure in this case */ |
| 1068 | # endif |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 1069 | sfp = fdopen(fd, "r+"); |
| 1070 | if (!sfp) |
| 1071 | bb_perror_msg_and_die(bb_msg_memory_exhausted); |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 1072 | goto socket_opened; |
| 1073 | } |
| 1074 | sfp = open_socket(lsa); |
| 1075 | socket_opened: |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 1076 | #elif ENABLE_FEATURE_WGET_HTTPS |
| 1077 | /* Only internal TLS support is configured */ |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 1078 | sfp = open_socket(lsa); |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 1079 | if (target.protocol == P_HTTPS) |
Denys Vlasenko | 9a647c3 | 2017-01-23 01:08:16 +0100 | [diff] [blame] | 1080 | spawn_ssl_client(server.host, fileno(sfp)); |
Denys Vlasenko | 2007ef5 | 2015-10-07 02:40:53 +0200 | [diff] [blame] | 1081 | #else |
| 1082 | /* ssl (https) support is not configured */ |
| 1083 | sfp = open_socket(lsa); |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 1084 | #endif |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1085 | /* Send HTTP request */ |
| 1086 | if (use_proxy) { |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1087 | SENDFMT(sfp, "GET %s://%s/%s HTTP/1.1\r\n", |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 1088 | target.protocol, target.host, |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1089 | target.path); |
| 1090 | } else { |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1091 | SENDFMT(sfp, "%s /%s HTTP/1.1\r\n", |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 1092 | (option_mask32 & WGET_OPT_POST_DATA) ? "POST" : "GET", |
| 1093 | target.path); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1094 | } |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1095 | if (!USR_HEADER_HOST) |
| 1096 | SENDFMT(sfp, "Host: %s\r\n", target.host); |
| 1097 | if (!USR_HEADER_USER_AGENT) |
| 1098 | SENDFMT(sfp, "User-Agent: %s\r\n", G.user_agent); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1099 | |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 1100 | /* Ask server to close the connection as soon as we are done |
| 1101 | * (IOW: we do not intend to send more requests) |
| 1102 | */ |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1103 | SENDFMT(sfp, "Connection: close\r\n"); |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 1104 | |
Denis Vlasenko | 9cade08 | 2006-11-21 10:43:02 +0000 | [diff] [blame] | 1105 | #if ENABLE_FEATURE_WGET_AUTHENTICATION |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1106 | if (target.user && !USR_HEADER_AUTH) { |
| 1107 | SENDFMT(sfp, "Proxy-Authorization: Basic %s\r\n"+6, |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1108 | base64enc(target.user)); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1109 | } |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1110 | if (use_proxy && server.user && !USR_HEADER_PROXY_AUTH) { |
| 1111 | SENDFMT(sfp, "Proxy-Authorization: Basic %s\r\n", |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1112 | base64enc(server.user)); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1113 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1114 | #endif |
| 1115 | |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1116 | if (G.beg_range != 0 && !USR_HEADER_RANGE) |
| 1117 | SENDFMT(sfp, "Range: bytes=%"OFF_FMT"u-\r\n", G.beg_range); |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 1118 | |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 1119 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1120 | if (G.extra_headers) { |
| 1121 | log_io(G.extra_headers); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1122 | fputs(G.extra_headers, sfp); |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1123 | } |
Denis Vlasenko | 5a2ad69 | 2009-03-04 14:13:37 +0000 | [diff] [blame] | 1124 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1125 | if (option_mask32 & WGET_OPT_POST_DATA) { |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1126 | SENDFMT(sfp, |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 1127 | "Content-Type: application/x-www-form-urlencoded\r\n" |
| 1128 | "Content-Length: %u\r\n" |
| 1129 | "\r\n" |
| 1130 | "%s", |
Vitaly Magerya | 700fbc3 | 2011-03-27 22:33:13 +0200 | [diff] [blame] | 1131 | (int) strlen(G.post_data), G.post_data |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 1132 | ); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1133 | } else |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 1134 | #endif |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 1135 | { |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1136 | SENDFMT(sfp, "\r\n"); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1137 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1138 | |
Nguyễn Thái Ngọc Duy | ebec11d | 2010-09-23 15:18:41 +0200 | [diff] [blame] | 1139 | fflush(sfp); |
Denys Vlasenko | a6f8651 | 2017-01-11 20:16:45 +0100 | [diff] [blame] | 1140 | |
Denys Vlasenko | 4e08a12 | 2017-01-16 17:31:05 +0100 | [diff] [blame] | 1141 | /* Tried doing this unconditionally. |
| 1142 | * Cloudflare and nginx/1.11.5 are shocked to see SHUT_WR on non-HTTPS. |
| 1143 | */ |
Denys Vlasenko | a6f8651 | 2017-01-11 20:16:45 +0100 | [diff] [blame] | 1144 | #if SSL_SUPPORTED |
| 1145 | if (target.protocol == P_HTTPS) { |
| 1146 | /* If we use SSL helper, keeping our end of the socket open for writing |
| 1147 | * makes our end (i.e. the same fd!) readable (EAGAIN instead of EOF) |
| 1148 | * even after child closes its copy of the fd. |
| 1149 | * This helps: |
| 1150 | */ |
| 1151 | shutdown(fileno(sfp), SHUT_WR); |
| 1152 | } |
| 1153 | #endif |
Nguyễn Thái Ngọc Duy | ebec11d | 2010-09-23 15:18:41 +0200 | [diff] [blame] | 1154 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1155 | /* |
| 1156 | * Retrieve HTTP response line and check for "200" status code. |
| 1157 | */ |
Denis Vlasenko | 023b57d | 2006-10-15 17:05:55 +0000 | [diff] [blame] | 1158 | read_response: |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 1159 | fgets_and_trim(sfp, " %s\n"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1160 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1161 | str = G.wget_buf; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1162 | str = skip_non_whitespace(str); |
| 1163 | str = skip_whitespace(str); |
| 1164 | // FIXME: no error check |
| 1165 | // xatou wouldn't work: "200 OK" |
| 1166 | status = atoi(str); |
| 1167 | switch (status) { |
| 1168 | case 0: |
| 1169 | case 100: |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1170 | while (gethdr(sfp) != NULL) |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1171 | /* eat all remaining headers */; |
| 1172 | goto read_response; |
Denys Vlasenko | 9ff910d | 2016-08-31 13:28:53 +0200 | [diff] [blame] | 1173 | |
| 1174 | /* Success responses */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1175 | case 200: |
Denys Vlasenko | 9ff910d | 2016-08-31 13:28:53 +0200 | [diff] [blame] | 1176 | /* fall through */ |
| 1177 | case 201: /* 201 Created */ |
| 1178 | /* "The request has been fulfilled and resulted in a new resource being created" */ |
Denys Vlasenko | ef15970 | 2016-09-01 11:16:22 +0200 | [diff] [blame] | 1179 | /* Standard wget is reported to treat this as success */ |
Denys Vlasenko | 9ff910d | 2016-08-31 13:28:53 +0200 | [diff] [blame] | 1180 | /* fall through */ |
| 1181 | case 202: /* 202 Accepted */ |
| 1182 | /* "The request has been accepted for processing, but the processing has not been completed" */ |
| 1183 | /* Treat as success: fall through */ |
| 1184 | case 203: /* 203 Non-Authoritative Information */ |
| 1185 | /* "Use of this response code is not required and is only appropriate when the response would otherwise be 200 (OK)" */ |
| 1186 | /* fall through */ |
| 1187 | case 204: /* 204 No Content */ |
Denis Vlasenko | 50b5cac | 2008-06-22 16:28:02 +0000 | [diff] [blame] | 1188 | /* |
| 1189 | Response 204 doesn't say "null file", it says "metadata |
| 1190 | has changed but data didn't": |
| 1191 | |
| 1192 | "10.2.5 204 No Content |
| 1193 | The server has fulfilled the request but does not need to return |
| 1194 | an entity-body, and might want to return updated metainformation. |
| 1195 | The response MAY include new or updated metainformation in the form |
| 1196 | of entity-headers, which if present SHOULD be associated with |
| 1197 | the requested variant. |
| 1198 | |
| 1199 | If the client is a user agent, it SHOULD NOT change its document |
| 1200 | view from that which caused the request to be sent. This response |
| 1201 | is primarily intended to allow input for actions to take place |
| 1202 | without causing a change to the user agent's active document view, |
| 1203 | although any new or updated metainformation SHOULD be applied |
| 1204 | to the document currently in the user agent's active view. |
| 1205 | |
| 1206 | The 204 response MUST NOT include a message-body, and thus |
| 1207 | is always terminated by the first empty line after the header fields." |
| 1208 | |
| 1209 | However, in real world it was observed that some web servers |
| 1210 | (e.g. Boa/0.94.14rc21) simply use code 204 when file size is zero. |
| 1211 | */ |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 1212 | if (G.beg_range != 0) { |
| 1213 | /* "Range:..." was not honored by the server. |
| 1214 | * Restart download from the beginning. |
| 1215 | */ |
| 1216 | reset_beg_range_to_zero(); |
| 1217 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1218 | break; |
Denys Vlasenko | 9ff910d | 2016-08-31 13:28:53 +0200 | [diff] [blame] | 1219 | /* 205 Reset Content ?? what to do on this ?? */ |
| 1220 | |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 1221 | case 300: /* redirection */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1222 | case 301: |
| 1223 | case 302: |
| 1224 | case 303: |
| 1225 | break; |
Denys Vlasenko | 9ff910d | 2016-08-31 13:28:53 +0200 | [diff] [blame] | 1226 | |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 1227 | case 206: /* Partial Content */ |
| 1228 | if (G.beg_range != 0) |
| 1229 | /* "Range:..." worked. Good. */ |
Denis Vlasenko | 023b57d | 2006-10-15 17:05:55 +0000 | [diff] [blame] | 1230 | break; |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 1231 | /* Partial Content even though we did not ask for it??? */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1232 | /* fall through */ |
| 1233 | default: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1234 | bb_error_msg_and_die("server returned error: %s", sanitize_string(G.wget_buf)); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1235 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1236 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1237 | /* |
| 1238 | * Retrieve HTTP headers. |
| 1239 | */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1240 | while ((str = gethdr(sfp)) != NULL) { |
| 1241 | static const char keywords[] ALIGN1 = |
| 1242 | "content-length\0""transfer-encoding\0""location\0"; |
| 1243 | enum { |
| 1244 | KEY_content_length = 1, KEY_transfer_encoding, KEY_location |
| 1245 | }; |
Matthijs van de Water | 0d58666 | 2009-08-22 20:19:48 +0200 | [diff] [blame] | 1246 | smalluint key; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1247 | |
| 1248 | /* gethdr converted "FOO:" string to lowercase */ |
| 1249 | |
Matthijs van de Water | 0d58666 | 2009-08-22 20:19:48 +0200 | [diff] [blame] | 1250 | /* strip trailing whitespace */ |
| 1251 | char *s = strchrnul(str, '\0') - 1; |
| 1252 | while (s >= str && (*s == ' ' || *s == '\t')) { |
| 1253 | *s = '\0'; |
| 1254 | s--; |
| 1255 | } |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1256 | key = index_in_strings(keywords, G.wget_buf) + 1; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1257 | if (key == KEY_content_length) { |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 1258 | G.content_len = BB_STRTOOFF(str, NULL, 10); |
| 1259 | if (G.content_len < 0 || errno) { |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1260 | bb_error_msg_and_die("content-length %s is garbage", sanitize_string(str)); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1261 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1262 | G.got_clen = 1; |
| 1263 | continue; |
| 1264 | } |
| 1265 | if (key == KEY_transfer_encoding) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1266 | if (strcmp(str_tolower(str), "chunked") != 0) |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1267 | bb_error_msg_and_die("transfer encoding '%s' is not supported", sanitize_string(str)); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1268 | G.chunked = 1; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1269 | } |
| 1270 | if (key == KEY_location && status >= 300) { |
| 1271 | if (--redir_limit == 0) |
| 1272 | bb_error_msg_and_die("too many redirections"); |
| 1273 | fclose(sfp); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1274 | if (str[0] == '/') { |
Denys Vlasenko | 93b4a60 | 2011-12-18 05:11:56 +0100 | [diff] [blame] | 1275 | free(redirected_path); |
| 1276 | target.path = redirected_path = xstrdup(str+1); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1277 | /* lsa stays the same: it's on the same server */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1278 | } else { |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1279 | parse_url(str, &target); |
| 1280 | if (!use_proxy) { |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 1281 | /* server.user remains untouched */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1282 | free(server.allocated); |
Pere Orga | 57b4909 | 2011-02-14 23:56:07 +0100 | [diff] [blame] | 1283 | server.allocated = NULL; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1284 | server.host = target.host; |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 1285 | /* strip_ipv6_scope_id(target.host); - no! */ |
| 1286 | /* we assume remote never gives us IPv6 addr with scope id */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1287 | server.port = target.port; |
Denis Vlasenko | 6536a9b | 2007-01-12 10:35:23 +0000 | [diff] [blame] | 1288 | free(lsa); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1289 | goto resolve_lsa; |
| 1290 | } /* else: lsa stays the same: we use proxy */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1291 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1292 | goto establish_session; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1293 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1294 | } |
| 1295 | // if (status >= 300) |
| 1296 | // bb_error_msg_and_die("bad redirection (no Location: header from server)"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1297 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1298 | /* For HTTP, data is pumped over the same connection */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1299 | dfp = sfp; |
Denis Vlasenko | 96e9d3c | 2006-10-07 14:28:55 +0000 | [diff] [blame] | 1300 | } else { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1301 | /* |
| 1302 | * FTP session |
| 1303 | */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 1304 | sfp = prepare_ftp_session(&dfp, &target, lsa); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1305 | } |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 1306 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1307 | free(lsa); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1308 | |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1309 | if (!(option_mask32 & WGET_OPT_SPIDER)) { |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1310 | if (G.output_fd < 0) |
| 1311 | G.output_fd = xopen(G.fname_out, G.o_flags); |
| 1312 | retrieve_file_data(dfp); |
| 1313 | if (!(option_mask32 & WGET_OPT_OUTNAME)) { |
| 1314 | xclose(G.output_fd); |
| 1315 | G.output_fd = -1; |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1316 | } |
Bernhard Reutner-Fischer | 2e75dcc | 2007-04-05 10:31:47 +0000 | [diff] [blame] | 1317 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1318 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1319 | if (dfp != sfp) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1320 | /* It's ftp. Close data connection properly */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1321 | fclose(dfp); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1322 | if (ftpcmd(NULL, NULL, sfp) != 226) |
| 1323 | bb_error_msg_and_die("ftp error: %s", sanitize_string(G.wget_buf + 4)); |
| 1324 | /* ftpcmd("QUIT", NULL, sfp); - why bother? */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1325 | } |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1326 | fclose(sfp); |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 1327 | |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1328 | free(server.allocated); |
| 1329 | free(target.allocated); |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 1330 | free(server.user); |
| 1331 | free(target.user); |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1332 | free(fname_out_alloc); |
Denys Vlasenko | 93b4a60 | 2011-12-18 05:11:56 +0100 | [diff] [blame] | 1333 | free(redirected_path); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1334 | } |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1335 | |
| 1336 | int wget_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 1337 | int wget_main(int argc UNUSED_PARAM, char **argv) |
| 1338 | { |
| 1339 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1340 | static const char wget_longopts[] ALIGN1 = |
| 1341 | /* name, has_arg, val */ |
| 1342 | "continue\0" No_argument "c" |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1343 | "quiet\0" No_argument "q" |
Denys Vlasenko | dff9fef | 2017-01-24 21:41:43 +0100 | [diff] [blame] | 1344 | "server-response\0" No_argument "S" |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1345 | "output-document\0" Required_argument "O" |
| 1346 | "directory-prefix\0" Required_argument "P" |
| 1347 | "proxy\0" Required_argument "Y" |
| 1348 | "user-agent\0" Required_argument "U" |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1349 | IF_FEATURE_WGET_TIMEOUT( |
| 1350 | "timeout\0" Required_argument "T") |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1351 | /* Ignored: */ |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1352 | IF_DESKTOP( "tries\0" Required_argument "t") |
| 1353 | "header\0" Required_argument "\xff" |
| 1354 | "post-data\0" Required_argument "\xfe" |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 1355 | "spider\0" No_argument "\xfd" |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1356 | /* Ignored (we always use PASV): */ |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1357 | IF_DESKTOP( "passive-ftp\0" No_argument "\xf0") |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1358 | /* Ignored (we don't do ssl) */ |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1359 | IF_DESKTOP( "no-check-certificate\0" No_argument "\xf0") |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 1360 | /* Ignored (we don't support caching) */ |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1361 | IF_DESKTOP( "no-cache\0" No_argument "\xf0") |
| 1362 | IF_DESKTOP( "no-verbose\0" No_argument "\xf0") |
| 1363 | IF_DESKTOP( "no-clobber\0" No_argument "\xf0") |
| 1364 | IF_DESKTOP( "no-host-directories\0" No_argument "\xf0") |
| 1365 | IF_DESKTOP( "no-parent\0" No_argument "\xf0") |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1366 | ; |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 1367 | # define GETOPT32 getopt32long |
| 1368 | # define LONGOPTS ,wget_longopts |
| 1369 | #else |
| 1370 | # define GETOPT32 getopt32 |
| 1371 | # define LONGOPTS |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1372 | #endif |
| 1373 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1374 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1375 | llist_t *headers_llist = NULL; |
| 1376 | #endif |
| 1377 | |
| 1378 | INIT_G(); |
| 1379 | |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 1380 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 1381 | G.timeout_seconds = 900; |
| 1382 | signal(SIGALRM, alarm_handler); |
| 1383 | #endif |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1384 | G.proxy_flag = "on"; /* use proxies if env vars are set */ |
| 1385 | G.user_agent = "Wget"; /* "User-Agent" header field */ |
| 1386 | |
| 1387 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1388 | #endif |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 1389 | GETOPT32(argv, "^" |
| 1390 | "cqSO:P:Y:U:T:+" |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1391 | /*ignored:*/ "t:" |
| 1392 | /*ignored:*/ "n::" |
| 1393 | /* wget has exactly four -n<letter> opts, all of which we can ignore: |
| 1394 | * -nv --no-verbose: be moderately quiet (-q is full quiet) |
| 1395 | * -nc --no-clobber: abort if exists, neither download to FILE.n nor overwrite FILE |
| 1396 | * -nH --no-host-directories: wget -r http://host/ won't create host/ |
| 1397 | * -np --no-parent |
| 1398 | * "n::" above says that we accept -n[ARG]. |
| 1399 | * Specifying "n:" would be a bug: "-n ARG" would eat ARG! |
| 1400 | */ |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 1401 | "\0" |
| 1402 | "-1" /* at least one URL */ |
| 1403 | IF_FEATURE_WGET_LONG_OPTIONS(":\xff::") /* --header is a list */ |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 1404 | LONGOPTS |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1405 | , &G.fname_out, &G.dir_prefix, |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1406 | &G.proxy_flag, &G.user_agent, |
| 1407 | IF_FEATURE_WGET_TIMEOUT(&G.timeout_seconds) IF_NOT_FEATURE_WGET_TIMEOUT(NULL), |
Denys Vlasenko | 92e1b08 | 2015-10-20 21:51:52 +0200 | [diff] [blame] | 1408 | NULL, /* -t RETRIES */ |
| 1409 | NULL /* -n[ARG] */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1410 | IF_FEATURE_WGET_LONG_OPTIONS(, &headers_llist) |
| 1411 | IF_FEATURE_WGET_LONG_OPTIONS(, &G.post_data) |
| 1412 | ); |
Denys Vlasenko | 2972e2c | 2016-10-04 04:23:09 +0200 | [diff] [blame] | 1413 | #if 0 /* option bits debug */ |
| 1414 | if (option_mask32 & WGET_OPT_RETRIES) bb_error_msg("-t NUM"); |
| 1415 | if (option_mask32 & WGET_OPT_nsomething) bb_error_msg("-nsomething"); |
| 1416 | if (option_mask32 & WGET_OPT_HEADER) bb_error_msg("--header"); |
| 1417 | if (option_mask32 & WGET_OPT_POST_DATA) bb_error_msg("--post-data"); |
| 1418 | if (option_mask32 & WGET_OPT_SPIDER) bb_error_msg("--spider"); |
| 1419 | exit(0); |
| 1420 | #endif |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1421 | argv += optind; |
| 1422 | |
| 1423 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1424 | if (headers_llist) { |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1425 | int size = 0; |
| 1426 | char *hdr; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1427 | llist_t *ll = headers_llist; |
| 1428 | while (ll) { |
| 1429 | size += strlen(ll->data) + 2; |
| 1430 | ll = ll->link; |
| 1431 | } |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1432 | G.extra_headers = hdr = xmalloc(size + 1); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1433 | while (headers_llist) { |
Bernhard Reutner-Fischer | d7bfee1 | 2015-02-18 20:41:02 +0100 | [diff] [blame] | 1434 | int bit; |
| 1435 | const char *words; |
| 1436 | |
| 1437 | size = sprintf(hdr, "%s\r\n", |
| 1438 | (char*)llist_pop(&headers_llist)); |
| 1439 | /* a bit like index_in_substrings but don't match full key */ |
| 1440 | bit = 1; |
| 1441 | words = wget_user_headers; |
| 1442 | while (*words) { |
| 1443 | if (strstr(hdr, words) == hdr) { |
| 1444 | G.user_headers |= bit; |
| 1445 | break; |
| 1446 | } |
| 1447 | bit <<= 1; |
| 1448 | words += strlen(words) + 1; |
| 1449 | } |
| 1450 | hdr += size; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1451 | } |
| 1452 | } |
| 1453 | #endif |
| 1454 | |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1455 | G.output_fd = -1; |
| 1456 | G.o_flags = O_WRONLY | O_CREAT | O_TRUNC | O_EXCL; |
| 1457 | if (G.fname_out) { /* -O FILE ? */ |
| 1458 | if (LONE_DASH(G.fname_out)) { /* -O - ? */ |
| 1459 | G.output_fd = 1; |
| 1460 | option_mask32 &= ~WGET_OPT_CONTINUE; |
| 1461 | } |
| 1462 | /* compat with wget: -O FILE can overwrite */ |
| 1463 | G.o_flags = O_WRONLY | O_CREAT | O_TRUNC; |
| 1464 | } |
| 1465 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1466 | while (*argv) |
Pere Orga | 5369563 | 2011-02-16 20:09:36 +0100 | [diff] [blame] | 1467 | download_one_url(*argv++); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1468 | |
Denys Vlasenko | 28556b9 | 2011-02-15 11:03:53 +0100 | [diff] [blame] | 1469 | if (G.output_fd >= 0) |
| 1470 | xclose(G.output_fd); |
| 1471 | |
Guilherme Maciel Ferreira | 840ef17 | 2013-10-16 14:43:30 +0200 | [diff] [blame] | 1472 | #if ENABLE_FEATURE_CLEAN_UP && ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1473 | free(G.extra_headers); |
| 1474 | #endif |
| 1475 | FINI_G(); |
| 1476 | |
Pere Orga | 5369563 | 2011-02-16 20:09:36 +0100 | [diff] [blame] | 1477 | return EXIT_SUCCESS; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1478 | } |