datatypes.h 13.3 KB
Newer Older
1 2 3
/*
 * datatypes.h: management of structs for public data types
 *
4
 * Copyright (C) 2006-2008, 2010-2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
O
Osier Yang 已提交
17 18
 * License along with this library;  If not, see
 * <http://www.gnu.org/licenses/>.
19 20 21 22
 *
 */

#ifndef __VIRT_DATATYPES_H_
23
# define __VIRT_DATATYPES_H_
24

25
# include "internal.h"
26

27 28
# include "driver.h"
# include "threads.h"
29 30 31 32 33

/**
 * VIR_CONNECT_MAGIC:
 *
 * magic value used to protect the API when pointers to connection structures
A
Alon Levy 已提交
34
 * are passed down by the users.
35
 */
O
Osier Yang 已提交
36 37
# define VIR_CONNECT_MAGIC   0x4F23DEAD
# define VIR_IS_CONNECT(obj) ((obj) && (obj)->magic==VIR_CONNECT_MAGIC)
38 39 40 41 42 43 44 45


/**
 * VIR_DOMAIN_MAGIC:
 *
 * magic value used to protect the API when pointers to domain structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
46 47 48
# 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))
49 50 51 52 53 54 55

/**
 * VIR_NETWORK_MAGIC:
 *
 * magic value used to protect the API when pointers to network structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
56 57 58
# 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))
59

D
Daniel Veillard 已提交
60 61 62 63 64 65
/**
 * VIR_INTERFACE_MAGIC:
 *
 * magic value used to protect the API when pointers to interface structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
66 67 68
# define VIR_INTERFACE_MAGIC             0xDEAD5309
# define VIR_IS_INTERFACE(obj)           ((obj) && (obj)->magic==VIR_INTERFACE_MAGIC)
# define VIR_IS_CONNECTED_INTERFACE(obj) (VIR_IS_INTERFACE(obj) && VIR_IS_CONNECT((obj)->conn))
D
Daniel Veillard 已提交
69

70 71 72 73 74 75
/**
 * VIR_STORAGE_POOL_MAGIC:
 *
 * magic value used to protect the API when pointers to storage pool structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
76 77 78
# 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))
79 80 81 82 83 84 85

/**
 * VIR_STORAGE_VOL_MAGIC:
 *
 * magic value used to protect the API when pointers to storage vol structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
86 87 88
# 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))
89

90 91 92 93 94 95
/**
 * VIR_NODE_DEVICE_MAGIC:
 *
 * magic value used to protect the API when pointers to storage vol structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
96 97 98
# define VIR_NODE_DEVICE_MAGIC             0xDEAD5679
# define VIR_IS_NODE_DEVICE(obj)           ((obj) && (obj)->magic==VIR_NODE_DEVICE_MAGIC)
# define VIR_IS_CONNECTED_NODE_DEVICE(obj) (VIR_IS_NODE_DEVICE(obj) && VIR_IS_CONNECT((obj)->conn))
99

100 101 102 103 104 105
/**
 * VIR_SECRET_MAGIC:
 *
 * magic value used to protect the API when pointers to secret structures are
 * passed down by the users.
 */
O
Osier Yang 已提交
106 107 108
# define VIR_SECRET_MAGIC             0x5678DEAD
# define VIR_IS_SECRET(obj)           ((obj) && (obj)->magic==VIR_SECRET_MAGIC)
# define VIR_IS_CONNECTED_SECRET(obj) (VIR_IS_SECRET(obj) && VIR_IS_CONNECT((obj)->conn))
109

110

111 112 113 114 115 116
/**
 * VIR_STREAM_MAGIC:
 *
 * magic value used to protect the API when pointers to stream structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
117 118 119
# define VIR_STREAM_MAGIC             0x1DEAD666
# define VIR_IS_STREAM(obj)           ((obj) && (obj)->magic==VIR_STREAM_MAGIC)
# define VIR_IS_CONNECTED_STREAM(obj) (VIR_IS_STREAM(obj) && VIR_IS_CONNECT((obj)->conn))
120 121


S
Stefan Berger 已提交
122 123 124 125 126 127
/**
 * VIR_NWFILTER_MAGIC:
 *
 * magic value used to protect the API when pointers to network filter
 * pool structures are passed down by the users.
 */
