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