internal.h 14.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
#include <errno.h>
9 10
#include <limits.h>

11 12 13 14
#ifdef HAVE_SYS_SYSLIMITS_H
#include <sys/syslimits.h>
#endif

15
#ifdef HAVE_PTHREAD_H
R
Richard W.M. Jones 已提交
16 17 18 19 20 21 22 23 24
#include <pthread.h>
#define PTHREAD_MUTEX_T(v) pthread_mutex_t v
#else
/* Mutex functions disappear if we don't have pthread. */
#define PTHREAD_MUTEX_T(v) /*empty*/
#define pthread_mutex_init(lk,p) /*empty*/
#define pthread_mutex_destroy(lk) /*empty*/
#define pthread_mutex_lock(lk) /*empty*/
#define pthread_mutex_unlock(lk) /*empty*/
25
#define pthread_sigmask(h, s, o) sigprocmask((h), (s), (o))
R
Richard W.M. Jones 已提交
26 27
#endif

28 29 30 31 32 33
/* The library itself is allowed to use deprecated functions /
 * variables, so effectively undefine the deprecated attribute
 * which would otherwise be defined in libvirt.h.
 */
#define VIR_DEPRECATED /*empty*/

34 35
#include "gettext.h"

36 37 38 39 40
#include "hash.h"
#include "libvirt/libvirt.h"
#include "libvirt/virterror.h"
#include "driver.h"

41 42 43 44 45 46 47 48 49 50 51 52 53
/* On architectures which lack these limits, define them (ie. Cygwin).
 * Note that the libvirt code should be robust enough to handle the
 * case where actual value is longer than these limits (eg. by setting
 * length correctly in second argument to gethostname and by always
 * using strncpy instead of strcpy).
 */
#ifndef HOST_NAME_MAX
#define HOST_NAME_MAX 256
#endif

#ifndef IF_NAMESIZE
#define IF_NAMESIZE 16
#endif
54

55 56 57 58
#ifndef INET_ADDRSTRLEN
#define INET_ADDRSTRLEN 16
#endif

59
#define _(str) dgettext(GETTEXT_PACKAGE, (str))
60
#define N_(str) dgettext(GETTEXT_PACKAGE, (str))
61

62 63 64
/* String equality tests, suggested by Jim Meyering. */
#define STREQ(a,b) (strcmp((a),(b)) == 0)
#define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0)
65 66
#define STRNEQ(a,b) (strcmp((a),(b)) != 0)
#define STRCASENEQ(a,b) (strcasecmp((a),(b)) != 0)
67
#define STREQLEN(a,b,n) (strncmp((a),(b),(n)) == 0)
68
#define STRCASEEQLEN(a,b,n) (strncasecmp((a),(b),(n)) == 0)
69
#define STRNEQLEN(a,b,n) (strncmp((a),(b),(n)) != 0)
70
#define STRCASENEQLEN(a,b,n) (strncasecmp((a),(b),(n)) != 0)
71
#define STRPREFIX(a,b) (strncmp((a),(b),strlen((b))) == 0)
72 73 74 75

#define NUL_TERMINATE(buf) do { (buf)[sizeof(buf)-1] = '\0'; } while (0)
#define ARRAY_CARDINALITY(Array) (sizeof (Array) / sizeof *(Array))

76 77 78 79 80 81 82 83
/* If configured with --enable-debug=yes then library calls
 * are printed to stderr for debugging.
 */
#ifdef ENABLE_DEBUG
extern int debugFlag;
#define VIR_DEBUG(category, fmt,...)                                    \
    do { if (debugFlag) fprintf (stderr, "DEBUG: %s: %s (" fmt ")\n", category, __func__, __VA_ARGS__); } while (0)
#else
84
#define VIR_DEBUG(category, fmt,...) \
85 86 87
    do { } while (0)
#endif /* !ENABLE_DEBUG */

88 89 90
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)

91
/* C99 uses __func__.  __FUNCTION__ is legacy. */
92
#ifndef __GNUC__
93
#define __FUNCTION__ __func__
94 95 96
#endif

