2008-07-25 17:17:27 +04:00
# include <config.h>
# include <sys/utsname.h>
# include <stdlib.h>
# include "testutilsxen.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"
2013-03-05 19:17:24 +04:00
2008-07-25 17:17:27 +04:00
virCapsPtr testXenCapsInit ( void ) {
struct utsname utsname ;
virCapsPtr caps ;
virCapsGuestPtr guest ;
2009-07-27 19:45:01 +04:00
virCapsGuestMachinePtr * machines ;
int nmachines ;
2008-07-25 17:17:27 +04:00
static const char * const x86_machines [ ] = {
" xenfv "
} ;
static const char * const xen_machines [ ] = {
" xenpv "
} ;
2012-10-17 13:23:12 +04:00
uname ( & utsname ) ;
2012-12-18 23:32:23 +04:00
if ( ( caps = virCapabilitiesNew ( VIR_ARCH_I686 ,
2008-07-25 17:17:27 +04:00
0 , 0 ) ) = = NULL )
return NULL ;
2009-07-27 19:45:01 +04:00
nmachines = ARRAY_CARDINALITY ( x86_machines ) ;
if ( ( machines = virCapabilitiesAllocMachines ( x86_machines , nmachines ) ) = = NULL )
goto cleanup ;
2012-12-18 23:32:23 +04:00
if ( ( guest = virCapabilitiesAddGuest ( caps , " hvm " , VIR_ARCH_I686 ,
2008-07-25 17:17:27 +04:00
" /usr/lib/xen/bin/qemu-dm " , NULL ,
2009-07-27 19:45:01 +04:00
nmachines , machines ) ) = = NULL )
2008-07-25 17:17:27 +04:00
goto cleanup ;
2009-07-27 19:45:01 +04:00
machines = NULL ;
2008-07-25 17:17:27 +04:00
if ( virCapabilitiesAddGuestDomain ( guest ,
" xen " ,
NULL ,
NULL ,
0 ,
NULL ) = = NULL )
goto cleanup ;
2009-07-27 19:45:01 +04:00
nmachines = ARRAY_CARDINALITY ( xen_machines ) ;
if ( ( machines = virCapabilitiesAllocMachines ( xen_machines , nmachines ) ) = = NULL )
goto cleanup ;
2012-12-18 23:32:23 +04:00
if ( ( guest = virCapabilitiesAddGuest ( caps , " xen " , VIR_ARCH_I686 ,
2008-07-25 17:17:27 +04:00
" /usr/lib/xen/bin/qemu-dm " , NULL ,
2009-07-27 19:45:01 +04:00
nmachines , machines ) ) = = NULL )
2008-07-25 17:17:27 +04:00
goto cleanup ;
2009-07-27 19:45:01 +04:00
machines = NULL ;
2008-07-25 17:17:27 +04:00
if ( virCapabilitiesAddGuestDomain ( guest ,
" xen " ,
NULL ,
NULL ,
0 ,
NULL ) = = NULL )
goto cleanup ;
return caps ;
cleanup :
2009-07-27 19:45:01 +04:00
virCapabilitiesFreeMachines ( machines , nmachines ) ;
2013-02-01 16:26:18 +04:00
virObjectUnref ( caps ) ;
2008-07-25 17:17:27 +04:00
return NULL ;
}