]> Git Repo - qemu.git/commitdiff
x86_iommu: check if machine has PCI bus
authorMohammed Gamal <[email protected]>
Wed, 29 Nov 2017 12:33:13 +0000 (13:33 +0100)
committerMichael S. Tsirkin <[email protected]>
Thu, 18 Jan 2018 19:52:38 +0000 (21:52 +0200)
Starting qemu with
qemu-system-x86_64 -S -M isapc -device {amd|intel}-iommu
leads to a segfault. The code assume PCI bus is present and
tries to access the bus structure without checking.

Since Intel VT-d and AMDVI should only work with PCI, add a
check for PCI bus and return error if not present.

Reviewed-by: Peter Xu <[email protected]>
Reviewed-by: Eduardo Habkost <[email protected]>
Signed-off-by: Mohammed Gamal <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>
hw/i386/x86-iommu.c

index 51de519ec30896ba206fef47d49648942c975f5b..8a01a2dd25de8fa4f19631a14c8f7000217eb0c2 100644 (file)
@@ -88,7 +88,7 @@ static void x86_iommu_realize(DeviceState *dev, Error **errp)
         PC_MACHINE(object_dynamic_cast(OBJECT(ms), TYPE_PC_MACHINE));
     QLIST_INIT(&x86_iommu->iec_notifiers);
 
-    if (!pcms) {
+    if (!pcms || !pcms->bus) {
         error_setg(errp, "Machine-type '%s' not supported by IOMMU",
                    mc->name);
         return;
This page took 0.025187 seconds and 4 git commands to generate.