2008-05-22 20:18:40 +04:00
# include <config.h>
2008-06-26 13:37:51 +04:00
# ifdef WITH_QEMU
2010-03-09 21:22:22 +03:00
# include <stdlib.h>
2008-05-16 20:51:30 +04:00
2010-03-09 21:22:22 +03:00
# include "testutilsqemu.h"
# include "testutils.h"
2012-12-12 22:06:53 +04:00
# include "viralloc.h"
2010-04-16 10:01:59 +04:00
# include "cpu_conf.h"
2010-04-21 01:22:49 +04:00
# include "qemu / qemu_driver.h"
2010-12-17 19:41:51 +03:00
# include "qemu / qemu_domain.h"
2015-09-09 17:03:14 +03:00
# define __QEMU_CAPSRIV_H_ALLOW__
# include "qemu / qemu_capspriv.h"
2013-05-03 16:52:21 +04:00
# include "virstring.h"
# define VIR_FROM_THIS VIR_FROM_QEMU
2008-05-16 20:51:30 +04:00
2015-03-23 19:19:28 +03:00
virCPUDefPtr cpuDefault ;
virCPUDefPtr cpuHaswell ;
static virCPUFeatureDef cpuDefaultFeatures [ ] = {
{ ( char * ) " lahf_lm " , - 1 } ,
{ ( char * ) " xtpr " , - 1 } ,
{ ( char * ) " cx16 " , - 1 } ,
{ ( char * ) " tm2 " , - 1 } ,
{ ( char * ) " est " , - 1 } ,
{ ( char * ) " vmx " , - 1 } ,
{ ( char * ) " ds_cpl " , - 1 } ,
{ ( char * ) " pbe " , - 1 } ,
{ ( char * ) " tm " , - 1 } ,
{ ( char * ) " ht " , - 1 } ,
{ ( char * ) " ss " , - 1 } ,
{ ( char * ) " acpi " , - 1 } ,
{ ( char * ) " ds " , - 1 }
} ;
static virCPUDef cpuDefaultData = {
VIR_CPU_TYPE_HOST , /* type */
0 , /* mode */
0 , /* match */
VIR_ARCH_X86_64 , /* arch */
( char * ) " core2duo " , /* model */
NULL , /* vendor_id */
0 , /* fallback */
( char * ) " Intel " , /* vendor */
1 , /* sockets */
2 , /* cores */
1 , /* threads */
ARRAY_CARDINALITY ( cpuDefaultFeatures ) , /* nfeatures */
ARRAY_CARDINALITY ( cpuDefaultFeatures ) , /* nfeatures_max */
cpuDefaultFeatures , /* features */
} ;
static virCPUFeatureDef cpuHaswellFeatures [ ] = {
{ ( char * ) " lahf_lm " , - 1 } ,
{ ( char * ) " invtsc " , - 1 } ,
{ ( char * ) " abm " , - 1 } ,
{ ( char * ) " pdpe1gb " , - 1 } ,
{ ( char * ) " rdrand " , - 1 } ,
{ ( char * ) " f16c " , - 1 } ,
{ ( char * ) " osxsave " , - 1 } ,
{ ( char * ) " pdcm " , - 1 } ,
{ ( char * ) " xtpr " , - 1 } ,
{ ( char * ) " tm2 " , - 1 } ,
{ ( char * ) " est " , - 1 } ,
{ ( char * ) " smx " , - 1 } ,
{ ( char * ) " vmx " , - 1 } ,
{ ( char * ) " ds_cpl " , - 1 } ,
{ ( char * ) " monitor " , - 1 } ,
{ ( char * ) " dtes64 " , - 1 } ,
{ ( char * ) " pbe " , - 1 } ,
{ ( char * ) " tm " , - 1 } ,
{ ( char * ) " ht " , - 1 } ,
{ ( char * ) " ss " , - 1 } ,
{ ( char * ) " acpi " , - 1 } ,
{ ( char * ) " ds " , - 1 } ,
{ ( char * ) " vme " , - 1 } ,
} ;
static virCPUDef cpuHaswellData = {
VIR_CPU_TYPE_HOST , /* type */
0 , /* mode */
0 , /* match */
VIR_ARCH_X86_64 , /* arch */
( char * ) " Haswell " , /* model */
NULL , /* vendor_id */
0 , /* fallback */
( char * ) " Intel " , /* vendor */
1 , /* sockets */
2 , /* cores */
2 , /* threads */
ARRAY_CARDINALITY ( cpuHaswellFeatures ) , /* nfeatures */
ARRAY_CARDINALITY ( cpuHaswellFeatures ) , /* nfeatures_max */
cpuHaswellFeatures , /* features */
} ;
2009-09-10 13:16:27 +04:00
static virCapsGuestMachinePtr * testQemuAllocMachines ( int * nmachines )
{
virCapsGuestMachinePtr * machines ;
static const char * const x86_machines [ ] = {
" pc " , " isapc "
} ;
machines = virCapabilitiesAllocMachines ( x86_machines ,
ARRAY_CARDINALITY ( x86_machines ) ) ;
if ( machines = = NULL )
return NULL ;
* nmachines = ARRAY_CARDINALITY ( x86_machines ) ;
return machines ;
}
2009-09-10 14:19:12 +04:00
/* Newer versions of qemu have versioned machine types to allow
* compatibility with older releases .
* The ' pc ' machine type is an alias of the newest machine type .
*/
static virCapsGuestMachinePtr * testQemuAllocNewerMachines ( int * nmachines )
{
virCapsGuestMachinePtr * machines ;
char * canonical ;
static const char * const x86_machines [ ] = {
" pc-0.11 " , " pc " , " pc-0.10 " , " isapc "
} ;
2013-05-03 16:52:21 +04:00
if ( VIR_STRDUP ( canonical , x86_machines [ 0 ] ) < 0 )
2009-09-10 14:19:12 +04:00
return NULL ;
machines = virCapabilitiesAllocMachines ( x86_machines ,
ARRAY_CARDINALITY ( x86_machines ) ) ;
if ( machines = = NULL ) {
VIR_FREE ( canonical ) ;
return NULL ;
}
machines [ 1 ] - > canonical = canonical ;
* nmachines = ARRAY_CARDINALITY ( x86_machines ) ;
return machines ;
}
Fix default console type setting
The default console type may vary based on the OS type. ie a Xen
paravirt guests wants a 'xen' console, while a fullvirt guests
wants a 'serial' console.
A plain integer default console type in the capabilities does
not suffice. Instead introduce a callback that is passed the
OS type.
* src/conf/capabilities.h: Use a callback for default console
type
* src/conf/domain_conf.c, src/conf/domain_conf.h: Use callback
for default console type. Add missing LXC/OpenVZ console types.
* src/esx/esx_driver.c, src/libxl/libxl_conf.c,
src/lxc/lxc_conf.c, src/openvz/openvz_conf.c,
src/phyp/phyp_driver.c, src/qemu/qemu_capabilities.c,
src/uml/uml_conf.c, src/vbox/vbox_tmpl.c,
src/vmware/vmware_conf.c, src/xen/xen_hypervisor.c,
src/xenapi/xenapi_driver.c: Set default console type callback
2011-10-20 17:56:20 +04:00
2011-12-13 03:39:33 +04:00
static int testQemuAddPPC64Guest ( virCapsPtr caps )
{
static const char * machine [ ] = { " pseries " } ;
virCapsGuestMachinePtr * machines = NULL ;
virCapsGuestPtr guest ;
machines = virCapabilitiesAllocMachines ( machine , 1 ) ;
if ( ! machines )
goto error ;
2015-04-18 01:09:16 +03:00
guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_PPC64 ,
2011-12-13 03:39:33 +04:00
" /usr/bin/qemu-system-ppc64 " , NULL ,
1 , machines ) ;
if ( ! guest )
goto error ;
2015-04-18 01:38:10 +03:00
if ( ! virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_QEMU , NULL , NULL , 0 , NULL ) )
2011-12-13 03:39:33 +04:00
goto error ;
return 0 ;
2014-03-25 10:53:44 +04:00
error :
2011-12-13 03:39:33 +04:00
/* No way to free a guest? */
virCapabilitiesFreeMachines ( machines , 1 ) ;
return - 1 ;
}
2015-02-26 20:15:54 +03:00
static int testQemuAddPPC64LEGuest ( virCapsPtr caps )
{
static const char * machine [ ] = { " pseries " } ;
virCapsGuestMachinePtr * machines = NULL ;
virCapsGuestPtr guest ;
machines = virCapabilitiesAllocMachines ( machine , 1 ) ;
if ( ! machines )
goto error ;
2015-04-18 01:09:16 +03:00
guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_PPC64LE ,
2015-02-26 20:15:54 +03:00
" /usr/bin/qemu-system-ppc64 " , NULL ,
1 , machines ) ;
if ( ! guest )
goto error ;
2015-04-18 01:38:10 +03:00
if ( ! virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_QEMU , NULL , NULL , 0 , NULL ) )
2015-02-26 20:15:54 +03:00
goto error ;
return 0 ;
error :
/* No way to free a guest? */
virCapabilitiesFreeMachines ( machines , 1 ) ;
return - 1 ;
}
2013-03-14 08:49:43 +04:00
static int testQemuAddPPCGuest ( virCapsPtr caps )
{
static const char * machine [ ] = { " g3beige " ,
" mac99 " ,
" prep " ,
2014-05-27 09:44:13 +04:00
" ppce500 " } ;
2013-03-14 08:49:43 +04:00
virCapsGuestMachinePtr * machines = NULL ;
virCapsGuestPtr guest ;
machines = virCapabilitiesAllocMachines ( machine , 1 ) ;
if ( ! machines )
goto error ;
2015-04-18 01:09:16 +03:00
guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_PPC ,
2013-03-14 08:49:43 +04:00
" /usr/bin/qemu-system-ppc " , NULL ,
1 , machines ) ;
if ( ! guest )
goto error ;
2015-04-18 01:38:10 +03:00
if ( ! virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_QEMU , NULL , NULL , 0 , NULL ) )
2013-03-14 08:49:43 +04:00
goto error ;
return 0 ;
2014-03-25 10:53:44 +04:00
error :
2013-03-14 08:49:43 +04:00
/* No way to free a guest? */
virCapabilitiesFreeMachines ( machines , 1 ) ;
return - 1 ;
}
2012-06-29 19:02:07 +04:00
static int testQemuAddS390Guest ( virCapsPtr caps )
{
2013-03-05 19:44:23 +04:00
static const char * s390_machines [ ] = { " s390-virtio " ,
" s390-ccw-virtio " } ;
2012-06-29 19:02:07 +04:00
virCapsGuestMachinePtr * machines = NULL ;
virCapsGuestPtr guest ;
machines = virCapabilitiesAllocMachines ( s390_machines ,
ARRAY_CARDINALITY ( s390_machines ) ) ;
if ( ! machines )
goto error ;
2015-04-18 01:09:16 +03:00
guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_S390X ,
2012-06-29 19:02:07 +04:00
" /usr/bin/qemu-system-s390x " , NULL ,
ARRAY_CARDINALITY ( s390_machines ) ,
machines ) ;
if ( ! guest )
goto error ;
2015-04-18 01:38:10 +03:00
if ( ! virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_QEMU , NULL , NULL , 0 , NULL ) )
2012-06-29 19:02:07 +04:00
goto error ;
return 0 ;
2014-03-25 10:53:44 +04:00
error :
2012-06-29 19:02:07 +04:00
virCapabilitiesFreeMachines ( machines , ARRAY_CARDINALITY ( s390_machines ) ) ;
return - 1 ;
}
2013-07-30 23:41:14 +04:00
static int testQemuAddArmGuest ( virCapsPtr caps )
{
static const char * machines [ ] = { " vexpress-a9 " ,
" vexpress-a15 " ,
" versatilepb " } ;
virCapsGuestMachinePtr * capsmachines = NULL ;
virCapsGuestPtr guest ;
capsmachines = virCapabilitiesAllocMachines ( machines ,
ARRAY_CARDINALITY ( machines ) ) ;
if ( ! capsmachines )
goto error ;
2015-04-18 01:09:16 +03:00
guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_ARMV7L ,
2013-07-30 23:41:14 +04:00
" /usr/bin/qemu-system-arm " , NULL ,
ARRAY_CARDINALITY ( machines ) ,
capsmachines ) ;
if ( ! guest )
goto error ;
2015-04-18 01:38:10 +03:00
if ( ! virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_QEMU , NULL , NULL , 0 , NULL ) )
2013-07-30 23:41:14 +04:00
goto error ;
return 0 ;
2014-03-25 10:53:44 +04:00
error :
2013-07-30 23:41:14 +04:00
virCapabilitiesFreeMachines ( capsmachines , ARRAY_CARDINALITY ( machines ) ) ;
return - 1 ;
}
2014-01-02 14:42:56 +04:00
static int testQemuAddAARCH64Guest ( virCapsPtr caps )
{
static const char * machines [ ] = { " virt " } ;
virCapsGuestMachinePtr * capsmachines = NULL ;
virCapsGuestPtr guest ;
capsmachines = virCapabilitiesAllocMachines ( machines ,
ARRAY_CARDINALITY ( machines ) ) ;
if ( ! capsmachines )
goto error ;
2015-04-18 01:09:16 +03:00
guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_AARCH64 ,
2014-01-02 14:42:56 +04:00
" /usr/bin/qemu-system-aarch64 " , NULL ,
ARRAY_CARDINALITY ( machines ) ,
capsmachines ) ;
if ( ! guest )
goto error ;
2015-04-18 01:38:10 +03:00
if ( ! virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_QEMU , NULL , NULL , 0 , NULL ) )
2014-01-02 14:42:56 +04:00
goto error ;
return 0 ;
2014-03-25 10:53:44 +04:00
error :
2014-01-02 14:42:56 +04:00
virCapabilitiesFreeMachines ( capsmachines , ARRAY_CARDINALITY ( machines ) ) ;
return - 1 ;
}
2013-03-05 19:17:24 +04:00
2014-03-18 12:13:43 +04:00
virCapsPtr testQemuCapsInit ( void )
{
2008-05-16 20:51:30 +04:00
virCapsPtr caps ;
virCapsGuestPtr guest ;
2010-04-22 19:00:30 +04:00
virCapsGuestMachinePtr * machines = NULL ;
int nmachines = 0 ;
2008-05-16 20:51:30 +04:00
2015-03-23 19:19:28 +03:00
if ( ! ( caps = virCapabilitiesNew ( VIR_ARCH_X86_64 , false , false ) ) )
2008-05-16 20:51:30 +04:00
return NULL ;
2014-09-03 21:06:55 +04:00
/* Add dummy 'none' security_driver. This is equal to setting
* security_driver = " none " in qemu . conf . */
if ( VIR_ALLOC_N ( caps - > host . secModels , 1 ) < 0 )
goto cleanup ;
caps - > host . nsecModels = 1 ;
if ( VIR_STRDUP ( caps - > host . secModels [ 0 ] . model , " none " ) < 0 | |
VIR_STRDUP ( caps - > host . secModels [ 0 ] . doi , " 0 " ) < 0 )
goto cleanup ;
2015-03-23 19:19:28 +03:00
if ( ! ( cpuDefault = virCPUDefCopy ( & cpuDefaultData ) ) | |
! ( cpuHaswell = virCPUDefCopy ( & cpuHaswellData ) ) )
goto cleanup ;
caps - > host . cpu = cpuDefault ;
2015-07-24 17:06:33 +03:00
caps - > host . nnumaCell_max = 4 ;
2015-03-23 19:19:28 +03:00
if ( ( machines = testQemuAllocMachines ( & nmachines ) ) = = NULL )
2009-07-23 21:31:34 +04:00
goto cleanup ;
2015-04-18 01:09:16 +03:00
if ( ( guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_I686 ,
2008-05-16 20:51:30 +04:00
" /usr/bin/qemu " , NULL ,
2011-02-15 17:24:39 +03:00
nmachines , machines ) ) = = NULL | |
2014-07-14 16:56:13 +04:00
! virCapabilitiesAddGuestFeature ( guest , " cpuselection " , true , false ) )
2008-05-16 20:51:30 +04:00
goto cleanup ;
2009-07-23 21:31:34 +04:00
machines = NULL ;
2008-05-16 20:51:30 +04:00
if ( virCapabilitiesAddGuestDomain ( guest ,
2015-04-18 01:38:10 +03:00
VIR_DOMAIN_VIRT_QEMU ,
2008-05-16 20:51:30 +04:00
NULL ,
NULL ,
0 ,
NULL ) = = NULL )
goto cleanup ;
2015-05-07 01:32:05 +03:00
if ( ( machines = testQemuAllocMachines ( & nmachines ) ) = = NULL )
goto cleanup ;
if ( virCapabilitiesAddGuestDomain ( guest ,
VIR_DOMAIN_VIRT_KVM ,
" /usr/bin/qemu-kvm " ,
NULL ,
nmachines ,
machines ) = = NULL )
goto cleanup ;
machines = NULL ;
2009-09-10 14:19:12 +04:00
if ( ( machines = testQemuAllocNewerMachines ( & nmachines ) ) = = NULL )
2009-07-23 21:31:34 +04:00
goto cleanup ;
2015-04-18 01:09:16 +03:00
if ( ( guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM , VIR_ARCH_X86_64 ,
2008-05-16 20:51:30 +04:00
" /usr/bin/qemu-system-x86_64 " , NULL ,
2011-02-15 17:24:39 +03:00
nmachines , machines ) ) = = NULL | |
2014-07-14 16:56:13 +04:00
! virCapabilitiesAddGuestFeature ( guest , " cpuselection " , true , false ) )
2008-05-16 20:51:30 +04:00
goto cleanup ;
2009-07-23 21:31:34 +04:00
machines = NULL ;
2008-05-16 20:51:30 +04:00
if ( virCapabilitiesAddGuestDomain ( guest ,
2015-04-18 01:38:10 +03:00
VIR_DOMAIN_VIRT_QEMU ,
2008-05-16 20:51:30 +04:00
NULL ,
NULL ,
0 ,
NULL ) = = NULL )
goto cleanup ;
2009-09-10 14:22:32 +04:00
if ( ( machines = testQemuAllocMachines ( & nmachines ) ) = = NULL )
goto cleanup ;
2008-05-16 20:51:30 +04:00
if ( virCapabilitiesAddGuestDomain ( guest ,
2015-04-18 01:38:10 +03:00
VIR_DOMAIN_VIRT_KVM ,
2008-05-16 20:51:30 +04:00
" /usr/bin/kvm " ,
NULL ,
2009-09-10 14:22:32 +04:00
nmachines ,
machines ) = = NULL )
2008-05-16 20:51:30 +04:00
goto cleanup ;
2009-09-10 14:22:32 +04:00
machines = NULL ;
2008-05-16 20:51:30 +04:00
if ( virCapabilitiesAddGuestDomain ( guest ,
2015-04-18 01:38:10 +03:00
VIR_DOMAIN_VIRT_KVM ,
2008-05-16 20:51:30 +04:00
" /usr/bin/kvm " ,
NULL ,
0 ,
NULL ) = = NULL )
goto cleanup ;
2011-12-13 03:39:33 +04:00
if ( testQemuAddPPC64Guest ( caps ) )
goto cleanup ;
2015-02-26 20:15:54 +03:00
if ( testQemuAddPPC64LEGuest ( caps ) )
goto cleanup ;
2013-03-14 08:49:43 +04:00
if ( testQemuAddPPCGuest ( caps ) )
goto cleanup ;
2012-06-29 19:02:07 +04:00
if ( testQemuAddS390Guest ( caps ) )
goto cleanup ;
2013-07-30 23:41:14 +04:00
if ( testQemuAddArmGuest ( caps ) )
goto cleanup ;
2014-01-02 14:42:56 +04:00
if ( testQemuAddAARCH64Guest ( caps ) )
goto cleanup ;
2009-11-30 22:01:31 +03:00
if ( virTestGetDebug ( ) ) {
2009-09-10 14:07:20 +04:00
char * caps_str ;
caps_str = virCapabilitiesFormatXML ( caps ) ;
if ( ! caps_str )
goto cleanup ;
2015-04-23 20:38:00 +03:00
VIR_TEST_DEBUG ( " QEMU driver capabilities: \n %s " , caps_str ) ;
2009-09-10 14:07:20 +04:00
VIR_FREE ( caps_str ) ;
}
2008-05-16 20:51:30 +04:00
return caps ;
2014-03-25 10:53:44 +04:00
cleanup :
2009-07-23 21:31:34 +04:00
virCapabilitiesFreeMachines ( machines , nmachines ) ;
2015-03-23 19:19:28 +03:00
if ( caps - > host . cpu ! = cpuDefault )
virCPUDefFree ( cpuDefault ) ;
if ( caps - > host . cpu ! = cpuHaswell )
virCPUDefFree ( cpuHaswell ) ;
2013-02-01 16:26:18 +04:00
virObjectUnref ( caps ) ;
2008-05-16 20:51:30 +04:00
return NULL ;
}
2013-05-17 14:34:24 +04:00
2014-06-27 18:39:27 +04:00
virQEMUCapsPtr
qemuTestParseCapabilities ( const char * capsFile )
{
virQEMUCapsPtr qemuCaps = NULL ;
2016-04-28 18:02:38 +03:00
time_t qemuctime ;
time_t selfctime ;
unsigned long version ;
2014-06-27 18:39:27 +04:00
2016-04-28 18:02:38 +03:00
if ( ! ( qemuCaps = virQEMUCapsNew ( ) ) | |
virQEMUCapsLoadCache ( qemuCaps , capsFile ,
& qemuctime , & selfctime , & version ) < 0 )
2014-06-27 18:39:27 +04:00
goto error ;
return qemuCaps ;
error :
virObjectUnref ( qemuCaps ) ;
return NULL ;
}
2015-09-15 09:16:02 +03:00
void qemuTestDriverFree ( virQEMUDriver * driver )
{
2015-09-22 17:12:39 +03:00
virMutexDestroy ( & driver - > lock ) ;
2015-09-09 17:03:14 +03:00
virQEMUCapsCacheFree ( driver - > qemuCapsCache ) ;
2015-09-15 09:16:02 +03:00
virObjectUnref ( driver - > xmlopt ) ;
virObjectUnref ( driver - > caps ) ;
virObjectUnref ( driver - > config ) ;
}
2015-09-09 17:03:14 +03:00
int qemuTestCapsCacheInsert ( virQEMUCapsCachePtr cache , const char * binary ,
virQEMUCapsPtr caps )
{
int ret ;
if ( caps ) {
/* Our caps were created artificially, so we don't want
* virQEMUCapsCacheFree ( ) to attempt to deallocate them */
virObjectRef ( caps ) ;
} else {
caps = virQEMUCapsNew ( ) ;
if ( ! caps )
return - ENOMEM ;
}
/* We can have repeating names for our test data sets,
* so make sure there ' s no old copy */
virHashRemoveEntry ( cache - > binaries , binary ) ;
ret = virHashAddEntry ( cache - > binaries , binary , caps ) ;
if ( ret < 0 )
virObjectUnref ( caps ) ;
2015-09-09 17:03:15 +03:00
else
qemuTestCapsName = binary ;
2015-09-09 17:03:14 +03:00
return ret ;
}
2015-09-15 09:16:02 +03:00
int qemuTestDriverInit ( virQEMUDriver * driver )
{
2016-03-23 18:19:26 +03:00
virSecurityManagerPtr mgr = NULL ;
2016-01-18 11:11:19 +03:00
memset ( driver , 0 , sizeof ( * driver ) ) ;
2015-09-22 17:12:39 +03:00
if ( virMutexInit ( & driver - > lock ) < 0 )
return - 1 ;
2015-09-15 09:16:02 +03:00
driver - > config = virQEMUDriverConfigNew ( false ) ;
if ( ! driver - > config )
2015-09-22 17:12:39 +03:00
goto error ;
2015-09-15 09:16:02 +03:00
2016-03-15 15:54:24 +03:00
/* Overwrite some default paths so it's consistent for tests. */
VIR_FREE ( driver - > config - > libDir ) ;
VIR_FREE ( driver - > config - > channelTargetDir ) ;
if ( VIR_STRDUP ( driver - > config - > libDir , " /tmp/lib " ) < 0 | |
VIR_STRDUP ( driver - > config - > channelTargetDir , " /tmp/channel " ) < 0 )
goto error ;
2015-09-15 09:16:02 +03:00
driver - > caps = testQemuCapsInit ( ) ;
if ( ! driver - > caps )
goto error ;
2015-09-09 17:03:15 +03:00
/* Using /dev/null for libDir and cacheDir automatically produces errors
* upon attempt to use any of them */
driver - > qemuCapsCache = virQEMUCapsCacheNew ( " /dev/null " , " /dev/null " , 0 , 0 ) ;
if ( ! driver - > qemuCapsCache )
goto error ;
2015-09-15 09:16:02 +03:00
driver - > xmlopt = virQEMUDriverCreateXMLConf ( driver ) ;
if ( ! driver - > xmlopt )
goto error ;
2015-09-09 17:03:15 +03:00
if ( qemuTestCapsCacheInsert ( driver - > qemuCapsCache , " empty " , NULL ) < 0 )
goto error ;
2016-03-23 18:19:26 +03:00
if ( ! ( mgr = virSecurityManagerNew ( " none " , " qemu " ,
VIR_SECURITY_MANAGER_PRIVILEGED ) ) )
goto error ;
if ( ! ( driver - > securityManager = virSecurityManagerNewStack ( mgr ) ) )
goto error ;
2015-09-15 09:16:02 +03:00
return 0 ;
error :
2016-03-23 18:19:26 +03:00
virObjectUnref ( mgr ) ;
2015-09-15 09:16:02 +03:00
qemuTestDriverFree ( driver ) ;
return - 1 ;
}
2015-09-09 17:03:14 +03:00
2016-05-10 12:35:43 +03:00
int
testQemuCapsSetGIC ( virQEMUCapsPtr qemuCaps ,
int gic )
{
virGICCapability * gicCapabilities = NULL ;
size_t ngicCapabilities = 0 ;
int ret = - 1 ;
if ( VIR_ALLOC_N ( gicCapabilities , 2 ) < 0 )
goto out ;
# define IMPL_BOTH \
VIR_GIC_IMPLEMENTATION_KERNEL | VIR_GIC_IMPLEMENTATION_EMULATED
if ( gic & GIC_V2 ) {
gicCapabilities [ ngicCapabilities ] . version = VIR_GIC_VERSION_2 ;
gicCapabilities [ ngicCapabilities ] . implementation = IMPL_BOTH ;
ngicCapabilities + + ;
}
if ( gic & GIC_V3 ) {
gicCapabilities [ ngicCapabilities ] . version = VIR_GIC_VERSION_3 ;
gicCapabilities [ ngicCapabilities ] . implementation = IMPL_BOTH ;
ngicCapabilities + + ;
}
# undef IMPL_BOTH
virQEMUCapsSetGICCapabilities ( qemuCaps ,
gicCapabilities , ngicCapabilities ) ;
ret = 0 ;
out :
return ret ;
}
2008-06-26 13:37:51 +04:00
# endif