2008-01-29 18:15:54 +00:00
|
|
|
#include <config.h>
|
2007-11-26 12:03:34 +00:00
|
|
|
|
2007-07-18 21:34:22 +00:00
|
|
|
#include <stdio.h>
|
2007-11-26 12:03:34 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2007-07-18 21:34:22 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2007-11-26 12:03:34 +00:00
|
|
|
#ifdef WITH_QEMU
|
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
|
|
|
# include "testutils.h"
|
2010-12-17 16:41:51 +00:00
|
|
|
# include "qemu/qemu_capabilities.h"
|
|
|
|
# include "qemu/qemu_command.h"
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "datatypes.h"
|
2010-04-16 06:21:23 +00:00
|
|
|
# include "cpu/cpu_map.h"
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "testutilsqemu.h"
|
2008-05-16 16:51:30 +00:00
|
|
|
|
2007-07-18 21:34:22 +00:00
|
|
|
static char *progname;
|
2008-04-25 20:46:13 +00:00
|
|
|
static char *abs_srcdir;
|
2010-04-16 06:21:23 +00:00
|
|
|
static const char *abs_top_srcdir;
|
2008-01-14 14:04:33 +00:00
|
|
|
static struct qemud_driver driver;
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define MAX_FILE 4096
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2008-10-10 16:52:20 +00:00
|
|
|
static int testCompareXMLToArgvFiles(const char *xml,
|
2010-11-22 23:09:13 +00:00
|
|
|
const char *cmdline,
|
2011-02-08 14:22:39 +00:00
|
|
|
virBitmapPtr extraFlags,
|
2010-10-22 16:50:34 +00:00
|
|
|
const char *migrateFrom,
|
2010-12-22 22:13:29 +00:00
|
|
|
int migrateFd,
|
2010-10-22 16:50:34 +00:00
|
|
|
bool expectError) {
|
2007-07-18 21:34:22 +00:00
|
|
|
char argvData[MAX_FILE];
|
|
|
|
char *expectargv = &(argvData[0]);
|
2010-11-22 23:09:13 +00:00
|
|
|
int len;
|
2007-07-18 21:34:22 +00:00
|
|
|
char *actualargv = NULL;
|
2010-11-22 23:09:13 +00:00
|
|
|
int ret = -1;
|
2008-07-11 19:34:11 +00:00
|
|
|
virDomainDefPtr vmdef = NULL;
|
2011-01-07 23:36:25 +00:00
|
|
|
virDomainChrSourceDef monitor_chr;
|
2010-02-10 13:19:17 +00:00
|
|
|
virConnectPtr conn;
|
2010-10-22 16:50:34 +00:00
|
|
|
char *log = NULL;
|
2010-04-16 06:20:33 +00:00
|
|
|
char *emulator = NULL;
|
2010-11-22 23:09:13 +00:00
|
|
|
virCommandPtr cmd = NULL;
|
2010-02-10 13:19:17 +00:00
|
|
|
|
|
|
|
if (!(conn = virGetConnect()))
|
|
|
|
goto fail;
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2010-11-22 23:09:13 +00:00
|
|
|
len = virtTestLoadFile(cmdline, &expectargv, MAX_FILE);
|
|
|
|
if (len < 0)
|
2007-07-18 21:34:22 +00:00
|
|
|
goto fail;
|
2010-11-22 23:09:13 +00:00
|
|
|
if (len && expectargv[len - 1] == '\n')
|
|
|
|
expectargv[len - 1] = '\0';
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2010-02-09 18:58:01 +00:00
|
|
|
if (!(vmdef = virDomainDefParseFile(driver.caps, xml,
|
2008-12-04 12:02:59 +00:00
|
|
|
VIR_DOMAIN_XML_INACTIVE)))
|
2007-07-18 21:34:22 +00:00
|
|
|
goto fail;
|
|
|
|
|
2010-04-16 06:20:33 +00:00
|
|
|
/*
|
|
|
|
* For test purposes, we may want to fake emulator's output by providing
|
|
|
|
* our own script instead of a real emulator. For this to work we need to
|
|
|
|
* specify a relative path in <emulator/> element, which, however, is not
|
|
|
|
* allowed by RelaxNG schema for domain XML. To work around it we add an
|
|
|
|
* extra '/' at the beginning of relative emulator path so that it looks
|
|
|
|
* like, e.g., "/./qemu.sh" or "/../emulator/qemu.sh" instead of
|
|
|
|
* "./qemu.sh" or "../emulator/qemu.sh" respectively. The following code
|
|
|
|
* detects such paths, strips the extra '/' and makes the path absolute.
|
|
|
|
*/
|
|
|
|
if (vmdef->emulator && STRPREFIX(vmdef->emulator, "/.")) {
|
|
|
|
if (!(emulator = strdup(vmdef->emulator + 1)))
|
|
|
|
goto fail;
|
|
|
|
free(vmdef->emulator);
|
|
|
|
vmdef->emulator = NULL;
|
|
|
|
if (virAsprintf(&vmdef->emulator, "%s/qemuxml2argvdata/%s",
|
|
|
|
abs_srcdir, emulator) < 0)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2011-02-08 14:08:12 +00:00
|
|
|
if (qemuCapsGet(extraFlags, QEMU_CAPS_DOMID))
|
2009-04-19 14:50:01 +00:00
|
|
|
vmdef->id = 6;
|
2008-11-04 22:15:30 +00:00
|
|
|
else
|
2009-04-19 14:50:01 +00:00
|
|
|
vmdef->id = -1;
|
2007-09-21 21:20:32 +00:00
|
|
|
|
Convert character devices over to use -device
The current character device syntax uses either
-serial tty,path=/dev/ttyS2
Or
-chardev tty,id=serial0,path=/dev/ttyS2 -serial chardev:serial0
With the new -device support, we now prefer
-chardev file,id=serial0,path=/tmp/serial.log -device isa-serial,chardev=serial0
This patch changes the existing -chardev syntax to use this new
scheme, and fallbacks to the old plain -serial syntax for old
QEMU.
The monitor device changes to
-chardev socket,id=monitor,path=/tmp/test-monitor,server,nowait -mon chardev=monitor
In addition, this patch adds --nodefaults, which kills off the
default serial, parallel, vga and nic devices. THis avoids the
need for us to explicitly turn each off
2009-12-14 18:04:35 +00:00
|
|
|
memset(&monitor_chr, 0, sizeof(monitor_chr));
|
2011-01-07 23:36:25 +00:00
|
|
|
monitor_chr.type = VIR_DOMAIN_CHR_TYPE_UNIX;
|
|
|
|
monitor_chr.data.nix.path = (char *)"/tmp/test-monitor";
|
|
|
|
monitor_chr.data.nix.listen = true;
|
2009-07-09 17:06:38 +00:00
|
|
|
|
2011-02-08 14:22:39 +00:00
|
|
|
qemuCapsSetList(extraFlags,
|
|
|
|
QEMU_CAPS_VNC_COLON,
|
|
|
|
QEMU_CAPS_NO_REBOOT,
|
|
|
|
QEMU_CAPS_LAST);
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2009-09-10 10:09:06 +00:00
|
|
|
if (qemudCanonicalizeMachine(&driver, vmdef) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
2011-02-08 14:22:39 +00:00
|
|
|
if (qemuCapsGet(extraFlags, QEMU_CAPS_DEVICE)) {
|
2010-01-27 17:03:54 +00:00
|
|
|
qemuDomainPCIAddressSetPtr pciaddrs;
|
|
|
|
if (!(pciaddrs = qemuDomainPCIAddressSetCreate(vmdef)))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (qemuAssignDevicePCISlots(vmdef, pciaddrs) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
qemuDomainPCIAddressSetFree(pciaddrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-22 16:50:34 +00:00
|
|
|
free(virtTestLogContentAndReset());
|
2010-11-29 13:11:53 +00:00
|
|
|
virResetLastError();
|
2010-10-22 16:50:34 +00:00
|
|
|
|
2011-02-10 02:19:38 +00:00
|
|
|
/* We do not call qemuCapsExtractVersionInfo() before calling
|
2011-02-07 14:54:08 +00:00
|
|
|
* qemuBuildCommandLine(), so we should set QEMU_CAPS_PCI_MULTIBUS for
|
2011-02-10 02:19:38 +00:00
|
|
|
* x86_64 and i686 architectures here.
|
|
|
|
*/
|
|
|
|
if (STREQLEN(vmdef->os.arch, "x86_64", 6) ||
|
|
|
|
STREQLEN(vmdef->os.arch, "i686", 4)) {
|
2011-02-08 14:22:39 +00:00
|
|
|
qemuCapsSet(extraFlags, QEMU_CAPS_PCI_MULTIBUS);
|
2011-02-10 02:19:38 +00:00
|
|
|
}
|
|
|
|
|
2010-12-17 16:41:51 +00:00
|
|
|
if (!(cmd = qemuBuildCommandLine(conn, &driver,
|
2011-02-08 14:22:39 +00:00
|
|
|
vmdef, &monitor_chr, false, extraFlags,
|
2010-12-22 22:13:29 +00:00
|
|
|
migrateFrom, migrateFd, NULL,
|
qemu: fix restoring a compressed save image
Latent bug introduced in commit 2d6a581960 (Aug 2009), but not exposed
until commit 1859939a (Jan 2011). Basically, when virExec creates a
pipe, it always marks libvirt's side as cloexec. If libvirt then
wants to hand that pipe to another child process, things work great if
the fd is dup2()'d onto stdin or stdout (as with stdin: or exec:
migration), but if the pipe is instead used as-is (such as with fd:
migration) then qemu sees EBADF because the fd was closed at exec().
This is a minimal fix for the problem at hand; it is slightly racy,
but no more racy than the rest of libvirt fd handling, including the
case of uncompressed save images. A more invasive fix, but ultimately
safer at avoiding leaking unintended fds, would be to _always and
atomically_ open all fds as cloexec in libvirt (thanks to primitives
like open(O_CLOEXEC), pipe2(), accept4(), ...), then teach virExec to
clear that bit for all fds explicitly marked to be handed to the child
only after forking.
* src/qemu/qemu_command.c (qemuBuildCommandLine): Clear cloexec
flag.
* tests/qemuxml2argvtest.c (testCompareXMLToArgvFiles): Tweak test.
2011-03-26 11:27:57 +00:00
|
|
|
VIR_VM_OP_NO_OP)))
|
2007-07-18 21:34:22 +00:00
|
|
|
goto fail;
|
|
|
|
|
2010-11-29 13:11:53 +00:00
|
|
|
if (!!virGetLastError() != expectError) {
|
|
|
|
if (virTestGetDebug() && (log = virtTestLogContentAndReset()))
|
2010-10-22 16:50:34 +00:00
|
|
|
fprintf(stderr, "\n%s", log);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (expectError) {
|
|
|
|
/* need to suppress the errors */
|
|
|
|
virResetLastError();
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:09:13 +00:00
|
|
|
if (!(actualargv = virCommandToString(cmd)))
|
2010-02-16 08:36:57 +00:00
|
|
|
goto fail;
|
2010-11-22 23:09:13 +00:00
|
|
|
|
|
|
|
if (emulator) {
|
|
|
|
/* Skip the abs_srcdir portion of replacement emulator. */
|
|
|
|
char *start_skip = strstr(actualargv, abs_srcdir);
|
|
|
|
char *end_skip = strstr(actualargv, emulator);
|
|
|
|
if (!start_skip || !end_skip)
|
|
|
|
goto fail;
|
|
|
|
memmove(start_skip, end_skip, strlen(end_skip) + 1);
|
2007-07-18 21:34:22 +00:00
|
|
|
}
|
|
|
|
|
2008-04-25 20:46:13 +00:00
|
|
|
if (STRNEQ(expectargv, actualargv)) {
|
|
|
|
virtTestDifference(stderr, expectargv, actualargv);
|
2007-07-18 21:34:22 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
fail:
|
2010-10-22 16:50:34 +00:00
|
|
|
free(log);
|
2010-04-16 06:20:33 +00:00
|
|
|
free(emulator);
|
2007-07-18 21:34:22 +00:00
|
|
|
free(actualargv);
|
2010-11-22 23:09:13 +00:00
|
|
|
virCommandFree(cmd);
|
2008-07-11 19:34:11 +00:00
|
|
|
virDomainDefFree(vmdef);
|
2010-02-10 13:19:17 +00:00
|
|
|
virUnrefConnect(conn);
|
2007-07-18 21:34:22 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-09 16:41:19 +00:00
|
|
|
struct testInfo {
|
|
|
|
const char *name;
|
2011-02-08 14:22:39 +00:00
|
|
|
virBitmapPtr extraFlags;
|
2009-01-29 17:27:54 +00:00
|
|
|
const char *migrateFrom;
|
2010-12-22 22:13:29 +00:00
|
|
|
int migrateFd;
|
2010-10-22 16:50:34 +00:00
|
|
|
bool expectError;
|
2008-05-09 16:41:19 +00:00
|
|
|
};
|
|
|
|
|
2007-07-18 21:34:22 +00:00
|
|
|
static int testCompareXMLToArgvHelper(const void *data) {
|
2008-05-09 16:41:19 +00:00
|
|
|
const struct testInfo *info = data;
|
2007-07-18 21:34:22 +00:00
|
|
|
char xml[PATH_MAX];
|
|
|
|
char args[PATH_MAX];
|
2008-04-25 20:46:13 +00:00
|
|
|
snprintf(xml, PATH_MAX, "%s/qemuxml2argvdata/qemuxml2argv-%s.xml",
|
2008-05-09 16:41:19 +00:00
|
|
|
abs_srcdir, info->name);
|
2008-04-25 20:46:13 +00:00
|
|
|
snprintf(args, PATH_MAX, "%s/qemuxml2argvdata/qemuxml2argv-%s.args",
|
2008-05-09 16:41:19 +00:00
|
|
|
abs_srcdir, info->name);
|
2010-10-22 16:50:34 +00:00
|
|
|
return testCompareXMLToArgvFiles(xml, args, info->extraFlags,
|
2010-12-22 22:13:29 +00:00
|
|
|
info->migrateFrom, info->migrateFd,
|
|
|
|
info->expectError);
|
2007-07-18 21:34:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
static int
|
|
|
|
mymain(int argc, char **argv)
|
2007-07-18 21:34:22 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2008-04-25 20:46:13 +00:00
|
|
|
char cwd[PATH_MAX];
|
2010-04-16 06:21:23 +00:00
|
|
|
char map[PATH_MAX];
|
2007-07-18 21:34:22 +00:00
|
|
|
|
|
|
|
progname = argv[0];
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
fprintf(stderr, "Usage: %s\n", progname);
|
2008-05-29 15:31:49 +00:00
|
|
|
return (EXIT_FAILURE);
|
2007-07-18 21:34:22 +00:00
|
|
|
}
|
|
|
|
|
2008-04-25 20:46:13 +00:00
|
|
|
abs_srcdir = getenv("abs_srcdir");
|
|
|
|
if (!abs_srcdir)
|
|
|
|
abs_srcdir = getcwd(cwd, sizeof(cwd));
|
2007-11-14 10:35:58 +00:00
|
|
|
|
2010-04-16 06:21:23 +00:00
|
|
|
abs_top_srcdir = getenv("abs_top_srcdir");
|
|
|
|
if (!abs_top_srcdir)
|
|
|
|
abs_top_srcdir = "..";
|
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
if ((driver.caps = testQemuCapsInit()) == NULL)
|
|
|
|
return EXIT_FAILURE;
|
Support configuration of huge pages in guests
Add option to domain XML for
<memoryBacking>
<hugepages/>
</memoryBacking>
* configure.in: Add check for mntent.h
* qemud/libvirtd_qemu.aug, qemud/test_libvirtd_qemu.aug, src/qemu.conf
Add 'hugetlbfs_mount' config parameter
* src/qemu_conf.c, src/qemu_conf.h: Check for -mem-path flag in QEMU,
and pass it when hugepages are requested.
Load hugetlbfs_mount config parameter, search for mount if not given.
* src/qemu_driver.c: Free hugetlbfs_mount/path parameter in driver shutdown.
Create directory for QEMU hugepage usage, chowning if required.
* docs/formatdomain.html.in: Document memoryBacking/hugepages elements
* docs/schemas/domain.rng: Add memoryBacking/hugepages elements to schema
* src/util.c, src/util.h, src/libvirt_private.syms: Add virFileFindMountPoint
helper API
* tests/qemuhelptest.c: Add -mem-path constants
* tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c: Add tests for hugepage
handling
* tests/qemuxml2argvdata/qemuxml2argv-hugepages.xml,
tests/qemuxml2argvdata/qemuxml2argv-hugepages.args: Data files for
hugepage tests
2009-08-25 14:05:18 +00:00
|
|
|
if ((driver.stateDir = strdup("/nowhere")) == NULL)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
if ((driver.hugetlbfs_mount = strdup("/dev/hugepages")) == NULL)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
if ((driver.hugepage_path = strdup("/dev/hugepages/libvirt/qemu")) == NULL)
|
2008-12-18 15:22:49 +00:00
|
|
|
return EXIT_FAILURE;
|
2010-03-05 20:31:50 +00:00
|
|
|
driver.spiceTLS = 1;
|
|
|
|
if (!(driver.spiceTLSx509certdir = strdup("/etc/pki/libvirt-spice")))
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
if (!(driver.spicePassword = strdup("123456")))
|
|
|
|
return EXIT_FAILURE;
|
2008-02-27 04:35:08 +00:00
|
|
|
|
2010-04-16 06:21:23 +00:00
|
|
|
snprintf(map, PATH_MAX, "%s/src/cpu/cpu_map.xml", abs_top_srcdir);
|
|
|
|
if (cpuMapOverride(map) < 0)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2011-02-08 14:22:39 +00:00
|
|
|
# define DO_TEST_FULL(name, migrateFrom, migrateFd, expectError, ...) \
|
2008-05-09 16:41:19 +00:00
|
|
|
do { \
|
2011-02-08 14:22:39 +00:00
|
|
|
struct testInfo info = { \
|
|
|
|
name, NULL, migrateFrom, migrateFd, expectError \
|
2010-10-22 16:50:34 +00:00
|
|
|
}; \
|
2011-02-08 14:22:39 +00:00
|
|
|
if (!(info.extraFlags = qemuCapsNew())) \
|
|
|
|
return EXIT_FAILURE; \
|
|
|
|
qemuCapsSetList(info.extraFlags, __VA_ARGS__, QEMU_CAPS_LAST); \
|
2008-05-09 16:41:19 +00:00
|
|
|
if (virtTestRun("QEMU XML-2-ARGV " name, \
|
|
|
|
1, testCompareXMLToArgvHelper, &info) < 0) \
|
|
|
|
ret = -1; \
|
2011-02-08 14:22:39 +00:00
|
|
|
qemuCapsFree(info.extraFlags); \
|
2008-05-09 16:41:19 +00:00
|
|
|
} while (0)
|
|
|
|
|
2011-02-08 14:22:39 +00:00
|
|
|
# define DO_TEST(name, expectError, ...) \
|
|
|
|
DO_TEST_FULL(name, NULL, -1, expectError, __VA_ARGS__)
|
|
|
|
|
|
|
|
# define NONE QEMU_CAPS_LAST
|
2009-01-29 17:27:54 +00:00
|
|
|
|
2009-12-28 15:21:15 +00:00
|
|
|
/* Unset or set all envvars here that are copied in qemudBuildCommandLine
|
|
|
|
* using ADD_ENV_COPY, otherwise these tests may fail due to unexpected
|
|
|
|
* values for these envvars */
|
2008-10-10 16:52:20 +00:00
|
|
|
setenv("PATH", "/bin", 1);
|
|
|
|
setenv("USER", "test", 1);
|
|
|
|
setenv("LOGNAME", "test", 1);
|
|
|
|
setenv("HOME", "/home/test", 1);
|
|
|
|
unsetenv("TMPDIR");
|
|
|
|
unsetenv("LD_PRELOAD");
|
|
|
|
unsetenv("LD_LIBRARY_PATH");
|
2009-12-28 15:21:15 +00:00
|
|
|
unsetenv("QEMU_AUDIO_DRV");
|
|
|
|
unsetenv("SDL_AUDIODRIVER");
|
2008-10-10 16:52:20 +00:00
|
|
|
|
2011-02-08 14:22:39 +00:00
|
|
|
DO_TEST("minimal", false, QEMU_CAPS_NAME);
|
|
|
|
DO_TEST("machine-aliases1", false, NONE);
|
|
|
|
DO_TEST("machine-aliases2", true, NONE);
|
|
|
|
DO_TEST("boot-cdrom", false, NONE);
|
|
|
|
DO_TEST("boot-network", false, NONE);
|
|
|
|
DO_TEST("boot-floppy", false, NONE);
|
|
|
|
DO_TEST("boot-multi", false, QEMU_CAPS_BOOT_MENU);
|
|
|
|
DO_TEST("boot-menu-disable", false, QEMU_CAPS_BOOT_MENU);
|
|
|
|
DO_TEST("boot-order", false,
|
|
|
|
QEMU_CAPS_BOOTINDEX, QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE);
|
|
|
|
DO_TEST("bootloader", true, QEMU_CAPS_DOMID);
|
|
|
|
DO_TEST("clock-utc", false, NONE);
|
|
|
|
DO_TEST("clock-localtime", false, NONE);
|
2010-02-02 18:07:12 +00:00
|
|
|
/*
|
|
|
|
* Can't be enabled since the absolute timestamp changes every time
|
2011-02-08 14:22:39 +00:00
|
|
|
DO_TEST("clock-variable", false, QEMU_CAPS_RTC);
|
2010-02-02 18:07:12 +00:00
|
|
|
*/
|
2011-02-08 14:22:39 +00:00
|
|
|
DO_TEST("clock-france", false, QEMU_CAPS_RTC);
|
|
|
|
|
|
|
|
DO_TEST("hugepages", false, QEMU_CAPS_MEM_PATH);
|
|
|
|
DO_TEST("disk-cdrom", false, NONE);
|
|
|
|
DO_TEST("disk-cdrom-empty", false, QEMU_CAPS_DRIVE);
|
|
|
|
DO_TEST("disk-floppy", false, NONE);
|
|
|
|
DO_TEST("disk-many", false, NONE);
|
|
|
|
DO_TEST("disk-virtio", false, QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT);
|
|
|
|
DO_TEST("disk-xenvbd", false, QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT);
|
|
|
|
DO_TEST("disk-drive-boot-disk", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT);
|
|
|
|
DO_TEST("disk-drive-boot-cdrom", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT);
|
|
|
|
DO_TEST("floppy-drive-fat", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-fat", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-readonly-disk", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_READONLY,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("disk-drive-readonly-no-device", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_READONLY, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("disk-drive-fmt-qcow", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_BOOT, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-shared", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT, QEMU_CAPS_DRIVE_SERIAL);
|
|
|
|
DO_TEST("disk-drive-cache-v1-wt", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-cache-v1-wb", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-cache-v1-none", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-error-policy-stop", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_MONITOR_JSON, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-cache-v2-wt", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_CACHE_V2, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-cache-v2-wb", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_CACHE_V2, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-cache-v2-none", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_CACHE_V2, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-network-nbd", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-network-rbd", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-drive-network-sheepdog", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("disk-usb", false, NONE);
|
|
|
|
DO_TEST("disk-usb-device", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("disk-scsi-device", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("disk-scsi-device-auto", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("disk-aio", false,
|
|
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DRIVE_AIO,
|
|
|
|
QEMU_CAPS_DRIVE_CACHE_V2, QEMU_CAPS_DRIVE_FORMAT);
|
|
|
|
DO_TEST("graphics-vnc", false, NONE);
|
|
|
|
DO_TEST("graphics-vnc-socket", false, NONE);
|
2009-03-16 13:54:26 +00:00
|
|
|
|
|
|
|
driver.vncSASL = 1;
|
|
|
|
driver.vncSASLdir = strdup("/root/.sasl2");
|
2011-02-08 14:22:39 +00:00
|
|
|
DO_TEST("graphics-vnc-sasl", false, QEMU_CAPS_VGA);
|
2009-03-16 13:54:26 +00:00
|
|
|
driver.vncTLS = 1;
|
|
|
|
driver.vncTLSx509verify = 1;
|
|
|
|
driver.vncTLSx509certdir = strdup("/etc/pki/tls/qemu");
|
2011-02-08 14:22:39 +00:00
|
|
|
DO_TEST("graphics-vnc-tls", false, NONE);
|
2009-03-16 13:54:26 +00:00
|
|
|
driver.vncSASL = driver.vncTLSx509verify = driver.vncTLS = 0;
|
|
|
|
free(driver.vncSASLdir);
|
|
|
|
free(driver.vncTLSx509certdir);
|
|
|
|
driver.vncSASLdir = driver.vncTLSx509certdir = NULL;
|
|
|
|
|
2011-02-08 14:22:39 +00:00
|
|
|
DO_TEST("graphics-sdl", false, NONE);
|
|
|
|
DO_TEST("graphics-sdl-fullscreen", false, NONE);
|
|
|
|
DO_TEST("nographics", false, QEMU_CAPS_VGA);
|
|
|
|
DO_TEST("nographics-vga", false,
|
|
|
|
QEMU_CAPS_VGA, QEMU_CAPS_VGA_NONE);
|
|
|
|
DO_TEST("graphics-spice", false,
|
|
|
|
QEMU_CAPS_VGA, QEMU_CAPS_VGA_QXL,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_SPICE);
|
qemu: Support vram for video of qxl type
For qemu names the primary vga as "qxl-vga":
1) if vram is specified for 2nd qxl device:
-vga qxl -global qxl-vga.vram_size=$SIZE \
-device qxl,id=video1,vram_size=$SIZE,...
2) if vram is not specified for 2nd qxl device, (use the default
set by global):
-vga qxl -global qxl-vga.vram_size=$SIZE \
-device qxl,id=video1,...
For qemu names all qxl devices as "qxl":
1) if vram is specified for 2nd qxl device:
-vga qxl -global qxl.vram_size=$SIZE \
-device qxl,id=video1,vram_size=$SIZE ...
2) if vram is not specified for 2nd qxl device:
-vga qxl -global qxl-vga.vram_size=$SIZE \
-device qxl,id=video1,...
"-global" is the only way to define vram_size for the primary qxl
device, regardless of how qemu names it, (It's not good a good
way, as original idea of "-global" is to set a global default for
a driver property, but to specify vram for first qxl device, we
have to use it).
For other qxl devices, as they are represented by "-device", could
specify it directly and seperately for each, and it overrides the
default set by "-global" if specified.
v1 - v2:
* modify "virDomainVideoDefaultRAM" so that it returns 16M as the
default vram_size for qxl device.
* vram_size * 1024 (qemu accepts bytes for vram_size).
* apply default vram_size for qxl device for which vram_size is
not specified.
* modify "graphics-spice" tests (more sensiable vram_size)
* Add an argument of virDomainDefPtr type for qemuBuildVideoDevStr,
to use virDomainVideoDefaultRAM in qemuBuildVideoDevStr).
v2 - v3:
* Modify default video memory size for qxl device from 16M to 24M
* Update codes to be consistent with changes on qemu_capabilities.*
2011-03-06 14:00:27 +00:00
|
|
|
DO_TEST("graphics-spice-qxl-vga", false,
|
|
|
|
QEMU_CAPS_VGA, QEMU_CAPS_VGA_QXL,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_SPICE,
|
|
|
|
QEMU_CAPS_DEVICE_QXL_VGA);
|
2011-02-08 14:22:39 +00:00
|
|
|
|
|
|
|
DO_TEST("input-usbmouse", false, NONE);
|
|
|
|
DO_TEST("input-usbtablet", false, NONE);
|
|
|
|
DO_TEST("input-xen", true, QEMU_CAPS_DOMID);
|
|
|
|
DO_TEST("misc-acpi", false, NONE);
|
|
|
|
DO_TEST("misc-no-reboot", false, NONE);
|
|
|
|
DO_TEST("misc-uuid", false, QEMU_CAPS_NAME, QEMU_CAPS_UUID);
|
|
|
|
DO_TEST("net-user", false, NONE);
|
|
|
|
DO_TEST("net-virtio", false, NONE);
|
|
|
|
DO_TEST("net-virtio-device", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_VIRTIO_TX_ALG);
|
|
|
|
DO_TEST("net-virtio-netdev", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NETDEV, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("net-eth", false, NONE);
|
|
|
|
DO_TEST("net-eth-ifname", false, NONE);
|
|
|
|
DO_TEST("net-eth-names", false, QEMU_CAPS_NET_NAME);
|
|
|
|
|
|
|
|
DO_TEST("serial-vc", false, NONE);
|
|
|
|
DO_TEST("serial-pty", false, NONE);
|
|
|
|
DO_TEST("serial-dev", false, NONE);
|
|
|
|
DO_TEST("serial-file", false, NONE);
|
|
|
|
DO_TEST("serial-unix", false, NONE);
|
|
|
|
DO_TEST("serial-tcp", false, NONE);
|
|
|
|
DO_TEST("serial-udp", false, NONE);
|
|
|
|
DO_TEST("serial-tcp-telnet", false, NONE);
|
|
|
|
DO_TEST("serial-many", false, NONE);
|
|
|
|
DO_TEST("parallel-tcp", false, NONE);
|
|
|
|
DO_TEST("console-compat", false, NONE);
|
|
|
|
DO_TEST("console-compat-auto", false, NONE);
|
|
|
|
|
|
|
|
DO_TEST("serial-vc-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-pty-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-dev-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-file-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-unix-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-tcp-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-udp-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-tcp-telnet-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("serial-many-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("parallel-tcp-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("console-compat-chardev", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
|
|
|
|
DO_TEST("channel-guestfwd", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("channel-virtio", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("channel-virtio-auto", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("console-virtio", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("channel-spicevmc", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG,
|
|
|
|
QEMU_CAPS_SPICE, QEMU_CAPS_CHARDEV_SPICEVMC);
|
|
|
|
DO_TEST("channel-spicevmc-old", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG,
|
|
|
|
QEMU_CAPS_SPICE, QEMU_CAPS_DEVICE_SPICEVMC);
|
|
|
|
|
|
|
|
DO_TEST("smartcard-host", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE,
|
|
|
|
QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_CCID_EMULATED);
|
|
|
|
DO_TEST("smartcard-host-certificates", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE,
|
|
|
|
QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_CCID_EMULATED);
|
|
|
|
DO_TEST("smartcard-passthrough-tcp", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE,
|
|
|
|
QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_CCID_PASSTHRU);
|
|
|
|
DO_TEST("smartcard-passthrough-spicevmc", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG,
|
|
|
|
QEMU_CAPS_CCID_PASSTHRU, QEMU_CAPS_CHARDEV_SPICEVMC);
|
|
|
|
DO_TEST("smartcard-controller", false,
|
|
|
|
QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE,
|
|
|
|
QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_CCID_EMULATED);
|
|
|
|
|
|
|
|
DO_TEST("smbios", false, QEMU_CAPS_SMBIOS_TYPE);
|
|
|
|
|
|
|
|
DO_TEST("watchdog", false, NONE);
|
|
|
|
DO_TEST("watchdog-device", false, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("watchdog-dump", false, NONE);
|
|
|
|
DO_TEST("balloon-device", false, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("balloon-device-auto", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("sound", false, NONE);
|
|
|
|
DO_TEST("sound-device", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_HDA_DUPLEX);
|
|
|
|
DO_TEST("fs9p", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_FSDEV);
|
|
|
|
|
|
|
|
DO_TEST("hostdev-usb-address", false, NONE);
|
|
|
|
DO_TEST("hostdev-usb-address-device", false,
|
|
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
DO_TEST("hostdev-pci-address", false, QEMU_CAPS_PCIDEVICE);
|
|
|
|
DO_TEST("hostdev-pci-address-device", false,
|
|
|
|
QEMU_CAPS_PCIDEVICE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
|
|
|
|
|
|
DO_TEST_FULL("restore-v1", "stdio", 7, false,
|
|
|
|
QEMU_CAPS_MIGRATE_KVM_STDIO);
|
|
|
|
DO_TEST_FULL("restore-v2", "stdio", 7, false,
|
|
|
|
QEMU_CAPS_MIGRATE_QEMU_EXEC);
|
|
|
|
DO_TEST_FULL("restore-v2", "exec:cat", 7, false,
|
|
|
|
QEMU_CAPS_MIGRATE_QEMU_EXEC);
|
|
|
|
DO_TEST_FULL("restore-v2-fd", "stdio", 7, false,
|
|
|
|
QEMU_CAPS_MIGRATE_QEMU_FD);
|
|
|
|
DO_TEST_FULL("restore-v2-fd", "fd:7", 7, false,
|
|
|
|
QEMU_CAPS_MIGRATE_QEMU_FD);
|
|
|
|
DO_TEST_FULL("migrate", "tcp:10.0.0.1:5000", -1, false,
|
|
|
|
QEMU_CAPS_MIGRATE_QEMU_TCP);
|
|
|
|
|
|
|
|
DO_TEST("qemu-ns", false, NONE);
|
|
|
|
|
|
|
|
DO_TEST("smp", false, QEMU_CAPS_SMP_TOPOLOGY);
|
|
|
|
|
|
|
|
DO_TEST("cpu-topology1", false, QEMU_CAPS_SMP_TOPOLOGY);
|
|
|
|
DO_TEST("cpu-topology2", false, QEMU_CAPS_SMP_TOPOLOGY);
|
|
|
|
DO_TEST("cpu-topology3", false, NONE);
|
|
|
|
DO_TEST("cpu-minimum1", false, NONE);
|
|
|
|
DO_TEST("cpu-minimum2", false, NONE);
|
|
|
|
DO_TEST("cpu-exact1", false, NONE);
|
|
|
|
DO_TEST("cpu-exact2", false, NONE);
|
|
|
|
DO_TEST("cpu-strict1", false, NONE);
|
|
|
|
|
|
|
|
DO_TEST("memtune", false, QEMU_CAPS_NAME);
|
|
|
|
DO_TEST("blkiotune", false, QEMU_CAPS_NAME);
|
2011-03-29 13:44:14 +00:00
|
|
|
DO_TEST("cputune", false, QEMU_CAPS_NAME);
|
2011-02-08 06:59:38 +00:00
|
|
|
|
2009-09-03 16:37:45 +00:00
|
|
|
free(driver.stateDir);
|
2008-02-27 04:35:08 +00:00
|
|
|
virCapabilitiesFree(driver.caps);
|
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
return(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
|
2007-07-18 21:34:22 +00:00
|
|
|
}
|
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
VIRT_TEST_MAIN(mymain)
|
|
|
|
|
2007-11-26 12:03:34 +00:00
|
|
|
#else
|
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
int main (void) { return (77); /* means 'test skipped' for automake */ }
|
2007-11-26 12:03:34 +00:00
|
|
|
|
|
|
|
#endif /* WITH_QEMU */
|