[tor-commits] [tor/release-0.2.4] Upgrade the warn for EntryNodes without UseEntryGuards to an error

arma at torproject.org arma at torproject.org
Thu Apr 11 05:29:51 UTC 2013


commit 686aaa5c4c95ebd2c3ddfe46a237014e2813a9e7
Author: Nick Mathewson <nickm at torproject.org>
Date:   Fri Mar 15 10:42:17 2013 -0400

    Upgrade the warn for EntryNodes without UseEntryGuards to an error
    
    fixes bug 8180
---
 changes/bug8180 |    7 +++++++
 src/or/config.c |    8 ++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/changes/bug8180 b/changes/bug8180
new file mode 100644
index 0000000..39e6ce7
--- /dev/null
+++ b/changes/bug8180
@@ -0,0 +1,7 @@
+  o Minor bugfixes (security usability):
+    - Elevate the severity of the warning message when setting
+      EntryNodes but disabling UseGuardNodes to an error. The outcome
+      of letting Tor procede with those options enabled (which causes
+      EntryNodes to get ignored) is sufficiently different from what
+      was expected that it's best to just refuse to proceed. Fixes bug
+      8180; bugfix on 0.2.3.11-alpha.
diff --git a/src/or/config.c b/src/or/config.c
index 90a5dfb..aa34f87 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2001 Matej Pfajfar.
+ /* Copyright (c) 2001 Matej Pfajfar.
  * Copyright (c) 2001-2004, Roger Dingledine.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2012, The Tor Project, Inc. */
@@ -3664,9 +3664,9 @@ options_validate(or_options_t *old_options, or_options_t *options,
   if (options->UseBridges && options->EntryNodes)
     REJECT("You cannot set both UseBridges and EntryNodes.");
 
-  if (options->EntryNodes && !options->UseEntryGuards)
-    log_warn(LD_CONFIG, "EntryNodes is set, but UseEntryGuards is disabled. "
-             "EntryNodes will be ignored.");
+  if (options->EntryNodes && !options->UseEntryGuards) {
+    REJECT("If EntryNodes is set, UseEntryGuards must be enabled.");
+  }
 
   options->_AllowInvalid = 0;
   if (options->AllowInvalidNodes) {





More information about the tor-commits mailing list