2008-05-22 16:18:40 +00:00
|
|
|
#include <config.h>
|
2008-06-26 09:37:51 +00:00
|
|
|
#ifdef WITH_QEMU
|
2008-05-16 16:51:30 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "testutilsqemu.h"
|
2017-07-21 12:24:51 +00:00
|
|
|
# include "testutilshostcpus.h"
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "testutils.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
# include "viralloc.h"
|
2010-04-16 06:01:59 +00:00
|
|
|
# include "cpu_conf.h"
|
2010-04-20 21:22:49 +00:00
|
|
|
# include "qemu/qemu_driver.h"
|
2010-12-17 16:41:51 +00:00
|
|
|
# include "qemu/qemu_domain.h"
|
2018-12-13 14:53:50 +00:00
|
|
|
# define LIBVIRT_QEMU_CAPSPRIV_H_ALLOW
|
2015-09-09 14:03:14 +00:00
|
|
|
# include "qemu/qemu_capspriv.h"
|
2013-05-03 12:52:21 +00:00
|
|
|
# include "virstring.h"
|
2017-07-19 15:01:56 +00:00
|
|
|
# include "virfilecache.h"
|
2020-02-16 21:59:28 +00:00
|
|
|
# include "virutil.h"
|
2013-05-03 12:52:21 +00:00
|
|
|
|
|
|
|
# define VIR_FROM_THIS VIR_FROM_QEMU
|
2008-05-16 16:51:30 +00:00
|
|
|
|
2015-03-23 16:19:28 +00:00
|
|
|
virCPUDefPtr cpuDefault;
|
|
|
|
virCPUDefPtr cpuHaswell;
|
2016-09-13 20:27:09 +00:00
|
|
|
virCPUDefPtr cpuPower8;
|
2017-05-17 14:39:16 +00:00
|
|
|
virCPUDefPtr cpuPower9;
|
2015-03-23 16:19:28 +00:00
|
|
|
|
2016-12-20 09:10:05 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
static const char *qemu_emulators[VIR_ARCH_LAST] = {
|
|
|
|
[VIR_ARCH_I686] = "/usr/bin/qemu-system-i386",
|
|
|
|
[VIR_ARCH_X86_64] = "/usr/bin/qemu-system-x86_64",
|
|
|
|
[VIR_ARCH_AARCH64] = "/usr/bin/qemu-system-aarch64",
|
|
|
|
[VIR_ARCH_ARMV7L] = "/usr/bin/qemu-system-arm",
|
|
|
|
[VIR_ARCH_PPC64] = "/usr/bin/qemu-system-ppc64",
|
|
|
|
[VIR_ARCH_PPC] = "/usr/bin/qemu-system-ppc",
|
|
|
|
[VIR_ARCH_RISCV32] = "/usr/bin/qemu-system-riscv32",
|
|
|
|
[VIR_ARCH_RISCV64] = "/usr/bin/qemu-system-riscv64",
|
|
|
|
[VIR_ARCH_S390X] = "/usr/bin/qemu-system-s390x"
|
|
|
|
};
|
2009-09-10 10:19:12 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
static const virArch arch_alias[VIR_ARCH_LAST] = {
|
|
|
|
[VIR_ARCH_PPC64LE] = VIR_ARCH_PPC64,
|
|
|
|
[VIR_ARCH_ARMV6L] = VIR_ARCH_ARMV7L,
|
|
|
|
};
|
2009-09-10 10:19:12 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
static const char *const i386_machines[] = {
|
|
|
|
"pc", "isapc", NULL
|
|
|
|
};
|
2020-01-22 16:46:57 +00:00
|
|
|
/**
|
|
|
|
* Oldest supported qemu-1.5 supports machine types back to pc-0.10.
|
|
|
|
*/
|
2020-01-22 09:28:19 +00:00
|
|
|
static const char *const x86_64_machines[] = {
|
2020-01-22 16:46:57 +00:00
|
|
|
"pc", "isapc", "q35",
|
2020-01-23 09:37:08 +00:00
|
|
|
"pc-1.0", "pc-1.2",
|
2020-01-22 16:46:57 +00:00
|
|
|
"pc-i440fx-1.4", "pc-i440fx-2.1", "pc-i440fx-2.3", "pc-i440fx-2.5",
|
|
|
|
"pc-i440fx-2.6", "pc-i440fx-2.9", "pc-i440fx-2.12",
|
|
|
|
"pc-q35-2.3", "pc-q35-2.4", "pc-q35-2.5", "pc-q35-2.7", "pc-q35-2.10",
|
|
|
|
NULL
|
2019-12-02 12:19:44 +00:00
|
|
|
};
|
|
|
|
static const char *const aarch64_machines[] = {
|
2020-01-22 16:46:57 +00:00
|
|
|
"virt", "virt-2.6", "versatilepb", NULL
|
2019-12-02 12:19:44 +00:00
|
|
|
};
|
|
|
|
static const char *const arm_machines[] = {
|
2020-01-22 16:46:57 +00:00
|
|
|
"vexpress-a9", "vexpress-a15", "versatilepb", "virt", NULL
|
2019-12-02 12:19:44 +00:00
|
|
|
};
|
|
|
|
static const char *const ppc64_machines[] = {
|
|
|
|
"pseries", NULL
|
|
|
|
};
|
|
|
|
static const char *const ppc_machines[] = {
|
|
|
|
"g3beige", "mac99", "prep", "ppce500", NULL
|
|
|
|
};
|
|
|
|
static const char *const riscv32_machines[] = {
|
|
|
|
"spike_v1.10", "spike_v1.9.1", "sifive_e", "virt", "sifive_u", NULL
|
|
|
|
};
|
|
|
|
static const char *const riscv64_machines[] = {
|
|
|
|
"spike_v1.10", "spike_v1.9.1", "sifive_e", "virt", "sifive_u", NULL
|
|
|
|
};
|
|
|
|
static const char *const s390x_machines[] = {
|
2020-01-22 16:46:57 +00:00
|
|
|
"s390-virtio", "s390-ccw-virtio", "s390-ccw", NULL
|
2019-12-02 12:19:44 +00:00
|
|
|
};
|
2009-09-10 10:19:12 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
static const char *const *qemu_machines[VIR_ARCH_LAST] = {
|
|
|
|
[VIR_ARCH_I686] = i386_machines,
|
2020-01-22 09:28:19 +00:00
|
|
|
[VIR_ARCH_X86_64] = x86_64_machines,
|
2019-12-02 12:19:44 +00:00
|
|
|
[VIR_ARCH_AARCH64] = aarch64_machines,
|
|
|
|
[VIR_ARCH_ARMV7L] = arm_machines,
|
|
|
|
[VIR_ARCH_PPC64] = ppc64_machines,
|
|
|
|
[VIR_ARCH_PPC] = ppc_machines,
|
|
|
|
[VIR_ARCH_RISCV32] = riscv32_machines,
|
|
|
|
[VIR_ARCH_RISCV64] = riscv64_machines,
|
|
|
|
[VIR_ARCH_S390X] = s390x_machines,
|
|
|
|
};
|
2009-09-10 10:19:12 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
static const char *const *kvm_machines[VIR_ARCH_LAST] = {
|
|
|
|
[VIR_ARCH_I686] = i386_machines,
|
2020-01-22 09:28:19 +00:00
|
|
|
[VIR_ARCH_X86_64] = x86_64_machines,
|
2019-12-02 12:19:44 +00:00
|
|
|
[VIR_ARCH_AARCH64] = aarch64_machines,
|
|
|
|
[VIR_ARCH_ARMV7L] = arm_machines,
|
|
|
|
[VIR_ARCH_PPC64] = ppc64_machines,
|
|
|
|
[VIR_ARCH_PPC] = ppc_machines,
|
|
|
|
[VIR_ARCH_RISCV32] = riscv32_machines,
|
|
|
|
[VIR_ARCH_RISCV64] = riscv64_machines,
|
|
|
|
[VIR_ARCH_S390X] = s390x_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 13:56:20 +00:00
|
|
|
|
2019-11-26 16:53:53 +00:00
|
|
|
|
|
|
|
char *
|
|
|
|
virFindFileInPath(const char *file)
|
|
|
|
{
|
|
|
|
if (g_str_has_prefix(file, "qemu-system") ||
|
|
|
|
g_str_equal(file, "qemu-kvm")) {
|
|
|
|
return g_strdup_printf("/usr/bin/%s", file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nothing in tests should be relying on real files
|
|
|
|
* in host OS, so we return NULL to try to force
|
|
|
|
* an error in such a case
|
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-11-29 10:40:39 +00:00
|
|
|
|
|
|
|
virCapsHostNUMAPtr
|
|
|
|
virCapabilitiesHostNUMANewHost(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Build a NUMA topology with cell_id (NUMA node id
|
|
|
|
* being 3(0 + 3),4(1 + 3), 5 and 6
|
|
|
|
*/
|
|
|
|
return virTestCapsBuildNUMATopology(3);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-19 22:52:33 +00:00
|
|
|
static int
|
2019-12-02 12:19:44 +00:00
|
|
|
testQemuAddGuest(virCapsPtr caps,
|
|
|
|
virArch arch)
|
2016-12-19 22:52:33 +00:00
|
|
|
{
|
2019-12-02 12:19:44 +00:00
|
|
|
size_t nmachines;
|
2016-12-19 22:52:33 +00:00
|
|
|
virCapsGuestMachinePtr *machines = NULL;
|
|
|
|
virCapsGuestPtr guest;
|
2019-12-02 12:19:44 +00:00
|
|
|
virArch emu_arch = arch;
|
2016-12-19 22:52:33 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
if (arch_alias[arch] != VIR_ARCH_NONE)
|
|
|
|
emu_arch = arch_alias[arch];
|
2016-12-19 22:52:33 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
if (qemu_emulators[emu_arch] == NULL)
|
|
|
|
return 0;
|
2016-12-19 22:52:33 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
nmachines = g_strv_length((gchar **)qemu_machines[emu_arch]);
|
|
|
|
machines = virCapabilitiesAllocMachines(qemu_machines[emu_arch],
|
|
|
|
nmachines);
|
|
|
|
if (machines == NULL)
|
2016-12-19 22:52:33 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (!(guest = virCapabilitiesAddGuest(caps,
|
|
|
|
VIR_DOMAIN_OSTYPE_HVM,
|
2019-12-02 12:19:44 +00:00
|
|
|
arch,
|
|
|
|
qemu_emulators[emu_arch],
|
2016-12-19 22:52:33 +00:00
|
|
|
NULL,
|
|
|
|
nmachines,
|
|
|
|
machines)))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
machines = NULL;
|
2019-12-02 12:19:44 +00:00
|
|
|
nmachines = 0;
|
|
|
|
|
|
|
|
if (arch == VIR_ARCH_I686 ||
|
|
|
|
arch == VIR_ARCH_X86_64)
|
|
|
|
virCapabilitiesAddGuestFeature(guest, VIR_CAPS_GUEST_FEATURE_TYPE_CPUSELECTION);
|
2016-12-19 22:52:33 +00:00
|
|
|
|
|
|
|
if (!virCapabilitiesAddGuestDomain(guest,
|
|
|
|
VIR_DOMAIN_VIRT_QEMU,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL))
|
|
|
|
goto error;
|
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
nmachines = g_strv_length((char **)kvm_machines[emu_arch]);
|
|
|
|
machines = virCapabilitiesAllocMachines(kvm_machines[emu_arch],
|
|
|
|
nmachines);
|
|
|
|
if (machines == NULL)
|
2016-12-19 22:52:33 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (!virCapabilitiesAddGuestDomain(guest,
|
|
|
|
VIR_DOMAIN_VIRT_KVM,
|
2019-12-02 12:19:44 +00:00
|
|
|
qemu_emulators[emu_arch],
|
2016-12-19 22:52:33 +00:00
|
|
|
NULL,
|
|
|
|
nmachines,
|
|
|
|
machines))
|
|
|
|
goto error;
|
|
|
|
|
2018-08-22 09:15:27 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
virCapabilitiesFreeMachines(machines, nmachines);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:17:24 +00:00
|
|
|
|
2014-03-18 08:13:43 +00:00
|
|
|
virCapsPtr testQemuCapsInit(void)
|
|
|
|
{
|
2008-05-16 16:51:30 +00:00
|
|
|
virCapsPtr caps;
|
2019-12-02 12:19:44 +00:00
|
|
|
size_t i;
|
2008-05-16 16:51:30 +00:00
|
|
|
|
2015-03-23 16:19:28 +00:00
|
|
|
if (!(caps = virCapabilitiesNew(VIR_ARCH_X86_64, false, false)))
|
2008-05-16 16:51:30 +00:00
|
|
|
return NULL;
|
|
|
|
|
2014-09-03 17:06:55 +00: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;
|
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
caps->host.secModels[0].model = g_strdup("none");
|
|
|
|
caps->host.secModels[0].doi = g_strdup("0");
|
2014-09-03 17:06:55 +00:00
|
|
|
|
2019-11-29 10:40:39 +00:00
|
|
|
if (!(caps->host.numa = virCapabilitiesHostNUMANewHost()))
|
tests: Create full host NUMA topology in more cases
vircapstest has code to add a full host NUMA topology, that
is, one that includes all information about nodes and CPUs
including IDs; testQemuCapsInit(), which is used to create a
mock virCapsPtr for QEMU tests, however, just fakes it by
setting nnumaCell_max to some number.
While the latter approach has served us well so far, we're
going to need all the information to be filled in soon. In
order to do that, we can just move the existing code from
vircapstest to testutils and, with some renaming and
trivial tweaking, use it as-is.
Interestingly, the NUMA topology generated by the function
is rigged up so that the NUMA nodes aren't (necessarily)
numbered starting from 0, which is a nice way to spot
mistaken assumptions in our codebase.
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
2018-04-10 15:42:14 +00:00
|
|
|
goto cleanup;
|
2015-07-24 14:06:33 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
for (i = 0; i < VIR_ARCH_LAST; i++) {
|
|
|
|
if (testQemuAddGuest(caps, i) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2014-01-02 10:42:56 +00:00
|
|
|
|
2009-11-30 19:01:31 +00:00
|
|
|
if (virTestGetDebug()) {
|
2009-09-10 10:07:20 +00:00
|
|
|
char *caps_str;
|
|
|
|
|
|
|
|
caps_str = virCapabilitiesFormatXML(caps);
|
|
|
|
if (!caps_str)
|
|
|
|
goto cleanup;
|
|
|
|
|
2015-04-23 17:38:00 +00:00
|
|
|
VIR_TEST_DEBUG("QEMU driver capabilities:\n%s", caps_str);
|
2009-09-10 10:07:20 +00:00
|
|
|
|
|
|
|
VIR_FREE(caps_str);
|
|
|
|
}
|
|
|
|
|
2008-05-16 16:51:30 +00:00
|
|
|
return caps;
|
|
|
|
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2016-08-04 11:16:55 +00:00
|
|
|
caps->host.cpu = NULL;
|
2013-02-01 12:26:18 +00:00
|
|
|
virObjectUnref(caps);
|
2008-05-16 16:51:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2013-05-17 10:34:24 +00:00
|
|
|
|
|
|
|
|
2016-08-04 11:16:55 +00:00
|
|
|
void
|
2019-11-26 17:51:22 +00:00
|
|
|
qemuTestSetHostArch(virQEMUDriverPtr driver,
|
2016-08-04 11:16:55 +00:00
|
|
|
virArch arch)
|
|
|
|
{
|
|
|
|
if (arch == VIR_ARCH_NONE)
|
|
|
|
arch = VIR_ARCH_X86_64;
|
2019-11-26 17:51:22 +00:00
|
|
|
|
|
|
|
virTestHostArch = arch;
|
|
|
|
driver->hostarch = virArchFromHost();
|
|
|
|
driver->caps->host.arch = virArchFromHost();
|
2019-11-29 10:40:39 +00:00
|
|
|
qemuTestSetHostCPU(driver, arch, NULL);
|
2016-08-04 11:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2019-11-29 10:40:39 +00:00
|
|
|
qemuTestSetHostCPU(virQEMUDriverPtr driver,
|
|
|
|
virArch arch,
|
2016-08-04 11:16:55 +00:00
|
|
|
virCPUDefPtr cpu)
|
|
|
|
{
|
|
|
|
if (!cpu) {
|
|
|
|
if (ARCH_IS_X86(arch))
|
|
|
|
cpu = cpuDefault;
|
2016-09-13 20:27:09 +00:00
|
|
|
else if (ARCH_IS_PPC64(arch))
|
|
|
|
cpu = cpuPower8;
|
2016-08-04 11:16:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 17:16:19 +00:00
|
|
|
g_unsetenv("VIR_TEST_MOCK_FAKE_HOST_CPU");
|
2017-07-21 12:24:51 +00:00
|
|
|
if (cpu) {
|
|
|
|
if (cpu->model)
|
2019-12-18 17:16:19 +00:00
|
|
|
g_setenv("VIR_TEST_MOCK_FAKE_HOST_CPU", cpu->model, TRUE);
|
2017-07-21 12:24:51 +00:00
|
|
|
}
|
2019-11-29 10:40:39 +00:00
|
|
|
if (driver) {
|
|
|
|
if (cpu)
|
|
|
|
driver->caps->host.arch = cpu->arch;
|
|
|
|
driver->caps->host.cpu = cpu;
|
|
|
|
|
|
|
|
virCPUDefFree(driver->hostcpu);
|
|
|
|
if (cpu)
|
|
|
|
virCPUDefRef(cpu);
|
|
|
|
driver->hostcpu = cpu;
|
|
|
|
}
|
2016-08-04 11:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-27 14:39:27 +00:00
|
|
|
virQEMUCapsPtr
|
2018-04-04 07:17:52 +00:00
|
|
|
qemuTestParseCapabilitiesArch(virArch arch,
|
|
|
|
const char *capsFile)
|
2014-06-27 14:39:27 +00:00
|
|
|
{
|
|
|
|
virQEMUCapsPtr qemuCaps = NULL;
|
2020-02-21 07:28:13 +00:00
|
|
|
g_autofree char *binary = g_strdup_printf("/usr/bin/qemu-system-%s",
|
|
|
|
virArchToString(arch));
|
2014-06-27 14:39:27 +00:00
|
|
|
|
2019-12-10 10:23:14 +00:00
|
|
|
if (!(qemuCaps = virQEMUCapsNewBinary(binary)) ||
|
2018-04-04 07:17:52 +00:00
|
|
|
virQEMUCapsLoadCache(arch, qemuCaps, capsFile) < 0)
|
2014-06-27 14:39:27 +00:00
|
|
|
goto error;
|
|
|
|
|
2019-12-10 10:23:14 +00:00
|
|
|
virQEMUCapsSetInvalidation(qemuCaps, false);
|
2014-06-27 14:39:27 +00:00
|
|
|
return qemuCaps;
|
|
|
|
|
|
|
|
error:
|
|
|
|
virObjectUnref(qemuCaps);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-09-15 06:16:02 +00:00
|
|
|
|
2018-04-04 07:17:52 +00:00
|
|
|
|
2015-09-15 06:16:02 +00:00
|
|
|
void qemuTestDriverFree(virQEMUDriver *driver)
|
|
|
|
{
|
2015-09-22 14:12:39 +00:00
|
|
|
virMutexDestroy(&driver->lock);
|
2017-03-06 07:27:23 +00:00
|
|
|
if (driver->config) {
|
|
|
|
virFileDeleteTree(driver->config->stateDir);
|
|
|
|
virFileDeleteTree(driver->config->configDir);
|
|
|
|
}
|
2017-07-19 15:01:56 +00:00
|
|
|
virObjectUnref(driver->qemuCapsCache);
|
2015-09-15 06:16:02 +00:00
|
|
|
virObjectUnref(driver->xmlopt);
|
|
|
|
virObjectUnref(driver->caps);
|
|
|
|
virObjectUnref(driver->config);
|
2016-07-29 16:06:51 +00:00
|
|
|
virObjectUnref(driver->securityManager);
|
2015-09-15 06:16:02 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 15:01:56 +00:00
|
|
|
int qemuTestCapsCacheInsert(virFileCachePtr cache,
|
2015-09-09 14:03:14 +00:00
|
|
|
virQEMUCapsPtr caps)
|
|
|
|
{
|
2019-12-02 12:19:44 +00:00
|
|
|
size_t i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS(qemu_emulators); i++) {
|
|
|
|
virQEMUCapsPtr tmpCaps;
|
|
|
|
if (qemu_emulators[i] == NULL)
|
|
|
|
continue;
|
|
|
|
if (caps) {
|
|
|
|
tmpCaps = virQEMUCapsNewCopy(caps);
|
|
|
|
} else {
|
|
|
|
tmpCaps = virQEMUCapsNew();
|
|
|
|
}
|
2020-01-23 12:23:35 +00:00
|
|
|
|
|
|
|
if (!virQEMUCapsHasMachines(tmpCaps)) {
|
|
|
|
virQEMUCapsSetArch(tmpCaps, i);
|
|
|
|
for (j = 0; qemu_machines[i][j] != NULL; j++) {
|
|
|
|
virQEMUCapsAddMachine(tmpCaps,
|
|
|
|
VIR_DOMAIN_VIRT_QEMU,
|
|
|
|
qemu_machines[i][j],
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
for (j = 0; kvm_machines[i][j] != NULL; j++) {
|
|
|
|
virQEMUCapsAddMachine(tmpCaps,
|
|
|
|
VIR_DOMAIN_VIRT_KVM,
|
|
|
|
kvm_machines[i][j],
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
false);
|
|
|
|
virQEMUCapsSet(tmpCaps, QEMU_CAPS_KVM);
|
|
|
|
}
|
2019-12-02 12:19:44 +00:00
|
|
|
}
|
2020-01-23 12:23:35 +00:00
|
|
|
|
2019-12-02 12:19:44 +00:00
|
|
|
if (virFileCacheInsertData(cache, qemu_emulators[i], tmpCaps) < 0) {
|
2017-04-11 12:02:06 +00:00
|
|
|
virObjectUnref(tmpCaps);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 14:03:14 +00:00
|
|
|
|
2017-04-11 12:02:06 +00:00
|
|
|
return 0;
|
2015-09-09 14:03:14 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 12:02:06 +00:00
|
|
|
|
2017-03-06 07:27:23 +00:00
|
|
|
# define STATEDIRTEMPLATE abs_builddir "/qemustatedir-XXXXXX"
|
|
|
|
# define CONFIGDIRTEMPLATE abs_builddir "/qemuconfigdir-XXXXXX"
|
|
|
|
|
2015-09-15 06:16:02 +00:00
|
|
|
int qemuTestDriverInit(virQEMUDriver *driver)
|
|
|
|
{
|
2016-03-23 15:19:26 +00:00
|
|
|
virSecurityManagerPtr mgr = NULL;
|
2017-03-06 07:27:23 +00:00
|
|
|
char statedir[] = STATEDIRTEMPLATE;
|
|
|
|
char configdir[] = CONFIGDIRTEMPLATE;
|
2016-03-23 15:19:26 +00:00
|
|
|
|
2016-01-18 08:11:19 +00:00
|
|
|
memset(driver, 0, sizeof(*driver));
|
|
|
|
|
2019-11-29 10:40:39 +00:00
|
|
|
if (!(cpuDefault = virCPUDefCopy(&cpuDefaultData)) ||
|
|
|
|
!(cpuHaswell = virCPUDefCopy(&cpuHaswellData)) ||
|
|
|
|
!(cpuPower8 = virCPUDefCopy(&cpuPower8Data)) ||
|
|
|
|
!(cpuPower9 = virCPUDefCopy(&cpuPower9Data)))
|
|
|
|
return -1;
|
|
|
|
|
2015-09-22 14:12:39 +00:00
|
|
|
if (virMutexInit(&driver->lock) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2019-11-26 17:51:22 +00:00
|
|
|
driver->hostarch = virArchFromHost();
|
2020-03-23 08:55:54 +00:00
|
|
|
driver->config = virQEMUDriverConfigNew(false, NULL);
|
2015-09-15 06:16:02 +00:00
|
|
|
if (!driver->config)
|
2015-09-22 14:12:39 +00:00
|
|
|
goto error;
|
2015-09-15 06:16:02 +00:00
|
|
|
|
2017-03-06 07:27:23 +00:00
|
|
|
/* Do this early so that qemuTestDriverFree() doesn't see (unlink) the real
|
|
|
|
* dirs. */
|
|
|
|
VIR_FREE(driver->config->stateDir);
|
|
|
|
VIR_FREE(driver->config->configDir);
|
|
|
|
|
2016-03-15 12:54:24 +00:00
|
|
|
/* Overwrite some default paths so it's consistent for tests. */
|
|
|
|
VIR_FREE(driver->config->libDir);
|
|
|
|
VIR_FREE(driver->config->channelTargetDir);
|
2019-10-20 11:49:46 +00:00
|
|
|
driver->config->libDir = g_strdup("/tmp/lib");
|
|
|
|
driver->config->channelTargetDir = g_strdup("/tmp/channel");
|
2016-03-15 12:54:24 +00:00
|
|
|
|
2019-11-13 21:35:47 +00:00
|
|
|
if (!g_mkdtemp(statedir)) {
|
2020-01-27 12:52:23 +00:00
|
|
|
fprintf(stderr, "Cannot create fake stateDir");
|
2017-03-06 07:27:23 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
driver->config->stateDir = g_strdup(statedir);
|
2017-03-06 07:27:23 +00:00
|
|
|
|
2019-11-13 21:35:47 +00:00
|
|
|
if (!g_mkdtemp(configdir)) {
|
2020-01-27 12:52:23 +00:00
|
|
|
fprintf(stderr, "Cannot create fake configDir");
|
2017-03-06 07:27:23 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
driver->config->configDir = g_strdup(configdir);
|
2017-03-06 07:27:23 +00:00
|
|
|
|
2015-09-15 06:16:02 +00:00
|
|
|
driver->caps = testQemuCapsInit();
|
|
|
|
if (!driver->caps)
|
|
|
|
goto error;
|
|
|
|
|
2015-09-09 14:03:15 +00:00
|
|
|
/* Using /dev/null for libDir and cacheDir automatically produces errors
|
|
|
|
* upon attempt to use any of them */
|
2019-04-12 19:21:05 +00:00
|
|
|
driver->qemuCapsCache = virQEMUCapsCacheNew("/dev/null", "/dev/null", 0, 0);
|
2015-09-09 14:03:15 +00:00
|
|
|
if (!driver->qemuCapsCache)
|
|
|
|
goto error;
|
|
|
|
|
2019-11-26 18:57:30 +00:00
|
|
|
driver->xmlopt = virQEMUDriverCreateXMLConf(driver, "none");
|
2015-09-15 06:16:02 +00:00
|
|
|
if (!driver->xmlopt)
|
|
|
|
goto error;
|
|
|
|
|
2017-04-11 12:02:06 +00:00
|
|
|
if (qemuTestCapsCacheInsert(driver->qemuCapsCache, NULL) < 0)
|
2015-09-09 14:03:15 +00:00
|
|
|
goto error;
|
|
|
|
|
2018-10-02 13:08:28 +00:00
|
|
|
if (!(mgr = virSecurityManagerNew("none", "qemu",
|
2016-03-23 15:19:26 +00:00
|
|
|
VIR_SECURITY_MANAGER_PRIVILEGED)))
|
|
|
|
goto error;
|
|
|
|
if (!(driver->securityManager = virSecurityManagerNewStack(mgr)))
|
|
|
|
goto error;
|
|
|
|
|
2019-11-29 10:40:39 +00:00
|
|
|
qemuTestSetHostCPU(driver, driver->hostarch, NULL);
|
|
|
|
|
2015-09-15 06:16:02 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
2016-03-23 15:19:26 +00:00
|
|
|
virObjectUnref(mgr);
|
2015-09-15 06:16:02 +00:00
|
|
|
qemuTestDriverFree(driver);
|
|
|
|
return -1;
|
|
|
|
}
|
2015-09-09 14:03:14 +00:00
|
|
|
|
2016-05-10 09:35:43 +00:00
|
|
|
int
|
|
|
|
testQemuCapsSetGIC(virQEMUCapsPtr qemuCaps,
|
|
|
|
int gic)
|
|
|
|
{
|
|
|
|
virGICCapability *gicCapabilities = NULL;
|
|
|
|
size_t ngicCapabilities = 0;
|
|
|
|
|
|
|
|
if (VIR_ALLOC_N(gicCapabilities, 2) < 0)
|
2020-01-06 21:57:49 +00:00
|
|
|
return -1;
|
2016-05-10 09:35:43 +00:00
|
|
|
|
|
|
|
# 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);
|
|
|
|
|
2020-01-06 21:57:49 +00:00
|
|
|
return 0;
|
2016-05-10 09:35:43 +00:00
|
|
|
}
|
|
|
|
|
2008-06-26 09:37:51 +00:00
|
|
|
#endif
|
2018-04-18 08:47:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
char *
|
2019-04-16 10:26:22 +00:00
|
|
|
testQemuGetLatestCapsForArch(const char *arch,
|
2018-04-18 08:47:31 +00:00
|
|
|
const char *suffix)
|
|
|
|
{
|
|
|
|
struct dirent *ent;
|
|
|
|
DIR *dir = NULL;
|
|
|
|
int rc;
|
|
|
|
char *fullsuffix = NULL;
|
|
|
|
char *tmp = NULL;
|
|
|
|
unsigned long maxver = 0;
|
|
|
|
unsigned long ver;
|
2020-02-07 14:51:26 +00:00
|
|
|
g_autofree char *maxname = NULL;
|
2018-04-18 08:47:31 +00:00
|
|
|
char *ret = NULL;
|
|
|
|
|
2019-10-22 13:26:14 +00:00
|
|
|
fullsuffix = g_strdup_printf("%s.%s", arch, suffix);
|
2018-04-18 08:47:31 +00:00
|
|
|
|
2019-04-16 10:26:22 +00:00
|
|
|
if (virDirOpen(&dir, TEST_QEMU_CAPS_PATH) < 0)
|
2018-04-18 08:47:31 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2019-04-16 10:26:22 +00:00
|
|
|
while ((rc = virDirRead(dir, &ent, TEST_QEMU_CAPS_PATH)) > 0) {
|
2018-04-18 08:47:31 +00:00
|
|
|
VIR_FREE(tmp);
|
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
tmp = g_strdup(STRSKIP(ent->d_name, "caps_"));
|
2018-04-18 08:47:31 +00:00
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
if (!tmp)
|
2018-04-18 08:47:31 +00:00
|
|
|
continue;
|
|
|
|
|
2019-03-07 09:18:38 +00:00
|
|
|
if (!virStringStripSuffix(tmp, fullsuffix))
|
2018-04-18 08:47:31 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (virParseVersionString(tmp, &ver, false) < 0) {
|
2019-05-03 08:31:02 +00:00
|
|
|
VIR_TEST_DEBUG("skipping caps file '%s'", ent->d_name);
|
2018-04-18 08:47:31 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ver > maxver) {
|
2020-02-07 14:51:26 +00:00
|
|
|
g_free(maxname);
|
|
|
|
maxname = g_strdup(ent->d_name);
|
2018-04-18 08:47:31 +00:00
|
|
|
maxver = ver;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rc < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (!maxname) {
|
2019-05-03 08:45:58 +00:00
|
|
|
VIR_TEST_VERBOSE("failed to find capabilities for '%s' in '%s'",
|
2019-04-16 10:26:22 +00:00
|
|
|
arch, TEST_QEMU_CAPS_PATH);
|
2018-04-18 08:47:31 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2019-10-22 13:26:14 +00:00
|
|
|
ret = g_strdup_printf("%s/%s", TEST_QEMU_CAPS_PATH, maxname);
|
2018-04-18 08:47:31 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
VIR_FREE(tmp);
|
|
|
|
VIR_FREE(fullsuffix);
|
|
|
|
virDirClose(&dir);
|
|
|
|
return ret;
|
|
|
|
}
|
2019-03-07 14:54:55 +00:00
|
|
|
|
|
|
|
|
2019-03-31 16:43:44 +00:00
|
|
|
virHashTablePtr
|
|
|
|
testQemuGetLatestCaps(void)
|
|
|
|
{
|
|
|
|
const char *archs[] = {
|
|
|
|
"aarch64",
|
|
|
|
"ppc64",
|
|
|
|
"riscv64",
|
|
|
|
"s390x",
|
|
|
|
"x86_64",
|
|
|
|
};
|
|
|
|
virHashTablePtr capslatest;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (!(capslatest = virHashCreate(4, virHashValueFree)))
|
|
|
|
goto error;
|
|
|
|
|
2019-05-03 08:45:58 +00:00
|
|
|
VIR_TEST_VERBOSE("");
|
2019-03-31 16:43:44 +00:00
|
|
|
|
2019-10-15 11:55:26 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS(archs); ++i) {
|
2019-04-16 10:26:22 +00:00
|
|
|
char *cap = testQemuGetLatestCapsForArch(archs[i], "xml");
|
2019-03-31 16:43:44 +00:00
|
|
|
|
|
|
|
if (!cap || virHashAddEntry(capslatest, archs[i], cap) < 0)
|
|
|
|
goto error;
|
|
|
|
|
2019-05-03 08:45:58 +00:00
|
|
|
VIR_TEST_VERBOSE("latest caps for %s: %s", archs[i], cap);
|
2019-03-31 16:43:44 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 08:45:58 +00:00
|
|
|
VIR_TEST_VERBOSE("");
|
|
|
|
|
2019-03-31 16:43:44 +00:00
|
|
|
return capslatest;
|
|
|
|
|
|
|
|
error:
|
|
|
|
virHashFree(capslatest);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-07 14:54:55 +00:00
|
|
|
int
|
2019-04-16 10:33:14 +00:00
|
|
|
testQemuCapsIterate(const char *suffix,
|
2019-03-07 14:54:55 +00:00
|
|
|
testQemuCapsIterateCallback callback,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
struct dirent *ent;
|
|
|
|
DIR *dir = NULL;
|
|
|
|
int rc;
|
|
|
|
int ret = -1;
|
2019-10-25 11:59:46 +00:00
|
|
|
bool fail = false;
|
2019-03-07 14:54:55 +00:00
|
|
|
|
|
|
|
if (!callback)
|
|
|
|
return 0;
|
|
|
|
|
2019-10-22 16:34:03 +00:00
|
|
|
/* Validate suffix */
|
|
|
|
if (!STRPREFIX(suffix, ".")) {
|
|
|
|
VIR_TEST_VERBOSE("malformed suffix '%s'", suffix);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2019-04-16 10:33:14 +00:00
|
|
|
if (virDirOpen(&dir, TEST_QEMU_CAPS_PATH) < 0)
|
2019-03-07 14:54:55 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2019-06-04 18:56:58 +00:00
|
|
|
while ((rc = virDirRead(dir, &ent, TEST_QEMU_CAPS_PATH)) > 0) {
|
2019-10-22 16:31:09 +00:00
|
|
|
g_autofree char *tmp = g_strdup(ent->d_name);
|
2019-10-22 14:08:10 +00:00
|
|
|
char *version = NULL;
|
2019-03-07 14:54:55 +00:00
|
|
|
char *archName = NULL;
|
|
|
|
|
|
|
|
/* Strip the trailing suffix, moving on if it's not present */
|
|
|
|
if (!virStringStripSuffix(tmp, suffix))
|
|
|
|
continue;
|
|
|
|
|
2019-10-22 14:08:10 +00:00
|
|
|
/* Strip the leading prefix */
|
|
|
|
if (!(version = STRSKIP(tmp, "caps_"))) {
|
|
|
|
VIR_TEST_VERBOSE("malformed file name '%s'", ent->d_name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2019-10-22 16:31:09 +00:00
|
|
|
/* Find the last dot */
|
|
|
|
if (!(archName = strrchr(tmp, '.'))) {
|
|
|
|
VIR_TEST_VERBOSE("malformed file name '%s'", ent->d_name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2019-03-07 14:54:55 +00:00
|
|
|
|
2019-10-22 14:08:10 +00:00
|
|
|
/* The version number and the architecture name are separated by
|
|
|
|
* a dot: overwriting that dot with \0 results in both being usable
|
|
|
|
* as independent, null-terminated strings */
|
2019-03-07 14:54:55 +00:00
|
|
|
archName[0] = '\0';
|
|
|
|
archName++;
|
|
|
|
|
2019-10-22 13:44:37 +00:00
|
|
|
/* Run the user-provided callback.
|
|
|
|
*
|
|
|
|
* We skip the dot that, as verified earlier, starts the suffix
|
|
|
|
* to make it nicer to rebuild the original file name from inside
|
|
|
|
* the callback.
|
|
|
|
*/
|
2019-10-22 14:08:10 +00:00
|
|
|
if (callback(TEST_QEMU_CAPS_PATH, "caps", version,
|
2019-10-25 11:59:46 +00:00
|
|
|
archName, suffix + 1, opaque) < 0)
|
|
|
|
fail = true;
|
2019-03-07 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2019-10-25 11:59:46 +00:00
|
|
|
if (rc < 0 || fail)
|
2019-03-07 14:54:55 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virDirClose(&dir);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2019-03-31 15:49:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
testQemuInfoSetArgs(struct testQemuInfo *info,
|
|
|
|
virHashTablePtr capslatest, ...)
|
|
|
|
{
|
|
|
|
va_list argptr;
|
|
|
|
testQemuInfoArgName argname;
|
|
|
|
virQEMUCapsPtr qemuCaps = NULL;
|
|
|
|
int gic = GIC_NONE;
|
|
|
|
char *capsarch = NULL;
|
|
|
|
char *capsver = NULL;
|
2019-10-15 13:16:31 +00:00
|
|
|
g_autofree char *capsfile = NULL;
|
2019-03-31 15:49:34 +00:00
|
|
|
int flag;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
va_start(argptr, capslatest);
|
|
|
|
argname = va_arg(argptr, testQemuInfoArgName);
|
|
|
|
while (argname != ARG_END) {
|
|
|
|
switch (argname) {
|
|
|
|
case ARG_QEMU_CAPS:
|
|
|
|
if (qemuCaps || !(qemuCaps = virQEMUCapsNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
while ((flag = va_arg(argptr, int)) < QEMU_CAPS_LAST)
|
|
|
|
virQEMUCapsSet(qemuCaps, flag);
|
|
|
|
|
|
|
|
/* Some tests are run with NONE capabilities, which is just
|
|
|
|
* another name for QEMU_CAPS_LAST. If that is the case the
|
|
|
|
* arguments look like this :
|
|
|
|
*
|
|
|
|
* ARG_QEMU_CAPS, NONE, QEMU_CAPS_LAST, ARG_END
|
|
|
|
*
|
|
|
|
* Fetch one argument more and if it is QEMU_CAPS_LAST then
|
|
|
|
* break from the switch() to force getting next argument
|
|
|
|
* in the line. If it is not QEMU_CAPS_LAST then we've
|
|
|
|
* fetched real ARG_* and we must process it.
|
|
|
|
*/
|
|
|
|
if ((flag = va_arg(argptr, int)) != QEMU_CAPS_LAST) {
|
|
|
|
argname = flag;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_GIC:
|
|
|
|
gic = va_arg(argptr, int);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_MIGRATE_FROM:
|
|
|
|
info->migrateFrom = va_arg(argptr, char *);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_MIGRATE_FD:
|
|
|
|
info->migrateFd = va_arg(argptr, int);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_FLAGS:
|
|
|
|
info->flags = va_arg(argptr, int);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_PARSEFLAGS:
|
|
|
|
info->parseFlags = va_arg(argptr, int);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_CAPS_ARCH:
|
|
|
|
capsarch = va_arg(argptr, char *);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_CAPS_VER:
|
|
|
|
capsver = va_arg(argptr, char *);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARG_END:
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Unexpected test info argument");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
argname = va_arg(argptr, testQemuInfoArgName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!!capsarch ^ !!capsver) {
|
|
|
|
fprintf(stderr, "ARG_CAPS_ARCH and ARG_CAPS_VER "
|
|
|
|
"must be specified together.\n");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qemuCaps && (capsarch || capsver)) {
|
|
|
|
fprintf(stderr, "ARG_QEMU_CAPS can not be combined with ARG_CAPS_ARCH "
|
|
|
|
"or ARG_CAPS_VER\n");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!qemuCaps && capsarch && capsver) {
|
|
|
|
bool stripmachinealiases = false;
|
|
|
|
|
2019-10-24 15:51:42 +00:00
|
|
|
info->arch = virArchFromString(capsarch);
|
|
|
|
|
2019-03-31 15:49:34 +00:00
|
|
|
if (STREQ(capsver, "latest")) {
|
2019-10-20 11:49:46 +00:00
|
|
|
capsfile = g_strdup(virHashLookup(capslatest, capsarch));
|
2019-03-31 15:49:34 +00:00
|
|
|
stripmachinealiases = true;
|
2019-10-22 13:26:14 +00:00
|
|
|
} else capsfile = g_strdup_printf("%s/caps_%s.%s.xml",
|
|
|
|
TEST_QEMU_CAPS_PATH, capsver, capsarch);
|
2019-03-31 15:49:34 +00:00
|
|
|
|
2019-10-24 15:51:42 +00:00
|
|
|
if (!(qemuCaps = qemuTestParseCapabilitiesArch(info->arch, capsfile)))
|
2019-03-31 15:49:34 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (stripmachinealiases)
|
|
|
|
virQEMUCapsStripMachineAliases(qemuCaps);
|
|
|
|
info->flags |= FLAG_REAL_CAPS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!qemuCaps) {
|
|
|
|
fprintf(stderr, "No qemuCaps generated\n");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2019-10-16 11:45:15 +00:00
|
|
|
info->qemuCaps = g_steal_pointer(&qemuCaps);
|
2019-03-31 15:49:34 +00:00
|
|
|
|
|
|
|
if (gic != GIC_NONE && testQemuCapsSetGIC(info->qemuCaps, gic) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(qemuCaps);
|
|
|
|
va_end(argptr);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
testQemuInfoClear(struct testQemuInfo *info)
|
|
|
|
{
|
|
|
|
VIR_FREE(info->infile);
|
|
|
|
VIR_FREE(info->outfile);
|
|
|
|
virObjectUnref(info->qemuCaps);
|
|
|
|
}
|