Blame SOURCES/kvm-io-return-0-for-EOF-in-TLS-session-read-after-shutdo.patch

7711c0
From d3244c405b0968db4629855567c3a2c7729bea36 Mon Sep 17 00:00:00 2001
7711c0
From: John Snow <jsnow@redhat.com>
7711c0
Date: Fri, 22 Mar 2019 03:22:31 +0100
7711c0
Subject: [PATCH 064/163] io: return 0 for EOF in TLS session read after
7711c0
 shutdown
7711c0
MIME-Version: 1.0
7711c0
Content-Type: text/plain; charset=UTF-8
7711c0
Content-Transfer-Encoding: 8bit
7711c0
7711c0
RH-Author: John Snow <jsnow@redhat.com>
7711c0
Message-id: <20190322032241.8111-19-jsnow@redhat.com>
7711c0
Patchwork-id: 85099
7711c0
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH 18/28] io: return 0 for EOF in TLS session read after shutdown
7711c0
Bugzilla: 1691563
7711c0
RH-Acked-by: Max Reitz <mreitz@redhat.com>
7711c0
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
7711c0
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
7711c0
7711c0
From: Daniel P. Berrangé <berrange@redhat.com>
7711c0
7711c0
GNUTLS takes a paranoid approach when seeing 0 bytes returned by the
7711c0
underlying OS read() function. It will consider this an error and
7711c0
return GNUTLS_E_PREMATURE_TERMINATION instead of propagating the 0
7711c0
return value. It expects apps to arrange for clean termination at
7711c0
the protocol level and not rely on seeing EOF from a read call to
7711c0
detect shutdown. This is to harden apps against a malicious 3rd party
7711c0
causing termination of the sockets layer.
7711c0
7711c0
This is unhelpful for the QEMU NBD code which does have a clean
7711c0
protocol level shutdown, but still relies on seeing 0 from the I/O
7711c0
channel read in the coroutine handling incoming replies.
7711c0
7711c0
The upshot is that when using a plain NBD connection shutdown is
7711c0
silent, but when using TLS, the client spams the console with
7711c0
7711c0
  Cannot read from TLS channel: Broken pipe
7711c0
7711c0
The NBD connection has, however, called qio_channel_shutdown()
7711c0
at this point to indicate that it is done with I/O. This gives
7711c0
the opportunity to optimize the code such that when the channel
7711c0
has been shutdown in the read direction, the error code
7711c0
GNUTLS_E_PREMATURE_TERMINATION gets turned into a '0' return
7711c0
instead of an error.
7711c0
7711c0
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
7711c0
Message-Id: <20181119134228.11031-1-berrange@redhat.com>
7711c0
Reviewed-by: Eric Blake <eblake@redhat.com>
7711c0
Signed-off-by: Eric Blake <eblake@redhat.com>
7711c0
(cherry picked from commit a2458b6f6998c9a079f710ed7495d5c6f037e942)
7711c0
Signed-off-by: John Snow <jsnow@redhat.com>
7711c0
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
7711c0
---
7711c0
 crypto/tlssession.c      | 3 +++
7711c0
 include/io/channel-tls.h | 1 +
7711c0
 include/io/channel.h     | 6 +++---
7711c0
 io/channel-tls.c         | 5 +++++
7711c0
 4 files changed, 12 insertions(+), 3 deletions(-)
7711c0
7711c0
diff --git a/crypto/tlssession.c b/crypto/tlssession.c
7711c0
index 96a02de..68e0114 100644
7711c0
--- a/crypto/tlssession.c
7711c0
+++ b/crypto/tlssession.c
7711c0
@@ -427,6 +427,9 @@ qcrypto_tls_session_read(QCryptoTLSSession *session,
7711c0
         case GNUTLS_E_INTERRUPTED:
7711c0
             errno = EINTR;
7711c0
             break;
7711c0
+        case GNUTLS_E_PREMATURE_TERMINATION:
7711c0
+            errno = ECONNABORTED;
7711c0
+            break;
7711c0
         default:
7711c0
             errno = EIO;
7711c0
             break;
7711c0
diff --git a/include/io/channel-tls.h b/include/io/channel-tls.h
7711c0
index 87fcaf9..fdbdf12 100644
7711c0
--- a/include/io/channel-tls.h
7711c0
+++ b/include/io/channel-tls.h
7711c0
@@ -48,6 +48,7 @@ struct QIOChannelTLS {
7711c0
     QIOChannel parent;
7711c0
     QIOChannel *master;
7711c0
     QCryptoTLSSession *session;
7711c0
+    QIOChannelShutdown shutdown;
7711c0
 };
7711c0
 
7711c0
 /**
7711c0
diff --git a/include/io/channel.h b/include/io/channel.h
7711c0
index e8cdadb..da2f138 100644
7711c0
--- a/include/io/channel.h
7711c0
+++ b/include/io/channel.h
7711c0
@@ -51,9 +51,9 @@ enum QIOChannelFeature {
7711c0
 typedef enum QIOChannelShutdown QIOChannelShutdown;
7711c0
 
7711c0
 enum QIOChannelShutdown {
7711c0
-    QIO_CHANNEL_SHUTDOWN_BOTH,
7711c0
-    QIO_CHANNEL_SHUTDOWN_READ,
7711c0
-    QIO_CHANNEL_SHUTDOWN_WRITE,
7711c0
+    QIO_CHANNEL_SHUTDOWN_READ = 1,
7711c0
+    QIO_CHANNEL_SHUTDOWN_WRITE = 2,
7711c0
+    QIO_CHANNEL_SHUTDOWN_BOTH = 3,
7711c0
 };
7711c0
 
7711c0
 typedef gboolean (*QIOChannelFunc)(QIOChannel *ioc,
7711c0
diff --git a/io/channel-tls.c b/io/channel-tls.c
7711c0
index 9628e6f..c98ead2 100644
7711c0
--- a/io/channel-tls.c
7711c0
+++ b/io/channel-tls.c
7711c0
@@ -275,6 +275,9 @@ static ssize_t qio_channel_tls_readv(QIOChannel *ioc,
7711c0
                 } else {
7711c0
                     return QIO_CHANNEL_ERR_BLOCK;
7711c0
                 }
7711c0
+            } else if (errno == ECONNABORTED &&
7711c0
+                       (tioc->shutdown & QIO_CHANNEL_SHUTDOWN_READ)) {
7711c0
+                return 0;
7711c0
             }
7711c0
 
7711c0
             error_setg_errno(errp, errno,
7711c0
@@ -357,6 +360,8 @@ static int qio_channel_tls_shutdown(QIOChannel *ioc,
7711c0
 {
7711c0
     QIOChannelTLS *tioc = QIO_CHANNEL_TLS(ioc);
7711c0
 
7711c0
+    tioc->shutdown |= how;
7711c0
+
7711c0
     return qio_channel_shutdown(tioc->master, how, errp);
7711c0
 }
7711c0
 
7711c0
-- 
7711c0
1.8.3.1
7711c0