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