#ifdef __GNUC__
97 98 99 100 101

#ifndef __GNUC_PREREQ
#define __GNUC_PREREQ(maj,min) 0
#endif

D
Daniel Veillard 已提交
102 103 104 105 106
/**
 * ATTRIBUTE_UNUSED:
 *
 * Macro to flag conciously unused parameters to functions
 */
107
#ifndef ATTRIBUTE_UNUSED
108
#define ATTRIBUTE_UNUSED __attribute__((__unused__))
109
#endif
110 111 112 113 114 115 116 117 118

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

121 122 123 124 125 126 127 128
#ifndef ATTRIBUTE_RETURN_CHECK
#if __GNUC_PREREQ (3, 4)
#define ATTRIBUTE_RETURN_CHECK __attribute__((__warn_unused_result__))
#else
#define ATTRIBUTE_RETURN_CHECK
#endif
#endif

129 130 131
#else
#define ATTRIBUTE_UNUSED
#define ATTRIBUTE_FORMAT(...)
132
#define ATTRIBUTE_RETURN_CHECK
133
#endif				/* __GNUC__ */
134

D
Daniel Veillard 已提交
135 136 137 138 139 140 141 142 143
/**
 * TODO:
 *
 * macro to flag unimplemented blocks
 */
#define TODO 								\
    fprintf(stderr, "Unimplemented block at %s:%d\n",			\
            __FILE__, __LINE__);

144 145 146 147 148 149
/**
 * VIR_CONNECT_MAGIC:
 *
 * magic value used to protect the API when pointers to connection structures
 * are passed down by the uers.
 */
K
Karel Zak 已提交
150 151 152
#define VIR_CONNECT_MAGIC 	0x4F23DEAD
#define VIR_IS_CONNECT(obj)	((obj) && (obj)->magic==VIR_CONNECT_MAGIC)

153 154 155 156 157

/**
 * VIR_DOMAIN_MAGIC:
 *
 * magic value used to protect the API when pointers to domain structures
158
 * are passed down by the users.
159
 */
K
Karel Zak 已提交
160 161 162
#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))
163

164 165 166 167
/**
 * VIR_NETWORK_MAGIC:
 *
 * magic value used to protect the API when pointers to network structures
168
 * are passed down by the users.
169 170 171 172 173
 */
#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))

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
/**
 * VIR_STORAGE_POOL_MAGIC:
 *
 * magic value used to protect the API when pointers to storage pool structures
 * are passed down by the users.
 */
#define VIR_STORAGE_POOL_MAGIC		0xDEAD5678
#define VIR_IS_STORAGE_POOL(obj)		((obj) && (obj)->magic==VIR_STORAGE_POOL_MAGIC)
#define VIR_IS_CONNECTED_STORAGE_POOL(obj)	(VIR_IS_STORAGE_POOL(obj) && VIR_IS_CONNECT((obj)->conn))

/**
 * VIR_STORAGE_VOL_MAGIC:
 *
 * magic value used to protect the API when pointers to storage vol structures
 * are passed down by the users.
 */
#define VIR_STORAGE_VOL_MAGIC		0xDEAD8765
#define VIR_IS_STORAGE_VOL(obj)		((obj) && (obj)->magic==VIR_STORAGE_VOL_MAGIC)
#define VIR_IS_CONNECTED_STORAGE_VOL(obj)	(VIR_IS_STORAGE_VOL(obj) && VIR_IS_CONNECT((obj)->conn))

194 195 196
/*
 * arbitrary limitations
 */
197
#define MAX_DRIVERS 10
198
#define MIN_XEN_GUEST_SIZE 64  /* 64 megabytes */
199

200 201 202 203 204
/**
 * _virConnect:
 *
 * Internal structure associated to a connection
 */
205 206
struct _virConnect {
    unsigned int magic;     /* specific value to check */
207 208
    int flags;              /* a set of connection flags */
    char *name;                 /* connection URI */
209 210 211 212

