2005-11-02 13:19:10 +00:00
|
|
|
/*
|
|
|
|
* internal.h: internal definitions just used by code from the library
|
|
|
|
*/
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
#ifndef __VIR_INTERNAL_H__
|
|
|
|
#define __VIR_INTERNAL_H__
|
2005-11-02 13:19:10 +00:00
|
|
|
|
2006-01-13 16:41:01 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
2006-04-05 09:31:29 +00:00
|
|
|
#include <libxml/threads.h>
|
2006-01-13 16:41:01 +00:00
|
|
|
|
2005-12-13 16:22:05 +00:00
|
|
|
#include "hash.h"
|
2006-02-09 17:45:11 +00:00
|
|
|
#include "libvirt.h"
|
2006-02-24 22:36:10 +00:00
|
|
|
#include "virterror.h"
|
2006-03-27 15:24:36 +00:00
|
|
|
#include "driver.h"
|
2005-12-13 16:22:05 +00:00
|
|
|
|
2005-11-02 13:19:10 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-11-07 17:16:18 +00:00
|
|
|
/**
|
|
|
|
* ATTRIBUTE_UNUSED:
|
|
|
|
*
|
|
|
|
* Macro to flag conciously unused parameters to functions
|
|
|
|
*/
|
2005-11-02 13:19:10 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#ifdef HAVE_ANSIDECL_H
|
|
|
|
#include <ansidecl.h>
|
|
|
|
#endif
|
|
|
|
#ifndef ATTRIBUTE_UNUSED
|
|
|
|
#define ATTRIBUTE_UNUSED __attribute__((unused))
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define ATTRIBUTE_UNUSED
|
|
|
|
#endif
|
|
|
|
|
2006-03-27 15:24:36 +00:00
|
|
|
#ifndef __attribute__
|
|
|
|
/* This feature is available in gcc versions 2.5 and later. */
|
|
|
|
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
|
|
|
|
# define __attribute__(Spec) /* empty */
|
|
|
|
# endif
|
|
|
|
/* The __-protected variants of `format' and `printf' attributes
|
|
|
|
are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
|
|
|
|
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
|
|
|
|
# define __format__ format
|
|
|
|
# define __printf__ printf
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2005-11-07 17:16:18 +00:00
|
|
|
/**
|
|
|
|
* TODO:
|
|
|
|
*
|
|
|
|
* macro to flag unimplemented blocks
|
|
|
|
*/
|
|
|
|
#define TODO \
|
|
|
|
fprintf(stderr, "Unimplemented block at %s:%d\n", \
|
|
|
|
__FILE__, __LINE__);
|
|
|
|
|
2005-12-13 16:22:05 +00:00
|
|
|
/**
|
|
|
|
* VIR_CONNECT_MAGIC:
|
|
|
|
*
|
|
|
|
* magic value used to protect the API when pointers to connection structures
|
|
|
|
* are passed down by the uers.
|
|
|
|
*/
|
2005-12-16 18:41:46 +00:00
|
|
|
#define VIR_CONNECT_MAGIC 0x4F23DEAD
|
|
|
|
#define VIR_IS_CONNECT(obj) ((obj) && (obj)->magic==VIR_CONNECT_MAGIC)
|
|
|
|
|
2005-12-13 16:22:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_DOMAIN_MAGIC:
|
|
|
|
*
|
|
|
|
* magic value used to protect the API when pointers to domain structures
|
|
|
|
* are passed down by the uers.
|
|
|
|
*/
|
2005-12-16 18:41:46 +00:00
|
|
|
#define VIR_DOMAIN_MAGIC 0xDEAD4321
|
|
|
|
#define VIR_IS_DOMAIN(obj) ((obj) && (obj)->magic==VIR_DOMAIN_MAGIC)
|
|
|
|
#define VIR_IS_CONNECTED_DOMAIN(obj) (VIR_IS_DOMAIN(obj) && VIR_IS_CONNECT((obj)->conn))
|
2005-12-13 16:22:05 +00:00
|
|
|
|
2006-03-29 12:46:03 +00:00
|
|
|
#define MAX_DRIVERS 5
|
|
|
|
|
2005-12-13 16:22:05 +00:00
|
|
|
/*
|
|
|
|
* Flags for Xen connections
|
|
|
|
*/
|
|
|
|
#define VIR_CONNECT_RO 1
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _virConnect:
|
|
|
|
*
|
|
|
|
* Internal structure associated to a connection
|
|
|
|
*/
|
2006-03-20 17:49:28 +00:00
|
|
|
struct _virConnect {
|
|
|
|
unsigned int magic; /* specific value to check */
|
2006-03-29 12:46:03 +00:00
|
|
|
|
2006-04-09 13:11:22 +00:00
|
|
|
int uses; /* reference count */
|
2006-03-29 12:46:03 +00:00
|
|
|
/* the list of available drivers for that connection */
|
|
|
|
virDriverPtr drivers[MAX_DRIVERS];
|
|
|
|
int nb_drivers;
|
|
|
|
|
|
|
|
/* extra data needed by drivers */
|
2006-03-20 17:49:28 +00:00
|
|
|
int handle; /* internal handle used for hypercall */
|
|
|
|
struct xs_handle *xshandle; /* handle to talk to the xenstore */
|
|
|
|
|
|
|
|
/* connection to xend */
|
|
|
|
int type; /* PF_UNIX or PF_INET */
|
|
|
|
int len; /* lenght of addr */
|
|
|
|
struct sockaddr *addr; /* type of address used */
|
|
|
|
struct sockaddr_un addr_un; /* the unix address */
|
|
|
|
struct sockaddr_in addr_in; /* the inet address */
|
|
|
|
|
|
|
|
/* error stuff */
|
|
|
|
virError err; /* the last error */
|
|
|
|
virErrorFunc handler; /* associated handlet */
|
|
|
|
void *userData; /* the user data */
|
|
|
|
|
|
|
|
/* misc */
|
2006-04-05 09:31:29 +00:00
|
|
|
xmlMutexPtr domains_mux;/* a mutex to protect the domain hash table */
|
|
|
|
virHashTablePtr domains;/* hash table for known domains */
|
2006-03-20 17:49:28 +00:00
|
|
|
int flags; /* a set of connection flags */
|
|
|
|
};
|
2005-12-13 16:22:05 +00:00
|
|
|
|
2005-12-16 12:16:41 +00:00
|
|
|
/**
|
2006-03-20 17:49:28 +00:00
|
|
|
* virDomainFlags:
|
|
|
|
*
|
|
|
|
* a set of special flag values associated to the domain
|
|
|
|
*/
|
2005-12-16 12:16:41 +00:00
|
|
|
|
2006-03-20 17:49:28 +00:00
|
|
|
enum {
|
|
|
|
DOMAIN_IS_SHUTDOWN = (1 << 0) /* the domain is being shutdown */
|
|
|
|
} virDomainFlags;
|
2005-12-16 12:16:41 +00:00
|
|
|
|
2005-12-13 16:22:05 +00:00
|
|
|
/**
|
2006-03-20 17:49:28 +00:00
|
|
|
* _virDomain:
|
|
|
|
*
|
|
|
|
* Internal structure associated to a domain
|
|
|
|
*/
|
|
|
|
struct _virDomain {
|
|
|
|
unsigned int magic; /* specific value to check */
|
2006-04-09 13:11:22 +00:00
|
|
|
int uses; /* reference count */
|
2006-03-20 17:49:28 +00:00
|
|
|
virConnectPtr conn; /* pointer back to the connection */
|
|
|
|
char *name; /* the domain external name */
|
|
|
|
char *path; /* the domain internal path */
|
|
|
|
int handle; /* internal handle for the domnain ID */
|
|
|
|
int flags; /* extra flags */
|
|
|
|
unsigned char uuid[16]; /* the domain unique identifier */
|
|
|
|
};
|
2005-12-13 16:22:05 +00:00
|
|
|
|
2005-12-16 00:51:27 +00:00
|
|
|
/*
|
2006-03-20 17:49:28 +00:00
|
|
|
* Internal routines
|
|
|
|
*/
|
|
|
|
char *virDomainGetVM(virDomainPtr domain);
|
|
|
|
char *virDomainGetVMInfo(virDomainPtr domain,
|
|
|
|
const char *vm, const char *name);
|
|
|
|
|
2006-04-09 13:11:22 +00:00
|
|
|
/************************************************************************
|
|
|
|
* *
|
|
|
|
* API for error handling *
|
|
|
|
* *
|
|
|
|
************************************************************************/
|
2006-03-20 17:49:28 +00:00
|
|
|
void __virRaiseError(virConnectPtr conn,
|
|
|
|
virDomainPtr dom,
|
|
|
|
int domain,
|
|
|
|
int code,
|
|
|
|
virErrorLevel level,
|
|
|
|
const char *str1,
|
|
|
|
const char *str2,
|
|
|
|
const char *str3,
|
|
|
|
int int1, int int2, const char *msg, ...);
|
|
|
|
const char *__virErrorMsg(virErrorNumber error, const char *info);
|
2006-02-27 16:27:18 +00:00
|
|
|
|
2006-04-09 13:11:22 +00:00
|
|
|
/************************************************************************
|
|
|
|
* *
|
2006-04-24 18:21:29 +00:00
|
|
|
* API for domain/connections (de)allocations and lookups *
|
2006-04-09 13:11:22 +00:00
|
|
|
* *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
virConnectPtr virGetConnect (void);
|
|
|
|
int virFreeConnect (virConnectPtr conn);
|
|
|
|
virDomainPtr virGetDomain (virConnectPtr conn,
|
|
|
|
const char *name,
|
|
|
|
const char *uuid);
|
|
|
|
int virFreeDomain (virConnectPtr conn,
|
|
|
|
virDomainPtr domain);
|
2006-04-24 18:21:29 +00:00
|
|
|
virDomainPtr virGetDomainByID(virConnectPtr conn,
|
|
|
|
int id);
|
2006-04-09 13:11:22 +00:00
|
|
|
|
2005-11-02 13:19:10 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2006-03-15 12:13:25 +00:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __VIR_INTERNAL_H__ */
|