x86_iommu: check if machine has PCI bus
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 <peterx@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Mohammed Gamal <mgamal@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
			
			
This commit is contained in:
		
							parent
							
								
									29396ed9ac
								
							
						
					
					
						commit
						a0c167a184
					
				@ -88,7 +88,7 @@ static void x86_iommu_realize(DeviceState *dev, Error **errp)
 | 
				
			|||||||
        PC_MACHINE(object_dynamic_cast(OBJECT(ms), TYPE_PC_MACHINE));
 | 
					        PC_MACHINE(object_dynamic_cast(OBJECT(ms), TYPE_PC_MACHINE));
 | 
				
			||||||
    QLIST_INIT(&x86_iommu->iec_notifiers);
 | 
					    QLIST_INIT(&x86_iommu->iec_notifiers);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!pcms) {
 | 
					    if (!pcms || !pcms->bus) {
 | 
				
			||||||
        error_setg(errp, "Machine-type '%s' not supported by IOMMU",
 | 
					        error_setg(errp, "Machine-type '%s' not supported by IOMMU",
 | 
				
			||||||
                   mc->name);
 | 
					                   mc->name);
 | 
				
			||||||
        return;
 | 
					        return;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user