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