aboutsummaryrefslogtreecommitdiff
path: root/src/common/sandbox.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-09-29 13:02:50 -0400
committerNick Mathewson <nickm@torproject.org>2014-09-29 13:02:50 -0400
commit2e607ff51931b35ee531fa60b83487b3f4f944a7 (patch)
tree005f66b245b8afadf2106dff94491610bfb81473 /src/common/sandbox.c
parenta0be2f1350bf4974a9655421c3b30ba87a7b2279 (diff)
parente1a25f0c3602e007872277ef9ab437cc97cfd47b (diff)
downloadtor-2e607ff51931b35ee531fa60b83487b3f4f944a7.tar.gz
tor-2e607ff51931b35ee531fa60b83487b3f4f944a7.zip
Merge remote-tracking branch 'origin/maint-0.2.5'
Diffstat (limited to 'src/common/sandbox.c')
-rw-r--r--src/common/sandbox.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c
index c7e4dcdf55..36022c921c 100644
--- a/src/common/sandbox.c
+++ b/src/common/sandbox.c
@@ -1297,6 +1297,18 @@ HT_GENERATE2(getaddrinfo_cache, cached_getaddrinfo_item_t, node,
cached_getaddrinfo_items_eq,
0.6, tor_reallocarray_, tor_free_)
+/** If true, don't try to cache getaddrinfo results. */
+static int sandbox_getaddrinfo_cache_disabled = 0;
+
+/** Tell the sandbox layer not to try to cache getaddrinfo results. Used as in
+ * tor-resolve, when we have no intention of initializing crypto or of
+ * installing the sandbox.*/
+void
+sandbox_disable_getaddrinfo_cache(void)
+{
+ sandbox_getaddrinfo_cache_disabled = 1;
+}
+
int
sandbox_getaddrinfo(const char *name, const char *servname,
const struct addrinfo *hints,
@@ -1305,6 +1317,10 @@ sandbox_getaddrinfo(const char *name, const char *servname,
int err;
struct cached_getaddrinfo_item_t search, *item;
+ if (sandbox_getaddrinfo_cache_disabled) {
+ return getaddrinfo(name, NULL, hints, res);
+ }
+
if (servname != NULL) {
log_warn(LD_BUG, "called with non-NULL servname");
return EAI_NONAME;
@@ -1718,5 +1734,10 @@ sandbox_is_active(void)
{
return 0;
}
+
+void
+sandbox_disable_getaddrinfo_cache(void)
+{
+}
#endif