2014-02-18 10:08:10 +00:00
|
|
|
/*
|
|
|
|
* bhyve_driver.c: core driver methods for managing bhyve guests
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Roman Bogorodskiy
|
2014-04-07 15:25:49 +00:00
|
|
|
* Copyright (C) 2014 Red Hat, Inc.
|
2014-02-18 10:08:10 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* Author: Roman Bogorodskiy
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2014-03-15 12:30:01 +00:00
|
|
|
#include <fcntl.h>
|
2014-02-18 10:08:10 +00:00
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
|
|
|
#include "virerror.h"
|
|
|
|
#include "datatypes.h"
|
|
|
|
#include "virbuffer.h"
|
|
|
|
#include "viruuid.h"
|
|
|
|
#include "capabilities.h"
|
|
|
|
#include "configmake.h"
|
|
|
|
#include "viralloc.h"
|
|
|
|
#include "network_conf.h"
|
|
|
|
#include "interface_conf.h"
|
|
|
|
#include "domain_audit.h"
|
2014-04-23 11:55:05 +00:00
|
|
|
#include "domain_event.h"
|
2014-02-18 10:08:10 +00:00
|
|
|
#include "domain_conf.h"
|
|
|
|
#include "snapshot_conf.h"
|
|
|
|
#include "fdstream.h"
|
|
|
|
#include "storage_conf.h"
|
|
|
|
#include "node_device_conf.h"
|
|
|
|
#include "virxml.h"
|
|
|
|
#include "virthread.h"
|
|
|
|
#include "virlog.h"
|
|
|
|
#include "virfile.h"
|
|
|
|
#include "virtypedparam.h"
|
|
|
|
#include "virrandom.h"
|
|
|
|
#include "virstring.h"
|
|
|
|
#include "cpu/cpu.h"
|
|
|
|
#include "viraccessapicheck.h"
|
2014-02-24 08:23:27 +00:00
|
|
|
#include "nodeinfo.h"
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
#include "bhyve_device.h"
|
2014-02-18 10:08:10 +00:00
|
|
|
#include "bhyve_driver.h"
|
2014-04-13 09:48:17 +00:00
|
|
|
#include "bhyve_command.h"
|
2014-04-12 19:37:53 +00:00
|
|
|
#include "bhyve_domain.h"
|
2014-02-18 10:08:10 +00:00
|
|
|
#include "bhyve_process.h"
|
|
|
|
#include "bhyve_utils.h"
|
2014-04-07 05:06:40 +00:00
|
|
|
#include "bhyve_capabilities.h"
|
2014-02-18 10:08:10 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_BHYVE
|
|
|
|
|
2014-02-28 12:16:17 +00:00
|
|
|
VIR_LOG_INIT("bhyve.bhyve_driver");
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
bhyveConnPtr bhyve_driver = NULL;
|
|
|
|
|
|
|
|
void
|
|
|
|
bhyveDriverLock(bhyveConnPtr driver)
|
|
|
|
{
|
|
|
|
virMutexLock(&driver->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bhyveDriverUnlock(bhyveConnPtr driver)
|
|
|
|
{
|
|
|
|
virMutexUnlock(&driver->lock);
|
|
|
|
}
|
|
|
|
|
2014-03-23 09:16:09 +00:00
|
|
|
static int
|
|
|
|
bhyveAutostartDomain(virDomainObjPtr vm, void *opaque)
|
|
|
|
{
|
|
|
|
const struct bhyveAutostartData *data = opaque;
|
|
|
|
int ret = 0;
|
|
|
|
virObjectLock(vm);
|
|
|
|
if (vm->autostart && !virDomainObjIsActive(vm)) {
|
|
|
|
virResetLastError();
|
|
|
|
ret = virBhyveProcessStart(data->conn, data->driver, vm,
|
|
|
|
VIR_DOMAIN_RUNNING_BOOTED, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
virErrorPtr err = virGetLastError();
|
|
|
|
VIR_ERROR(_("Failed to autostart VM '%s': %s"),
|
|
|
|
vm->def->name, err ? err->message : _("unknown error"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virObjectUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bhyveAutostartDomains(bhyveConnPtr driver)
|
|
|
|
{
|
|
|
|
/* XXX: Figure out a better way todo this. The domain
|
|
|
|
* startup code needs a connection handle in order
|
|
|
|
* to lookup the bridge associated with a virtual
|
|
|
|
* network
|
|
|
|
*/
|
|
|
|
virConnectPtr conn = virConnectOpen("bhyve:///system");
|
|
|
|
/* Ignoring NULL conn which is mostly harmless here */
|
|
|
|
|
|
|
|
struct bhyveAutostartData data = { driver, conn };
|
|
|
|
|
|
|
|
virDomainObjListForEach(driver->domains, bhyveAutostartDomain, &data);
|
|
|
|
|
|
|
|
virObjectUnref(conn);
|
|
|
|
}
|
|
|
|
|
2014-04-07 05:06:40 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2014-04-08 16:30:23 +00:00
|
|
|
static virCapsPtr ATTRIBUTE_NONNULL(1)
|
|
|
|
bhyveDriverGetCapabilities(bhyveConnPtr driver)
|
2014-02-18 10:08:10 +00:00
|
|
|
{
|
|
|
|
|
2014-04-07 15:25:49 +00:00
|
|
|
return virObjectRef(driver->caps);
|
2014-02-18 10:08:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
bhyveConnectGetCapabilities(virConnectPtr conn)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
2014-04-07 05:06:40 +00:00
|
|
|
virCapsPtr caps;
|
2014-04-07 15:29:18 +00:00
|
|
|
char *xml = NULL;
|
2014-02-18 10:08:10 +00:00
|
|
|
|
|
|
|
if (virConnectGetCapabilitiesEnsureACL(conn) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
2014-04-07 15:29:18 +00:00
|
|
|
if (!(caps = bhyveDriverGetCapabilities(privconn))) {
|
2014-04-07 05:06:40 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Unable to get Capabilities"));
|
2014-04-07 15:29:18 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2014-04-07 05:06:40 +00:00
|
|
|
|
2014-06-27 07:55:44 +00:00
|
|
|
if (!(xml = virCapabilitiesFormatXML(caps)))
|
2014-04-07 15:29:18 +00:00
|
|
|
goto cleanup;
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-07 15:29:18 +00:00
|
|
|
cleanup:
|
|
|
|
virObjectUnref(caps);
|
2014-02-18 10:08:10 +00:00
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainObjPtr
|
|
|
|
bhyveDomObjFromDomain(virDomainPtr domain)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
bhyveConnPtr privconn = domain->conn->privateData;
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
|
|
|
|
vm = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
|
|
|
|
if (!vm) {
|
|
|
|
virUUIDFormat(domain->uuid, uuidstr);
|
|
|
|
virReportError(VIR_ERR_NO_DOMAIN,
|
|
|
|
_("no domain with matching uuid '%s' (%s)"),
|
|
|
|
uuidstr, domain->name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return vm;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDrvOpenStatus
|
|
|
|
bhyveConnectOpen(virConnectPtr conn,
|
|
|
|
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
|
|
|
|
|
|
|
|
if (conn->uri == NULL) {
|
|
|
|
if (bhyve_driver == NULL)
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
if (!(conn->uri = virURIParse("bhyve:///system")))
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
} else {
|
|
|
|
if (!conn->uri->scheme || STRNEQ(conn->uri->scheme, "bhyve"))
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
if (conn->uri->server)
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
if (!STREQ_NULLABLE(conn->uri->path, "/system")) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Unexpected bhyve URI path '%s', try bhyve:///system"),
|
|
|
|
conn->uri->path);
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bhyve_driver == NULL) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("bhyve state driver is not active"));
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virConnectOpenEnsureACL(conn) < 0)
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
|
|
|
|
conn->privateData = bhyve_driver;
|
|
|
|
|
|
|
|
return VIR_DRV_OPEN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveConnectClose(virConnectPtr conn)
|
|
|
|
{
|
2014-03-18 09:31:48 +00:00
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
|
|
|
|
virCloseCallbacksRun(privconn->closeCallbacks, conn, privconn->domains, privconn);
|
2014-02-18 10:08:10 +00:00
|
|
|
conn->privateData = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
bhyveConnectGetHostname(virConnectPtr conn ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
if (virConnectGetHostnameEnsureACL(conn) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return virGetHostname();
|
|
|
|
}
|
|
|
|
|
2014-04-23 09:24:05 +00:00
|
|
|
static char *
|
|
|
|
bhyveConnectGetSysinfo(virConnectPtr conn, unsigned int flags)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
|
|
|
|
virCheckFlags(0, NULL);
|
|
|
|
|
|
|
|
if (virConnectGetSysinfoEnsureACL(conn) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!privconn->hostsysinfo) {
|
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("Host SMBIOS information is not available"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virSysinfoFormat(&buf, privconn->hostsysinfo) < 0)
|
|
|
|
return NULL;
|
2014-06-27 08:40:15 +00:00
|
|
|
if (virBufferCheckError(&buf) < 0)
|
2014-04-23 09:24:05 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return virBufferContentAndReset(&buf);
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static int
|
|
|
|
bhyveConnectGetVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
|
|
|
|
{
|
|
|
|
struct utsname ver;
|
|
|
|
|
|
|
|
if (virConnectGetVersionEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
uname(&ver);
|
|
|
|
|
|
|
|
if (virParseVersionString(ver.release, version, true) < 0) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Unknown release: %s"), ver.release);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainGetInfoEnsureACL(domain->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-21 10:59:58 +00:00
|
|
|
if (virDomainObjIsActive(vm)) {
|
|
|
|
if (virBhyveGetDomainTotalCpuStats(vm, &(info->cpuTime)) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
} else {
|
|
|
|
info->cpuTime = 0;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
info->state = virDomainObjGetState(vm, NULL);
|
|
|
|
info->maxMem = vm->def->mem.max_balloon;
|
|
|
|
info->nrVirtCpu = vm->def->vcpus;
|
|
|
|
ret = 0;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-02-18 10:08:10 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveDomainGetState(virDomainPtr domain,
|
|
|
|
int *state,
|
|
|
|
int *reason,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainGetStateEnsureACL(domain->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
*state = virDomainObjGetState(vm, reason);
|
|
|
|
ret = 0;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-02-18 10:08:10 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-23 09:16:09 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainGetAutostart(virDomainPtr domain, int *autostart)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainGetAutostartEnsureACL(domain->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
*autostart = vm->autostart;
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-03-23 09:16:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveDomainSetAutostart(virDomainPtr domain, int autostart)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
char *configFile = NULL;
|
|
|
|
char *autostartLink = NULL;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainSetAutostartEnsureACL(domain->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!vm->persistent) {
|
|
|
|
virReportError(VIR_ERR_OPERATION_INVALID, "%s",
|
|
|
|
_("cannot set autostart for transient domain"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
autostart = (autostart != 0);
|
|
|
|
|
|
|
|
if (vm->autostart != autostart) {
|
|
|
|
if ((configFile = virDomainConfigFile(BHYVE_CONFIG_DIR, vm->def->name)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
if ((autostartLink = virDomainConfigFile(BHYVE_AUTOSTART_DIR, vm->def->name)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (autostart) {
|
|
|
|
if (virFileMakePath(BHYVE_AUTOSTART_DIR) < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("cannot create autostart directory %s"),
|
|
|
|
BHYVE_AUTOSTART_DIR);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (symlink(configFile, autostartLink) < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("Failed to create symlink '%s' to '%s'"),
|
|
|
|
autostartLink, configFile);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("Failed to delete symlink '%s'"),
|
|
|
|
autostartLink);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vm->autostart = autostart;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
VIR_FREE(configFile);
|
|
|
|
VIR_FREE(autostartLink);
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-03-23 09:16:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-28 19:18:43 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainIsActive(virDomainPtr domain)
|
|
|
|
{
|
|
|
|
virDomainObjPtr obj;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(obj = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainIsActiveEnsureACL(domain->conn, obj->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = virDomainObjIsActive(obj);
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (obj)
|
|
|
|
virObjectUnlock(obj);
|
2014-02-28 19:18:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveDomainIsPersistent(virDomainPtr domain)
|
|
|
|
{
|
|
|
|
virDomainObjPtr obj;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(obj = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainIsPersistentEnsureACL(domain->conn, obj->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = obj->persistent;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (obj)
|
|
|
|
virObjectUnlock(obj);
|
2014-02-28 19:18:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static char *
|
|
|
|
bhyveDomainGetXMLDesc(virDomainPtr domain, unsigned int flags)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainGetXMLDescEnsureACL(domain->conn, vm->def, flags) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = virDomainDefFormat(vm->def, flags);
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-02-18 10:08:10 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
bhyveDomainDefineXML(virConnectPtr conn, const char *xml)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virDomainPtr dom = NULL;
|
|
|
|
virDomainDefPtr def = NULL;
|
|
|
|
virDomainDefPtr oldDef = NULL;
|
|
|
|
virDomainObjPtr vm = NULL;
|
2014-04-23 11:55:05 +00:00
|
|
|
virObjectEventPtr event = NULL;
|
2014-04-07 05:06:40 +00:00
|
|
|
virCapsPtr caps = NULL;
|
|
|
|
|
|
|
|
caps = bhyveDriverGetCapabilities(privconn);
|
|
|
|
if (!caps)
|
|
|
|
return NULL;
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-07 05:06:40 +00:00
|
|
|
if ((def = virDomainDefParseString(xml, caps, privconn->xmlopt,
|
2014-02-18 10:08:10 +00:00
|
|
|
1 << VIR_DOMAIN_VIRT_BHYVE,
|
|
|
|
VIR_DOMAIN_XML_INACTIVE)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainDefineXMLEnsureACL(conn, def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
if (bhyveDomainAssignAddresses(def, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
if (!(vm = virDomainObjListAdd(privconn->domains, def,
|
|
|
|
privconn->xmlopt,
|
|
|
|
0, &oldDef)))
|
|
|
|
goto cleanup;
|
|
|
|
def = NULL;
|
2014-03-01 06:58:58 +00:00
|
|
|
vm->persistent = 1;
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-21 16:15:26 +00:00
|
|
|
if (virDomainSaveConfig(BHYVE_CONFIG_DIR,
|
|
|
|
vm->newDef ? vm->newDef : vm->def) < 0) {
|
|
|
|
virDomainObjListRemove(privconn->domains, vm);
|
|
|
|
vm = NULL;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-04-23 11:55:05 +00:00
|
|
|
event = virDomainEventLifecycleNewFromObj(vm,
|
|
|
|
VIR_DOMAIN_EVENT_DEFINED,
|
|
|
|
!oldDef ?
|
|
|
|
VIR_DOMAIN_EVENT_DEFINED_ADDED :
|
|
|
|
VIR_DOMAIN_EVENT_DEFINED_UPDATED);
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-04-07 05:06:40 +00:00
|
|
|
virObjectUnref(caps);
|
2014-02-18 10:08:10 +00:00
|
|
|
virDomainDefFree(def);
|
2014-04-21 16:15:26 +00:00
|
|
|
virDomainDefFree(oldDef);
|
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-04-23 11:55:05 +00:00
|
|
|
if (event)
|
|
|
|
virObjectEventStateQueue(privconn->domainEventState, event);
|
2014-02-18 10:08:10 +00:00
|
|
|
|
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
2014-02-28 19:18:43 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainUndefine(virDomainPtr domain)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = domain->conn->privateData;
|
2014-04-23 11:55:05 +00:00
|
|
|
virObjectEventPtr event = NULL;
|
2014-02-28 19:18:43 +00:00
|
|
|
virDomainObjPtr vm;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(domain)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainUndefineEnsureACL(domain->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!vm->persistent) {
|
|
|
|
virReportError(VIR_ERR_OPERATION_INVALID,
|
|
|
|
"%s", _("Cannot undefine transient domain"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virDomainDeleteConfig(BHYVE_CONFIG_DIR,
|
|
|
|
BHYVE_AUTOSTART_DIR,
|
|
|
|
vm) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-23 11:55:05 +00:00
|
|
|
event = virDomainEventLifecycleNewFromObj(vm,
|
|
|
|
VIR_DOMAIN_EVENT_UNDEFINED,
|
|
|
|
VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);
|
|
|
|
|
2014-02-28 19:18:43 +00:00
|
|
|
if (virDomainObjIsActive(vm)) {
|
|
|
|
vm->persistent = 0;
|
|
|
|
} else {
|
|
|
|
virDomainObjListRemove(privconn->domains, vm);
|
|
|
|
vm = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-04-23 11:55:05 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
|
|
|
if (event)
|
|
|
|
virObjectEventStateQueue(privconn->domainEventState, event);
|
2014-02-28 19:18:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static int
|
|
|
|
bhyveConnectListDomains(virConnectPtr conn, int *ids, int maxids)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (virConnectListDomainsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
n = virDomainObjListGetActiveIDs(privconn->domains, ids, maxids,
|
|
|
|
virConnectListDomainsCheckACL, conn);
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveConnectNumOfDomains(virConnectPtr conn)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
if (virConnectNumOfDomainsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
count = virDomainObjListNumOfDomains(privconn->domains, true,
|
|
|
|
virConnectNumOfDomainsCheckACL, conn);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveConnectListDefinedDomains(virConnectPtr conn, char **const names,
|
|
|
|
int maxnames)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (virConnectListDefinedDomainsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
memset(names, 0, sizeof(*names) * maxnames);
|
|
|
|
n = virDomainObjListGetInactiveNames(privconn->domains, names,
|
|
|
|
maxnames, virConnectListDefinedDomainsCheckACL, conn);
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveConnectNumOfDefinedDomains(virConnectPtr conn)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
if (virConnectNumOfDefinedDomainsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
count = virDomainObjListNumOfDomains(privconn->domains, false,
|
|
|
|
virConnectNumOfDefinedDomainsCheckACL, conn);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2014-04-13 09:48:17 +00:00
|
|
|
static char *
|
|
|
|
bhyveConnectDomainXMLToNative(virConnectPtr conn,
|
|
|
|
const char *format,
|
|
|
|
const char *xmlData,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virDomainDefPtr def = NULL;
|
|
|
|
virCommandPtr cmd = NULL, loadcmd = NULL;
|
|
|
|
virCapsPtr caps = NULL;
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
virCheckFlags(0, NULL);
|
|
|
|
|
|
|
|
if (virConnectDomainXMLToNativeEnsureACL(conn) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (STRNEQ(format, BHYVE_CONFIG_FORMAT_ARGV)) {
|
|
|
|
virReportError(VIR_ERR_INVALID_ARG,
|
|
|
|
_("Unsupported config type %s"), format);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(caps = bhyveDriverGetCapabilities(privconn)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!(def = virDomainDefParseString(xmlData, caps, privconn->xmlopt,
|
|
|
|
1 << VIR_DOMAIN_VIRT_BHYVE,
|
|
|
|
VIR_DOMAIN_XML_INACTIVE)))
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
if (bhyveDomainAssignAddresses(def, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-11-08 16:48:30 +00:00
|
|
|
if (!(loadcmd = virBhyveProcessBuildLoadCmd(conn, def, "<device.map>",
|
|
|
|
NULL)))
|
2014-04-13 09:48:17 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2014-08-14 16:15:57 +00:00
|
|
|
if (!(cmd = virBhyveProcessBuildBhyveCmd(conn, def, true)))
|
2014-04-13 09:48:17 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
virBufferAdd(&buf, virCommandToString(loadcmd), -1);
|
|
|
|
virBufferAddChar(&buf, '\n');
|
|
|
|
virBufferAdd(&buf, virCommandToString(cmd), -1);
|
|
|
|
|
2014-06-27 08:40:15 +00:00
|
|
|
if (virBufferCheckError(&buf) < 0)
|
2014-04-13 09:48:17 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = virBufferContentAndReset(&buf);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virCommandFree(loadcmd);
|
|
|
|
virCommandFree(cmd);
|
|
|
|
virDomainDefFree(def);
|
|
|
|
virObjectUnref(caps);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static int
|
|
|
|
bhyveConnectListAllDomains(virConnectPtr conn,
|
|
|
|
virDomainPtr **domains,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);
|
|
|
|
|
|
|
|
if (virConnectListAllDomainsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ret = virDomainObjListExport(privconn->domains, conn, domains,
|
|
|
|
virConnectListAllDomainsCheckACL, flags);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
bhyveDomainLookupByUUID(virConnectPtr conn,
|
|
|
|
const unsigned char *uuid)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virDomainPtr dom = NULL;
|
|
|
|
|
|
|
|
vm = virDomainObjListFindByUUID(privconn->domains, uuid);
|
|
|
|
|
|
|
|
if (!vm) {
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virUUIDFormat(uuid, uuidstr);
|
|
|
|
virReportError(VIR_ERR_NO_DOMAIN,
|
|
|
|
_("No domain with matching uuid '%s'"), uuidstr);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virDomainLookupByUUIDEnsureACL(conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-02-18 10:08:10 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr bhyveDomainLookupByName(virConnectPtr conn,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virDomainPtr dom = NULL;
|
|
|
|
|
|
|
|
vm = virDomainObjListFindByName(privconn->domains, name);
|
|
|
|
|
|
|
|
if (!vm) {
|
|
|
|
virReportError(VIR_ERR_NO_DOMAIN,
|
|
|
|
_("no domain with matching name '%s'"), name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virDomainLookupByNameEnsureACL(conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-02-18 10:08:10 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
2014-03-27 07:31:21 +00:00
|
|
|
static virDomainPtr
|
|
|
|
bhyveDomainLookupByID(virConnectPtr conn,
|
|
|
|
int id)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virDomainPtr dom = NULL;
|
|
|
|
|
|
|
|
vm = virDomainObjListFindByID(privconn->domains, id);
|
|
|
|
|
|
|
|
if (!vm) {
|
|
|
|
virReportError(VIR_ERR_NO_DOMAIN,
|
|
|
|
_("No domain with matching ID '%d'"), id);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virDomainLookupByIDEnsureACL(conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
|
|
|
|
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-03-27 07:31:21 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static int
|
2014-03-18 09:31:48 +00:00
|
|
|
bhyveDomainCreateWithFlags(virDomainPtr dom,
|
|
|
|
unsigned int flags)
|
2014-02-18 10:08:10 +00:00
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
2014-04-23 11:55:05 +00:00
|
|
|
virObjectEventPtr event = NULL;
|
2014-03-18 09:31:48 +00:00
|
|
|
unsigned int start_flags = 0;
|
2014-02-18 10:08:10 +00:00
|
|
|
int ret = -1;
|
|
|
|
|
2014-03-18 09:31:48 +00:00
|
|
|
virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);
|
|
|
|
|
|
|
|
if (flags & VIR_DOMAIN_START_AUTODESTROY)
|
|
|
|
start_flags |= VIR_BHYVE_PROCESS_START_AUTODESTROY;
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
if (!(vm = bhyveDomObjFromDomain(dom)))
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-03-18 09:31:48 +00:00
|
|
|
if (virDomainCreateWithFlagsEnsureACL(dom->conn, vm->def) < 0)
|
2014-02-18 10:08:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainObjIsActive(vm)) {
|
|
|
|
virReportError(VIR_ERR_OPERATION_INVALID,
|
|
|
|
"%s", _("Domain is already running"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = virBhyveProcessStart(dom->conn, privconn, vm,
|
2014-03-18 09:31:48 +00:00
|
|
|
VIR_DOMAIN_RUNNING_BOOTED,
|
|
|
|
start_flags);
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-23 11:55:05 +00:00
|
|
|
if (ret == 0)
|
|
|
|
event = virDomainEventLifecycleNewFromObj(vm,
|
|
|
|
VIR_DOMAIN_EVENT_STARTED,
|
|
|
|
VIR_DOMAIN_EVENT_STARTED_BOOTED);
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-04-23 11:55:05 +00:00
|
|
|
if (event)
|
|
|
|
virObjectEventStateQueue(privconn->domainEventState, event);
|
2014-02-18 10:08:10 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-18 09:31:48 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainCreate(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
return bhyveDomainCreateWithFlags(dom, 0);
|
|
|
|
}
|
|
|
|
|
2014-04-10 09:06:38 +00:00
|
|
|
static virDomainPtr
|
|
|
|
bhyveDomainCreateXML(virConnectPtr conn,
|
|
|
|
const char *xml,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
virDomainPtr dom = NULL;
|
|
|
|
virDomainDefPtr def = NULL;
|
|
|
|
virDomainObjPtr vm = NULL;
|
2014-04-23 11:55:05 +00:00
|
|
|
virObjectEventPtr event = NULL;
|
2014-04-10 09:06:38 +00:00
|
|
|
virCapsPtr caps = NULL;
|
|
|
|
unsigned int start_flags = 0;
|
|
|
|
|
|
|
|
virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, NULL);
|
|
|
|
|
|
|
|
if (flags & VIR_DOMAIN_START_AUTODESTROY)
|
|
|
|
start_flags |= VIR_BHYVE_PROCESS_START_AUTODESTROY;
|
|
|
|
|
|
|
|
caps = bhyveDriverGetCapabilities(privconn);
|
|
|
|
if (!caps)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if ((def = virDomainDefParseString(xml, caps, privconn->xmlopt,
|
|
|
|
1 << VIR_DOMAIN_VIRT_BHYVE,
|
|
|
|
VIR_DOMAIN_XML_INACTIVE)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainCreateXMLEnsureACL(conn, def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
if (bhyveDomainAssignAddresses(def, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-10 09:06:38 +00:00
|
|
|
if (!(vm = virDomainObjListAdd(privconn->domains, def,
|
|
|
|
privconn->xmlopt,
|
|
|
|
VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE, NULL)))
|
|
|
|
goto cleanup;
|
|
|
|
def = NULL;
|
|
|
|
|
|
|
|
if (virBhyveProcessStart(conn, privconn, vm,
|
|
|
|
VIR_DOMAIN_RUNNING_BOOTED,
|
|
|
|
start_flags) < 0) {
|
|
|
|
/* If domain is not persistent, remove its data */
|
|
|
|
if (!vm->persistent) {
|
|
|
|
virDomainObjListRemove(privconn->domains, vm);
|
|
|
|
vm = NULL;
|
|
|
|
}
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-04-23 11:55:05 +00:00
|
|
|
event = virDomainEventLifecycleNewFromObj(vm,
|
|
|
|
VIR_DOMAIN_EVENT_STARTED,
|
|
|
|
VIR_DOMAIN_EVENT_STARTED_BOOTED);
|
|
|
|
|
2014-04-10 09:06:38 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(caps);
|
|
|
|
virDomainDefFree(def);
|
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-04-23 11:55:05 +00:00
|
|
|
if (event)
|
|
|
|
virObjectEventStateQueue(privconn->domainEventState, event);
|
2014-04-10 09:06:38 +00:00
|
|
|
|
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainDestroy(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
2014-04-23 11:55:05 +00:00
|
|
|
virObjectEventPtr event = NULL;
|
2014-02-18 10:08:10 +00:00
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(dom)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainDestroyEnsureACL(dom->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-03-15 15:47:15 +00:00
|
|
|
if (!virDomainObjIsActive(vm)) {
|
|
|
|
virReportError(VIR_ERR_OPERATION_INVALID,
|
|
|
|
"%s", _("Domain is not running"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
ret = virBhyveProcessStop(privconn, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
|
2014-04-23 11:55:05 +00:00
|
|
|
event = virDomainEventLifecycleNewFromObj(vm,
|
|
|
|
VIR_DOMAIN_EVENT_STOPPED,
|
|
|
|
VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-09 05:52:11 +00:00
|
|
|
if (!vm->persistent) {
|
|
|
|
virDomainObjListRemove(privconn->domains, vm);
|
|
|
|
vm = NULL;
|
|
|
|
}
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-04-09 05:52:11 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-04-23 11:55:05 +00:00
|
|
|
if (event)
|
|
|
|
virObjectEventStateQueue(privconn->domainEventState, event);
|
2014-02-18 10:08:10 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-15 12:30:01 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainOpenConsole(virDomainPtr dom,
|
|
|
|
const char *dev_name ATTRIBUTE_UNUSED,
|
|
|
|
virStreamPtr st,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
virDomainObjPtr vm = NULL;
|
|
|
|
virDomainChrDefPtr chr = NULL;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(dom)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virDomainOpenConsoleEnsureACL(dom->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!virDomainObjIsActive(vm)) {
|
|
|
|
virReportError(VIR_ERR_OPERATION_INVALID,
|
|
|
|
"%s", _("domain is not running"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vm->def->nserials) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("no console devices available"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
chr = vm->def->serials[0];
|
|
|
|
|
|
|
|
if (virFDStreamOpenPTY(st, chr->source.data.nmdm.slave,
|
|
|
|
0, 0, O_RDWR) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2014-05-17 19:08:14 +00:00
|
|
|
if (vm)
|
|
|
|
virObjectUnlock(vm);
|
2014-03-15 12:30:01 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-04-06 06:07:58 +00:00
|
|
|
static int
|
|
|
|
bhyveDomainSetMetadata(virDomainPtr dom,
|
|
|
|
int type,
|
|
|
|
const char *metadata,
|
|
|
|
const char *key,
|
|
|
|
const char *uri,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virCapsPtr caps = NULL;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
|
|
|
|
VIR_DOMAIN_AFFECT_CONFIG, -1);
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(dom)))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (virDomainSetMetadataEnsureACL(dom->conn, vm->def, flags) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!(caps = bhyveDriverGetCapabilities(privconn)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = virDomainObjSetMetadata(vm, type, metadata, key, uri, caps,
|
2014-07-22 15:41:05 +00:00
|
|
|
privconn->xmlopt, BHYVE_STATE_DIR,
|
|
|
|
BHYVE_CONFIG_DIR, flags);
|
2014-04-06 06:07:58 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(caps);
|
|
|
|
virObjectUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
bhyveDomainGetMetadata(virDomainPtr dom,
|
|
|
|
int type,
|
|
|
|
const char *uri,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virCapsPtr caps = NULL;
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if (!(vm = bhyveDomObjFromDomain(dom)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (virDomainGetMetadataEnsureACL(dom->conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!(caps = bhyveDriverGetCapabilities(privconn)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = virDomainObjGetMetadata(vm, type, uri, caps,
|
|
|
|
privconn->xmlopt, flags);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(caps);
|
|
|
|
virObjectUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-24 08:23:27 +00:00
|
|
|
static int
|
|
|
|
bhyveNodeGetCPUStats(virConnectPtr conn,
|
|
|
|
int cpuNum,
|
|
|
|
virNodeCPUStatsPtr params,
|
|
|
|
int *nparams,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
if (virNodeGetCPUStatsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nodeGetCPUStats(cpuNum, params, nparams, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveNodeGetMemoryStats(virConnectPtr conn,
|
|
|
|
int cellNum,
|
|
|
|
virNodeMemoryStatsPtr params,
|
|
|
|
int *nparams,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
if (virNodeGetMemoryStatsEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nodeGetMemoryStats(cellNum, params, nparams, flags);
|
|
|
|
}
|
|
|
|
|
2014-03-16 11:10:51 +00:00
|
|
|
static int
|
|
|
|
bhyveNodeGetInfo(virConnectPtr conn,
|
|
|
|
virNodeInfoPtr nodeinfo)
|
|
|
|
{
|
|
|
|
if (virNodeGetInfoEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nodeGetInfo(nodeinfo);
|
|
|
|
}
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
static int
|
|
|
|
bhyveStateCleanup(void)
|
|
|
|
{
|
|
|
|
VIR_DEBUG("bhyve state cleanup");
|
|
|
|
|
|
|
|
if (bhyve_driver == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
virObjectUnref(bhyve_driver->domains);
|
|
|
|
virObjectUnref(bhyve_driver->caps);
|
|
|
|
virObjectUnref(bhyve_driver->xmlopt);
|
2014-04-23 09:24:05 +00:00
|
|
|
virObjectUnref(bhyve_driver->hostsysinfo);
|
2014-03-18 09:31:48 +00:00
|
|
|
virObjectUnref(bhyve_driver->closeCallbacks);
|
2014-04-23 11:55:05 +00:00
|
|
|
virObjectEventStateFree(bhyve_driver->domainEventState);
|
2014-02-18 10:08:10 +00:00
|
|
|
|
|
|
|
virMutexDestroy(&bhyve_driver->lock);
|
|
|
|
VIR_FREE(bhyve_driver);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveStateInitialize(bool priveleged ATTRIBUTE_UNUSED,
|
|
|
|
virStateInhibitCallback callback ATTRIBUTE_UNUSED,
|
|
|
|
void *opaque ATTRIBUTE_UNUSED)
|
|
|
|
{
|
2014-06-29 15:52:35 +00:00
|
|
|
virConnectPtr conn = NULL;
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
if (!priveleged) {
|
|
|
|
VIR_INFO("Not running priveleged, disabling driver");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (VIR_ALLOC(bhyve_driver) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virMutexInit(&bhyve_driver->lock) < 0) {
|
|
|
|
VIR_FREE(bhyve_driver);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-03-18 09:31:48 +00:00
|
|
|
if (!(bhyve_driver->closeCallbacks = virCloseCallbacksNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-07 05:06:40 +00:00
|
|
|
if (!(bhyve_driver->caps = virBhyveCapsBuild()))
|
2014-02-18 10:08:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2014-11-08 16:48:35 +00:00
|
|
|
if (virBhyveProbeGrubCaps(&bhyve_driver->grubcaps) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
if (!(bhyve_driver->xmlopt = virDomainXMLOptionNew(&virBhyveDriverDomainDefParserConfig,
|
|
|
|
&virBhyveDriverPrivateDataCallbacks,
|
|
|
|
NULL)))
|
2014-02-18 10:08:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!(bhyve_driver->domains = virDomainObjListNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-23 11:55:05 +00:00
|
|
|
if (!(bhyve_driver->domainEventState = virObjectEventStateNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-04-23 09:24:05 +00:00
|
|
|
bhyve_driver->hostsysinfo = virSysinfoRead();
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
if (virFileMakePath(BHYVE_LOG_DIR) < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("Failed to mkdir %s"),
|
|
|
|
BHYVE_LOG_DIR);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virFileMakePath(BHYVE_STATE_DIR) < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("Failed to mkdir %s"),
|
2014-08-12 15:46:18 +00:00
|
|
|
BHYVE_STATE_DIR);
|
2014-02-18 10:08:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-06-29 15:52:35 +00:00
|
|
|
if (virDomainObjListLoadAllConfigs(bhyve_driver->domains,
|
|
|
|
BHYVE_STATE_DIR,
|
|
|
|
NULL, 1,
|
|
|
|
bhyve_driver->caps,
|
|
|
|
bhyve_driver->xmlopt,
|
|
|
|
1 << VIR_DOMAIN_VIRT_BHYVE,
|
|
|
|
NULL, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
if (virDomainObjListLoadAllConfigs(bhyve_driver->domains,
|
|
|
|
BHYVE_CONFIG_DIR,
|
2014-03-23 09:16:09 +00:00
|
|
|
BHYVE_AUTOSTART_DIR, 0,
|
2014-02-18 10:08:10 +00:00
|
|
|
bhyve_driver->caps,
|
|
|
|
bhyve_driver->xmlopt,
|
|
|
|
1 << VIR_DOMAIN_VIRT_BHYVE,
|
|
|
|
NULL, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-06-29 15:52:35 +00:00
|
|
|
virBhyveProcessReconnectAll(bhyve_driver);
|
|
|
|
|
|
|
|
virObjectUnref(conn);
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-03-25 06:57:22 +00:00
|
|
|
cleanup:
|
2014-06-29 15:52:35 +00:00
|
|
|
virObjectUnref(conn);
|
2014-02-18 10:08:10 +00:00
|
|
|
bhyveStateCleanup();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-11-08 16:48:35 +00:00
|
|
|
unsigned
|
|
|
|
bhyveDriverGetGrubCaps(virConnectPtr conn)
|
|
|
|
{
|
|
|
|
bhyveConnPtr driver = conn->privateData;
|
|
|
|
|
|
|
|
if (driver != NULL)
|
|
|
|
return driver->grubcaps;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-23 09:16:09 +00:00
|
|
|
static void
|
|
|
|
bhyveStateAutoStart(void)
|
|
|
|
{
|
|
|
|
if (!bhyve_driver)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bhyveAutostartDomains(bhyve_driver);
|
|
|
|
}
|
|
|
|
|
2014-03-20 08:39:23 +00:00
|
|
|
static int
|
|
|
|
bhyveConnectGetMaxVcpus(virConnectPtr conn ATTRIBUTE_UNUSED,
|
2014-03-18 08:19:33 +00:00
|
|
|
const char *type)
|
|
|
|
{
|
2014-03-20 08:39:23 +00:00
|
|
|
if (virConnectGetMaxVcpusEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bhyve supports up to 16 VCPUs, but offers no method to check this
|
|
|
|
* value. Hardcode 16...
|
|
|
|
*/
|
|
|
|
if (!type || STRCASEEQ(type, "bhyve"))
|
|
|
|
return 16;
|
|
|
|
|
|
|
|
virReportError(VIR_ERR_INVALID_ARG, _("unknown type '%s'"), type);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long long
|
|
|
|
bhyveNodeGetFreeMemory(virConnectPtr conn)
|
|
|
|
{
|
2014-06-16 12:02:34 +00:00
|
|
|
unsigned long long freeMem;
|
|
|
|
|
2014-03-20 08:39:23 +00:00
|
|
|
if (virNodeGetFreeMemoryEnsureACL(conn) < 0)
|
|
|
|
return 0;
|
|
|
|
|
2014-06-16 12:02:34 +00:00
|
|
|
if (nodeGetMemory(NULL, &freeMem) < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return freeMem;
|
2014-03-20 08:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveNodeGetCPUMap(virConnectPtr conn,
|
|
|
|
unsigned char **cpumap,
|
|
|
|
unsigned int *online,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
if (virNodeGetCPUMapEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nodeGetCPUMap(cpumap, online, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveNodeGetMemoryParameters(virConnectPtr conn,
|
|
|
|
virTypedParameterPtr params,
|
|
|
|
int *nparams,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
if (virNodeGetMemoryParametersEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nodeGetMemoryParameters(params, nparams, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveNodeSetMemoryParameters(virConnectPtr conn,
|
|
|
|
virTypedParameterPtr params,
|
|
|
|
int nparams,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
if (virNodeSetMemoryParametersEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nodeSetMemoryParameters(params, nparams, flags);
|
|
|
|
}
|
2014-02-18 10:08:10 +00:00
|
|
|
|
2014-04-07 05:06:39 +00:00
|
|
|
static char *
|
|
|
|
bhyveConnectBaselineCPU(virConnectPtr conn ATTRIBUTE_UNUSED,
|
|
|
|
const char **xmlCPUs,
|
|
|
|
unsigned int ncpus,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
char *cpu = NULL;
|
|
|
|
|
|
|
|
virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES, NULL);
|
|
|
|
|
|
|
|
if (virConnectBaselineCPUEnsureACL(conn) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
cpu = cpuBaselineXML(xmlCPUs, ncpus, NULL, 0, flags);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return cpu;
|
|
|
|
}
|
|
|
|
|
2014-04-07 05:06:41 +00:00
|
|
|
static int
|
|
|
|
bhyveConnectCompareCPU(virConnectPtr conn,
|
|
|
|
const char *xmlDesc,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
bhyveConnPtr driver = conn->privateData;
|
|
|
|
int ret = VIR_CPU_COMPARE_ERROR;
|
|
|
|
virCapsPtr caps = NULL;
|
2014-05-28 13:12:59 +00:00
|
|
|
bool failIncompatible;
|
2014-04-07 05:06:41 +00:00
|
|
|
|
2014-05-28 13:12:59 +00:00
|
|
|
virCheckFlags(VIR_CONNECT_COMPARE_CPU_FAIL_INCOMPATIBLE,
|
|
|
|
VIR_CPU_COMPARE_ERROR);
|
2014-04-07 05:06:41 +00:00
|
|
|
|
|
|
|
if (virConnectCompareCPUEnsureACL(conn) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-06-27 15:04:41 +00:00
|
|
|
failIncompatible = !!(flags & VIR_CONNECT_COMPARE_CPU_FAIL_INCOMPATIBLE);
|
2014-05-28 13:12:59 +00:00
|
|
|
|
2014-04-07 05:06:41 +00:00
|
|
|
if (!(caps = bhyveDriverGetCapabilities(driver)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!caps->host.cpu ||
|
|
|
|
!caps->host.cpu->model) {
|
2014-06-27 15:04:41 +00:00
|
|
|
if (failIncompatible) {
|
2014-05-28 13:12:59 +00:00
|
|
|
virReportError(VIR_ERR_CPU_INCOMPATIBLE, "%s",
|
|
|
|
_("cannot get host CPU capabilities"));
|
|
|
|
} else {
|
|
|
|
VIR_WARN("cannot get host CPU capabilities");
|
|
|
|
ret = VIR_CPU_COMPARE_INCOMPATIBLE;
|
|
|
|
}
|
2014-04-07 05:06:41 +00:00
|
|
|
} else {
|
2014-06-27 15:04:41 +00:00
|
|
|
ret = cpuCompareXML(caps->host.cpu, xmlDesc, failIncompatible);
|
2014-04-07 05:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(caps);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-04-23 11:55:05 +00:00
|
|
|
static int
|
|
|
|
bhyveConnectDomainEventRegisterAny(virConnectPtr conn,
|
|
|
|
virDomainPtr dom,
|
|
|
|
int eventID,
|
|
|
|
virConnectDomainEventGenericCallback callback,
|
|
|
|
void *opaque,
|
|
|
|
virFreeCallback freecb)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (virConnectDomainEventRegisterAnyEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (virDomainEventStateRegisterID(conn,
|
|
|
|
privconn->domainEventState,
|
|
|
|
dom, eventID,
|
|
|
|
callback, opaque, freecb, &ret) < 0)
|
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bhyveConnectDomainEventDeregisterAny(virConnectPtr conn,
|
|
|
|
int callbackID)
|
|
|
|
{
|
|
|
|
bhyveConnPtr privconn = conn->privateData;
|
|
|
|
|
|
|
|
if (virConnectDomainEventDeregisterAnyEnsureACL(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (virObjectEventStateDeregisterID(conn,
|
|
|
|
privconn->domainEventState,
|
|
|
|
callbackID) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-16 09:25:59 +00:00
|
|
|
static virHypervisorDriver bhyveDriver = {
|
2014-02-18 10:08:10 +00:00
|
|
|
.no = VIR_DRV_BHYVE,
|
|
|
|
.name = "bhyve",
|
|
|
|
.connectOpen = bhyveConnectOpen, /* 1.2.2 */
|
|
|
|
.connectClose = bhyveConnectClose, /* 1.2.2 */
|
|
|
|
.connectGetVersion = bhyveConnectGetVersion, /* 1.2.2 */
|
|
|
|
.connectGetHostname = bhyveConnectGetHostname, /* 1.2.2 */
|
2014-04-23 09:24:05 +00:00
|
|
|
.connectGetSysinfo = bhyveConnectGetSysinfo, /* 1.2.5 */
|
2014-02-18 10:08:10 +00:00
|
|
|
.domainGetInfo = bhyveDomainGetInfo, /* 1.2.2 */
|
|
|
|
.domainGetState = bhyveDomainGetState, /* 1.2.2 */
|
|
|
|
.connectGetCapabilities = bhyveConnectGetCapabilities, /* 1.2.2 */
|
|
|
|
.connectListDomains = bhyveConnectListDomains, /* 1.2.2 */
|
|
|
|
.connectNumOfDomains = bhyveConnectNumOfDomains, /* 1.2.2 */
|
|
|
|
.connectListAllDomains = bhyveConnectListAllDomains, /* 1.2.2 */
|
|
|
|
.connectListDefinedDomains = bhyveConnectListDefinedDomains, /* 1.2.2 */
|
|
|
|
.connectNumOfDefinedDomains = bhyveConnectNumOfDefinedDomains, /* 1.2.2 */
|
2014-04-13 09:48:17 +00:00
|
|
|
.connectDomainXMLToNative = bhyveConnectDomainXMLToNative, /* 1.2.5 */
|
2014-02-18 10:08:10 +00:00
|
|
|
.domainCreate = bhyveDomainCreate, /* 1.2.2 */
|
2014-03-18 09:31:48 +00:00
|
|
|
.domainCreateWithFlags = bhyveDomainCreateWithFlags, /* 1.2.3 */
|
2014-04-10 09:06:38 +00:00
|
|
|
.domainCreateXML = bhyveDomainCreateXML, /* 1.2.4 */
|
2014-02-18 10:08:10 +00:00
|
|
|
.domainDestroy = bhyveDomainDestroy, /* 1.2.2 */
|
|
|
|
.domainLookupByUUID = bhyveDomainLookupByUUID, /* 1.2.2 */
|
|
|
|
.domainLookupByName = bhyveDomainLookupByName, /* 1.2.2 */
|
2014-03-27 07:31:21 +00:00
|
|
|
.domainLookupByID = bhyveDomainLookupByID, /* 1.2.3 */
|
2014-02-18 10:08:10 +00:00
|
|
|
.domainDefineXML = bhyveDomainDefineXML, /* 1.2.2 */
|
2014-02-28 19:18:43 +00:00
|
|
|
.domainUndefine = bhyveDomainUndefine, /* 1.2.2 */
|
2014-02-18 10:08:10 +00:00
|
|
|
.domainGetXMLDesc = bhyveDomainGetXMLDesc, /* 1.2.2 */
|
2014-02-28 19:18:43 +00:00
|
|
|
.domainIsActive = bhyveDomainIsActive, /* 1.2.2 */
|
|
|
|
.domainIsPersistent = bhyveDomainIsPersistent, /* 1.2.2 */
|
2014-03-23 09:16:09 +00:00
|
|
|
.domainGetAutostart = bhyveDomainGetAutostart, /* 1.2.4 */
|
|
|
|
.domainSetAutostart = bhyveDomainSetAutostart, /* 1.2.4 */
|
2014-03-15 12:30:01 +00:00
|
|
|
.domainOpenConsole = bhyveDomainOpenConsole, /* 1.2.4 */
|
2014-04-06 06:07:58 +00:00
|
|
|
.domainSetMetadata = bhyveDomainSetMetadata, /* 1.2.4 */
|
|
|
|
.domainGetMetadata = bhyveDomainGetMetadata, /* 1.2.4 */
|
2014-02-24 08:23:27 +00:00
|
|
|
.nodeGetCPUStats = bhyveNodeGetCPUStats, /* 1.2.2 */
|
|
|
|
.nodeGetMemoryStats = bhyveNodeGetMemoryStats, /* 1.2.2 */
|
2014-03-16 11:10:51 +00:00
|
|
|
.nodeGetInfo = bhyveNodeGetInfo, /* 1.2.3 */
|
2014-03-20 08:39:23 +00:00
|
|
|
.connectGetMaxVcpus = bhyveConnectGetMaxVcpus, /* 1.2.3 */
|
|
|
|
.nodeGetFreeMemory = bhyveNodeGetFreeMemory, /* 1.2.3 */
|
|
|
|
.nodeGetCPUMap = bhyveNodeGetCPUMap, /* 1.2.3 */
|
|
|
|
.nodeGetMemoryParameters = bhyveNodeGetMemoryParameters, /* 1.2.3 */
|
|
|
|
.nodeSetMemoryParameters = bhyveNodeSetMemoryParameters, /* 1.2.3 */
|
2014-04-07 05:06:39 +00:00
|
|
|
.connectBaselineCPU = bhyveConnectBaselineCPU, /* 1.2.4 */
|
2014-04-07 05:06:41 +00:00
|
|
|
.connectCompareCPU = bhyveConnectCompareCPU, /* 1.2.4 */
|
2014-04-23 11:55:05 +00:00
|
|
|
.connectDomainEventRegisterAny = bhyveConnectDomainEventRegisterAny, /* 1.2.5 */
|
|
|
|
.connectDomainEventDeregisterAny = bhyveConnectDomainEventDeregisterAny, /* 1.2.5 */
|
2014-02-18 10:08:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static virStateDriver bhyveStateDriver = {
|
|
|
|
.name = "bhyve",
|
|
|
|
.stateInitialize = bhyveStateInitialize,
|
2014-03-23 09:16:09 +00:00
|
|
|
.stateAutoStart = bhyveStateAutoStart,
|
2014-02-18 10:08:10 +00:00
|
|
|
.stateCleanup = bhyveStateCleanup,
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
bhyveRegister(void)
|
|
|
|
{
|
2014-10-16 09:25:59 +00:00
|
|
|
if (virRegisterHypervisorDriver(&bhyveDriver) < 0)
|
2014-03-17 13:35:42 +00:00
|
|
|
return -1;
|
|
|
|
if (virRegisterStateDriver(&bhyveStateDriver) < 0)
|
|
|
|
return -1;
|
2014-02-18 10:08:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|