mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 02:41:14 +00:00
7382a7c2be
Recently virtio-9p support was added to bhyve. On the host side it looks this way: bhyve .... -s 25:0,virtio-9p,sharename=/path/to/shared/dir It could also have ",ro" suffix to make share read-only. In the Linux guest, this share is mounted with: mount -t 9p sharename /mnt/sharename In the guest user will see the same permissions and ownership information for this directory as on the host. No uid/gid remapping is supported, so those could resolve to wrong user or group names. The same applies to the other side: chowning/chmodding in the guest will set specified ownership and permissions on the host. In libvirt domain XML it's modeled using the 'filesystem' element: <filesystem type='mount'> <source dir='/path/to/shared/dir'/> <target dir='sharename'/> </filesystem> Optional 'readonly' sub-element enables read-only mode. Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
221 lines
7.6 KiB
C
221 lines
7.6 KiB
C
/*
|
|
* bhyve_device.c: bhyve device management
|
|
*
|
|
* Copyright (C) 2014 Roman Bogorodskiy
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "bhyve_device.h"
|
|
#include "domain_addr.h"
|
|
#include "viralloc.h"
|
|
#include "virlog.h"
|
|
#include "virstring.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_BHYVE
|
|
|
|
VIR_LOG_INIT("bhyve.bhyve_device");
|
|
|
|
static int
|
|
bhyveCollectPCIAddress(virDomainDefPtr def G_GNUC_UNUSED,
|
|
virDomainDeviceDefPtr device G_GNUC_UNUSED,
|
|
virDomainDeviceInfoPtr info,
|
|
void *opaque)
|
|
{
|
|
if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE)
|
|
return 0;
|
|
|
|
virDomainPCIAddressSetPtr addrs = opaque;
|
|
virPCIDeviceAddressPtr addr = &info->addr.pci;
|
|
|
|
if (addr->domain == 0 && addr->bus == 0 && addr->slot == 0) {
|
|
return 0;
|
|
}
|
|
|
|
if (virDomainPCIAddressReserveAddr(addrs, addr,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE, 0) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
virDomainPCIAddressSetPtr
|
|
bhyveDomainPCIAddressSetCreate(virDomainDefPtr def, unsigned int nbuses)
|
|
{
|
|
virDomainPCIAddressSetPtr addrs;
|
|
|
|
if ((addrs = virDomainPCIAddressSetAlloc(nbuses,
|
|
VIR_PCI_ADDRESS_EXTENSION_NONE)) == NULL)
|
|
return NULL;
|
|
|
|
if (virDomainPCIAddressBusSetModel(&addrs->buses[0],
|
|
VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT,
|
|
true) < 0)
|
|
goto error;
|
|
|
|
if (virDomainDeviceInfoIterate(def, bhyveCollectPCIAddress, addrs) < 0)
|
|
goto error;
|
|
|
|
return addrs;
|
|
|
|
error:
|
|
virDomainPCIAddressSetFree(addrs);
|
|
return NULL;
|
|
}
|
|
|
|
static int
|
|
bhyveAssignDevicePCISlots(virDomainDefPtr def,
|
|
virDomainPCIAddressSetPtr addrs)
|
|
{
|
|
size_t i;
|
|
virPCIDeviceAddress lpc_addr;
|
|
|
|
memset(&lpc_addr, 0, sizeof(lpc_addr));
|
|
lpc_addr.slot = 0x1;
|
|
|
|
/* If the user didn't explicitly specify slot 1 for some of the devices,
|
|
reserve it for LPC, even if there's no LPC device configured.
|
|
If the slot 1 is used by some other device, LPC will have an address
|
|
auto-assigned.
|
|
|
|
The idea behind that is to try to use slot 1 for the LPC device unless
|
|
user specifically configured otherwise.*/
|
|
if (!virDomainPCIAddressSlotInUse(addrs, &lpc_addr)) {
|
|
if (virDomainPCIAddressReserveAddr(addrs, &lpc_addr,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE, 0) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
for (i = 0; i < def->ncontrollers; i++) {
|
|
if ((def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_ISA) &&
|
|
virDeviceInfoPCIAddressIsWanted(&def->controllers[i]->info)) {
|
|
def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
|
|
def->controllers[i]->info.addr.pci = lpc_addr;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < def->ncontrollers; i++) {
|
|
if ((def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI) ||
|
|
(def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_SATA) ||
|
|
((def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_USB) &&
|
|
(def->controllers[i]->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI)) ||
|
|
def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_ISA) {
|
|
if (def->controllers[i]->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT ||
|
|
!virDeviceInfoPCIAddressIsWanted(&def->controllers[i]->info))
|
|
continue;
|
|
|
|
if (virDomainPCIAddressReserveNextAddr(addrs,
|
|
&def->controllers[i]->info,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE,
|
|
-1) < 0)
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < def->nnets; i++) {
|
|
if (!virDeviceInfoPCIAddressIsWanted(&def->nets[i]->info))
|
|
continue;
|
|
if (virDomainPCIAddressReserveNextAddr(addrs,
|
|
&def->nets[i]->info,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE,
|
|
-1) < 0)
|
|
return -1;
|
|
}
|
|
|
|
for (i = 0; i < def->ndisks; i++) {
|
|
/* We only handle virtio disk addresses as SATA disks are
|
|
* attached to a controller and don't have their own PCI
|
|
* addresses */
|
|
if (def->disks[i]->bus != VIR_DOMAIN_DISK_BUS_VIRTIO)
|
|
continue;
|
|
|
|
if (def->disks[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
|
|
!virPCIDeviceAddressIsEmpty(&def->disks[i]->info.addr.pci))
|
|
continue;
|
|
if (virDomainPCIAddressReserveNextAddr(addrs, &def->disks[i]->info,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE,
|
|
-1) < 0)
|
|
return -1;
|
|
}
|
|
|
|
for (i = 0; i < def->nvideos; i++) {
|
|
if (!virDeviceInfoPCIAddressIsWanted(&def->videos[i]->info))
|
|
continue;
|
|
if (virDomainPCIAddressReserveNextAddr(addrs,
|
|
&def->videos[i]->info,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE,
|
|
-1) < 0)
|
|
return -1;
|
|
}
|
|
|
|
for (i = 0; i < def->nsounds; i++) {
|
|
if (!virDeviceInfoPCIAddressIsWanted(&def->sounds[i]->info))
|
|
continue;
|
|
if (virDomainPCIAddressReserveNextAddr(addrs,
|
|
&def->sounds[i]->info,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE,
|
|
-1) < 0)
|
|
return -1;
|
|
}
|
|
|
|
for (i = 0; i < def->nfss; i++) {
|
|
if (!virDeviceInfoPCIAddressIsWanted(&def->fss[i]->info))
|
|
continue;
|
|
if (virDomainPCIAddressReserveNextAddr(addrs,
|
|
&def->fss[i]->info,
|
|
VIR_PCI_CONNECT_TYPE_PCI_DEVICE,
|
|
-1) < 0)
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bhyveDomainAssignPCIAddresses(virDomainDefPtr def,
|
|
virDomainObjPtr obj)
|
|
{
|
|
virDomainPCIAddressSetPtr addrs = NULL;
|
|
bhyveDomainObjPrivatePtr priv = NULL;
|
|
|
|
if (!(addrs = bhyveDomainPCIAddressSetCreate(def, 1)))
|
|
return -1;
|
|
|
|
if (bhyveAssignDevicePCISlots(def, addrs) < 0)
|
|
return -1;
|
|
|
|
if (obj && obj->privateData) {
|
|
priv = obj->privateData;
|
|
if (addrs) {
|
|
virDomainPCIAddressSetFree(priv->pciaddrs);
|
|
priv->persistentAddrs = 1;
|
|
priv->pciaddrs = addrs;
|
|
} else {
|
|
priv->persistentAddrs = 0;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bhyveDomainAssignAddresses(virDomainDefPtr def, virDomainObjPtr obj)
|
|
{
|
|
return bhyveDomainAssignPCIAddresses(def, obj);
|
|
}
|