internal.h 7.1 KB
Newer Older
1 2 3 4
/*
 * internal.h: internal definitions just used by code from the library
 */

5 6
#ifndef __VIR_INTERNAL_H__
#define __VIR_INTERNAL_H__
7

8 9 10 11 12
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
D
Daniel Veillard 已提交
13
#include <libxml/threads.h>
14

15
#include "hash.h"
16 17
#include "libvirt/libvirt.h"
#include "libvirt/virterror.h"
18
#include "driver.h"
19
#include <libintl.h>
20

21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

25 26 27 28
#define _(str) dgettext(GETTEXT_PACKAGE, (str))
#define _N(str) dgettext(GETTEXT_PACKAGE, (str))
#define gettext_noop(str) (str)

29 30 31 32 33
#ifdef __GNUC__
#ifdef HAVE_ANSIDECL_H
#include <ansidecl.h>
#endif

D
Daniel Veillard 已提交
34 35 36 37 38
/**
 * ATTRIBUTE_UNUSED:
 *
 * Macro to flag conciously unused parameters to functions
 */
39
#ifndef ATTRIBUTE_UNUSED
40
#define ATTRIBUTE_UNUSED __attribute__((__unused__))
41
#endif
42 43 44 45 46 47 48 49 50

/**
 * ATTRIBUTE_FORMAT
 *
 * Macro used to check printf/scanf-like functions, if compiling
 * with gcc.
 */
#ifndef ATTRIBUTE_FORMAT
#define ATTRIBUTE_FORMAT(args...) __attribute__((__format__ (args)))
51 52
#endif

53 54 55
#else
#define ATTRIBUTE_UNUSED
#define ATTRIBUTE_FORMAT(...)
56 57
#endif

D
Daniel Veillard 已提交
58 59 60 61 62 63 64 65 66
/**
 * TODO:
 *
 * macro to flag unimplemented blocks
 */
#define TODO 								\
    fprintf(stderr, "Unimplemented block at %s:%d\n",			\
            __FILE__, __LINE__);

67 68 69 70 71 72
/**
 * VIR_CONNECT_MAGIC:
 *
 * magic value used to protect the API when pointers to connection structures
 * are passed down by the uers.
 */
K
Karel Zak 已提交
73 74 75
#define VIR_CONNECT_MAGIC 	0x4F23DEAD
#define VIR_IS_CONNECT(obj)	((obj) && (obj)->magic==VIR_CONNECT_MAGIC)

76 77 78 79 80 81 82

/**
 * VIR_DOMAIN_MAGIC:
 *
 * magic value used to protect the API when pointers to domain structures
 * are passed down by the uers.
 */
K
Karel Zak 已提交
83 84 85
#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))
86

87 88 89 90 91 92 93 94 95 96 97 98 99
/**
 * VIR_NETWORK_MAGIC:
 *
 * magic value used to protect the API when pointers to network structures
 * are passed down by the uers.
 */
#define VIR_NETWORK_MAGIC		0xDEAD1234
#define VIR_IS_NETWORK(obj)		((obj) && (obj)->magic==VIR_NETWORK_MAGIC)
#define VIR_IS_CONNECTED_NETWORK(obj)	(VIR_IS_NETWORK(obj) && VIR_IS_CONNECT((obj)->conn))

/*
 * arbitrary limitations
 */
100
#define MAX_DRIVERS 10
101
#define MIN_XEN_GUEST_SIZE 64  /* 64 megabytes */
102

103 104 105 106 107 108 109 110 111 112
/*
 * Flags for Xen connections
 */
#define VIR_CONNECT_RO 1

/**
 * _virConnect:
 *
 * Internal structure associated to a connection
 */
113 114
struct _virConnect {
    unsigned int magic;     /* specific value to check */
115

116
    int uses;               /* reference count */
117 118 119 120
    /* the list of available drivers for that connection */
    virDriverPtr      drivers[MAX_DRIVERS];
    int               nb_drivers;

121 122 123 124
    /* the list of available network drivers */
    virNetworkDriverPtr networkDrivers[MAX_DRIVERS];
    int                 nb_network_drivers;

125
    /* extra data needed by drivers */
126
    int handle;             /* internal handle used for hypercall */
127 128
    struct xs_handle *xshandle;/* handle to talk to the xenstore */
    int proxy;              /* file descriptor if using the proxy */
129
    int xendConfigVersion;  /* XenD config version */
130 131 132 133 134 135 136 137

