summaryrefslogtreecommitdiff
path: root/src/or/circuitmux.c
diff options
context:
space:
mode:
authorAndrea Shepard <andrea@torproject.org>2013-06-12 22:22:21 -0700
committerNick Mathewson <nickm@torproject.org>2013-06-13 10:14:36 -0400
commit16f9861b22751bc90666fe1836b8cf740630447a (patch)
tree52e5b129875e416891003dd6a0ca1f887e6a2ae3 /src/or/circuitmux.c
parent43d53e6d86acaf7555c31730a8230fa0cdf31306 (diff)
downloadtor-16f9861b22751bc90666fe1836b8cf740630447a.tar.gz
tor-16f9861b22751bc90666fe1836b8cf740630447a.zip
Add destroy balance tracking and logging to circuitmux
Diffstat (limited to 'src/or/circuitmux.c')
-rw-r--r--src/or/circuitmux.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/or/circuitmux.c b/src/or/circuitmux.c
index 198e518bd4..a6256f8049 100644
--- a/src/or/circuitmux.c
+++ b/src/or/circuitmux.c
@@ -127,6 +127,10 @@ struct circuitmux_s {
* cells completely.
*/
unsigned int last_cell_was_destroy : 1;
+ /** Destroy counter: increment this when a destroy gets queued, decrement
+ * when we unqueue it, so we can test to make sure they don't starve.
+ */
+ int64_t destroy_ctr;
/*
* Circuitmux policy; if this is non-NULL, it can override the built-
@@ -206,6 +210,11 @@ static void circuitmux_assert_okay_pass_one(circuitmux_t *cmux);
static void circuitmux_assert_okay_pass_two(circuitmux_t *cmux);
static void circuitmux_assert_okay_pass_three(circuitmux_t *cmux);
+/* Static global variables */
+
+/** Count the destroy balance to debug destroy queue logic */
+static int64_t global_destroy_ctr = 0;
+
/* Function definitions */
/**
@@ -521,6 +530,25 @@ circuitmux_free(circuitmux_t *cmux)
tor_free(cmux->chanid_circid_map);
}
+ /*
+ * We're throwing away some destroys; log the counter and
+ * adjust the global counter by the queue size.
+ */
+ if (cmux->destroy_cell_queue.n > 0) {
+ cmux->destroy_ctr -= cmux->destroy_cell_queue.n;
+ global_destroy_ctr -= cmux->destroy_cell_queue.n;
+ log_debug(LD_CIRC,
+ "Freeing cmux at %p with %u queued destroys; the last cmux "
+ "destroy balance was %ld, global is %ld\n",
+ cmux, cmux->destroy_cell_queue.n,
+ cmux->destroy_ctr, global_destroy_ctr);
+ } else {
+ log_debug(LD_CIRC,
+ "Freeing cmux at %p with no queued destroys, the cmux destroy "
+ "balance was %ld, global is %ld\n",
+ cmux, cmux->destroy_ctr, global_destroy_ctr);
+ }
+
cell_queue_clear(&cmux->destroy_cell_queue);
tor_free(cmux);
@@ -1502,6 +1530,24 @@ circuitmux_notify_xmit_cells(circuitmux_t *cmux, circuit_t *circ,
circuitmux_assert_okay_paranoid(cmux);
}
+/**
+ * Notify the circuitmux that a destroy was sent, so we can update
+ * the counter.
+ */
+
+void
+circuitmux_notify_xmit_destroy(circuitmux_t *cmux)
+{
+ tor_assert(cmux);
+
+ --(cmux->destroy_ctr);
+ --(global_destroy_ctr);
+ log_debug(LD_CIRC,
+ "Cmux at %p sent a destroy, cmux counter is now %ld, "
+ "global counter is now %ld\n",
+ cmux, cmux->destroy_ctr, global_destroy_ctr);
+}
+
/*
* Circuitmux consistency checking assertions
*/
@@ -1798,6 +1844,14 @@ circuitmux_append_destroy_cell(channel_t *chan,
cell_queue_append_packed_copy(&cmux->destroy_cell_queue, &cell,
chan->wide_circ_ids, 0);
+ /* Destroy entering the queue, update counters */
+ ++(cmux->destroy_ctr);
+ ++global_destroy_ctr;
+ log_debug(LD_CIRC,
+ "Cmux at %p queued a destroy for circ %u, "
+ "cmux counter is now %ld, global counter is now %ld\n",
+ cmux, circ_id, cmux->destroy_ctr, global_destroy_ctr);
+
/* XXXX Duplicate code from append_cell_to_circuit_queue */
if (!channel_has_queued_writes(chan)) {
/* There is no data at all waiting to be sent on the outbuf. Add a
@@ -1808,3 +1862,4 @@ circuitmux_append_destroy_cell(channel_t *chan,
channel_flush_from_first_active_circuit(chan, 1);
}
}
+