cryptospore / rpms / qemu-kvm

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