yeahuh / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
1072c8
From 512c7e92808dff66779f7421f1c17a081f18d7e6 Mon Sep 17 00:00:00 2001
1072c8
From: Laurent Vivier <lvivier@redhat.com>
1072c8
Date: Thu, 29 Jul 2021 04:56:46 -0400
1072c8
Subject: [PATCH 13/14] net: check if the file descriptor is valid before using
1072c8
 it
1072c8
MIME-Version: 1.0
1072c8
Content-Type: text/plain; charset=UTF-8
1072c8
Content-Transfer-Encoding: 8bit
1072c8
1072c8
RH-Author: Laurent Vivier <lvivier@redhat.com>
1072c8
Message-id: <20210726102337.6359-2-lvivier@redhat.com>
1072c8
Patchwork-id: 101924
1072c8
O-Subject: [RHEL-8.5.0 qemu-kvm PATCH 1/2] net: check if the file descriptor is valid before using it
1072c8
Bugzilla: 1982134
1072c8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
1072c8
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1072c8
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
1072c8
1072c8
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1982134
1072c8
BRANCH: rhel-8.5.0
1072c8
UPSTREAM: Merged
1072c8
BREW: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=38380653
1072c8
1072c8
qemu_set_nonblock() checks that the file descriptor can be used and, if
1072c8
not, crashes QEMU. An assert() is used for that. The use of assert() is
1072c8
used to detect programming error and the coredump will allow to debug
1072c8
the problem.
1072c8
1072c8
But in the case of the tap device, this assert() can be triggered by
1072c8
a misconfiguration by the user. At startup, it's not a real problem, but it
1072c8
can also happen during the hot-plug of a new device, and here it's a
1072c8
problem because we can crash a perfectly healthy system.
1072c8
1072c8
For instance:
1072c8
 # ip link add link virbr0 name macvtap0 type macvtap mode bridge
1072c8
 # ip link set macvtap0 up
1072c8
 # TAP=/dev/tap$(ip -o link show macvtap0 | cut -d: -f1)
1072c8
 # qemu-system-x86_64 -machine q35 -device pcie-root-port,id=pcie-root-port-0 -monitor stdio 9<> $TAP
1072c8
 (qemu) netdev_add type=tap,id=hostnet0,vhost=on,fd=9
1072c8
 (qemu) device_add driver=virtio-net-pci,netdev=hostnet0,id=net0,bus=pcie-root-port-0
1072c8
 (qemu) device_del net0
1072c8
 (qemu) netdev_del hostnet0
1072c8
 (qemu) netdev_add type=tap,id=hostnet1,vhost=on,fd=9
