]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Restore 8093 log messages to WARN severity, but rate limit
authorNick Mathewson <nickm@torproject.org>
Tue, 21 May 2013 18:00:30 +0000 (14:00 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 21 May 2013 18:00:30 +0000 (14:00 -0400)
See #8093 for discussion

changes/bug8093.part2 [new file with mode: 0644]
src/or/relay.c

diff --git a/changes/bug8093.part2 b/changes/bug8093.part2
new file mode 100644 (file)
index 0000000..263c7e8
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor features:
+    - Return the "unexpected sendme" warnings to a warn severity, but make
+      them rate limited. Related to ticket #8093.
index d57ceaacf89242599c51b1190edc11faceabb912..cef138e72106a6b55a696c535ada625e841ac001 100644 (file)
@@ -1494,7 +1494,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
         if (layer_hint) {
           if (layer_hint->package_window + CIRCWINDOW_INCREMENT >
                 CIRCWINDOW_START_MAX) {
-            log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
+            static struct ratelim_t exit_warn_ratelim = RATELIM_INIT(600);
+            log_fn_ratelim(&exit_warn_ratelim, LOG_WARN, LD_PROTOCOL,
                    "Unexpected sendme cell from exit relay. "
                    "Closing circ.");
             return -END_CIRC_REASON_TORPROTOCOL;
@@ -1506,7 +1507,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
         } else {
           if (circ->package_window + CIRCWINDOW_INCREMENT >
                 CIRCWINDOW_START_MAX) {
-            log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
+            static struct ratelim_t client_warn_ratelim = RATELIM_INIT(600);
+            log_fn_ratelim(&client_warn_ratelim, LOG_WARN, LD_PROTOCOL,
                    "Unexpected sendme cell from client. "
                    "Closing circ (window %d).",
                    circ->package_window);