internal.h 6.3 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
#define _(str) dgettext(GETTEXT_PACKAGE, (str))
26
#define N_(str) dgettext(GETTEXT_PACKAGE, (str))
27 28
#define gettext_noop(str) (str)

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

34 35 36 37
/* String equality tests, suggested by Jim Meyering. */
#define STREQ(a,b) (strcmp((a),(b)) == 0)
#define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0)

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

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

57 58 59
#else
#define ATTRIBUTE_UNUSED
#define ATTRIBUTE_FORMAT(...)
60 61
#endif

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

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

80 81 82 83 84 85 86

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

91 92 93 94 95 96 97 98 99 100 101 102 103
/**
 * 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
 */
104
#define MAX_DRIVERS 10
105
#define MIN_XEN_GUEST_SIZE 64  /* 64 megabytes */
106

107 108 109 110 111 112 113 114 115 116
/*
 * Flags for Xen connections
 */
#define VIR_CONNECT_RO 1

/**
 * _virConnect:
 *
 * Internal structure associated to a connection
 */
117 118
struct _virConnect {
    unsigned int magic;     /* specific value to check */
119

120
    int uses;               /* reference count */
121 122 123 124 125 126 127 128 129 130 131 132 133

    /* The underlying hypervisor driver and network driver. */
    virDriverPtr      driver;
    virNetworkDriverPtr networkDriver;

    /* Private data pointer which can be used by driver and
     * network driver as they wish.
     * NB: 'private' is a reserved word in C++.
     */
    void *            privateData;
    void *            networkPrivateData;

    /* Per-connection error. */
134 135 136 137 138
    virError err;           /* the last error */
    virErrorFunc handler;   /* associated handlet */
    void *userData;         /* the user data */

    /* misc */
139
    xmlMutexPtr hashes_mux;/* a mutex to protect the domain and networks hash tables */
D
Daniel Veillard 已提交
140
    virHashTablePtr domains;/* hash table for known domains */
141
    virHashTablePtr networks;/* hash table for known domains */
142 143
    int flags;              /* a set of connection flags */
};
144 145

/**
146 147 148 149 150
* _virDomain:
*
* Internal structure associated to a domain
*/
struct _virDomain {
151 152 153 154 155 156
    unsigned int magic;                  /* specific value to check */
    int uses;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the domain external name */
    int id;                              /* the domain ID */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the domain unique identifier */
157
};
158

159 160 161 162 163 164 165 166 167 168 169 170 171
/**
* _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 */
};

172
/*
173 174 175 176 177 178
* Internal routines
*/
char *virDomainGetVM(virDomainPtr domain);
char *virDomainGetVMInfo(virDomainPtr domain,
			 const char *vm, const char *name);

179 180 181 182 183
/************************************************************************
 *									*
 *		API for error handling					*
 *									*
 ************************************************************************/
184 185
void __virRaiseError(virConnectPtr conn,
		     virDomainPtr dom,
186
		     virNetworkPtr net,
187 188 189 190 191 192
		     int domain,
		     int code,
		     virErrorLevel level,
		     const char *str1,
		     const char *str2,
		     const char *str3,
193 194
		     int int1, int int2, const char *msg, ...)
  ATTRIBUTE_FORMAT(printf, 12, 13);
195
const char *__virErrorMsg(virErrorNumber error, const char *info);
D
Daniel Veillard 已提交
196

197 198
/************************************************************************
 *									*
199
 *	API for domain/connections (de)allocations and lookups		*
200 201 202 203 204
 *									*
 ************************************************************************/

virConnectPtr	virGetConnect	(void);
int		virFreeConnect	(virConnectPtr conn);
205
virDomainPtr	__virGetDomain	(virConnectPtr conn,
206
				 const char *name,
207
				 const unsigned char *uuid);
208 209
int		virFreeDomain	(virConnectPtr conn,
				 virDomainPtr domain);
210 211
virDomainPtr	virGetDomainByID(virConnectPtr conn,
				 int id);
212
virNetworkPtr	__virGetNetwork	(virConnectPtr conn,
213 214 215 216
				 const char *name,
				 const unsigned char *uuid);
int		virFreeNetwork	(virConnectPtr conn,
				 virNetworkPtr domain);
217

218 219 220
#define virGetDomain(c,n,u) __virGetDomain((c),(n),(u))
#define virGetNetwork(c,n,u) __virGetNetwork((c),(n),(u))

221 222
#ifdef __cplusplus
}
223 224
#endif                          /* __cplusplus */
#endif                          /* __VIR_INTERNAL_H__ */
225 226 227 228 229 230 231 232 233 234 235 236 237 238

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