Forráskód Böngészése

put in karsten's patch #1 for proposal 155, modified

svn:r17106
Roger Dingledine 16 éve
szülő
commit
4520500cde

+ 2 - 0
ChangeLog

@@ -3,6 +3,8 @@ Changes in version 0.2.1.7-alpha - 2008-10-xx
     - Now NodeFamily and MyFamily config options allow spaces in
     - Now NodeFamily and MyFamily config options allow spaces in
       identity fingerprints, so it's easier to paste them in.
       identity fingerprints, so it's easier to paste them in.
       Suggested by Lucky Green.
       Suggested by Lucky Green.
+    - Reduce extension timeout for introduction circuits from 60 to 30
+      seconds.
 
 
   o Minor bugfixes:
   o Minor bugfixes:
     - Minor fix in the warning messages when you're having problems
     - Minor fix in the warning messages when you're having problems

+ 1 - 1
doc/spec/proposals/155-four-hidden-service-improvements.txt

@@ -18,7 +18,7 @@ Overview:
   in the network as well as connection establishment time. Some of these
   in the network as well as connection establishment time. Some of these
   design changes have side-effects on anonymity or overall network load
   design changes have side-effects on anonymity or overall network load
   which had to be weighed up against individual performance gains. A
   which had to be weighed up against individual performance gains. A
-  discussion of seven possible design changes [2] has lead to a selection
+  discussion of seven possible design changes [2] has led to a selection
   of four changes [3] that are proposed to be implemented here.
   of four changes [3] that are proposed to be implemented here.
 
 
 Design:
 Design:

+ 17 - 5
src/or/circuituse.c

@@ -251,11 +251,13 @@ void
 circuit_expire_building(time_t now)
 circuit_expire_building(time_t now)
 {
 {
   circuit_t *victim, *circ = global_circuitlist;
   circuit_t *victim, *circ = global_circuitlist;
-  time_t cutoff = now - get_options()->CircuitBuildTimeout;
+  time_t general_cutoff = now - get_options()->CircuitBuildTimeout;
-  time_t begindir_cutoff = now - get_options()->CircuitBuildTimeout/2;
+  time_t begindir_cutoff = general_cutoff/2;
+  time_t introcirc_cutoff = general_cutoff/2;
   cpath_build_state_t *build_state;
   cpath_build_state_t *build_state;
 
 
   while (circ) {
   while (circ) {
+    time_t cutoff;
     victim = circ;
     victim = circ;
     circ = circ->next;
     circ = circ->next;
     if (!CIRCUIT_IS_ORIGIN(victim) || /* didn't originate here */
     if (!CIRCUIT_IS_ORIGIN(victim) || /* didn't originate here */
@@ -263,13 +265,23 @@ circuit_expire_building(time_t now)
       continue;
       continue;
 
 
     build_state = TO_ORIGIN_CIRCUIT(victim)->build_state;
     build_state = TO_ORIGIN_CIRCUIT(victim)->build_state;
-    if (victim->timestamp_created >
+    if (build_state && build_state->onehop_tunnel)
-        ((build_state && build_state->onehop_tunnel) ?
+      cutoff = begindir_cutoff;
-         begindir_cutoff : cutoff))
+    else if (victim->purpose == CIRCUIT_PURPOSE_C_INTRODUCING)
+      cutoff = introcirc_cutoff;
+    else
+      cutoff = general_cutoff;
+    if (victim->timestamp_created > cutoff)
       continue; /* it's still young, leave it alone */
       continue; /* it's still young, leave it alone */
 
 
 #if 0
 #if 0
     /* some debug logs, to help track bugs */
     /* some debug logs, to help track bugs */
+    if (victim->purpose == CIRCUIT_PURPOSE_C_INTRODUCING &&
+        victim->timestamp_created <= introcirc_cutoff &&
+        victim->timestamp_created > general_cutoff)
+      log_info(LD_REND|LD_CIRC, "Timing out introduction circuit which we "
+               "would not have done if it had been a general circuit.");
+
     if (victim->purpose >= CIRCUIT_PURPOSE_C_INTRODUCING &&
     if (victim->purpose >= CIRCUIT_PURPOSE_C_INTRODUCING &&
         victim->purpose <= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED) {
         victim->purpose <= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED) {
       if (!victim->timestamp_dirty)
       if (!victim->timestamp_dirty)