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 | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 11 | |
| 12 | //usage:#define wget_trivial_usage |
| 13 | //usage: IF_FEATURE_WGET_LONG_OPTIONS( |
| 14 | //usage: "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document FILE]\n" |
| 15 | //usage: " [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 16 | /* Since we ignore these opts, we don't show them in --help */ |
| 17 | /* //usage: " [--no-check-certificate] [--no-cache]" */ |
| 18 | //usage: " [-U|--user-agent AGENT]" IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 19 | //usage: ) |
| 20 | //usage: IF_NOT_FEATURE_WGET_LONG_OPTIONS( |
| 21 | //usage: "[-csq] [-O FILE] [-Y on/off] [-P DIR] [-U AGENT]" |
| 22 | //usage: IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." |
| 23 | //usage: ) |
| 24 | //usage:#define wget_full_usage "\n\n" |
| 25 | //usage: "Retrieve files via HTTP or FTP\n" |
Denys Vlasenko | e2e55b0 | 2011-03-21 00:37:05 +0100 | [diff] [blame] | 26 | //usage: "\n -s Spider mode - only check file existence" |
| 27 | //usage: "\n -c Continue retrieval of aborted transfer" |
| 28 | //usage: "\n -q Quiet" |
| 29 | //usage: "\n -P DIR Save to DIR (default .)" |
| 30 | //usage: IF_FEATURE_WGET_TIMEOUT( |
| 31 | //usage: "\n -T SEC Network read timeout is SEC seconds" |
| 32 | //usage: ) |
| 33 | //usage: "\n -O FILE Save to FILE ('-' for stdout)" |
| 34 | //usage: "\n -U STR Use STR for User-Agent header" |
| 35 | //usage: "\n -Y Use proxy ('on' or 'off')" |
| 36 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 37 | #include "libbb.h" |
Denis Vlasenko | a552eeb | 2006-09-26 09:22:12 +0000 | [diff] [blame] | 38 | |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 39 | #if 0 |
| 40 | # define log_io(...) bb_error_msg(__VA_ARGS__) |
| 41 | #else |
| 42 | # define log_io(...) ((void)0) |
| 43 | #endif |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 44 | |
| 45 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 46 | struct host_info { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 47 | char *allocated; |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 48 | const char *path; |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 49 | char *user; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 50 | const char *protocol; |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 51 | char *host; |
| 52 | int port; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 53 | }; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 54 | static const char P_FTP[] = "ftp"; |
| 55 | static const char P_HTTP[] = "http"; |
| 56 | static const char P_HTTPS[] = "https"; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 57 | |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 58 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 59 | /* Globals */ |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 60 | struct globals { |
| 61 | off_t content_len; /* Content-length of the file */ |
| 62 | off_t beg_range; /* Range at which continue begins */ |
| 63 | #if ENABLE_FEATURE_WGET_STATUSBAR |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 64 | off_t transferred; /* Number of bytes transferred so far */ |
| 65 | const char *curfile; /* Name of current file being transferred */ |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 66 | bb_progress_t pmt; |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 67 | #endif |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 68 | char *dir_prefix; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 69 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 70 | char *post_data; |
| 71 | char *extra_headers; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 72 | #endif |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 73 | char *fname_out; /* where to direct output (-O) */ |
| 74 | const char *proxy_flag; /* Use proxies if env vars are set */ |
| 75 | const char *user_agent; /* "User-Agent" header field */ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 76 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 77 | unsigned timeout_seconds; |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 78 | bool connecting; |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 79 | #endif |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 80 | int output_fd; |
| 81 | int o_flags; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 82 | smallint chunked; /* chunked transfer encoding */ |
| 83 | smallint got_clen; /* got content-length: from server */ |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 84 | /* Local downloads do benefit from big buffer. |
| 85 | * With 512 byte buffer, it was measured to be |
| 86 | * an order of magnitude slower than with big one. |
| 87 | */ |
| 88 | uint64_t just_to_align_next_member; |
| 89 | char wget_buf[CONFIG_FEATURE_COPYBUF_KB*1024]; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 90 | } FIX_ALIASING; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 91 | #define G (*ptr_to_globals) |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 92 | #define INIT_G() do { \ |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 93 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 94 | } while (0) |
Guilherme Maciel Ferreira | 840ef17 | 2013-10-16 14:43:30 +0200 | [diff] [blame] | 95 | #define FINI_G() do { \ |
| 96 | FREE_PTR_TO_GLOBALS(); \ |
| 97 | } while (0) |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 98 | |
| 99 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 100 | /* Must match option string! */ |
| 101 | enum { |
| 102 | WGET_OPT_CONTINUE = (1 << 0), |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 103 | WGET_OPT_SPIDER = (1 << 1), |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 104 | WGET_OPT_QUIET = (1 << 2), |
| 105 | WGET_OPT_OUTNAME = (1 << 3), |
| 106 | WGET_OPT_PREFIX = (1 << 4), |
| 107 | WGET_OPT_PROXY = (1 << 5), |
| 108 | WGET_OPT_USER_AGENT = (1 << 6), |
| 109 | WGET_OPT_NETWORK_READ_TIMEOUT = (1 << 7), |
| 110 | WGET_OPT_RETRIES = (1 << 8), |
| 111 | WGET_OPT_PASSIVE = (1 << 9), |
| 112 | WGET_OPT_HEADER = (1 << 10) * ENABLE_FEATURE_WGET_LONG_OPTIONS, |
| 113 | WGET_OPT_POST_DATA = (1 << 11) * ENABLE_FEATURE_WGET_LONG_OPTIONS, |
| 114 | }; |
| 115 | |
| 116 | enum { |
| 117 | PROGRESS_START = -1, |
| 118 | PROGRESS_END = 0, |
| 119 | PROGRESS_BUMP = 1, |
| 120 | }; |
Denis Vlasenko | 9cade08 | 2006-11-21 10:43:02 +0000 | [diff] [blame] | 121 | #if ENABLE_FEATURE_WGET_STATUSBAR |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 122 | static void progress_meter(int flag) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 123 | { |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 124 | if (option_mask32 & WGET_OPT_QUIET) |
| 125 | return; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 126 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 127 | if (flag == PROGRESS_START) |
Denys Vlasenko | d55e139 | 2011-02-11 18:56:13 +0100 | [diff] [blame] | 128 | bb_progress_init(&G.pmt, G.curfile); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 129 | |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 130 | bb_progress_update(&G.pmt, |
| 131 | G.beg_range, |
| 132 | G.transferred, |
| 133 | (G.chunked || !G.got_clen) ? 0 : G.beg_range + G.transferred + G.content_len |
| 134 | ); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 135 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 136 | if (flag == PROGRESS_END) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 137 | bb_progress_free(&G.pmt); |
Denys Vlasenko | 19ced5c | 2010-06-06 21:53:09 +0200 | [diff] [blame] | 138 | bb_putchar_stderr('\n'); |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 139 | G.transferred = 0; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 140 | } |
| 141 | } |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 142 | #else |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 143 | static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) { } |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 144 | #endif |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 145 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 146 | |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 147 | /* IPv6 knows scoped address types i.e. link and site local addresses. Link |
| 148 | * local addresses can have a scope identifier to specify the |
| 149 | * interface/link an address is valid on (e.g. fe80::1%eth0). This scope |
| 150 | * identifier is only valid on a single node. |
| 151 | * |
| 152 | * RFC 4007 says that the scope identifier MUST NOT be sent across the wire, |
| 153 | * unless all nodes agree on the semantic. Apache e.g. regards zone identifiers |
| 154 | * in the Host header as invalid requests, see |
| 155 | * https://issues.apache.org/bugzilla/show_bug.cgi?id=35122 |
| 156 | */ |
| 157 | static void strip_ipv6_scope_id(char *host) |
| 158 | { |
| 159 | char *scope, *cp; |
| 160 | |
| 161 | /* bbox wget actually handles IPv6 addresses without [], like |
| 162 | * wget "http://::1/xxx", but this is not standard. |
| 163 | * To save code, _here_ we do not support it. */ |
| 164 | |
| 165 | if (host[0] != '[') |
| 166 | return; /* not IPv6 */ |
| 167 | |
| 168 | scope = strchr(host, '%'); |
| 169 | if (!scope) |
| 170 | return; |
| 171 | |
| 172 | /* Remove the IPv6 zone identifier from the host address */ |
| 173 | cp = strchr(host, ']'); |
| 174 | if (!cp || (cp[1] != ':' && cp[1] != '\0')) { |
| 175 | /* malformed address (not "[xx]:nn" or "[xx]") */ |
| 176 | return; |
| 177 | } |
| 178 | |
| 179 | /* cp points to "]...", scope points to "%eth0]..." */ |
| 180 | overlapping_strcpy(scope, cp); |
| 181 | } |
| 182 | |
Denis Vlasenko | 9cade08 | 2006-11-21 10:43:02 +0000 | [diff] [blame] | 183 | #if ENABLE_FEATURE_WGET_AUTHENTICATION |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 184 | /* Base64-encode character string. */ |
| 185 | static char *base64enc(const char *str) |
Denis Vlasenko | 3526a13 | 2006-09-09 12:20:57 +0000 | [diff] [blame] | 186 | { |
Denis Vlasenko | 12d2129 | 2007-06-27 21:40:07 +0000 | [diff] [blame] | 187 | unsigned len = strlen(str); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 188 | if (len > sizeof(G.wget_buf)/4*3 - 10) /* paranoia */ |
| 189 | len = sizeof(G.wget_buf)/4*3 - 10; |
| 190 | bb_uuencode(G.wget_buf, str, len, bb_uuenc_tbl_base64); |
| 191 | return G.wget_buf; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 192 | } |
| 193 | #endif |
| 194 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 195 | static char* sanitize_string(char *s) |
| 196 | { |
| 197 | unsigned char *p = (void *) s; |
| 198 | while (*p >= ' ') |
| 199 | p++; |
| 200 | *p = '\0'; |
| 201 | return s; |
| 202 | } |
| 203 | |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 204 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 205 | static void alarm_handler(int sig UNUSED_PARAM) |
| 206 | { |
| 207 | /* This is theoretically unsafe (uses stdio and malloc in signal handler) */ |
| 208 | if (G.connecting) |
| 209 | bb_error_msg_and_die("download timed out"); |
| 210 | } |
| 211 | #endif |
| 212 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 213 | static FILE *open_socket(len_and_sockaddr *lsa) |
| 214 | { |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 215 | int fd; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 216 | FILE *fp; |
| 217 | |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 218 | IF_FEATURE_WGET_TIMEOUT(alarm(G.timeout_seconds); G.connecting = 1;) |
| 219 | fd = xconnect_stream(lsa); |
| 220 | IF_FEATURE_WGET_TIMEOUT(G.connecting = 0;) |
| 221 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 222 | /* glibc 2.4 seems to try seeking on it - ??! */ |
| 223 | /* hopefully it understands what ESPIPE means... */ |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 224 | fp = fdopen(fd, "r+"); |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 225 | if (!fp) |
Denys Vlasenko | dee0fc9 | 2011-02-10 10:01:49 +0100 | [diff] [blame] | 226 | bb_perror_msg_and_die(bb_msg_memory_exhausted); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 227 | |
| 228 | return fp; |
| 229 | } |
| 230 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 231 | /* Returns '\n' if it was seen, else '\0'. Trims at first '\r' or '\n' */ |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 232 | /* FIXME: does not respect FEATURE_WGET_TIMEOUT and -T N: */ |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 233 | static char fgets_and_trim(FILE *fp) |
| 234 | { |
| 235 | char c; |
| 236 | char *buf_ptr; |
| 237 | |
| 238 | if (fgets(G.wget_buf, sizeof(G.wget_buf) - 1, fp) == NULL) |
| 239 | bb_perror_msg_and_die("error getting response"); |
| 240 | |
| 241 | buf_ptr = strchrnul(G.wget_buf, '\n'); |
| 242 | c = *buf_ptr; |
| 243 | *buf_ptr = '\0'; |
| 244 | buf_ptr = strchrnul(G.wget_buf, '\r'); |
| 245 | *buf_ptr = '\0'; |
| 246 | |
| 247 | log_io("< %s", G.wget_buf); |
| 248 | |
| 249 | return c; |
| 250 | } |
| 251 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 252 | static int ftpcmd(const char *s1, const char *s2, FILE *fp) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 253 | { |
| 254 | int result; |
| 255 | if (s1) { |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 256 | if (!s2) |
| 257 | s2 = ""; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 258 | fprintf(fp, "%s%s\r\n", s1, s2); |
| 259 | fflush(fp); |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 260 | log_io("> %s%s", s1, s2); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | do { |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 264 | fgets_and_trim(fp); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 265 | } while (!isdigit(G.wget_buf[0]) || G.wget_buf[3] != ' '); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 266 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 267 | G.wget_buf[3] = '\0'; |
| 268 | result = xatoi_positive(G.wget_buf); |
| 269 | G.wget_buf[3] = ' '; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 270 | return result; |
| 271 | } |
| 272 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 273 | static void parse_url(const char *src_url, struct host_info *h) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 274 | { |
| 275 | char *url, *p, *sp; |
| 276 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 277 | free(h->allocated); |
| 278 | h->allocated = url = xstrdup(src_url); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 279 | |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 280 | h->protocol = P_FTP; |
| 281 | p = strstr(url, "://"); |
| 282 | if (p) { |
| 283 | *p = '\0'; |
| 284 | h->host = p + 3; |
| 285 | if (strcmp(url, P_FTP) == 0) { |
| 286 | h->port = bb_lookup_port(P_FTP, "tcp", 21); |
| 287 | } else |
| 288 | if (strcmp(url, P_HTTPS) == 0) { |
| 289 | h->port = bb_lookup_port(P_HTTPS, "tcp", 443); |
| 290 | h->protocol = P_HTTPS; |
| 291 | } else |
| 292 | if (strcmp(url, P_HTTP) == 0) { |
Lauri Kasanen | 4967a41 | 2013-12-17 19:03:41 +0100 | [diff] [blame] | 293 | http: |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 294 | h->port = bb_lookup_port(P_HTTP, "tcp", 80); |
| 295 | h->protocol = P_HTTP; |
| 296 | } else { |
| 297 | *p = ':'; |
| 298 | bb_error_msg_and_die("not an http or ftp url: %s", sanitize_string(url)); |
| 299 | } |
| 300 | } else { |
Lauri Kasanen | 4967a41 | 2013-12-17 19:03:41 +0100 | [diff] [blame] | 301 | // GNU wget is user-friendly and falls back to http:// |
| 302 | h->host = url; |
| 303 | goto http; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 304 | } |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 305 | |
| 306 | // FYI: |
| 307 | // "Real" wget 'http://busybox.net?var=a/b' sends this request: |
| 308 | // 'GET /?var=a/b HTTP 1.0' |
| 309 | // and saves 'index.html?var=a%2Fb' (we save 'b') |
| 310 | // wget 'http://busybox.net?login=john@doe': |
| 311 | // request: 'GET /?login=john@doe HTTP/1.0' |
| 312 | // saves: 'index.html?login=john@doe' (we save '?login=john@doe') |
| 313 | // wget 'http://busybox.net#test/test': |
| 314 | // request: 'GET / HTTP/1.0' |
| 315 | // saves: 'index.html' (we save 'test') |
| 316 | // |
| 317 | // We also don't add unique .N suffix if file exists... |
| 318 | sp = strchr(h->host, '/'); |
| 319 | p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p; |
| 320 | p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p; |
| 321 | if (!sp) { |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 322 | h->path = ""; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 323 | } else if (*sp == '/') { |
| 324 | *sp = '\0'; |
| 325 | h->path = sp + 1; |
| 326 | } else { // '#' or '?' |
| 327 | // http://busybox.net?login=john@doe is a valid URL |
| 328 | // memmove converts to: |
| 329 | // http:/busybox.nett?login=john@doe... |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 330 | memmove(h->host - 1, h->host, sp - h->host); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 331 | h->host--; |
| 332 | sp[-1] = '\0'; |
| 333 | h->path = sp; |
| 334 | } |
| 335 | |
| 336 | sp = strrchr(h->host, '@'); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 337 | if (sp != NULL) { |
Denys Vlasenko | dd1061b | 2011-09-11 21:04:02 +0200 | [diff] [blame] | 338 | // URL-decode "user:password" string before base64-encoding: |
| 339 | // wget http://test:my%20pass@example.com should send |
| 340 | // Authorization: Basic dGVzdDpteSBwYXNz |
| 341 | // which decodes to "test:my pass". |
| 342 | // Standard wget and curl do this too. |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 343 | *sp = '\0'; |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 344 | free(h->user); |
| 345 | h->user = xstrdup(percent_decode_in_place(h->host, /*strict:*/ 0)); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 346 | h->host = sp + 1; |
| 347 | } |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 348 | /* else: h->user remains NULL, or as set by original request |
| 349 | * before redirect (if we are here after a redirect). |
| 350 | */ |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 351 | } |
| 352 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 353 | static char *gethdr(FILE *fp) |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 354 | { |
| 355 | char *s, *hdrval; |
| 356 | int c; |
| 357 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 358 | /* retrieve header line */ |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 359 | c = fgets_and_trim(fp); |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 360 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 361 | /* end of the headers? */ |
| 362 | if (G.wget_buf[0] == '\0') |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 363 | return NULL; |
| 364 | |
| 365 | /* convert the header name to lower case */ |
Denys Vlasenko | ea267d5 | 2013-07-01 15:01:50 +0200 | [diff] [blame] | 366 | for (s = G.wget_buf; isalnum(*s) || *s == '-' || *s == '.' || *s == '_'; ++s) { |
| 367 | /* |
| 368 | * No-op for 20-3f and 60-7f. "0-9a-z-." are in these ranges. |
| 369 | * 40-5f range ("@A-Z[\]^_") maps to 60-7f. |
| 370 | * "A-Z" maps to "a-z". |
| 371 | * "@[\]" can't occur in header names. |
| 372 | * "^_" maps to "~,DEL" (which is wrong). |
| 373 | * "^" was never seen yet, "_" was seen from web.archive.org |
| 374 | * (x-archive-orig-x_commoncrawl_Signature: HEXSTRING). |
| 375 | */ |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 376 | *s |= 0x20; |
Denys Vlasenko | 4836331 | 2010-04-04 15:29:32 +0200 | [diff] [blame] | 377 | } |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 378 | |
| 379 | /* verify we are at the end of the header name */ |
| 380 | if (*s != ':') |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 381 | 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] | 382 | |
| 383 | /* locate the start of the header value */ |
| 384 | *s++ = '\0'; |
| 385 | hdrval = skip_whitespace(s); |
| 386 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 387 | if (c != '\n') { |
| 388 | /* Rats! The buffer isn't big enough to hold the entire header value */ |
| 389 | while (c = getc(fp), c != EOF && c != '\n') |
| 390 | continue; |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 391 | } |
| 392 | |
Denis Vlasenko | 47ddd01 | 2007-09-24 18:24:17 +0000 | [diff] [blame] | 393 | return hdrval; |
| 394 | } |
| 395 | |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 396 | static void reset_beg_range_to_zero(void) |
| 397 | { |
Denys Vlasenko | 6144124 | 2012-06-17 19:52:25 +0200 | [diff] [blame] | 398 | bb_error_msg("restart failed"); |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 399 | G.beg_range = 0; |
| 400 | xlseek(G.output_fd, 0, SEEK_SET); |
Denys Vlasenko | 6144124 | 2012-06-17 19:52:25 +0200 | [diff] [blame] | 401 | /* Done at the end instead: */ |
| 402 | /* ftruncate(G.output_fd, 0); */ |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 403 | } |
| 404 | |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 405 | static FILE* prepare_ftp_session(FILE **dfpp, struct host_info *target, len_and_sockaddr *lsa) |
| 406 | { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 407 | FILE *sfp; |
| 408 | char *str; |
| 409 | int port; |
| 410 | |
| 411 | if (!target->user) |
| 412 | target->user = xstrdup("anonymous:busybox@"); |
| 413 | |
| 414 | sfp = open_socket(lsa); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 415 | if (ftpcmd(NULL, NULL, sfp) != 220) |
| 416 | bb_error_msg_and_die("%s", sanitize_string(G.wget_buf + 4)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 417 | |
| 418 | /* |
| 419 | * Splitting username:password pair, |
| 420 | * trying to log in |
| 421 | */ |
| 422 | str = strchr(target->user, ':'); |
| 423 | if (str) |
| 424 | *str++ = '\0'; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 425 | switch (ftpcmd("USER ", target->user, sfp)) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 426 | case 230: |
| 427 | break; |
| 428 | case 331: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 429 | if (ftpcmd("PASS ", str, sfp) == 230) |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 430 | break; |
| 431 | /* fall through (failed login) */ |
| 432 | default: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 433 | 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] | 434 | } |
| 435 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 436 | ftpcmd("TYPE I", NULL, sfp); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 437 | |
| 438 | /* |
| 439 | * Querying file size |
| 440 | */ |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 441 | if (ftpcmd("SIZE ", target->path, sfp) == 213) { |
| 442 | G.content_len = BB_STRTOOFF(G.wget_buf + 4, NULL, 10); |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 443 | if (G.content_len < 0 || errno) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 444 | bb_error_msg_and_die("SIZE value is garbage"); |
| 445 | } |
| 446 | G.got_clen = 1; |
| 447 | } |
| 448 | |
| 449 | /* |
| 450 | * Entering passive mode |
| 451 | */ |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 452 | if (ftpcmd("PASV", NULL, sfp) != 227) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 453 | pasv_error: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 454 | 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] | 455 | } |
| 456 | // Response is "227 garbageN1,N2,N3,N4,P1,P2[)garbage] |
| 457 | // Server's IP is N1.N2.N3.N4 (we ignore it) |
| 458 | // Server's port for data connection is P1*256+P2 |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 459 | str = strrchr(G.wget_buf, ')'); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 460 | if (str) str[0] = '\0'; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 461 | str = strrchr(G.wget_buf, ','); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 462 | if (!str) goto pasv_error; |
| 463 | port = xatou_range(str+1, 0, 255); |
| 464 | *str = '\0'; |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 465 | str = strrchr(G.wget_buf, ','); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 466 | if (!str) goto pasv_error; |
| 467 | port += xatou_range(str+1, 0, 255) * 256; |
Denys Vlasenko | ca18311 | 2011-04-07 17:52:20 +0200 | [diff] [blame] | 468 | set_nport(&lsa->u.sa, htons(port)); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 469 | |
| 470 | *dfpp = open_socket(lsa); |
| 471 | |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 472 | if (G.beg_range != 0) { |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 473 | sprintf(G.wget_buf, "REST %"OFF_FMT"u", G.beg_range); |
| 474 | if (ftpcmd(G.wget_buf, NULL, sfp) == 350) |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 475 | G.content_len -= G.beg_range; |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 476 | else |
| 477 | reset_beg_range_to_zero(); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 478 | } |
| 479 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 480 | if (ftpcmd("RETR ", target->path, sfp) > 150) |
| 481 | 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] | 482 | |
| 483 | return sfp; |
| 484 | } |
| 485 | |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 486 | static int spawn_https_helper(const char *host, unsigned port) |
| 487 | { |
| 488 | char *allocated = NULL; |
| 489 | int sp[2]; |
| 490 | int pid; |
| 491 | |
| 492 | if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) != 0) |
| 493 | /* Kernel can have AF_UNIX support disabled */ |
| 494 | bb_perror_msg_and_die("socketpair"); |
| 495 | |
| 496 | if (!strchr(host, ':')) |
| 497 | host = allocated = xasprintf("%s:%u", host, port); |
| 498 | |
| 499 | pid = BB_MMU ? xfork() : xvfork(); |
| 500 | if (pid == 0) { |
| 501 | /* Child */ |
| 502 | char *argv[6]; |
| 503 | |
| 504 | close(sp[0]); |
| 505 | xmove_fd(sp[1], 0); |
| 506 | xdup2(0, 1); |
| 507 | /* |
| 508 | * TODO: develop a tiny ssl/tls helper (using matrixssl?), |
| 509 | * try to exec it here before falling back to big fat openssl. |
| 510 | */ |
| 511 | /* |
| 512 | * openssl s_client -quiet -connect www.kernel.org:443 2>/dev/null |
| 513 | * It prints some debug stuff on stderr, don't know how to suppress it. |
| 514 | * Work around by dev-nulling stderr. We lose all error messages :( |
| 515 | */ |
| 516 | xmove_fd(2, 3); |
| 517 | xopen("/dev/null", O_RDWR); |
| 518 | argv[0] = (char*)"openssl"; |
| 519 | argv[1] = (char*)"s_client"; |
| 520 | argv[2] = (char*)"-quiet"; |
| 521 | argv[3] = (char*)"-connect"; |
| 522 | argv[4] = (char*)host; |
| 523 | argv[5] = NULL; |
| 524 | BB_EXECVP(argv[0], argv); |
| 525 | xmove_fd(3, 2); |
| 526 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
| 527 | /* notreached */ |
| 528 | } |
| 529 | |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 530 | /* Parent */ |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 531 | free(allocated); |
| 532 | close(sp[1]); |
| 533 | return sp[0]; |
| 534 | } |
| 535 | |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 536 | /* See networking/ssl_helper/README */ |
| 537 | #define SSL_HELPER 0 |
| 538 | |
| 539 | #if SSL_HELPER |
| 540 | static void spawn_https_helper1(int network_fd) |
| 541 | { |
| 542 | int sp[2]; |
| 543 | int pid; |
| 544 | |
| 545 | if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) != 0) |
| 546 | /* Kernel can have AF_UNIX support disabled */ |
| 547 | bb_perror_msg_and_die("socketpair"); |
| 548 | |
| 549 | pid = BB_MMU ? xfork() : xvfork(); |
| 550 | if (pid == 0) { |
| 551 | /* Child */ |
| 552 | char *argv[3]; |
| 553 | |
| 554 | close(sp[0]); |
| 555 | xmove_fd(sp[1], 0); |
| 556 | xdup2(0, 1); |
| 557 | xmove_fd(network_fd, 3); |
| 558 | /* |
| 559 | * A simple ssl/tls helper |
| 560 | */ |
| 561 | argv[0] = (char*)"ssl_helper"; |
| 562 | argv[1] = (char*)"-d3"; |
| 563 | argv[2] = NULL; |
| 564 | BB_EXECVP(argv[0], argv); |
| 565 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
| 566 | /* notreached */ |
| 567 | } |
| 568 | |
| 569 | /* Parent */ |
| 570 | close(sp[1]); |
| 571 | xmove_fd(sp[0], network_fd); |
| 572 | } |
| 573 | #endif |
| 574 | |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 575 | static void NOINLINE retrieve_file_data(FILE *dfp) |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 576 | { |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 577 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 578 | # if ENABLE_FEATURE_WGET_TIMEOUT |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 579 | unsigned second_cnt = G.timeout_seconds; |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 580 | # endif |
| 581 | struct pollfd polldata; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 582 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 583 | polldata.fd = fileno(dfp); |
| 584 | polldata.events = POLLIN | POLLPRI; |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 585 | #endif |
| 586 | progress_meter(PROGRESS_START); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 587 | |
| 588 | if (G.chunked) |
| 589 | goto get_clen; |
| 590 | |
| 591 | /* Loops only if chunked */ |
| 592 | while (1) { |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 593 | |
| 594 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 595 | /* Must use nonblocking I/O, otherwise fread will loop |
| 596 | * and *block* until it reads full buffer, |
| 597 | * which messes up progress bar and/or timeout logic. |
| 598 | * Because of nonblocking I/O, we need to dance |
| 599 | * very carefully around EAGAIN. See explanation at |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 600 | * clearerr() calls. |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 601 | */ |
| 602 | ndelay_on(polldata.fd); |
| 603 | #endif |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 604 | while (1) { |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 605 | int n; |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 606 | unsigned rdsz; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 607 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 608 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 609 | /* fread internally uses read loop, which in our case |
| 610 | * is usually exited when we get EAGAIN. |
| 611 | * In this case, libc sets error marker on the stream. |
| 612 | * Need to clear it before next fread to avoid possible |
| 613 | * rare false positive ferror below. Rare because usually |
| 614 | * fread gets more than zero bytes, and we don't fall |
| 615 | * into if (n <= 0) ... |
| 616 | */ |
| 617 | clearerr(dfp); |
Denys Vlasenko | f9af375 | 2011-02-11 22:01:33 +0100 | [diff] [blame] | 618 | #endif |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 619 | errno = 0; |
| 620 | rdsz = sizeof(G.wget_buf); |
| 621 | if (G.got_clen) { |
| 622 | if (G.content_len < (off_t)sizeof(G.wget_buf)) { |
| 623 | if ((int)G.content_len <= 0) |
| 624 | break; |
| 625 | rdsz = (unsigned)G.content_len; |
| 626 | } |
| 627 | } |
Denys Vlasenko | 0fac2f7 | 2011-02-10 09:55:05 +0100 | [diff] [blame] | 628 | n = fread(G.wget_buf, 1, rdsz, dfp); |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 629 | |
| 630 | if (n > 0) { |
| 631 | xwrite(G.output_fd, G.wget_buf, n); |
| 632 | #if ENABLE_FEATURE_WGET_STATUSBAR |
| 633 | G.transferred += n; |
| 634 | #endif |
| 635 | if (G.got_clen) { |
| 636 | G.content_len -= n; |
| 637 | if (G.content_len == 0) |
| 638 | break; |
| 639 | } |
| 640 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 641 | second_cnt = G.timeout_seconds; |
| 642 | #endif |
Denys Vlasenko | faa9e94 | 2014-03-27 16:50:29 +0100 | [diff] [blame] | 643 | goto bump; |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | /* n <= 0. |
| 647 | * man fread: |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 648 | * If error occurs, or EOF is reached, the return value |
| 649 | * is a short item count (or zero). |
| 650 | * fread does not distinguish between EOF and error. |
| 651 | */ |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 652 | if (errno != EAGAIN) { |
| 653 | if (ferror(dfp)) { |
| 654 | progress_meter(PROGRESS_END); |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 655 | bb_perror_msg_and_die(bb_msg_read_error); |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 656 | } |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 657 | break; /* EOF, not error */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 658 | } |
Denys Vlasenko | 8766a79 | 2011-02-11 21:42:00 +0100 | [diff] [blame] | 659 | |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 660 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 661 | /* It was EAGAIN. There is no data. Wait up to one second |
| 662 | * then abort if timed out, or update the bar and try reading again. |
| 663 | */ |
| 664 | if (safe_poll(&polldata, 1, 1000) == 0) { |
| 665 | # if ENABLE_FEATURE_WGET_TIMEOUT |
| 666 | if (second_cnt != 0 && --second_cnt == 0) { |
| 667 | progress_meter(PROGRESS_END); |
| 668 | bb_error_msg_and_die("download timed out"); |
| 669 | } |
| 670 | # endif |
| 671 | /* We used to loop back to poll here, |
| 672 | * but there is no great harm in letting fread |
| 673 | * to try reading anyway. |
| 674 | */ |
| 675 | } |
Denys Vlasenko | faa9e94 | 2014-03-27 16:50:29 +0100 | [diff] [blame] | 676 | #endif |
| 677 | bump: |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 678 | /* Need to do it _every_ second for "stalled" indicator |
| 679 | * to be shown properly. |
| 680 | */ |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 681 | progress_meter(PROGRESS_BUMP); |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 682 | } /* while (reading data) */ |
| 683 | |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 684 | #if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT |
| 685 | clearerr(dfp); |
Denys Vlasenko | 88ad9da | 2011-02-11 23:06:21 +0100 | [diff] [blame] | 686 | ndelay_off(polldata.fd); /* else fgets can get very unhappy */ |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 687 | #endif |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 688 | if (!G.chunked) |
| 689 | break; |
| 690 | |
Denys Vlasenko | c60f446 | 2011-02-11 22:23:23 +0100 | [diff] [blame] | 691 | fgets_and_trim(dfp); /* Eat empty line */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 692 | get_clen: |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 693 | fgets_and_trim(dfp); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 694 | G.content_len = STRTOOFF(G.wget_buf, NULL, 16); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 695 | /* FIXME: error check? */ |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 696 | if (G.content_len == 0) |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 697 | break; /* all done! */ |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 698 | G.got_clen = 1; |
Denys Vlasenko | b7812ce | 2012-09-03 12:49:30 +0200 | [diff] [blame] | 699 | /* |
| 700 | * Note that fgets may result in some data being buffered in dfp. |
| 701 | * We loop back to fread, which will retrieve this data. |
| 702 | * Also note that code has to be arranged so that fread |
| 703 | * is done _before_ one-second poll wait - poll doesn't know |
| 704 | * about stdio buffering and can result in spurious one second waits! |
| 705 | */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 706 | } |
| 707 | |
Denys Vlasenko | 6144124 | 2012-06-17 19:52:25 +0200 | [diff] [blame] | 708 | /* If -c failed, we restart from the beginning, |
| 709 | * but we do not truncate file then, we do it only now, at the end. |
| 710 | * This lets user to ^C if his 99% complete 10 GB file download |
| 711 | * failed to restart *without* losing the almost complete file. |
| 712 | */ |
| 713 | { |
| 714 | off_t pos = lseek(G.output_fd, 0, SEEK_CUR); |
| 715 | if (pos != (off_t)-1) |
| 716 | ftruncate(G.output_fd, pos); |
| 717 | } |
| 718 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 719 | /* Draw full bar and free its resources */ |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 720 | G.chunked = 0; /* makes it show 100% even for chunked download */ |
| 721 | 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] | 722 | progress_meter(PROGRESS_END); |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 723 | } |
| 724 | |
Pere Orga | 5369563 | 2011-02-16 20:09:36 +0100 | [diff] [blame] | 725 | static void download_one_url(const char *url) |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 726 | { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 727 | bool use_proxy; /* Use proxies if env vars are set */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 728 | int redir_limit; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 729 | len_and_sockaddr *lsa; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 730 | FILE *sfp; /* socket to web/ftp server */ |
Denis Vlasenko | a36535b | 2007-09-27 15:07:23 +0000 | [diff] [blame] | 731 | FILE *dfp; /* socket to ftp server (data) */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 732 | char *proxy = NULL; |
| 733 | char *fname_out_alloc; |
Denys Vlasenko | 93b4a60 | 2011-12-18 05:11:56 +0100 | [diff] [blame] | 734 | char *redirected_path = NULL; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 735 | struct host_info server; |
| 736 | struct host_info target; |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 737 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 738 | server.allocated = NULL; |
| 739 | target.allocated = NULL; |
| 740 | server.user = NULL; |
Vladimir Dronnikov | be168b1 | 2009-10-05 02:18:01 +0200 | [diff] [blame] | 741 | target.user = NULL; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 742 | |
| 743 | parse_url(url, &target); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 744 | |
Bernhard Reutner-Fischer | 7e8a53a | 2007-04-10 09:37:29 +0000 | [diff] [blame] | 745 | /* Use the proxy if necessary */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 746 | use_proxy = (strcmp(G.proxy_flag, "off") != 0); |
Glenn L McGrath | f1c4b11 | 2004-02-22 00:27:34 +0000 | [diff] [blame] | 747 | if (use_proxy) { |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 748 | proxy = getenv(target.protocol == P_FTP ? "ftp_proxy" : "http_proxy"); |
| 749 | //FIXME: what if protocol is https? Ok to use http_proxy? |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 750 | use_proxy = (proxy && proxy[0]); |
| 751 | if (use_proxy) |
Denis Vlasenko | 96e9d3c | 2006-10-07 14:28:55 +0000 | [diff] [blame] | 752 | parse_url(proxy, &server); |
Robert Griebl | d776011 | 2002-05-14 23:36:45 +0000 | [diff] [blame] | 753 | } |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 754 | if (!use_proxy) { |
| 755 | server.port = target.port; |
| 756 | if (ENABLE_FEATURE_IPV6) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 757 | //free(server.allocated); - can't be non-NULL |
| 758 | server.host = server.allocated = xstrdup(target.host); |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 759 | } else { |
| 760 | server.host = target.host; |
| 761 | } |
| 762 | } |
| 763 | |
| 764 | if (ENABLE_FEATURE_IPV6) |
| 765 | strip_ipv6_scope_id(target.host); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 766 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 767 | /* If there was no -O FILE, guess output filename */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 768 | fname_out_alloc = NULL; |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 769 | if (!(option_mask32 & WGET_OPT_OUTNAME)) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 770 | G.fname_out = bb_get_last_path_component_nostrip(target.path); |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 771 | /* handle "wget http://kernel.org//" */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 772 | if (G.fname_out[0] == '/' || !G.fname_out[0]) |
| 773 | G.fname_out = (char*)"index.html"; |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 774 | /* -P DIR is considered only if there was no -O FILE */ |
Denys Vlasenko | aacd448 | 2012-06-17 20:21:30 +0200 | [diff] [blame] | 775 | if (G.dir_prefix) |
| 776 | 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] | 777 | else { |
Denys Vlasenko | aacd448 | 2012-06-17 20:21:30 +0200 | [diff] [blame] | 778 | /* redirects may free target.path later, need to make a copy */ |
| 779 | G.fname_out = fname_out_alloc = xstrdup(G.fname_out); |
Denys Vlasenko | 625f218 | 2011-03-21 00:29:37 +0100 | [diff] [blame] | 780 | } |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 781 | } |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 782 | #if ENABLE_FEATURE_WGET_STATUSBAR |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 783 | G.curfile = bb_get_last_path_component_nostrip(G.fname_out); |
Denis Vlasenko | 818322b | 2007-09-24 18:27:04 +0000 | [diff] [blame] | 784 | #endif |
| 785 | |
Bernhard Reutner-Fischer | 7e8a53a | 2007-04-10 09:37:29 +0000 | [diff] [blame] | 786 | /* Determine where to start transfer */ |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 787 | G.beg_range = 0; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 788 | if (option_mask32 & WGET_OPT_CONTINUE) { |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 789 | G.output_fd = open(G.fname_out, O_WRONLY); |
| 790 | if (G.output_fd >= 0) { |
| 791 | G.beg_range = xlseek(G.output_fd, 0, SEEK_END); |
Denis Vlasenko | a94554d | 2006-09-23 17:49:09 +0000 | [diff] [blame] | 792 | } |
| 793 | /* File doesn't exist. We do not create file here yet. |
Denys Vlasenko | a84eadf | 2011-02-12 23:40:31 +0100 | [diff] [blame] | 794 | * We are not sure it exists on remote side */ |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 795 | } |
| 796 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 797 | redir_limit = 5; |
| 798 | resolve_lsa: |
Denis Vlasenko | 42823d5 | 2007-02-04 02:39:08 +0000 | [diff] [blame] | 799 | lsa = xhost2sockaddr(server.host, server.port); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 800 | if (!(option_mask32 & WGET_OPT_QUIET)) { |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 801 | char *s = xmalloc_sockaddr2dotted(&lsa->u.sa); |
| 802 | fprintf(stderr, "Connecting to %s (%s)\n", server.host, s); |
| 803 | free(s); |
Eric Andersen | e6dc439 | 2003-10-31 09:31:46 +0000 | [diff] [blame] | 804 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 805 | establish_session: |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 806 | /*G.content_len = 0; - redundant, got_clen = 0 is enough */ |
| 807 | G.got_clen = 0; |
| 808 | G.chunked = 0; |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 809 | if (use_proxy || target.protocol != P_FTP) { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 810 | /* |
| 811 | * HTTP session |
| 812 | */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 813 | char *str; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 814 | int status; |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 815 | |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 816 | /* Open socket to http(s) server */ |
| 817 | if (target.protocol == P_HTTPS) { |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 818 | /* openssl-based helper |
Denys Vlasenko | a279622 | 2014-02-24 17:20:40 +0100 | [diff] [blame] | 819 | * Inconvenient API since we can't give it an open fd |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 820 | */ |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 821 | int fd = spawn_https_helper(server.host, server.port); |
| 822 | sfp = fdopen(fd, "r+"); |
| 823 | if (!sfp) |
| 824 | bb_perror_msg_and_die(bb_msg_memory_exhausted); |
| 825 | } else |
| 826 | sfp = open_socket(lsa); |
Denys Vlasenko | 5331557 | 2014-02-23 23:39:47 +0100 | [diff] [blame] | 827 | #if SSL_HELPER |
| 828 | if (target.protocol == P_HTTPS) |
| 829 | spawn_https_helper1(fileno(sfp)); |
| 830 | #endif |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 831 | /* Send HTTP request */ |
| 832 | if (use_proxy) { |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 833 | fprintf(sfp, "GET %s://%s/%s HTTP/1.1\r\n", |
| 834 | target.protocol, target.host, |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 835 | target.path); |
| 836 | } else { |
Denys Vlasenko | 8b7e8ae | 2014-02-22 14:12:29 +0100 | [diff] [blame] | 837 | fprintf(sfp, "%s /%s HTTP/1.1\r\n", |
| 838 | (option_mask32 & WGET_OPT_POST_DATA) ? "POST" : "GET", |
| 839 | target.path); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 840 | } |
Glenn L McGrath | e7bdfcc | 2003-08-28 22:03:19 +0000 | [diff] [blame] | 841 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 842 | fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n", |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 843 | target.host, G.user_agent); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 844 | |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 845 | /* Ask server to close the connection as soon as we are done |
| 846 | * (IOW: we do not intend to send more requests) |
| 847 | */ |
| 848 | fprintf(sfp, "Connection: close\r\n"); |
| 849 | |
Denis Vlasenko | 9cade08 | 2006-11-21 10:43:02 +0000 | [diff] [blame] | 850 | #if ENABLE_FEATURE_WGET_AUTHENTICATION |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 851 | if (target.user) { |
| 852 | fprintf(sfp, "Proxy-Authorization: Basic %s\r\n"+6, |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 853 | base64enc(target.user)); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 854 | } |
| 855 | if (use_proxy && server.user) { |
| 856 | fprintf(sfp, "Proxy-Authorization: Basic %s\r\n", |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 857 | base64enc(server.user)); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 858 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 859 | #endif |
| 860 | |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 861 | if (G.beg_range != 0) |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 862 | fprintf(sfp, "Range: bytes=%"OFF_FMT"u-\r\n", G.beg_range); |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 863 | |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 864 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 865 | if (G.extra_headers) |
| 866 | fputs(G.extra_headers, sfp); |
Denis Vlasenko | 5a2ad69 | 2009-03-04 14:13:37 +0000 | [diff] [blame] | 867 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 868 | if (option_mask32 & WGET_OPT_POST_DATA) { |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 869 | fprintf(sfp, |
| 870 | "Content-Type: application/x-www-form-urlencoded\r\n" |
| 871 | "Content-Length: %u\r\n" |
| 872 | "\r\n" |
| 873 | "%s", |
Vitaly Magerya | 700fbc3 | 2011-03-27 22:33:13 +0200 | [diff] [blame] | 874 | (int) strlen(G.post_data), G.post_data |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 875 | ); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 876 | } else |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 877 | #endif |
Denys Vlasenko | 9213a55 | 2011-02-10 13:23:45 +0100 | [diff] [blame] | 878 | { |
| 879 | fprintf(sfp, "\r\n"); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 880 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 881 | |
Nguyễn Thái Ngọc Duy | ebec11d | 2010-09-23 15:18:41 +0200 | [diff] [blame] | 882 | fflush(sfp); |
| 883 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 884 | /* |
| 885 | * Retrieve HTTP response line and check for "200" status code. |
| 886 | */ |
Denis Vlasenko | 023b57d | 2006-10-15 17:05:55 +0000 | [diff] [blame] | 887 | read_response: |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 888 | fgets_and_trim(sfp); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 889 | |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 890 | str = G.wget_buf; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 891 | str = skip_non_whitespace(str); |
| 892 | str = skip_whitespace(str); |
| 893 | // FIXME: no error check |
| 894 | // xatou wouldn't work: "200 OK" |
| 895 | status = atoi(str); |
| 896 | switch (status) { |
| 897 | case 0: |
| 898 | case 100: |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 899 | while (gethdr(sfp) != NULL) |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 900 | /* eat all remaining headers */; |
| 901 | goto read_response; |
| 902 | case 200: |
Denis Vlasenko | 50b5cac | 2008-06-22 16:28:02 +0000 | [diff] [blame] | 903 | /* |
| 904 | Response 204 doesn't say "null file", it says "metadata |
| 905 | has changed but data didn't": |
| 906 | |
| 907 | "10.2.5 204 No Content |
| 908 | The server has fulfilled the request but does not need to return |
| 909 | an entity-body, and might want to return updated metainformation. |
| 910 | The response MAY include new or updated metainformation in the form |
| 911 | of entity-headers, which if present SHOULD be associated with |
| 912 | the requested variant. |
| 913 | |
| 914 | If the client is a user agent, it SHOULD NOT change its document |
| 915 | view from that which caused the request to be sent. This response |
| 916 | is primarily intended to allow input for actions to take place |
| 917 | without causing a change to the user agent's active document view, |
| 918 | although any new or updated metainformation SHOULD be applied |
| 919 | to the document currently in the user agent's active view. |
| 920 | |
| 921 | The 204 response MUST NOT include a message-body, and thus |
| 922 | is always terminated by the first empty line after the header fields." |
| 923 | |
| 924 | However, in real world it was observed that some web servers |
| 925 | (e.g. Boa/0.94.14rc21) simply use code 204 when file size is zero. |
| 926 | */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 927 | case 204: |
Denys Vlasenko | bf146b8 | 2012-06-13 17:31:07 +0200 | [diff] [blame] | 928 | if (G.beg_range != 0) { |
| 929 | /* "Range:..." was not honored by the server. |
| 930 | * Restart download from the beginning. |
| 931 | */ |
| 932 | reset_beg_range_to_zero(); |
| 933 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 934 | break; |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 935 | case 300: /* redirection */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 936 | case 301: |
| 937 | case 302: |
| 938 | case 303: |
| 939 | break; |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 940 | case 206: /* Partial Content */ |
| 941 | if (G.beg_range != 0) |
| 942 | /* "Range:..." worked. Good. */ |
Denis Vlasenko | 023b57d | 2006-10-15 17:05:55 +0000 | [diff] [blame] | 943 | break; |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 944 | /* Partial Content even though we did not ask for it??? */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 945 | /* fall through */ |
| 946 | default: |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 947 | 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] | 948 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 949 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 950 | /* |
| 951 | * Retrieve HTTP headers. |
| 952 | */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 953 | while ((str = gethdr(sfp)) != NULL) { |
| 954 | static const char keywords[] ALIGN1 = |
| 955 | "content-length\0""transfer-encoding\0""location\0"; |
| 956 | enum { |
| 957 | KEY_content_length = 1, KEY_transfer_encoding, KEY_location |
| 958 | }; |
Matthijs van de Water | 0d58666 | 2009-08-22 20:19:48 +0200 | [diff] [blame] | 959 | smalluint key; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 960 | |
| 961 | /* gethdr converted "FOO:" string to lowercase */ |
| 962 | |
Matthijs van de Water | 0d58666 | 2009-08-22 20:19:48 +0200 | [diff] [blame] | 963 | /* strip trailing whitespace */ |
| 964 | char *s = strchrnul(str, '\0') - 1; |
| 965 | while (s >= str && (*s == ' ' || *s == '\t')) { |
| 966 | *s = '\0'; |
| 967 | s--; |
| 968 | } |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 969 | key = index_in_strings(keywords, G.wget_buf) + 1; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 970 | if (key == KEY_content_length) { |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 971 | G.content_len = BB_STRTOOFF(str, NULL, 10); |
| 972 | if (G.content_len < 0 || errno) { |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 973 | 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] | 974 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 975 | G.got_clen = 1; |
| 976 | continue; |
| 977 | } |
| 978 | if (key == KEY_transfer_encoding) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 979 | if (strcmp(str_tolower(str), "chunked") != 0) |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 980 | 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] | 981 | G.chunked = 1; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 982 | } |
| 983 | if (key == KEY_location && status >= 300) { |
| 984 | if (--redir_limit == 0) |
| 985 | bb_error_msg_and_die("too many redirections"); |
| 986 | fclose(sfp); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 987 | if (str[0] == '/') { |
Denys Vlasenko | 93b4a60 | 2011-12-18 05:11:56 +0100 | [diff] [blame] | 988 | free(redirected_path); |
| 989 | target.path = redirected_path = xstrdup(str+1); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 990 | /* lsa stays the same: it's on the same server */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 991 | } else { |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 992 | parse_url(str, &target); |
| 993 | if (!use_proxy) { |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 994 | /* server.user remains untouched */ |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 995 | free(server.allocated); |
Pere Orga | 57b4909 | 2011-02-14 23:56:07 +0100 | [diff] [blame] | 996 | server.allocated = NULL; |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 997 | server.host = target.host; |
Denys Vlasenko | 7d5ddf1 | 2009-06-30 20:36:27 +0200 | [diff] [blame] | 998 | /* strip_ipv6_scope_id(target.host); - no! */ |
| 999 | /* we assume remote never gives us IPv6 addr with scope id */ |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1000 | server.port = target.port; |
Denis Vlasenko | 6536a9b | 2007-01-12 10:35:23 +0000 | [diff] [blame] | 1001 | free(lsa); |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1002 | goto resolve_lsa; |
| 1003 | } /* else: lsa stays the same: we use proxy */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1004 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1005 | goto establish_session; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1006 | } |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1007 | } |
| 1008 | // if (status >= 300) |
| 1009 | // bb_error_msg_and_die("bad redirection (no Location: header from server)"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1010 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1011 | /* For HTTP, data is pumped over the same connection */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1012 | dfp = sfp; |
Denis Vlasenko | 96e9d3c | 2006-10-07 14:28:55 +0000 | [diff] [blame] | 1013 | |
| 1014 | } else { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1015 | /* |
| 1016 | * FTP session |
| 1017 | */ |
Denys Vlasenko | 7f43280 | 2009-06-28 01:02:24 +0200 | [diff] [blame] | 1018 | sfp = prepare_ftp_session(&dfp, &target, lsa); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1019 | } |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 1020 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1021 | free(lsa); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1022 | |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1023 | if (!(option_mask32 & WGET_OPT_SPIDER)) { |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1024 | if (G.output_fd < 0) |
| 1025 | G.output_fd = xopen(G.fname_out, G.o_flags); |
| 1026 | retrieve_file_data(dfp); |
| 1027 | if (!(option_mask32 & WGET_OPT_OUTNAME)) { |
| 1028 | xclose(G.output_fd); |
| 1029 | G.output_fd = -1; |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1030 | } |
Bernhard Reutner-Fischer | 2e75dcc | 2007-04-05 10:31:47 +0000 | [diff] [blame] | 1031 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1032 | |
Denys Vlasenko | f1fab09 | 2009-06-28 03:33:57 +0200 | [diff] [blame] | 1033 | if (dfp != sfp) { |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1034 | /* It's ftp. Close data connection properly */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1035 | fclose(dfp); |
Denys Vlasenko | df4e16c | 2011-02-10 06:29:06 +0100 | [diff] [blame] | 1036 | if (ftpcmd(NULL, NULL, sfp) != 226) |
| 1037 | bb_error_msg_and_die("ftp error: %s", sanitize_string(G.wget_buf + 4)); |
| 1038 | /* ftpcmd("QUIT", NULL, sfp); - why bother? */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 1039 | } |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1040 | fclose(sfp); |
Denis Vlasenko | 7710563 | 2007-09-24 15:04:00 +0000 | [diff] [blame] | 1041 | |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1042 | free(server.allocated); |
| 1043 | free(target.allocated); |
Denys Vlasenko | d353bff | 2014-02-03 14:09:42 +0100 | [diff] [blame] | 1044 | free(server.user); |
| 1045 | free(target.user); |
Denys Vlasenko | 9a5b7f6 | 2011-02-13 02:49:43 +0100 | [diff] [blame] | 1046 | free(fname_out_alloc); |
Denys Vlasenko | 93b4a60 | 2011-12-18 05:11:56 +0100 | [diff] [blame] | 1047 | free(redirected_path); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1048 | } |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1049 | |
| 1050 | int wget_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 1051 | int wget_main(int argc UNUSED_PARAM, char **argv) |
| 1052 | { |
| 1053 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1054 | static const char wget_longopts[] ALIGN1 = |
| 1055 | /* name, has_arg, val */ |
| 1056 | "continue\0" No_argument "c" |
| 1057 | //FIXME: -s isn't --spider, it's --save-headers! |
| 1058 | "spider\0" No_argument "s" |
| 1059 | "quiet\0" No_argument "q" |
| 1060 | "output-document\0" Required_argument "O" |
| 1061 | "directory-prefix\0" Required_argument "P" |
| 1062 | "proxy\0" Required_argument "Y" |
| 1063 | "user-agent\0" Required_argument "U" |
| 1064 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 1065 | "timeout\0" Required_argument "T" |
| 1066 | #endif |
| 1067 | /* Ignored: */ |
| 1068 | // "tries\0" Required_argument "t" |
| 1069 | /* Ignored (we always use PASV): */ |
| 1070 | "passive-ftp\0" No_argument "\xff" |
| 1071 | "header\0" Required_argument "\xfe" |
| 1072 | "post-data\0" Required_argument "\xfd" |
| 1073 | /* Ignored (we don't do ssl) */ |
| 1074 | "no-check-certificate\0" No_argument "\xfc" |
Vladimir Dronnikov | f5abc78 | 2012-06-13 17:29:41 +0200 | [diff] [blame] | 1075 | /* Ignored (we don't support caching) */ |
| 1076 | "no-cache\0" No_argument "\xfb" |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1077 | ; |
| 1078 | #endif |
| 1079 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1080 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1081 | llist_t *headers_llist = NULL; |
| 1082 | #endif |
| 1083 | |
| 1084 | INIT_G(); |
| 1085 | |
Lauri Kasanen | d074b41 | 2013-10-12 21:47:07 +0200 | [diff] [blame] | 1086 | #if ENABLE_FEATURE_WGET_TIMEOUT |
| 1087 | G.timeout_seconds = 900; |
| 1088 | signal(SIGALRM, alarm_handler); |
| 1089 | #endif |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1090 | G.proxy_flag = "on"; /* use proxies if env vars are set */ |
| 1091 | G.user_agent = "Wget"; /* "User-Agent" header field */ |
| 1092 | |
| 1093 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1094 | applet_long_options = wget_longopts; |
| 1095 | #endif |
| 1096 | opt_complementary = "-1" IF_FEATURE_WGET_TIMEOUT(":T+") IF_FEATURE_WGET_LONG_OPTIONS(":\xfe::"); |
| 1097 | getopt32(argv, "csqO:P:Y:U:T:" /*ignored:*/ "t:", |
| 1098 | &G.fname_out, &G.dir_prefix, |
| 1099 | &G.proxy_flag, &G.user_agent, |
| 1100 | IF_FEATURE_WGET_TIMEOUT(&G.timeout_seconds) IF_NOT_FEATURE_WGET_TIMEOUT(NULL), |
| 1101 | NULL /* -t RETRIES */ |
| 1102 | IF_FEATURE_WGET_LONG_OPTIONS(, &headers_llist) |
| 1103 | IF_FEATURE_WGET_LONG_OPTIONS(, &G.post_data) |
| 1104 | ); |
| 1105 | argv += optind; |
| 1106 | |
| 1107 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1108 | if (headers_llist) { |
| 1109 | int size = 1; |
| 1110 | char *cp; |
| 1111 | llist_t *ll = headers_llist; |
| 1112 | while (ll) { |
| 1113 | size += strlen(ll->data) + 2; |
| 1114 | ll = ll->link; |
| 1115 | } |
| 1116 | G.extra_headers = cp = xmalloc(size); |
| 1117 | while (headers_llist) { |
| 1118 | cp += sprintf(cp, "%s\r\n", (char*)llist_pop(&headers_llist)); |
| 1119 | } |
| 1120 | } |
| 1121 | #endif |
| 1122 | |
Denys Vlasenko | 2384a35 | 2011-02-15 00:58:36 +0100 | [diff] [blame] | 1123 | G.output_fd = -1; |
| 1124 | G.o_flags = O_WRONLY | O_CREAT | O_TRUNC | O_EXCL; |
| 1125 | if (G.fname_out) { /* -O FILE ? */ |
| 1126 | if (LONE_DASH(G.fname_out)) { /* -O - ? */ |
| 1127 | G.output_fd = 1; |
| 1128 | option_mask32 &= ~WGET_OPT_CONTINUE; |
| 1129 | } |
| 1130 | /* compat with wget: -O FILE can overwrite */ |
| 1131 | G.o_flags = O_WRONLY | O_CREAT | O_TRUNC; |
| 1132 | } |
| 1133 | |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1134 | while (*argv) |
Pere Orga | 5369563 | 2011-02-16 20:09:36 +0100 | [diff] [blame] | 1135 | download_one_url(*argv++); |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1136 | |
Denys Vlasenko | 28556b9 | 2011-02-15 11:03:53 +0100 | [diff] [blame] | 1137 | if (G.output_fd >= 0) |
| 1138 | xclose(G.output_fd); |
| 1139 | |
Guilherme Maciel Ferreira | 840ef17 | 2013-10-16 14:43:30 +0200 | [diff] [blame] | 1140 | #if ENABLE_FEATURE_CLEAN_UP && ENABLE_FEATURE_WGET_LONG_OPTIONS |
| 1141 | free(G.extra_headers); |
| 1142 | #endif |
| 1143 | FINI_G(); |
| 1144 | |
Pere Orga | 5369563 | 2011-02-16 20:09:36 +0100 | [diff] [blame] | 1145 | return EXIT_SUCCESS; |
Denys Vlasenko | a366109 | 2011-02-13 02:33:11 +0100 | [diff] [blame] | 1146 | } |