]> sjero.net Git - wget/blob - src/recur.c
[svn] Merge of fix for bugs 20341 and 20410.
[wget] / src / recur.c
1 /* Handling of recursive HTTP retrieving.
2    Copyright (C) 1996-2006 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9  (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
18
19 In addition, as a special exception, the Free Software Foundation
20 gives permission to link the code of its release of Wget with the
21 OpenSSL project's "OpenSSL" library (or with modified versions of it
22 that use the same license as the "OpenSSL" library), and distribute
23 the linked executables.  You must obey the GNU General Public License
24 in all respects for all of the code used other than "OpenSSL".  If you
25 modify this file, you may extend this exception to your version of the
26 file, but you are not obligated to do so.  If you do not wish to do
27 so, delete this exception statement from your version.  */
28
29 #include <config.h>
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #ifdef HAVE_UNISTD_H
35 # include <unistd.h>
36 #endif /* HAVE_UNISTD_H */
37 #include <errno.h>
38 #include <assert.h>
39
40 #include "wget.h"
41 #include "url.h"
42 #include "recur.h"
43 #include "utils.h"
44 #include "retr.h"
45 #include "ftp.h"
46 #include "host.h"
47 #include "hash.h"
48 #include "res.h"
49 #include "convert.h"
50 #include "spider.h"
51 \f
52 /* Functions for maintaining the URL queue.  */
53
54 struct queue_element {
55   const char *url;              /* the URL to download */
56   const char *referer;          /* the referring document */
57   int depth;                    /* the depth */
58   bool html_allowed;            /* whether the document is allowed to
59                                    be treated as HTML. */
60
61   struct queue_element *next;   /* next element in queue */
62 };
63
64 struct url_queue {
65   struct queue_element *head;
66   struct queue_element *tail;
67   int count, maxcount;
68 };
69
70 /* Create a URL queue. */
71
72 static struct url_queue *
73 url_queue_new (void)
74 {
75   struct url_queue *queue = xnew0 (struct url_queue);
76   return queue;
77 }
78
79 /* Delete a URL queue. */
80
81 static void
82 url_queue_delete (struct url_queue *queue)
83 {
84   xfree (queue);
85 }
86
87 /* Enqueue a URL in the queue.  The queue is FIFO: the items will be
88    retrieved ("dequeued") from the queue in the order they were placed
89    into it.  */
90
91 static void
92 url_enqueue (struct url_queue *queue,
93              const char *url, const char *referer, int depth, bool html_allowed)
94 {
95   struct queue_element *qel = xnew (struct queue_element);
96   qel->url = url;
97   qel->referer = referer;
98   qel->depth = depth;
99   qel->html_allowed = html_allowed;
100   qel->next = NULL;
101
102   ++queue->count;
103   if (queue->count > queue->maxcount)
104     queue->maxcount = queue->count;
105
106   DEBUGP (("Enqueuing %s at depth %d\n", url, depth));
107   DEBUGP (("Queue count %d, maxcount %d.\n", queue->count, queue->maxcount));
108
109   if (queue->tail)
110     queue->tail->next = qel;
111   queue->tail = qel;
112
113   if (!queue->head)
114     queue->head = queue->tail;
115 }
116
117 /* Take a URL out of the queue.  Return true if this operation
118    succeeded, or false if the queue is empty.  */
119
120 static bool
121 url_dequeue (struct url_queue *queue,
122              const char **url, const char **referer, int *depth,
123              bool *html_allowed)
124 {
125   struct queue_element *qel = queue->head;
126
127   if (!qel)
128     return false;
129
130   queue->head = queue->head->next;
131   if (!queue->head)
132     queue->tail = NULL;
133
134   *url = qel->url;
135   *referer = qel->referer;
136   *depth = qel->depth;
137   *html_allowed = qel->html_allowed;
138
139   --queue->count;
140
141   DEBUGP (("Dequeuing %s at depth %d\n", qel->url, qel->depth));
142   DEBUGP (("Queue count %d, maxcount %d.\n", queue->count, queue->maxcount));
143
144   xfree (qel);
145   return true;
146 }
147 \f
148 static bool download_child_p (const struct urlpos *, struct url *, int,
149                               struct url *, struct hash_table *);
150 static bool descend_redirect_p (const char *, const char *, int,
151                                 struct url *, struct hash_table *);
152
153
154 /* Retrieve a part of the web beginning with START_URL.  This used to
155    be called "recursive retrieval", because the old function was
156    recursive and implemented depth-first search.  retrieve_tree on the
157    other hand implements breadth-search traversal of the tree, which
158    results in much nicer ordering of downloads.
159
160    The algorithm this function uses is simple:
161
162    1. put START_URL in the queue.
163    2. while there are URLs in the queue:
164
165      3. get next URL from the queue.
166      4. download it.
167      5. if the URL is HTML and its depth does not exceed maximum depth,
168         get the list of URLs embedded therein.
169      6. for each of those URLs do the following:
170
171        7. if the URL is not one of those downloaded before, and if it
172           satisfies the criteria specified by the various command-line
173           options, add it to the queue. */
174
175 uerr_t
176 retrieve_tree (const char *start_url)
177 {
178   uerr_t status = RETROK;
179
180   /* The queue of URLs we need to load. */
181   struct url_queue *queue;
182
183   /* The URLs we do not wish to enqueue, because they are already in
184      the queue, but haven't been downloaded yet.  */
185   struct hash_table *blacklist;
186
187   int up_error_code;
188   struct url *start_url_parsed = url_parse (start_url, &up_error_code);
189
190   if (!start_url_parsed)
191     {
192       logprintf (LOG_NOTQUIET, "%s: %s.\n", start_url,
193                  url_error (up_error_code));
194       return URLERROR;
195     }
196
197   queue = url_queue_new ();
198   blacklist = make_string_hash_table (0);
199
200   /* Enqueue the starting URL.  Use start_url_parsed->url rather than
201      just URL so we enqueue the canonical form of the URL.  */
202   url_enqueue (queue, xstrdup (start_url_parsed->url), NULL, 0, true);
203   string_set_add (blacklist, start_url_parsed->url);
204
205   while (1)
206     {
207       bool descend = false;
208       char *url, *referer, *file = NULL;
209       int depth;
210       bool html_allowed;
211       bool dash_p_leaf_HTML = false;
212
213       if (opt.quota && total_downloaded_bytes > opt.quota)
214         break;
215       if (status == FWRITEERR)
216         break;
217
218       /* Get the next URL from the queue... */
219
220       if (!url_dequeue (queue,
221                         (const char **)&url, (const char **)&referer,
222                         &depth, &html_allowed))
223         break;
224
225       /* ...and download it.  Note that this download is in most cases
226          unconditional, as download_child_p already makes sure a file
227          doesn't get enqueued twice -- and yet this check is here, and
228          not in download_child_p.  This is so that if you run `wget -r
229          URL1 URL2', and a random URL is encountered once under URL1
230          and again under URL2, but at a different (possibly smaller)
231          depth, we want the URL's children to be taken into account
232          the second time.  */
233       if (dl_url_file_map && hash_table_contains (dl_url_file_map, url))
234         {
235           file = xstrdup (hash_table_get (dl_url_file_map, url));
236
237           DEBUGP (("Already downloaded \"%s\", reusing it from \"%s\".\n",
238                    url, file));
239
240           if (html_allowed
241               && downloaded_html_set
242               && string_set_contains (downloaded_html_set, file))
243             descend = true;
244         }
245       else
246         {
247           int dt = 0;
248           char *redirected = NULL;
249
250           status = retrieve_url (url, &file, &redirected, referer, &dt, false);
251
252           if (html_allowed && file && status == RETROK
253               && (dt & RETROKF) && (dt & TEXTHTML))
254             descend = true;
255
256           if (redirected)
257             {
258               /* We have been redirected, possibly to another host, or
259                  different path, or wherever.  Check whether we really
260                  want to follow it.  */
261               if (descend)
262                 {
263                   if (!descend_redirect_p (redirected, url, depth,
264                                            start_url_parsed, blacklist))
265                     descend = false;
266                   else
267                     /* Make sure that the old pre-redirect form gets
268                        blacklisted. */
269                     string_set_add (blacklist, url);
270                 }
271
272               xfree (url);
273               url = redirected;
274             }
275         }
276
277       if (opt.spider)
278         {
279           visited_url (url, referer);
280         }
281
282       if (descend
283           && depth >= opt.reclevel && opt.reclevel != INFINITE_RECURSION)
284         {
285           if (opt.page_requisites
286               && (depth == opt.reclevel || depth == opt.reclevel + 1))
287             {
288               /* When -p is specified, we are allowed to exceed the
289                  maximum depth, but only for the "inline" links,
290                  i.e. those that are needed to display the page.
291                  Originally this could exceed the depth at most by
292                  one, but we allow one more level so that the leaf
293                  pages that contain frames can be loaded
294                  correctly.  */
295               dash_p_leaf_HTML = true;
296             }
297           else
298             {
299               /* Either -p wasn't specified or it was and we've
300                  already spent the two extra (pseudo-)levels that it
301                  affords us, so we need to bail out. */
302               DEBUGP (("Not descending further; at depth %d, max. %d.\n",
303                        depth, opt.reclevel));
304               descend = false;
305             }
306         }
307
308       /* If the downloaded document was HTML, parse it and enqueue the
309          links it contains. */
310
311       if (descend)
312         {
313           bool meta_disallow_follow = false;
314           struct urlpos *children
315             = get_urls_html (file, url, &meta_disallow_follow);
316
317           if (opt.use_robots && meta_disallow_follow)
318             {
319               free_urlpos (children);
320               children = NULL;
321             }
322
323           if (children)
324             {
325               struct urlpos *child = children;
326               struct url *url_parsed = url_parsed = url_parse (url, NULL);
327               assert (url_parsed != NULL);
328
329               for (; child; child = child->next)
330                 {
331                   if (child->ignore_when_downloading)
332                     continue;
333                   if (dash_p_leaf_HTML && !child->link_inline_p)
334                     continue;
335                   if (download_child_p (child, url_parsed, depth, start_url_parsed,
336                                         blacklist))
337                     {
338                       url_enqueue (queue, xstrdup (child->url->url),
339                                    xstrdup (url), depth + 1,
340                                    child->link_expect_html);
341                       /* We blacklist the URL we have enqueued, because we
342                          don't want to enqueue (and hence download) the
343                          same URL twice.  */
344                       string_set_add (blacklist, child->url->url);
345                     }
346                 }
347
348               url_free (url_parsed);
349               free_urlpos (children);
350             }
351         }
352
353       if (file 
354           && (opt.delete_after 
355               || opt.spider /* opt.recursive is implicitely true */
356               || !acceptable (file)))
357         {
358           /* Either --delete-after was specified, or we loaded this
359              (otherwise unneeded because of --spider or rejected by -R) 
360              HTML file just to harvest its hyperlinks -- in either case, 
361              delete the local file. */
362           DEBUGP (("Removing file due to %s in recursive_retrieve():\n",
363                    opt.delete_after ? "--delete-after" :
364                    (opt.spider ? "--spider" : 
365                     "recursive rejection criteria")));
366           logprintf (LOG_VERBOSE,
367                      (opt.delete_after || opt.spider
368                       ? _("Removing %s.\n")
369                       : _("Removing %s since it should be rejected.\n")),
370                      file);
371           if (unlink (file))
372             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
373           logputs (LOG_VERBOSE, "\n");
374           register_delete_file (file);
375         }
376
377       xfree (url);
378       xfree_null (referer);
379       xfree_null (file);
380     }
381
382   /* If anything is left of the queue due to a premature exit, free it
383      now.  */
384   {
385     char *d1, *d2;
386     int d3;
387     bool d4;
388     while (url_dequeue (queue,
389                         (const char **)&d1, (const char **)&d2, &d3, &d4))
390       {
391         xfree (d1);
392         xfree_null (d2);
393       }
394   }
395   url_queue_delete (queue);
396
397   if (start_url_parsed)
398     url_free (start_url_parsed);
399   string_set_free (blacklist);
400
401   if (opt.quota && total_downloaded_bytes > opt.quota)
402     return QUOTEXC;
403   else if (status == FWRITEERR)
404     return FWRITEERR;
405   else
406     return RETROK;
407 }
408
409 /* Based on the context provided by retrieve_tree, decide whether a
410    URL is to be descended to.  This is only ever called from
411    retrieve_tree, but is in a separate function for clarity.
412
413    The most expensive checks (such as those for robots) are memoized
414    by storing these URLs to BLACKLIST.  This may or may not help.  It
415    will help if those URLs are encountered many times.  */
416
417 static bool
418 download_child_p (const struct urlpos *upos, struct url *parent, int depth,
419                   struct url *start_url_parsed, struct hash_table *blacklist)
420 {
421   struct url *u = upos->url;
422   const char *url = u->url;
423   bool u_scheme_like_http;
424
425   DEBUGP (("Deciding whether to enqueue \"%s\".\n", url));
426
427   if (string_set_contains (blacklist, url))
428     {
429       if (opt.spider) 
430         {
431           char *referrer = url_string (parent, true);
432           DEBUGP (("download_child_p: parent->url is: `%s'\n", parent->url));
433           visited_url (url, referrer);
434           xfree (referrer);
435         }
436       DEBUGP (("Already on the black list.\n"));
437       goto out;
438     }
439
440   /* Several things to check for:
441      1. if scheme is not http, and we don't load it
442      2. check for relative links (if relative_only is set)
443      3. check for domain
444      4. check for no-parent
445      5. check for excludes && includes
446      6. check for suffix
447      7. check for same host (if spanhost is unset), with possible
448      gethostbyname baggage
449      8. check for robots.txt
450
451      Addendum: If the URL is FTP, and it is to be loaded, only the
452      domain and suffix settings are "stronger".
453
454      Note that .html files will get loaded regardless of suffix rules
455      (but that is remedied later with unlink) unless the depth equals
456      the maximum depth.
457
458      More time- and memory- consuming tests should be put later on
459      the list.  */
460
461   /* Determine whether URL under consideration has a HTTP-like scheme. */
462   u_scheme_like_http = schemes_are_similar_p (u->scheme, SCHEME_HTTP);
463
464   /* 1. Schemes other than HTTP are normally not recursed into. */
465   if (!u_scheme_like_http && !(u->scheme == SCHEME_FTP && opt.follow_ftp))
466     {
467       DEBUGP (("Not following non-HTTP schemes.\n"));
468       goto out;
469     }
470
471   /* 2. If it is an absolute link and they are not followed, throw it
472      out.  */
473   if (u_scheme_like_http)
474     if (opt.relative_only && !upos->link_relative_p)
475       {
476         DEBUGP (("It doesn't really look like a relative link.\n"));
477         goto out;
478       }
479
480   /* 3. If its domain is not to be accepted/looked-up, chuck it
481      out.  */
482   if (!accept_domain (u))
483     {
484       DEBUGP (("The domain was not accepted.\n"));
485       goto out;
486     }
487
488   /* 4. Check for parent directory.
489
490      If we descended to a different host or changed the scheme, ignore
491      opt.no_parent.  Also ignore it for documents needed to display
492      the parent page when in -p mode.  */
493   if (opt.no_parent
494       && schemes_are_similar_p (u->scheme, start_url_parsed->scheme)
495       && 0 == strcasecmp (u->host, start_url_parsed->host)
496       && u->port == start_url_parsed->port
497       && !(opt.page_requisites && upos->link_inline_p))
498     {
499       if (!subdir_p (start_url_parsed->dir, u->dir))
500         {
501           DEBUGP (("Going to \"%s\" would escape \"%s\" with no_parent on.\n",
502                    u->dir, start_url_parsed->dir));
503           goto out;
504         }
505     }
506
507   /* 5. If the file does not match the acceptance list, or is on the
508      rejection list, chuck it out.  The same goes for the directory
509      exclusion and inclusion lists.  */
510   if (opt.includes || opt.excludes)
511     {
512       if (!accdir (u->dir))
513         {
514           DEBUGP (("%s (%s) is excluded/not-included.\n", url, u->dir));
515           goto out;
516         }
517     }
518
519   /* 6. Check for acceptance/rejection rules.  We ignore these rules
520      for directories (no file name to match) and for non-leaf HTMLs,
521      which can lead to other files that do need to be downloaded.  (-p
522      automatically implies non-leaf because with -p we can, if
523      necesary, overstep the maximum depth to get the page requisites.)  */
524   if (u->file[0] != '\0'
525       && !(has_html_suffix_p (u->file)
526            /* The exception only applies to non-leaf HTMLs (but -p
527               always implies non-leaf because we can overstep the
528               maximum depth to get the requisites): */
529            && (/* non-leaf */
530                opt.reclevel == INFINITE_RECURSION
531                /* also non-leaf */
532                || depth < opt.reclevel - 1
533                /* -p, which implies non-leaf (see above) */
534                || opt.page_requisites)))
535     {
536       if (!acceptable (u->file))
537         {
538           DEBUGP (("%s (%s) does not match acc/rej rules.\n",
539                    url, u->file));
540           goto out;
541         }
542     }
543
544   /* 7. */
545   if (schemes_are_similar_p (u->scheme, parent->scheme))
546     if (!opt.spanhost && 0 != strcasecmp (parent->host, u->host))
547       {
548         DEBUGP (("This is not the same hostname as the parent's (%s and %s).\n",
549                  u->host, parent->host));
550         goto out;
551       }
552
553   /* 8. */
554   if (opt.use_robots && u_scheme_like_http)
555     {
556       struct robot_specs *specs = res_get_specs (u->host, u->port);
557       if (!specs)
558         {
559           char *rfile;
560           if (res_retrieve_file (url, &rfile))
561             {
562               specs = res_parse_from_file (rfile);
563               xfree (rfile);
564             }
565           else
566             {
567               /* If we cannot get real specs, at least produce
568                  dummy ones so that we can register them and stop
569                  trying to retrieve them.  */
570               specs = res_parse ("", 0);
571             }
572           res_register_specs (u->host, u->port, specs);
573         }
574
575       /* Now that we have (or don't have) robots.txt specs, we can
576          check what they say.  */
577       if (!res_match_path (specs, u->path))
578         {
579           DEBUGP (("Not following %s because robots.txt forbids it.\n", url));
580           string_set_add (blacklist, url);
581           goto out;
582         }
583     }
584
585   /* The URL has passed all the tests.  It can be placed in the
586      download queue. */
587   DEBUGP (("Decided to load it.\n"));
588
589   return true;
590
591  out:
592   DEBUGP (("Decided NOT to load it.\n"));
593
594   return false;
595 }
596
597 /* This function determines whether we will consider downloading the
598    children of a URL whose download resulted in a redirection,
599    possibly to another host, etc.  It is needed very rarely, and thus
600    it is merely a simple-minded wrapper around download_child_p.  */
601
602 static bool
603 descend_redirect_p (const char *redirected, const char *original, int depth,
604                     struct url *start_url_parsed, struct hash_table *blacklist)
605 {
606   struct url *orig_parsed, *new_parsed;
607   struct urlpos *upos;
608   bool success;
609
610   orig_parsed = url_parse (original, NULL);
611   assert (orig_parsed != NULL);
612
613   new_parsed = url_parse (redirected, NULL);
614   assert (new_parsed != NULL);
615
616   upos = xnew0 (struct urlpos);
617   upos->url = new_parsed;
618
619   success = download_child_p (upos, orig_parsed, depth,
620                               start_url_parsed, blacklist);
621
622   url_free (orig_parsed);
623   url_free (new_parsed);
624   xfree (upos);
625
626   if (!success)
627     DEBUGP (("Redirection \"%s\" failed the test.\n", redirected));
628
629   return success;
630 }