internal.h 11.4 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 25 26
#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*/
#endif

27 28
#include "gettext.h"

29 30 31 32 33 34 35 36 37
#include "hash.h"
#include "libvirt/libvirt.h"
#include "libvirt/virterror.h"
#include "driver.h"

#ifdef __cplusplus
extern "C" {
#endif

38 39 40 41 42 43 44 45 46 47 48 49 50
/* 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
51

52 53 54 55
#ifndef INET_ADDRSTRLEN
#define INET_ADDRSTRLEN 16
#endif

56
#define _(str) dgettext(GETTEXT_PACKAGE, (str))
57
#define N_(str) dgettext(GETTEXT_PACKAGE, (str))
58

59 60 61
/* String equality tests, suggested by Jim Meyering. */
#define STREQ(a,b) (strcmp((a),(b)) == 0)
#define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0)
62 63
#define STRNEQ(a,b) (strcmp((a),(b)) != 0)
#define STRCASENEQ(a,b) (strcasecmp((a),(b)) != 0)
64
#define STREQLEN(a,b,n) (strncmp((a),(b),(n)) == 0)
65
#define STRCASEEQLEN(a,b,n) (strncasecmp((a),(b),(n)) == 0)
66
#define STRNEQLEN(a,b,n) (strncmp((a),(b),(n)) != 0)
67
#define STRCASENEQLEN(a,b,n) (strncasecmp((a),(b),(n)) != 0)
68

69 70 71 72 73 74 75 76 77 78 79 80
/* 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
#define VIR_DEBUG(category, fmt,...)
    do { } while (0)
#endif /* !ENABLE_DEBUG */

81
/* C99 uses __func__.  __FUNCTION__ is legacy. */
82
#ifndef __GNUC__
83
#define __FUNCTION__ __func__
84 85 86
#endif

#ifdef __GNUC__
D
Daniel Veillard 已提交
87 88 89 90 91
/**
 * ATTRIBUTE_UNUSED:
 *
 * Macro to flag conciously unused parameters to functions
 */
92
#ifndef ATTRIBUTE_UNUSED
93
#define ATTRIBUTE_UNUSED __attribute__((__unused__))
94
#endif
95 96 97 98 99 100 101 102 103

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

106 107 108
#else
#define ATTRIBUTE_UNUSED
#define ATTRIBUTE_FORMAT(...)
109
#endif				/* __GNUC__ */
110

D
Daniel Veillard 已提交
111 112 113 114 115 116 117 118 119
/**
 * TODO:
 *
 * macro to flag unimplemented blocks
 */
#define TODO 								\
    fprintf(stderr, "Unimplemented block at %s:%d\n",			\
            __FILE__, __LINE__);

120 121 122 123 124 125
/**
 * VIR_CONNECT_MAGIC:
 *
 * magic value used to protect the API when pointers to connection structures
 * are passed down by the uers.
 */
K
Karel Zak 已提交
126 127 128
#define VIR_CONNECT_MAGIC 	0x4F23DEAD
#define VIR_IS_CONNECT(obj)	((obj) && (obj)->magic==VIR_CONNECT_MAGIC)

129 130 131 132 133

/**
 * VIR_DOMAIN_MAGIC:
 *
 * magic value used to protect the API when pointers to domain structures
134
 * are passed down by the users.
135
 */
K
Karel Zak 已提交
136 137 138
#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))
139

140 141 142 143
/**
 * VIR_NETWORK_MAGIC:
 *
 * magic value used to protect the API when pointers to network structures
144
 * are passed down by the users.
145 146 147 148 149
 */
#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))

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
/**
 * 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))

170 171 172
/*
 * arbitrary limitations
 */
173
#define MAX_DRIVERS 10
174
#define MIN_XEN_GUEST_SIZE 64  /* 64 megabytes */
175

176 177 178 179 180
/**
 * _virConnect:
 *
 * Internal structure associated to a connection
 */
181 182
struct _virConnect {
    unsigned int magic;     /* specific value to check */
183 184
    int flags;              /* a set of connection flags */
    char *name;                 /* connection URI */
185 186 187 188

    /* The underlying hypervisor driver and network driver. */
    virDriverPtr      driver;
    virNetworkDriverPtr networkDriver;
189
    virStorageDriverPtr storageDriver;
190 191 192 193 194 195 196

    /* 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;
197
    void *            storagePrivateData;
198 199

    /* Per-connection error. */
200 201 202 203
    virError err;           /* the last error */
    virErrorFunc handler;   /* associated handlet */
    void *userData;         /* the user data */

204 205 206 207 208 209
    /*
     * 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 已提交
210
    PTHREAD_MUTEX_T (lock);
211 212
    virHashTablePtr domains;  /* hash table for known domains */
    virHashTablePtr networks; /* hash table for known domains */
213 214
    virHashTablePtr storagePools;/* hash table for known storage pools */
    virHashTablePtr storageVols;/* hash table for known storage vols */
215
    int refs;                 /* reference count */
216
};
217 218

/**
219 220 221 222 223
* _virDomain:
*
* Internal structure associated to a domain
*/
struct _virDomain {
224
    unsigned int magic;                  /* specific value to check */
225
    int refs;                            /* reference count */
226 227 228 229
    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 */
230
};
231

232 233 234 235 236 237 238
/**
* _virNetwork:
*
* Internal structure associated to a domain
*/
struct _virNetwork {
    unsigned int magic;                  /* specific value to check */
239
    int refs;                            /* reference count */
240 241 242 243 244
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the network external name */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the network unique identifier */
};

245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
/**
* _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 */
};

273

274 275 276 277 278
/************************************************************************
 *									*
 *		API for error handling					*
 *									*
 ************************************************************************/
279
extern virError __lastErr;
280
void __virRaiseError(virConnectPtr conn,
281 282 283 284 285 286 287 288 289
                     virDomainPtr dom,
                     virNetworkPtr net,
                     int domain,
                     int code,
                     virErrorLevel level,
                     const char *str1,
                     const char *str2,
                     const char *str3,
                     int int1, int int2, const char *msg, ...)
290
  ATTRIBUTE_FORMAT(printf, 12, 13);
291
const char *__virErrorMsg(virErrorNumber error, const char *info);
D
Daniel Veillard 已提交
292

293 294
/************************************************************************
 *									*
295
 *	API for domain/connections (de)allocations and lookups		*
296 297 298
 *									*
 ************************************************************************/

299 300 301 302 303 304 305 306 307 308
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);
309

310 311 312 313 314 315 316 317 318 319
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);

320 321
#define virGetDomain(c,n,u) __virGetDomain((c),(n),(u))
#define virGetNetwork(c,n,u) __virGetNetwork((c),(n),(u))
322 323
#define virGetStoragePool(c,n,u) __virGetStoragePool((c),(n),(u))
#define virGetStorageVol(c,p,n,u) __virGetStorageVol((c),(p),(n),(u))
324

325 326 327 328 329 330 331 332 333
int __virStateInitialize(void);
int __virStateCleanup(void);
int __virStateReload(void);
int __virStateActive(void);
#define virStateInitialize() __virStateInitialize()
#define virStateCleanup() __virStateCleanup()
#define virStateReload() __virStateReload()
#define virStateActive() __virStateActive()

334 335
int __virDrvSupportsFeature (virConnectPtr conn, int feature);

336 337 338 339
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);

340 341
#ifdef __cplusplus
}
342 343
#endif                          /* __cplusplus */
#endif                          /* __VIR_INTERNAL_H__ */