    /* 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 */

138 139
    int qemud_fd;           /* connection to qemud */

140 141 142 143 144 145
    /* error stuff */
    virError err;           /* the last error */
    virErrorFunc handler;   /* associated handlet */
    void *userData;         /* the user data */

    /* misc */
146
    xmlMutexPtr hashes_mux;/* a mutex to protect the domain and networks hash tables */
D
Daniel Veillard 已提交
147
    virHashTablePtr domains;/* hash table for known domains */
148
    virHashTablePtr networks;/* hash table for known domains */
149 150
    int flags;              /* a set of connection flags */
};
151

152
/**
153 154 155 156
* virDomainFlags:
*
* a set of special flag values associated to the domain
*/
157

158
enum virDomainFlags {
159 160
    DOMAIN_IS_SHUTDOWN = (1 << 0),  /* the domain is being shutdown */
    DOMAIN_IS_DEFINED  = (1 << 1)   /* the domain is defined not running */
161
};
162

163
/**
164 165 166 167 168
* _virDomain:
*
* Internal structure associated to a domain
*/
struct _virDomain {
169 170 171 172 173 174 175 176 177
    unsigned int magic;                  /* specific value to check */
    int uses;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the domain external name */
    char *path;                          /* the domain internal path */
    int id;                              /* the domain ID */
    int flags;                           /* extra flags */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the domain unique identifier */
    char *xml;                           /* the XML description for defined domains */
178
};
179

180 181 182 183 184 185 186 187 188 189 190 191 192
/**
* _virNetwork:
*
* Internal structure associated to a domain
*/
struct _virNetwork {
    unsigned int magic;                  /* specific value to check */
    int uses;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the network external name */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the network unique identifier */
};

193
/*
194 195 196 197 198 199
* Internal routines
*/
char *virDomainGetVM(virDomainPtr domain);
char *virDomainGetVMInfo(virDomainPtr domain,
			 const char *vm, const char *name);

200 201 202 203 204
/************************************************************************
 *									*
 *		API for error handling					*
 *									*
 ************************************************************************/
205 206
void __virRaiseError(virConnectPtr conn,
		     virDomainPtr dom,
207
		     virNetworkPtr net,
208 209 210 211 212 213
		     int domain,
		     int code,
		     virErrorLevel level,
		     const char *str1,
		     const char *str2,
		     const char *str3,
214 215
		     int int1, int int2, const char *msg, ...)
  ATTRIBUTE_FORMAT(printf, 12, 13);
216
const char *__virErrorMsg(virErrorNumber error, const char *info);
D
Daniel Veillard 已提交
217

218 219
/************************************************************************
 *									*
220
 *	API for domain/connections (de)allocations and lookups		*
221 222 223 224 225 226 227
 *									*
 ************************************************************************/

virConnectPtr	virGetConnect	(void);
int		virFreeConnect	(virConnectPtr conn);
virDomainPtr	virGetDomain	(virConnectPtr conn,
				 const char *name,
228
				 const unsigned char *uuid);
229 230
int		virFreeDomain	(virConnectPtr conn,
				 virDomainPtr domain);
231 232
virDomainPtr	virGetDomainByID(virConnectPtr conn,
				 int id);
233 234 235 236 237
virNetworkPtr	virGetNetwork	(virConnectPtr conn,
				 const char *name,
				 const unsigned char *uuid);
int		virFreeNetwork	(virConnectPtr conn,
				 virNetworkPtr domain);
238

239 240
#ifdef __cplusplus
}
241 242
#endif                          /* __cplusplus */
#endif                          /* __VIR_INTERNAL_H__ */
243 244 245 246 247 248 249 250 251 252 253 254 255 256

/*
 * vim: set tabstop=4:
 * vim: set shiftwidth=4:
 * vim: set expandtab:
 */
/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */