]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Refetch an HS's desc if we don't have a usable one
authorRobert Ransom <rransom.8774@gmail.com>
Thu, 29 Sep 2011 03:00:24 +0000 (20:00 -0700)
committerRobert Ransom <rransom.8774@gmail.com>
Sun, 2 Oct 2011 19:42:19 +0000 (12:42 -0700)
Previously, we wouldn't refetch an HS's descriptor unless we didn't
have one at all.  That was equivalent to refetching iff we didn't have
a usable one, but the next commit will make us keep some non-usable HS
descriptors around in our cache.

Code bugfix on the release that introduced the v2 HS directory system,
because rend_client_refetch_v2_renddesc's documentation comment should
have described what it actually did, not what its behaviour happened
to be equivalent to; no behaviour change in this commit.

src/or/rendclient.c

index 533dfb8a970648fd7d8ba519d8274ec883a62080..773ac8d3ce6251f8489741ef90998e1cb825e5a3 100644 (file)
@@ -574,10 +574,11 @@ rend_client_refetch_v2_renddesc(const rend_data_t *rend_query)
         "service descriptor, but are not fetching service descriptors.");
     return;
   }
-  /* Before fetching, check if we already have the descriptor here. */
-  if (rend_cache_lookup_entry(rend_query->onion_address, -1, &e) > 0) {
+  /* Before fetching, check if we already have a usable descriptor here. */
+  if (rend_cache_lookup_entry(rend_query->onion_address, -1, &e) > 0 &&
+      rend_client_any_intro_points_usable(e)) {
     log_info(LD_REND, "We would fetch a v2 rendezvous descriptor, but we "
-                      "already have that descriptor here. Not fetching.");
+                      "already have a usable descriptor here. Not fetching.");
     return;
   }
   log_debug(LD_REND, "Fetching v2 rendezvous descriptor for service %s",