    /* The underlying hypervisor driver and network driver. */
    virDriverPtr      driver;
    virNetworkDriverPtr networkDriver;
213
    virStorageDriverPtr storageDriver;
214 215 216 217 218 219 220

    /* 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;
221
    void *            storagePrivateData;
222 223

    /* Per-connection error. */
224 225 226 227
    virError err;           /* the last error */
    virErrorFunc handler;   /* associated handlet */
    void *userData;         /* the user data */

228 229 230 231 232 233
    /*
     * The lock mutex must be acquired before accessing/changing
     * any of members following this point, or changing the ref
     * count of any virDomain/virNetwork object associated with
     * this connection
     */
R
Richard W.M. Jones 已提交
234
    PTHREAD_MUTEX_T (lock);
235 236
    virHashTablePtr domains;  /* hash table for known domains */
    virHashTablePtr networks; /* hash table for known domains */
237 238
    virHashTablePtr storagePools;/* hash table for known storage pools */
    virHashTablePtr storageVols;/* hash table for known storage vols */
239
    int refs;                 /* reference count */
240
};
241 242

/**
243 244 245 246 247
* _virDomain:
*
* Internal structure associated to a domain
*/
struct _virDomain {
248
    unsigned int magic;                  /* specific value to check */
249
    int refs;                            /* reference count */
250 251 252 253
    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 */
254
};
255

256 257 258 259 260 261 262
/**
* _virNetwork:
*
* Internal structure associated to a domain
*/
struct _virNetwork {
    unsigned int magic;                  /* specific value to check */
263
    int refs;                            /* reference count */
264 265 266 267 268
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the network external name */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the network unique identifier */
};

269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
/**
* _virStoragePool:
*
* Internal structure associated to a storage pool
*/
struct _virStoragePool {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the storage pool external name */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the storage pool unique identifier */
};

/**
* _virStorageVol:
*
* Internal structure associated to a storage volume
*/
struct _virStorageVol {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *pool;                          /* Pool name of owner */
    char *name;                          /* the storage vol external name */
    /* XXX currently abusing path for this. Ought not to be so evil */
    char key[PATH_MAX];                  /* unique key for storage vol */
};

297

D
Daniel Veillard 已提交
298

299 300
/************************************************************************
 *									*
301
 *	API for domain/connections (de)allocations and lookups		*
302 303 304
 *									*
 ************************************************************************/

305 306 307 308 309 310 311 312 313 314
virConnectPtr  virGetConnect   (void);
int            virUnrefConnect (virConnectPtr conn);
virDomainPtr   __virGetDomain  (virConnectPtr conn,
                                const char *name,
                                const unsigned char *uuid);
int            virUnrefDomain  (virDomainPtr domain);
virNetworkPtr  __virGetNetwork (virConnectPtr conn,
                                const char *name,
                                const unsigned char *uuid);
int           virUnrefNetwork  (virNetworkPtr network);
315

316 317 318 319 320 321 322 323 324 325
virStoragePoolPtr __virGetStoragePool (virConnectPtr conn,
                                       const char *name,
                                       const unsigned char *uuid);
int               virUnrefStoragePool (virStoragePoolPtr pool);
virStorageVolPtr  __virGetStorageVol  (virConnectPtr conn,
                                       const char *pool,
                                       const char *name,
                                       const char *key);
int               virUnrefStorageVol  (virStorageVolPtr vol);

326 327
#define virGetDomain(c,n,u) __virGetDomain((c),(n),(u))
#define virGetNetwork(c,n,u) __virGetNetwork((c),(n),(u))
328 329
#define virGetStoragePool(c,n,u) __virGetStoragePool((c),(n),(u))
#define virGetStorageVol(c,p,n,u) __virGetStorageVol((c),(p),(n),(u))
330

