2007-04-04 14:19:49 +00:00
|
|
|
/*
|
|
|
|
* xen_unified.c: Unified Xen driver.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* See COPYING.LIB for the License of this software
|
|
|
|
*
|
|
|
|
* Richard W.M. Jones <rjones@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WITH_XEN
|
|
|
|
|
|
|
|
/* Note:
|
|
|
|
*
|
|
|
|
* This driver provides a unified interface to the five
|
|
|
|
* separate underlying Xen drivers (xen_internal, proxy_internal,
|
|
|
|
* xend_internal, xs_internal and xm_internal). Historically
|
|
|
|
* the body of libvirt.c handled the five Xen drivers,
|
|
|
|
* and contained Xen-specific code.
|
|
|
|
*
|
|
|
|
* The interface between Xen drivers and xen_unified is
|
|
|
|
* the same as for "ordinary" libvirt drivers (ie. virDriverPtr),
|
|
|
|
* however this is just for convenience and may be changed
|
|
|
|
* in future. Libvirt.c should no longer call directly
|
|
|
|
* to the five underlying Xen drivers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
2007-06-15 15:24:20 +00:00
|
|
|
#include <string.h>
|
2007-06-26 11:42:46 +00:00
|
|
|
#include <errno.h>
|
2007-04-04 14:19:49 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <xen/dom0_ops.h>
|
2007-06-20 10:01:14 +00:00
|
|
|
#include <libxml/uri.h>
|
2007-04-04 14:19:49 +00:00
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
#include "xen_unified.h"
|
|
|
|
|
|
|
|
#include "xen_internal.h"
|
|
|
|
#include "proxy_internal.h"
|
|
|
|
#include "xend_internal.h"
|
|
|
|
#include "xs_internal.h"
|
|
|
|
#include "xm_internal.h"
|
|
|
|
|
|
|
|
/* The five Xen drivers below us. */
|
2007-04-30 16:57:15 +00:00
|
|
|
static virDriverPtr drivers[XEN_UNIFIED_NR_DRIVERS] = {
|
2007-04-10 11:17:34 +00:00
|
|
|
&xenHypervisorDriver,
|
|
|
|
&xenProxyDriver,
|
|
|
|
&xenDaemonDriver,
|
|
|
|
&xenStoreDriver,
|
|
|
|
&xenXMDriver
|
2007-04-04 14:19:49 +00:00
|
|
|
};
|
|
|
|
static const int hypervisor_offset = 0;
|
|
|
|
static const int proxy_offset = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* xenUnifiedError:
|
|
|
|
* @conn: the connection
|
|
|
|
* @error: the error number
|
|
|
|
* @info: extra information string
|
|
|
|
*
|
|
|
|
* Handle an error at the xend daemon interface
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
xenUnifiedError (virConnectPtr conn, virErrorNumber error, const char *info)
|
|
|
|
{
|
|
|
|
const char *errmsg;
|
|
|
|
|
|
|
|
errmsg = __virErrorMsg (error, info);
|
|
|
|
__virRaiseError (conn, NULL, NULL, VIR_FROM_XEN, error, VIR_ERR_ERROR,
|
2007-04-10 11:17:34 +00:00
|
|
|
errmsg, info, NULL, 0, 0, errmsg, info);
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*----- Dispatch functions. -----*/
|
|
|
|
|
|
|
|
/* These dispatch functions follow the model used historically
|
|
|
|
* by libvirt.c -- trying each low-level Xen driver in turn
|
|
|
|
* until one succeeds. However since we know what low-level
|
|
|
|
* drivers can perform which functions, it is probably better
|
|
|
|
* in future to optimise these dispatch functions to just call
|
|
|
|
* the single function (or small number of appropriate functions)
|
|
|
|
* in the low level drivers directly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedOpen (virConnectPtr conn, const char *name, int flags)
|
|
|
|
{
|
2007-04-10 11:17:34 +00:00
|
|
|
int i, j;
|
|
|
|
xenUnifiedPrivatePtr priv;
|
2007-06-20 10:01:14 +00:00
|
|
|
xmlURIPtr uri;
|
2007-04-10 11:17:34 +00:00
|
|
|
|
2007-06-20 10:01:14 +00:00
|
|
|
uri = xmlParseURI(name);
|
|
|
|
if (uri == NULL) {
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
}
|
|
|
|
|
2007-06-20 17:25:39 +00:00
|
|
|
/* Refuse any scheme which isn't "xen://" or "http://". */
|
2007-06-20 10:01:14 +00:00
|
|
|
if (uri->scheme &&
|
|
|
|
strcasecmp(uri->scheme, "xen") != 0 &&
|
2007-06-20 17:25:39 +00:00
|
|
|
strcasecmp(uri->scheme, "http") != 0) {
|
|
|
|
xmlFreeURI(uri);
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* xmlParseURI will parse a naked string like "foo" as a URI with
|
|
|
|
* a NULL scheme. That's not useful for us because we want to only
|
|
|
|
* allow full pathnames (eg. ///var/lib/xen/xend-socket). Decline
|
|
|
|
* anything else.
|
|
|
|
*/
|
|
|
|
if (!uri->scheme && name[0] != '/') {
|
2007-06-20 10:01:14 +00:00
|
|
|
xmlFreeURI(uri);
|
2007-04-10 11:17:34 +00:00
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
2007-06-20 10:01:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Refuse any xen:// URI with a server specified - allow remote to do it */
|
2007-06-20 17:25:39 +00:00
|
|
|
if (uri->scheme && strcasecmp(uri->scheme, "xen") == 0 && uri->server) {
|
2007-06-20 10:01:14 +00:00
|
|
|
xmlFreeURI(uri);
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
}
|
2007-06-20 17:25:39 +00:00
|
|
|
|
2007-06-20 10:01:14 +00:00
|
|
|
xmlFreeURI(uri);
|
2007-04-10 11:17:34 +00:00
|
|
|
|
|
|
|
/* Allocate per-connection private data. */
|
2007-06-26 11:42:46 +00:00
|
|
|
priv = calloc (1, sizeof *priv);
|
2007-04-10 11:17:34 +00:00
|
|
|
if (!priv) {
|
2007-05-02 17:36:25 +00:00
|
|
|
xenUnifiedError (NULL, VIR_ERR_NO_MEMORY, "allocating private data");
|
2007-04-10 11:17:34 +00:00
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
conn->privateData = priv;
|
|
|
|
|
2007-06-26 11:42:46 +00:00
|
|
|
priv->name = strdup (name);
|
|
|
|
if (!priv->name) {
|
|
|
|
xenUnifiedError (NULL, VIR_ERR_NO_MEMORY, "allocating priv->name");
|
|
|
|
free (priv);
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
priv->handle = -1;
|
|
|
|
priv->xendConfigVersion = -1;
|
|
|
|
priv->type = -1;
|
|
|
|
priv->len = -1;
|
|
|
|
priv->addr = NULL;
|
|
|
|
priv->xshandle = NULL;
|
|
|
|
priv->proxy = -1;
|
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
|
|
|
|
priv->opened[i] = 0;
|
2007-04-10 11:17:34 +00:00
|
|
|
|
2007-05-02 16:17:02 +00:00
|
|
|
/* Only use XM driver for Xen <= 3.0.3 (ie xendConfigVersion <= 2) */
|
|
|
|
if (drivers[i] == &xenXMDriver &&
|
|
|
|
priv->xendConfigVersion > 2)
|
|
|
|
continue;
|
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
/* Ignore proxy for root */
|
|
|
|
if (i == proxy_offset && getuid() == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (drivers[i]->open &&
|
|
|
|
drivers[i]->open (conn, name, flags) == VIR_DRV_OPEN_SUCCESS)
|
2007-04-30 16:57:15 +00:00
|
|
|
priv->opened[i] = 1;
|
2007-04-10 11:17:34 +00:00
|
|
|
|
|
|
|
/* If as root, then all drivers must succeed.
|
|
|
|
If non-root, then only proxy must succeed */
|
2007-04-30 16:57:15 +00:00
|
|
|
if (!priv->opened[i] && (getuid() == 0 || i == proxy_offset)) {
|
2007-04-10 11:17:34 +00:00
|
|
|
for (j = 0; j < i; ++j)
|
2007-04-30 16:57:15 +00:00
|
|
|
if (priv->opened[j]) drivers[j]->close (conn);
|
2007-06-26 11:42:46 +00:00
|
|
|
free (priv->name);
|
|
|
|
free (priv);
|
|
|
|
/* The assumption is that one of the underlying drivers
|
|
|
|
* has set virterror already.
|
|
|
|
*/
|
2007-04-10 11:17:34 +00:00
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return VIR_DRV_OPEN_SUCCESS;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
#define GET_PRIVATE(conn) \
|
|
|
|
xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) (conn)->privateData
|
|
|
|
|
2007-04-04 14:19:49 +00:00
|
|
|
static int
|
|
|
|
xenUnifiedClose (virConnectPtr conn)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->close)
|
2007-04-10 11:17:34 +00:00
|
|
|
(void) drivers[i]->close (conn);
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-06-26 11:42:46 +00:00
|
|
|
free (priv->name);
|
2007-04-10 11:17:34 +00:00
|
|
|
free (conn->privateData);
|
|
|
|
conn->privateData = NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
xenUnifiedType (virConnectPtr conn)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
const char *ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->type) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->type (conn);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedVersion (virConnectPtr conn, unsigned long *hvVer)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->version &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->version (conn, hvVer) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2007-06-26 11:42:46 +00:00
|
|
|
/* NB: Even if connected to the proxy, we're still on the
|
|
|
|
* same machine.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
xenUnifiedGetHostname (virConnectPtr conn)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
char hostname [HOST_NAME_MAX+1], *str;
|
|
|
|
|
|
|
|
r = gethostname (hostname, HOST_NAME_MAX+1);
|
|
|
|
if (r == -1) {
|
|
|
|
xenUnifiedError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
str = strdup (hostname);
|
|
|
|
if (str == NULL) {
|
|
|
|
xenUnifiedError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The name is recorded (canonicalised) in xenUnifiedOpen. */
|
|
|
|
static char *
|
|
|
|
xenUnifiedGetURI (virConnectPtr conn)
|
|
|
|
{
|
|
|
|
GET_PRIVATE(conn);
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
str = strdup (priv->name);
|
|
|
|
if (str == NULL) {
|
|
|
|
xenUnifiedError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2007-04-04 14:19:49 +00:00
|
|
|
static int
|
|
|
|
xenUnifiedGetMaxVcpus (virConnectPtr conn, const char *type)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
if (!type)
|
|
|
|
type = "Xen";
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && strcmp (drivers[i]->name, type) == 0)
|
2007-04-10 11:17:34 +00:00
|
|
|
return drivers[i]->getMaxVcpus (conn, type);
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->nodeGetInfo &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->nodeGetInfo (conn, info) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
xenUnifiedGetCapabilities (virConnectPtr conn)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
char *ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->getCapabilities) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->getCapabilities (conn);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedListDomains (virConnectPtr conn, int *ids, int maxids)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i, ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->listDomains) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->listDomains (conn, ids, maxids);
|
|
|
|
if (ret >= 0) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedNumOfDomains (virConnectPtr conn)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i, ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->numOfDomains) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->numOfDomains (conn);
|
|
|
|
if (ret >= 0) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
xenUnifiedDomainCreateLinux (virConnectPtr conn,
|
2007-04-10 11:17:34 +00:00
|
|
|
const char *xmlDesc, unsigned int flags)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
virDomainPtr ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainCreateLinux) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainCreateLinux (conn, xmlDesc, flags);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
xenUnifiedDomainLookupByID (virConnectPtr conn, int id)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
virDomainPtr ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainLookupByID) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainLookupByID (conn, id);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
xenUnifiedDomainLookupByUUID (virConnectPtr conn,
|
2007-04-10 11:17:34 +00:00
|
|
|
const unsigned char *uuid)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
virDomainPtr ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainLookupByUUID) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainLookupByUUID (conn, uuid);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
xenUnifiedDomainLookupByName (virConnectPtr conn,
|
2007-04-10 11:17:34 +00:00
|
|
|
const char *name)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
virDomainPtr ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainLookupByName) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainLookupByName (conn, name);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainSuspend (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
/* Try non-hypervisor methods first, then hypervisor direct method
|
|
|
|
* as a last resort.
|
|
|
|
*/
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
2007-04-10 11:17:34 +00:00
|
|
|
if (i != hypervisor_offset &&
|
2007-04-30 16:57:15 +00:00
|
|
|
priv->opened[i] &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainSuspend &&
|
|
|
|
drivers[i]->domainSuspend (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
if (priv->opened[hypervisor_offset] &&
|
|
|
|
drivers[hypervisor_offset]->domainSuspend &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[hypervisor_offset]->domainSuspend (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainResume (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
/* Try non-hypervisor methods first, then hypervisor direct method
|
|
|
|
* as a last resort.
|
|
|
|
*/
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
2007-04-10 11:17:34 +00:00
|
|
|
if (i != hypervisor_offset &&
|
2007-04-30 16:57:15 +00:00
|
|
|
priv->opened[i] &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainResume &&
|
|
|
|
drivers[i]->domainResume (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
if (priv->opened[hypervisor_offset] &&
|
|
|
|
drivers[hypervisor_offset]->domainResume &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[hypervisor_offset]->domainResume (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainShutdown (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainShutdown &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainShutdown (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainReboot (virDomainPtr dom, unsigned int flags)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainReboot &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainReboot (dom, flags) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainDestroy (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
/* Try non-hypervisor methods first, then hypervisor direct method
|
|
|
|
* as a last resort.
|
|
|
|
*/
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
2007-04-10 11:17:34 +00:00
|
|
|
if (i != hypervisor_offset &&
|
2007-04-30 16:57:15 +00:00
|
|
|
priv->opened[i] &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainDestroy &&
|
|
|
|
drivers[i]->domainDestroy (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[hypervisor_offset]->domainDestroy &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[hypervisor_offset]->domainDestroy (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
xenUnifiedDomainGetOSType (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
char *ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainGetOSType) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainGetOSType (dom);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long
|
|
|
|
xenUnifiedDomainGetMaxMemory (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
unsigned long ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainGetMaxMemory) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainGetMaxMemory (dom);
|
|
|
|
if (ret != 0) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainSetMaxMemory (virDomainPtr dom, unsigned long memory)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainSetMaxMemory &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainSetMaxMemory (dom, memory) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainSetMemory (virDomainPtr dom, unsigned long memory)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainSetMemory &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainSetMemory (dom, memory) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainGetInfo (virDomainPtr dom, virDomainInfoPtr info)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainGetInfo &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainGetInfo (dom, info) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainSave (virDomainPtr dom, const char *to)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainSave &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainSave (dom, to) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainRestore (virConnectPtr conn, const char *from)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainRestore &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainRestore (conn, from) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainCoreDump (virDomainPtr dom, const char *to, int flags)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainCoreDump &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainCoreDump (dom, to, flags) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainSetVcpus (virDomainPtr dom, unsigned int nvcpus)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
/* Try non-hypervisor methods first, then hypervisor direct method
|
|
|
|
* as a last resort.
|
|
|
|
*/
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
2007-04-10 11:17:34 +00:00
|
|
|
if (i != hypervisor_offset &&
|
2007-04-30 16:57:15 +00:00
|
|
|
priv->opened[i] &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainSetVcpus &&
|
|
|
|
drivers[i]->domainSetVcpus (dom, nvcpus) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
if (priv->opened[hypervisor_offset] &&
|
|
|
|
drivers[hypervisor_offset]->domainSetVcpus &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[hypervisor_offset]->domainSetVcpus (dom, nvcpus) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainPinVcpu (virDomainPtr dom, unsigned int vcpu,
|
2007-04-10 11:17:34 +00:00
|
|
|
unsigned char *cpumap, int maplen)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] &&
|
|
|
|
drivers[i]->domainPinVcpu &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainPinVcpu (dom, vcpu, cpumap, maplen) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainGetVcpus (virDomainPtr dom,
|
2007-04-10 11:17:34 +00:00
|
|
|
virVcpuInfoPtr info, int maxinfo,
|
|
|
|
unsigned char *cpumaps, int maplen)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-13 00:43:57 +00:00
|
|
|
int i, ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainGetVcpus) {
|
2007-04-13 00:43:57 +00:00
|
|
|
ret = drivers[i]->domainGetVcpus (dom, info, maxinfo, cpumaps, maplen);
|
|
|
|
if (ret > 0)
|
|
|
|
return ret;
|
|
|
|
}
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i, ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainGetMaxVcpus) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainGetMaxVcpus (dom);
|
|
|
|
if (ret != 0) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
xenUnifiedDomainDumpXML (virDomainPtr dom, int flags)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
char *ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainDumpXML) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainDumpXML (dom, flags);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedListDefinedDomains (virConnectPtr conn, char **const names,
|
2007-04-10 11:17:34 +00:00
|
|
|
int maxnames)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
int ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->listDefinedDomains) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->listDefinedDomains (conn, names, maxnames);
|
|
|
|
if (ret >= 0) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedNumOfDefinedDomains (virConnectPtr conn)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
int ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->numOfDefinedDomains) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->numOfDefinedDomains (conn);
|
|
|
|
if (ret >= 0) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainCreate (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainCreate &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainCreate (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
|
|
|
xenUnifiedDomainDefineXML (virConnectPtr conn, const char *xml)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
|
|
|
virDomainPtr ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainDefineXML) {
|
2007-04-10 11:17:34 +00:00
|
|
|
ret = drivers[i]->domainDefineXML (conn, xml);
|
|
|
|
if (ret) return ret;
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return NULL;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainUndefine (virDomainPtr dom)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainUndefine &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainUndefine (dom) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainAttachDevice (virDomainPtr dom, char *xml)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainAttachDevice &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainAttachDevice (dom, xml) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainDetachDevice (virDomainPtr dom, char *xml)
|
|
|
|
{
|
2007-04-30 16:57:15 +00:00
|
|
|
GET_PRIVATE(dom->conn);
|
2007-04-10 11:17:34 +00:00
|
|
|
int i;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-30 16:57:15 +00:00
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
|
|
|
|
if (priv->opened[i] && drivers[i]->domainDetachDevice &&
|
2007-04-10 11:17:34 +00:00
|
|
|
drivers[i]->domainDetachDevice (dom, xml) == 0)
|
|
|
|
return 0;
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return -1;
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2007-06-05 12:06:08 +00:00
|
|
|
static char *
|
|
|
|
xenUnifiedDomainGetSchedulerType (virDomainPtr dom, int *nparams)
|
|
|
|
{
|
|
|
|
GET_PRIVATE(dom->conn);
|
|
|
|
int i;
|
|
|
|
char *schedulertype;
|
|
|
|
|
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; i++) {
|
|
|
|
if (priv->opened[i] && drivers[i]->domainGetSchedulerType) {
|
|
|
|
schedulertype = drivers[i]->domainGetSchedulerType (dom, nparams);
|
|
|
|
if (schedulertype != NULL)
|
|
|
|
return(schedulertype);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainGetSchedulerParameters (virDomainPtr dom,
|
|
|
|
virSchedParameterPtr params, int *nparams)
|
|
|
|
{
|
|
|
|
GET_PRIVATE(dom->conn);
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
|
|
|
|
if (priv->opened[i] && drivers[i]->domainGetSchedulerParameters) {
|
|
|
|
ret = drivers[i]->domainGetSchedulerParameters(dom, params, nparams);
|
|
|
|
if (ret == 0)
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenUnifiedDomainSetSchedulerParameters (virDomainPtr dom,
|
|
|
|
virSchedParameterPtr params, int nparams)
|
|
|
|
{
|
|
|
|
GET_PRIVATE(dom->conn);
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
|
|
|
|
if (priv->opened[i] && drivers[i]->domainSetSchedulerParameters) {
|
|
|
|
ret = drivers[i]->domainSetSchedulerParameters(dom, params, nparams);
|
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2007-04-04 14:19:49 +00:00
|
|
|
/*----- Register with libvirt.c, and initialise Xen drivers. -----*/
|
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
#define VERSION ((DOM0_INTERFACE_VERSION >> 24) * 1000000 + \
|
|
|
|
((DOM0_INTERFACE_VERSION >> 16) & 0xFF) * 1000 + \
|
|
|
|
(DOM0_INTERFACE_VERSION & 0xFFFF))
|
2007-04-04 14:19:49 +00:00
|
|
|
|
|
|
|
/* The interface which we export upwards to libvirt.c. */
|
|
|
|
static virDriver xenUnifiedDriver = {
|
2007-04-10 11:17:34 +00:00
|
|
|
.no = VIR_DRV_XEN_UNIFIED,
|
2007-04-17 09:33:51 +00:00
|
|
|
.name = "Xen",
|
2007-04-10 11:17:34 +00:00
|
|
|
.ver = VERSION,
|
|
|
|
.open = xenUnifiedOpen,
|
|
|
|
.close = xenUnifiedClose,
|
|
|
|
.type = xenUnifiedType,
|
|
|
|
.version = xenUnifiedVersion,
|
2007-06-26 11:42:46 +00:00
|
|
|
.getHostname = xenUnifiedGetHostname,
|
|
|
|
.getURI = xenUnifiedGetURI,
|
2007-04-10 11:17:34 +00:00
|
|
|
.getMaxVcpus = xenUnifiedGetMaxVcpus,
|
|
|
|
.nodeGetInfo = xenUnifiedNodeGetInfo,
|
|
|
|
.getCapabilities = xenUnifiedGetCapabilities,
|
|
|
|
.listDomains = xenUnifiedListDomains,
|
|
|
|
.numOfDomains = xenUnifiedNumOfDomains,
|
|
|
|
.domainCreateLinux = xenUnifiedDomainCreateLinux,
|
|
|
|
.domainLookupByID = xenUnifiedDomainLookupByID,
|
|
|
|
.domainLookupByUUID = xenUnifiedDomainLookupByUUID,
|
|
|
|
.domainLookupByName = xenUnifiedDomainLookupByName,
|
|
|
|
.domainSuspend = xenUnifiedDomainSuspend,
|
|
|
|
.domainResume = xenUnifiedDomainResume,
|
|
|
|
.domainShutdown = xenUnifiedDomainShutdown,
|
|
|
|
.domainReboot = xenUnifiedDomainReboot,
|
|
|
|
.domainDestroy = xenUnifiedDomainDestroy,
|
|
|
|
.domainGetOSType = xenUnifiedDomainGetOSType,
|
|
|
|
.domainGetMaxMemory = xenUnifiedDomainGetMaxMemory,
|
|
|
|
.domainSetMaxMemory = xenUnifiedDomainSetMaxMemory,
|
|
|
|
.domainSetMemory = xenUnifiedDomainSetMemory,
|
|
|
|
.domainGetInfo = xenUnifiedDomainGetInfo,
|
|
|
|
.domainSave = xenUnifiedDomainSave,
|
|
|
|
.domainRestore = xenUnifiedDomainRestore,
|
|
|
|
.domainCoreDump = xenUnifiedDomainCoreDump,
|
|
|
|
.domainSetVcpus = xenUnifiedDomainSetVcpus,
|
|
|
|
.domainPinVcpu = xenUnifiedDomainPinVcpu,
|
|
|
|
.domainGetVcpus = xenUnifiedDomainGetVcpus,
|
|
|
|
.domainGetMaxVcpus = xenUnifiedDomainGetMaxVcpus,
|
|
|
|
.domainDumpXML = xenUnifiedDomainDumpXML,
|
|
|
|
.listDefinedDomains = xenUnifiedListDefinedDomains,
|
|
|
|
.numOfDefinedDomains = xenUnifiedNumOfDefinedDomains,
|
|
|
|
.domainCreate = xenUnifiedDomainCreate,
|
|
|
|
.domainDefineXML = xenUnifiedDomainDefineXML,
|
|
|
|
.domainUndefine = xenUnifiedDomainUndefine,
|
|
|
|
.domainAttachDevice = xenUnifiedDomainAttachDevice,
|
|
|
|
.domainDetachDevice = xenUnifiedDomainDetachDevice,
|
2007-06-05 12:06:08 +00:00
|
|
|
.domainGetSchedulerType = xenUnifiedDomainGetSchedulerType,
|
|
|
|
.domainGetSchedulerParameters = xenUnifiedDomainGetSchedulerParameters,
|
|
|
|
.domainSetSchedulerParameters = xenUnifiedDomainSetSchedulerParameters,
|
2007-04-04 14:19:49 +00:00
|
|
|
};
|
|
|
|
|
2007-04-10 13:00:26 +00:00
|
|
|
/**
|
|
|
|
* xenUnifiedRegister:
|
|
|
|
*
|
|
|
|
* Register xen related drivers
|
|
|
|
*
|
|
|
|
* Returns the driver priority or -1 in case of error.
|
|
|
|
*/
|
2007-04-04 14:19:49 +00:00
|
|
|
int
|
|
|
|
xenUnifiedRegister (void)
|
|
|
|
{
|
2007-04-10 11:17:34 +00:00
|
|
|
/* Ignore failures here. */
|
|
|
|
(void) xenHypervisorInit ();
|
|
|
|
(void) xenProxyInit ();
|
|
|
|
(void) xenDaemonInit ();
|
|
|
|
(void) xenStoreInit ();
|
|
|
|
(void) xenXMInit ();
|
2007-04-04 14:19:49 +00:00
|
|
|
|
2007-04-10 11:17:34 +00:00
|
|
|
return virRegisterDriver (&xenUnifiedDriver);
|
2007-04-04 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WITH_XEN */
|
2007-04-10 11:17:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* vim: set tabstop=4:
|
|
|
|
* vim: set shiftwidth=4:
|
|
|
|
* vim: set expandtab:
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* indent-tabs-mode: nil
|
|
|
|
* c-indent-level: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* tab-width: 4
|
|
|
|
* End:
|
|
|
|
*/
|