diff options
author | David Goulet <dgoulet@torproject.org> | 2022-08-02 15:49:03 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-08-02 15:53:31 -0400 |
commit | 6fcae8e0d080d7d0875eab4a0118e8fdaf5e832c (patch) | |
tree | b3f5ea3aae7a4f75b4b1b0f474abb806fd73db3a /src/core | |
parent | 691e542fd520edb8a1371eb42fa7b11b296616b9 (diff) | |
download | tor-6fcae8e0d080d7d0875eab4a0118e8fdaf5e832c.tar.gz tor-6fcae8e0d080d7d0875eab4a0118e8fdaf5e832c.zip |
relay: Don't send DESTROY remote reason backward or forward
Fixes #40649
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/command.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/core/or/command.c b/src/core/or/command.c index 65853f7844..a8b93dc9a0 100644 --- a/src/core/or/command.c +++ b/src/core/or/command.c @@ -629,9 +629,11 @@ command_process_destroy_cell(cell_t *cell, channel_t *chan) if (!CIRCUIT_IS_ORIGIN(circ) && chan == TO_OR_CIRCUIT(circ)->p_chan && cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id) { - /* the destroy came from behind */ + /* The destroy came from behind so nullify its p_chan. Close the circuit + * with a DESTROYED reason so we don't propagate along the path forward the + * reason which could be used as a side channel. */ circuit_set_p_circid_chan(TO_OR_CIRCUIT(circ), 0, NULL); - circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE); + circuit_mark_for_close(circ, END_CIRC_REASON_DESTROYED); } else { /* the destroy came from ahead */ circuit_set_n_circid_chan(circ, 0, NULL); if (CIRCUIT_IS_ORIGIN(circ)) { @@ -639,9 +641,10 @@ command_process_destroy_cell(cell_t *cell, channel_t *chan) } else { /* Close the circuit so we stop queuing cells for it and propagate the * DESTROY cell down the circuit so relays can stop queuing in-flight - * cells for this circuit which helps with memory pressure. */ + * cells for this circuit which helps with memory pressure. We do NOT + * propagate the remote reason so not to create a side channel. */ log_debug(LD_OR, "Received DESTROY cell from n_chan, closing circuit."); - circuit_mark_for_close(circ, reason | END_CIRC_REASON_FLAG_REMOTE); + circuit_mark_for_close(circ, END_CIRC_REASON_DESTROYED); } } } |