mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 01:45:17 +00:00
conf: verify for duplicate hostdevs
It is possible to define/edit(in shut off state) a domain XML with same hostdev device repeated more than once, as shown below. This behavior is not expected. So, this patch fixes it. vser1: <domain type='kvm'> [...] <devices> [...] <hostdev mode='subsystem' type='mdev' managed='no' model='vfio-ccw'> <source> <address uuid='8e782fea-e5f4-45fa-a0f9-024cf66e5009'/> </source> <address type='ccw' cssid='0xfe' ssid='0x0' devno='0x0005'/> </hostdev> <hostdev mode='subsystem' type='mdev' managed='no' model='vfio-ccw'> <source> <address uuid='8e782fea-e5f4-45fa-a0f9-024cf66e5009'/> </source> <address type='ccw' cssid='0xfe' ssid='0x0' devno='0x0006'/> </hostdev> [...] </devices> </domain> $ virsh define vser1 Domain 'vser1' defined from vser1 Signed-off-by: Shalini Chellathurai Saroja <shalini@linux.ibm.com> Reviewed-by: Bjoern Walk <bwalk@linux.ibm.com> Reviewed-by: Boris Fiuczynski <fiuczy@linux.ibm.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
d8a1c059e0
commit
9c3b6b7a82
@ -15369,7 +15369,7 @@ virDomainHostdevMatchCaps(virDomainHostdevDef *a,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
int
|
||||||
virDomainHostdevMatch(virDomainHostdevDef *a,
|
virDomainHostdevMatch(virDomainHostdevDef *a,
|
||||||
virDomainHostdevDef *b)
|
virDomainHostdevDef *b)
|
||||||
{
|
{
|
||||||
|
@ -3590,6 +3590,8 @@ virDomainHostdevDef *
|
|||||||
virDomainHostdevRemove(virDomainDef *def, size_t i);
|
virDomainHostdevRemove(virDomainDef *def, size_t i);
|
||||||
int virDomainHostdevFind(virDomainDef *def, virDomainHostdevDef *match,
|
int virDomainHostdevFind(virDomainDef *def, virDomainHostdevDef *match,
|
||||||
virDomainHostdevDef **found);
|
virDomainHostdevDef **found);
|
||||||
|
int virDomainHostdevMatch(virDomainHostdevDef *a,
|
||||||
|
virDomainHostdevDef *b);
|
||||||
|
|
||||||
virDomainGraphicsListenDef *
|
virDomainGraphicsListenDef *
|
||||||
virDomainGraphicsGetListen(virDomainGraphicsDef *def, size_t i);
|
virDomainGraphicsGetListen(virDomainGraphicsDef *def, size_t i);
|
||||||
|
@ -1068,7 +1068,25 @@ virDomainDefDuplicateDiskInfoValidate(const virDomainDef *def)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
virDomainDefDuplicateHostdevInfoValidate(const virDomainDef *def)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
size_t j;
|
||||||
|
|
||||||
|
for (i = 0; i < def->nhostdevs; i++) {
|
||||||
|
for (j = i + 1; j < def->nhostdevs; j++) {
|
||||||
|
if (virDomainHostdevMatch(def->hostdevs[i],
|
||||||
|
def->hostdevs[j])) {
|
||||||
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
||||||
|
_("Hostdev already exists in the domain configuration"));
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* virDomainDefDuplicateDriveAddressesValidate:
|
* virDomainDefDuplicateDriveAddressesValidate:
|
||||||
@ -1529,6 +1547,9 @@ virDomainDefValidateInternal(const virDomainDef *def,
|
|||||||
if (virDomainDefDuplicateDiskInfoValidate(def) < 0)
|
if (virDomainDefDuplicateDiskInfoValidate(def) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
if (virDomainDefDuplicateHostdevInfoValidate(def) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
if (virDomainDefDuplicateDriveAddressesValidate(def) < 0)
|
if (virDomainDefDuplicateDriveAddressesValidate(def) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
@ -457,6 +457,7 @@ virDomainHostdevDefFree;
|
|||||||
virDomainHostdevDefNew;
|
virDomainHostdevDefNew;
|
||||||
virDomainHostdevFind;
|
virDomainHostdevFind;
|
||||||
virDomainHostdevInsert;
|
virDomainHostdevInsert;
|
||||||
|
virDomainHostdevMatch;
|
||||||
virDomainHostdevModeTypeToString;
|
virDomainHostdevModeTypeToString;
|
||||||
virDomainHostdevRemove;
|
virDomainHostdevRemove;
|
||||||
virDomainHostdevSubsysPCIBackendTypeToString;
|
virDomainHostdevSubsysPCIBackendTypeToString;
|
||||||
|
1
tests/qemuxml2argvdata/hostdev-mdev-duplicate.err
Normal file
1
tests/qemuxml2argvdata/hostdev-mdev-duplicate.err
Normal file
@ -0,0 +1 @@
|
|||||||
|
XML error: Hostdev already exists in the domain configuration
|
41
tests/qemuxml2argvdata/hostdev-mdev-duplicate.xml
Normal file
41
tests/qemuxml2argvdata/hostdev-mdev-duplicate.xml
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<domain type='qemu'>
|
||||||
|
<name>QEMUGuest2</name>
|
||||||
|
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
||||||
|
<memory unit='KiB'>219136</memory>
|
||||||
|
<currentMemory unit='KiB'>219136</currentMemory>
|
||||||
|
<vcpu placement='static'>1</vcpu>
|
||||||
|
<os>
|
||||||
|
<type arch='i686' machine='pc'>hvm</type>
|
||||||
|
<boot dev='hd'/>
|
||||||
|
</os>
|
||||||
|
<clock offset='utc'/>
|
||||||
|
<on_poweroff>destroy</on_poweroff>
|
||||||
|
<on_reboot>restart</on_reboot>
|
||||||
|
<on_crash>destroy</on_crash>
|
||||||
|
<devices>
|
||||||
|
<emulator>/usr/bin/qemu-system-i386</emulator>
|
||||||
|
<controller type='usb' index='0'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='0' model='pci-root'/>
|
||||||
|
<controller type='ide' index='0'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
|
||||||
|
</controller>
|
||||||
|
<input type='mouse' bus='ps2'/>
|
||||||
|
<input type='keyboard' bus='ps2'/>
|
||||||
|
<audio id='1' type='none'/>
|
||||||
|
<hostdev mode='subsystem' type='mdev' managed='no' model='vfio-pci'>
|
||||||
|
<source>
|
||||||
|
<address uuid='53764d0e-85a0-42b4-af5c-2046b460b1dc'/>
|
||||||
|
</source>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
|
||||||
|
</hostdev>
|
||||||
|
<hostdev mode='subsystem' type='mdev' managed='no' model='vfio-pci'>
|
||||||
|
<source>
|
||||||
|
<address uuid='53764d0e-85a0-42b4-af5c-2046b460b1dc'/>
|
||||||
|
</source>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
|
||||||
|
</hostdev>
|
||||||
|
<memballoon model='none'/>
|
||||||
|
</devices>
|
||||||
|
</domain>
|
1
tests/qemuxml2argvdata/hostdev-pci-duplicate.err
Normal file
1
tests/qemuxml2argvdata/hostdev-pci-duplicate.err
Normal file
@ -0,0 +1 @@
|
|||||||
|
XML error: Hostdev already exists in the domain configuration
|
40
tests/qemuxml2argvdata/hostdev-pci-duplicate.xml
Normal file
40
tests/qemuxml2argvdata/hostdev-pci-duplicate.xml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<domain type='qemu'>
|
||||||
|
<name>QEMUGuest2</name>
|
||||||
|
<uuid>c7a5fdbd-edaf-9466-926a-d65c16db1809</uuid>
|
||||||
|
<memory unit='KiB'>219100</memory>
|
||||||
|
<currentMemory unit='KiB'>219100</currentMemory>
|
||||||
|
<vcpu placement='static'>1</vcpu>
|
||||||
|
<os>
|
||||||
|
<type arch='i686' machine='pc'>hvm</type>
|
||||||
|
<boot dev='hd'/>
|
||||||
|
</os>
|
||||||
|
<clock offset='utc'/>
|
||||||
|
<on_poweroff>destroy</on_poweroff>
|
||||||
|
<on_reboot>restart</on_reboot>
|
||||||
|
<on_crash>destroy</on_crash>
|
||||||
|
<devices>
|
||||||
|
<emulator>/usr/bin/qemu-system-i386</emulator>
|
||||||
|
<disk type='block' device='disk'>
|
||||||
|
<driver name='qemu' type='raw'/>
|
||||||
|
<source dev='/dev/HostVG/QEMUGuest2'/>
|
||||||
|
<target dev='hda' bus='ide'/>
|
||||||
|
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
||||||
|
</disk>
|
||||||
|
<controller type='usb' index='0'/>
|
||||||
|
<controller type='ide' index='0'/>
|
||||||
|
<controller type='pci' index='0' model='pci-root'/>
|
||||||
|
<input type='mouse' bus='ps2'/>
|
||||||
|
<input type='keyboard' bus='ps2'/>
|
||||||
|
<hostdev mode='subsystem' type='pci' managed='yes'>
|
||||||
|
<source>
|
||||||
|
<address domain='0x0000' bus='0x06' slot='0x12' function='0x5'/>
|
||||||
|
</source>
|
||||||
|
</hostdev>
|
||||||
|
<hostdev mode='subsystem' type='pci' managed='yes'>
|
||||||
|
<source>
|
||||||
|
<address domain='0x0000' bus='0x06' slot='0x12' function='0x5'/>
|
||||||
|
</source>
|
||||||
|
</hostdev>
|
||||||
|
<memballoon model='none'/>
|
||||||
|
</devices>
|
||||||
|
</domain>
|
1
tests/qemuxml2argvdata/hostdev-scsi-duplicate.err
Normal file
1
tests/qemuxml2argvdata/hostdev-scsi-duplicate.err
Normal file
@ -0,0 +1 @@
|
|||||||
|
XML error: Hostdev already exists in the domain configuration
|
40
tests/qemuxml2argvdata/hostdev-scsi-duplicate.xml
Normal file
40
tests/qemuxml2argvdata/hostdev-scsi-duplicate.xml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<domain type='qemu'>
|
||||||
|
<name>QEMUGuest2</name>
|
||||||
|
<uuid>c7a5fdbd-edaf-9466-926a-d65c16db1809</uuid>
|
||||||
|
<memory unit='KiB'>219100</memory>
|
||||||
|
<currentMemory unit='KiB'>219100</currentMemory>
|
||||||
|
<vcpu placement='static'>1</vcpu>
|
||||||
|
<os>
|
||||||
|
<type arch='i686' machine='pc'>hvm</type>
|
||||||
|
<boot dev='hd'/>
|
||||||
|
</os>
|
||||||
|
<clock offset='utc'/>
|
||||||
|
<on_poweroff>destroy</on_poweroff>
|
||||||
|
<on_reboot>restart</on_reboot>
|
||||||
|
<on_crash>destroy</on_crash>
|
||||||
|
<devices>
|
||||||
|
<emulator>/usr/bin/qemu-system-i386</emulator>
|
||||||
|
<disk type='block' device='disk'>
|
||||||
|
<source dev='/dev/HostVG/QEMUGuest2'/>
|
||||||
|
<target dev='hda' bus='ide'/>
|
||||||
|
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
||||||
|
</disk>
|
||||||
|
<controller type='scsi' index='0' model='virtio-scsi'/>
|
||||||
|
<controller type='usb' index='0'/>
|
||||||
|
<controller type='ide' index='0'/>
|
||||||
|
<controller type='pci' index='0' model='pci-root'/>
|
||||||
|
<hostdev mode='subsystem' type='scsi' managed='yes'>
|
||||||
|
<source>
|
||||||
|
<adapter name='scsi_host0'/>
|
||||||
|
<address bus='0' target='0' unit='0'/>
|
||||||
|
</source>
|
||||||
|
</hostdev>
|
||||||
|
<hostdev mode='subsystem' type='scsi' managed='yes'>
|
||||||
|
<source>
|
||||||
|
<adapter name='scsi_host0'/>
|
||||||
|
<address bus='0' target='0' unit='0'/>
|
||||||
|
</source>
|
||||||
|
</hostdev>
|
||||||
|
<memballoon model='virtio'/>
|
||||||
|
</devices>
|
||||||
|
</domain>
|
1
tests/qemuxml2argvdata/hostdev-usb-duplicate.err
Normal file
1
tests/qemuxml2argvdata/hostdev-usb-duplicate.err
Normal file
@ -0,0 +1 @@
|
|||||||
|
XML error: Hostdev already exists in the domain configuration
|
40
tests/qemuxml2argvdata/hostdev-usb-duplicate.xml
Normal file
40
tests/qemuxml2argvdata/hostdev-usb-duplicate.xml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<domain type='qemu'>
|
||||||
|
<name>QEMUGuest1</name>
|
||||||
|
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
||||||
|
<memory unit='KiB'>219136</memory>
|
||||||
|
<currentMemory unit='KiB'>219136</currentMemory>
|
||||||
|
<vcpu placement='static'>1</vcpu>
|
||||||
|
<os>
|
||||||
|
<type arch='i686' machine='pc'>hvm</type>
|
||||||
|
<boot dev='hd'/>
|
||||||
|
</os>
|
||||||
|
<clock offset='utc'/>
|
||||||
|
<on_poweroff>destroy</on_poweroff>
|
||||||
|
<on_reboot>restart</on_reboot>
|
||||||
|
<on_crash>destroy</on_crash>
|
||||||
|
<devices>
|
||||||
|
<emulator>/usr/bin/qemu-system-i386</emulator>
|
||||||
|
<disk type='block' device='disk'>
|
||||||
|
<driver name='qemu' type='raw'/>
|
||||||
|
<source dev='/dev/HostVG/QEMUGuest1'/>
|
||||||
|
<target dev='hda' bus='ide'/>
|
||||||
|
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
||||||
|
</disk>
|
||||||
|
<controller type='usb' index='0'/>
|
||||||
|
<controller type='ide' index='0'/>
|
||||||
|
<controller type='pci' index='0' model='pci-root'/>
|
||||||
|
<input type='mouse' bus='ps2'/>
|
||||||
|
<input type='keyboard' bus='ps2'/>
|
||||||
|
<hostdev mode='subsystem' type='usb' managed='no'>
|
||||||
|
<source>
|
||||||
|
<address bus='14' device='6'/>
|
||||||
|
</source>
|
||||||
|
</hostdev>
|
||||||
|
<hostdev mode='subsystem' type='usb' managed='no'>
|
||||||
|
<source>
|
||||||
|
<address bus='14' device='6'/>
|
||||||
|
</source>
|
||||||
|
</hostdev>
|
||||||
|
<memballoon model='none'/>
|
||||||
|
</devices>
|
||||||
|
</domain>
|
@ -1918,8 +1918,11 @@ mymain(void)
|
|||||||
DO_TEST("hostdev-usb-address", NONE);
|
DO_TEST("hostdev-usb-address", NONE);
|
||||||
DO_TEST("hostdev-usb-address-device", NONE);
|
DO_TEST("hostdev-usb-address-device", NONE);
|
||||||
DO_TEST("hostdev-usb-address-device-boot", NONE);
|
DO_TEST("hostdev-usb-address-device-boot", NONE);
|
||||||
|
DO_TEST_PARSE_ERROR("hostdev-usb-duplicate", NONE);
|
||||||
DO_TEST("hostdev-pci-address", QEMU_CAPS_DEVICE_VFIO_PCI);
|
DO_TEST("hostdev-pci-address", QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
DO_TEST("hostdev-pci-address-device", QEMU_CAPS_DEVICE_VFIO_PCI);
|
DO_TEST("hostdev-pci-address-device", QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
|
DO_TEST_PARSE_ERROR("hostdev-pci-duplicate",
|
||||||
|
QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
DO_TEST("hostdev-vfio",
|
DO_TEST("hostdev-vfio",
|
||||||
QEMU_CAPS_DEVICE_VFIO_PCI);
|
QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
DO_TEST("hostdev-vfio-multidomain",
|
DO_TEST("hostdev-vfio-multidomain",
|
||||||
@ -1930,6 +1933,8 @@ mymain(void)
|
|||||||
QEMU_CAPS_DEVICE_VFIO_PCI);
|
QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
DO_TEST_PARSE_ERROR("hostdev-mdev-invalid-target-address",
|
DO_TEST_PARSE_ERROR("hostdev-mdev-invalid-target-address",
|
||||||
QEMU_CAPS_DEVICE_VFIO_PCI);
|
QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
|
DO_TEST_PARSE_ERROR("hostdev-mdev-duplicate",
|
||||||
|
QEMU_CAPS_DEVICE_VFIO_PCI);
|
||||||
DO_TEST_CAPS_LATEST("hostdev-mdev-display-spice-opengl");
|
DO_TEST_CAPS_LATEST("hostdev-mdev-display-spice-opengl");
|
||||||
DO_TEST_CAPS_LATEST("hostdev-mdev-display-spice-egl-headless");
|
DO_TEST_CAPS_LATEST("hostdev-mdev-display-spice-egl-headless");
|
||||||
DO_TEST_CAPS_LATEST("hostdev-mdev-display-vnc");
|
DO_TEST_CAPS_LATEST("hostdev-mdev-display-vnc");
|
||||||
@ -2860,6 +2865,9 @@ mymain(void)
|
|||||||
QEMU_CAPS_VIRTIO_SCSI, QEMU_CAPS_DEVICE_VHOST_SCSI,
|
QEMU_CAPS_VIRTIO_SCSI, QEMU_CAPS_DEVICE_VHOST_SCSI,
|
||||||
QEMU_CAPS_DEVICE_PCIE_ROOT_PORT,
|
QEMU_CAPS_DEVICE_PCIE_ROOT_PORT,
|
||||||
QEMU_CAPS_VIRTIO_PCI_DISABLE_LEGACY);
|
QEMU_CAPS_VIRTIO_PCI_DISABLE_LEGACY);
|
||||||
|
DO_TEST_PARSE_ERROR("hostdev-scsi-duplicate",
|
||||||
|
QEMU_CAPS_VIRTIO_SCSI,
|
||||||
|
QEMU_CAPS_DEVICE_VHOST_SCSI);
|
||||||
|
|
||||||
DO_TEST_CAPS_VER("mlock-on", "3.0.0");
|
DO_TEST_CAPS_VER("mlock-on", "3.0.0");
|
||||||
DO_TEST_CAPS_VER("mlock-off", "3.0.0");
|
DO_TEST_CAPS_VER("mlock-off", "3.0.0");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user