testutilsxen.c 3.5 KB
Newer Older
1 2 3 4 5
#include <config.h>

#include <sys/utsname.h>

#include "testutilsxen.h"
P
Pavel Hrdina 已提交
6
#include "testutilshostcpus.h"
7 8
#include "domain_conf.h"

9 10 11
#define VIR_FROM_THIS VIR_FROM_LIBXL

static virCapsPtr
12 13 14 15 16 17 18 19 20 21
testXLInitCaps(void)
{
    virCapsPtr caps;
    virCapsGuestPtr guest;
    virCapsGuestMachinePtr *machines;
    int nmachines;
    static const char *const x86_machines[] = {
        "xenfv"
    };
    static const char *const xen_machines[] = {
22 23 24 25
        "xenpv",
    };
    static const char *const pvh_machines[] = {
        "xenpvh",
26 27 28 29 30
    };

    if ((caps = virCapabilitiesNew(virArchFromHost(),
                                   false, false)) == NULL)
        return NULL;
31 32 33

    caps->host.cpu = virCPUDefCopy(&cpuDefaultData);

34
    nmachines = G_N_ELEMENTS(x86_machines);
35 36
    if ((machines = virCapabilitiesAllocMachines(x86_machines, nmachines)) == NULL)
        goto cleanup;
37 38
    if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM,
                                         VIR_ARCH_X86_64,
39 40
                                         "/usr/lib/xen/bin/qemu-system-i386",
                                         "/usr/lib/xen/boot/hvmloader",
41 42 43
                                         nmachines, machines)) == NULL)
        goto cleanup;
    machines = NULL;
44
    if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_XEN, NULL,
45 46
                                      NULL, 0, NULL) == NULL)
        goto cleanup;
47
    nmachines = G_N_ELEMENTS(xen_machines);
48 49 50
    if ((machines = virCapabilitiesAllocMachines(xen_machines, nmachines)) == NULL)
        goto cleanup;

51 52
    if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_XEN,
                                         VIR_ARCH_X86_64,
53 54 55
                                         "/usr/lib/xen/bin/qemu-system-i386",
                                         NULL,
                                         nmachines, machines)) == NULL)
56 57 58
        goto cleanup;
    machines = NULL;

59 60 61
    if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_XEN, NULL,
                                      NULL, 0, NULL) == NULL)
        goto cleanup;
62
    nmachines = G_N_ELEMENTS(pvh_machines);
63 64 65 66 67 68 69 70 71 72 73
    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;

74
    if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_XEN, NULL,
75 76 77 78 79 80 81 82 83
                                      NULL, 0, NULL) == NULL)
        goto cleanup;
    return caps;

 cleanup:
    virCapabilitiesFreeMachines(machines, nmachines);
    virObjectUnref(caps);
    return NULL;
}
84 85 86 87 88 89 90 91 92 93 94 95 96


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;
    }

97 98
    if (!(driver->config = libxlDriverConfigNew()))
        return NULL;
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

    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);
}