2008-07-25 21:17:27 +08:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
|
|
|
#include "testutilsxen.h"
|
2017-07-21 20:24:51 +08: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 21:56:20 +08:00
|
|
|
#include "domain_conf.h"
|
|
|
|
|
2019-12-03 18:49:49 +08:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_LIBXL
|
|
|
|
|
|
|
|
static virCapsPtr
|
2014-12-16 12:30:05 +08: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-27 03:34:40 +08:00
|
|
|
"xenpv",
|
|
|
|
};
|
|
|
|
static const char *const pvh_machines[] = {
|
|
|
|
"xenpvh",
|
2014-12-16 12:30:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
if ((caps = virCapabilitiesNew(virArchFromHost(),
|
|
|
|
false, false)) == NULL)
|
|
|
|
return NULL;
|
2017-04-24 21:07:01 +08:00
|
|
|
|
|
|
|
caps->host.cpu = virCPUDefCopy(&cpuDefaultData);
|
|
|
|
|
2019-10-15 19:55:26 +08:00
|
|
|
nmachines = G_N_ELEMENTS(x86_machines);
|
2014-12-16 12:30:05 +08:00
|
|
|
if ((machines = virCapabilitiesAllocMachines(x86_machines, nmachines)) == NULL)
|
|
|
|
goto cleanup;
|
2015-04-18 06:09:16 +08:00
|
|
|
if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM,
|
|
|
|
VIR_ARCH_X86_64,
|
2015-03-20 09:03:08 +08:00
|
|
|
"/usr/lib/xen/bin/qemu-system-i386",
|
|
|
|
"/usr/lib/xen/boot/hvmloader",
|
2014-12-16 12:30:05 +08:00
|
|
|
nmachines, machines)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
machines = NULL;
|
2015-04-18 06:38:10 +08:00
|
|
|
if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_XEN, NULL,
|
2014-12-16 12:30:05 +08:00
|
|
|
NULL, 0, NULL) == NULL)
|
|
|
|
goto cleanup;
|
2019-10-15 19:55:26 +08:00
|
|
|
nmachines = G_N_ELEMENTS(xen_machines);
|
2014-12-16 12:30:05 +08:00
|
|
|
if ((machines = virCapabilitiesAllocMachines(xen_machines, nmachines)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
|
2015-04-18 06:09:16 +08:00
|
|
|
if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_XEN,
|
|
|
|
VIR_ARCH_X86_64,
|
2015-03-20 09:03:08 +08:00
|
|
|
"/usr/lib/xen/bin/qemu-system-i386",
|
|
|
|
NULL,
|
|
|
|
nmachines, machines)) == NULL)
|
2014-12-16 12:30:05 +08:00
|
|
|
goto cleanup;
|
|
|
|
machines = NULL;
|
|
|
|
|
2018-11-27 03:34:40 +08:00
|
|
|
if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_XEN, NULL,
|
|
|
|
NULL, 0, NULL) == NULL)
|
|
|
|
goto cleanup;
|
2019-10-15 19:55:26 +08:00
|
|
|
nmachines = G_N_ELEMENTS(pvh_machines);
|
2018-11-27 03:34:40 +08: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 06:38:10 +08:00
|
|
|
if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_XEN, NULL,
|
2014-12-16 12:30:05 +08:00
|
|
|
NULL, 0, NULL) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
return caps;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virCapabilitiesFreeMachines(machines, nmachines);
|
|
|
|
virObjectUnref(caps);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-12-03 18:49:49 +08: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
driver->config = libxlDriverConfigNew();
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|