O
Osier Yang 已提交
128 129 130
# define VIR_NWFILTER_MAGIC             0xDEAD7777
# define VIR_IS_NWFILTER(obj)           ((obj) && (obj)->magic==VIR_NWFILTER_MAGIC)
# define VIR_IS_CONNECTED_NWFILTER(obj) (VIR_IS_NWFILTER(obj) && VIR_IS_CONNECT((obj)->conn))
S
Stefan Berger 已提交
131

C
Chris Lalancette 已提交
132 133 134 135 136 137
/**
 * VIR_SNAPSHOT_MAGIC:
 *
 * magic value used to protect the API when pointers to snapshot structures
 * are passed down by the users.
 */
O
Osier Yang 已提交
138 139 140
# define VIR_SNAPSHOT_MAGIC          0x6666DEAD
# define VIR_IS_SNAPSHOT(obj)        ((obj) && (obj)->magic==VIR_SNAPSHOT_MAGIC)
# define VIR_IS_DOMAIN_SNAPSHOT(obj) (VIR_IS_SNAPSHOT(obj) && VIR_IS_DOMAIN((obj)->domain))
S
Stefan Berger 已提交
141

142 143 144 145 146 147
/**
 * _virConnect:
 *
 * Internal structure associated to a connection
 */
struct _virConnect {
148 149 150 151
    /* All the variables from here, until the 'lock' declaration
     * are setup at time of connection open, and never changed
     * since. Thus no need to lock when accessing them
     */
152
    unsigned int magic;     /* specific value to check */
E
Eric Blake 已提交
153
    unsigned int flags;     /* a set of connection flags */
M
Martin Kletzander 已提交
154
    virURIPtr uri;          /* connection URI */
155 156 157 158

    /* The underlying hypervisor driver and network driver. */
    virDriverPtr      driver;
    virNetworkDriverPtr networkDriver;
D
Daniel Veillard 已提交
159
    virInterfaceDriverPtr interfaceDriver;
160
    virStorageDriverPtr storageDriver;
161
    virDeviceMonitorPtr  deviceMonitor;
162
    virSecretDriverPtr secretDriver;
S
Stefan Berger 已提交
163
    virNWFilterDriverPtr nwfilterDriver;
164 165 166 167 168 169 170

    /* 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;
D
Daniel Veillard 已提交
171
    void *            interfacePrivateData;
172
    void *            storagePrivateData;
173
    void *            devMonPrivateData;
174
    void *            secretPrivateData;
S
Stefan Berger 已提交
175
    void *            nwfilterPrivateData;
176 177 178 179 180 181 182

    /*
     * 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
     */
183
    virMutex lock;
184 185 186 187 188 189

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

190 191 192 193
    /* Per-connection close callback */
    virConnectCloseFunc closeCallback;
    void *closeOpaque;
    virFreeCallback closeFreeCallback;
194 195
    bool closeDispatch;
    unsigned closeUnregisterCount;
196

197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
    int refs;                 /* reference count */
};

/**
* _virDomain:
*
* Internal structure associated to a domain
*/
struct _virDomain {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* 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 */
};

/**
* _virNetwork:
*
* Internal structure associated to a domain
*/
struct _virNetwork {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* 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 */
};

D
Daniel Veillard 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239
/**
* _virInterface:
*
* Internal structure associated to a physical host interface
*/
struct _virInterface {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the network external name */
    char *mac;                           /* the interface MAC address */
};

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
/**
* _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 */
264
    char *key;                           /* unique key for storage vol */
265 266
};

267 268 269 270 271 272 273 274 275 276
/**
 * _virNodeDevice:
 *
 * Internal structure associated with a node device
 */
struct _virNodeDevice {
    unsigned int magic;                 /* specific value to check */
    int refs;                           /* reference count */
    virConnectPtr conn;                 /* pointer back to the connection */
    char *name;                         /* device name (unique on node) */
277
    char *parent;                       /* parent device name */
278 279
};

280 281 282 283 284 285 286 287 288
/**
 * _virSecret:
 *
 * Internal structure associated with a secret
 */
