2009-09-23 12:25:52 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2013-04-16 13:41:44 +00:00
|
|
|
#include "testutils.h"
|
|
|
|
|
2010-12-21 21:39:55 +00:00
|
|
|
#ifdef WITH_VMX
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include <unistd.h>
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
2010-12-21 21:39:55 +00:00
|
|
|
# include "vmx/vmx.h"
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2013-05-03 12:52:21 +00:00
|
|
|
# define VIR_FROM_THIS VIR_FROM_VMWARE
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
static virCaps *caps;
|
|
|
|
static virDomainXMLOption *xmlopt;
|
2010-12-21 21:39:55 +00:00
|
|
|
static virVMXContext ctx;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
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
|
|
|
|
2010-06-17 17:57:12 +00:00
|
|
|
static void
|
|
|
|
testCapsInit(void)
|
|
|
|
{
|
2021-03-11 07:16:13 +00:00
|
|
|
virCapsGuest *guest = NULL;
|
2010-06-17 17:57:12 +00:00
|
|
|
|
2014-07-14 12:56:13 +00:00
|
|
|
caps = virCapabilitiesNew(VIR_ARCH_I686, true, true);
|
2010-06-17 17:57:12 +00:00
|
|
|
|
2014-11-13 14:20:43 +00:00
|
|
|
if (caps == NULL)
|
2010-06-17 17:57:12 +00:00
|
|
|
return;
|
|
|
|
|
2018-05-18 21:47:08 +00:00
|
|
|
virCapabilitiesAddHostMigrateTransport(caps, "vpxmigr");
|
2010-06-17 17:57:12 +00:00
|
|
|
|
|
|
|
/* i686 guest */
|
2021-10-07 08:47:27 +00:00
|
|
|
guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM,
|
|
|
|
VIR_ARCH_I686,
|
|
|
|
NULL, NULL, 0, NULL);
|
2010-06-17 17:57:12 +00:00
|
|
|
|
2021-10-07 08:47:28 +00:00
|
|
|
virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_VMWARE,
|
|
|
|
NULL, NULL, 0, NULL);
|
2010-06-17 17:57:12 +00:00
|
|
|
|
|
|
|
/* x86_64 guest */
|
2021-10-07 08:47:27 +00:00
|
|
|
guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM,
|
|
|
|
VIR_ARCH_X86_64,
|
|
|
|
NULL, NULL, 0, NULL);
|
2010-06-17 17:57:12 +00:00
|
|
|
|
2021-10-07 08:47:28 +00:00
|
|
|
virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_VMWARE,
|
|
|
|
NULL, NULL, 0, NULL);
|
2010-06-17 17:57:12 +00:00
|
|
|
}
|
|
|
|
|
2009-09-23 12:25:52 +00:00
|
|
|
static int
|
2021-01-05 13:19:21 +00:00
|
|
|
testCompareFiles(const char *vmx, const char *xml, bool should_fail_parse)
|
2009-09-23 12:25:52 +00:00
|
|
|
{
|
2021-09-04 20:37:06 +00:00
|
|
|
g_autofree char *vmxData = NULL;
|
|
|
|
g_autofree char *formatted = NULL;
|
2021-09-04 19:50:02 +00:00
|
|
|
g_autoptr(virDomainDef) def = NULL;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2016-05-26 15:01:52 +00:00
|
|
|
if (virTestLoadFile(vmx, &vmxData) < 0)
|
2021-01-05 13:19:21 +00:00
|
|
|
return -1;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-01-05 13:19:21 +00:00
|
|
|
def = virVMXParseConfig(&ctx, xmlopt, caps, vmxData);
|
|
|
|
if (should_fail_parse) {
|
|
|
|
if (!def)
|
2021-09-04 20:39:27 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
VIR_TEST_DEBUG("passed instead of expected failure");
|
|
|
|
return -1;
|
2021-01-05 13:19:21 +00:00
|
|
|
}
|
|
|
|
if (!def)
|
2021-09-04 20:39:27 +00:00
|
|
|
return -1;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2017-05-19 13:07:15 +00:00
|
|
|
if (!virDomainDefCheckABIStability(def, def, xmlopt)) {
|
2014-01-10 17:18:03 +00:00
|
|
|
fprintf(stderr, "ABI stability check failed on %s", vmx);
|
2021-09-04 20:39:27 +00:00
|
|
|
return -1;
|
2014-01-10 17:18:03 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 11:57:34 +00:00
|
|
|
if (!(formatted = virDomainDefFormat(def, xmlopt,
|
2016-02-03 21:40:35 +00:00
|
|
|
VIR_DOMAIN_DEF_FORMAT_SECURE)))
|
2021-09-04 20:39:27 +00:00
|
|
|
return -1;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2016-05-26 15:01:53 +00:00
|
|
|
if (virTestCompareToFile(formatted, xml) < 0)
|
2021-09-04 20:39:27 +00:00
|
|
|
return -1;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-09-04 20:39:27 +00:00
|
|
|
return 0;
|
2009-09-23 12:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct testInfo {
|
2021-08-18 12:30:33 +00:00
|
|
|
const char *file;
|
2021-01-05 13:19:21 +00:00
|
|
|
bool should_fail;
|
2009-09-23 12:25:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
testCompareHelper(const void *data)
|
|
|
|
{
|
2013-09-25 10:34:00 +00:00
|
|
|
int ret = -1;
|
2009-09-23 12:25:52 +00:00
|
|
|
const struct testInfo *info = data;
|
2021-09-04 20:37:06 +00:00
|
|
|
g_autofree char *vmx = NULL;
|
|
|
|
g_autofree char *xml = NULL;
|
2011-04-24 22:25:10 +00:00
|
|
|
|
2021-08-18 12:35:57 +00:00
|
|
|
vmx = g_strdup_printf("%s/vmx2xmldata/%s.vmx", abs_srcdir,
|
2021-08-18 12:30:33 +00:00
|
|
|
info->file);
|
2021-08-18 12:35:57 +00:00
|
|
|
xml = g_strdup_printf("%s/vmx2xmldata/%s.xml", abs_srcdir,
|
2021-08-18 12:30:33 +00:00
|
|
|
info->file);
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-01-05 13:19:21 +00:00
|
|
|
ret = testCompareFiles(vmx, xml, info->should_fail);
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2013-09-25 10:34:00 +00:00
|
|
|
return ret;
|
2009-09-23 12:25:52 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 13:48:49 +00:00
|
|
|
static int
|
|
|
|
testParseVMXFileName(const char *fileName,
|
|
|
|
void *opaque G_GNUC_UNUSED,
|
2020-12-21 15:51:31 +00:00
|
|
|
char **src,
|
|
|
|
bool allow_missing)
|
2010-08-05 15:43:19 +00:00
|
|
|
{
|
2020-12-21 15:56:25 +00:00
|
|
|
g_autofree char *copyOfFileName = NULL;
|
2010-08-05 15:43:19 +00:00
|
|
|
char *tmp = NULL;
|
|
|
|
char *saveptr = NULL;
|
|
|
|
char *datastoreName = NULL;
|
|
|
|
char *directoryAndFileName = NULL;
|
2020-12-21 13:48:49 +00:00
|
|
|
|
|
|
|
*src = NULL;
|
2010-08-05 15:43:19 +00:00
|
|
|
|
|
|
|
if (STRPREFIX(fileName, "/vmfs/volumes/")) {
|
|
|
|
/* Found absolute path referencing a file inside a datastore */
|
2019-10-20 11:49:46 +00:00
|
|
|
copyOfFileName = g_strdup(fileName);
|
2010-08-05 15:43:19 +00:00
|
|
|
|
|
|
|
/* Expected format: '/vmfs/volumes/<datastore>/<path>' */
|
|
|
|
if ((tmp = STRSKIP(copyOfFileName, "/vmfs/volumes/")) == NULL ||
|
|
|
|
(datastoreName = strtok_r(tmp, "/", &saveptr)) == NULL ||
|
|
|
|
(directoryAndFileName = strtok_r(NULL, "", &saveptr)) == NULL) {
|
2020-12-21 13:48:49 +00:00
|
|
|
return -1;
|
2010-08-05 15:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 15:51:31 +00:00
|
|
|
if (STREQ(datastoreName, "missing") ||
|
|
|
|
STRPREFIX(directoryAndFileName, "missing")) {
|
|
|
|
if (allow_missing)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"Referenced missing file '%s'", fileName);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-12-21 13:48:49 +00:00
|
|
|
*src = g_strdup_printf("[%s] %s", datastoreName, directoryAndFileName);
|
2010-08-05 15:43:19 +00:00
|
|
|
} else if (STRPREFIX(fileName, "/")) {
|
|
|
|
/* Found absolute path referencing a file outside a datastore */
|
2020-12-21 13:48:49 +00:00
|
|
|
*src = g_strdup(fileName);
|
2010-08-05 15:43:19 +00:00
|
|
|
} else if (strchr(fileName, '/') != NULL) {
|
|
|
|
/* Found relative path, this is not supported */
|
2020-12-21 13:48:49 +00:00
|
|
|
return -1;
|
2010-08-05 15:43:19 +00:00
|
|
|
} else {
|
|
|
|
/* Found single file name referencing a file inside a datastore */
|
2020-12-21 13:48:49 +00:00
|
|
|
*src = g_strdup_printf("[datastore] directory/%s", fileName);
|
2010-08-05 15:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 13:48:49 +00:00
|
|
|
return 0;
|
2010-08-05 15:43:19 +00:00
|
|
|
}
|
|
|
|
|
2009-09-23 12:25:52 +00:00
|
|
|
static int
|
2011-04-29 16:21:20 +00:00
|
|
|
mymain(void)
|
2009-09-23 12:25:52 +00:00
|
|
|
{
|
2013-09-25 10:34:00 +00:00
|
|
|
int ret = 0;
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
# define DO_TEST_FULL(file, should_fail) \
|
2017-11-03 12:09:47 +00:00
|
|
|
do { \
|
2021-08-18 12:30:33 +00:00
|
|
|
struct testInfo info = { file, should_fail }; \
|
2017-11-03 12:09:47 +00:00
|
|
|
virResetLastError(); \
|
2021-08-18 12:30:33 +00:00
|
|
|
if (virTestRun("VMware VMX-2-XML " file, \
|
2017-11-03 12:09:47 +00:00
|
|
|
testCompareHelper, &info) < 0) { \
|
|
|
|
ret = -1; \
|
|
|
|
} \
|
2009-09-23 12:25:52 +00:00
|
|
|
} while (0)
|
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
# define DO_TEST(file) DO_TEST_FULL(file, false)
|
|
|
|
# define DO_TEST_FAIL(file) DO_TEST_FULL(file, true)
|
2021-01-05 13:19:21 +00:00
|
|
|
|
2010-06-17 17:57:12 +00:00
|
|
|
testCapsInit();
|
|
|
|
|
2014-11-13 14:20:43 +00:00
|
|
|
if (caps == NULL)
|
2010-06-17 17:57:12 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2019-12-03 10:49:49 +00:00
|
|
|
if (!(xmlopt = virVMXDomainXMLConfInit(caps)))
|
2013-03-15 10:40:17 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2010-08-05 15:43:19 +00:00
|
|
|
ctx.opaque = NULL;
|
|
|
|
ctx.parseFileName = testParseVMXFileName;
|
|
|
|
ctx.formatFileName = NULL;
|
|
|
|
ctx.autodetectSCSIControllerModel = NULL;
|
2015-09-11 10:00:47 +00:00
|
|
|
ctx.datacenterPath = NULL;
|
2010-08-05 15:43:19 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("case-insensitive-1");
|
|
|
|
DO_TEST("case-insensitive-2");
|
2010-03-24 00:52:33 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("minimal");
|
|
|
|
DO_TEST("minimal-64bit");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("graphics-vnc");
|
2010-01-16 12:52:34 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("scsi-driver");
|
|
|
|
DO_TEST("scsi-writethrough");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("harddisk-scsi-file");
|
|
|
|
DO_TEST("harddisk-ide-file");
|
|
|
|
DO_TEST("harddisk-transient");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("cdrom-scsi-file");
|
|
|
|
DO_TEST("cdrom-scsi-empty");
|
|
|
|
DO_TEST("cdrom-scsi-device");
|
|
|
|
DO_TEST("cdrom-scsi-raw-device");
|
|
|
|
DO_TEST("cdrom-scsi-raw-auto-detect");
|
|
|
|
DO_TEST("cdrom-scsi-passthru");
|
|
|
|
DO_TEST("cdrom-ide-file");
|
|
|
|
DO_TEST("cdrom-ide-empty");
|
|
|
|
DO_TEST("cdrom-ide-empty-2");
|
|
|
|
DO_TEST("cdrom-ide-device");
|
|
|
|
DO_TEST("cdrom-ide-raw-device");
|
|
|
|
DO_TEST("cdrom-ide-raw-auto-detect");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("cdrom-ide-file-missing-datastore");
|
|
|
|
DO_TEST("cdrom-ide-file-missing-file");
|
2021-01-05 13:19:34 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST_FAIL("harddisk-ide-file-missing-datastore");
|
|
|
|
DO_TEST_FAIL("harddisk-scsi-file-missing-file");
|
2021-01-05 13:19:34 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("floppy-file");
|
|
|
|
DO_TEST("floppy-device");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("sharedfolder");
|
2012-07-11 10:16:35 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("ethernet-e1000");
|
|
|
|
DO_TEST("ethernet-vmxnet2");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("ethernet-custom");
|
|
|
|
DO_TEST("ethernet-bridged");
|
|
|
|
DO_TEST("ethernet-nat");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("ethernet-generated");
|
|
|
|
DO_TEST("ethernet-static");
|
|
|
|
DO_TEST("ethernet-vpx");
|
|
|
|
DO_TEST("ethernet-other");
|
2022-08-24 20:46:05 +00:00
|
|
|
DO_TEST("ethernet-null");
|
2022-08-17 12:44:55 +00:00
|
|
|
DO_TEST("ethernet-vds");
|
2010-01-02 22:58:24 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("serial-file");
|
|
|
|
DO_TEST("serial-device");
|
|
|
|
DO_TEST("serial-pipe-client-app");
|
2021-08-19 07:55:53 +00:00
|
|
|
DO_TEST("serial-pipe-client-vm");
|
|
|
|
DO_TEST("serial-pipe-server-app");
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("serial-pipe-server-vm");
|
|
|
|
DO_TEST("serial-network-server");
|
|
|
|
DO_TEST("serial-network-client");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("parallel-file");
|
|
|
|
DO_TEST("parallel-device");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("esx-in-the-wild-1");
|
|
|
|
DO_TEST("esx-in-the-wild-2");
|
|
|
|
DO_TEST("esx-in-the-wild-3");
|
|
|
|
DO_TEST("esx-in-the-wild-4");
|
|
|
|
DO_TEST("esx-in-the-wild-5");
|
|
|
|
DO_TEST("esx-in-the-wild-6");
|
|
|
|
DO_TEST("esx-in-the-wild-7");
|
|
|
|
DO_TEST("esx-in-the-wild-8");
|
|
|
|
DO_TEST("esx-in-the-wild-9");
|
|
|
|
DO_TEST("esx-in-the-wild-10");
|
|
|
|
DO_TEST("esx-in-the-wild-11");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("gsx-in-the-wild-1");
|
|
|
|
DO_TEST("gsx-in-the-wild-2");
|
|
|
|
DO_TEST("gsx-in-the-wild-3");
|
|
|
|
DO_TEST("gsx-in-the-wild-4");
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("ws-in-the-wild-1");
|
|
|
|
DO_TEST("ws-in-the-wild-2");
|
2012-02-23 09:34:45 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("fusion-in-the-wild-1");
|
2013-08-13 15:56:56 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("annotation");
|
2010-08-27 15:23:49 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("smbios");
|
2010-11-10 19:05:51 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("svga");
|
2010-12-30 17:08:54 +00:00
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("firmware-efi");
|
2019-04-09 14:04:31 +00:00
|
|
|
|
2015-09-11 10:00:47 +00:00
|
|
|
ctx.datacenterPath = "folder1/folder2/datacenter1";
|
|
|
|
|
2021-08-18 12:30:33 +00:00
|
|
|
DO_TEST("datacenterpath");
|
2015-09-11 10:00:47 +00:00
|
|
|
|
2013-02-01 12:26:18 +00:00
|
|
|
virObjectUnref(caps);
|
2013-03-15 10:40:17 +00:00
|
|
|
virObjectUnref(xmlopt);
|
2010-06-17 17:57:12 +00:00
|
|
|
|
2013-09-25 10:34:00 +00:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2009-09-23 12:25:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 14:45:42 +00:00
|
|
|
VIR_TEST_MAIN(mymain)
|
2009-09-23 12:25:52 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2011-07-08 23:24:44 +00:00
|
|
|
int main(void)
|
2009-09-23 12:25:52 +00:00
|
|
|
{
|
2011-07-08 23:24:44 +00:00
|
|
|
return EXIT_AM_SKIP;
|
2009-09-23 12:25:52 +00:00
|
|
|
}
|
|
|
|
|
2010-12-21 21:39:55 +00:00
|
|
|
#endif /* WITH_VMX */
|