summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-08-29 16:44:50 -0400
committerNick Mathewson <nickm@torproject.org>2014-08-29 16:44:50 -0400
commit41058dce95b4e94c10b156728524d24d69620ed0 (patch)
tree6462c685a07a1e5dbb67df51c4f31956c3e335d0
parent4a6f5bb2dda188ed1d1a80455bf9c9b0b3f00066 (diff)
parent7a878c192f5000c5ef5d29a71924a41b6e5adf42 (diff)
downloadtor-41058dce95b4e94c10b156728524d24d69620ed0.tar.gz
tor-41058dce95b4e94c10b156728524d24d69620ed0.zip
Merge remote-tracking branch 'arma/bug12996b' into maint-0.2.5
-rw-r--r--changes/bug129965
-rw-r--r--src/or/onion_tap.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/changes/bug12996 b/changes/bug12996
new file mode 100644
index 0000000000..4b4fb0dceb
--- /dev/null
+++ b/changes/bug12996
@@ -0,0 +1,5 @@
+ o Minor bugfixes:
+ - Downgrade "Unexpected onionskin length after decryption" warning
+ to a protocol-warn, since there's nothing relay operators can do
+ about a client that sends them a malformed create cell. Resolves
+ bug 12996; bugfix on 0.0.6rc1.
diff --git a/src/or/onion_tap.c b/src/or/onion_tap.c
index 9a9f374b93..65f8275f75 100644
--- a/src/or/onion_tap.c
+++ b/src/or/onion_tap.c
@@ -122,8 +122,9 @@ onion_skin_TAP_server_handshake(
"Couldn't decrypt onionskin: client may be using old onion key");
goto err;
} else if (len != DH_KEY_LEN) {
- log_warn(LD_PROTOCOL, "Unexpected onionskin length after decryption: %ld",
- (long)len);
+ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
+ "Unexpected onionskin length after decryption: %ld",
+ (long)len);
goto err;
}