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