aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-04-18 13:04:37 -0400
committerNick Mathewson <nickm@torproject.org>2014-04-18 13:04:37 -0400
commit47a0c10728712cbfa3683f218b9379299b968636 (patch)
tree11c95a36baa81647c024fed840da69096860ba62 /src/or
parentbd169aa9a512857fe95fa0cbe44e4e6dbc2c800f (diff)
downloadtor-47a0c10728712cbfa3683f218b9379299b968636.tar
tor-47a0c10728712cbfa3683f218b9379299b968636.tar.gz
Diagnostic warning to see if it's pending destroys causing 11553
Diffstat (limited to 'src/or')
-rw-r--r--src/or/circuitbuild.c16
-rw-r--r--src/or/circuitlist.c14
2 files changed, 24 insertions, 6 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index e1d57ad6e..e4e811529 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -88,7 +88,8 @@ static circid_t
get_unique_circ_id_by_chan(channel_t *chan)
{
#define MAX_CIRCID_ATTEMPTS 64
-
+ int in_use;
+ unsigned n_with_circ = 0, n_pending_destroy = 0;
circid_t test_circ_id;
circid_t attempts=0;
circid_t high_bit, max_range, mask;
@@ -126,9 +127,12 @@ get_unique_circ_id_by_chan(channel_t *chan)
chan->warned_circ_ids_exhausted = 1;
log_warn(LD_CIRC,"No unused circIDs found on channel %s wide "
"circID support, with %u inbound and %u outbound circuits. "
+ "Found %u circuit IDs in use by circuits, and %u with "
+ "pending destroy cells."
"Failing a circuit.",
chan->wide_circ_ids ? "with" : "without",
- chan->num_p_circuits, chan->num_n_circuits);
+ chan->num_p_circuits, chan->num_n_circuits,
+ n_with_circ, n_pending_destroy);
}
return 0;
}
@@ -136,7 +140,13 @@ get_unique_circ_id_by_chan(channel_t *chan)
crypto_rand((char*) &test_circ_id, sizeof(test_circ_id));
test_circ_id &= mask;
test_circ_id |= high_bit;
- } while (circuit_id_in_use_on_channel(test_circ_id, chan));
+
+ in_use = circuit_id_in_use_on_channel(test_circ_id, chan);
+ if (in_use == 1)
+ ++n_with_circ;
+ else if (in_use == 2)
+ ++n_pending_destroy;
+ } while (in_use);
return test_circ_id;
}
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index b71dc3c13..8a8fc8b4e 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -1065,13 +1065,21 @@ circuit_get_by_circid_channel_even_if_marked(circid_t circ_id,
}
/** Return true iff the circuit ID <b>circ_id</b> is currently used by a
- * circuit, marked or not, on <b>chan</b>. */
+ * circuit, marked or not, on <b>chan</b>, or if the circ ID is reserved until
+ * a queued destroy cell can be sent.
+ *
+ * (Return 1 if the circuit is present, marked or not; Return 2
+ * if the circuit ID is pending a destroy.)
+ **/
int
circuit_id_in_use_on_channel(circid_t circ_id, channel_t *chan)
{
int found = 0;
- return circuit_get_by_circid_channel_impl(circ_id, chan, &found) != NULL
- || found;
+ if (circuit_get_by_circid_channel_impl(circ_id, chan, &found) != NULL)
+ return 1;
+ if (found)
+ return 2;
+ return 0;
}
/** Return the circuit that a given edge connection is using. */