aboutsummaryrefslogtreecommitdiff
path: root/src/or/relay.c
diff options
context:
space:
mode:
authorAndrea Shepard <andrea@torproject.org>2013-06-13 20:41:00 -0700
committerAndrea Shepard <andrea@torproject.org>2013-06-13 21:39:04 -0700
commit4cce58d3c22c65350fffb3c4bc4dccd73e0193d7 (patch)
tree01764f77d0a2b27397ce91da3acc089493ef296c /src/or/relay.c
parent4835faebf533f93eb390649dfcb5c8cc0289e3d3 (diff)
downloadtor-4cce58d3c22c65350fffb3c4bc4dccd73e0193d7.tar
tor-4cce58d3c22c65350fffb3c4bc4dccd73e0193d7.tar.gz
Don't queue more cells as a middle relay than the spec allows to be in flight
Diffstat (limited to 'src/or/relay.c')
-rw-r--r--src/or/relay.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c
index a17c33331..087459c5c 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -2532,8 +2532,10 @@ append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn,
cell_t *cell, cell_direction_t direction,
streamid_t fromstream)
{
+ or_circuit_t *orcirc = NULL;
cell_queue_t *queue;
int streams_blocked;
+
if (circ->marked_for_close)
return;
@@ -2541,11 +2543,30 @@ append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn,
queue = &circ->n_conn_cells;
streams_blocked = circ->streams_blocked_on_n_conn;
} else {
- or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
+ orcirc = TO_OR_CIRCUIT(circ);
queue = &orcirc->p_conn_cells;
streams_blocked = circ->streams_blocked_on_p_conn;
}
+ /* Are we a middle circuit about to exceed ORCIRC_MAX_MIDDLE_CELLS? */
+ if ((circ->n_conn != NULL) && CIRCUIT_IS_ORCIRC(circ)) {
+ orcirc = TO_OR_CIRCUIT(circ);
+ if (orcirc->p_conn) {
+ if (queue->n + 1 >= ORCIRC_MAX_MIDDLE_CELLS) {
+ /* Queueing this cell would put queue over the cap */
+ log_warn(LD_CIRC,
+ "Got a cell exceeding the cap of %u in the %s direction "
+ "on middle circ ID %u; killing the circuit.",
+ ORCIRC_MAX_MIDDLE_CELLS,
+ (direction == CELL_DIRECTION_OUT) ? "n" : "p",
+ (direction == CELL_DIRECTION_OUT) ?
+ circ->n_circ_id : orcirc->p_circ_id);
+ circuit_mark_for_close(circ, END_CIRC_REASON_RESOURCELIMIT);
+ return;
+ }
+ }
+ }
+
cell_queue_append_packed_copy(queue, cell);
/* If we have too many cells on the circuit, we should stop reading from