summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2009-06-13 12:21:58 +0200
committerKarsten Loesing <karsten.loesing@gmx.net>2009-06-13 12:21:58 +0200
commitca8708a9ce3f8e6a4b3aadf2e35edfd2b49c1a2d (patch)
tree2871249363fc9efba92d4f7f8fc4c238004a8003 /src/or
parent6a32beb8771d94dd35460ce391eeb4455f2ada3f (diff)
downloadtor-ca8708a9ce3f8e6a4b3aadf2e35edfd2b49c1a2d.tar.gz
tor-ca8708a9ce3f8e6a4b3aadf2e35edfd2b49c1a2d.zip
Fix more of bug 997.
Fix refetching of hidden service descriptors when all introduction points have turned out to not work.
Diffstat (limited to 'src/or')
-rw-r--r--src/or/rendclient.c7
-rw-r--r--src/or/rendcommon.c5
2 files changed, 8 insertions, 4 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c
index d9c0a9e713..00b77d8370 100644
--- a/src/or/rendclient.c
+++ b/src/or/rendclient.c
@@ -447,10 +447,9 @@ directory_get_from_hs_dir(const char *desc_id, const rend_data_t *rend_query)
return 1;
}
-/** Start a connection to a hidden service directory to fetch a v2
- * rendezvous service descriptor for the base32-encoded service ID
- * <b>query</b>.
- */
+/** Unless we already have a descriptor for <b>rend_query</b> with at least
+ * one (possibly) working introduction point in it, start a connection to a
+ * hidden service directory to fetch a v2 rendezvous service descriptor. */
void
rend_client_refetch_v2_renddesc(const rend_data_t *rend_query)
{
diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c
index c813c4959d..df7195e3ea 100644
--- a/src/or/rendcommon.c
+++ b/src/or/rendcommon.c
@@ -911,6 +911,11 @@ rend_cache_lookup_entry(const char *query, int version, rend_cache_entry_t **e)
}
if (!*e)
return 0;
+ tor_assert((*e)->parsed && (*e)->parsed->intro_nodes);
+ /* XXX022 hack for now, to return "not found" if there are no intro
+ * points remaining. See bug 997. */
+ if (smartlist_len((*e)->parsed->intro_nodes) == 0)
+ return 0;
return 1;
}