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