2008-07-25 17:17:27 +04:00
# include <config.h>
# include <sys/utsname.h>
# include "testutilsxen.h"
2017-07-21 15:24:51 +03:00
# include "testutilshostcpus.h"
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
# include "domain_conf.h"
2019-12-03 13:49:49 +03:00
# define VIR_FROM_THIS VIR_FROM_LIBXL
static virCapsPtr
2014-12-16 07:30:05 +03:00
testXLInitCaps ( void )
{
virCapsPtr caps ;
virCapsGuestPtr guest ;
virCapsGuestMachinePtr * machines ;
int nmachines ;
static const char * const x86_machines [ ] = {
" xenfv "
} ;
static const char * const xen_machines [ ] = {
2018-11-26 22:34:40 +03:00
" xenpv " ,
} ;
static const char * const pvh_machines [ ] = {
" xenpvh " ,
2014-12-16 07:30:05 +03:00
} ;
if ( ( caps = virCapabilitiesNew ( virArchFromHost ( ) ,
false , false ) ) = = NULL )
return NULL ;
2017-04-24 16:07:01 +03:00
caps - > host . cpu = virCPUDefCopy ( & cpuDefaultData ) ;
2019-10-15 14:55:26 +03:00
nmachines = G_N_ELEMENTS ( x86_machines ) ;
2014-12-16 07:30:05 +03:00
if ( ( machines = virCapabilitiesAllocMachines ( x86_machines , nmachines ) ) = = NULL )
goto cleanup ;
2015-04-18 01:09:16 +03:00
if ( ( guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_HVM ,
VIR_ARCH_X86_64 ,
2015-03-20 04:03:08 +03:00
" /usr/lib/xen/bin/qemu-system-i386 " ,
" /usr/lib/xen/boot/hvmloader " ,
2014-12-16 07:30:05 +03:00
nmachines , machines ) ) = = NULL )
goto cleanup ;
machines = NULL ;
2015-04-18 01:38:10 +03:00
if ( virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_XEN , NULL ,
2014-12-16 07:30:05 +03:00
NULL , 0 , NULL ) = = NULL )
goto cleanup ;
2019-10-15 14:55:26 +03:00
nmachines = G_N_ELEMENTS ( xen_machines ) ;
2014-12-16 07:30:05 +03:00
if ( ( machines = virCapabilitiesAllocMachines ( xen_machines , nmachines ) ) = = NULL )
goto cleanup ;
2015-04-18 01:09:16 +03:00
if ( ( guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_XEN ,
VIR_ARCH_X86_64 ,
2015-03-20 04:03:08 +03:00
" /usr/lib/xen/bin/qemu-system-i386 " ,
NULL ,
nmachines , machines ) ) = = NULL )
2014-12-16 07:30:05 +03:00
goto cleanup ;
machines = NULL ;
2018-11-26 22:34:40 +03:00
if ( virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_XEN , NULL ,
NULL , 0 , NULL ) = = NULL )
goto cleanup ;
2019-10-15 14:55:26 +03:00
nmachines = G_N_ELEMENTS ( pvh_machines ) ;
2018-11-26 22:34:40 +03:00
if ( ( machines = virCapabilitiesAllocMachines ( pvh_machines , nmachines ) ) = = NULL )
goto cleanup ;
if ( ( guest = virCapabilitiesAddGuest ( caps , VIR_DOMAIN_OSTYPE_XENPVH ,
VIR_ARCH_X86_64 ,
" /usr/lib/xen/bin/qemu-system-i386 " ,
NULL ,
nmachines , machines ) ) = = NULL )
goto cleanup ;
machines = NULL ;
2015-04-18 01:38:10 +03:00
if ( virCapabilitiesAddGuestDomain ( guest , VIR_DOMAIN_VIRT_XEN , NULL ,
2014-12-16 07:30:05 +03:00
NULL , 0 , NULL ) = = NULL )
goto cleanup ;
return caps ;
cleanup :
virCapabilitiesFreeMachines ( machines , nmachines ) ;
virObjectUnref ( caps ) ;
return NULL ;
}
2019-12-03 13:49:49 +03:00
libxlDriverPrivatePtr testXLInitDriver ( void )
{
libxlDriverPrivatePtr driver = g_new0 ( libxlDriverPrivate , 1 ) ;
if ( virMutexInit ( & driver - > lock ) < 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" %s " , " cannot initialize mutex " ) ;
g_free ( driver ) ;
return NULL ;
}
2020-02-22 14:44:45 +03:00
if ( ! ( driver - > config = libxlDriverConfigNew ( ) ) )
return NULL ;
2019-12-03 13:49:49 +03:00
2020-02-22 15:12:17 +03:00
g_free ( driver - > config - > logDir ) ;
driver - > config - > logDir = g_strdup ( abs_builddir ) ;
2020-02-22 15:01:38 +03:00
if ( libxlDriverConfigInit ( driver - > config ) < 0 )
return NULL ;
2019-12-03 13:49:49 +03:00
driver - > config - > caps = testXLInitCaps ( ) ;
driver - > xmlopt = libxlCreateXMLConf ( driver ) ;
return driver ;
}
void testXLFreeDriver ( libxlDriverPrivatePtr driver )
{
virObjectUnref ( driver - > config ) ;
virObjectUnref ( driver - > xmlopt ) ;
virMutexDestroy ( & driver - > lock ) ;
g_free ( driver ) ;
}