aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/connection_edge.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2021-10-04 14:36:05 -0400
committerDavid Goulet <dgoulet@torproject.org>2021-10-06 13:22:02 -0400
commit602dcd8e3774b09242787ba3b0f0e0599530638a (patch)
tree6d1d03e1005734b1d6ad1dac720230b46d14a7a0 /src/core/or/connection_edge.c
parentf728e09ebe611d6858e721eaa37637025bfbf259 (diff)
downloadtor-602dcd8e3774b09242787ba3b0f0e0599530638a.tar.gz
tor-602dcd8e3774b09242787ba3b0f0e0599530638a.zip
hs-v2: Only log once the connection warning to v2
Closes #40474 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/core/or/connection_edge.c')
-rw-r--r--src/core/or/connection_edge.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/core/or/connection_edge.c b/src/core/or/connection_edge.c
index 6f6f22a0d4..d3979b3a7e 100644
--- a/src/core/or/connection_edge.c
+++ b/src/core/or/connection_edge.c
@@ -2530,10 +2530,15 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
/* We don't support v2 onions anymore. Log a warning and bail. */
if (addresstype == ONION_V2_HOSTNAME) {
- log_warn(LD_PROTOCOL, "Tried to connect to a v2 onion address, but this "
- "version of Tor no longer supports them. Please encourage the "
- "site operator to upgrade. For more information see "
- "https://blog.torproject.org/v2-deprecation-timeline.");
+ static bool log_once = false;
+ if (!log_once) {
+ log_warn(LD_PROTOCOL, "Tried to connect to a v2 onion address, but "
+ "this version of Tor no longer supports them. Please "
+ "encourage the site operator to upgrade. For more "
+ "information see "
+ "https://blog.torproject.org/v2-deprecation-timeline.");
+ log_once = true;
+ }
control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
escaped(socks->address));
/* Send back the 0xF6 extended code indicating a bad hostname. This is