]> sjero.net Git - wget/blob - src/retr.c
Merge with mainline.
[wget] / src / retr.c
1 /* File retrieval.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3    2004, 2005, 2006, 2007, 2008 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 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif /* HAVE_UNISTD_H */
38 #include <errno.h>
39 #include <string.h>
40 #include <assert.h>
41
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
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   fflush (out);
171   return !ferror (out);
172 }
173
174 /* Read the contents of file descriptor FD until it the connection
175    terminates or a read error occurs.  The data is read in portions of
176    up to 16K and written to OUT as it arrives.  If opt.verbose is set,
177    the progress is shown.
178
179    TOREAD is the amount of data expected to arrive, normally only used
180    by the progress gauge.
181
182    STARTPOS is the position from which the download starts, used by
183    the progress gauge.  If QTYREAD is non-NULL, the value it points to
184    is incremented by the amount of data read from the network.  If
185    QTYWRITTEN is non-NULL, the value it points to is incremented by
186    the amount of data written to disk.  The time it took to download
187    the data is stored to ELAPSED.
188
189    The function exits and returns the amount of data read.  In case of
190    error while reading data, -1 is returned.  In case of error while
191    writing data, -2 is returned.  */
192
193 int
194 fd_read_body (int fd, FILE *out, wgint toread, wgint startpos,
195               wgint *qtyread, wgint *qtywritten, double *elapsed, int flags)
196 {
197   int ret = 0;
198
199   static char dlbuf[16384];
200   int dlbufsize = sizeof (dlbuf);
201
202   struct ptimer *timer = NULL;
203   double last_successful_read_tm = 0;
204
205   /* The progress gauge, set according to the user preferences. */
206   void *progress = NULL;
207
208   /* Non-zero if the progress gauge is interactive, i.e. if it can
209      continually update the display.  When true, smaller timeout
210      values are used so that the gauge can update the display when
211      data arrives slowly. */
212   bool progress_interactive = false;
213
214   bool exact = !!(flags & rb_read_exactly);
215   wgint skip = 0;
216
217   /* How much data we've read/written.  */
218   wgint sum_read = 0;
219   wgint sum_written = 0;
220
221   if (flags & rb_skip_startpos)
222     skip = startpos;
223
224   if (opt.verbose)
225     {
226       /* If we're skipping STARTPOS bytes, pass 0 as the INITIAL
227          argument to progress_create because the indicator doesn't
228          (yet) know about "skipping" data.  */
229       wgint start = skip ? 0 : startpos;
230       progress = progress_create (start, start + toread);
231       progress_interactive = progress_interactive_p (progress);
232     }
233
234   if (opt.limit_rate)
235     limit_bandwidth_reset ();
236
237   /* A timer is needed for tracking progress, for throttling, and for
238      tracking elapsed time.  If either of these are requested, start
239      the timer.  */
240   if (progress || opt.limit_rate || elapsed)
241     {
242       timer = ptimer_new ();
243       last_successful_read_tm = 0;
244     }
245
246   /* Use a smaller buffer for low requested bandwidths.  For example,
247      with --limit-rate=2k, it doesn't make sense to slurp in 16K of
248      data and then sleep for 8s.  With buffer size equal to the limit,
249      we never have to sleep for more than one second.  */
250   if (opt.limit_rate && opt.limit_rate < dlbufsize)
251     dlbufsize = opt.limit_rate;
252
253   /* Read from FD while there is data to read.  Normally toread==0
254      means that it is unknown how much data is to arrive.  However, if
255      EXACT is set, then toread==0 means what it says: that no data
256      should be read.  */
257   while (!exact || (sum_read < toread))
258     {
259       int rdsize = exact ? MIN (toread - sum_read, dlbufsize) : dlbufsize;
260       double tmout = opt.read_timeout;
261       if (progress_interactive)
262         {
263           /* For interactive progress gauges, always specify a ~1s
264              timeout, so that the gauge can be updated regularly even
265              when the data arrives very slowly or stalls.  */
266           tmout = 0.95;
267           if (opt.read_timeout)
268             {
269               double waittm;
270               waittm = ptimer_read (timer) - last_successful_read_tm;
271               if (waittm + tmout > opt.read_timeout)
272                 {
273                   /* Don't let total idle time exceed read timeout. */
274                   tmout = opt.read_timeout - waittm;
275                   if (tmout < 0)
276                     {
277                       /* We've already exceeded the timeout. */
278                       ret = -1, errno = ETIMEDOUT;
279                       break;
280                     }
281                 }
282             }
283         }
284       ret = fd_read (fd, dlbuf, rdsize, tmout);
285
286       if (progress_interactive && ret < 0 && errno == ETIMEDOUT)
287         ret = 0;                /* interactive timeout, handled above */
288       else if (ret <= 0)
289         break;                  /* EOF or read error */
290
291       if (progress || opt.limit_rate)
292         {
293           ptimer_measure (timer);
294           if (ret > 0)
295             last_successful_read_tm = ptimer_read (timer);
296         }
297
298       if (ret > 0)
299         {
300           sum_read += ret;
301           if (!write_data (out, dlbuf, ret, &skip, &sum_written))
302             {
303               ret = -2;
304               goto out;
305             }
306         }
307
308       if (opt.limit_rate)
309         limit_bandwidth (ret, timer);
310
311       if (progress)
312         progress_update (progress, ret, ptimer_read (timer));
313 #ifdef WINDOWS
314       if (toread > 0 && !opt.quiet)
315         ws_percenttitle (100.0 *
316                          (startpos + sum_read) / (startpos + toread));
317 #endif
318     }
319   if (ret < -1)
320     ret = -1;
321
322  out:
323   if (progress)
324     progress_finish (progress, ptimer_read (timer));
325
326   if (elapsed)
327     *elapsed = ptimer_read (timer);
328   if (timer)
329     ptimer_destroy (timer);
330
331   if (qtyread)
332     *qtyread += sum_read;
333   if (qtywritten)
334     *qtywritten += sum_written;
335
336   return ret;
337 }
338 \f
339 /* Read a hunk of data from FD, up until a terminator.  The hunk is
340    limited by whatever the TERMINATOR callback chooses as its
341    terminator.  For example, if terminator stops at newline, the hunk
342    will consist of a line of data; if terminator stops at two
343    newlines, it can be used to read the head of an HTTP response.
344    Upon determining the boundary, the function returns the data (up to
345    the terminator) in malloc-allocated storage.
346
347    In case of read error, NULL is returned.  In case of EOF and no
348    data read, NULL is returned and errno set to 0.  In case of having
349    read some data, but encountering EOF before seeing the terminator,
350    the data that has been read is returned, but it will (obviously)
351    not contain the terminator.
352
353    The TERMINATOR function is called with three arguments: the
354    beginning of the data read so far, the beginning of the current
355    block of peeked-at data, and the length of the current block.
356    Depending on its needs, the function is free to choose whether to
357    analyze all data or just the newly arrived data.  If TERMINATOR
358    returns NULL, it means that the terminator has not been seen.
359    Otherwise it should return a pointer to the charactre immediately
360    following the terminator.
361
362    The idea is to be able to read a line of input, or otherwise a hunk
363    of text, such as the head of an HTTP request, without crossing the
364    boundary, so that the next call to fd_read etc. reads the data
365    after the hunk.  To achieve that, this function does the following:
366
367    1. Peek at incoming data.
368
369    2. Determine whether the peeked data, along with the previously
370       read data, includes the terminator.
371
372       2a. If yes, read the data until the end of the terminator, and
373           exit.
374
375       2b. If no, read the peeked data and goto 1.
376
377    The function is careful to assume as little as possible about the
378    implementation of peeking.  For example, every peek is followed by
379    a read.  If the read returns a different amount of data, the
380    process is retried until all data arrives safely.
381
382    SIZEHINT is the buffer size sufficient to hold all the data in the
383    typical case (it is used as the initial buffer size).  MAXSIZE is
384    the maximum amount of memory this function is allowed to allocate,
385    or 0 if no upper limit is to be enforced.
386
387    This function should be used as a building block for other
388    functions -- see fd_read_line as a simple example.  */
389
390 char *
391 fd_read_hunk (int fd, hunk_terminator_t terminator, long sizehint, long maxsize)
392 {
393   long bufsize = sizehint;
394   char *hunk = xmalloc (bufsize);
395   int tail = 0;                 /* tail position in HUNK */
396
397   assert (!maxsize || maxsize >= bufsize);
398
399   while (1)
400     {
401       const char *end;
402       int pklen, rdlen, remain;
403
404       /* First, peek at the available data. */
405
406       pklen = fd_peek (fd, hunk + tail, bufsize - 1 - tail, -1);
407       if (pklen < 0)
408         {
409           xfree (hunk);
410           return NULL;
411         }
412       end = terminator (hunk, hunk + tail, pklen);
413       if (end)
414         {
415           /* The data contains the terminator: we'll drain the data up
416              to the end of the terminator.  */
417           remain = end - (hunk + tail);
418           assert (remain >= 0);
419           if (remain == 0)
420             {
421               /* No more data needs to be read. */
422               hunk[tail] = '\0';
423               return hunk;
424             }
425           if (bufsize - 1 < tail + remain)
426             {
427               bufsize = tail + remain + 1;
428               hunk = xrealloc (hunk, bufsize);
429             }
430         }
431       else
432         /* No terminator: simply read the data we know is (or should
433            be) available.  */
434         remain = pklen;
435
436       /* Now, read the data.  Note that we make no assumptions about
437          how much data we'll get.  (Some TCP stacks are notorious for
438          read returning less data than the previous MSG_PEEK.)  */
439
440       rdlen = fd_read (fd, hunk + tail, remain, 0);
441       if (rdlen < 0)
442         {
443           xfree_null (hunk);
444           return NULL;
445         }
446       tail += rdlen;
447       hunk[tail] = '\0';
448
449       if (rdlen == 0)
450         {
451           if (tail == 0)
452             {
453               /* EOF without anything having been read */
454               xfree (hunk);
455               errno = 0;
456               return NULL;
457             }
458           else
459             /* EOF seen: return the data we've read. */
460             return hunk;
461         }
462       if (end && rdlen == remain)
463         /* The terminator was seen and the remaining data drained --
464            we got what we came for.  */
465         return hunk;
466
467       /* Keep looping until all the data arrives. */
468
469       if (tail == bufsize - 1)
470         {
471           /* Double the buffer size, but refuse to allocate more than
472              MAXSIZE bytes.  */
473           if (maxsize && bufsize >= maxsize)
474             {
475               xfree (hunk);
476               errno = ENOMEM;
477               return NULL;
478             }
479           bufsize <<= 1;
480           if (maxsize && bufsize > maxsize)
481             bufsize = maxsize;
482           hunk = xrealloc (hunk, bufsize);
483         }
484     }
485 }
486
487 static const char *
488 line_terminator (const char *start, const char *peeked, int peeklen)
489 {
490   const char *p = memchr (peeked, '\n', peeklen);
491   if (p)
492     /* p+1 because the line must include '\n' */
493     return p + 1;
494   return NULL;
495 }
496
497 /* The maximum size of the single line we agree to accept.  This is
498    not meant to impose an arbitrary limit, but to protect the user
499    from Wget slurping up available memory upon encountering malicious
500    or buggy server output.  Define it to 0 to remove the limit.  */
501 #define FD_READ_LINE_MAX 4096
502
503 /* Read one line from FD and return it.  The line is allocated using
504    malloc, but is never larger than FD_READ_LINE_MAX.
505
506    If an error occurs, or if no data can be read, NULL is returned.
507    In the former case errno indicates the error condition, and in the
508    latter case, errno is NULL.  */
509
510 char *
511 fd_read_line (int fd)
512 {
513   return fd_read_hunk (fd, line_terminator, 128, FD_READ_LINE_MAX);
514 }
515 \f
516 /* Return a printed representation of the download rate, along with
517    the units appropriate for the download speed.  */
518
519 const char *
520 retr_rate (wgint bytes, double secs)
521 {
522   static char res[20];
523   static const char *rate_names[] = {"B/s", "KB/s", "MB/s", "GB/s" };
524   int units;
525
526   double dlrate = calc_rate (bytes, secs, &units);
527   /* Use more digits for smaller numbers (regardless of unit used),
528      e.g. "1022", "247", "12.5", "2.38".  */
529   sprintf (res, "%.*f %s",
530            dlrate >= 99.95 ? 0 : dlrate >= 9.995 ? 1 : 2,
531            dlrate, rate_names[units]);
532
533   return res;
534 }
535
536 /* Calculate the download rate and trim it as appropriate for the
537    speed.  Appropriate means that if rate is greater than 1K/s,
538    kilobytes are used, and if rate is greater than 1MB/s, megabytes
539    are used.
540
541    UNITS is zero for B/s, one for KB/s, two for MB/s, and three for
542    GB/s.  */
543
544 double
545 calc_rate (wgint bytes, double secs, int *units)
546 {
547   double dlrate;
548
549   assert (secs >= 0);
550   assert (bytes >= 0);
551
552   if (secs == 0)
553     /* If elapsed time is exactly zero, it means we're under the
554        resolution of the timer.  This can easily happen on systems
555        that use time() for the timer.  Since the interval lies between
556        0 and the timer's resolution, assume half the resolution.  */
557     secs = ptimer_resolution () / 2.0;
558
559   dlrate = bytes / secs;
560   if (dlrate < 1024.0)
561     *units = 0;
562   else if (dlrate < 1024.0 * 1024.0)
563     *units = 1, dlrate /= 1024.0;
564   else if (dlrate < 1024.0 * 1024.0 * 1024.0)
565     *units = 2, dlrate /= (1024.0 * 1024.0);
566   else
567     /* Maybe someone will need this, one day. */
568     *units = 3, dlrate /= (1024.0 * 1024.0 * 1024.0);
569
570   return dlrate;
571 }
572 \f
573
574 #define SUSPEND_POST_DATA do {                  \
575   post_data_suspended = true;                   \
576   saved_post_data = opt.post_data;              \
577   saved_post_file_name = opt.post_file_name;    \
578   opt.post_data = NULL;                         \
579   opt.post_file_name = NULL;                    \
580 } while (0)
581
582 #define RESTORE_POST_DATA do {                          \
583   if (post_data_suspended)                              \
584     {                                                   \
585       opt.post_data = saved_post_data;                  \
586       opt.post_file_name = saved_post_file_name;        \
587       post_data_suspended = false;                      \
588     }                                                   \
589 } while (0)
590
591 static char *getproxy (struct url *);
592
593 /* Retrieve the given URL.  Decides which loop to call -- HTTP, FTP,
594    FTP, proxy, etc.  */
595
596 /* #### This function should be rewritten so it doesn't return from
597    multiple points. */
598
599 uerr_t
600 retrieve_url (struct url * orig_parsed, const char *origurl, char **file,
601               char **newloc, const char *refurl, int *dt, bool recursive,
602               struct iri *iri)
603 {
604   uerr_t result;
605   char *url;
606   bool location_changed;
607   int dummy;
608   char *mynewloc, *proxy;
609   struct url *u = orig_parsed, *proxy_url;
610   int up_error_code;            /* url parse error code */
611   char *local_file;
612   int redirection_count = 0;
613
614   bool post_data_suspended = false;
615   char *saved_post_data = NULL;
616   char *saved_post_file_name = NULL;
617
618   /* If dt is NULL, use local storage.  */
619   if (!dt)
620     {
621       dt = &dummy;
622       dummy = 0;
623     }
624   url = xstrdup (origurl);
625   if (newloc)
626     *newloc = NULL;
627   if (file)
628     *file = NULL;
629
630  second_try:
631   DEBUGP (("[IRI Retrieving %s with %s (UTF-8=%d)\n", quote_n (0, url),
632            iri->uri_encoding ? quote_n (1, iri->uri_encoding) : "None",
633            iri->utf8_encode));
634
635   if (!refurl)
636     refurl = opt.referer;
637
638  redirected:
639
640   result = NOCONERROR;
641   mynewloc = NULL;
642   local_file = NULL;
643   proxy_url = NULL;
644
645   proxy = getproxy (u);
646   if (proxy)
647     {
648       struct iri *pi = iri_new ();
649       set_uri_encoding (pi, opt.locale, true);
650       pi->utf8_encode = false;
651
652       /* Parse the proxy URL.  */
653       proxy_url = url_parse (proxy, &up_error_code, NULL, true);
654       if (!proxy_url)
655         {
656           char *error = url_error (proxy, up_error_code);
657           logprintf (LOG_NOTQUIET, _("Error parsing proxy URL %s: %s.\n"),
658                      proxy, error);
659           xfree (url);
660           xfree (error);
661           RESTORE_POST_DATA;
662           return PROXERR;
663         }
664       if (proxy_url->scheme != SCHEME_HTTP && proxy_url->scheme != u->scheme)
665         {
666           logprintf (LOG_NOTQUIET, _("Error in proxy URL %s: Must be HTTP.\n"), proxy);
667           url_free (proxy_url);
668           xfree (url);
669           RESTORE_POST_DATA;
670           return PROXERR;
671         }
672     }
673
674   if (u->scheme == SCHEME_HTTP
675 #ifdef HAVE_SSL
676       || u->scheme == SCHEME_HTTPS
677 #endif
678       || (proxy_url && proxy_url->scheme == SCHEME_HTTP))
679     {
680       result = http_loop (u, &mynewloc, &local_file, refurl, dt, proxy_url, iri);
681     }
682   else if (u->scheme == SCHEME_FTP)
683     {
684       /* If this is a redirection, temporarily turn off opt.ftp_glob
685          and opt.recursive, both being undesirable when following
686          redirects.  */
687       bool oldrec = recursive, glob = opt.ftp_glob;
688       if (redirection_count)
689         oldrec = glob = false;
690
691       result = ftp_loop (u, dt, proxy_url, recursive, glob);
692       recursive = oldrec;
693
694       /* There is a possibility of having HTTP being redirected to
695          FTP.  In these cases we must decide whether the text is HTML
696          according to the suffix.  The HTML suffixes are `.html',
697          `.htm' and a few others, case-insensitive.  */
698       if (redirection_count && local_file && u->scheme == SCHEME_FTP)
699         {
700           if (has_html_suffix_p (local_file))
701             *dt |= TEXTHTML;
702         }
703     }
704
705   if (proxy_url)
706     {
707       url_free (proxy_url);
708       proxy_url = NULL;
709     }
710
711   location_changed = (result == NEWLOCATION);
712   if (location_changed)
713     {
714       char *construced_newloc;
715       struct url *newloc_parsed;
716
717       assert (mynewloc != NULL);
718
719       if (local_file)
720         xfree (local_file);
721
722       /* The HTTP specs only allow absolute URLs to appear in
723          redirects, but a ton of boneheaded webservers and CGIs out
724          there break the rules and use relative URLs, and popular
725          browsers are lenient about this, so wget should be too. */
726       construced_newloc = uri_merge (url, mynewloc);
727       xfree (mynewloc);
728       mynewloc = construced_newloc;
729
730       /* Reset UTF-8 encoding state, keep the URI encoding and reset
731          the content encoding. */
732       iri->utf8_encode = opt.enable_iri;
733       set_content_encoding (iri, NULL);
734       xfree_null (iri->orig_url);
735
736       /* Now, see if this new location makes sense. */
737       newloc_parsed = url_parse (mynewloc, &up_error_code, iri, true);
738       if (!newloc_parsed)
739         {
740           char *error = url_error (mynewloc, up_error_code);
741           logprintf (LOG_NOTQUIET, "%s: %s.\n", escnonprint_uri (mynewloc),
742                      error);
743           if (orig_parsed != u)
744             {
745               url_free (u);
746             }
747           xfree (url);
748           xfree (mynewloc);
749           xfree (error);
750           RESTORE_POST_DATA;
751           return result;
752         }
753
754       /* Now mynewloc will become newloc_parsed->url, because if the
755          Location contained relative paths like .././something, we
756          don't want that propagating as url.  */
757       xfree (mynewloc);
758       mynewloc = xstrdup (newloc_parsed->url);
759
760       /* Check for max. number of redirections.  */
761       if (++redirection_count > opt.max_redirect)
762         {
763           logprintf (LOG_NOTQUIET, _("%d redirections exceeded.\n"),
764                      opt.max_redirect);
765           url_free (newloc_parsed);
766           if (orig_parsed != u)
767             {
768               url_free (u);
769             }
770           xfree (url);
771           xfree (mynewloc);
772           RESTORE_POST_DATA;
773           return WRONGCODE;
774         }
775
776       xfree (url);
777       url = mynewloc;
778       if (orig_parsed != u)
779         {
780           url_free (u);
781         }
782       u = newloc_parsed;
783
784       /* If we're being redirected from POST, we don't want to POST
785          again.  Many requests answer POST with a redirection to an
786          index page; that redirection is clearly a GET.  We "suspend"
787          POST data for the duration of the redirections, and restore
788          it when we're done. */
789       if (!post_data_suspended)
790         SUSPEND_POST_DATA;
791
792       goto redirected;
793     }
794
795   /* Try to not encode in UTF-8 if fetching failed */
796   if (!(*dt & RETROKF) && iri->utf8_encode)
797     {
798       iri->utf8_encode = false;
799       DEBUGP (("[IRI fallbacking to non-utf8 for %s\n", quote (url)));
800       goto second_try;
801     }
802
803   if (local_file && *dt & RETROKF)
804     {
805       register_download (u->url, local_file);
806       if (redirection_count && 0 != strcmp (origurl, u->url))
807         register_redirection (origurl, u->url);
808       if (*dt & TEXTHTML)
809         register_html (u->url, local_file);
810       if (*dt & RETROKF)
811         {
812           register_download (u->url, local_file);
813           if (redirection_count && 0 != strcmp (origurl, u->url))
814             register_redirection (origurl, u->url);
815           if (*dt & TEXTHTML)
816             register_html (u->url, local_file);
817           if (*dt & TEXTCSS)
818             register_css (u->url, local_file);
819         }
820     }
821
822   if (file)
823     *file = local_file ? local_file : NULL;
824   else
825     xfree_null (local_file);
826
827   if (orig_parsed != u)
828     {
829       url_free (u);
830     }
831
832   if (redirection_count)
833     {
834       if (newloc)
835         *newloc = url;
836       else
837         xfree (url);
838     }
839   else
840     {
841       if (newloc)
842         *newloc = NULL;
843       xfree (url);
844     }
845
846   RESTORE_POST_DATA;
847
848   return result;
849 }
850
851 /* Find the URLs in the file and call retrieve_url() for each of them.
852    If HTML is true, treat the file as HTML, and construct the URLs
853    accordingly.
854
855    If opt.recursive is set, call retrieve_tree() for each file.  */
856
857 uerr_t
858 retrieve_from_file (const char *file, bool html, int *count)
859 {
860   uerr_t status;
861   struct urlpos *url_list, *cur_url;
862   struct iri *iri = iri_new();
863
864   char *input_file = NULL;
865   const char *url = file;
866
867   status = RETROK;             /* Suppose everything is OK.  */
868   *count = 0;                  /* Reset the URL count.  */
869
870   /* sXXXav : Assume filename and links in the file are in the locale */
871   set_uri_encoding (iri, opt.locale, true);
872   set_content_encoding (iri, opt.locale);
873
874   if (url_has_scheme (url))
875     {
876       int dt,url_err;
877       uerr_t status;
878       struct url * url_parsed = url_parse(url, &url_err, NULL, true);
879
880       if (!url_parsed)
881         {
882           char *error = url_error (url, url_err);
883           logprintf (LOG_NOTQUIET, "%s: %s.\n", url, error);
884           xfree (error);
885           return URLERROR;
886         }
887
888       if (!opt.base_href)
889         opt.base_href = xstrdup (url);
890
891       status = retrieve_url (url_parsed, url, &input_file, NULL, NULL, &dt,
892                              false, iri);
893       if (status != RETROK)
894         return status;
895
896       if (dt & TEXTHTML)
897         html = true;
898
899       /* If we have a found a content encoding, use it */
900       if (iri->content_encoding)
901           set_uri_encoding (iri, iri->content_encoding, false);
902     }
903   else
904     input_file = (char *) file;
905
906   url_list = (html ? get_urls_html (input_file, NULL, NULL, iri)
907               : get_urls_file (input_file));
908
909   for (cur_url = url_list; cur_url; cur_url = cur_url->next, ++*count)
910     {
911       char *filename = NULL, *new_file = NULL;
912       int dt;
913
914       if (cur_url->ignore_when_downloading)
915         continue;
916
917       if (opt.quota && total_downloaded_bytes > opt.quota)
918         {
919           status = QUOTEXC;
920           break;
921         }
922
923       /* Reset UTF-8 encode status */
924       iri->utf8_encode = opt.enable_iri;
925       xfree_null (iri->orig_url);
926       iri->orig_url = NULL;
927
928       if ((opt.recursive || opt.page_requisites)
929           && (cur_url->url->scheme != SCHEME_FTP || getproxy (cur_url->url)))
930         {
931           int old_follow_ftp = opt.follow_ftp;
932
933           /* Turn opt.follow_ftp on in case of recursive FTP retrieval */
934           if (cur_url->url->scheme == SCHEME_FTP)
935             opt.follow_ftp = 1;
936
937           status = retrieve_tree (cur_url->url, iri);
938
939           opt.follow_ftp = old_follow_ftp;
940         }
941       else
942         status = retrieve_url (cur_url->url, cur_url->url->url, &filename,
943                                &new_file, NULL, &dt, opt.recursive, iri);
944
945       if (filename && opt.delete_after && file_exists_p (filename))
946         {
947           DEBUGP (("\
948 Removing file due to --delete-after in retrieve_from_file():\n"));
949           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
950           if (unlink (filename))
951             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
952           dt &= ~RETROKF;
953         }
954
955       xfree_null (new_file);
956       xfree_null (filename);
957     }
958
959   /* Free the linked list of URL-s.  */
960   free_urlpos (url_list);
961
962   iri_free (iri);
963
964   return status;
965 }
966
967 /* Print `giving up', or `retrying', depending on the impending
968    action.  N1 and N2 are the attempt number and the attempt limit.  */
969 void
970 printwhat (int n1, int n2)
971 {
972   logputs (LOG_VERBOSE, (n1 == n2) ? _("Giving up.\n\n") : _("Retrying.\n\n"));
973 }
974
975 /* If opt.wait or opt.waitretry are specified, and if certain
976    conditions are met, sleep the appropriate number of seconds.  See
977    the documentation of --wait and --waitretry for more information.
978
979    COUNT is the count of current retrieval, beginning with 1. */
980
981 void
982 sleep_between_retrievals (int count)
983 {
984   static bool first_retrieval = true;
985
986   if (first_retrieval)
987     {
988       /* Don't sleep before the very first retrieval. */
989       first_retrieval = false;
990       return;
991     }
992
993   if (opt.waitretry && count > 1)
994     {
995       /* If opt.waitretry is specified and this is a retry, wait for
996          COUNT-1 number of seconds, or for opt.waitretry seconds.  */
997       if (count <= opt.waitretry)
998         xsleep (count - 1);
999       else
1000         xsleep (opt.waitretry);
1001     }
1002   else if (opt.wait)
1003     {
1004       if (!opt.random_wait || count > 1)
1005         /* If random-wait is not specified, or if we are sleeping
1006            between retries of the same download, sleep the fixed
1007            interval.  */
1008         xsleep (opt.wait);
1009       else
1010         {
1011           /* Sleep a random amount of time averaging in opt.wait
1012              seconds.  The sleeping amount ranges from 0.5*opt.wait to
1013              1.5*opt.wait.  */
1014           double waitsecs = (0.5 + random_float ()) * opt.wait;
1015           DEBUGP (("sleep_between_retrievals: avg=%f,sleep=%f\n",
1016                    opt.wait, waitsecs));
1017           xsleep (waitsecs);
1018         }
1019     }
1020 }
1021
1022 /* Free the linked list of urlpos.  */
1023 void
1024 free_urlpos (struct urlpos *l)
1025 {
1026   while (l)
1027     {
1028       struct urlpos *next = l->next;
1029       if (l->url)
1030         url_free (l->url);
1031       xfree_null (l->local_name);
1032       xfree (l);
1033       l = next;
1034     }
1035 }
1036
1037 /* Rotate FNAME opt.backups times */
1038 void
1039 rotate_backups(const char *fname)
1040 {
1041   int maxlen = strlen (fname) + 1 + numdigit (opt.backups) + 1;
1042   char *from = (char *)alloca (maxlen);
1043   char *to = (char *)alloca (maxlen);
1044   struct_stat sb;
1045   int i;
1046
1047   if (stat (fname, &sb) == 0)
1048     if (S_ISREG (sb.st_mode) == 0)
1049       return;
1050
1051   for (i = opt.backups; i > 1; i--)
1052     {
1053       sprintf (from, "%s.%d", fname, i - 1);
1054       sprintf (to, "%s.%d", fname, i);
1055       rename (from, to);
1056     }
1057
1058   sprintf (to, "%s.%d", fname, 1);
1059   rename(fname, to);
1060 }
1061
1062 static bool no_proxy_match (const char *, const char **);
1063
1064 /* Return the URL of the proxy appropriate for url U.  */
1065
1066 static char *
1067 getproxy (struct url *u)
1068 {
1069   char *proxy = NULL;
1070   char *rewritten_url;
1071   static char rewritten_storage[1024];
1072
1073   if (!opt.use_proxy)
1074     return NULL;
1075   if (no_proxy_match (u->host, (const char **)opt.no_proxy))
1076     return NULL;
1077
1078   switch (u->scheme)
1079     {
1080     case SCHEME_HTTP:
1081       proxy = opt.http_proxy ? opt.http_proxy : getenv ("http_proxy");
1082       break;
1083 #ifdef HAVE_SSL
1084     case SCHEME_HTTPS:
1085       proxy = opt.https_proxy ? opt.https_proxy : getenv ("https_proxy");
1086       break;
1087 #endif
1088     case SCHEME_FTP:
1089       proxy = opt.ftp_proxy ? opt.ftp_proxy : getenv ("ftp_proxy");
1090       break;
1091     case SCHEME_INVALID:
1092       break;
1093     }
1094   if (!proxy || !*proxy)
1095     return NULL;
1096
1097   /* Handle shorthands.  `rewritten_storage' is a kludge to allow
1098      getproxy() to return static storage. */
1099   rewritten_url = rewrite_shorthand_url (proxy);
1100   if (rewritten_url)
1101     {
1102       strncpy (rewritten_storage, rewritten_url, sizeof (rewritten_storage));
1103       rewritten_storage[sizeof (rewritten_storage) - 1] = '\0';
1104       proxy = rewritten_storage;
1105     }
1106
1107   return proxy;
1108 }
1109
1110 /* Returns true if URL would be downloaded through a proxy. */
1111
1112 bool
1113 url_uses_proxy (struct url * u)
1114 {
1115   bool ret;
1116   if (!u)
1117     return false;
1118   ret = getproxy (u) != NULL;
1119   return ret;
1120 }
1121
1122 /* Should a host be accessed through proxy, concerning no_proxy?  */
1123 static bool
1124 no_proxy_match (const char *host, const char **no_proxy)
1125 {
1126   if (!no_proxy)
1127     return false;
1128   else
1129     return sufmatch (no_proxy, host);
1130 }
1131
1132 /* Set the file parameter to point to the local file string.  */
1133 void
1134 set_local_file (const char **file, const char *default_file)
1135 {
1136   if (opt.output_document)
1137     {
1138       if (output_stream_regular)
1139         *file = opt.output_document;
1140     }
1141   else
1142     *file = default_file;
1143 }