2005-11-02 12:50:21 +00:00
|
|
|
/*
|
2005-12-07 18:10:51 +00:00
|
|
|
* libvir.c: Main interfaces for the libvir library to handle virtualization
|
2005-11-02 12:50:21 +00:00
|
|
|
* domains from a process running in domain 0
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* See COPYING.LIB for the License of this software
|
|
|
|
*
|
|
|
|
* Daniel Veillard <veillard@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
#include "libvir.h"
|
2005-12-07 18:10:51 +00:00
|
|
|
#include "xen_internal.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>
|
2005-11-30 13:20:53 +00:00
|
|
|
#include <xs.h>
|
2005-11-02 12:50:21 +00:00
|
|
|
#include "internal.h"
|
2005-11-30 13:20:53 +00:00
|
|
|
#include "hash.h"
|
|
|
|
|
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
|
|
|
* - error reporting layer
|
|
|
|
* - memory wrappers for malloc/free ?
|
2005-11-02 12:50:21 +00:00
|
|
|
*/
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
#define VIR_CONNECT_MAGIC 0x4F23DEAD
|
2005-11-30 13:20:53 +00:00
|
|
|
|
2005-12-01 16:35:42 +00:00
|
|
|
/*
|
|
|
|
* Flags for Xen connections
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
#define VIR_CONNECT_RO 1
|
2005-12-01 16:35:42 +00:00
|
|
|
|
2005-11-02 12:50:21 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* _virConnect:
|
2005-11-02 12:50:21 +00:00
|
|
|
*
|
|
|
|
* Internal structure associated to a connection
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
struct _virConnect {
|
2005-11-02 12:50:21 +00:00
|
|
|
unsigned int magic; /* specific value to check */
|
|
|
|
int handle; /* internal handle used for hypercall */
|
2005-11-30 13:20:53 +00:00
|
|
|
struct xs_handle *xshandle; /* handle to talk to the xenstore */
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashTablePtr domains; /* hash table for known domains */
|
2005-12-01 16:35:42 +00:00
|
|
|
int flags; /* a set of connection flags */
|
2005-11-30 13:20:53 +00:00
|
|
|
};
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
#define VIR_DOMAIN_MAGIC 0xDEAD4321
|
2005-11-30 13:20:53 +00:00
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* _virDomain:
|
2005-11-30 13:20:53 +00:00
|
|
|
*
|
|
|
|
* Internal structure associated to a domain
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
struct _virDomain {
|
2005-11-30 13:20:53 +00:00
|
|
|
unsigned int magic; /* specific value to check */
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectPtr conn; /* pointer back to the connection */
|
2005-11-30 13:20:53 +00:00
|
|
|
char *name; /* the domain external name */
|
2005-12-01 16:35:42 +00:00
|
|
|
char *path; /* the domain internal path */
|
2005-11-30 13:20:53 +00:00
|
|
|
int handle; /* internal handle for the dmonain ID */
|
2005-11-02 13:19:10 +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
|
|
|
|
virConnectOpen(const char *name) {
|
|
|
|
virConnectPtr ret = NULL;
|
2005-11-23 07:47:13 +00:00
|
|
|
int handle = -1;
|
2005-11-30 13:20:53 +00:00
|
|
|
struct xs_handle *xshandle = NULL;
|
|
|
|
|
|
|
|
/* we can only talk to the local Xen supervisor ATM */
|
|
|
|
if (name != NULL)
|
|
|
|
return(NULL);
|
2005-11-10 16:12:31 +00:00
|
|
|
|
2005-12-07 18:10:51 +00:00
|
|
|
handle = xenHypervisorOpen();
|
2005-11-23 07:47:13 +00:00
|
|
|
if (handle == -1)
|
|
|
|
goto failed;
|
|
|
|
xshandle = xs_daemon_open();
|
2005-11-30 13:20:53 +00:00
|
|
|
if (xshandle == NULL)
|
2005-11-23 07:47:13 +00:00
|
|
|
goto failed;
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
ret = (virConnectPtr) malloc(sizeof(virConnect));
|
2005-11-23 07:47:13 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
goto failed;
|
2005-12-05 11:16:07 +00:00
|
|
|
ret->magic = VIR_CONNECT_MAGIC;
|
2005-11-10 16:12:31 +00:00
|
|
|
ret->handle = handle;
|
2005-11-23 07:47:13 +00:00
|
|
|
ret->xshandle = xshandle;
|
2005-12-05 11:16:07 +00:00
|
|
|
ret->domains = virHashCreate(20);
|
2005-12-01 16:35:42 +00:00
|
|
|
ret->flags = 0;
|
2005-11-30 13:20:53 +00:00
|
|
|
if (ret->domains == NULL)
|
|
|
|
goto failed;
|
2005-11-10 16:12:31 +00:00
|
|
|
|
|
|
|
return(ret);
|
2005-11-23 07:47:13 +00:00
|
|
|
failed:
|
|
|
|
if (handle >= 0)
|
2005-12-07 18:10:51 +00:00
|
|
|
xenHypervisorClose(handle);
|
2005-11-30 13:20:53 +00:00
|
|
|
if (xshandle != NULL)
|
2005-11-23 07:47:13 +00:00
|
|
|
xs_daemon_close(xshandle);
|
2005-12-01 16:35:42 +00:00
|
|
|
if (ret != NULL)
|
|
|
|
free(ret);
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectOpenReadOnly:
|
2005-12-01 16:35:42 +00:00
|
|
|
* @name: optional argument currently unused, pass NULL
|
|
|
|
*
|
|
|
|
* This function should be called first to get a read-only connection to the
|
|
|
|
* xen store. The set of APIs usable are then restricted.
|
|
|
|
*
|
|
|
|
* Returns a pointer to the hypervisor connection or NULL in case of error
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectPtr
|
|
|
|
virConnectOpenReadOnly(const char *name) {
|
|
|
|
virConnectPtr ret = NULL;
|
2005-12-01 16:35:42 +00:00
|
|
|
struct xs_handle *xshandle = NULL;
|
|
|
|
|
|
|
|
/* we can only talk to the local Xen supervisor ATM */
|
|
|
|
if (name != NULL)
|
|
|
|
return(NULL);
|
|
|
|
|
|
|
|
xshandle = xs_daemon_open_readonly();
|
|
|
|
if (xshandle == NULL)
|
|
|
|
goto failed;
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
ret = (virConnectPtr) malloc(sizeof(virConnect));
|
2005-12-01 16:35:42 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
goto failed;
|
2005-12-05 11:16:07 +00:00
|
|
|
ret->magic = VIR_CONNECT_MAGIC;
|
2005-12-01 16:35:42 +00:00
|
|
|
ret->handle = -1;
|
|
|
|
ret->xshandle = xshandle;
|
2005-12-05 11:16:07 +00:00
|
|
|
ret->domains = virHashCreate(20);
|
|
|
|
ret->flags = VIR_CONNECT_RO;
|
2005-12-01 16:35:42 +00:00
|
|
|
if (ret->domains == NULL)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
return(ret);
|
|
|
|
failed:
|
|
|
|
if (xshandle != NULL)
|
|
|
|
xs_daemon_close(xshandle);
|
|
|
|
if (ret != NULL)
|
|
|
|
free(ret);
|
2005-11-23 07:47:13 +00:00
|
|
|
return(NULL);
|
2005-11-02 12:50:21 +00:00
|
|
|
}
|
|
|
|
|
2005-11-30 13:20:53 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainDestroyName:
|
2005-11-30 13:20:53 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
*
|
|
|
|
* Destroy the domain object, this is just used by the domain hash callback.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
static int
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainDestroyName(virDomainPtr domain, const char *name ATTRIBUTE_UNUSED) {
|
|
|
|
return(virDomainDestroy(domain));
|
2005-11-30 13:20:53 +00:00
|
|
|
}
|
|
|
|
|
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
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectClose(virConnectPtr conn) {
|
|
|
|
if ((conn == NULL) || (conn->magic != VIR_CONNECT_MAGIC))
|
2005-11-02 12:50:21 +00:00
|
|
|
return(-1);
|
2005-11-10 16:12:31 +00:00
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashFree(conn->domains, (virHashDeallocator) virDomainDestroyName);
|
2005-11-02 12:50:21 +00:00
|
|
|
conn->magic = -1;
|
2005-11-23 07:47:13 +00:00
|
|
|
xs_daemon_close(conn->xshandle);
|
2005-11-30 13:20:53 +00:00
|
|
|
conn->xshandle = NULL;
|
2005-12-01 16:35:42 +00:00
|
|
|
if (conn->handle != -1)
|
2005-12-07 18:10:51 +00:00
|
|
|
xenHypervisorClose(conn->handle);
|
2005-11-10 16:12:31 +00:00
|
|
|
conn->handle = -1;
|
2005-11-02 12:50:21 +00:00
|
|
|
free(conn);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectGetVersion:
|
2005-11-02 12:50:21 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
*
|
2005-11-07 17:16:18 +00:00
|
|
|
* Get the version level of the Hypervisor running.
|
|
|
|
*
|
|
|
|
* Returns -1 in case of error or major * 10,000 + minor * 100 + rev otherwise
|
|
|
|
*/
|
|
|
|
unsigned long
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectGetVersion(virConnectPtr conn) {
|
2005-11-07 17:16:18 +00:00
|
|
|
if (conn == NULL)
|
|
|
|
return(-1);
|
2005-12-02 14:16:21 +00:00
|
|
|
TODO
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectListDomains(virConnectPtr conn, int *ids, int maxids) {
|
2005-12-02 14:16:21 +00:00
|
|
|
struct xs_transaction_handle* t;
|
|
|
|
int ret = -1;
|
|
|
|
unsigned int num, i;
|
|
|
|
long id;
|
|
|
|
char **idlist = NULL, *endptr;
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
if ((conn == NULL) || (conn->magic != VIR_CONNECT_MAGIC) ||
|
2005-12-02 14:16:21 +00:00
|
|
|
(ids == NULL) || (maxids <= 0))
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
t = xs_transaction_start(conn->xshandle);
|
|
|
|
if (t == NULL)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
idlist = xs_directory(conn->xshandle, t, "/local/domain", &num);
|
|
|
|
if (idlist == NULL)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
for (ret = 0,i = 0;(i < num) && (ret < maxids);i++) {
|
|
|
|
id = strtol(idlist[i], &endptr, 10);
|
|
|
|
if ((endptr == idlist[i]) || (*endptr != 0)) {
|
|
|
|
ret = -1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ids[ret++] = (int) id;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (t != NULL)
|
|
|
|
xs_transaction_end(conn->xshandle, t, 0);
|
|
|
|
if (idlist != NULL)
|
|
|
|
free(idlist);
|
|
|
|
|
|
|
|
return(ret);
|
2005-11-07 17:16:18 +00:00
|
|
|
}
|
|
|
|
|
2005-12-07 11:03:24 +00:00
|
|
|
/**
|
|
|
|
* virConnectNumOfDomains:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
*
|
|
|
|
* Returns the number of domain found or -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virConnectNumOfDomains(virConnectPtr conn) {
|
|
|
|
struct xs_transaction_handle* t;
|
|
|
|
int ret = -1;
|
|
|
|
unsigned int num;
|
|
|
|
char **idlist = NULL;
|
|
|
|
|
|
|
|
if ((conn == NULL) || (conn->magic != VIR_CONNECT_MAGIC))
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
t = xs_transaction_start(conn->xshandle);
|
|
|
|
if (t) {
|
|
|
|
idlist = xs_directory(conn->xshandle, t, "/local/domain", &num);
|
|
|
|
if (idlist) {
|
|
|
|
free(idlist);
|
|
|
|
ret = num;
|
|
|
|
}
|
|
|
|
xs_transaction_end(conn->xshandle, t, 0);
|
|
|
|
}
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
* @kernel_path: the file path to the kernel image
|
|
|
|
* @initrd_path: an optional file path to an initrd
|
|
|
|
* @cmdline: optional command line parameters for the kernel
|
|
|
|
* @memory: the memory size in kilobytes
|
2005-12-05 11:16:07 +00:00
|
|
|
* @flags: an optional set of virDomainFlags
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Launch a new Linux guest domain
|
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainPtr
|
|
|
|
virDomainCreateLinux(virConnectPtr conn, const char *kernel_path,
|
2005-11-07 17:16:18 +00:00
|
|
|
const char *initrd_path, const char *cmdline,
|
|
|
|
unsigned long memory, unsigned int flags) {
|
2005-12-05 11:16:07 +00:00
|
|
|
if ((conn == NULL) || (conn->magic != VIR_CONNECT_MAGIC) ||
|
2005-11-30 13:20:53 +00:00
|
|
|
(kernel_path == NULL) || (memory < 4096))
|
2005-11-07 17:16:18 +00:00
|
|
|
return(NULL);
|
|
|
|
TODO
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
2005-11-23 07:47:13 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainLookupByName:
|
2005-11-23 07:47:13 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @name: name for the domain
|
|
|
|
*
|
|
|
|
* Try to lookup a domain on the given hypervisor
|
|
|
|
*
|
|
|
|
* Returns a new domain object or NULL in case of failure
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainPtr
|
|
|
|
virDomainLookupByName(virConnectPtr conn, const char *name) {
|
|
|
|
if ((conn == NULL) || (conn->magic != VIR_CONNECT_MAGIC) || (name == NULL))
|
2005-11-23 07:47:13 +00:00
|
|
|
return(NULL);
|
|
|
|
TODO
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
2005-12-06 16:12:49 +00:00
|
|
|
#if 0
|
|
|
|
/* Not used ATM */
|
2005-12-01 16:35:42 +00:00
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virConnectDoStoreQuery:
|
2005-12-01 16:35:42 +00:00
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @path: the absolute path of the data in the store to retrieve
|
|
|
|
*
|
|
|
|
* Internal API querying the Xenstore for a string value.
|
|
|
|
*
|
|
|
|
* Returns a string which must be freed by the caller or NULL in case of error
|
|
|
|
*/
|
|
|
|
static char *
|
2005-12-05 11:16:07 +00:00
|
|
|
virConnectDoStoreQuery(virConnectPtr conn, const char *path) {
|
2005-12-01 16:35:42 +00:00
|
|
|
struct xs_transaction_handle* t;
|
|
|
|
char *ret = NULL;
|
|
|
|
unsigned int len = 0;
|
|
|
|
|
|
|
|
t = xs_transaction_start(conn->xshandle);
|
|
|
|
if (t == NULL)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
ret = xs_read(conn->xshandle, t, path, &len);
|
|
|
|
|
2005-12-06 16:12:49 +00:00
|
|
|
done:
|
|
|
|
if (t != NULL)
|
|
|
|
xs_transaction_end(conn->xshandle, t, 0);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virConnectDoStoreList:
|
|
|
|
* @conn: pointer to the hypervisor connection
|
|
|
|
* @path: the absolute path of the directory in the store to list
|
|
|
|
* @nb: OUT pointer to the number of items found
|
|
|
|
*
|
|
|
|
* Internal API querying the Xenstore for a list
|
|
|
|
*
|
|
|
|
* Returns a string which must be freed by the caller or NULL in case of error
|
|
|
|
*/
|
|
|
|
static char **
|
|
|
|
virConnectDoStoreList(virConnectPtr conn, const char *path, unsigned int *nb) {
|
|
|
|
struct xs_transaction_handle* t;
|
|
|
|
char **ret = NULL;
|
|
|
|
|
|
|
|
t = xs_transaction_start(conn->xshandle);
|
|
|
|
if (t == NULL)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
ret = xs_directory(conn->xshandle, t, path, nb);
|
|
|
|
|
2005-12-01 16:35:42 +00:00
|
|
|
done:
|
|
|
|
if (t != NULL)
|
|
|
|
xs_transaction_end(conn->xshandle, t, 0);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virDomainDoStoreQuery:
|
2005-12-01 16:35:42 +00:00
|
|
|
* @domain: a domain object
|
|
|
|
* @path: the relative path of the data in the store to retrieve
|
|
|
|
*
|
|
|
|
* Internal API querying the Xenstore for a string value.
|
|
|
|
*
|
|
|
|
* Returns a string which must be freed by the caller or NULL in case of error
|
|
|
|
*/
|
|
|
|
static char *
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainDoStoreQuery(virDomainPtr domain, const char *path) {
|
2005-12-01 16:35:42 +00:00
|
|
|
struct xs_transaction_handle* t;
|
|
|
|
char s[256];
|
|
|
|
char *ret = NULL;
|
|
|
|
unsigned int len = 0;
|
|
|
|
|
|
|
|
snprintf(s, 255, "/local/domain/%d/%s", domain->handle, path);
|
|
|
|
s[255] = 0;
|
|
|
|
|
|
|
|
t = xs_transaction_start(domain->conn->xshandle);
|
|
|
|
if (t == NULL)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
ret = xs_read(domain->conn->xshandle, t, &s[0], &len);
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (t != NULL)
|
|
|
|
xs_transaction_end(domain->conn->xshandle, t, 0);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
virDomainLookupByID(virConnectPtr conn, int id) {
|
2005-11-30 13:20:53 +00:00
|
|
|
char *path;
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainPtr ret;
|
2005-11-30 13:20:53 +00:00
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
if ((conn == NULL) || (conn->magic != VIR_CONNECT_MAGIC) || (id < 0))
|
2005-11-30 13:20:53 +00:00
|
|
|
return(NULL);
|
|
|
|
|
|
|
|
path = xs_get_domain_path(conn->xshandle, (unsigned int) id);
|
|
|
|
if (path == NULL) {
|
|
|
|
return(NULL);
|
|
|
|
}
|
2005-12-05 11:16:07 +00:00
|
|
|
ret = (virDomainPtr) malloc(sizeof(virDomain));
|
2005-11-30 13:20:53 +00:00
|
|
|
if (ret == NULL) {
|
|
|
|
free(path);
|
|
|
|
return(NULL);
|
|
|
|
}
|
2005-12-05 11:16:07 +00:00
|
|
|
ret->magic = VIR_DOMAIN_MAGIC;
|
2005-11-30 13:20:53 +00:00
|
|
|
ret->conn = conn;
|
|
|
|
ret->handle = id;
|
2005-12-01 16:35:42 +00:00
|
|
|
ret->path = path;
|
2005-12-05 11:16:07 +00:00
|
|
|
ret->name = virDomainDoStoreQuery(ret, "name");
|
2005-11-30 13:20:53 +00:00
|
|
|
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* 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
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainDestroy(virDomainPtr domain) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC))
|
2005-11-07 17:16:18 +00:00
|
|
|
return(-1);
|
|
|
|
TODO
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainSuspend(virDomainPtr domain) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC))
|
2005-11-07 17:16:18 +00:00
|
|
|
return(-1);
|
|
|
|
TODO
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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().
|
2005-11-07 17:16:18 +00:00
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainResume(virDomainPtr domain) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC))
|
2005-11-07 17:16:18 +00:00
|
|
|
return(-1);
|
|
|
|
TODO
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
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 *
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainGetName(virDomainPtr domain) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC))
|
2005-11-23 07:47:13 +00:00
|
|
|
return(NULL);
|
2005-11-30 13:20:53 +00:00
|
|
|
return(domain->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainGetID(virDomainPtr domain) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC))
|
2005-11-30 13:20:53 +00:00
|
|
|
return((unsigned int) -1);
|
|
|
|
return(domain->handle);
|
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
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainGetMaxMemory(virDomainPtr domain) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC))
|
2005-11-23 07:47:13 +00:00
|
|
|
return(0);
|
|
|
|
TODO
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success and -1 in case of failure.
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virDomainSetMaxMemory(virDomainPtr domain, unsigned long memory) {
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC) ||
|
2005-11-30 13:20:53 +00:00
|
|
|
(memory < 4096))
|
2005-11-07 17:16:18 +00:00
|
|
|
return(-1);
|
|
|
|
TODO
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2005-12-05 18:14:37 +00:00
|
|
|
/**
|
|
|
|
* virDomainGetInfo:
|
|
|
|
* @domain: a domain object or NULL
|
|
|
|
* @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
|
|
|
|
virDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if ((domain == NULL) || (domain->magic != VIR_DOMAIN_MAGIC) ||
|
|
|
|
(info == NULL))
|
|
|
|
return(-1);
|
2005-12-06 13:47:40 +00:00
|
|
|
memset(info, 0, sizeof(virDomainInfo));
|
2005-12-05 18:14:37 +00:00
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO) {
|
2005-12-06 16:12:49 +00:00
|
|
|
char *tmp, **tmp2;
|
|
|
|
unsigned int nb_vcpus;
|
|
|
|
char request[200];
|
2005-12-05 18:14:37 +00:00
|
|
|
|
|
|
|
tmp = virDomainDoStoreQuery(domain, "running");
|
|
|
|
if (tmp != NULL) {
|
|
|
|
if (tmp[0] == '1')
|
|
|
|
info->state = VIR_DOMAIN_RUNNING;
|
|
|
|
free(tmp);
|
|
|
|
} else {
|
|
|
|
info->state = VIR_DOMAIN_NONE;
|
|
|
|
}
|
|
|
|
tmp = virDomainDoStoreQuery(domain, "memory/target");
|
|
|
|
if (tmp != NULL) {
|
2005-12-06 16:50:31 +00:00
|
|
|
info->memory = atol(tmp);
|
|
|
|
info->maxMem = atol(tmp);
|
2005-12-05 18:14:37 +00:00
|
|
|
free(tmp);
|
|
|
|
} else {
|
2005-12-06 13:47:40 +00:00
|
|
|
info->memory = 0;
|
|
|
|
info->maxMem = 0;
|
|
|
|
}
|
2005-12-06 16:12:49 +00:00
|
|
|
#if 0
|
|
|
|
/* doesn't seems to work */
|
2005-12-06 13:47:40 +00:00
|
|
|
tmp = virDomainDoStoreQuery(domain, "cpu_time");
|
|
|
|
if (tmp != NULL) {
|
|
|
|
info->cpuTime = atol(tmp);
|
|
|
|
free(tmp);
|
|
|
|
} else {
|
|
|
|
info->cpuTime = 0;
|
2005-12-05 18:14:37 +00:00
|
|
|
}
|
2005-12-06 16:12:49 +00:00
|
|
|
#endif
|
|
|
|
snprintf(request, 199, "/local/domain/%d/cpu", domain->handle);
|
|
|
|
request[199] = 0;
|
|
|
|
tmp2 = virConnectDoStoreList(domain->conn, request, &nb_vcpus);
|
|
|
|
if (tmp2 != NULL) {
|
|
|
|
info->nrVirtCpu = nb_vcpus;
|
|
|
|
free(tmp2);
|
|
|
|
}
|
|
|
|
|
2005-12-05 18:14:37 +00:00
|
|
|
} else {
|
2005-12-07 18:10:51 +00:00
|
|
|
dom0_getdomaininfo_t dominfo;
|
2005-12-05 18:14:37 +00:00
|
|
|
|
|
|
|
dominfo.domain = domain->handle;
|
2005-12-07 18:10:51 +00:00
|
|
|
ret = xenHypervisorGetDomainInfo(domain->conn->handle, domain->handle,
|
|
|
|
&dominfo);
|
2005-12-05 18:14:37 +00:00
|
|
|
if (ret <= 0)
|
|
|
|
return(-1);
|
|
|
|
switch (dominfo.flags & 0xFF) {
|
|
|
|
case DOMFLAGS_DYING:
|
|
|
|
info->state = VIR_DOMAIN_SHUTDOWN;
|
|
|
|
break;
|
|
|
|
case DOMFLAGS_SHUTDOWN:
|
|
|
|
info->state = VIR_DOMAIN_SHUTOFF;
|
|
|
|
break;
|
|
|
|
case DOMFLAGS_PAUSED:
|
|
|
|
info->state = VIR_DOMAIN_PAUSED;
|
|
|
|
break;
|
|
|
|
case DOMFLAGS_BLOCKED:
|
|
|
|
info->state = VIR_DOMAIN_BLOCKED;
|
|
|
|
break;
|
|
|
|
case DOMFLAGS_RUNNING:
|
|
|
|
info->state = VIR_DOMAIN_RUNNING;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
info->state = VIR_DOMAIN_NONE;
|
|
|
|
}
|
2005-12-06 13:47:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* the API brings back the cpu time in nanoseconds,
|
|
|
|
* convert to microseconds, same thing convert to
|
|
|
|
|
|
|
|
*/
|
2005-12-05 18:14:37 +00:00
|
|
|
info->cpuTime = dominfo.cpu_time;
|
2005-12-06 16:50:31 +00:00
|
|
|
info->memory = dominfo.tot_pages * 4;
|
|
|
|
info->maxMem = dominfo.max_pages * 4;
|
2005-12-06 16:12:49 +00:00
|
|
|
info->nrVirtCpu = dominfo.nr_online_vcpus;
|
2005-12-05 18:14:37 +00:00
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|