2005-11-02 12:50:21 +00:00
|
|
|
/*
|
2006-02-09 17:45:11 +00:00
|
|
|
* libvirt.c: Main interfaces for the libvirt library to handle virtualization
|
2005-11-02 12:50:21 +00:00
|
|
|
* domains from a process running in domain 0
|
|
|
|
*
|
2006-02-09 17:45:11 +00:00
|
|
|
* Copyright (C) 2005,2006 Red Hat, Inc.
|
2005-11-02 12:50:21 +00:00
|
|
|
*
|
|
|
|
* See COPYING.LIB for the License of this software
|
|
|
|
*
|
|
|
|
* Daniel Veillard <veillard@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2006-06-26 15:02:18 +00:00
|
|
|
#include "libvirt/libvirt.h"
|
2005-11-02 12:50:21 +00:00
|
|
|
|
2005-11-02 13:19:10 +00:00
|
|
|
#include <stdio.h>
|
2005-11-30 13:20:53 +00:00
|
|
|
#include <stdlib.h>
|
2005-12-06 13:47:40 +00:00
|
|
|
#include <string.h>
|
2006-01-18 10:37:08 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2006-03-23 15:42:10 +00:00
|
|
|
|
2006-04-28 18:29:26 +00:00
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
|
2005-11-30 13:20:53 +00:00
|
|
|
#include <xs.h>
|
2006-03-23 15:42:10 +00:00
|
|
|
|
2005-11-02 12:50:21 +00:00
|
|
|
#include "internal.h"
|
2006-03-20 17:49:28 +00:00
|
|
|
#include "driver.h"
|
2006-01-23 22:55:41 +00:00
|
|
|
#include "xen_internal.h"
|
2006-01-17 16:56:17 +00:00
|
|
|
#include "xend_internal.h"
|
2006-03-23 15:42:10 +00:00
|
|
|
#include "xs_internal.h"
|
2006-02-16 22:50:52 +00:00
|
|
|
#include "xml.h"
|
2006-06-06 03:32:51 +00:00
|
|
|
#include "test.h"
|
2005-11-30 13:20:53 +00:00
|
|
|
|
2005-11-02 12:50:21 +00:00
|
|
|
/*
|
|
|
|
* TODO:
|
|
|
|
* - use lock to protect against concurrent accesses ?
|
|
|
|
* - use reference counting to garantee coherent pointer state ?
|
2005-11-10 16:12:31 +00:00
|
|
|
* - memory wrappers for malloc/free ?
|
2005-11-02 12:50:21 +00:00
|
|
|
*/
|
|
|
|
|
2006-03-27 15:24:36 +00:00
|
|
|
static virDriverPtr virDriverTab[MAX_DRIVERS];
|
|
|
|
static int initialized = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virInitialize:
|
|
|
|
*
|
|
|
|
* Initialize the library. It's better to call this routine at startup
|
|
|
|
* in multithreaded applications to avoid potential race when initializing
|
|
|
|
* the library.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success, -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virInitialize(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (initialized)
|
|
|
|
return(0);
|
2006-03-28 14:41:04 +00:00
|
|
|
initialized = 1;
|
2006-03-27 15:24:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* should not be needed but...
|
|
|
|
*/
|
|
|
|
for (i = 0;i < MAX_DRIVERS;i++)
|
|
|
|
virDriverTab[i] = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that the order is important the first ones have a higher priority
|
|
|
|
*/
|
|
|
|
xenHypervisorRegister();
|
|
|
|
xenDaemonRegister();
|
|
|
|
xenStoreRegister();
|
2006-06-06 03:32:51 +00:00
|
|
|
testRegister();
|
2006-03-27 15:24:36 +00:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
/**
|
|
|
|
* virLibConnError:
|
|
|
|
* @conn: the connection if available
|
|
|
|
* @error: the error noumber
|
|
|
|
* @info: extra information string
|
|
|
|
*
|
|
|
|
* Handle an error at the connection level
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-15 12:13:25 +00:00
|
|
|
virLibConnError(virConnectPtr conn, virErrorNumber error, const char *info)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
const char *errmsg;
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (error == VIR_ERR_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
errmsg = __virErrorMsg(error, info);
|
|
|
|
__virRaiseError(conn, NULL, VIR_FROM_NONE, error, VIR_ERR_ERROR,
|
|
|
|
errmsg, info, NULL, 0, 0, errmsg, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLibConnError:
|
|
|
|
* @conn: the connection if available
|
|
|
|
* @error: the error noumber
|
|
|
|
* @info: extra information string
|
|
|
|
*
|
|
|
|
* Handle an error at the connection level
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-15 12:13:25 +00:00
|
|
|
virLibDomainError(virDomainPtr domain, virErrorNumber error,
|
|
|
|
const char *info)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
virConnectPtr conn = NULL;
|
|
|
|
const char *errmsg;
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (error == VIR_ERR_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
errmsg = __virErrorMsg(error, info);
|
|
|
|
if (error != VIR_ERR_INVALID_DOMAIN) {
|
|
|
|
conn = domain->conn;
|
|
|
|
}
|
|
|
|
__virRaiseError(conn, domain, VIR_FROM_DOM, error, VIR_ERR_ERROR,
|
|
|
|
errmsg, info, NULL, 0, 0, errmsg, info);
|
|
|
|
}
|
|
|
|
|
2006-03-27 15:24:36 +00:00
|
|
|
/**
|
|
|
|
* virRegisterDriver:
|
|
|
|
* @driver: pointer to a driver block
|
|
|
|
*
|
|
|
|
* Register a virtualization driver
|
|
|
|
*
|
|
|
|
* Returns the driver priority or -1 in case of error.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virRegisterDriver(virDriverPtr driver)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-03-28 14:41:04 +00:00
|
|
|
if (!initialized)
|
|
|
|
virInitialize();
|
|
|
|
|
2006-03-27 15:24:36 +00:00
|
|
|
if (driver == NULL) {
|
|
|
|
virLibConnError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
for (i = 0;i < MAX_DRIVERS;i++) {
|
|
|
|
if (virDriverTab[i] == driver)
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
for (i = 0;i < MAX_DRIVERS;i++) {
|
|
|
|
if (virDriverTab[i] == NULL) {
|
|
|
|
virDriverTab[i] = driver;
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virLibConnError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2005-12-08 15:08:46 +00:00
|
|
|
/**
|
|
|
|
* virGetVersion:
|
|
|
|
* @libVer: return value for the library version (OUT)
|
2006-06-13 16:31:44 +00:00
|
|
|
* @type: the type of connection/driver looked at
|
2005-12-08 15:08:46 +00:00
|
|
|
* @typeVer: return value for the version of the hypervisor (OUT)
|
|
|
|
*
|
|
|
|
* Provides two information back, @libVer is the version of the library
|
|
|
|
* while @typeVer will be the version of the hypervisor type @type against
|
|
|
|
* which the library was compiled. If @type is NULL, "Xen" is assumed, if
|
|
|
|
* @type is unknown or not availble, an error code will be returned and
|
|
|
|
* @typeVer will be 0.
|
|
|
|
*
|
|
|
|
* Returns -1 in case of failure, 0 otherwise, and values for @libVer and
|
|
|
|
* @typeVer have the format major * 1,000,000 + minor * 1,000 + release.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virGetVersion(unsigned long *libVer, const char *type,
|
|
|
|
unsigned long *typeVer)
|
|
|
|
{
|
2006-06-13 16:31:44 +00:00
|
|
|
int i;
|
|
|
|
|
2006-03-28 14:41:04 +00:00
|
|
|
if (!initialized)
|
|
|
|
virInitialize();
|
|
|
|
|
2005-12-08 15:08:46 +00:00
|
|
|
if (libVer == NULL)
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2005-12-08 15:08:46 +00:00
|
|
|
*libVer = LIBVIR_VERSION_NUMBER;
|
|
|
|
|
|
|
|
if (typeVer != NULL) {
|
2006-06-13 16:31:44 +00:00
|
|
|
if (type == NULL)
|
|
|
|
type = "Xen";
|
|
|
|
for (i = 0;i < MAX_DRIVERS;i++) {
|
|
|
|
if ((virDriverTab[i] != NULL) &&
|
|
|
|
(!strcmp(virDriverTab[i]->name, type))) {
|
|
|
|
*typeVer = virDriverTab[i]->ver;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i >= MAX_DRIVERS) {
|
2006-03-15 12:13:25 +00:00
|
|
|
*typeVer = 0;
|
2006-06-13 16:31:44 +00:00
|
|
|
virLibConnError(NULL, VIR_ERR_NO_SUPPORT, type);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (0);
|
2005-12-08 15:08:46 +00:00
|
|
|
}
|
|
|
|
|
2005-11-02 12:50:21 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectOpen:
|
2005-11-02 12:50:21 +00:00
|
|
|
* @name: optional argument currently unused, pass NULL
|
|
|
|
*
|
|
|
|
* This function should be called first to get a connection to the
|
2005-11-23 07:47:13 +00:00
|
|
|
* Hypervisor and xen store
|
2005-11-02 12:50:21 +00:00
|
|
|
*
|
|
|
|
* Returns a pointer to the hypervisor connection or NULL in case of error
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectPtr
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectOpen(const char *name)
|
|
|
|
{
|
2006-06-13 18:29:42 +00:00
|
|
|
int i, res, for_xen = 0;
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectPtr ret = NULL;
|
2005-11-30 13:20:53 +00:00
|
|
|
|
2006-03-28 14:41:04 +00:00
|
|
|
if (!initialized)
|
|
|
|
virInitialize();
|
|
|
|
|
2006-06-13 18:29:42 +00:00
|
|
|
if (name == NULL) {
|
|
|
|
name = "Xen";
|
|
|
|
for_xen = 1;
|
2006-06-14 13:03:04 +00:00
|
|
|
} else if (!strncasecmp(name, "xen", 3)) {
|
2006-06-13 18:29:42 +00:00
|
|
|
for_xen = 1;
|
|
|
|
}
|
|
|
|
|
2006-04-09 13:11:22 +00:00
|
|
|
ret = virGetConnect();
|
2006-03-20 17:49:28 +00:00
|
|
|
if (ret == NULL) {
|
|
|
|
virLibConnError(NULL, VIR_ERR_NO_MEMORY, "Allocating connection");
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2006-03-29 12:46:03 +00:00
|
|
|
for (i = 0;i < MAX_DRIVERS;i++) {
|
|
|
|
if ((virDriverTab[i] != NULL) && (virDriverTab[i]->open != NULL)) {
|
|
|
|
res = virDriverTab[i]->open(ret, name, 0);
|
|
|
|
/*
|
|
|
|
* For a default connect to Xen make sure we manage to contact
|
|
|
|
* all related drivers.
|
|
|
|
*/
|
2006-06-13 18:29:42 +00:00
|
|
|
if ((res < 0) && (for_xen) &&
|
|
|
|
(!strncasecmp(virDriverTab[i]->name, "xen", 3)))
|
2006-03-29 12:46:03 +00:00
|
|
|
goto failed;
|
|
|
|
if (res == 0)
|
|
|
|
ret->drivers[ret->nb_drivers++] = virDriverTab[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret->nb_drivers == 0) {
|
|
|
|
/* we failed to find an adequate driver */
|
|
|
|
virLibConnError(NULL, VIR_ERR_NO_SUPPORT, name);
|
|
|
|
goto failed;
|
|
|
|
}
|
2006-03-23 15:42:10 +00:00
|
|
|
|
2006-03-15 12:13:25 +00:00
|
|
|
return (ret);
|
2006-03-23 15:42:10 +00:00
|
|
|
|
|
|
|
failed:
|
|
|
|
if (ret != NULL) {
|
2006-03-29 12:46:03 +00:00
|
|
|
for (i = 0;i < ret->nb_drivers;i++) {
|
|
|
|
if ((ret->drivers[i] != NULL) && (ret->drivers[i]->close != NULL))
|
|
|
|
ret->drivers[i]->close(ret);
|
|
|
|
}
|
2006-04-09 13:11:22 +00:00
|
|
|
virFreeConnect(ret);
|
2006-03-23 15:42:10 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2005-12-01 16:35:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectOpenReadOnly:
|
2005-12-01 16:35:42 +00:00
|
|
|
* @name: optional argument currently unused, pass NULL
|
|
|
|
*
|
2006-01-19 10:23:15 +00:00
|
|
|
* This function should be called first to get a restricted connection to the
|
|
|
|
* libbrary functionalities. The set of APIs usable are then restricted
|
|
|
|
* on the available methods to control the domains.
|
2005-12-01 16:35:42 +00:00
|
|
|
*
|
|
|
|
* Returns a pointer to the hypervisor connection or NULL in case of error
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectPtr
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectOpenReadOnly(const char *name)
|
|
|
|
{
|
2006-03-29 12:46:03 +00:00
|
|
|
int i, res;
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectPtr ret = NULL;
|
2005-12-01 16:35:42 +00:00
|
|
|
|
2006-03-28 14:41:04 +00:00
|
|
|
if (!initialized)
|
|
|
|
virInitialize();
|
|
|
|
|
2006-06-13 18:29:42 +00:00
|
|
|
if (name == NULL)
|
|
|
|
name = "Xen";
|
|
|
|
|
2006-04-09 13:11:22 +00:00
|
|
|
ret = virGetConnect();
|
2006-02-27 16:27:18 +00:00
|
|
|
if (ret == NULL) {
|
|
|
|
virLibConnError(NULL, VIR_ERR_NO_MEMORY, "Allocating connection");
|
2005-12-01 16:35:42 +00:00
|
|
|
goto failed;
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-20 17:49:28 +00:00
|
|
|
|
2006-03-29 12:46:03 +00:00
|
|
|
for (i = 0;i < MAX_DRIVERS;i++) {
|
|
|
|
if ((virDriverTab[i] != NULL) && (virDriverTab[i]->open != NULL)) {
|
|
|
|
res = virDriverTab[i]->open(ret, name,
|
|
|
|
VIR_DRV_OPEN_QUIET | VIR_DRV_OPEN_RO);
|
|
|
|
if (res == 0)
|
|
|
|
ret->drivers[ret->nb_drivers++] = virDriverTab[i];
|
2006-05-29 18:03:27 +00:00
|
|
|
|
2006-03-29 12:46:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret->nb_drivers == 0) {
|
|
|
|
if (name == NULL)
|
|
|
|
virLibConnError(NULL, VIR_ERR_NO_CONNECT,
|
|
|
|
"could not connect to Xen Daemon nor Xen Store");
|
|
|
|
else
|
|
|
|
/* we failed to find an adequate driver */
|
|
|
|
virLibConnError(NULL, VIR_ERR_NO_SUPPORT, name);
|
|
|
|
goto failed;
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-23 15:42:10 +00:00
|
|
|
ret->flags = VIR_CONNECT_RO;
|
|
|
|
|
2006-03-15 12:13:25 +00:00
|
|
|
return (ret);
|
2006-03-23 15:42:10 +00:00
|
|
|
|
|
|
|
failed:
|
2006-01-19 10:23:15 +00:00
|
|
|
if (ret != NULL) {
|
2006-03-29 12:46:03 +00:00
|
|
|
for (i = 0;i < ret->nb_drivers;i++) {
|
|
|
|
if ((ret->drivers[i] != NULL) && (ret->drivers[i]->close != NULL))
|
|
|
|
ret->drivers[i]->close(ret);
|
|
|
|
}
|
2006-04-09 13:11:22 +00:00
|
|
|
virFreeConnect(ret);
|
2006-01-19 10:23:15 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2005-11-02 12:50:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectClose:
|
2005-11-02 12:50:21 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
*
|
|
|
|
* This function closes the connection to the Hypervisor. This should
|
|
|
|
* not be called if further interaction with the Hypervisor are needed
|
|
|
|
* especially if there is running domain which need further monitoring by
|
|
|
|
* the application.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success or -1 in case of error.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectClose(virConnectPtr conn)
|
|
|
|
{
|
2006-06-14 15:44:14 +00:00
|
|
|
int i;
|
|
|
|
|
2005-12-16 18:41:46 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn))
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-06-14 15:44:14 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) && (conn->drivers[i]->close != NULL))
|
|
|
|
conn->drivers[i]->close(conn);
|
|
|
|
}
|
2006-04-09 13:11:22 +00:00
|
|
|
if (virFreeConnect(conn) < 0)
|
|
|
|
return (-1);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (0);
|
2005-11-02 12:50:21 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 13:26:52 +00:00
|
|
|
/**
|
|
|
|
* virConnectGetType:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
*
|
|
|
|
* Get the name of the Hypervisor software used.
|
|
|
|
*
|
|
|
|
* Returns NULL in case of error, a static zero terminated string otherwise.
|
|
|
|
*/
|
|
|
|
const char *
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectGetType(virConnectPtr conn)
|
|
|
|
{
|
2006-06-13 16:31:44 +00:00
|
|
|
int i;
|
2006-06-13 18:29:42 +00:00
|
|
|
const char *ret;
|
2006-06-13 16:31:44 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
2006-03-29 12:46:03 +00:00
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-06-13 18:29:42 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->type != NULL)) {
|
|
|
|
ret = conn->drivers[i]->type(conn);
|
|
|
|
if (ret != NULL)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
2006-06-13 16:31:44 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->name != NULL)) {
|
|
|
|
return(conn->drivers[i]->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(NULL);
|
2005-12-08 13:26:52 +00:00
|
|
|
}
|
|
|
|
|
2005-11-02 12:50:21 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectGetVersion:
|
2005-11-02 12:50:21 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
2005-12-08 15:08:46 +00:00
|
|
|
* @hvVer: return value for the version of the running hypervisor (OUT)
|
2005-11-02 12:50:21 +00:00
|
|
|
*
|
2005-12-08 13:26:52 +00:00
|
|
|
* Get the version level of the Hypervisor running. This may work only with
|
|
|
|
* hypervisor call, i.e. with priviledged access to the hypervisor, not
|
|
|
|
* with a Read-Only connection.
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
2005-12-08 15:08:46 +00:00
|
|
|
* Returns -1 in case of error, 0 otherwise. if the version can't be
|
|
|
|
* extracted by lack of capacities returns 0 and @hvVer is 0, otherwise
|
|
|
|
* @hvVer value is major * 1,000,000 + minor * 1,000 + release
|
2005-11-07 17:16:18 +00:00
|
|
|
*/
|
2005-12-08 15:08:46 +00:00
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectGetVersion(virConnectPtr conn, unsigned long *hvVer)
|
|
|
|
{
|
2006-06-13 16:31:44 +00:00
|
|
|
int ret, i;
|
2005-12-08 13:26:52 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (hvVer == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-06-13 16:31:44 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->version != NULL)) {
|
|
|
|
ret = conn->drivers[i]->version(conn, hvVer);
|
|
|
|
if (ret == 0)
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (-1);
|
2005-12-02 14:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectListDomains:
|
2005-12-02 14:16:21 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @ids: array to collect the list of IDs of active domains
|
|
|
|
* @maxids: size of @ids
|
|
|
|
*
|
|
|
|
* Collect the list of active domains, and store their ID in @maxids
|
|
|
|
*
|
|
|
|
* Returns the number of domain found or -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectListDomains(virConnectPtr conn, int *ids, int maxids)
|
|
|
|
{
|
2005-12-02 14:16:21 +00:00
|
|
|
int ret = -1;
|
2006-04-24 18:21:29 +00:00
|
|
|
int i;
|
2005-12-02 14:16:21 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if ((ids == NULL) || (maxids <= 0)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-04-24 18:21:29 +00:00
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->listDomains != NULL)) {
|
|
|
|
ret = conn->drivers[i]->listDomains(conn, ids, maxids);
|
|
|
|
if (ret >= 0)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-14 15:44:14 +00:00
|
|
|
return (-1);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
2005-12-07 11:03:24 +00:00
|
|
|
/**
|
|
|
|
* virConnectNumOfDomains:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
*
|
2005-12-08 16:42:56 +00:00
|
|
|
* Provides the number of active domains.
|
|
|
|
*
|
2005-12-07 11:03:24 +00:00
|
|
|
* Returns the number of domain found or -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virConnectNumOfDomains(virConnectPtr conn)
|
|
|
|
{
|
2005-12-07 11:03:24 +00:00
|
|
|
int ret = -1;
|
2006-04-24 18:21:29 +00:00
|
|
|
int i;
|
2005-12-07 11:03:24 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2005-12-16 18:41:46 +00:00
|
|
|
|
2006-04-24 18:21:29 +00:00
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->numOfDomains != NULL)) {
|
|
|
|
ret = conn->drivers[i]->numOfDomains(conn);
|
|
|
|
if (ret >= 0)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-14 15:44:14 +00:00
|
|
|
return(-1);
|
2005-12-07 11:03:24 +00:00
|
|
|
}
|
|
|
|
|
2005-11-07 17:16:18 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainCreateLinux:
|
2005-11-07 17:16:18 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
2006-02-16 22:50:52 +00:00
|
|
|
* @xmlDesc: an XML description of the domain
|
2005-12-05 11:16:07 +00:00
|
|
|
* @flags: an optional set of virDomainFlags
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
2006-02-20 23:08:47 +00:00
|
|
|
* Launch a new Linux guest domain, based on an XML description similar
|
|
|
|
* to the one returned by virDomainGetXMLDesc()
|
|
|
|
* This function may requires priviledged access to the hypervisor.
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainPtr
|
2006-06-16 12:36:40 +00:00
|
|
|
virDomainCreateLinux(virConnectPtr conn, const char *xmlDesc,
|
|
|
|
unsigned int flags)
|
2006-03-15 12:13:25 +00:00
|
|
|
{
|
2006-06-16 12:36:40 +00:00
|
|
|
virDomainPtr ret;
|
|
|
|
int i;
|
2005-12-16 18:41:46 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (xmlDesc == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
|
2006-06-16 12:36:40 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainCreateLinux != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainCreateLinux(conn, xmlDesc, flags);
|
|
|
|
if (ret != NULL)
|
|
|
|
return(ret);
|
|
|
|
}
|
2006-02-16 22:50:52 +00:00
|
|
|
}
|
2006-06-16 12:36:40 +00:00
|
|
|
return(NULL);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
2005-12-16 00:51:27 +00:00
|
|
|
|
2005-11-30 13:20:53 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainLookupByID:
|
2005-11-30 13:20:53 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @id: the domain ID number
|
|
|
|
*
|
|
|
|
* Try to find a domain based on the hypervisor ID number
|
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainPtr
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainLookupByID(virConnectPtr conn, int id)
|
|
|
|
{
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainPtr ret;
|
2006-05-29 18:03:27 +00:00
|
|
|
int i;
|
2005-11-30 13:20:53 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (id < 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2005-11-30 13:20:53 +00:00
|
|
|
|
2006-05-29 18:03:27 +00:00
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainLookupByID != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainLookupByID(conn, id);
|
|
|
|
if (ret)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-23 10:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virDomainLookupByUUID:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
2006-05-22 14:38:33 +00:00
|
|
|
* @uuid: the raw UUID for the domain
|
2006-02-23 10:13:55 +00:00
|
|
|
*
|
|
|
|
* Try to lookup a domain on the given hypervisor based on its UUID.
|
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
|
|
|
virDomainPtr
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
|
|
|
|
{
|
2006-02-23 10:13:55 +00:00
|
|
|
virDomainPtr ret;
|
2006-05-29 18:03:27 +00:00
|
|
|
int i;
|
2006-02-23 10:13:55 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (uuid == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-05-29 18:03:27 +00:00
|
|
|
|
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainLookupByUUID != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainLookupByUUID(conn, uuid);
|
|
|
|
if (ret)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-15 14:50:48 +00:00
|
|
|
return (NULL);
|
2005-11-30 13:20:53 +00:00
|
|
|
}
|
|
|
|
|
2006-05-22 14:38:33 +00:00
|
|
|
/**
|
|
|
|
* virDomainLookupByUUIDString:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @uuidstr: the string UUID for the domain
|
|
|
|
*
|
|
|
|
* Try to lookup a domain on the given hypervisor based on its UUID.
|
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
|
|
|
virDomainPtr
|
|
|
|
virDomainLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
|
|
|
{
|
|
|
|
int raw[16], i;
|
|
|
|
unsigned char uuid[16];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (uuidstr == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
}
|
|
|
|
/* XXX: sexpr_uuid() also supports 'xxxx-xxxx-xxxx-xxxx' format.
|
|
|
|
* We needn't it here. Right?
|
|
|
|
*/
|
|
|
|
ret = sscanf(uuidstr,
|
|
|
|
"%02x%02x%02x%02x-"
|
|
|
|
"%02x%02x-"
|
|
|
|
"%02x%02x-"
|
|
|
|
"%02x%02x-"
|
|
|
|
"%02x%02x%02x%02x%02x%02x",
|
|
|
|
raw + 0, raw + 1, raw + 2, raw + 3,
|
|
|
|
raw + 4, raw + 5, raw + 6, raw + 7,
|
|
|
|
raw + 8, raw + 9, raw + 10, raw + 11,
|
|
|
|
raw + 12, raw + 13, raw + 14, raw + 15);
|
|
|
|
|
|
|
|
if (ret!=16) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
uuid[i] = raw[i] & 0xFF;
|
|
|
|
|
|
|
|
return virDomainLookupByUUID(conn, &uuid[0]);
|
|
|
|
}
|
|
|
|
|
2005-12-12 13:22:20 +00:00
|
|
|
/**
|
|
|
|
* virDomainLookupByName:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @name: name for the domain
|
|
|
|
*
|
2005-12-13 16:22:05 +00:00
|
|
|
* Try to lookup a domain on the given hypervisor based on its name.
|
2005-12-12 13:22:20 +00:00
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
|
|
|
virDomainPtr
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainLookupByName(virConnectPtr conn, const char *name)
|
|
|
|
{
|
2005-12-12 13:22:20 +00:00
|
|
|
virDomainPtr ret = NULL;
|
2006-05-29 18:03:27 +00:00
|
|
|
int i;
|
2005-12-12 13:22:20 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (name == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2005-12-12 13:22:20 +00:00
|
|
|
|
2006-05-29 18:03:27 +00:00
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainLookupByName != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainLookupByName(conn, name);
|
|
|
|
if (ret)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
2006-06-15 14:50:48 +00:00
|
|
|
return (NULL);
|
2005-12-12 13:22:20 +00:00
|
|
|
}
|
|
|
|
|
2005-11-07 17:16:18 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainDestroy:
|
2005-11-07 17:16:18 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Destroy the domain object. The running instance is shutdown if not down
|
|
|
|
* already and all resources used by it are given back to the hypervisor.
|
2005-12-08 16:42:56 +00:00
|
|
|
* The data structure is freed and should not be used thereafter if the
|
|
|
|
* call does not return an error.
|
2006-01-18 10:37:08 +00:00
|
|
|
* This function may requires priviledged access
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
2005-11-02 13:19:10 +00:00
|
|
|
*/
|
2005-11-07 17:16:18 +00:00
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainDestroy(virDomainPtr domain)
|
|
|
|
{
|
2006-06-14 17:07:00 +00:00
|
|
|
int ret = -1, i;
|
|
|
|
virConnectPtr conn;
|
2005-12-08 17:16:24 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
#if PEDANTIC
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
|
|
|
#endif
|
|
|
|
|
2006-06-21 12:56:19 +00:00
|
|
|
/*
|
|
|
|
* Go though the driver registered entry points but use the
|
|
|
|
* XEN_HYPERVISOR directly only as a last mechanism
|
|
|
|
*/
|
2006-06-14 17:07:00 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
2006-06-21 12:56:19 +00:00
|
|
|
(conn->drivers[i]->no != VIR_DRV_XEN_HYPERVISOR) &&
|
|
|
|
(conn->drivers[i]->domainDestroy != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainDestroy(domain) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->no == VIR_DRV_XEN_HYPERVISOR) &&
|
2006-06-14 17:07:00 +00:00
|
|
|
(conn->drivers[i]->domainDestroy != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainDestroy(domain) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
2006-01-18 10:37:08 +00:00
|
|
|
}
|
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (ret);
|
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
return (ret);
|
2005-12-08 16:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virDomainFree:
|
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Free the domain object. The running instance is kept alive.
|
|
|
|
* The data structure is freed and should not be used thereafter.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainFree(virDomainPtr domain)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-04-09 13:11:22 +00:00
|
|
|
if (virFreeDomain(domain->conn, domain) < 0)
|
|
|
|
return (-1);
|
|
|
|
return(0);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainSuspend:
|
2005-11-07 17:16:18 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Suspends an active domain, the process is frozen without further access
|
|
|
|
* to CPU resources and I/O but the memory used by the domain at the
|
2005-12-05 11:16:07 +00:00
|
|
|
* hypervisor level will stay allocated. Use virDomainResume() to reactivate
|
2005-11-07 17:16:18 +00:00
|
|
|
* the domain.
|
2006-01-18 10:37:08 +00:00
|
|
|
* This function may requires priviledged access.
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainSuspend(virDomainPtr domain)
|
|
|
|
{
|
2006-06-14 17:07:00 +00:00
|
|
|
int ret = -1, i;
|
|
|
|
virConnectPtr conn;
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
#if PEDANTIC
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
|
|
|
#endif
|
|
|
|
|
2006-06-21 12:56:19 +00:00
|
|
|
/*
|
|
|
|
* Go though the driver registered entry points but use the
|
|
|
|
* XEN_HYPERVISOR directly only as a last mechanism
|
|
|
|
*/
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->no != VIR_DRV_XEN_HYPERVISOR) &&
|
|
|
|
(conn->drivers[i]->domainSuspend != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainSuspend(domain) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
2006-06-14 17:07:00 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
2006-06-21 12:56:19 +00:00
|
|
|
(conn->drivers[i]->no == VIR_DRV_XEN_HYPERVISOR) &&
|
2006-06-14 17:07:00 +00:00
|
|
|
(conn->drivers[i]->domainSuspend != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainSuspend(domain) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (ret);
|
|
|
|
}
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
return (ret);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainResume:
|
2005-11-07 17:16:18 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Resume an suspended domain, the process is restarted from the state where
|
2005-12-05 11:16:07 +00:00
|
|
|
* it was frozen by calling virSuspendDomain().
|
2006-01-18 10:37:08 +00:00
|
|
|
* This function may requires priviledged access
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainResume(virDomainPtr domain)
|
|
|
|
{
|
2006-06-16 12:36:40 +00:00
|
|
|
int i;
|
2006-06-14 17:07:00 +00:00
|
|
|
virConnectPtr conn;
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
#if PEDANTIC
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
|
|
|
#endif
|
|
|
|
|
2006-06-21 12:56:19 +00:00
|
|
|
/*
|
|
|
|
* Go though the driver registered entry points but use the
|
|
|
|
* XEN_HYPERVISOR directly only as a last mechanism
|
|
|
|
*/
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->no != VIR_DRV_XEN_HYPERVISOR) &&
|
|
|
|
(conn->drivers[i]->domainResume != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainResume(domain) == 0)
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
2006-06-14 17:07:00 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
2006-06-21 12:56:19 +00:00
|
|
|
(conn->drivers[i]->no == VIR_DRV_XEN_HYPERVISOR) &&
|
2006-06-14 17:07:00 +00:00
|
|
|
(conn->drivers[i]->domainResume != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainResume(domain) == 0)
|
2006-06-16 12:36:40 +00:00
|
|
|
return(0);
|
2006-06-14 17:07:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-16 12:36:40 +00:00
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (-1);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
2006-01-18 10:37:08 +00:00
|
|
|
/**
|
|
|
|
* virDomainSave:
|
|
|
|
* @domain: a domain object
|
|
|
|
* @to: path for the output file
|
|
|
|
*
|
|
|
|
* This method will suspend a domain and save its memory contents to
|
2006-01-20 10:00:08 +00:00
|
|
|
* a file on disk. After the call, if successful, the domain is not
|
|
|
|
* listed as running anymore (this may be a problem).
|
|
|
|
* Use virDomainRestore() to restore a domain after saving.
|
2006-01-18 10:37:08 +00:00
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainSave(virDomainPtr domain, const char *to)
|
|
|
|
{
|
2006-06-16 12:36:40 +00:00
|
|
|
int ret, i;
|
2006-01-20 10:00:08 +00:00
|
|
|
char filepath[4096];
|
2006-06-16 12:36:40 +00:00
|
|
|
virConnectPtr conn;
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-06-16 12:36:40 +00:00
|
|
|
conn = domain->conn;
|
2006-02-27 16:27:18 +00:00
|
|
|
if (to == NULL) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-01-20 10:00:08 +00:00
|
|
|
/*
|
|
|
|
* We must absolutize the file path as the save is done out of process
|
|
|
|
* TODO: check for URI when libxml2 is linked in.
|
|
|
|
*/
|
|
|
|
if (to[0] != '/') {
|
2006-03-15 12:13:25 +00:00
|
|
|
unsigned int len, t;
|
2006-01-20 10:00:08 +00:00
|
|
|
|
2006-03-15 12:13:25 +00:00
|
|
|
t = strlen(to);
|
|
|
|
if (getcwd(filepath, sizeof(filepath) - (t + 3)) == NULL)
|
|
|
|
return (-1);
|
|
|
|
len = strlen(filepath);
|
|
|
|
/* that should be covered by getcwd() semantic, but be 100% sure */
|
|
|
|
if (len > sizeof(filepath) - (t + 3))
|
|
|
|
return (-1);
|
|
|
|
filepath[len] = '/';
|
|
|
|
strcpy(&filepath[len + 1], to);
|
|
|
|
to = &filepath[0];
|
2006-01-20 10:00:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-06-16 12:36:40 +00:00
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainSave != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainSave(domain, to);
|
|
|
|
if (ret == 0)
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (-1);
|
2006-01-18 10:37:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virDomainRestore:
|
2006-01-20 10:00:08 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
2006-01-18 10:37:08 +00:00
|
|
|
* @from: path to the
|
|
|
|
*
|
|
|
|
* This method will restore a domain saved to disk by virDomainSave().
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainRestore(virConnectPtr conn, const char *from)
|
|
|
|
{
|
2006-06-16 12:36:40 +00:00
|
|
|
int ret, i;
|
2006-01-20 10:00:08 +00:00
|
|
|
char filepath[4096];
|
2006-01-18 10:37:08 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (from == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
|
2006-01-20 10:00:08 +00:00
|
|
|
/*
|
|
|
|
* We must absolutize the file path as the restore is done out of process
|
|
|
|
* TODO: check for URI when libxml2 is linked in.
|
|
|
|
*/
|
|
|
|
if (from[0] != '/') {
|
2006-03-15 12:13:25 +00:00
|
|
|
unsigned int len, t;
|
|
|
|
|
|
|
|
t = strlen(from);
|
|
|
|
if (getcwd(filepath, sizeof(filepath) - (t + 3)) == NULL)
|
|
|
|
return (-1);
|
|
|
|
len = strlen(filepath);
|
|
|
|
/* that should be covered by getcwd() semantic, but be 100% sure */
|
|
|
|
if (len > sizeof(filepath) - (t + 3))
|
|
|
|
return (-1);
|
|
|
|
filepath[len] = '/';
|
|
|
|
strcpy(&filepath[len + 1], from);
|
|
|
|
from = &filepath[0];
|
|
|
|
}
|
|
|
|
|
2006-06-16 12:36:40 +00:00
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainSave != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainRestore(conn, from);
|
|
|
|
if (ret == 0)
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (-1);
|
2006-01-18 10:37:08 +00:00
|
|
|
}
|
|
|
|
|
2005-12-16 12:16:41 +00:00
|
|
|
/**
|
|
|
|
* virDomainShutdown:
|
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Shutdown a domain, the domain object is still usable there after but
|
2006-01-18 10:37:08 +00:00
|
|
|
* the domain OS is being stopped. Note that the guest OS may ignore the
|
|
|
|
* request.
|
2005-12-16 12:16:41 +00:00
|
|
|
*
|
|
|
|
* TODO: should we add an option for reboot, knowing it may not be doable
|
|
|
|
* in the general case ?
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainShutdown(virDomainPtr domain)
|
|
|
|
{
|
2006-06-14 17:07:00 +00:00
|
|
|
int ret = -1, i;
|
|
|
|
virConnectPtr conn;
|
2005-12-16 12:16:41 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
#if PEDANTIC
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainShutdown != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainShutdown(domain) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
2006-03-23 15:42:10 +00:00
|
|
|
}
|
2006-01-18 18:58:35 +00:00
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (ret);
|
2005-12-16 12:16:41 +00:00
|
|
|
}
|
2006-06-14 17:07:00 +00:00
|
|
|
|
2006-03-15 12:13:25 +00:00
|
|
|
return (ret);
|
2005-12-16 12:16:41 +00:00
|
|
|
}
|
|
|
|
|
2006-04-03 13:46:43 +00:00
|
|
|
/**
|
|
|
|
* virDomainReboot:
|
|
|
|
* @domain: a domain object
|
|
|
|
* @flags: extra flags for the reboot operation, not used yet
|
|
|
|
*
|
|
|
|
* Reboot a domain, the domain object is still usable there after but
|
|
|
|
* the domain OS is being stopped for a restart.
|
|
|
|
* Note that the guest OS may ignore the request.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virDomainReboot(virDomainPtr domain, unsigned int flags)
|
|
|
|
{
|
2006-06-14 17:07:00 +00:00
|
|
|
int ret = -1, i;
|
|
|
|
virConnectPtr conn;
|
2006-04-03 13:46:43 +00:00
|
|
|
|
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
#if PEDANTIC
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Go though the driver registered entry points */
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainReboot != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainReboot(domain, flags) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
2006-04-03 13:46:43 +00:00
|
|
|
}
|
|
|
|
|
2006-06-14 17:07:00 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (ret);
|
2006-04-03 13:46:43 +00:00
|
|
|
}
|
2006-06-14 17:07:00 +00:00
|
|
|
|
2006-04-03 13:46:43 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2005-11-23 07:47:13 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainGetName:
|
2005-11-23 07:47:13 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Get the public name for that domain
|
|
|
|
*
|
|
|
|
* Returns a pointer to the name or NULL, the string need not be deallocated
|
|
|
|
* its lifetime will be the same as the domain object.
|
|
|
|
*/
|
|
|
|
const char *
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetName(virDomainPtr domain)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
return (domain->name);
|
2005-11-30 13:20:53 +00:00
|
|
|
}
|
|
|
|
|
2006-02-23 10:13:55 +00:00
|
|
|
/**
|
|
|
|
* virDomainGetUUID:
|
|
|
|
* @domain: a domain object
|
|
|
|
* @uuid: pointer to a 16 bytes array
|
|
|
|
*
|
|
|
|
* Get the UUID for a domain
|
|
|
|
*
|
|
|
|
* Returns -1 in case of error, 0 in case of success
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetUUID(virDomainPtr domain, unsigned char *uuid)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (uuid == NULL) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (domain->handle == 0) {
|
2006-02-23 10:13:55 +00:00
|
|
|
memset(uuid, 0, 16);
|
2006-02-27 16:27:18 +00:00
|
|
|
} else {
|
2006-03-15 12:13:25 +00:00
|
|
|
if ((domain->uuid[0] == 0) && (domain->uuid[1] == 0) &&
|
|
|
|
(domain->uuid[2] == 0) && (domain->uuid[3] == 0) &&
|
|
|
|
(domain->uuid[4] == 0) && (domain->uuid[5] == 0) &&
|
|
|
|
(domain->uuid[6] == 0) && (domain->uuid[7] == 0) &&
|
|
|
|
(domain->uuid[8] == 0) && (domain->uuid[9] == 0) &&
|
|
|
|
(domain->uuid[10] == 0) && (domain->uuid[11] == 0) &&
|
|
|
|
(domain->uuid[12] == 0) && (domain->uuid[13] == 0) &&
|
|
|
|
(domain->uuid[14] == 0) && (domain->uuid[15] == 0))
|
2006-03-22 13:44:01 +00:00
|
|
|
xenDaemonDomainLookupByName_ids(domain->conn, domain->name,
|
2006-03-15 12:13:25 +00:00
|
|
|
&domain->uuid[0]);
|
|
|
|
memcpy(uuid, &domain->uuid[0], 16);
|
|
|
|
}
|
|
|
|
return (0);
|
2006-02-23 10:13:55 +00:00
|
|
|
}
|
|
|
|
|
2006-05-22 14:38:33 +00:00
|
|
|
/**
|
|
|
|
* virDomainGetUUIDString:
|
|
|
|
* @domain: a domain object
|
|
|
|
* @buf: pointer to a 37 bytes array
|
|
|
|
*
|
|
|
|
* Get the UUID for a domain as string. For more information about
|
|
|
|
* UUID see RFC4122.
|
|
|
|
*
|
|
|
|
* Returns -1 in case of error, 0 in case of success
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virDomainGetUUIDString(virDomainPtr domain, char *buf)
|
|
|
|
{
|
|
|
|
unsigned char uuid[16];
|
|
|
|
|
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (buf == NULL) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virDomainGetUUID(domain, &uuid[0]))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
snprintf(buf, 37,
|
|
|
|
"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
|
|
|
|
uuid[0], uuid[1], uuid[2], uuid[3],
|
|
|
|
uuid[4], uuid[5], uuid[6], uuid[7],
|
|
|
|
uuid[8], uuid[9], uuid[10], uuid[11],
|
|
|
|
uuid[12], uuid[13], uuid[14], uuid[15]);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-11-30 13:20:53 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainGetID:
|
2005-11-30 13:20:53 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Get the hypervisor ID number for the domain
|
|
|
|
*
|
|
|
|
* Returns the domain ID number or (unsigned int) -1 in case of error
|
|
|
|
*/
|
|
|
|
unsigned int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetID(virDomainPtr domain)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return ((unsigned int) -1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
return (domain->handle);
|
2005-11-23 07:47:13 +00:00
|
|
|
}
|
|
|
|
|
2005-12-16 00:51:27 +00:00
|
|
|
/**
|
|
|
|
* virDomainGetOSType:
|
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Get the type of domain operation system.
|
|
|
|
*
|
2006-03-20 17:49:28 +00:00
|
|
|
* Returns the new string or NULL in case of error, the string must be
|
|
|
|
* freed by the caller.
|
2005-12-16 00:51:27 +00:00
|
|
|
*/
|
|
|
|
char *
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetOSType(virDomainPtr domain)
|
|
|
|
{
|
2005-12-16 00:51:27 +00:00
|
|
|
char *vm, *str = NULL;
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2005-12-16 00:51:27 +00:00
|
|
|
vm = virDomainGetVM(domain);
|
|
|
|
if (vm) {
|
2006-03-15 12:13:25 +00:00
|
|
|
str = virDomainGetVMInfo(domain, vm, "image/ostype");
|
|
|
|
free(vm);
|
2005-12-16 00:51:27 +00:00
|
|
|
}
|
2006-01-19 10:23:15 +00:00
|
|
|
if (str == NULL)
|
|
|
|
str = strdup("linux");
|
|
|
|
|
2006-03-15 12:13:25 +00:00
|
|
|
return (str);
|
2005-12-16 00:51:27 +00:00
|
|
|
}
|
|
|
|
|
2005-11-23 07:47:13 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainGetMaxMemory:
|
2005-11-23 07:47:13 +00:00
|
|
|
* @domain: a domain object or NULL
|
|
|
|
*
|
|
|
|
* Retrieve the maximum amount of physical memory allocated to a
|
|
|
|
* domain. If domain is NULL, then this get the amount of memory reserved
|
|
|
|
* to Domain0 i.e. the domain where the application runs.
|
|
|
|
*
|
|
|
|
* Returns the memory size in kilobytes or 0 in case of error.
|
|
|
|
*/
|
|
|
|
unsigned long
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetMaxMemory(virDomainPtr domain)
|
|
|
|
{
|
2005-12-12 13:22:20 +00:00
|
|
|
unsigned long ret = 0;
|
2006-06-16 12:36:40 +00:00
|
|
|
virConnectPtr conn;
|
|
|
|
int i;
|
2005-12-12 13:22:20 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (0);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-06-16 12:36:40 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
|
2006-03-23 15:42:10 +00:00
|
|
|
/*
|
2006-06-16 12:36:40 +00:00
|
|
|
* in that case instead of trying only though one method try all availble.
|
|
|
|
* If needed that can be changed back if it's a performcance problem.
|
2006-03-23 15:42:10 +00:00
|
|
|
*/
|
2006-06-16 12:36:40 +00:00
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainGetMaxMemory != NULL)) {
|
|
|
|
ret = conn->drivers[i]->domainGetMaxMemory(domain);
|
|
|
|
if (ret != 0)
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (-1);
|
2005-11-23 07:47:13 +00:00
|
|
|
}
|
|
|
|
|
2005-11-07 17:16:18 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainSetMaxMemory:
|
2005-11-07 17:16:18 +00:00
|
|
|
* @domain: a domain object or NULL
|
|
|
|
* @memory: the memory size in kilobytes
|
|
|
|
*
|
|
|
|
* Dynamically change the maximum amount of physical memory allocated to a
|
|
|
|
* domain. If domain is NULL, then this change the amount of memory reserved
|
|
|
|
* to Domain0 i.e. the domain where the application runs.
|
2005-12-15 14:51:18 +00:00
|
|
|
* This function requires priviledged access to the hypervisor.
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainSetMaxMemory(virDomainPtr domain, unsigned long memory)
|
|
|
|
{
|
2006-04-13 17:18:49 +00:00
|
|
|
int ret = -1 , i;
|
|
|
|
virConnectPtr conn;
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (memory < 4096) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-22 13:44:01 +00:00
|
|
|
if (domain == NULL) {
|
|
|
|
TODO
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-03-22 13:44:01 +00:00
|
|
|
}
|
2006-04-13 17:18:49 +00:00
|
|
|
conn = domain->conn;
|
2006-03-22 13:44:01 +00:00
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-03-22 13:44:01 +00:00
|
|
|
|
2006-04-13 17:18:49 +00:00
|
|
|
/*
|
|
|
|
* in that case instead of trying only though one method try all availble.
|
|
|
|
* If needed that can be changed back if it's a performcance problem.
|
|
|
|
*/
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainSetMaxMemory != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainSetMaxMemory(domain, memory) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-04-13 17:18:49 +00:00
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|
2005-12-12 13:22:20 +00:00
|
|
|
|
2006-04-13 17:18:49 +00:00
|
|
|
/**
|
|
|
|
* virDomainSetMemory:
|
|
|
|
* @domain: a domain object or NULL
|
|
|
|
* @memory: the memory size in kilobytes
|
|
|
|
*
|
|
|
|
* Dynamically change the target amount of physical memory allocated to a
|
|
|
|
* domain. If domain is NULL, then this change the amount of memory reserved
|
|
|
|
* to Domain0 i.e. the domain where the application runs.
|
|
|
|
* This function may requires priviledged access to the hypervisor.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virDomainSetMemory(virDomainPtr domain, unsigned long memory)
|
|
|
|
{
|
|
|
|
int ret = -1 , i;
|
|
|
|
virConnectPtr conn;
|
2005-12-12 13:22:20 +00:00
|
|
|
|
2006-04-13 17:18:49 +00:00
|
|
|
if (memory < 4096) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (domain == NULL) {
|
|
|
|
TODO
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
|
|
|
return (-1);
|
2006-03-22 13:44:01 +00:00
|
|
|
}
|
2006-04-13 17:18:49 +00:00
|
|
|
conn = domain->conn;
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
2005-12-12 13:22:20 +00:00
|
|
|
|
2006-04-13 17:18:49 +00:00
|
|
|
/*
|
|
|
|
* in that case instead of trying only though one method try all availble.
|
|
|
|
* If needed that can be changed back if it's a performcance problem.
|
|
|
|
*/
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->domainSetMemory != NULL)) {
|
|
|
|
if (conn->drivers[i]->domainSetMemory(domain, memory) == 0)
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
return (ret);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
2005-12-05 18:14:37 +00:00
|
|
|
/**
|
|
|
|
* virDomainGetInfo:
|
2005-12-13 16:22:05 +00:00
|
|
|
* @domain: a domain object
|
2005-12-05 18:14:37 +00:00
|
|
|
* @info: pointer to a virDomainInfo structure allocated by the user
|
|
|
|
*
|
|
|
|
* Extract information about a domain. Note that if the connection
|
|
|
|
* used to get the domain is limited only a partial set of the informations
|
|
|
|
* can be extracted.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
|
|
|
|
{
|
2006-05-29 18:03:27 +00:00
|
|
|
int i;
|
2005-12-05 18:14:37 +00:00
|
|
|
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (info == NULL) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (-1);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2005-12-06 13:47:40 +00:00
|
|
|
memset(info, 0, sizeof(virDomainInfo));
|
2006-03-15 12:13:25 +00:00
|
|
|
|
2006-05-29 18:03:27 +00:00
|
|
|
for (i = 0;i < domain->conn->nb_drivers;i++) {
|
|
|
|
if ((domain->conn->drivers[i] != NULL) &&
|
|
|
|
(domain->conn->drivers[i]->domainGetInfo != NULL)) {
|
|
|
|
if (domain->conn->drivers[i]->domainGetInfo(domain, info) == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-23 15:42:10 +00:00
|
|
|
return (-1);
|
2005-12-05 18:14:37 +00:00
|
|
|
}
|
2005-12-13 16:22:05 +00:00
|
|
|
|
2006-02-20 23:08:47 +00:00
|
|
|
/**
|
|
|
|
* virDomainGetXMLDesc:
|
|
|
|
* @domain: a domain object
|
|
|
|
* @flags: and OR'ed set of extraction flags, not used yet
|
|
|
|
*
|
|
|
|
* Provide an XML description of the domain. The description may be reused
|
|
|
|
* later to relaunch the domain with virDomainCreateLinux().
|
|
|
|
*
|
|
|
|
* Returns a 0 terminated UTF-8 encoded XML instance, or NULL in case of error.
|
|
|
|
* the caller must free() the returned value.
|
|
|
|
*/
|
|
|
|
char *
|
2006-03-15 12:13:25 +00:00
|
|
|
virDomainGetXMLDesc(virDomainPtr domain, int flags)
|
|
|
|
{
|
2006-02-27 16:27:18 +00:00
|
|
|
if (!VIR_IS_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
|
|
|
if (flags != 0) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
2006-03-15 12:13:25 +00:00
|
|
|
return (NULL);
|
2006-02-27 16:27:18 +00:00
|
|
|
}
|
2006-02-20 23:08:47 +00:00
|
|
|
|
2006-03-22 13:44:01 +00:00
|
|
|
return (xenDaemonDomainDumpXML(domain));
|
2006-02-20 23:08:47 +00:00
|
|
|
}
|
2006-03-29 12:46:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virNodeGetInfo:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @info: pointer to a virNodeInfo structure allocated by the user
|
|
|
|
*
|
|
|
|
* Extract hardware information about the node.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info) {
|
|
|
|
int i;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (info == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0;i < conn->nb_drivers;i++) {
|
|
|
|
if ((conn->drivers[i] != NULL) &&
|
|
|
|
(conn->drivers[i]->nodeGetInfo != NULL)) {
|
|
|
|
ret = conn->drivers[i]->nodeGetInfo(conn, info);
|
|
|
|
if (ret == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret != 0) {
|
|
|
|
virLibConnError(conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
2006-04-28 18:29:26 +00:00
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* *
|
|
|
|
* Handling of defined but not running domains *
|
|
|
|
* *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virDomainDefineXML:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @xml: the XML description for the domain, preferably in UTF-8
|
|
|
|
*
|
|
|
|
* define a domain, but does not start it
|
|
|
|
*
|
|
|
|
* Returns NULL in case of error, a pointer to the domain otherwise
|
|
|
|
*/
|
|
|
|
virDomainPtr
|
|
|
|
virDomainDefineXML(virConnectPtr conn, const char *xml) {
|
|
|
|
virDomainPtr ret = NULL;
|
|
|
|
const char *name = NULL;
|
|
|
|
xmlDocPtr doc = NULL;
|
|
|
|
xmlXPathObjectPtr obj = NULL;
|
|
|
|
xmlXPathContextPtr ctxt = NULL;
|
|
|
|
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (xml == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check the XML description is at least well formed and extract the
|
|
|
|
* name.
|
|
|
|
* TODO: a full validation based on RNG for example should be done there
|
|
|
|
*/
|
|
|
|
doc = xmlReadMemory(xml, strlen(xml), "domain_define.xml", NULL, 0);
|
|
|
|
if (doc == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_XML_ERROR, __FUNCTION__);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ctxt = xmlXPathNewContext(doc);
|
|
|
|
if (ctxt == NULL) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
obj = xmlXPathEval(BAD_CAST "string(/domain/name[1])", ctxt);
|
|
|
|
if ((obj == NULL) || (obj->type != XPATH_STRING) ||
|
|
|
|
(obj->stringval == NULL) || (obj->stringval[0] == 0)) {
|
|
|
|
virLibConnError(conn, VIR_ERR_NO_NAME, xml);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
name = (const char *) obj->stringval;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now look it up in the domain pool and check it's not an already run
|
|
|
|
* domain.
|
|
|
|
*/
|
|
|
|
ret = virGetDomain(conn, name, NULL);
|
|
|
|
if (ret == NULL) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* TODO: the lifecycle of domains, especially predefined ones need to be
|
|
|
|
* explicitely written down
|
|
|
|
*/
|
|
|
|
if (ret->handle != -1) {
|
|
|
|
virLibConnError(conn, VIR_ERR_DOM_EXIST, name);
|
|
|
|
virFreeDomain(conn, ret);
|
|
|
|
ret = NULL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if ((ret->uses > 1) && (!(ret->flags & DOMAIN_IS_DEFINED))) {
|
|
|
|
virLibConnError(conn, VIR_ERR_DOM_EXIST, name);
|
|
|
|
virFreeDomain(conn, ret);
|
|
|
|
ret = NULL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ret->flags |= DOMAIN_IS_DEFINED;
|
|
|
|
if (ret->xml != NULL) {
|
|
|
|
free(ret->xml);
|
|
|
|
}
|
|
|
|
ret->xml = strdup(xml);
|
|
|
|
if (ret->xml == NULL) {
|
|
|
|
virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
virFreeDomain(conn, ret);
|
|
|
|
ret = NULL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
/* TODO shall we keep a list of defined domains there ? */
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (obj != NULL)
|
|
|
|
xmlXPathFreeObject(obj);
|
|
|
|
if (ctxt != NULL)
|
|
|
|
xmlXPathFreeContext(ctxt);
|
|
|
|
if (doc != NULL)
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virDomainUndefine:
|
|
|
|
* @domain: pointer to a defined domain
|
|
|
|
*
|
|
|
|
* undefine a domain but does not stop it if it is running
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success, -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virDomainUndefine(virDomainPtr domain) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
|
|
|
|
virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
/* TODO shall we keep a list of defined domains there ? */
|
|
|
|
|
|
|
|
ret = virFreeDomain(domain->conn, domain);
|
|
|
|
if (ret < 0)
|
|
|
|
return(-1);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virConnectListDefinedDomains:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @names: pointer to an array to store the names
|
|
|
|
* @maxnames: size of the array
|
|
|
|
*
|
|
|
|
* list the defined domains, stores the pointers to the names in @names
|
|
|
|
*
|
|
|
|
* Returns the number of names provided in the array or -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virConnectListDefinedDomains(virConnectPtr conn, const char **names,
|
|
|
|
int maxnames) {
|
|
|
|
TODO
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virDomainCreate:
|
|
|
|
* @domain: pointer to a defined domain
|
|
|
|
*
|
|
|
|
* launch a defined domain. If the call succeed the domain moves from the
|
|
|
|
* defined to the running domains pools.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success, -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virDomainCreate(virDomainPtr domain) {
|
|
|
|
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|