]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Allow directories in small networks to bootstrap
authorteor (Tim Wilson-Brown) <teor2345@gmail.com>
Mon, 9 May 2016 18:29:07 +0000 (14:29 -0400)
committerteor (Tim Wilson-Brown) <teor2345@gmail.com>
Mon, 9 May 2016 18:29:07 +0000 (14:29 -0400)
Skip DirPort checks when the consensus has no exits.

Resolves #19003, bugfix on #18050 in 0.2.8.1-alpha.

changes/bug19003 [new file with mode: 0644]
src/or/router.c

diff --git a/changes/bug19003 b/changes/bug19003
new file mode 100644 (file)
index 0000000..d9ef23d
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor bugfixes (small networks):
+    - Allow directories in small networks to bootstrap by
+      skipping DirPort checks when the consensus has no exits.
+      Resolves #19003, bugfix on #18050 in 0.2.8.1-alpha.
+      Patch by teor.
index 68bcf1326ef13f5c309b098e0113800ae7ebd2ce..dd8421094dd58e743a058445b18df0861837f596 100644 (file)
@@ -1551,6 +1551,8 @@ proxy_mode(const or_options_t *options)
  * and
  * - We believe both our ORPort and DirPort (if present) are reachable from
  *   the outside; or
+ * - We believe both our ORPort is reachable from the outside, and we can't
+ *   check our DirPort because the consensus has no exits; or
  * - We are an authoritative directory server.
  */
 static int
@@ -1568,7 +1570,13 @@ decide_if_publishable_server(void)
     return 1;
   if (!router_get_advertised_or_port(options))
     return 0;
+  /* If there are no exits in the consensus, but have enough descriptors to
+   * build internal paths, we can't possibly verify our DirPort.
+   * This only happens in small networks without exits. */
+  if (router_have_consensus_path() == CONSENSUS_PATH_INTERNAL)
+    return check_whether_orport_reachable();
 
+  /* If there are exits in the consensus, use an exit to check our DirPort. */
   return check_whether_orport_reachable() && check_whether_dirport_reachable();
 }