struct _virSecret {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
289
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the domain unique identifier */
290 291
    int usageType;                       /* the type of usage */
    char *usageID;                       /* the usage's unique identifier */
292 293
};

294

295 296 297 298 299 300 301 302 303 304 305 306
typedef int (*virStreamAbortFunc)(virStreamPtr, void *opaque);
typedef int (*virStreamFinishFunc)(virStreamPtr, void *opaque);

/**
 * _virStream:
 *
 * Internal structure associated with an input stream
 */
struct _virStream {
    unsigned int magic;
    virConnectPtr conn;
    int refs;
E
Eric Blake 已提交
307
    unsigned int flags;
308 309 310 311 312

    virStreamDriverPtr driver;
    void *privateData;
};

C
Chris Lalancette 已提交
313 314 315 316 317 318 319 320 321 322 323
/**
 * _virDomainSnapshot
 *
 * Internal structure associated with a domain snapshot
 */
struct _virDomainSnapshot {
    unsigned int magic;
    int refs;
    char *name;
    virDomainPtr domain;
};
324

325 326 327 328 329 330 331 332
/************************************************************************
 *									*
 *	API for domain/connections (de)allocations and lookups		*
 *									*
 ************************************************************************/

virConnectPtr virGetConnect(void);
int virUnrefConnect(virConnectPtr conn);
D
Daniel P. Berrange 已提交
333
virDomainPtr virGetDomain(virConnectPtr conn,
O
Osier Yang 已提交
334 335
                          const char *name,
                          const unsigned char *uuid);
336
int virUnrefDomain(virDomainPtr domain);
D
Daniel P. Berrange 已提交
337
virNetworkPtr virGetNetwork(virConnectPtr conn,
O
Osier Yang 已提交
338 339
                            const char *name,
                            const unsigned char *uuid);
340 341
int virUnrefNetwork(virNetworkPtr network);

D
Daniel Veillard 已提交
342 343 344
virInterfacePtr virGetInterface(virConnectPtr conn,
                                const char *name,
                                const char *mac);
345
int virUnrefInterface(virInterfacePtr iface);
D
Daniel Veillard 已提交
346

D
Daniel P. Berrange 已提交
347
virStoragePoolPtr virGetStoragePool(virConnectPtr conn,
O
Osier Yang 已提交
348 349
                                    const char *name,
                                    const unsigned char *uuid);
350
int virUnrefStoragePool(virStoragePoolPtr pool);
D
Daniel P. Berrange 已提交
351
virStorageVolPtr virGetStorageVol(virConnectPtr conn,
O
Osier Yang 已提交
352 353 354
                                  const char *pool,
                                  const char *name,
                                  const char *key);
355 356
int virUnrefStorageVol(virStorageVolPtr vol);

357 358 359 360
virNodeDevicePtr virGetNodeDevice(virConnectPtr conn,
                                  const char *name);
int virUnrefNodeDevice(virNodeDevicePtr dev);

361
virSecretPtr virGetSecret(virConnectPtr conn,
362 363 364
                          const unsigned char *uuid,
                          int usageType,
                          const char *usageID);
365 366
int virUnrefSecret(virSecretPtr secret);

367 368 369
virStreamPtr virGetStream(virConnectPtr conn);
int virUnrefStream(virStreamPtr st);

S
Stefan Berger 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382 383
/**
* _virNWFilter:
*
* Internal structure associated to a network filter
*/
struct _virNWFilter {
    unsigned int magic;                  /* specific value to check */
    int refs;                            /* reference count */
    virConnectPtr conn;                  /* pointer back to the connection */
    char *name;                          /* the network filter external name */
    unsigned char uuid[VIR_UUID_BUFLEN]; /* the network filter unique identifier */
};

virNWFilterPtr virGetNWFilter(virConnectPtr conn,
O
Osier Yang 已提交
384 385
                              const char *name,
                              const unsigned char *uuid);
386
int virUnrefNWFilter(virNWFilterPtr nwfilter);
S
Stefan Berger 已提交
387

C
Chris Lalancette 已提交
388 389
virDomainSnapshotPtr virGetDomainSnapshot(virDomainPtr domain,
                                          const char *name);
390
int virUnrefDomainSnapshot(virDomainSnapshotPtr snapshot);
C
Chris Lalancette 已提交
391

392
#endif