]> sjero.net Git - wget/blob - src/retr.c
mass change: update copyright years.
[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
211   int dlbufsize = BUFSIZ;
212   char *dlbuf = xmalloc (BUFSIZ);
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);
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, we don't want to POST
842          again.  Many requests answer POST with a redirection to an
843          index page; that redirection is clearly a GET.  We "suspend"
844          POST data for the duration of the redirections, and restore
845          it when we're done. */
846       if (!post_data_suspended)
847         SUSPEND_POST_DATA;
848
849       goto redirected;
850     }
851
852   /* Try to not encode in UTF-8 if fetching failed */
853   if (!(*dt & RETROKF) && iri->utf8_encode)
854     {
855       iri->utf8_encode = false;
856       if (orig_parsed != u)
857         {
858           url_free (u);
859         }
860       u = url_parse (origurl, NULL, iri, true);
861       if (u)
862         {
863           DEBUGP (("[IRI fallbacking to non-utf8 for %s\n", quote (url)));
864           url = xstrdup (u->url);
865           iri_fallbacked = 1;
866           goto redirected;
867         }
868       else
869           DEBUGP (("[Couldn't fallback to non-utf8 for %s\n", quote (url)));
870     }
871
872   if (local_file && u && *dt & RETROKF)
873     {
874       register_download (u->url, local_file);
875
876       if (redirection_count && 0 != strcmp (origurl, u->url))
877         register_redirection (origurl, u->url);
878
879       if (*dt & TEXTHTML)
880         register_html (u->url, local_file);
881
882       if (*dt & TEXTCSS)
883         register_css (u->url, local_file);
884     }
885
886   if (file)
887     *file = local_file ? local_file : NULL;
888   else
889     xfree_null (local_file);
890
891   if (orig_parsed != u)
892     {
893       url_free (u);
894     }
895
896   if (redirection_count || iri_fallbacked)
897     {
898       if (newloc)
899         *newloc = url;
900       else
901         xfree (url);
902     }
903   else
904     {
905       if (newloc)
906         *newloc = NULL;
907       xfree (url);
908     }
909
910   RESTORE_POST_DATA;
911
912 bail:
913   if (register_status)
914     inform_exit_status (result);
915   return result;
916 }
917
918 /* Find the URLs in the file and call retrieve_url() for each of them.
919    If HTML is true, treat the file as HTML, and construct the URLs
920    accordingly.
921
922    If opt.recursive is set, call retrieve_tree() for each file.  */
923
924 uerr_t
925 retrieve_from_file (const char *file, bool html, int *count)
926 {
927   uerr_t status;
928   struct urlpos *url_list, *cur_url;
929   struct iri *iri = iri_new();
930
931   char *input_file, *url_file = NULL;
932   const char *url = file;
933
934   status = RETROK;             /* Suppose everything is OK.  */
935   *count = 0;                  /* Reset the URL count.  */
936
937   /* sXXXav : Assume filename and links in the file are in the locale */
938   set_uri_encoding (iri, opt.locale, true);
939   set_content_encoding (iri, opt.locale);
940
941   if (url_valid_scheme (url))
942     {
943       int dt,url_err;
944       uerr_t status;
945       struct url * url_parsed = url_parse(url, &url_err, iri, true);
946
947       if (!url_parsed)
948         {
949           char *error = url_error (url, url_err);
950           logprintf (LOG_NOTQUIET, "%s: %s.\n", url, error);
951           xfree (error);
952           return URLERROR;
953         }
954
955       if (!opt.base_href)
956         opt.base_href = xstrdup (url);
957
958       status = retrieve_url (url_parsed, url, &url_file, NULL, NULL, &dt,
959                              false, iri, true);
960       url_free (url_parsed);
961
962       if (!url_file || (status != RETROK))
963         return status;
964
965       if (dt & TEXTHTML)
966         html = true;
967
968       /* If we have a found a content encoding, use it.
969        * ( == is okay, because we're checking for identical object) */
970       if (iri->content_encoding != opt.locale)
971           set_uri_encoding (iri, iri->content_encoding, false);
972
973       /* Reset UTF-8 encode status */
974       iri->utf8_encode = opt.enable_iri;
975       xfree_null (iri->orig_url);
976       iri->orig_url = NULL;
977
978       input_file = url_file;
979     }
980   else
981     input_file = (char *) file;
982
983   url_list = (html ? get_urls_html (input_file, NULL, NULL, iri)
984               : get_urls_file (input_file));
985
986   xfree_null (url_file);
987
988   for (cur_url = url_list; cur_url; cur_url = cur_url->next, ++*count)
989     {
990       char *filename = NULL, *new_file = NULL;
991       int dt;
992       struct iri *tmpiri = iri_dup (iri);
993       struct url *parsed_url = NULL;
994
995       if (cur_url->ignore_when_downloading)
996         continue;
997
998       if (opt.quota && total_downloaded_bytes > opt.quota)
999         {
1000           status = QUOTEXC;
1001           break;
1002         }
1003
1004       /* Need to reparse the url, since it didn't have iri information. */
1005       if (opt.enable_iri)
1006           parsed_url = url_parse (cur_url->url->url, NULL, tmpiri, true);
1007
1008       if ((opt.recursive || opt.page_requisites)
1009           && (cur_url->url->scheme != SCHEME_FTP || getproxy (cur_url->url)))
1010         {
1011           int old_follow_ftp = opt.follow_ftp;
1012
1013           /* Turn opt.follow_ftp on in case of recursive FTP retrieval */
1014           if (cur_url->url->scheme == SCHEME_FTP)
1015             opt.follow_ftp = 1;
1016
1017           status = retrieve_tree (parsed_url ? parsed_url : cur_url->url,
1018                                   tmpiri);
1019
1020           opt.follow_ftp = old_follow_ftp;
1021         }
1022       else
1023         status = retrieve_url (parsed_url ? parsed_url : cur_url->url,
1024                                cur_url->url->url, &filename,
1025                                &new_file, NULL, &dt, opt.recursive, tmpiri,
1026                                true);
1027
1028       if (parsed_url)
1029           url_free (parsed_url);
1030
1031       if (filename && opt.delete_after && file_exists_p (filename))
1032         {
1033           DEBUGP (("\
1034 Removing file due to --delete-after in retrieve_from_file():\n"));
1035           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
1036           if (unlink (filename))
1037             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
1038           dt &= ~RETROKF;
1039         }
1040
1041       xfree_null (new_file);
1042       xfree_null (filename);
1043       iri_free (tmpiri);
1044     }
1045
1046   /* Free the linked list of URL-s.  */
1047   free_urlpos (url_list);
1048
1049   iri_free (iri);
1050
1051   return status;
1052 }
1053
1054 /* Print `giving up', or `retrying', depending on the impending
1055    action.  N1 and N2 are the attempt number and the attempt limit.  */
1056 void
1057 printwhat (int n1, int n2)
1058 {
1059   logputs (LOG_VERBOSE, (n1 == n2) ? _("Giving up.\n\n") : _("Retrying.\n\n"));
1060 }
1061
1062 /* If opt.wait or opt.waitretry are specified, and if certain
1063    conditions are met, sleep the appropriate number of seconds.  See
1064    the documentation of --wait and --waitretry for more information.
1065
1066    COUNT is the count of current retrieval, beginning with 1. */
1067
1068 void
1069 sleep_between_retrievals (int count)
1070 {
1071   static bool first_retrieval = true;
1072
1073   if (first_retrieval)
1074     {
1075       /* Don't sleep before the very first retrieval. */
1076       first_retrieval = false;
1077       return;
1078     }
1079
1080   if (opt.waitretry && count > 1)
1081     {
1082       /* If opt.waitretry is specified and this is a retry, wait for
1083          COUNT-1 number of seconds, or for opt.waitretry seconds.  */
1084       if (count <= opt.waitretry)
1085         xsleep (count - 1);
1086       else
1087         xsleep (opt.waitretry);
1088     }
1089   else if (opt.wait)
1090     {
1091       if (!opt.random_wait || count > 1)
1092         /* If random-wait is not specified, or if we are sleeping
1093            between retries of the same download, sleep the fixed
1094            interval.  */
1095         xsleep (opt.wait);
1096       else
1097         {
1098           /* Sleep a random amount of time averaging in opt.wait
1099              seconds.  The sleeping amount ranges from 0.5*opt.wait to
1100              1.5*opt.wait.  */
1101           double waitsecs = (0.5 + random_float ()) * opt.wait;
1102           DEBUGP (("sleep_between_retrievals: avg=%f,sleep=%f\n",
1103                    opt.wait, waitsecs));
1104           xsleep (waitsecs);
1105         }
1106     }
1107 }
1108
1109 /* Free the linked list of urlpos.  */
1110 void
1111 free_urlpos (struct urlpos *l)
1112 {
1113   while (l)
1114     {
1115       struct urlpos *next = l->next;
1116       if (l->url)
1117         url_free (l->url);
1118       xfree_null (l->local_name);
1119       xfree (l);
1120       l = next;
1121     }
1122 }
1123
1124 /* Rotate FNAME opt.backups times */
1125 void
1126 rotate_backups(const char *fname)
1127 {
1128   int maxlen = strlen (fname) + 1 + numdigit (opt.backups) + 1;
1129   char *from = (char *)alloca (maxlen);
1130   char *to = (char *)alloca (maxlen);
1131   struct_stat sb;
1132   int i;
1133
1134   if (stat (fname, &sb) == 0)
1135     if (S_ISREG (sb.st_mode) == 0)
1136       return;
1137
1138   for (i = opt.backups; i > 1; i--)
1139     {
1140       sprintf (from, "%s.%d", fname, i - 1);
1141       sprintf (to, "%s.%d", fname, i);
1142       rename (from, to);
1143     }
1144
1145   sprintf (to, "%s.%d", fname, 1);
1146   rename(fname, to);
1147 }
1148
1149 static bool no_proxy_match (const char *, const char **);
1150
1151 /* Return the URL of the proxy appropriate for url U.  */
1152
1153 static char *
1154 getproxy (struct url *u)
1155 {
1156   char *proxy = NULL;
1157   char *rewritten_url;
1158   static char rewritten_storage[1024];
1159
1160   if (!opt.use_proxy)
1161     return NULL;
1162   if (no_proxy_match (u->host, (const char **)opt.no_proxy))
1163     return NULL;
1164
1165   switch (u->scheme)
1166     {
1167     case SCHEME_HTTP:
1168       proxy = opt.http_proxy ? opt.http_proxy : getenv ("http_proxy");
1169       break;
1170 #ifdef HAVE_SSL
1171     case SCHEME_HTTPS:
1172       proxy = opt.https_proxy ? opt.https_proxy : getenv ("https_proxy");
1173       break;
1174 #endif
1175     case SCHEME_FTP:
1176       proxy = opt.ftp_proxy ? opt.ftp_proxy : getenv ("ftp_proxy");
1177       break;
1178     case SCHEME_INVALID:
1179       break;
1180     }
1181   if (!proxy || !*proxy)
1182     return NULL;
1183
1184   /* Handle shorthands.  `rewritten_storage' is a kludge to allow
1185      getproxy() to return static storage. */
1186   rewritten_url = rewrite_shorthand_url (proxy);
1187   if (rewritten_url)
1188     {
1189       strncpy (rewritten_storage, rewritten_url, sizeof (rewritten_storage));
1190       rewritten_storage[sizeof (rewritten_storage) - 1] = '\0';
1191       proxy = rewritten_storage;
1192     }
1193
1194   return proxy;
1195 }
1196
1197 /* Returns true if URL would be downloaded through a proxy. */
1198
1199 bool
1200 url_uses_proxy (struct url * u)
1201 {
1202   bool ret;
1203   if (!u)
1204     return false;
1205   ret = getproxy (u) != NULL;
1206   return ret;
1207 }
1208
1209 /* Should a host be accessed through proxy, concerning no_proxy?  */
1210 static bool
1211 no_proxy_match (const char *host, const char **no_proxy)
1212 {
1213   if (!no_proxy)
1214     return false;
1215   else
1216     return sufmatch (no_proxy, host);
1217 }
1218
1219 /* Set the file parameter to point to the local file string.  */
1220 void
1221 set_local_file (const char **file, const char *default_file)
1222 {
1223   if (opt.output_document)
1224     {
1225       if (output_stream_regular)
1226         *file = opt.output_document;
1227     }
1228   else
1229     *file = default_file;
1230 }
1231
1232 /* Return true for an input file's own URL, false otherwise.  */
1233 bool
1234 input_file_url (const char *input_file)
1235 {
1236   static bool first = true;
1237
1238   if (input_file
1239       && url_has_scheme (input_file)
1240       && first)
1241     {
1242       first = false;
1243       return true;
1244     }
1245   else
1246     return false;
1247 }