tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 286d02995ff593cad9414e6755a94221171d9854
parent 76e9de7c6d1a22d89053dd4fa8671d5696c52634
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed, 13 Jun 2018 09:58:05 -0400

Merge branch 'maint-0.3.3'

Diffstat:
Achanges/bug26158 | 5+++++
Msrc/or/circuitbuild.c | 1+
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/changes/bug26158 b/changes/bug26158 @@ -0,0 +1,5 @@ + o Minor bugfixes (relay): + - Relays now correctly block attempts to re-extend to the previous + relay by Ed25519 identity. Previously they would warn in this case, + but not actually reject the attempt. Fixes bug 26158; bugfix on + 0.3.0.1-alpha. diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c @@ -1264,6 +1264,7 @@ circuit_extend(cell_t *cell, circuit_t *circ) log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Client asked me to extend back to the previous hop " "(by Ed25519 ID)."); + return -1; } n_chan = channel_get_for_extend((const char*)ec.node_id,