cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-vhost-vsock-detach-the-virqueue-element-in-case-of-e.patch

432cb7
From ff4e95d8652dadfed09913c7968514a2a7f36591 Mon Sep 17 00:00:00 2001
432cb7
From: Jon Maloy <jmaloy@rehat.com>
432cb7
Date: Thu, 14 Apr 2022 10:38:26 -0400
432cb7
Subject: [PATCH 2/2] vhost-vsock: detach the virqueue element in case of error
432cb7
432cb7
RH-Author: Jon Maloy <jmaloy@redhat.com>
432cb7
RH-MergeRequest: 153: vhost-vsock: detach the virqueue element in case of error
432cb7
RH-Commit: [1/1] 024dbc9073fddbe89a8ae8eb201f5bc674bffb64 (jmaloy/qemu-kvm)
432cb7
RH-Bugzilla: 2063262
432cb7
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
432cb7
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
432cb7
432cb7
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2063262
432cb7
Upstream: Merged
432cb7
CVE: CVE-2022-26354
432cb7
432cb7
commit 8d1b247f3748ac4078524130c6d7ae42b6140aaf
432cb7
Author: Stefano Garzarella <sgarzare@redhat.com>
432cb7
Date:   Mon Feb 28 10:50:58 2022 +0100
432cb7
432cb7
    vhost-vsock: detach the virqueue element in case of error
432cb7
432cb7
    In vhost_vsock_common_send_transport_reset(), if an element popped from
432cb7
    the virtqueue is invalid, we should call virtqueue_detach_element() to
432cb7
    detach it from the virtqueue before freeing its memory.
432cb7
432cb7
    Fixes: fc0b9b0e1c ("vhost-vsock: add virtio sockets device")
432cb7
    Fixes: CVE-2022-26354
432cb7
    Cc: qemu-stable@nongnu.org
432cb7
    Reported-by: VictorV <vv474172261@gmail.com>
432cb7
    Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
432cb7
    Message-Id: <20220228095058.27899-1-sgarzare@redhat.com>
432cb7
    Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
432cb7
    Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
432cb7
    Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
432cb7
432cb7
(cherry picked from commit 8d1b247f3748ac4078524130c6d7ae42b6140aaf)
432cb7
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
432cb7
---
432cb7
 hw/virtio/vhost-vsock-common.c | 10 +++++++---
432cb7
 1 file changed, 7 insertions(+), 3 deletions(-)
432cb7
432cb7
diff --git a/hw/virtio/vhost-vsock-common.c b/hw/virtio/vhost-vsock-common.c
432cb7
index 3f3771274e..ed706681ac 100644
432cb7
--- a/hw/virtio/vhost-vsock-common.c
432cb7
+++ b/hw/virtio/vhost-vsock-common.c
432cb7
@@ -153,19 +153,23 @@ static void vhost_vsock_common_send_transport_reset(VHostVSockCommon *vvc)
432cb7
     if (elem->out_num) {
432cb7
         error_report("invalid vhost-vsock event virtqueue element with "
432cb7
                      "out buffers");
432cb7
-        goto out;
432cb7
+        goto err;
432cb7
     }
432cb7
 
432cb7
     if (iov_from_buf(elem->in_sg, elem->in_num, 0,
432cb7
                      &event, sizeof(event)) != sizeof(event)) {
432cb7
         error_report("vhost-vsock event virtqueue element is too short");
432cb7
-        goto out;
432cb7
+        goto err;
432cb7
     }
432cb7
 
432cb7
     virtqueue_push(vq, elem, sizeof(event));
432cb7
     virtio_notify(VIRTIO_DEVICE(vvc), vq);
432cb7
 
432cb7
-out:
432cb7
+    g_free(elem);
432cb7
+    return;
432cb7
+
432cb7
+err:
432cb7
+    virtqueue_detach_element(vq, elem, 0);
432cb7
     g_free(elem);
432cb7
 }
432cb7
 
432cb7
-- 
432cb7
2.27.0
432cb7