A
Atsushi SAKAI 已提交
331
#ifdef WITH_LIBVIRTD
332 333 334 335
int __virStateInitialize(void);
int __virStateCleanup(void);
int __virStateReload(void);
int __virStateActive(void);
336
int __virStateSigDispatcher(siginfo_t *siginfo);
337 338 339 340
#define virStateInitialize() __virStateInitialize()
#define virStateCleanup() __virStateCleanup()
#define virStateReload() __virStateReload()
#define virStateActive() __virStateActive()
341
#define virStateSigDispatcher(s) __virStateSigDispatcher(s)
A
Atsushi SAKAI 已提交
342
#endif
343

344 345
int __virDrvSupportsFeature (virConnectPtr conn, int feature);

346 347 348 349
int __virDomainMigratePrepare (virConnectPtr dconn, char **cookie, int *cookielen, const char *uri_in, char **uri_out, unsigned long flags, const char *dname, unsigned long bandwidth);
int __virDomainMigratePerform (virDomainPtr domain, const char *cookie, int cookielen, const char *uri, unsigned long flags, const char *dname, unsigned long bandwidth);
virDomainPtr __virDomainMigrateFinish (virConnectPtr dconn, const char *dname, const char *cookie, int cookielen, const char *uri, unsigned long flags);

350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
/**
 * Domain Event Notification
 */

struct _virDomainEventCallback {
    virConnectPtr conn;
    virConnectDomainEventCallback cb;
    void *opaque;
};
typedef struct _virDomainEventCallback virDomainEventCallback;
typedef virDomainEventCallback *virDomainEventCallbackPtr;

struct _virDomainEventCallbackList {
    unsigned int count;
    virDomainEventCallbackPtr *callbacks;
};
typedef struct _virDomainEventCallbackList virDomainEventCallbackList;
typedef virDomainEventCallbackList *virDomainEventCallbackListPtr;

void __virDomainEventCallbackListFree(virDomainEventCallbackListPtr list);
#define virDomainEventCallbackListFree(x) __virDomainEventCallbackListFree(x)

int  __virDomainEventCallbackListAdd(virConnectPtr conn,
                                  virDomainEventCallbackListPtr cbList,
                                  virConnectDomainEventCallback callback,
                                  void *opaque);
#define virDomainEventCallbackListAdd(a,b,c,d) \
        __virDomainEventCallbackListAdd((a),(b),(c),(d))

int  __virDomainEventCallbackListRemove(virConnectPtr conn,
                                      virDomainEventCallbackListPtr cbList,
                                      virConnectDomainEventCallback callback);
#define virDomainEventCallbackListRemove(a,b,c) \
        __virDomainEventCallbackListRemove((a),(b),(c))

int __virEventHandleTypeToPollEvent(virEventHandleType events);
#define virEventHandleTypeToPollEvent(x) __virEventHandleTypeToPollEvent(x)

virEventHandleType __virPollEventToEventHandleType(int events);
#define virPollEventToEventHandleType(x) __virPollEventToEventHandleType(x)

/**
 * Dispatching domain events that come in while
 * in a call / response rpc
 */
struct _virDomainEvent {
    virDomainPtr dom;
    virDomainEventType event;
};
typedef struct _virDomainEvent virDomainEvent;
typedef virDomainEvent *virDomainEventPtr;

struct _virDomainEventQueue {
    unsigned int count;
    virDomainEventPtr *events;
};
typedef struct _virDomainEventQueue virDomainEventQueue;
typedef virDomainEventQueue *virDomainEventQueuePtr;

int __virDomainEventCallbackQueuePush(virDomainEventQueuePtr evtQueue,
                                      virDomainPtr dom,
                                      virDomainEventType event);
#define virDomainEventCallbackQueuePush(a,b,c) \
        __virDomainEventCallbackQueuePush((a),(b),(c))

virDomainEventPtr
__virDomainEventCallbackQueuePop(virDomainEventQueuePtr evtQueue);
#define virDomainEventCallbackQueuePop(x) __virDomainEventCallbackQueuePop(x)

void __virDomainEventQueueFree(virDomainEventQueuePtr queue);
#define virDomainEventQueueFree(x) __virDomainEventQueueFree(x)
421

422
#endif                          /* __VIR_INTERNAL_H__ */