[tor-commits] [tor/master] Escape the PT K/V data before sending it to the logger.

nickm at torproject.org nickm at torproject.org
Thu Dec 20 21:42:40 UTC 2018


commit ab0d7d2dd470a447535eaf7c35bd4877c43bce26
Author: Alexander Færøy <ahf at torproject.org>
Date:   Thu Dec 20 19:05:08 2018 +0100

    Escape the PT K/V data before sending it to the logger.
    
    See: https://bugs.torproject.org/28846
---
 src/feature/client/transports.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/feature/client/transports.c b/src/feature/client/transports.c
index 45dbd0c88..8a8bcd9f7 100644
--- a/src/feature/client/transports.c
+++ b/src/feature/client/transports.c
@@ -1175,14 +1175,14 @@ parse_log_line(const char *line, managed_proxy_t *mp)
   /* Check if we got a message. */
   if (! message) {
     log_warn(LD_PT, "Managed proxy \"%s\" wrote a LOG line without "
-                    "MESSAGE: %s", mp->argv[0], data);
+                    "MESSAGE: %s", mp->argv[0], escaped(data));
     goto done;
   }
 
   /* Check if severity is there and whether it's valid. */
   if (! severity) {
     log_warn(LD_PT, "Managed proxy \"%s\" wrote a LOG line without "
-                    "SEVERITY: %s", mp->argv[0], data);
+                    "SEVERITY: %s", mp->argv[0], escaped(data));
     goto done;
   }
 
@@ -1232,7 +1232,7 @@ parse_status_line(const char *line, managed_proxy_t *mp)
 
   if (! values) {
     log_warn(LD_PT, "Managed proxy \"%s\" wrote an invalid "
-             "STATUS message: %s", mp->argv[0], data);
+             "STATUS message: %s", mp->argv[0], escaped(data));
     goto done;
   }
 
@@ -1242,7 +1242,7 @@ parse_status_line(const char *line, managed_proxy_t *mp)
 
   if (! type) {
     log_warn(LD_PT, "Managed proxy \"%s\" wrote a STATUS line without "
-                    "TYPE: %s", mp->argv[0], data);
+                    "TYPE: %s", mp->argv[0], escaped(data));
     goto done;
   }
 





More information about the tor-commits mailing list