mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-08-27 21:50:11 +03:00
bhyve: create capabilities submodule
- Move all capabilities functions to separate file - Add initCPU
This commit is contained in:
committed by
Michal Privoznik
parent
36cf8174b6
commit
b15a2bbd64
@ -778,6 +778,8 @@ PARALLELS_DRIVER_SOURCES = \
|
|||||||
parallels/parallels_network.c
|
parallels/parallels_network.c
|
||||||
|
|
||||||
BHYVE_DRIVER_SOURCES = \
|
BHYVE_DRIVER_SOURCES = \
|
||||||
|
bhyve/bhyve_capabilities.c \
|
||||||
|
bhyve/bhyve_capabilities.h \
|
||||||
bhyve/bhyve_command.c \
|
bhyve/bhyve_command.c \
|
||||||
bhyve/bhyve_command.h \
|
bhyve/bhyve_command.h \
|
||||||
bhyve/bhyve_driver.h \
|
bhyve/bhyve_driver.h \
|
||||||
|
105
src/bhyve/bhyve_capabilities.c
Normal file
105
src/bhyve/bhyve_capabilities.c
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
/*
|
||||||
|
* bhyve_capabilities.c: bhyve capabilities module
|
||||||
|
*
|
||||||
|
* 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 <sys/utsname.h>
|
||||||
|
|
||||||
|
#include "viralloc.h"
|
||||||
|
#include "virlog.h"
|
||||||
|
#include "virstring.h"
|
||||||
|
#include "cpu/cpu.h"
|
||||||
|
#include "nodeinfo.h"
|
||||||
|
#include "bhyve_utils.h"
|
||||||
|
#include "domain_conf.h"
|
||||||
|
#include "vircommand.h"
|
||||||
|
#include "bhyve_capabilities.h"
|
||||||
|
|
||||||
|
#define VIR_FROM_THIS VIR_FROM_BHYVE
|
||||||
|
|
||||||
|
VIR_LOG_INIT("bhyve.bhyve_capabilities");
|
||||||
|
|
||||||
|
static int
|
||||||
|
virBhyveCapsInitCPU(virCapsPtr caps,
|
||||||
|
virArch arch)
|
||||||
|
{
|
||||||
|
virCPUDefPtr cpu = NULL;
|
||||||
|
virCPUDataPtr data = NULL;
|
||||||
|
virNodeInfo nodeinfo;
|
||||||
|
int ret = -1;
|
||||||
|
|
||||||
|
if (VIR_ALLOC(cpu) < 0)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
cpu->arch = arch;
|
||||||
|
|
||||||
|
if (nodeGetInfo(&nodeinfo))
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
cpu->type = VIR_CPU_TYPE_HOST;
|
||||||
|
cpu->sockets = nodeinfo.sockets;
|
||||||
|
cpu->cores = nodeinfo.cores;
|
||||||
|
cpu->threads = nodeinfo.threads;
|
||||||
|
caps->host.cpu = cpu;
|
||||||
|
|
||||||
|
if (!(data = cpuNodeData(arch)) ||
|
||||||
|
cpuDecode(cpu, data, NULL, 0, NULL) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
cleanup:
|
||||||
|
cpuDataFree(data);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
error:
|
||||||
|
virCPUDefFree(cpu);
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
|
virCapsPtr
|
||||||
|
virBhyveCapsBuild(void)
|
||||||
|
{
|
||||||
|
virCapsPtr caps;
|
||||||
|
virCapsGuestPtr guest;
|
||||||
|
|
||||||
|
if ((caps = virCapabilitiesNew(virArchFromHost(),
|
||||||
|
0, 0)) == NULL)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if ((guest = virCapabilitiesAddGuest(caps, "hvm",
|
||||||
|
VIR_ARCH_X86_64,
|
||||||
|
"bhyve",
|
||||||
|
NULL, 0, NULL)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
if (virCapabilitiesAddGuestDomain(guest,
|
||||||
|
"bhyve", NULL, NULL, 0, NULL) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
if (virBhyveCapsInitCPU(caps, virArchFromHost()) < 0)
|
||||||
|
VIR_WARN("Failed to get host CPU");
|
||||||
|
|
||||||
|
return caps;
|
||||||
|
|
||||||
|
error:
|
||||||
|
virObjectUnref(caps);
|
||||||
|
return NULL;
|
||||||
|
}
|
29
src/bhyve/bhyve_capabilities.h
Normal file
29
src/bhyve/bhyve_capabilities.h
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* bhyve_capabilities.h: bhyve capabilities module
|
||||||
|
*
|
||||||
|
* Copyright (C) 2014 Semihalf
|
||||||
|
*
|
||||||
|
* 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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _BHYVE_CAPABILITIES
|
||||||
|
# define _BHYVE_CAPABILITIES
|
||||||
|
|
||||||
|
# include "capabilities.h"
|
||||||
|
|
||||||
|
virCapsPtr virBhyveCapsBuild(void);
|
||||||
|
|
||||||
|
#endif
|
@ -54,6 +54,7 @@
|
|||||||
#include "bhyve_driver.h"
|
#include "bhyve_driver.h"
|
||||||
#include "bhyve_process.h"
|
#include "bhyve_process.h"
|
||||||
#include "bhyve_utils.h"
|
#include "bhyve_utils.h"
|
||||||
|
#include "bhyve_capabilities.h"
|
||||||
|
|
||||||
#define VIR_FROM_THIS VIR_FROM_BHYVE
|
#define VIR_FROM_THIS VIR_FROM_BHYVE
|
||||||
|
|
||||||
@ -111,44 +112,49 @@ bhyveAutostartDomains(bhyveConnPtr driver)
|
|||||||
virObjectUnref(conn);
|
virObjectUnref(conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* bhyveDriverGetCapabilities:
|
||||||
|
*
|
||||||
|
* Get a reference to the virCapsPtr instance for the
|
||||||
|
* driver.
|
||||||
|
*
|
||||||
|
* The caller must release the reference with virObjetUnref
|
||||||
|
*
|
||||||
|
* Returns: a reference to a virCapsPtr instance or NULL
|
||||||
|
*/
|
||||||
static virCapsPtr
|
static virCapsPtr
|
||||||
bhyveBuildCapabilities(void)
|
bhyveDriverGetCapabilities(bhyveConnPtr driver)
|
||||||
{
|
{
|
||||||
virCapsPtr caps;
|
virCapsPtr ret = NULL;
|
||||||
virCapsGuestPtr guest;
|
|
||||||
|
|
||||||
if ((caps = virCapabilitiesNew(virArchFromHost(),
|
if (driver == NULL)
|
||||||
0, 0)) == NULL)
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if ((guest = virCapabilitiesAddGuest(caps, "hvm",
|
ret = virObjectRef(driver->caps);
|
||||||
VIR_ARCH_X86_64,
|
|
||||||
"bhyve",
|
|
||||||
NULL, 0, NULL)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
if (virCapabilitiesAddGuestDomain(guest,
|
return ret;
|
||||||
"bhyve", NULL, NULL, 0, NULL) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
return caps;
|
|
||||||
|
|
||||||
error:
|
|
||||||
virObjectUnref(caps);
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
bhyveConnectGetCapabilities(virConnectPtr conn)
|
bhyveConnectGetCapabilities(virConnectPtr conn)
|
||||||
{
|
{
|
||||||
bhyveConnPtr privconn = conn->privateData;
|
bhyveConnPtr privconn = conn->privateData;
|
||||||
|
virCapsPtr caps;
|
||||||
char *xml;
|
char *xml;
|
||||||
|
|
||||||
if (virConnectGetCapabilitiesEnsureACL(conn) < 0)
|
if (virConnectGetCapabilitiesEnsureACL(conn) < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if ((xml = virCapabilitiesFormatXML(privconn->caps)) == NULL)
|
caps = bhyveDriverGetCapabilities(privconn);
|
||||||
|
if (!caps)
|
||||||
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||||
|
_("Unable to get Capabilities"));
|
||||||
|
|
||||||
|
if ((xml = virCapabilitiesFormatXML(privconn->caps)) == NULL) {
|
||||||
|
virObjectUnref(caps);
|
||||||
virReportOOMError();
|
virReportOOMError();
|
||||||
|
}
|
||||||
|
virObjectUnref(caps);
|
||||||
|
|
||||||
return xml;
|
return xml;
|
||||||
}
|
}
|
||||||
@ -448,8 +454,13 @@ bhyveDomainDefineXML(virConnectPtr conn, const char *xml)
|
|||||||
virDomainDefPtr def = NULL;
|
virDomainDefPtr def = NULL;
|
||||||
virDomainDefPtr oldDef = NULL;
|
virDomainDefPtr oldDef = NULL;
|
||||||
virDomainObjPtr vm = NULL;
|
virDomainObjPtr vm = NULL;
|
||||||
|
virCapsPtr caps = NULL;
|
||||||
|
|
||||||
if ((def = virDomainDefParseString(xml, privconn->caps, privconn->xmlopt,
|
caps = bhyveDriverGetCapabilities(privconn);
|
||||||
|
if (!caps)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if ((def = virDomainDefParseString(xml, caps, privconn->xmlopt,
|
||||||
1 << VIR_DOMAIN_VIRT_BHYVE,
|
1 << VIR_DOMAIN_VIRT_BHYVE,
|
||||||
VIR_DOMAIN_XML_INACTIVE)) == NULL)
|
VIR_DOMAIN_XML_INACTIVE)) == NULL)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
@ -472,6 +483,7 @@ bhyveDomainDefineXML(virConnectPtr conn, const char *xml)
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
virObjectUnref(caps);
|
||||||
virDomainDefFree(def);
|
virDomainDefFree(def);
|
||||||
virObjectUnlock(vm);
|
virObjectUnlock(vm);
|
||||||
|
|
||||||
@ -869,7 +881,7 @@ bhyveStateInitialize(bool priveleged ATTRIBUTE_UNUSED,
|
|||||||
if (!(bhyve_driver->closeCallbacks = virCloseCallbacksNew()))
|
if (!(bhyve_driver->closeCallbacks = virCloseCallbacksNew()))
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (!(bhyve_driver->caps = bhyveBuildCapabilities()))
|
if (!(bhyve_driver->caps = virBhyveCapsBuild()))
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (!(bhyve_driver->xmlopt = virDomainXMLOptionNew(NULL, NULL, NULL)))
|
if (!(bhyve_driver->xmlopt = virDomainXMLOptionNew(NULL, NULL, NULL)))
|
||||||
|
Reference in New Issue
Block a user