]> sjero.net Git - wget/blob - src/retr.c
54937d862bc3dcb0f0d064ac06dc19b017944198
[wget] / src / retr.c
1 /* File retrieval.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
4    Inc.
5
6 This file is part of GNU Wget.
7
8 GNU Wget is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or (at
11 your option) any later version.
12
13 GNU Wget is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
20
21 Additional permission under GNU GPL version 3 section 7
22
23 If you modify this program, or any covered work, by linking or
24 combining it with the OpenSSL project's OpenSSL library (or a
25 modified version of that library), containing parts covered by the
26 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
27 grants you additional permission to convey the resulting work.
28 Corresponding Source for a non-source form of such a combination
29 shall include the source code for the parts of OpenSSL used as well
30 as that of the covered work.  */
31
32 #include "wget.h"
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <errno.h>
38 #include <string.h>
39 #include <assert.h>
40
41 #include "exits.h"
42 #include "utils.h"
43 #include "retr.h"
44 #include "progress.h"
45 #include "url.h"
46 #include "recur.h"
47 #include "ftp.h"
48 #include "http.h"
49 #include "host.h"
50 #include "connect.h"
51 #include "hash.h"
52 #include "convert.h"
53 #include "ptimer.h"
54 #include "html-url.h"
55 #include "iri.h"
56
57 /* Total size of downloaded files.  Used to enforce quota.  */
58 SUM_SIZE_INT total_downloaded_bytes;
59
60 /* Total download time in seconds. */
61 double total_download_time;
62
63 /* If non-NULL, the stream to which output should be written.  This
64    stream is initialized when `-O' is used.  */
65 FILE *output_stream;
66
67 /* Whether output_document is a regular file we can manipulate,
68    i.e. not `-' or a device file. */
69 bool output_stream_regular;
70 \f
71 static struct {
72   wgint chunk_bytes;
73   double chunk_start;
74   double sleep_adjust;
75 } limit_data;
76
77 static void
78 limit_bandwidth_reset (void)
79 {
80   xzero (limit_data);
81 }
82
83 /* Limit the bandwidth by pausing the download for an amount of time.
84    BYTES is the number of bytes received from the network, and TIMER
85    is the timer that started at the beginning of download.  */
86
87 static void
88 limit_bandwidth (wgint bytes, struct ptimer *timer)
89 {
90   double delta_t = ptimer_read (timer) - limit_data.chunk_start;
91   double expected;
92
93   limit_data.chunk_bytes += bytes;
94
95   /* Calculate the amount of time we expect downloading the chunk
96      should take.  If in reality it took less time, sleep to
97      compensate for the difference.  */
98   expected = (double) limit_data.chunk_bytes / opt.limit_rate;
99
100   if (expected > delta_t)
101     {
102       double slp = expected - delta_t + limit_data.sleep_adjust;
103       double t0, t1;
104       if (slp < 0.2)
105         {
106           DEBUGP (("deferring a %.2f ms sleep (%s/%.2f).\n",
107                    slp * 1000, number_to_static_string (limit_data.chunk_bytes),
108                    delta_t));
109           return;
110         }
111       DEBUGP (("\nsleeping %.2f ms for %s bytes, adjust %.2f ms\n",
112                slp * 1000, number_to_static_string (limit_data.chunk_bytes),
113                limit_data.sleep_adjust));
114
115       t0 = ptimer_read (timer);
116       xsleep (slp);
117       t1 = ptimer_measure (timer);
118
119       /* Due to scheduling, we probably slept slightly longer (or
120          shorter) than desired.  Calculate the difference between the
121          desired and the actual sleep, and adjust the next sleep by
122          that amount.  */
123       limit_data.sleep_adjust = slp - (t1 - t0);
124       /* If sleep_adjust is very large, it's likely due to suspension
125          and not clock inaccuracy.  Don't enforce those.  */
126       if (limit_data.sleep_adjust > 0.5)
127         limit_data.sleep_adjust = 0.5;
128       else if (limit_data.sleep_adjust < -0.5)
129         limit_data.sleep_adjust = -0.5;
130     }
131
132   limit_data.chunk_bytes = 0;
133   limit_data.chunk_start = ptimer_read (timer);
134 }
135
136 #ifndef MIN
137 # define MIN(i, j) ((i) <= (j) ? (i) : (j))
138 #endif
139
140 /* Write data in BUF to OUT.  However, if *SKIP is non-zero, skip that
141    amount of data and decrease SKIP.  Increment *TOTAL by the amount
142    of data written.  */
143
144 static int
145 write_data (FILE *out, const char *buf, int bufsize, wgint *skip,
146             wgint *written)
147 {
148   if (!out)
149     return 1;
150   if (*skip > bufsize)
151     {
152       *skip -= bufsize;
153       return 1;
154     }
155   if (*skip)
156     {
157       buf += *skip;
158       bufsize -= *skip;
159       *skip = 0;
160       if (bufsize == 0)
161         return 1;
162     }
163
164   fwrite (buf, 1, bufsize, out);
165   *written += bufsize;
166
167   /* Immediately flush the downloaded data.  This should not hinder
168      performance: fast downloads will arrive in large 16K chunks
169      (which stdio would write out immediately anyway), and slow
170      downloads wouldn't be limited by disk speed.  */
171
172   /* 2005-04-20 SMS.
173      Perhaps it shouldn't hinder performance, but it sure does, at least
174      on VMS (more than 2X).  Rather than speculate on what it should or
175      shouldn't do, it might make more sense to test it.  Even better, it
176      might be nice to explain what possible benefit it could offer, as
177      it appears to be a clear invitation to poor performance with no
178      actual justification.  (Also, why 16K?  Anyone test other values?)
179   */
180 #ifndef __VMS
181   fflush (out);
182 #endif /* ndef __VMS */
183   return !ferror (out);
184 }
185
186 /* Read the contents of file descriptor FD until it the connection
187    terminates or a read error occurs.  The data is read in portions of
188    up to 16K and written to OUT as it arrives.  If opt.verbose is set,
189    the progress is shown.
190
191    TOREAD is the amount of data expected to arrive, normally only used
192    by the progress gauge.
193
194    STARTPOS is the position from which the download starts, used by
195    the progress gauge.  If QTYREAD is non-NULL, the value it points to
196    is incremented by the amount of data read from the network.  If
197    QTYWRITTEN is non-NULL, the value it points to is incremented by
198    the amount of data written to disk.  The time it took to download
199    the data is stored to ELAPSED.
200
201    The function exits and returns the amount of data read.  In case of
202    error while reading data, -1 is returned.  In case of error while
203    writing data, -2 is returned.  */
204
205 int
206 fd_read_body (int fd, FILE *out, wgint toread, wgint startpos,
207               wgint *qtyread, wgint *qtywritten, double *elapsed, int flags)
208 {
209   int ret = 0;
210 #define max(a,b) ((a) > (b) ? (a) : (b))
211   int dlbufsize = max (BUFSIZ, 8 * 1024);
212   char *dlbuf = xmalloc (dlbufsize);
213
214   struct ptimer *timer = NULL;
215   double last_successful_read_tm = 0;
216
217   /* The progress gauge, set according to the user preferences. */
218   void *progress = NULL;
219
220   /* Non-zero if the progress gauge is interactive, i.e. if it can
221      continually update the display.  When true, smaller timeout
222      values are used so that the gauge can update the display when
223      data arrives slowly. */
224   bool progress_interactive = false;
225
226   bool exact = !!(flags & rb_read_exactly);
227
228   /* Used only by HTTP/HTTPS chunked transfer encoding.  */
229   bool chunked = flags & rb_chunked_transfer_encoding;
230   wgint skip = 0;
231
232   /* How much data we've read/written.  */
233   wgint sum_read = 0;
234   wgint sum_written = 0;
235   wgint remaining_chunk_size = 0;
236
237   if (flags & rb_skip_startpos)
238     skip = startpos;
239
240   if (opt.verbose)
241     {
242       /* If we're skipping STARTPOS bytes, pass 0 as the INITIAL
243          argument to progress_create because the indicator doesn't
244          (yet) know about "skipping" data.  */
245       wgint start = skip ? 0 : startpos;
246       progress = progress_create (start, start + toread);
247       progress_interactive = progress_interactive_p (progress);
248     }
249
250   if (opt.limit_rate)
251     limit_bandwidth_reset ();
252
253   /* A timer is needed for tracking progress, for throttling, and for
254      tracking elapsed time.  If either of these are requested, start
255      the timer.  */
256   if (progress || opt.limit_rate || elapsed)
257     {
258       timer = ptimer_new ();
259       last_successful_read_tm = 0;
260     }
261
262   /* Use a smaller buffer for low requested bandwidths.  For example,
263      with --limit-rate=2k, it doesn't make sense to slurp in 16K of
264      data and then sleep for 8s.  With buffer size equal to the limit,
265      we never have to sleep for more than one second.  */
266   if (opt.limit_rate && opt.limit_rate < dlbufsize)
267     dlbufsize = opt.limit_rate;
268
269   /* Read from FD while there is data to read.  Normally toread==0
270      means that it is unknown how much data is to arrive.  However, if
271      EXACT is set, then toread==0 means what it says: that no data
272      should be read.  */
273   while (!exact || (sum_read < toread))
274     {
275       int rdsize;
276       double tmout = opt.read_timeout;
277
278       if (chunked)
279         {
280           if (remaining_chunk_size == 0)
281             {
282               char *line = fd_read_line (fd);
283               char *endl;
284               if (line == NULL)
285                 {
286                   ret = -1;
287                   break;
288                 }
289
290               remaining_chunk_size = strtol (line, &endl, 16);
291               if (remaining_chunk_size == 0)
292                 {
293                   ret = 0;
294                   if (fd_read_line (fd) == NULL)
295                     ret = -1;
296                   break;
297                 }
298             }
299
300           rdsize = MIN (remaining_chunk_size, dlbufsize);
301         }
302       else
303         rdsize = exact ? MIN (toread - sum_read, dlbufsize) : dlbufsize;
304
305       if (progress_interactive)
306         {
307           /* For interactive progress gauges, always specify a ~1s
308              timeout, so that the gauge can be updated regularly even
309              when the data arrives very slowly or stalls.  */
310           tmout = 0.95;
311           if (opt.read_timeout)
312             {
313               double waittm;
314               waittm = ptimer_read (timer) - last_successful_read_tm;
315               if (waittm + tmout > opt.read_timeout)
316                 {
317                   /* Don't let total idle time exceed read timeout. */
318                   tmout = opt.read_timeout - waittm;
319                   if (tmout < 0)
320                     {
321                       /* We've already exceeded the timeout. */
322                       ret = -1, errno = ETIMEDOUT;
323                       break;
324                     }
325                 }
326             }
327         }
328       ret = fd_read (fd, dlbuf, rdsize, tmout);
329
330       if (progress_interactive && ret < 0 && errno == ETIMEDOUT)
331         ret = 0;                /* interactive timeout, handled above */
332       else if (ret <= 0)
333         break;                  /* EOF or read error */
334
335       if (progress || opt.limit_rate || elapsed)
336         {
337           ptimer_measure (timer);
338           if (ret > 0)
339             last_successful_read_tm = ptimer_read (timer);
340         }
341
342       if (ret > 0)
343         {
344           sum_read += ret;
345           if (!write_data (out, dlbuf, ret, &skip, &sum_written))
346             {
347               ret = -2;
348               goto out;
349             }
350           if (chunked)
351             {
352               remaining_chunk_size -= ret;
353               if (remaining_chunk_size == 0)
354                 if (fd_read_line (fd) == NULL)
355                   {
356                     ret = -1;
357                     break;
358                   }
359             }
360         }
361
362       if (opt.limit_rate)
363         limit_bandwidth (ret, timer);
364
365       if (progress)
366         progress_update (progress, ret, ptimer_read (timer));
367 #ifdef WINDOWS
368       if (toread > 0 && !opt.quiet)
369         ws_percenttitle (100.0 *
370                          (startpos + sum_read) / (startpos + toread));
371 #endif
372     }
373   if (ret < -1)
374     ret = -1;
375
376  out:
377   if (progress)
378     progress_finish (progress, ptimer_read (timer));
379
380   if (elapsed)
381     *elapsed = ptimer_read (timer);
382   if (timer)
383     ptimer_destroy (timer);
384
385   if (qtyread)
386     *qtyread += sum_read;
387   if (qtywritten)
388     *qtywritten += sum_written;
389
390   free (dlbuf);
391
392   return ret;
393 }
394 \f
395 /* Read a hunk of data from FD, up until a terminator.  The hunk is
396    limited by whatever the TERMINATOR callback chooses as its
397    terminator.  For example, if terminator stops at newline, the hunk
398    will consist of a line of data; if terminator stops at two
399    newlines, it can be used to read the head of an HTTP response.
400    Upon determining the boundary, the function returns the data (up to
401    the terminator) in malloc-allocated storage.
402
403    In case of read error, NULL is returned.  In case of EOF and no
404    data read, NULL is returned and errno set to 0.  In case of having
405    read some data, but encountering EOF before seeing the terminator,
406    the data that has been read is returned, but it will (obviously)
407    not contain the terminator.
408
409    The TERMINATOR function is called with three arguments: the
410    beginning of the data read so far, the beginning of the current
411    block of peeked-at data, and the length of the current block.
412    Depending on its needs, the function is free to choose whether to
413    analyze all data or just the newly arrived data.  If TERMINATOR
414    returns NULL, it means that the terminator has not been seen.
415    Otherwise it should return a pointer to the charactre immediately
416    following the terminator.
417
418    The idea is to be able to read a line of input, or otherwise a hunk
419    of text, such as the head of an HTTP request, without crossing the
420    boundary, so that the next call to fd_read etc. reads the data
421    after the hunk.  To achieve that, this function does the following:
422
423    1. Peek at incoming data.
424
425    2. Determine whether the peeked data, along with the previously
426       read data, includes the terminator.
427
428       2a. If yes, read the data until the end of the terminator, and
429           exit.
430
431       2b. If no, read the peeked data and goto 1.
432
433    The function is careful to assume as little as possible about the
434    implementation of peeking.  For example, every peek is followed by
435    a read.  If the read returns a different amount of data, the
436    process is retried until all data arrives safely.
437
438    SIZEHINT is the buffer size sufficient to hold all the data in the
439    typical case (it is used as the initial buffer size).  MAXSIZE is
440    the maximum amount of memory this function is allowed to allocate,
441    or 0 if no upper limit is to be enforced.
442
443    This function should be used as a building block for other
444    functions -- see fd_read_line as a simple example.  */
445
446 char *
447 fd_read_hunk (int fd, hunk_terminator_t terminator, long sizehint, long maxsize)
448 {
449   long bufsize = sizehint;
450   char *hunk = xmalloc (bufsize);
451   int tail = 0;                 /* tail position in HUNK */
452
453   assert (!maxsize || maxsize >= bufsize);
454
455   while (1)
456     {
457       const char *end;
458       int pklen, rdlen, remain;
459
460       /* First, peek at the available data. */
461
462       pklen = fd_peek (fd, hunk + tail, bufsize - 1 - tail, -1);
463       if (pklen < 0)
464         {
465           xfree (hunk);
466           return NULL;
467         }
468       end = terminator (hunk, hunk + tail, pklen);
469       if (end)
470         {
471           /* The data contains the terminator: we'll drain the data up
472              to the end of the terminator.  */
473           remain = end - (hunk + tail);
474           assert (remain >= 0);
475           if (remain == 0)
476             {
477               /* No more data needs to be read. */
478               hunk[tail] = '\0';
479               return hunk;
480             }
481           if (bufsize - 1 < tail + remain)
482             {
483               bufsize = tail + remain + 1;
484               hunk = xrealloc (hunk, bufsize);
485             }
486         }
487       else
488         /* No terminator: simply read the data we know is (or should
489            be) available.  */
490         remain = pklen;
491
492       /* Now, read the data.  Note that we make no assumptions about
493          how much data we'll get.  (Some TCP stacks are notorious for
494          read returning less data than the previous MSG_PEEK.)  */
495
496       rdlen = fd_read (fd, hunk + tail, remain, 0);
497       if (rdlen < 0)
498         {
499           xfree_null (hunk);
500           return NULL;
501         }
502       tail += rdlen;
503       hunk[tail] = '\0';
504
505       if (rdlen == 0)
506         {
507           if (tail == 0)
508             {
509               /* EOF without anything having been read */
510               xfree (hunk);
511               errno = 0;
512               return NULL;
513             }
514           else
515             /* EOF seen: return the data we've read. */
516             return hunk;
517         }
518       if (end && rdlen == remain)
519         /* The terminator was seen and the remaining data drained --
520            we got what we came for.  */
521         return hunk;
522
523       /* Keep looping until all the data arrives. */
524
525       if (tail == bufsize - 1)
526         {
527           /* Double the buffer size, but refuse to allocate more than
528              MAXSIZE bytes.  */
529           if (maxsize && bufsize >= maxsize)
530             {
531               xfree (hunk);
532               errno = ENOMEM;
533               return NULL;
534             }
535           bufsize <<= 1;
536           if (maxsize && bufsize > maxsize)
537             bufsize = maxsize;
538           hunk = xrealloc (hunk, bufsize);
539         }
540     }
541 }
542
543 static const char *
544 line_terminator (const char *start, const char *peeked, int peeklen)
545 {
546   const char *p = memchr (peeked, '\n', peeklen);
547   if (p)
548     /* p+1 because the line must include '\n' */
549     return p + 1;
550   return NULL;
551 }
552
553 /* The maximum size of the single line we agree to accept.  This is
554    not meant to impose an arbitrary limit, but to protect the user
555    from Wget slurping up available memory upon encountering malicious
556    or buggy server output.  Define it to 0 to remove the limit.  */
557 #define FD_READ_LINE_MAX 4096
558
559 /* Read one line from FD and return it.  The line is allocated using
560    malloc, but is never larger than FD_READ_LINE_MAX.
561
562    If an error occurs, or if no data can be read, NULL is returned.
563    In the former case errno indicates the error condition, and in the
564    latter case, errno is NULL.  */
565
566 char *
567 fd_read_line (int fd)
568 {
569   return fd_read_hunk (fd, line_terminator, 128, FD_READ_LINE_MAX);
570 }
571 \f
572 /* Return a printed representation of the download rate, along with
573    the units appropriate for the download speed.  */
574
575 const char *
576 retr_rate (wgint bytes, double secs)
577 {
578   static char res[20];
579   static const char *rate_names[] = {"B/s", "KB/s", "MB/s", "GB/s" };
580   int units;
581
582   double dlrate = calc_rate (bytes, secs, &units);
583   /* Use more digits for smaller numbers (regardless of unit used),
584      e.g. "1022", "247", "12.5", "2.38".  */
585   sprintf (res, "%.*f %s",
586            dlrate >= 99.95 ? 0 : dlrate >= 9.995 ? 1 : 2,
587            dlrate, rate_names[units]);
588
589   return res;
590 }
591
592 /* Calculate the download rate and trim it as appropriate for the
593    speed.  Appropriate means that if rate is greater than 1K/s,
594    kilobytes are used, and if rate is greater than 1MB/s, megabytes
595    are used.
596
597    UNITS is zero for B/s, one for KB/s, two for MB/s, and three for
598    GB/s.  */
599
600 double
601 calc_rate (wgint bytes, double secs, int *units)
602 {
603   double dlrate;
604
605   assert (secs >= 0);
606   assert (bytes >= 0);
607
608   if (secs == 0)
609     /* If elapsed time is exactly zero, it means we're under the
610        resolution of the timer.  This can easily happen on systems
611        that use time() for the timer.  Since the interval lies between
612        0 and the timer's resolution, assume half the resolution.  */
613     secs = ptimer_resolution () / 2.0;
614
615   dlrate = bytes / secs;
616   if (dlrate < 1024.0)
617     *units = 0;
618   else if (dlrate < 1024.0 * 1024.0)
619     *units = 1, dlrate /= 1024.0;
620   else if (dlrate < 1024.0 * 1024.0 * 1024.0)
621     *units = 2, dlrate /= (1024.0 * 1024.0);
622   else
623     /* Maybe someone will need this, one day. */
624     *units = 3, dlrate /= (1024.0 * 1024.0 * 1024.0);
625
626   return dlrate;
627 }
628 \f
629
630 #define SUSPEND_POST_DATA do {                  \
631   post_data_suspended = true;                   \
632   saved_post_data = opt.post_data;              \
633   saved_post_file_name = opt.post_file_name;    \
634   opt.post_data = NULL;                         \
635   opt.post_file_name = NULL;                    \
636 } while (0)
637
638 #define RESTORE_POST_DATA do {                          \
639   if (post_data_suspended)                              \
640     {                                                   \
641       opt.post_data = saved_post_data;                  \
642       opt.post_file_name = saved_post_file_name;        \
643       post_data_suspended = false;                      \
644     }                                                   \
645 } while (0)
646
647 static char *getproxy (struct url *);
648
649 /* Retrieve the given URL.  Decides which loop to call -- HTTP, FTP,
650    FTP, proxy, etc.  */
651
652 /* #### This function should be rewritten so it doesn't return from
653    multiple points. */
654
655 uerr_t
656 retrieve_url (struct url * orig_parsed, const char *origurl, char **file,
657               char **newloc, const char *refurl, int *dt, bool recursive,
658               struct iri *iri, bool register_status)
659 {
660   uerr_t result;
661   char *url;
662   bool location_changed;
663   bool iri_fallbacked = 0;
664   int dummy;
665   char *mynewloc, *proxy;
666   struct url *u = orig_parsed, *proxy_url;
667   int up_error_code;            /* url parse error code */
668   char *local_file;
669   int redirection_count = 0;
670
671   bool post_data_suspended = false;
672   char *saved_post_data = NULL;
673   char *saved_post_file_name = NULL;
674
675   /* If dt is NULL, use local storage.  */
676   if (!dt)
677     {
678       dt = &dummy;
679       dummy = 0;
680     }
681   url = xstrdup (origurl);
682   if (newloc)
683     *newloc = NULL;
684   if (file)
685     *file = NULL;
686
687   if (!refurl)
688     refurl = opt.referer;
689
690  redirected:
691   /* (also for IRI fallbacking) */
692
693   result = NOCONERROR;
694   mynewloc = NULL;
695   local_file = NULL;
696   proxy_url = NULL;
697
698   proxy = getproxy (u);
699   if (proxy)
700     {
701       struct iri *pi = iri_new ();
702       set_uri_encoding (pi, opt.locale, true);
703       pi->utf8_encode = false;
704
705       /* Parse the proxy URL.  */
706       proxy_url = url_parse (proxy, &up_error_code, NULL, true);
707       if (!proxy_url)
708         {
709           char *error = url_error (proxy, up_error_code);
710           logprintf (LOG_NOTQUIET, _("Error parsing proxy URL %s: %s.\n"),
711                      proxy, error);
712           xfree (url);
713           xfree (error);
714           RESTORE_POST_DATA;
715           result = PROXERR;
716           goto bail;
717         }
718       if (proxy_url->scheme != SCHEME_HTTP && proxy_url->scheme != u->scheme)
719         {
720           logprintf (LOG_NOTQUIET, _("Error in proxy URL %s: Must be HTTP.\n"), proxy);
721           url_free (proxy_url);
722           xfree (url);
723           RESTORE_POST_DATA;
724           result = PROXERR;
725           goto bail;
726         }
727     }
728
729   if (u->scheme == SCHEME_HTTP
730 #ifdef HAVE_SSL
731       || u->scheme == SCHEME_HTTPS
732 #endif
733       || (proxy_url && proxy_url->scheme == SCHEME_HTTP))
734     {
735       result = http_loop (u, orig_parsed, &mynewloc, &local_file, refurl, dt,
736                           proxy_url, iri);
737     }
738   else if (u->scheme == SCHEME_FTP)
739     {
740       /* If this is a redirection, temporarily turn off opt.ftp_glob
741          and opt.recursive, both being undesirable when following
742          redirects.  */
743       bool oldrec = recursive, glob = opt.ftp_glob;
744       if (redirection_count)
745         oldrec = glob = false;
746
747       result = ftp_loop (u, &local_file, dt, proxy_url, recursive, glob);
748       recursive = oldrec;
749
750       /* There is a possibility of having HTTP being redirected to
751          FTP.  In these cases we must decide whether the text is HTML
752          according to the suffix.  The HTML suffixes are `.html',
753          `.htm' and a few others, case-insensitive.  */
754       if (redirection_count && local_file && u->scheme == SCHEME_FTP)
755         {
756           if (has_html_suffix_p (local_file))
757             *dt |= TEXTHTML;
758         }
759     }
760
761   if (proxy_url)
762     {
763       url_free (proxy_url);
764       proxy_url = NULL;
765     }
766
767   location_changed = (result == NEWLOCATION || result == NEWLOCATION_KEEP_POST);
768   if (location_changed)
769     {
770       char *construced_newloc;
771       struct url *newloc_parsed;
772
773       assert (mynewloc != NULL);
774
775       if (local_file)
776         xfree (local_file);
777
778       /* The HTTP specs only allow absolute URLs to appear in
779          redirects, but a ton of boneheaded webservers and CGIs out
780          there break the rules and use relative URLs, and popular
781          browsers are lenient about this, so wget should be too. */
782       construced_newloc = uri_merge (url, mynewloc);
783       xfree (mynewloc);
784       mynewloc = construced_newloc;
785
786       /* Reset UTF-8 encoding state, keep the URI encoding and reset
787          the content encoding. */
788       iri->utf8_encode = opt.enable_iri;
789       set_content_encoding (iri, NULL);
790       xfree_null (iri->orig_url);
791
792       /* Now, see if this new location makes sense. */
793       newloc_parsed = url_parse (mynewloc, &up_error_code, iri, true);
794       if (!newloc_parsed)
795         {
796           char *error = url_error (mynewloc, up_error_code);
797           logprintf (LOG_NOTQUIET, "%s: %s.\n", escnonprint_uri (mynewloc),
798                      error);
799           if (orig_parsed != u)
800             {
801               url_free (u);
802             }
803           xfree (url);
804           xfree (mynewloc);
805           xfree (error);
806           RESTORE_POST_DATA;
807           goto bail;
808         }
809
810       /* Now mynewloc will become newloc_parsed->url, because if the
811          Location contained relative paths like .././something, we
812          don't want that propagating as url.  */
813       xfree (mynewloc);
814       mynewloc = xstrdup (newloc_parsed->url);
815
816       /* Check for max. number of redirections.  */
817       if (++redirection_count > opt.max_redirect)
818         {
819           logprintf (LOG_NOTQUIET, _("%d redirections exceeded.\n"),
820                      opt.max_redirect);
821           url_free (newloc_parsed);
822           if (orig_parsed != u)
823             {
824               url_free (u);
825             }
826           xfree (url);
827           xfree (mynewloc);
828           RESTORE_POST_DATA;
829           result = WRONGCODE;
830           goto bail;
831         }
832
833       xfree (url);
834       url = mynewloc;
835       if (orig_parsed != u)
836         {
837           url_free (u);
838         }
839       u = newloc_parsed;
840
841       /* If we're being redirected from POST, and we received a
842          redirect code different than 307, we don't want to POST
843          again.  Many requests answer POST with a redirection to an
844          index page; that redirection is clearly a GET.  We "suspend"
845          POST data for the duration of the redirections, and restore
846          it when we're done.
847          
848          RFC2616 HTTP/1.1 introduces code 307 Temporary Redirect
849          specifically to preserve the method of the request.
850          */
851       if (result != NEWLOCATION_KEEP_POST && !post_data_suspended)
852         SUSPEND_POST_DATA;
853
854       goto redirected;
855     }
856
857   /* Try to not encode in UTF-8 if fetching failed */
858   if (!(*dt & RETROKF) && iri->utf8_encode)
859     {
860       iri->utf8_encode = false;
861       if (orig_parsed != u)
862         {
863           url_free (u);
864         }
865       u = url_parse (origurl, NULL, iri, true);
866       if (u)
867         {
868           DEBUGP (("[IRI fallbacking to non-utf8 for %s\n", quote (url)));
869           url = xstrdup (u->url);
870           iri_fallbacked = 1;
871           goto redirected;
872         }
873       else
874           DEBUGP (("[Couldn't fallback to non-utf8 for %s\n", quote (url)));
875     }
876
877   if (local_file && u && *dt & RETROKF)
878     {
879       register_download (u->url, local_file);
880
881       if (!opt.spider && redirection_count && 0 != strcmp (origurl, u->url))
882         register_redirection (origurl, u->url);
883
884       if (*dt & TEXTHTML)
885         register_html (u->url, local_file);
886
887       if (*dt & TEXTCSS)
888         register_css (u->url, local_file);
889     }
890
891   if (file)
892     *file = local_file ? local_file : NULL;
893   else
894     xfree_null (local_file);
895
896   if (orig_parsed != u)
897     {
898       url_free (u);
899     }
900
901   if (redirection_count || iri_fallbacked)
902     {
903       if (newloc)
904         *newloc = url;
905       else
906         xfree (url);
907     }
908   else
909     {
910       if (newloc)
911         *newloc = NULL;
912       xfree (url);
913     }
914
915   RESTORE_POST_DATA;
916
917 bail:
918   if (register_status)
919     inform_exit_status (result);
920   return result;
921 }
922
923 /* Find the URLs in the file and call retrieve_url() for each of them.
924    If HTML is true, treat the file as HTML, and construct the URLs
925    accordingly.
926
927    If opt.recursive is set, call retrieve_tree() for each file.  */
928
929 uerr_t
930 retrieve_from_file (const char *file, bool html, int *count)
931 {
932   uerr_t status;
933   struct urlpos *url_list, *cur_url;
934   struct iri *iri = iri_new();
935
936   char *input_file, *url_file = NULL;
937   const char *url = file;
938
939   status = RETROK;             /* Suppose everything is OK.  */
940   *count = 0;                  /* Reset the URL count.  */
941
942   /* sXXXav : Assume filename and links in the file are in the locale */
943   set_uri_encoding (iri, opt.locale, true);
944   set_content_encoding (iri, opt.locale);
945
946   if (url_valid_scheme (url))
947     {
948       int dt,url_err;
949       uerr_t status;
950       struct url *url_parsed = url_parse (url, &url_err, iri, true);
951       if (!url_parsed)
952         {
953           char *error = url_error (url, url_err);
954           logprintf (LOG_NOTQUIET, "%s: %s.\n", url, error);
955           xfree (error);
956           return URLERROR;
957         }
958
959       if (!opt.base_href)
960         opt.base_href = xstrdup (url);
961
962       status = retrieve_url (url_parsed, url, &url_file, NULL, NULL, &dt,
963                              false, iri, true);
964       url_free (url_parsed);
965
966       if (!url_file || (status != RETROK))
967         return status;
968
969       if (dt & TEXTHTML)
970         html = true;
971
972       /* If we have a found a content encoding, use it.
973        * ( == is okay, because we're checking for identical object) */
974       if (iri->content_encoding != opt.locale)
975           set_uri_encoding (iri, iri->content_encoding, false);
976
977       /* Reset UTF-8 encode status */
978       iri->utf8_encode = opt.enable_iri;
979       xfree_null (iri->orig_url);
980       iri->orig_url = NULL;
981
982       input_file = url_file;
983     }
984   else
985     input_file = (char *) file;
986
987   url_list = (html ? get_urls_html (input_file, NULL, NULL, iri)
988               : get_urls_file (input_file));
989
990   xfree_null (url_file);
991
992   for (cur_url = url_list; cur_url; cur_url = cur_url->next, ++*count)
993     {
994       char *filename = NULL, *new_file = NULL;
995       int dt;
996       struct iri *tmpiri = iri_dup (iri);
997       struct url *parsed_url = NULL;
998
999       if (cur_url->ignore_when_downloading)
1000         continue;
1001
1002       if (opt.quota && total_downloaded_bytes > opt.quota)
1003         {
1004           status = QUOTEXC;
1005           break;
1006         }
1007
1008       parsed_url = url_parse (cur_url->url->url, NULL, tmpiri, true);
1009
1010       if ((opt.recursive || opt.page_requisites)
1011           && (cur_url->url->scheme != SCHEME_FTP || getproxy (cur_url->url)))
1012         {
1013           int old_follow_ftp = opt.follow_ftp;
1014
1015           /* Turn opt.follow_ftp on in case of recursive FTP retrieval */
1016           if (cur_url->url->scheme == SCHEME_FTP)
1017             opt.follow_ftp = 1;
1018
1019           status = retrieve_tree (parsed_url ? parsed_url : cur_url->url,
1020                                   tmpiri);
1021
1022           opt.follow_ftp = old_follow_ftp;
1023         }
1024       else
1025         status = retrieve_url (parsed_url ? parsed_url : cur_url->url,
1026                                cur_url->url->url, &filename,
1027                                &new_file, NULL, &dt, opt.recursive, tmpiri,
1028                                true);
1029
1030       if (parsed_url)
1031           url_free (parsed_url);
1032
1033       if (filename && opt.delete_after && file_exists_p (filename))
1034         {
1035           DEBUGP (("\
1036 Removing file due to --delete-after in retrieve_from_file():\n"));
1037           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
1038           if (unlink (filename))
1039             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
1040           dt &= ~RETROKF;
1041         }
1042
1043       xfree_null (new_file);
1044       xfree_null (filename);
1045       iri_free (tmpiri);
1046     }
1047
1048   /* Free the linked list of URL-s.  */
1049   free_urlpos (url_list);
1050
1051   iri_free (iri);
1052
1053   return status;
1054 }
1055
1056 /* Print `giving up', or `retrying', depending on the impending
1057    action.  N1 and N2 are the attempt number and the attempt limit.  */
1058 void
1059 printwhat (int n1, int n2)
1060 {
1061   logputs (LOG_VERBOSE, (n1 == n2) ? _("Giving up.\n\n") : _("Retrying.\n\n"));
1062 }
1063
1064 /* If opt.wait or opt.waitretry are specified, and if certain
1065    conditions are met, sleep the appropriate number of seconds.  See
1066    the documentation of --wait and --waitretry for more information.
1067
1068    COUNT is the count of current retrieval, beginning with 1. */
1069
1070 void
1071 sleep_between_retrievals (int count)
1072 {
1073   static bool first_retrieval = true;
1074
1075   if (first_retrieval)
1076     {
1077       /* Don't sleep before the very first retrieval. */
1078       first_retrieval = false;
1079       return;
1080     }
1081
1082   if (opt.waitretry && count > 1)
1083     {
1084       /* If opt.waitretry is specified and this is a retry, wait for
1085          COUNT-1 number of seconds, or for opt.waitretry seconds.  */
1086       if (count <= opt.waitretry)
1087         xsleep (count - 1);
1088       else
1089         xsleep (opt.waitretry);
1090     }
1091   else if (opt.wait)
1092     {
1093       if (!opt.random_wait || count > 1)
1094         /* If random-wait is not specified, or if we are sleeping
1095            between retries of the same download, sleep the fixed
1096            interval.  */
1097         xsleep (opt.wait);
1098       else
1099         {
1100           /* Sleep a random amount of time averaging in opt.wait
1101              seconds.  The sleeping amount ranges from 0.5*opt.wait to
1102              1.5*opt.wait.  */
1103           double waitsecs = (0.5 + random_float ()) * opt.wait;
1104           DEBUGP (("sleep_between_retrievals: avg=%f,sleep=%f\n",
1105                    opt.wait, waitsecs));
1106           xsleep (waitsecs);
1107         }
1108     }
1109 }
1110
1111 /* Free the linked list of urlpos.  */
1112 void
1113 free_urlpos (struct urlpos *l)
1114 {
1115   while (l)
1116     {
1117       struct urlpos *next = l->next;
1118       if (l->url)
1119         url_free (l->url);
1120       xfree_null (l->local_name);
1121       xfree (l);
1122       l = next;
1123     }
1124 }
1125
1126 /* Rotate FNAME opt.backups times */
1127 void
1128 rotate_backups(const char *fname)
1129 {
1130   int maxlen = strlen (fname) + 1 + numdigit (opt.backups) + 1;
1131   char *from = (char *)alloca (maxlen);
1132   char *to = (char *)alloca (maxlen);
1133   struct_stat sb;
1134   int i;
1135
1136   if (stat (fname, &sb) == 0)
1137     if (S_ISREG (sb.st_mode) == 0)
1138       return;
1139
1140   for (i = opt.backups; i > 1; i--)
1141     {
1142       sprintf (from, "%s.%d", fname, i - 1);
1143       sprintf (to, "%s.%d", fname, i);
1144       rename (from, to);
1145     }
1146
1147   sprintf (to, "%s.%d", fname, 1);
1148   rename(fname, to);
1149 }
1150
1151 static bool no_proxy_match (const char *, const char **);
1152
1153 /* Return the URL of the proxy appropriate for url U.  */
1154
1155 static char *
1156 getproxy (struct url *u)
1157 {
1158   char *proxy = NULL;
1159   char *rewritten_url;
1160   static char rewritten_storage[1024];
1161
1162   if (!opt.use_proxy)
1163     return NULL;
1164   if (no_proxy_match (u->host, (const char **)opt.no_proxy))
1165     return NULL;
1166
1167   switch (u->scheme)
1168     {
1169     case SCHEME_HTTP:
1170       proxy = opt.http_proxy ? opt.http_proxy : getenv ("http_proxy");
1171       break;
1172 #ifdef HAVE_SSL
1173     case SCHEME_HTTPS:
1174       proxy = opt.https_proxy ? opt.https_proxy : getenv ("https_proxy");
1175       break;
1176 #endif
1177     case SCHEME_FTP:
1178       proxy = opt.ftp_proxy ? opt.ftp_proxy : getenv ("ftp_proxy");
1179       break;
1180     case SCHEME_INVALID:
1181       break;
1182     }
1183   if (!proxy || !*proxy)
1184     return NULL;
1185
1186   /* Handle shorthands.  `rewritten_storage' is a kludge to allow
1187      getproxy() to return static storage. */
1188   rewritten_url = rewrite_shorthand_url (proxy);
1189   if (rewritten_url)
1190     {
1191       strncpy (rewritten_storage, rewritten_url, sizeof (rewritten_storage));
1192       rewritten_storage[sizeof (rewritten_storage) - 1] = '\0';
1193       proxy = rewritten_storage;
1194     }
1195
1196   return proxy;
1197 }
1198
1199 /* Returns true if URL would be downloaded through a proxy. */
1200
1201 bool
1202 url_uses_proxy (struct url * u)
1203 {
1204   bool ret;
1205   if (!u)
1206     return false;
1207   ret = getproxy (u) != NULL;
1208   return ret;
1209 }
1210
1211 /* Should a host be accessed through proxy, concerning no_proxy?  */
1212 static bool
1213 no_proxy_match (const char *host, const char **no_proxy)
1214 {
1215   if (!no_proxy)
1216     return false;
1217   else
1218     return sufmatch (no_proxy, host);
1219 }
1220
1221 /* Set the file parameter to point to the local file string.  */
1222 void
1223 set_local_file (const char **file, const char *default_file)
1224 {
1225   if (opt.output_document)
1226     {
1227       if (output_stream_regular)
1228         *file = opt.output_document;
1229     }
1230   else
1231     *file = default_file;
1232 }
1233
1234 /* Return true for an input file's own URL, false otherwise.  */
1235 bool
1236 input_file_url (const char *input_file)
1237 {
1238   static bool first = true;
1239
1240   if (input_file
1241       && url_has_scheme (input_file)
1242       && first)
1243     {
1244       first = false;
1245       return true;
1246     }
1247   else
1248     return false;
1249 }