yeahuh / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-qdev-machine-Introduce-hotplug_allowed-hook.patch

4ec855
From 6a2ee1fd8d36ed8407b403a7307de1633462759c Mon Sep 17 00:00:00 2001
4ec855
From: Peter Xu <peterx@redhat.com>
4ec855
Date: Wed, 9 Oct 2019 12:39:45 +0100
4ec855
Subject: [PATCH 19/22] qdev/machine: Introduce hotplug_allowed hook
4ec855
4ec855
RH-Author: Peter Xu <peterx@redhat.com>
4ec855
Message-id: <20191009123947.21505-4-peterx@redhat.com>
4ec855
Patchwork-id: 91351
4ec855
O-Subject: [RHEL-8.2.0 qemu-kvm PATCH 3/5] qdev/machine: Introduce hotplug_allowed hook
4ec855
Bugzilla: 1738440
4ec855
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
4ec855
RH-Acked-by: Auger Eric <eric.auger@redhat.com>
4ec855
RH-Acked-by: Alex Williamson <alex.williamson@redhat.com>
4ec855
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
4ec855
4ec855
Conflicts:
4ec855
4ec855
  hw/core/qdev.c: don't have 14405c274e86e ("qdev: Provide
4ec855
    qdev_get_bus_hotplug_handler()")
4ec855
4ec855
  include/hw/boards: plenty of new things missing in
4ec855
    MachineClass (kvm_type, numa_mem_supported, smp_parse)
4ec855
4ec855
  include/hw/qdev-core.h: don't have 17cc0128da3 ("qdev: Let machine
4ec855
    hotplug handler to override bus hotplug handler")
4ec855
4ec855
Introduce this new per-machine hook to give any machine class a chance
4ec855
to do a sanity check on the to-be-hotplugged device as a sanity test.
4ec855
This will be used for x86 to try to detect some illegal configuration
4ec855
of devices, e.g., possible conflictions between vfio-pci and x86
4ec855
vIOMMU.
4ec855
4ec855
Reviewed-by: Eric Auger <eric.auger@redhat.com>
4ec855
Signed-off-by: Peter Xu <peterx@redhat.com>
4ec855
Message-Id: <20190916080718.3299-3-peterx@redhat.com>
4ec855
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
4ec855
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
4ec855
(cherry picked from commit d2321d31ff98b75b652c2b1594f00a4cfd48102a)
4ec855
Signed-off-by: Peter Xu <peterx@redhat.com>
4ec855
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
4ec855
---
4ec855
 hw/core/qdev.c         | 17 +++++++++++++++++
4ec855
 include/hw/boards.h    |  9 +++++++++
4ec855
 include/hw/qdev-core.h |  1 +
4ec855
 qdev-monitor.c         |  7 +++++++
4ec855
 4 files changed, 34 insertions(+)
4ec855
4ec855
diff --git a/hw/core/qdev.c b/hw/core/qdev.c
4ec855
index 24f1ae7..5971242 100644
4ec855
--- a/hw/core/qdev.c
4ec855
+++ b/hw/core/qdev.c
4ec855
@@ -259,6 +259,23 @@ HotplugHandler *qdev_get_machine_hotplug_handler(DeviceState *dev)
4ec855
     return NULL;
4ec855
 }
4ec855
 
4ec855
+bool qdev_hotplug_allowed(DeviceState *dev, Error **errp)
4ec855
+{
4ec855
+    MachineState *machine;
4ec855
+    MachineClass *mc;
4ec855
+    Object *m_obj = qdev_get_machine();
4ec855
+
4ec855
+    if (object_dynamic_cast(m_obj, TYPE_MACHINE)) {
4ec855
+        machine = MACHINE(m_obj);
4ec855
+        mc = MACHINE_GET_CLASS(machine);
4ec855
+        if (mc->hotplug_allowed) {
4ec855
+            return mc->hotplug_allowed(machine, dev, errp);
4ec855
+        }
4ec855
+    }
4ec855
+
4ec855
+    return true;
4ec855
+}
4ec855
+
4ec855
 HotplugHandler *qdev_get_hotplug_handler(DeviceState *dev)
4ec855
 {
4ec855
     HotplugHandler *hotplug_ctrl;
4ec855
diff --git a/include/hw/boards.h b/include/hw/boards.h
4ec855
index 9b4a69b..e568a3c 100644
4ec855
--- a/include/hw/boards.h
4ec855
+++ b/include/hw/boards.h
4ec855
@@ -156,6 +156,13 @@ typedef struct {
4ec855
  *    should instead use "unimplemented-device" for all memory ranges where
4ec855
  *    the guest will attempt to probe for a device that QEMU doesn't
4ec855
  *    implement and a stub device is required.
4ec855
+ * @hotplug_allowed:
4ec855
+ *    If the hook is provided, then it'll be called for each device
4ec855
+ *    hotplug to check whether the device hotplug is allowed.  Return
4ec855
+ *    true to grant allowance or false to reject the hotplug.  When
4ec855
+ *    false is returned, an error must be set to show the reason of
4ec855
+ *    the rejection.  If the hook is not provided, all hotplug will be
4ec855
+ *    allowed.
4ec855
  */
4ec855
 struct MachineClass {
4ec855
     /*< private >*/
4ec855
@@ -210,6 +217,8 @@ struct MachineClass {
4ec855
 
4ec855
     HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
4ec855
                                            DeviceState *dev);
4ec855
+    bool (*hotplug_allowed)(MachineState *state, DeviceState *dev,
4ec855
+                            Error **errp);
4ec855
     CpuInstanceProperties (*cpu_index_to_instance_props)(MachineState *machine,
4ec855
                                                          unsigned cpu_index);
4ec855
     const CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine);
4ec855
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h
4ec855
index 9453588..b8d1cac 100644
4ec855
--- a/include/hw/qdev-core.h
4ec855
+++ b/include/hw/qdev-core.h
4ec855
@@ -286,6 +286,7 @@ void qdev_init_nofail(DeviceState *dev);
4ec855
 void qdev_set_legacy_instance_id(DeviceState *dev, int alias_id,
4ec855
                                  int required_for_version);
4ec855
 HotplugHandler *qdev_get_machine_hotplug_handler(DeviceState *dev);
4ec855
+bool qdev_hotplug_allowed(DeviceState *dev, Error **errp);
4ec855
 HotplugHandler *qdev_get_hotplug_handler(DeviceState *dev);
4ec855
 void qdev_unplug(DeviceState *dev, Error **errp);
4ec855
 void qdev_simple_device_unplug_cb(HotplugHandler *hotplug_dev,
4ec855
diff --git a/qdev-monitor.c b/qdev-monitor.c
4ec855
index f439b83..70bce8f 100644
4ec855
--- a/qdev-monitor.c
4ec855
+++ b/qdev-monitor.c
4ec855
@@ -606,6 +606,13 @@ DeviceState *qdev_device_add(QemuOpts *opts, Error **errp)
4ec855
     /* create device */
4ec855
     dev = DEVICE(object_new(driver));
4ec855
 
4ec855
+    /* Check whether the hotplug is allowed by the machine */
4ec855
+    if (qdev_hotplug && !qdev_hotplug_allowed(dev, &err)) {
4ec855
+        /* Error must be set in the machine hook */
4ec855
+        assert(err);
4ec855
+        goto err_del_dev;
4ec855
+    }
4ec855
+
4ec855
     if (bus) {
4ec855
         qdev_set_parent_bus(dev, bus);
4ec855
     } else if (qdev_hotplug && !qdev_get_machine_hotplug_handler(dev)) {
4ec855
-- 
4ec855
1.8.3.1
4ec855