blob: 23a2fa855ee4a3eec9dbd1b83561bf06525cd5fc [file] [log] [blame]
Eric Andersen96700832000-09-04 15:15:55 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersen79757c92001-04-05 21:45:54 +00003 * wget - retrieve a file using HTTP or FTP
Eric Andersen96700832000-09-04 15:15:55 +00004 *
Eric Andersen4e573f42000-11-14 23:29:24 +00005 * Chip Rosenthal Covad Communications <chip@laserlink.net>
Eric Andersenb520e082000-10-03 00:21:45 +00006 *
Eric Andersen96700832000-09-04 15:15:55 +00007 */
8
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +00009#include <getopt.h> /* for struct option */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +000011
Eric Andersen79757c92001-04-05 21:45:54 +000012struct host_info {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +000013 // May be used if we ever will want to free() all xstrdup()s...
14 /* char *allocated; */
Eric Andersen79757c92001-04-05 21:45:54 +000015 char *host;
16 int port;
17 char *path;
18 int is_ftp;
19 char *user;
20};
21
Denis Vlasenko77105632007-09-24 15:04:00 +000022
23/* Globals (can be accessed from signal handlers) */
24struct globals {
25 off_t content_len; /* Content-length of the file */
26 off_t beg_range; /* Range at which continue begins */
27#if ENABLE_FEATURE_WGET_STATUSBAR
28 off_t lastsize;
29 off_t totalsize;
30 off_t transferred; /* Number of bytes transferred so far */
31 const char *curfile; /* Name of current file being transferred */
32 unsigned lastupdate_sec;
33 unsigned start_sec;
34#endif
35 bool chunked; /* chunked transfer encoding */
36};
37#define G (*(struct globals*)&bb_common_bufsiz1)
38struct BUG_G_too_big {
39 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
40};
41#define content_len (G.content_len )
42#define beg_range (G.beg_range )
43#define lastsize (G.lastsize )
44#define totalsize (G.totalsize )
45#define transferred (G.transferred )
46#define curfile (G.curfile )
47#define lastupdate_sec (G.lastupdate_sec )
48#define start_sec (G.start_sec )
49#define chunked (G.chunked )
50#define INIT_G() do { } while (0)
51
52
Denis Vlasenko9cade082006-11-21 10:43:02 +000053#if ENABLE_FEATURE_WGET_STATUSBAR
Rob Landley19a39402006-06-13 17:10:26 +000054enum {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +000055 STALLTIME = 5 /* Seconds when xfer considered "stalled" */
Rob Landley19a39402006-06-13 17:10:26 +000056};
Denis Vlasenko47ddd012007-09-24 18:24:17 +000057
58static int getttywidth(void)
59{
60 int width;
61 get_terminal_width_height(0, &width, NULL);
62 return width;
63}
64
65static void updateprogressmeter(int ignore)
66{
67 int save_errno = errno;
68
69 progressmeter(0);
70 errno = save_errno;
71}
72
73static void alarmtimer(int iwait)
74{
75 struct itimerval itv;
76
77 itv.it_value.tv_sec = iwait;
78 itv.it_value.tv_usec = 0;
79 itv.it_interval = itv.it_value;
80 setitimer(ITIMER_REAL, &itv, NULL);
81}
82
83static void progressmeter(int flag)
84{
85 off_t abbrevsize;
86 unsigned since_last_update, elapsed;
87 unsigned ratio;
88 int barlength, i;
89
90 if (flag == -1) { /* first call to progressmeter */
91 start_sec = monotonic_sec();
92 lastupdate_sec = start_sec;
93 lastsize = 0;
94 totalsize = content_len + beg_range; /* as content_len changes.. */
95 }
96
97 ratio = 100;
98 if (totalsize != 0 && !chunked) {
99 /* long long helps to have it working even if !LFS */
100 ratio = (unsigned) (100ULL * (transferred+beg_range) / totalsize);
101 if (ratio > 100) ratio = 100;
102 }
103
104 fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
105
106 barlength = getttywidth() - 49;
107 if (barlength > 0) {
108 /* god bless gcc for variable arrays :) */
109 i = barlength * ratio / 100;
110 {
111 char buf[i+1];
112 memset(buf, '*', i);
113 buf[i] = '\0';
114 fprintf(stderr, "|%s%*s|", buf, barlength - i, "");
115 }
116 }
117 i = 0;
118 abbrevsize = transferred + beg_range;
119 while (abbrevsize >= 100000) {
120 i++;
121 abbrevsize >>= 10;
122 }
123 /* see http://en.wikipedia.org/wiki/Tera */
124 fprintf(stderr, "%6d%c ", (int)abbrevsize, " kMGTPEZY"[i]);
125
126// Nuts! Ain't it easier to update progress meter ONLY when we transferred++?
127// FIXME: get rid of alarmtimer + updateprogressmeter mess
128
129 elapsed = monotonic_sec();
130 since_last_update = elapsed - lastupdate_sec;
131 if (transferred > lastsize) {
132 lastupdate_sec = elapsed;
133 lastsize = transferred;
134 if (since_last_update >= STALLTIME) {
135 /* We "cut off" these seconds from elapsed time
136 * by adjusting start time */
137 start_sec += since_last_update;
138 }
139 since_last_update = 0; /* we are un-stalled now */
140 }
141 elapsed -= start_sec; /* now it's "elapsed since start" */
142
143 if (since_last_update >= STALLTIME) {
144 fprintf(stderr, " - stalled -");
145 } else {
146 off_t to_download = totalsize - beg_range;
147 if (transferred <= 0 || (int)elapsed <= 0 || transferred > to_download || chunked) {
148 fprintf(stderr, "--:--:-- ETA");
149 } else {
150 /* to_download / (transferred/elapsed) - elapsed: */
151 int eta = (int) ((unsigned long long)to_download*elapsed/transferred - elapsed);
152 /* (long long helps to have working ETA even if !LFS) */
153 i = eta % 3600;
154 fprintf(stderr, "%02d:%02d:%02d ETA", eta / 3600, i / 60, i % 60);
155 }
156 }
157
158 if (flag == -1) { /* first call to progressmeter */
159 struct sigaction sa;
160 sa.sa_handler = updateprogressmeter;
161 sigemptyset(&sa.sa_mask);
162 sa.sa_flags = SA_RESTART;
163 sigaction(SIGALRM, &sa, NULL);
164 alarmtimer(1);
165 } else if (flag == 1) { /* last call to progressmeter */
166 alarmtimer(0);
167 transferred = 0;
168 putc('\n', stderr);
169 }
170}
171/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
172 * much of which was blatantly stolen from openssh. */
173/*-
174 * Copyright (c) 1992, 1993
175 * The Regents of the University of California. All rights reserved.
176 *
177 * Redistribution and use in source and binary forms, with or without
178 * modification, are permitted provided that the following conditions
179 * are met:
180 * 1. Redistributions of source code must retain the above copyright
181 * notice, this list of conditions and the following disclaimer.
182 * 2. Redistributions in binary form must reproduce the above copyright
183 * notice, this list of conditions and the following disclaimer in the
184 * documentation and/or other materials provided with the distribution.
185 *
186 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
187 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
188 *
189 * 4. Neither the name of the University nor the names of its contributors
190 * may be used to endorse or promote products derived from this software
191 * without specific prior written permission.
192 *
193 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
194 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
195 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
196 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
197 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
198 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
199 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
200 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
201 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
202 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
203 * SUCH DAMAGE.
204 *
205 */
206#else /* FEATURE_WGET_STATUSBAR */
207
208static ALWAYS_INLINE void progressmeter(int flag) { }
209
Eric Andersenb520e082000-10-03 00:21:45 +0000210#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000211
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000212
Denis Vlasenko12d21292007-06-27 21:40:07 +0000213/* Read NMEMB bytes into PTR from STREAM. Returns the number of bytes read,
214 * and a short count if an eof or non-interrupt error is encountered. */
215static size_t safe_fread(void *ptr, size_t nmemb, FILE *stream)
Matt Kraai854125f2001-05-09 19:15:46 +0000216{
Denis Vlasenko12d21292007-06-27 21:40:07 +0000217 size_t ret;
218 char *p = (char*)ptr;
Matt Kraai854125f2001-05-09 19:15:46 +0000219
220 do {
221 clearerr(stream);
Denis Vlasenko12d21292007-06-27 21:40:07 +0000222 ret = fread(p, 1, nmemb, stream);
223 p += ret;
224 nmemb -= ret;
225 } while (nmemb && ferror(stream) && errno == EINTR);
Matt Kraai854125f2001-05-09 19:15:46 +0000226
Denis Vlasenko12d21292007-06-27 21:40:07 +0000227 return p - (char*)ptr;
Matt Kraai854125f2001-05-09 19:15:46 +0000228}
229
Denis Vlasenko12d21292007-06-27 21:40:07 +0000230/* Read a line or SIZE-1 bytes into S, whichever is less, from STREAM.
Matt Kraai854125f2001-05-09 19:15:46 +0000231 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
232static char *safe_fgets(char *s, int size, FILE *stream)
233{
234 char *ret;
235
236 do {
237 clearerr(stream);
238 ret = fgets(s, size, stream);
239 } while (ret == NULL && ferror(stream) && errno == EINTR);
240
241 return ret;
242}
243
Denis Vlasenko9cade082006-11-21 10:43:02 +0000244#if ENABLE_FEATURE_WGET_AUTHENTICATION
Denis Vlasenko12d21292007-06-27 21:40:07 +0000245/* Base64-encode character string. buf is assumed to be char buf[512]. */
246static char *base64enc_512(char buf[512], const char *str)
Denis Vlasenko3526a132006-09-09 12:20:57 +0000247{
Denis Vlasenko12d21292007-06-27 21:40:07 +0000248 unsigned len = strlen(str);
249 if (len > 512/4*3 - 10) /* paranoia */
250 len = 512/4*3 - 10;
251 bb_uuencode(buf, str, len, bb_uuenc_tbl_base64);
Rob Landley76ef08c2006-06-13 16:44:26 +0000252 return buf;
Eric Andersen79757c92001-04-05 21:45:54 +0000253}
254#endif
255
Denis Vlasenko47ddd012007-09-24 18:24:17 +0000256
257static FILE *open_socket(len_and_sockaddr *lsa)
258{
259 FILE *fp;
260
261 /* glibc 2.4 seems to try seeking on it - ??! */
262 /* hopefully it understands what ESPIPE means... */
263 fp = fdopen(xconnect_stream(lsa), "r+");
264 if (fp == NULL)
265 bb_perror_msg_and_die("fdopen");
266
267 return fp;
268}
269
270
271static int ftpcmd(const char *s1, const char *s2, FILE *fp, char *buf)
272{
273 int result;
274 if (s1) {
275 if (!s2) s2 = "";
276 fprintf(fp, "%s%s\r\n", s1, s2);
277 fflush(fp);
278 }
279
280 do {
281 char *buf_ptr;
282
283 if (fgets(buf, 510, fp) == NULL) {
284 bb_perror_msg_and_die("error getting response");
285 }
286 buf_ptr = strstr(buf, "\r\n");
287 if (buf_ptr) {
288 *buf_ptr = '\0';
289 }
290 } while (!isdigit(buf[0]) || buf[3] != ' ');
291
292 buf[3] = '\0';
293 result = xatoi_u(buf);
294 buf[3] = ' ';
295 return result;
296}
297
298
299static void parse_url(char *src_url, struct host_info *h)
300{
301 char *url, *p, *sp;
302
303 /* h->allocated = */ url = xstrdup(src_url);
304
305 if (strncmp(url, "http://", 7) == 0) {
306 h->port = bb_lookup_port("http", "tcp", 80);
307 h->host = url + 7;
308 h->is_ftp = 0;
309 } else if (strncmp(url, "ftp://", 6) == 0) {
310 h->port = bb_lookup_port("ftp", "tcp", 21);
311 h->host = url + 6;
312 h->is_ftp = 1;
313 } else
314 bb_error_msg_and_die("not an http or ftp url: %s", url);
315
316 // FYI:
317 // "Real" wget 'http://busybox.net?var=a/b' sends this request:
318 // 'GET /?var=a/b HTTP 1.0'
319 // and saves 'index.html?var=a%2Fb' (we save 'b')
320 // wget 'http://busybox.net?login=john@doe':
321 // request: 'GET /?login=john@doe HTTP/1.0'
322 // saves: 'index.html?login=john@doe' (we save '?login=john@doe')
323 // wget 'http://busybox.net#test/test':
324 // request: 'GET / HTTP/1.0'
325 // saves: 'index.html' (we save 'test')
326 //
327 // We also don't add unique .N suffix if file exists...
328 sp = strchr(h->host, '/');
329 p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
330 p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
331 if (!sp) {
332 /* must be writable because of bb_get_last_path_component() */
333 static char nullstr[] ALIGN1 = "";
334 h->path = nullstr;
335 } else if (*sp == '/') {
336 *sp = '\0';
337 h->path = sp + 1;
338 } else { // '#' or '?'
339 // http://busybox.net?login=john@doe is a valid URL
340 // memmove converts to:
341 // http:/busybox.nett?login=john@doe...
342 memmove(h->host-1, h->host, sp - h->host);
343 h->host--;
344 sp[-1] = '\0';
345 h->path = sp;
346 }
347
348 sp = strrchr(h->host, '@');
349 h->user = NULL;
350 if (sp != NULL) {
351 h->user = h->host;
352 *sp = '\0';
353 h->host = sp + 1;
354 }
355
356 sp = h->host;
357}
358
359
360static char *gethdr(char *buf, size_t bufsiz, FILE *fp /*, int *istrunc*/)
361{
362 char *s, *hdrval;
363 int c;
364
365 /* *istrunc = 0; */
366
367 /* retrieve header line */
368 if (fgets(buf, bufsiz, fp) == NULL)
369 return NULL;
370
371 /* see if we are at the end of the headers */
372 for (s = buf; *s == '\r'; ++s)
373 continue;
374 if (*s == '\n')
375 return NULL;
376
377 /* convert the header name to lower case */
378 for (s = buf; isalnum(*s) || *s == '-' || *s == '.'; ++s)
379 *s = tolower(*s);
380
381 /* verify we are at the end of the header name */
382 if (*s != ':')
383 bb_error_msg_and_die("bad header line: %s", buf);
384
385 /* locate the start of the header value */
386 *s++ = '\0';
387 hdrval = skip_whitespace(s);
388
389 /* locate the end of header */
390 while (*s && *s != '\r' && *s != '\n')
391 ++s;
392
393 /* end of header found */
394 if (*s) {
395 *s = '\0';
396 return hdrval;
397 }
398
399 /* Rats! The buffer isn't big enough to hold the entire header value. */
400 while (c = getc(fp), c != EOF && c != '\n')
401 continue;
402 /* *istrunc = 1; */
403 return hdrval;
404}
405
406
Denis Vlasenko06af2162007-02-03 17:28:39 +0000407int wget_main(int argc, char **argv);
Eric Andersen96700832000-09-04 15:15:55 +0000408int wget_main(int argc, char **argv)
409{
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000410 char buf[512];
Eric Andersen79757c92001-04-05 21:45:54 +0000411 struct host_info server, target;
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000412 len_and_sockaddr *lsa;
Denis Vlasenko06783a52007-09-24 13:51:54 +0000413 int status;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000414 int port;
415 int try = 5;
416 unsigned opt;
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000417 char *str;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000418 char *proxy = 0;
419 char *dir_prefix = NULL;
420#if ENABLE_FEATURE_WGET_LONG_OPTIONS
421 char *extra_headers = NULL;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000422 llist_t *headers_llist = NULL;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000423#endif
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000424 FILE *sfp = NULL; /* socket to web/ftp server */
425 FILE *dfp = NULL; /* socket to ftp server (data) */
426 char *fname_out = NULL; /* where to direct output (-O) */
Denis Vlasenko46611172007-08-06 15:43:17 +0000427 bool got_clen = 0; /* got content-length: from server */
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000428 int output_fd = -1;
Denis Vlasenko46611172007-08-06 15:43:17 +0000429 bool use_proxy = 1; /* Use proxies if env vars are set */
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000430 const char *proxy_flag = "on"; /* Use proxies if env vars are set */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000431 const char *user_agent = "Wget";/* "User-Agent" header field */
Denis Vlasenko77105632007-09-24 15:04:00 +0000432
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000433 static const char keywords[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000434 "content-length\0""transfer-encoding\0""chunked\0""location\0";
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000435 enum {
436 KEY_content_length = 1, KEY_transfer_encoding, KEY_chunked, KEY_location
437 };
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000438 enum {
439 WGET_OPT_CONTINUE = 0x1,
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000440 WGET_OPT_SPIDER = 0x2,
441 WGET_OPT_QUIET = 0x4,
442 WGET_OPT_OUTNAME = 0x8,
443 WGET_OPT_PREFIX = 0x10,
444 WGET_OPT_PROXY = 0x20,
445 WGET_OPT_USER_AGENT = 0x40,
446 WGET_OPT_PASSIVE = 0x80,
447 WGET_OPT_HEADER = 0x100,
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000448 };
Bernhard Reutner-Fischer289e86a2006-08-20 20:01:24 +0000449#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000450 static const char wget_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000451 /* name, has_arg, val */
452 "continue\0" No_argument "c"
453 "spider\0" No_argument "s"
454 "quiet\0" No_argument "q"
455 "output-document\0" Required_argument "O"
456 "directory-prefix\0" Required_argument "P"
457 "proxy\0" Required_argument "Y"
458 "user-agent\0" Required_argument "U"
459 "passive-ftp\0" No_argument "\xff"
460 "header\0" Required_argument "\xfe"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000461 ;
Denis Vlasenko77105632007-09-24 15:04:00 +0000462#endif
463
464 INIT_G();
465
466#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000467 applet_long_options = wget_longopts;
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000468#endif
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000469 /* server.allocated = target.allocated = NULL; */
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000470 opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::");
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000471 opt = getopt32(argv, "csqO:P:Y:U:",
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000472 &fname_out, &dir_prefix,
473 &proxy_flag, &user_agent
474 USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist)
475 );
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000476 if (strcmp(proxy_flag, "off") == 0) {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000477 /* Use the proxy if necessary */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000478 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000479 }
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000480#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko7534e082006-10-23 23:21:58 +0000481 if (headers_llist) {
482 int size = 1;
483 char *cp;
Denis Vlasenko8d9f4952007-04-08 15:08:42 +0000484 llist_t *ll = headers_llist;
Denis Vlasenko7534e082006-10-23 23:21:58 +0000485 while (ll) {
486 size += strlen(ll->data) + 2;
487 ll = ll->link;
488 }
489 extra_headers = cp = xmalloc(size);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000490 while (headers_llist) {
Denis Vlasenko7534e082006-10-23 23:21:58 +0000491 cp += sprintf(cp, "%s\r\n", headers_llist->data);
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000492 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000493 }
494 }
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000495#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000496
Eric Andersen79757c92001-04-05 21:45:54 +0000497 parse_url(argv[optind], &target);
498 server.host = target.host;
499 server.port = target.port;
500
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000501 /* Use the proxy if necessary */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000502 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000503 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000504 if (proxy && *proxy) {
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000505 parse_url(proxy, &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000506 } else {
507 use_proxy = 0;
508 }
Robert Griebld7760112002-05-14 23:36:45 +0000509 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000510
Eric Andersen29edd002000-12-09 16:55:35 +0000511 /* Guess an output filename */
512 if (!fname_out) {
Eric Andersen751750e2004-10-08 08:27:40 +0000513 // Dirty hack. Needed because bb_get_last_path_component
514 // will destroy trailing / by storing '\0' in last byte!
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000515 if (!last_char_is(target.path, '/')) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000516 fname_out = bb_get_last_path_component(target.path);
Denis Vlasenko9cade082006-11-21 10:43:02 +0000517#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000518 curfile = fname_out;
Eric Andersen29edd002000-12-09 16:55:35 +0000519#endif
Eric Andersen751750e2004-10-08 08:27:40 +0000520 }
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000521 if (!fname_out || !fname_out[0]) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000522 /* bb_get_last_path_component writes
523 * to last '/' only. We don't have one here... */
524 fname_out = (char*)"index.html";
Denis Vlasenko9cade082006-11-21 10:43:02 +0000525#if ENABLE_FEATURE_WGET_STATUSBAR
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000526 curfile = fname_out;
Eric Andersen29edd002000-12-09 16:55:35 +0000527#endif
Eric Andersen29edd002000-12-09 16:55:35 +0000528 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000529 if (dir_prefix != NULL)
530 fname_out = concat_path_file(dir_prefix, fname_out);
Denis Vlasenko9cade082006-11-21 10:43:02 +0000531#if ENABLE_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000532 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000533 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000534#endif
535 }
Denis Vlasenko4e4662c2006-11-23 13:10:23 +0000536 /* Impossible?
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000537 if ((opt & WGET_OPT_CONTINUE) && !fname_out)
Denis Vlasenko4e4662c2006-11-23 13:10:23 +0000538 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)"); */
Eric Andersen29edd002000-12-09 16:55:35 +0000539
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000540 /* Determine where to start transfer */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000541 if (LONE_DASH(fname_out)) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000542 output_fd = 1;
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000543 opt &= ~WGET_OPT_CONTINUE;
Denis Vlasenko4e4662c2006-11-23 13:10:23 +0000544 }
545 if (opt & WGET_OPT_CONTINUE) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000546 output_fd = open(fname_out, O_WRONLY);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000547 if (output_fd >= 0) {
Denis Vlasenkoea620772006-10-14 02:23:43 +0000548 beg_range = xlseek(output_fd, 0, SEEK_END);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000549 }
550 /* File doesn't exist. We do not create file here yet.
551 We are not sure it exists on remove side */
Eric Andersen96700832000-09-04 15:15:55 +0000552 }
553
Eric Andersene6dc4392003-10-31 09:31:46 +0000554 /* We want to do exactly _one_ DNS lookup, since some
555 * sites (i.e. ftp.us.debian.org) use round-robin DNS
556 * and we want to connect to only one IP... */
Denis Vlasenko42823d52007-02-04 02:39:08 +0000557 lsa = xhost2sockaddr(server.host, server.port);
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000558 if (!(opt & WGET_OPT_QUIET)) {
Denis Vlasenko85629f02007-01-22 09:36:41 +0000559 fprintf(stderr, "Connecting to %s (%s)\n", server.host,
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000560 xmalloc_sockaddr2dotted(&lsa->sa));
Denis Vlasenko85629f02007-01-22 09:36:41 +0000561 /* We leak result of xmalloc_sockaddr2dotted */
Eric Andersene6dc4392003-10-31 09:31:46 +0000562 }
563
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000564 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000565 /*
566 * HTTP session
567 */
568 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000569 got_clen = chunked = 0;
570
Denis Vlasenko3526a132006-09-09 12:20:57 +0000571 if (!--try)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000572 bb_error_msg_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000573
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000574 /* Open socket to http server */
Eric Andersen79757c92001-04-05 21:45:54 +0000575 if (sfp) fclose(sfp);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000576 sfp = open_socket(lsa);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000577
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000578 /* Send HTTP request. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000579 if (use_proxy) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000580 fprintf(sfp, "GET %stp://%s/%s HTTP/1.1\r\n",
Eric Andersen79757c92001-04-05 21:45:54 +0000581 target.is_ftp ? "f" : "ht", target.host,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000582 target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000583 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000584 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000585 }
Eric Andersen96700832000-09-04 15:15:55 +0000586
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000587 fprintf(sfp, "Host: %s\r\nUser-Agent: %s\r\n",
588 target.host, user_agent);
Eric Andersen79757c92001-04-05 21:45:54 +0000589
Denis Vlasenko9cade082006-11-21 10:43:02 +0000590#if ENABLE_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000591 if (target.user) {
Denis Vlasenko12d21292007-06-27 21:40:07 +0000592 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n"+6,
593 base64enc_512(buf, target.user));
Eric Andersen79757c92001-04-05 21:45:54 +0000594 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000595 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000596 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
Denis Vlasenko12d21292007-06-27 21:40:07 +0000597 base64enc_512(buf, server.user));
Eric Andersen79757c92001-04-05 21:45:54 +0000598 }
599#endif
600
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000601 if (beg_range)
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000602 fprintf(sfp, "Range: bytes=%"OFF_FMT"d-\r\n", beg_range);
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000603#if ENABLE_FEATURE_WGET_LONG_OPTIONS
Denis Vlasenko7534e082006-10-23 23:21:58 +0000604 if (extra_headers)
605 fputs(extra_headers, sfp);
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000606#endif
Denis Vlasenko7534e082006-10-23 23:21:58 +0000607 fprintf(sfp, "Connection: close\r\n\r\n");
Eric Andersen79757c92001-04-05 21:45:54 +0000608
609 /*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000610 * Retrieve HTTP response line and check for "200" status code.
611 */
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000612 read_response:
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000613 if (fgets(buf, sizeof(buf), sfp) == NULL)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000614 bb_error_msg_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000615
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000616 str = buf;
617 str = skip_non_whitespace(str);
618 str = skip_whitespace(str);
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000619 // FIXME: no error check
620 // xatou wouldn't work: "200 OK"
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000621 status = atoi(str);
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000622 switch (status) {
623 case 0:
624 case 100:
Denis Vlasenko06783a52007-09-24 13:51:54 +0000625 while (gethdr(buf, sizeof(buf), sfp /*, &n*/) != NULL)
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000626 /* eat all remaining headers */;
627 goto read_response;
628 case 200:
629 break;
630 case 300: /* redirection */
631 case 301:
632 case 302:
633 case 303:
634 break;
635 case 206:
636 if (beg_range)
Eric Andersen79757c92001-04-05 21:45:54 +0000637 break;
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000638 /*FALLTHRU*/
639 default:
Denis Vlasenko067e3f02006-11-10 23:25:53 +0000640 /* Show first line only and kill any ESC tricks */
641 buf[strcspn(buf, "\n\r\x1b")] = '\0';
642 bb_error_msg_and_die("server returned error: %s", buf);
Eric Andersen79757c92001-04-05 21:45:54 +0000643 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000644
Eric Andersen79757c92001-04-05 21:45:54 +0000645 /*
646 * Retrieve HTTP headers.
647 */
Denis Vlasenko06783a52007-09-24 13:51:54 +0000648 while ((str = gethdr(buf, sizeof(buf), sfp /*, &n*/)) != NULL) {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000649 /* gethdr did already convert the "FOO:" string to lowercase */
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000650 smalluint key = index_in_strings(keywords, *&buf) + 1;
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000651 if (key == KEY_content_length) {
652 content_len = BB_STRTOOFF(str, NULL, 10);
Denis Vlasenkod686a042006-11-27 14:43:21 +0000653 if (errno || content_len < 0) {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000654 bb_error_msg_and_die("content-length %s is garbage", str);
Eric Andersen24794452004-03-06 22:11:45 +0000655 }
Eric Andersen79757c92001-04-05 21:45:54 +0000656 got_clen = 1;
657 continue;
658 }
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000659 if (key == KEY_transfer_encoding) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000660 if (index_in_strings(keywords, str_tolower(str)) + 1 != KEY_chunked)
Denis Vlasenko77105632007-09-24 15:04:00 +0000661 bb_error_msg_and_die("transfer encoding '%s' is not supported", str);
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000662 chunked = got_clen = 1;
Eric Andersen6d7fa432001-04-10 18:17:05 +0000663 }
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000664 if (key == KEY_location) {
665 if (str[0] == '/')
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000666 /* free(target.allocated); */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000667 target.path = /* target.allocated = */ xstrdup(str+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000668 else {
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000669 parse_url(str, &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000670 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000671 server.host = target.host;
672 server.port = target.port;
673 }
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000674 free(lsa);
Denis Vlasenko42823d52007-02-04 02:39:08 +0000675 lsa = xhost2sockaddr(server.host, server.port);
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000676 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000677 }
678 }
679 }
Denis Vlasenko3469c182006-12-16 22:19:47 +0000680 } while (status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000681
Eric Andersen79757c92001-04-05 21:45:54 +0000682 dfp = sfp;
Denis Vlasenko96e9d3c2006-10-07 14:28:55 +0000683
684 } else {
685
Eric Andersen79757c92001-04-05 21:45:54 +0000686 /*
687 * FTP session
688 */
Denis Vlasenko3526a132006-09-09 12:20:57 +0000689 if (!target.user)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000690 target.user = xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000691
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000692 sfp = open_socket(lsa);
Eric Andersen79757c92001-04-05 21:45:54 +0000693 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000694 bb_error_msg_and_die("%s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000695
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000696 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000697 * Splitting username:password pair,
698 * trying to log in
699 */
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000700 str = strchr(target.user, ':');
701 if (str)
702 *(str++) = '\0';
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000703 switch (ftpcmd("USER ", target.user, sfp, buf)) {
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000704 case 230:
705 break;
706 case 331:
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000707 if (ftpcmd("PASS ", str, sfp, buf) == 230)
Eric Andersenb520e082000-10-03 00:21:45 +0000708 break;
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000709 /* FALLTHRU (failed login) */
710 default:
711 bb_error_msg_and_die("ftp login: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000712 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000713
Eric Andersen79757c92001-04-05 21:45:54 +0000714 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000715
Eric Andersen79757c92001-04-05 21:45:54 +0000716 /*
717 * Querying file size
718 */
Rob Landleyaf12cb32006-06-27 18:41:03 +0000719 if (ftpcmd("SIZE ", target.path, sfp, buf) == 213) {
Denis Vlasenkod686a042006-11-27 14:43:21 +0000720 content_len = BB_STRTOOFF(buf+4, NULL, 10);
721 if (errno || content_len < 0) {
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000722 bb_error_msg_and_die("SIZE value is garbage");
Eric Andersen24794452004-03-06 22:11:45 +0000723 }
Eric Andersen96700832000-09-04 15:15:55 +0000724 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000725 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000726
Eric Andersen79757c92001-04-05 21:45:54 +0000727 /*
728 * Entering passive mode
729 */
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000730 if (ftpcmd("PASV", NULL, sfp, buf) != 227) {
731 pasv_error:
732 bb_error_msg_and_die("bad response to %s: %s", "PASV", buf);
733 }
Denis Vlasenkof8c8bb12006-11-21 19:10:26 +0000734 // Response is "227 garbageN1,N2,N3,N4,P1,P2[)garbage]
Denis Vlasenko023b57d2006-10-15 17:05:55 +0000735 // Server's IP is N1.N2.N3.N4 (we ignore it)
736 // Server's port for data connection is P1*256+P2
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +0000737 str = strrchr(buf, ')');
738 if (str) str[0] = '\0';
739 str = strrchr(buf, ',');
740 if (!str) goto pasv_error;
741 port = xatou_range(str+1, 0, 255);
742 *str = '\0';
743 str = strrchr(buf, ',');
744 if (!str) goto pasv_error;
745 port += xatou_range(str+1, 0, 255) * 256;
Denis Vlasenko5d687242007-01-12 20:59:31 +0000746 set_nport(lsa, htons(port));
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000747 dfp = open_socket(lsa);
Eric Andersen79757c92001-04-05 21:45:54 +0000748
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000749 if (beg_range) {
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000750 sprintf(buf, "REST %"OFF_FMT"d", beg_range);
Denis Vlasenkoa94554d2006-09-23 17:49:09 +0000751 if (ftpcmd(buf, NULL, sfp, buf) == 350)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000752 content_len -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000753 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000754
Rob Landleyaf12cb32006-06-27 18:41:03 +0000755 if (ftpcmd("RETR ", target.path, sfp, buf) > 150)
Denis Vlasenko77105632007-09-24 15:04:00 +0000756 bb_error_msg_and_die("bad response to %s: %s", "RETR", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000757 }
Denis Vlasenko77105632007-09-24 15:04:00 +0000758
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000759 if (opt & WGET_OPT_SPIDER) {
760 if (ENABLE_FEATURE_CLEAN_UP)
761 fclose(sfp);
Denis Vlasenko77105632007-09-24 15:04:00 +0000762 return EXIT_SUCCESS;
Bernhard Reutner-Fischer2e75dcc2007-04-05 10:31:47 +0000763 }
Eric Andersen79757c92001-04-05 21:45:54 +0000764
Eric Andersen96700832000-09-04 15:15:55 +0000765 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000766 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000767 */
Rob Landley19a39402006-06-13 17:10:26 +0000768
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000769 /* Do it before progressmeter (want to have nice error message) */
770 if (output_fd < 0)
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000771 output_fd = xopen(fname_out,
772 O_WRONLY|O_CREAT|O_EXCL|O_TRUNC);
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000773
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000774 if (!(opt & WGET_OPT_QUIET))
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000775 progressmeter(-1);
Rob Landley19a39402006-06-13 17:10:26 +0000776
Denis Vlasenko77105632007-09-24 15:04:00 +0000777 if (chunked)
778 goto get_clen;
779
Denis Vlasenko06783a52007-09-24 13:51:54 +0000780 /* Loops only if chunked */
781 while (1) {
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000782 while (content_len > 0 || !got_clen) {
Denis Vlasenko06783a52007-09-24 13:51:54 +0000783 int n;
Denis Vlasenko3526a132006-09-09 12:20:57 +0000784 unsigned rdsz = sizeof(buf);
Denis Vlasenko06783a52007-09-24 13:51:54 +0000785
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000786 if (content_len < sizeof(buf) && (chunked || got_clen))
787 rdsz = (unsigned)content_len;
Denis Vlasenko12d21292007-06-27 21:40:07 +0000788 n = safe_fread(buf, rdsz, dfp);
Denis Vlasenko06783a52007-09-24 13:51:54 +0000789 if (n <= 0) {
790 if (ferror(dfp)) {
791 /* perror will not work: ferror doesn't set errno */
792 bb_error_msg_and_die(bb_msg_read_error);
793 }
Denis Vlasenko3526a132006-09-09 12:20:57 +0000794 break;
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000795 }
Denis Vlasenko06783a52007-09-24 13:51:54 +0000796 xwrite(output_fd, buf, n);
Denis Vlasenko9cade082006-11-21 10:43:02 +0000797#if ENABLE_FEATURE_WGET_STATUSBAR
Rob Landley19a39402006-06-13 17:10:26 +0000798 transferred += n;
Eric Andersenb520e082000-10-03 00:21:45 +0000799#endif
Denis Vlasenko06783a52007-09-24 13:51:54 +0000800 if (got_clen)
Denis Vlasenkof8aa1092006-10-01 10:58:54 +0000801 content_len -= n;
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000802 }
Eric Andersen79757c92001-04-05 21:45:54 +0000803
Denis Vlasenko06783a52007-09-24 13:51:54 +0000804 if (!chunked)
805 break;
Eric Andersen6d7fa432001-04-10 18:17:05 +0000806
Denis Vlasenko06783a52007-09-24 13:51:54 +0000807 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
Denis Vlasenko77105632007-09-24 15:04:00 +0000808 get_clen:
Denis Vlasenko06783a52007-09-24 13:51:54 +0000809 safe_fgets(buf, sizeof(buf), dfp);
810 content_len = STRTOOFF(buf, NULL, 16);
811 /* FIXME: error check? */
812 if (content_len == 0)
813 break; /* all done! */
814 }
Rob Landley19a39402006-06-13 17:10:26 +0000815
Denis Vlasenkoa552eeb2006-09-26 09:22:12 +0000816 if (!(opt & WGET_OPT_QUIET))
Mark Whitley30ac01c2001-04-17 18:13:16 +0000817 progressmeter(1);
Rob Landley19a39402006-06-13 17:10:26 +0000818
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000819 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000820 fclose(dfp);
821 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000822 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000823 ftpcmd("QUIT", NULL, sfp, buf);
824 }
Denis Vlasenko77105632007-09-24 15:04:00 +0000825
826 return EXIT_SUCCESS;
Eric Andersen96700832000-09-04 15:15:55 +0000827}