1072c8
 qemu-system-x86_64: .../util/oslib-posix.c:247: qemu_set_nonblock: Assertion `f != -1' failed.
1072c8
 Aborted (core dumped)
1072c8
1072c8
To avoid that, add a function, qemu_try_set_nonblock(), that allows to report the
1072c8
problem without crashing.
1072c8
1072c8
In the same way, we also update the function for vhostfd in net_init_tap_one() and
1072c8
for fd in net_init_socket() (both descriptors are provided by the user and can
1072c8
be wrong).
1072c8
1072c8
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
1072c8
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
1072c8
Signed-off-by: Jason Wang <jasowang@redhat.com>
1072c8
(cherry picked from commit 894022e616016fe81745753f14adfbd680a1c7ee)
1072c8
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
1072c8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1072c8
---
1072c8
 include/qemu/sockets.h |  1 +
1072c8
 net/socket.c           |  9 +++++--
1072c8
 net/tap.c              | 25 +++++++++++++++---
1072c8
 util/oslib-posix.c     | 26 +++++++++++++------
1072c8
 util/oslib-win32.c     | 57 ++++++++++++++++++++++++------------------
1072c8
 5 files changed, 79 insertions(+), 39 deletions(-)
1072c8
1072c8
diff --git a/include/qemu/sockets.h b/include/qemu/sockets.h
1072c8
index 57cd049d6e..7d1f813576 100644
1072c8
--- a/include/qemu/sockets.h
1072c8
+++ b/include/qemu/sockets.h
1072c8
@@ -18,6 +18,7 @@ int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen);
1072c8
 int socket_set_cork(int fd, int v);
1072c8
 int socket_set_nodelay(int fd);
1072c8
 void qemu_set_block(int fd);
1072c8
+int qemu_try_set_nonblock(int fd);
1072c8
 void qemu_set_nonblock(int fd);
1072c8
 int socket_set_fast_reuse(int fd);
1072c8
 
1072c8
diff --git a/net/socket.c b/net/socket.c
1072c8
index c92354049b..2d21fddd9c 100644
1072c8
--- a/net/socket.c
1072c8
+++ b/net/socket.c
1072c8
@@ -725,13 +725,18 @@ int net_init_socket(const Netdev *netdev, const char *name,
1072c8
     }
1072c8
 
1072c8
     if (sock->has_fd) {
1072c8
-        int fd;
1072c8
+        int fd, ret;
1072c8
 
1072c8
         fd = monitor_fd_param(cur_mon, sock->fd, errp);
1072c8
         if (fd == -1) {
1072c8
             return -1;
1072c8
         }
1072c8
-        qemu_set_nonblock(fd);
1072c8
+        ret = qemu_try_set_nonblock(fd);
1072c8
+        if (ret < 0) {
1072c8
+            error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
1072c8
+                             name, fd);
1072c8
+            return -1;
1072c8
+        }
1072c8
         if (!net_socket_fd_init(peer, "socket", name, fd, 1, sock->mcast,
1072c8
                                 errp)) {
1072c8
             return -1;
1072c8
diff --git a/net/tap.c b/net/tap.c
1072c8
index 6207f61f84..41a20102fd 100644
1072c8
--- a/net/tap.c
1072c8
+++ b/net/tap.c
1072c8
@@ -689,6 +689,8 @@ static void net_init_tap_one(const NetdevTapOptions *tap, NetClientState *peer,
1072c8
         }
1072c8
 
1072c8
         if (vhostfdname) {
1072c8
+            int ret;
1072c8
+
1072c8
             vhostfd = monitor_fd_param(cur_mon, vhostfdname, &err;;
1072c8
             if (vhostfd == -1) {
1072c8
                 if (tap->has_vhostforce && tap->vhostforce) {
1072c8
@@ -698,7 +700,12 @@ static void net_init_tap_one(const NetdevTapOptions *tap, NetClientState *peer,
1072c8
                 }
1072c8
                 return;
1072c8
             }
1072c8
-            qemu_set_nonblock(vhostfd);
1072c8
+            ret = qemu_try_set_nonblock(vhostfd);
1072c8
+            if (ret < 0) {
1072c8
+                error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
1072c8
+                                 name, fd);
1072c8
+                return;
1072c8
+            }
1072c8
         } else {
1072c8
             vhostfd = open("/dev/vhost-net", O_RDWR);
1072c8
             if (vhostfd < 0) {
1072c8
@@ -766,6 +773,7 @@ int net_init_tap(const Netdev *netdev, const char *name,
1072c8
     Error *err = NULL;
1072c8
     const char *vhostfdname;
1072c8
     char ifname[128];
1072c8
+    int ret = 0;
1072c8
 
1072c8
     assert(netdev->type == NET_CLIENT_DRIVER_TAP);
1072c8
     tap = &netdev->u.tap;
1072c8
@@ -795,7 +803,12 @@ int net_init_tap(const Netdev *netdev, const char *name,
1072c8
             return -1;
1072c8
         }
1072c8
 
1072c8
-        qemu_set_nonblock(fd);
1072c8
+        ret = qemu_try_set_nonblock(fd);
1072c8
+        if (ret < 0) {
1072c8
+            error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
1072c8
+                             name, fd);
1072c8
+            return -1;
1072c8
+        }
1072c8
 
1072c8
         vnet_hdr = tap_probe_vnet_hdr(fd);
1072c8
 
1072c8
@@ -810,7 +823,6 @@ int net_init_tap(const Netdev *netdev, const char *name,
1072c8
         char **fds;
1072c8
         char **vhost_fds;
1072c8
         int nfds = 0, nvhosts = 0;
1072c8
-        int ret = 0;
1072c8
 
1072c8
         if (tap->has_ifname || tap->has_script || tap->has_downscript ||
1072c8
             tap->has_vnet_hdr || tap->has_helper || tap->has_queues ||
1072c8
@@ -843,7 +855,12 @@ int net_init_tap(const Netdev *netdev, const char *name,
1072c8
                 goto free_fail;
1072c8
             }
1072c8
 
1072c8
-            qemu_set_nonblock(fd);
1072c8
+            ret = qemu_try_set_nonblock(fd);
1072c8
+            if (ret < 0) {
1072c8
+                error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
1072c8
+                                 name, fd);
1072c8
+                goto free_fail;
1072c8
+            }
1072c8
 
1072c8
             if (i == 0) {
1072c8
                 vnet_hdr = tap_probe_vnet_hdr(fd);
1072c8
diff --git a/util/oslib-posix.c b/util/oslib-posix.c
1072c8
index 8f88e4dbe1..db70416dbb 100644
1072c8
--- a/util/oslib-posix.c
1072c8
+++ b/util/oslib-posix.c
1072c8
@@ -240,25 +240,35 @@ void qemu_set_block(int fd)
1072c8
     assert(f != -1);
1072c8
 }
1072c8
 
1072c8
-void qemu_set_nonblock(int fd)
1072c8
+int qemu_try_set_nonblock(int fd)
1072c8
 {
1072c8
     int f;
1072c8
     f = fcntl(fd, F_GETFL);
1072c8
-    assert(f != -1);
1072c8
-    f = fcntl(fd, F_SETFL, f | O_NONBLOCK);
1072c8
-#ifdef __OpenBSD__
1072c8
     if (f == -1) {
1072c8
+        return -errno;
1072c8
+    }
1072c8
+    if (fcntl(fd, F_SETFL, f | O_NONBLOCK) == -1) {
1072c8
+#ifdef __OpenBSD__
1072c8
         /*
1072c8
          * Previous to OpenBSD 6.3, fcntl(F_SETFL) is not permitted on
1072c8
          * memory devices and sets errno to ENODEV.
1072c8
          * It's OK if we fail to set O_NONBLOCK on devices like /dev/null,
1072c8
          * because they will never block anyway.
1072c8
          */
1072c8
-        assert(errno == ENODEV);
1072c8
-    }
1072c8
-#else
1072c8
-    assert(f != -1);
1072c8
+        if (errno == ENODEV) {
1072c8
+            return 0;
1072c8
+        }
1072c8
 #endif
1072c8
+        return -errno;
1072c8
+    }
1072c8
+    return 0;
1072c8
+}
1072c8
+
1072c8
+void qemu_set_nonblock(int fd)
1072c8
+{
1072c8
+    int f;
1072c8
+    f = qemu_try_set_nonblock(fd);
1072c8
+    assert(f == 0);
1072c8
 }
1072c8
 
1072c8
 int socket_set_fast_reuse(int fd)
1072c8
diff --git a/util/oslib-win32.c b/util/oslib-win32.c
1072c8
index 3b49d27297..7eedbe5859 100644
1072c8
--- a/util/oslib-win32.c
1072c8
+++ b/util/oslib-win32.c
1072c8
@@ -132,31 +132,6 @@ struct tm *localtime_r(const time_t *timep, struct tm *result)
1072c8
 }
1072c8
 #endif /* CONFIG_LOCALTIME_R */
1072c8
 
1072c8
-void qemu_set_block(int fd)
1072c8
-{
1072c8
-    unsigned long opt = 0;
1072c8
-    WSAEventSelect(fd, NULL, 0);
1072c8
-    ioctlsocket(fd, FIONBIO, &opt;;
1072c8
-}
1072c8
-
1072c8
-void qemu_set_nonblock(int fd)
1072c8
-{
1072c8
-    unsigned long opt = 1;
1072c8
-    ioctlsocket(fd, FIONBIO, &opt;;
1072c8
-    qemu_fd_register(fd);
1072c8
-}
1072c8
-
1072c8
-int socket_set_fast_reuse(int fd)
1072c8
-{
1072c8
-    /* Enabling the reuse of an endpoint that was used by a socket still in
1072c8
-     * TIME_WAIT state is usually performed by setting SO_REUSEADDR. On Windows
1072c8
-     * fast reuse is the default and SO_REUSEADDR does strange things. So we
1072c8
-     * don't have to do anything here. More info can be found at:
1072c8
-     * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740621.aspx */
1072c8
-    return 0;
1072c8
-}
1072c8
-
1072c8
-
1072c8
 static int socket_error(void)
1072c8
 {
1072c8
     switch (WSAGetLastError()) {
1072c8
@@ -233,6 +208,38 @@ static int socket_error(void)
1072c8
     }
1072c8
 }
1072c8
 
1072c8
+void qemu_set_block(int fd)
1072c8
+{
1072c8
+    unsigned long opt = 0;
1072c8
+    WSAEventSelect(fd, NULL, 0);
1072c8
+    ioctlsocket(fd, FIONBIO, &opt;;
1072c8
+}
1072c8
+
1072c8
+int qemu_try_set_nonblock(int fd)
1072c8
+{
1072c8
+    unsigned long opt = 1;
1072c8
+    if (ioctlsocket(fd, FIONBIO, &opt) != NO_ERROR) {
1072c8
+        return -socket_error();
1072c8
+    }
1072c8
+    qemu_fd_register(fd);
1072c8
+    return 0;
1072c8
+}
1072c8
+
1072c8
+void qemu_set_nonblock(int fd)
1072c8
+{
1072c8
+    (void)qemu_try_set_nonblock(fd);
1072c8
+}
1072c8
+
1072c8
+int socket_set_fast_reuse(int fd)
1072c8
+{
1072c8
+    /* Enabling the reuse of an endpoint that was used by a socket still in
1072c8
+     * TIME_WAIT state is usually performed by setting SO_REUSEADDR. On Windows
1072c8
+     * fast reuse is the default and SO_REUSEADDR does strange things. So we
1072c8
+     * don't have to do anything here. More info can be found at:
1072c8
+     * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740621.aspx */
1072c8
+    return 0;
1072c8
+}
1072c8
+
1072c8
 int inet_aton(const char *cp, struct in_addr *ia)
1072c8
 {
1072c8
     uint32_t addr = inet_addr(cp);
1072c8
-- 
1072c8
2.27.0
1072c8