cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-vhost-fix-vhost_log-size-overflow-during-migration.patch

4ec855
From 8c80943cfe6e8e50f0a18cc2b4f09f9eefed47dc Mon Sep 17 00:00:00 2001
4ec855
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
4ec855
Date: Tue, 26 Nov 2019 16:29:02 +0000
4ec855
Subject: [PATCH 16/16] vhost: fix vhost_log size overflow during migration
4ec855
4ec855
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
4ec855
Message-id: <20191126162902.46145-2-dgilbert@redhat.com>
4ec855
Patchwork-id: 92689
4ec855
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH 1/1] vhost: fix vhost_log size overflow during migration
4ec855
Bugzilla: 1776808
4ec855
RH-Acked-by: Peter Xu <peterx@redhat.com>
4ec855
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
4ec855
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
4ec855
4ec855
From: Li Hangjing <lihangjing@baidu.com>
4ec855
4ec855
When a guest which doesn't support multiqueue is migrated with a multi queues
4ec855
vhost-user-blk deivce, a crash will occur like:
4ec855
4ec855
0 qemu_memfd_alloc (name=<value optimized out>, size=562949953421312, seals=<value optimized out>, fd=0x7f87171fe8b4, errp=0x7f87171fe8a8) at util/memfd.c:153
4ec855
1 0x00007f883559d7cf in vhost_log_alloc (size=70368744177664, share=true) at hw/virtio/vhost.c:186
4ec855
2 0x00007f88355a0758 in vhost_log_get (listener=0x7f8838bd7940, enable=1) at qemu-2-12/hw/virtio/vhost.c:211
4ec855
3 vhost_dev_log_resize (listener=0x7f8838bd7940, enable=1) at hw/virtio/vhost.c:263
4ec855
4 vhost_migration_log (listener=0x7f8838bd7940, enable=1) at hw/virtio/vhost.c:787
4ec855
5 0x00007f88355463d6 in memory_global_dirty_log_start () at memory.c:2503
4ec855
6 0x00007f8835550577 in ram_init_bitmaps (f=0x7f88384ce600, opaque=0x7f8836024098) at migration/ram.c:2173
4ec855
7 ram_init_all (f=0x7f88384ce600, opaque=0x7f8836024098) at migration/ram.c:2192
4ec855
8 ram_save_setup (f=0x7f88384ce600, opaque=0x7f8836024098) at migration/ram.c:2219
4ec855
9 0x00007f88357a419d in qemu_savevm_state_setup (f=0x7f88384ce600) at migration/savevm.c:1002
4ec855
10 0x00007f883579fc3e in migration_thread (opaque=0x7f8837530400) at migration/migration.c:2382
4ec855
11 0x00007f8832447893 in start_thread () from /lib64/libpthread.so.0
4ec855
12 0x00007f8832178bfd in clone () from /lib64/libc.so.6
4ec855
4ec855
This is because vhost_get_log_size() returns a overflowed vhost-log size.
4ec855
In this function, it uses the uninitialized variable vqs->used_phys and
4ec855
vqs->used_size to get the vhost-log size.
4ec855
4ec855
Signed-off-by: Li Hangjing <lihangjing@baidu.com>
4ec855
Reviewed-by: Xie Yongji <xieyongji@baidu.com>
4ec855
Reviewed-by: Chai Wen <chaiwen@baidu.com>
4ec855
Message-Id: <20190603061524.24076-1-lihangjing@baidu.com>
4ec855
Cc: qemu-stable@nongnu.org
4ec855
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
4ec855
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
4ec855
(cherry picked from commit 240e647a14df9677b3a501f7b8b870e40aac3fd5)
4ec855
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
4ec855
---
4ec855
 hw/virtio/vhost.c | 10 ++++++++++
4ec855
 1 file changed, 10 insertions(+)
4ec855
4ec855
diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c
4ec855
index 1ae68ff..7bdc9c4 100644
4ec855
--- a/hw/virtio/vhost.c
4ec855
+++ b/hw/virtio/vhost.c
4ec855
@@ -131,6 +131,11 @@ static int vhost_sync_dirty_bitmap(struct vhost_dev *dev,
4ec855
     }
4ec855
     for (i = 0; i < dev->nvqs; ++i) {
4ec855
         struct vhost_virtqueue *vq = dev->vqs + i;
4ec855
+
4ec855
+        if (!vq->used_phys && !vq->used_size) {
4ec855
+            continue;
4ec855
+        }
4ec855
+
4ec855
         vhost_dev_sync_region(dev, section, start_addr, end_addr, vq->used_phys,
4ec855
                               range_get_last(vq->used_phys, vq->used_size));
4ec855
     }
4ec855
@@ -168,6 +173,11 @@ static uint64_t vhost_get_log_size(struct vhost_dev *dev)
4ec855
     }
4ec855
     for (i = 0; i < dev->nvqs; ++i) {
4ec855
         struct vhost_virtqueue *vq = dev->vqs + i;
4ec855
+
4ec855
+        if (!vq->used_phys && !vq->used_size) {
4ec855
+            continue;
4ec855
+        }
4ec855
+
4ec855
         uint64_t last = vq->used_phys + vq->used_size - 1;
4ec855
         log_size = MAX(log_size, last / VHOST_LOG_CHUNK + 1);
4ec855
     }
4ec855
-- 
4ec855
1.8.3.1
4ec855