libvirt/src/qemu/qemu_hostdev.h

108 lines
5.3 KiB
C
Raw Normal View History

/*
* qemu_hostdev.h: QEMU hostdev management
*
* Copyright (C) 2006-2007, 2009-2013 Red Hat, Inc.
* Copyright (C) 2006 Daniel P. Berrange
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "qemu_conf.h"
bool qemuHostdevNeedsVFIO(const virDomainHostdevDef *hostdev);
bool qemuHostdevHostSupportsPassthroughVFIO(void);
int qemuHostdevUpdateActiveNVMeDisks(virQEMUDriver *driver,
virDomainDef *def);
int qemuHostdevUpdateActiveMediatedDevices(virQEMUDriver *driver,
virDomainDef *def);
int qemuHostdevUpdateActivePCIDevices(virQEMUDriver *driver,
virDomainDef *def);
int qemuHostdevUpdateActiveUSBDevices(virQEMUDriver *driver,
virDomainDef *def);
int qemuHostdevUpdateActiveSCSIDevices(virQEMUDriver *driver,
virDomainDef *def);
int qemuHostdevUpdateActiveDomainDevices(virQEMUDriver *driver,
virDomainDef *def);
int qemuHostdevPrepareOneNVMeDisk(virQEMUDriver *driver,
const char *name,
virStorageSource *src);
int qemuHostdevPrepareNVMeDisks(virQEMUDriver *driver,
const char *name,
virDomainDiskDef **disks,
size_t ndisks);
int qemuHostdevPreparePCIDevices(virQEMUDriver *driver,
qemu: Do not reattach PCI device used by other domain when shutdown When failing on starting a domain, it tries to reattach all the PCI devices defined in the domain conf, regardless of whether the devices are still used by other domain. This will cause the devices to be deleted from the list qemu_driver->activePciHostdevs, thus the devices will be thought as usable even if it's not true. And following commands nodedev-{reattach,reset} will be successful. How to reproduce: 1) Define two domains with same PCI device defined in the confs. 2) # virsh start domain1 3) # virsh start domain2 4) # virsh nodedev-reattach $pci_device You will see the device will be reattached to host successfully. As pciDeviceReattach just check if the device is still used by other domain via checking if the device is in list driver->activePciHostdevs, however, the device is deleted from the list by step 2). This patch is to prohibit the bug by: 1) Prohibit a domain starting or device attachment right at preparation period (qemuPrepareHostdevPCIDevices) if the device is in list driver->activePciHostdevs, which means it's used by other domain. 2) Introduces a new field for struct _pciDevice, (const char *used_by), it will be set as the domain name at preparation period, (qemuPrepareHostdevPCIDevices). Thus we can prohibit deleting the device from driver->activePciHostdevs if it's still used by other domain when stopping the domain process. * src/pci.h (define two internal functions, pciDeviceSetUsedBy and pciDevceGetUsedBy) * src/pci.c (new field "const char *used_by" for struct _pciDevice, implementations for the two new functions) * src/libvirt_private.syms (Add the two new internal functions) * src/qemu_hostdev.h (Modify the definition of functions qemuPrepareHostdevPCIDevices, and qemuDomainReAttachHostdevDevices) * src/qemu_hostdev.c (Prohibit preparation and don't delete the device from activePciHostdevs list if it's still used by other domain) * src/qemu_hotplug.c (Update function usage, as the definitions are changed) Signed-off-by: Eric Blake <eblake@redhat.com>
2011-10-13 04:05:04 +00:00
const char *name,
const unsigned char *uuid,
virDomainHostdevDef **hostdevs,
int nhostdevs,
virQEMUCaps *qemuCaps,
unsigned int flags);
int qemuHostdevPrepareUSBDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs,
unsigned int flags);
int qemuHostdevPrepareSCSIDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
int qemuHostdevPrepareSCSIVHostDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
int qemuHostdevPrepareMediatedDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
int qemuHostdevPrepareDomainDevices(virQEMUDriver *driver,
virDomainDef *def,
virQEMUCaps *qemuCaps,
unsigned int flags);
void qemuHostdevReAttachOneNVMeDisk(virQEMUDriver *driver,
const char *name,
virStorageSource *src);
void qemuHostdevReAttachNVMeDisks(virQEMUDriver *driver,
const char *name,
virDomainDiskDef **disks,
size_t ndisks);
void qemuHostdevReAttachPCIDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
void qemuHostdevReAttachUSBDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
void qemuHostdevReAttachSCSIDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
void qemuHostdevReAttachSCSIVHostDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
void qemuHostdevReAttachMediatedDevices(virQEMUDriver *driver,
const char *name,
virDomainHostdevDef **hostdevs,
int nhostdevs);
void qemuHostdevReAttachDomainDevices(virQEMUDriver *driver,
virDomainDef *def);