2008-11-04 23:22:06 +00:00
/*
* datatypes . h : management of structs for public data types
*
2010-12-21 08:58:03 -07:00
* Copyright ( C ) 2006 - 2008 , 2010 Red Hat , Inc .
2008-11-04 23:22:06 +00:00
*
* 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
* License along with this library ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*
*/
# ifndef __VIRT_DATATYPES_H_
2010-03-09 19:22:22 +01:00
# define __VIRT_DATATYPES_H_
2008-11-04 23:22:06 +00:00
2010-03-09 19:22:22 +01:00
# include "internal.h"
2008-11-04 23:22:06 +00:00
2010-03-09 19:22:22 +01:00
# include "driver.h"
# include "threads.h"
2008-11-04 23:22:06 +00:00
/**
* VIR_CONNECT_MAGIC :
*
* magic value used to protect the API when pointers to connection structures
* are passed down by the uers .
*/
2010-12-21 08:58:03 -07:00
# define VIR_CONNECT_MAGIC 0x4F23DEAD
2010-03-09 19:22:22 +01:00
# define VIR_IS_CONNECT(obj) ((obj) && (obj)->magic==VIR_CONNECT_MAGIC)
2008-11-04 23:22:06 +00:00
/**
* VIR_DOMAIN_MAGIC :
*
* magic value used to protect the API when pointers to domain structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2008-11-04 23:22:06 +00:00
/**
* VIR_NETWORK_MAGIC :
*
* magic value used to protect the API when pointers to network structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2008-11-04 23:22:06 +00:00
2009-05-20 14:26:49 +00:00
/**
* VIR_INTERFACE_MAGIC :
*
* magic value used to protect the API when pointers to interface structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2009-05-20 14:26:49 +00:00
2008-11-04 23:22:06 +00:00
/**
* VIR_STORAGE_POOL_MAGIC :
*
* magic value used to protect the API when pointers to storage pool structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2008-11-04 23:22:06 +00:00
/**
* VIR_STORAGE_VOL_MAGIC :
*
* magic value used to protect the API when pointers to storage vol structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2008-11-04 23:22:06 +00:00
2008-11-21 12:19:22 +00:00
/**
* VIR_NODE_DEVICE_MAGIC :
*
* magic value used to protect the API when pointers to storage vol structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2008-11-21 12:19:22 +00:00
2009-08-14 21:42:19 +02:00
/**
* VIR_SECRET_MAGIC :
*
* magic value used to protect the API when pointers to secret structures are
* passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2009-08-14 21:42:19 +02:00
2008-11-04 23:22:06 +00:00
2009-07-10 12:18:12 +01:00
/**
* VIR_STREAM_MAGIC :
*
* magic value used to protect the API when pointers to stream structures
* are passed down by the users .
*/
2010-03-09 19:22:22 +01:00
# 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))
2009-07-10 12:18:12 +01:00
2010-03-25 13:46:02 -04:00
/**
* VIR_NWFILTER_MAGIC :
*
* magic value used to protect the API when pointers to network filter
* pool structures are passed down by the users .
*/
2010-03-26 19:29:54 +01:00
# 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))
2010-03-25 13:46:02 -04:00
2010-03-31 16:33:13 -04:00
/**
* VIR_SNAPSHOT_MAGIC :
*
* magic value used to protect the API when pointers to snapshot structures
* are passed down by the users .
*/
# 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))
2010-03-25 13:46:02 -04:00
2008-11-04 23:22:06 +00:00
/**
* _virConnect :
*
* Internal structure associated to a connection
*/
struct _virConnect {
2009-01-20 12:01:45 +00:00
/* 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
*/
2008-11-04 23:22:06 +00:00
unsigned int magic ; /* specific value to check */
int flags ; /* a set of connection flags */
2008-11-17 11:44:51 +00:00
xmlURIPtr uri ; /* connection URI */
2008-11-04 23:22:06 +00:00
/* The underlying hypervisor driver and network driver. */
virDriverPtr driver ;
virNetworkDriverPtr networkDriver ;
2009-05-20 14:26:49 +00:00
virInterfaceDriverPtr interfaceDriver ;
2008-11-04 23:22:06 +00:00
virStorageDriverPtr storageDriver ;
2008-11-21 12:19:22 +00:00
virDeviceMonitorPtr deviceMonitor ;
2009-08-14 21:42:19 +02:00
virSecretDriverPtr secretDriver ;
2010-03-25 13:46:02 -04:00
virNWFilterDriverPtr nwfilterDriver ;
2008-11-04 23:22:06 +00:00
/* 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 ;
2009-05-20 14:26:49 +00:00
void * interfacePrivateData ;
2008-11-04 23:22:06 +00:00
void * storagePrivateData ;
2008-11-21 12:19:22 +00:00
void * devMonPrivateData ;
2009-07-28 04:46:01 +02:00
void * secretPrivateData ;
2010-03-25 13:46:02 -04:00
void * nwfilterPrivateData ;
2008-11-04 23:22:06 +00:00
/*
* 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
*/
2009-01-15 19:56:05 +00:00
virMutex lock ;
2009-01-20 12:01:45 +00:00
/* Per-connection error. */
virError err ; /* the last error */
virErrorFunc handler ; /* associated handlet */
void * userData ; /* the user data */
2008-11-04 23:22:06 +00:00
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 */
} ;
2009-05-20 14:26:49 +00:00
/**
* _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 */
} ;
2008-11-04 23:22:06 +00:00
/**
* _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 */
} ;
2008-11-21 12:19:22 +00:00
/**
* _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) */
2008-12-04 21:46:34 +00:00
char * parent ; /* parent device name */
2008-11-21 12:19:22 +00:00
} ;
2009-08-14 21:42:19 +02:00
/**
* _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 */
Fix UUID handling in secrets/storage encryption APIs
Convert all the secret/storage encryption APIs / wire format to
handle UUIDs in raw format instead of non-canonical printable
format. Guarentees data format correctness.
* docs/schemas/storageencryption.rng: Make UUID mandatory for a secret
and validate fully
* docs/schemas/secret.rng: Fully validate UUID
* include/libvirt/libvirt.h, include/libvirt/libvirt.h.in, Add
virSecretLookupByUUID and virSecretGetUUID. Make
virSecretGetUUIDString follow normal API design pattern
* python/generator.py: Skip generation of virSecretGetUUID,
virSecretGetUUIDString and virSecretLookupByUUID
* python/libvir.c, python/libvirt-python-api.xml: Manual impl
of virSecretGetUUID,virSecretGetUUIDString and virSecretLookupByUUID
* qemud/remote.c: s/virSecretLookupByUUIDString/virSecretLookupByUUID/
Fix get_nonnull_secret/make_nonnull_secret to use unsigned char
* qemud/remote_protocol.x: Fix remote_nonnull_secret to use a
remote_uuid instead of remote_nonnull_string for UUID field.
Rename REMOTE_PROC_SECRET_LOOKUP_BY_UUID_STRING to
REMOTE_PROC_SECRET_LOOKUP_BY_UUID_STRING and make it take an
remote_uuid value
* qemud/remote_dispatch_args.h, qemud/remote_dispatch_prototypes.h,
qemud/remote_dispatch_ret.h, qemud/remote_dispatch_table.h,
qemud/remote_protocol.c, qemud/remote_protocol.h: Re-generate
* src/datatypes.h, src/datatypes.c: Store UUID in raw format instead
of printable. Change virGetSecret to use raw format UUID
* src/driver.h: Rename virDrvSecretLookupByUUIDString to
virDrvSecretLookupByUUID and use raw format UUID
* src/libvirt.c: Add virSecretLookupByUUID and virSecretGetUUID
and re-implement virSecretLookupByUUIDString and
virSecretGetUUIDString in terms of those
* src/libvirt_public.syms: Add virSecretLookupByUUID and
virSecretGetUUID
* src/remote_internal.c: Rename remoteSecretLookupByUUIDString
to remoteSecretLookupByUUID. Fix typo in args for
remoteSecretDefineXML impl. Use raw UUID format for
get_nonnull_secret and make_nonnull_secret
* src/storage_encryption_conf.c, src/storage_encryption_conf.h:
Storage UUID in raw format, and require it to be present in
XML. Use UUID parser to validate.
* secret_conf.h, secret_conf.c: Generate a UUID if none is provided.
Storage UUID in raw format.
* src/secret_driver.c: Adjust to deal with raw UUIDs. Save secrets
in a filed with printable UUID, instead of base64 UUID.
* src/virsh.c: Adjust for changed public API contract of
virSecretGetUUIDString.
* src/storage_Backend.c: DOn't undefine secret we just generated
upon successful volume creation. Fix to handle raw UUIDs. Generate
a non-clashing UUID
* src/qemu_driver.c: Change to use lookupByUUID instead of
lookupByUUIDString
2009-09-10 17:44:12 +01:00
unsigned char uuid [ VIR_UUID_BUFLEN ] ; /* the domain unique identifier */
Add usage type/id as a public API property of virSecret
* include/libvirt/libvirt.h, include/libvirt/libvirt.h.in: Add
virSecretGetUsageType, virSecretGetUsageID and virLookupSecretByUsage
* python/generator.py: Mark virSecretGetUsageType, virSecretGetUsageID
as not throwing exceptions
* qemud/remote.c: Implement dispatch for virLookupSecretByUsage
* qemud/remote_protocol.x: Add usage type & ID as attributes of
remote_nonnull_secret. Add RPC calls for new public APIs
* qemud/remote_dispatch_args.h, qemud/remote_dispatch_prototypes.h,
qemud/remote_dispatch_ret.h, qemud/remote_dispatch_table.h,
qemud/remote_protocol.c, qemud/remote_protocol.h: Re-generate
* src/datatypes.c, src/datatypes.h: Add usageType and usageID as
properties of virSecretPtr
* src/driver.h: Add virLookupSecretByUsage driver entry point
* src/libvirt.c: Implement virSecretGetUsageType, virSecretGetUsageID
and virLookupSecretByUsage
* src/libvirt_public.syms: Export virSecretGetUsageType, virSecretGetUsageID
and virLookupSecretByUsage
* src/remote_internal.c: Implement virLookupSecretByUsage entry
* src/secret_conf.c, src/secret_conf.h: Remove the
virSecretUsageType enum, now in public API. Make volume
path mandatory when parsing XML
* src/secret_driver.c: Enforce usage uniqueness when defining secrets.
Implement virSecretLookupByUsage api method
* src/virsh.c: Include usage for secret-list command
2009-09-11 14:06:15 +01:00
int usageType ; /* the type of usage */
char * usageID ; /* the usage's unique identifier */
2009-08-14 21:42:19 +02:00
} ;
2008-11-21 12:19:22 +00:00
2009-07-10 12:18:12 +01:00
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 ;
int flags ;
virStreamDriverPtr driver ;
void * privateData ;
} ;
2010-03-31 16:33:13 -04:00
/**
* _virDomainSnapshot
*
* Internal structure associated with a domain snapshot
*/
struct _virDomainSnapshot {
unsigned int magic ;
int refs ;
char * name ;
virDomainPtr domain ;
} ;
2009-07-10 12:18:12 +01:00
2008-11-04 23:22:06 +00:00
/************************************************************************
* *
* API for domain / connections ( de ) allocations and lookups *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
virConnectPtr virGetConnect ( void ) ;
int virUnrefConnect ( virConnectPtr conn ) ;
2008-11-17 11:03:25 +00:00
virDomainPtr virGetDomain ( virConnectPtr conn ,
2008-11-04 23:22:06 +00:00
const char * name ,
const unsigned char * uuid ) ;
int virUnrefDomain ( virDomainPtr domain ) ;
2008-11-17 11:03:25 +00:00
virNetworkPtr virGetNetwork ( virConnectPtr conn ,
2008-11-04 23:22:06 +00:00
const char * name ,
const unsigned char * uuid ) ;
int virUnrefNetwork ( virNetworkPtr network ) ;
2009-05-20 14:26:49 +00:00
virInterfacePtr virGetInterface ( virConnectPtr conn ,
const char * name ,
const char * mac ) ;
2009-05-29 14:29:22 +00:00
int virUnrefInterface ( virInterfacePtr iface ) ;
2009-05-20 14:26:49 +00:00
2008-11-17 11:03:25 +00:00
virStoragePoolPtr virGetStoragePool ( virConnectPtr conn ,
2008-11-04 23:22:06 +00:00
const char * name ,
const unsigned char * uuid ) ;
int virUnrefStoragePool ( virStoragePoolPtr pool ) ;
2008-11-17 11:03:25 +00:00
virStorageVolPtr virGetStorageVol ( virConnectPtr conn ,
2008-11-04 23:22:06 +00:00
const char * pool ,
const char * name ,
const char * key ) ;
int virUnrefStorageVol ( virStorageVolPtr vol ) ;
2008-11-21 12:19:22 +00:00
virNodeDevicePtr virGetNodeDevice ( virConnectPtr conn ,
const char * name ) ;
int virUnrefNodeDevice ( virNodeDevicePtr dev ) ;
2009-08-14 21:42:19 +02:00
virSecretPtr virGetSecret ( virConnectPtr conn ,
Add usage type/id as a public API property of virSecret
* include/libvirt/libvirt.h, include/libvirt/libvirt.h.in: Add
virSecretGetUsageType, virSecretGetUsageID and virLookupSecretByUsage
* python/generator.py: Mark virSecretGetUsageType, virSecretGetUsageID
as not throwing exceptions
* qemud/remote.c: Implement dispatch for virLookupSecretByUsage
* qemud/remote_protocol.x: Add usage type & ID as attributes of
remote_nonnull_secret. Add RPC calls for new public APIs
* qemud/remote_dispatch_args.h, qemud/remote_dispatch_prototypes.h,
qemud/remote_dispatch_ret.h, qemud/remote_dispatch_table.h,
qemud/remote_protocol.c, qemud/remote_protocol.h: Re-generate
* src/datatypes.c, src/datatypes.h: Add usageType and usageID as
properties of virSecretPtr
* src/driver.h: Add virLookupSecretByUsage driver entry point
* src/libvirt.c: Implement virSecretGetUsageType, virSecretGetUsageID
and virLookupSecretByUsage
* src/libvirt_public.syms: Export virSecretGetUsageType, virSecretGetUsageID
and virLookupSecretByUsage
* src/remote_internal.c: Implement virLookupSecretByUsage entry
* src/secret_conf.c, src/secret_conf.h: Remove the
virSecretUsageType enum, now in public API. Make volume
path mandatory when parsing XML
* src/secret_driver.c: Enforce usage uniqueness when defining secrets.
Implement virSecretLookupByUsage api method
* src/virsh.c: Include usage for secret-list command
2009-09-11 14:06:15 +01:00
const unsigned char * uuid ,
int usageType ,
const char * usageID ) ;
2009-08-14 21:42:19 +02:00
int virUnrefSecret ( virSecretPtr secret ) ;
2009-07-10 12:18:12 +01:00
virStreamPtr virGetStream ( virConnectPtr conn ) ;
int virUnrefStream ( virStreamPtr st ) ;
2010-03-25 13:46:02 -04:00
/**
* _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 ,
const char * name ,
const unsigned char * uuid ) ;
2011-01-15 16:06:52 +01:00
int virUnrefNWFilter ( virNWFilterPtr nwfilter ) ;
2010-03-25 13:46:02 -04:00
2010-03-31 16:33:13 -04:00
virDomainSnapshotPtr virGetDomainSnapshot ( virDomainPtr domain ,
const char * name ) ;
2011-01-15 16:06:52 +01:00
int virUnrefDomainSnapshot ( virDomainSnapshotPtr snapshot ) ;
2010-03-31 16:33:13 -04:00
2008-11-04 23:22:06 +00:00
# endif