GnuTLS: in server, detect TCP RST from client after QUIT under SSL,
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 25 Jul 2020 22:58:32 +0000 (23:58 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 25 Jul 2020 23:00:43 +0000 (00:00 +0100)
and log different message (under new log_selector)

doc/doc-txt/experimental-spec.txt
src/src/tls-gnu.c

index e4a9301c312bf424f2cde3db4d79452cf6abd117..47cd93f3d94f4c9330119047521487b276380144 100644 (file)
@@ -672,7 +672,7 @@ Logging protocol unusual states
 An extra log_selector, "protocol_detail" has been added in the default build.
 The name may change in future, hence the Experimenal status.
 
-Currrently the only effect is to enable logging, under OpenSSL,
+Currrently the only effect is to enable logging, under TLS,
 of a TCP RST received directly after a QUIT (in server mode).
 
 Outlook is consistently doing this; not waiting for the SMTP response
index 6308f10df4d00bb29ef55b0f88c8365a200dbe3d..013d9c0e86ffa46df91f41125826afbac027ea49 100644 (file)
@@ -429,9 +429,7 @@ msg = rc == GNUTLS_E_FATAL_ALERT_RECEIVED
       US gnutls_alert_get_name(gnutls_alert_get(state->session)))
 #ifdef GNUTLS_E_PREMATURE_TERMINATION
   : rc == GNUTLS_E_PREMATURE_TERMINATION && errno
-  ? errno == ECONNRESET                /* Outlook does this to us right after sending us QUIT */
-  ? string_sprintf("syscall: %s", strerror(errno))
-  : string_sprintf("%s: syscall: %s", US gnutls_strerror(rc), strerror(errno))
+  ? string_sprintf("%s: syscall: %s", US gnutls_strerror(rc), strerror(errno))
 #endif
   : US gnutls_strerror(rc);
 
@@ -3396,8 +3394,24 @@ while (left > 0)
 
   if (outbytes < 0)
     {
-    DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
-    record_io_error(state, outbytes, US"send", NULL);
+#ifdef GNUTLS_E_PREMATURE_TERMINATION
+    if (  outbytes == GNUTLS_E_PREMATURE_TERMINATION && errno == ECONNRESET
+       && !ct_ctx && f.smtp_in_quit
+       )
+      {                                        /* Outlook, dammit */
+      if (LOGGING(protocol_detail))
+       log_write(0, LOG_MAIN, "[%s] after QUIT, client reset TCP before"
+         " SMTP response and TLS close\n", sender_host_address);
+      else
+       DEBUG(D_tls) debug_printf("[%s] SSL_write: after QUIT,"
+         " client reset TCP before TLS close\n", sender_host_address);
+      }
+    else
+#endif
+      {
+      DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
+      record_io_error(state, outbytes, US"send", NULL);
+      }
     return -1;
     }
   if (outbytes == 0)