aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-13 09:58:04 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-13 09:58:04 -0400
commit34ea50b32a189d22df535ba283a1d404a263780b (patch)
treed6addf0f2d953fa6f38ef0dd5d87116ba3fe4d79
parent03461d5d401d9d9ddfaabd6f09648d4338460449 (diff)
parent94f3007627f4161ca4f1fb5e41f11cc8ff78ca2b (diff)
downloadtor-34ea50b32a189d22df535ba283a1d404a263780b.tar.gz
tor-34ea50b32a189d22df535ba283a1d404a263780b.zip
Merge branch 'maint-0.3.1' into release-0.3.1
-rw-r--r--changes/bug261585
-rw-r--r--src/or/circuitbuild.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/changes/bug26158 b/changes/bug26158
new file mode 100644
index 0000000000..5ae1c30600
--- /dev/null
+++ 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
index 16cef0e56b..41ae51a3f2 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -1267,6 +1267,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,