xen_unified.c 37.5 KB
Newer Older
1 2 3
/*
 * xen_unified.c: Unified Xen driver.
 *
4
 * Copyright (C) 2007, 2008 Red Hat, Inc.
5 6 7 8 9 10
 *
 * See COPYING.LIB for the License of this software
 *
 * Richard W.M. Jones <rjones@redhat.com>
 */

11
#include <config.h>
12

13 14 15 16 17 18 19 20 21 22 23 24 25
#ifdef WITH_XEN

/* Note:
 *
 * This driver provides a unified interface to the five
 * separate underlying Xen drivers (xen_internal, proxy_internal,
 * xend_internal, xs_internal and xm_internal).  Historically
 * the body of libvirt.c handled the five Xen drivers,
 * and contained Xen-specific code.
 */

#include <stdint.h>
#include <unistd.h>
26
#include <string.h>
27
#include <errno.h>
28 29
#include <sys/types.h>
#include <xen/dom0_ops.h>
30
#include <libxml/uri.h>
31 32 33 34 35 36 37 38 39 40

#include "internal.h"

#include "xen_unified.h"

#include "xen_internal.h"
#include "proxy_internal.h"
#include "xend_internal.h"
#include "xs_internal.h"
#include "xm_internal.h"
41
#include "xml.h"
42
#include "util.h"
43
#include "memory.h"
44

45
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt,__VA_ARGS__)
46
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
47

48 49
static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info);
50 51 52 53 54 55
static int
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom);
static int
xenUnifiedDomainGetVcpus (virDomainPtr dom,
                          virVcpuInfoPtr info, int maxinfo,
                          unsigned char *cpumaps, int maplen);
56

57
/* The five Xen drivers below us. */
58 59 60 61 62 63
static struct xenUnifiedDriver *drivers[XEN_UNIFIED_NR_DRIVERS] = {
    [XEN_UNIFIED_HYPERVISOR_OFFSET] = &xenHypervisorDriver,
    [XEN_UNIFIED_PROXY_OFFSET] = &xenProxyDriver,
    [XEN_UNIFIED_XEND_OFFSET] = &xenDaemonDriver,
    [XEN_UNIFIED_XS_OFFSET] = &xenStoreDriver,
    [XEN_UNIFIED_XM_OFFSET] = &xenXMDriver,
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
};

/**
 * xenUnifiedError:
 * @conn: the connection
 * @error: the error number
 * @info: extra information string
 *
 * Handle an error at the xend daemon interface
 */
static void
xenUnifiedError (virConnectPtr conn, virErrorNumber error, const char *info)
{
    const char *errmsg;

    errmsg = __virErrorMsg (error, info);
    __virRaiseError (conn, NULL, NULL, VIR_FROM_XEN, error, VIR_ERR_ERROR,
81
                     errmsg, info, NULL, 0, 0, errmsg, info);
82 83
}

84 85
/*
 * Helper functions currently used in the NUMA code
86 87
 * Those variables should not be accessed directly but through helper
 * functions xenNbCells() and xenNbCpu() available to all Xen backends
88 89 90 91 92 93 94 95 96
 */
static int nbNodeCells = -1;
static int nbNodeCpus = -1;

/**
 * xenNumaInit:
 * @conn: pointer to the hypervisor connection
 *
 * Initializer for previous variables. We currently assume that
R
Richard W.M. Jones 已提交
97
 * the number of physical CPU and the number of NUMA cell is fixed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
 * until reboot which might be false in future Xen implementations.
 */
static void
xenNumaInit(virConnectPtr conn) {
    virNodeInfo nodeInfo;
    int ret;

    ret = xenUnifiedNodeGetInfo(conn, &nodeInfo);
    if (ret < 0)
        return;
    nbNodeCells = nodeInfo.nodes;
    nbNodeCpus = nodeInfo.cpus;
}

/**
 * xenNbCells:
 * @conn: pointer to the hypervisor connection
 *
R
Richard W.M. Jones 已提交
116
 * Number of NUMA cells present in the actual Node
117 118 119 120 121 122 123 124 125 126 127 128 129
 *
 * Returns the number of NUMA cells available on that Node
 */
int xenNbCells(virConnectPtr conn) {
    if (nbNodeCells < 0)
        xenNumaInit(conn);
    return(nbNodeCells);
}

/**
 * xenNbCpus:
 * @conn: pointer to the hypervisor connection
 *
130
 * Number of CPUs present in the actual Node
131
 *
132
 * Returns the number of CPUs available on that Node
133 134 135 136 137 138 139
 */
int xenNbCpus(virConnectPtr conn) {
    if (nbNodeCpus < 0)
        xenNumaInit(conn);
    return(nbNodeCpus);
}

140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
/**
 * xenDomainUsedCpus:
 * @dom: the domain
 *
 * Analyze which set of CPUs are used by the domain and
 * return a string providing the ranges.
 *
 * Returns the string which needs to be freed by the caller or
 *         NULL if the domain uses all CPU or in case of error.
 */
char *
xenDomainUsedCpus(virDomainPtr dom)
{
    char *res = NULL;
    int nb_cpu, ncpus;
    int nb_vcpu;
    char *cpulist = NULL;
    unsigned char *cpumap = NULL;
    size_t cpumaplen;
    int nb = 0;
    int n, m;
    virVcpuInfoPtr cpuinfo = NULL;
    virNodeInfo nodeinfo;

    if (!VIR_IS_CONNECTED_DOMAIN(dom))
        return (NULL);

    nb_cpu = xenNbCpus(dom->conn);
    if (nb_cpu <= 0)
        return(NULL);
    nb_vcpu = xenUnifiedDomainGetMaxVcpus(dom);
    if (nb_vcpu <= 0)
        return(NULL);
    if (xenUnifiedNodeGetInfo(dom->conn, &nodeinfo) < 0)
        return(NULL);

176
    if (VIR_ALLOC_N(cpulist, nb_cpu) < 0)
177
        goto done;
178
    if (VIR_ALLOC_N(cpuinfo, nb_vcpu) < 0)
179 180
        goto done;
    cpumaplen = VIR_CPU_MAPLEN(VIR_NODEINFO_MAXCPUS(nodeinfo));
181 182
    if (xalloc_oversized(nb_vcpu, cpumaplen) ||
        VIR_ALLOC_N(cpumap, nb_vcpu * cpumaplen) < 0)
183 184 185 186
        goto done;

    if ((ncpus = xenUnifiedDomainGetVcpus(dom, cpuinfo, nb_vcpu,
                                          cpumap, cpumaplen)) >= 0) {
187 188 189 190 191 192 193 194 195 196 197 198 199
        for (n = 0 ; n < ncpus ; n++) {
            for (m = 0 ; m < nb_cpu; m++) {
                if ((cpulist[m] == 0) &&
                    (VIR_CPU_USABLE(cpumap, cpumaplen, n, m))) {
                    cpulist[m] = 1;
                    nb++;
                    /* if all CPU are used just return NULL */
                    if (nb == nb_cpu)
                        goto done;

                }
            }
        }
200 201 202 203
        res = virSaveCpuSet(dom->conn, cpulist, nb_cpu);
    }

done:
204 205 206
    VIR_FREE(cpulist);
    VIR_FREE(cpumap);
    VIR_FREE(cpuinfo);
207 208 209
    return(res);
}

210 211 212 213 214 215 216 217 218 219 220
/*----- Dispatch functions. -----*/

/* These dispatch functions follow the model used historically
 * by libvirt.c -- trying each low-level Xen driver in turn
 * until one succeeds.  However since we know what low-level
 * drivers can perform which functions, it is probably better
 * in future to optimise these dispatch functions to just call
 * the single function (or small number of appropriate functions)
 * in the low level drivers directly.
 */

221 222 223 224 225 226 227 228 229 230 231
static const char *
xenUnifiedProbe (void)
{
#ifdef __linux__
    if (virFileExists("/proc/xen"))
        return("xen:///");
#endif
#ifdef __sun__
    FILE *fh;

    if (fh = fopen("/dev/xen/domcaps", "r")) {
232
        fclose(fh);
233 234 235 236 237 238
        return("xen:///");
    }
#endif
    return(NULL);
}

239
static int
240
xenUnifiedOpen (virConnectPtr conn, xmlURIPtr uri, virConnectAuthPtr auth, int flags)
241
{
242
    int i, ret = VIR_DRV_OPEN_DECLINED;
243
    xenUnifiedPrivatePtr priv;
244

245
    /* Refuse any scheme which isn't "xen://" or "http://". */
246
    if (uri->scheme &&
247 248
        STRCASENEQ(uri->scheme, "xen") &&
        STRCASENEQ(uri->scheme, "http"))
249 250 251 252 253 254 255
        return VIR_DRV_OPEN_DECLINED;

    /* xmlParseURI will parse a naked string like "foo" as a URI with
     * a NULL scheme.  That's not useful for us because we want to only
     * allow full pathnames (eg. ///var/lib/xen/xend-socket).  Decline
     * anything else.
     */
256
    if (!uri->scheme && (!uri->path || uri->path[0] != '/'))
257
        return VIR_DRV_OPEN_DECLINED;
258 259

    /* Refuse any xen:// URI with a server specified - allow remote to do it */
260
    if (uri->scheme && STRCASEEQ(uri->scheme, "xen") && uri->server)
261
        return VIR_DRV_OPEN_DECLINED;
262 263

    /* Allocate per-connection private data. */
264
    if (VIR_ALLOC(priv) < 0) {
265
        xenUnifiedError (NULL, VIR_ERR_NO_MEMORY, "allocating private data");
266 267 268 269 270 271 272 273 274 275 276 277 278
        return VIR_DRV_OPEN_ERROR;
    }
    conn->privateData = priv;

    priv->handle = -1;
    priv->xendConfigVersion = -1;
    priv->type = -1;
    priv->len = -1;
    priv->addr = NULL;
    priv->xshandle = NULL;
    priv->proxy = -1;


279 280 281 282 283 284 285
    /* Hypervisor is only run as root & required to succeed */
    if (getuid() == 0) {
        DEBUG0("Trying hypervisor sub-driver");
        if (drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->open(conn, uri, auth, flags) ==
            VIR_DRV_OPEN_SUCCESS) {
            DEBUG0("Activated hypervisor sub-driver");
            priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] = 1;
286
        }
287
    }
288

289
    /* XenD is required to suceed if root.
290
     * If it fails as non-root, then the proxy driver may take over
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
     */
    DEBUG0("Trying XenD sub-driver");
    if (drivers[XEN_UNIFIED_XEND_OFFSET]->open(conn, uri, auth, flags) ==
        VIR_DRV_OPEN_SUCCESS) {
        DEBUG0("Activated XenD sub-driver");
        priv->opened[XEN_UNIFIED_XEND_OFFSET] = 1;

        /* XenD is active, so try the xm & xs drivers too, both requird to
         * succeed if root, optional otherwise */
        if (priv->xendConfigVersion <= 2) {
            DEBUG0("Trying XM sub-driver");
            if (drivers[XEN_UNIFIED_XM_OFFSET]->open(conn, uri, auth, flags) ==
                VIR_DRV_OPEN_SUCCESS) {
                DEBUG0("Activated XM sub-driver");
                priv->opened[XEN_UNIFIED_XM_OFFSET] = 1;
            }
        }
        DEBUG0("Trying XS sub-driver");
        if (drivers[XEN_UNIFIED_XS_OFFSET]->open(conn, uri, auth, flags) ==
            VIR_DRV_OPEN_SUCCESS) {
            DEBUG0("Activated XS sub-driver");
            priv->opened[XEN_UNIFIED_XS_OFFSET] = 1;
        } else {
            if (getuid() == 0)
                goto fail; /* XS is mandatory as root */
        }
    } else {
        if (getuid() == 0) {
            goto fail; /* XenD is mandatory as root */
        } else {
#if WITH_PROXY
            DEBUG0("Trying proxy sub-driver");
            if (drivers[XEN_UNIFIED_PROXY_OFFSET]->open(conn, uri, auth, flags) ==
                VIR_DRV_OPEN_SUCCESS) {
                DEBUG0("Activated proxy sub-driver");
                priv->opened[XEN_UNIFIED_PROXY_OFFSET] = 1;
            } else {
                goto fail; /* Proxy is mandatory if XenD failed */
            }
#else
            DEBUG0("Handing off for remote driver");
332 333
            ret = VIR_DRV_OPEN_DECLINED; /* Let remote_driver try instead */
            goto clean;
334
#endif
335
        }
336 337
    }

338
    return VIR_DRV_OPEN_SUCCESS;
339

340 341 342
fail:
    ret = VIR_DRV_OPEN_ERROR;
clean:
343 344 345
    DEBUG0("Failed to activate a mandatory sub-driver");
    for (i = 0 ; i < XEN_UNIFIED_NR_DRIVERS ; i++)
        if (priv->opened[i]) drivers[i]->close(conn);
346
    VIR_FREE(priv);
D
Daniel Veillard 已提交
347
    return ret;
348 349
}

350 351 352
#define GET_PRIVATE(conn) \
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) (conn)->privateData

353 354 355
static int
xenUnifiedClose (virConnectPtr conn)
{
356
    GET_PRIVATE(conn);
357
    int i;
358

359 360
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->close)
361
            (void) drivers[i]->close (conn);
362

363 364
    free (conn->privateData);
    conn->privateData = NULL;
365

366
    return 0;
367 368 369 370 371
}

static const char *
xenUnifiedType (virConnectPtr conn)
{
372
    GET_PRIVATE(conn);
373
    int i;
374

375
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
376 377
        if (priv->opened[i])
            return "Xen";
378

379
    return NULL;
380 381
}

382 383 384 385 386 387 388 389 390 391
/* Which features are supported by this driver? */
static int
xenUnifiedSupportsFeature (virConnectPtr conn ATTRIBUTE_UNUSED, int feature)
{
    switch (feature) {
    case VIR_DRV_FEATURE_MIGRATION_V1: return 1;
    default: return 0;
    }
}

392 393 394
static int
xenUnifiedVersion (virConnectPtr conn, unsigned long *hvVer)
{
395
    GET_PRIVATE(conn);
396
    int i;
397

398 399 400
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->version &&
401 402
            drivers[i]->version (conn, hvVer) == 0)
            return 0;
403

404
    return -1;
405 406
}

407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
/* NB: Even if connected to the proxy, we're still on the
 * same machine.
 */
static char *
xenUnifiedGetHostname (virConnectPtr conn)
{
    int r;
    char hostname [HOST_NAME_MAX+1], *str;

    r = gethostname (hostname, HOST_NAME_MAX+1);
    if (r == -1) {
        xenUnifiedError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
        return NULL;
    }
    str = strdup (hostname);
    if (str == NULL) {
        xenUnifiedError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
        return NULL;
    }
    return str;
}

429 430 431
static int
xenUnifiedGetMaxVcpus (virConnectPtr conn, const char *type)
{
432
    GET_PRIVATE(conn);
433

434 435 436 437
    if (type && STRCASENEQ (type, "Xen")) {
        xenUnifiedError (conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return -1;
    }
438

439 440 441 442 443 444
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
        return xenHypervisorGetMaxVcpus (conn, type);
    else {
        xenUnifiedError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
        return -1;
    }
445 446 447 448 449
}

static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info)
{
450
    GET_PRIVATE(conn);
451
    int i;
452

453 454 455
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->nodeGetInfo &&
456 457
            drivers[i]->nodeGetInfo (conn, info) == 0)
            return 0;
458

459
    return -1;
460 461 462 463 464
}

static char *
xenUnifiedGetCapabilities (virConnectPtr conn)
{
465
    GET_PRIVATE(conn);
466 467
    int i;
    char *ret;
468

469 470
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->getCapabilities) {
471 472 473
            ret = drivers[i]->getCapabilities (conn);
            if (ret) return ret;
        }
474

475
    return NULL;
476 477 478 479 480
}

static int
xenUnifiedListDomains (virConnectPtr conn, int *ids, int maxids)
{
481
    GET_PRIVATE(conn);
482
    int i, ret;
483

484 485
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->listDomains) {
486 487 488
            ret = drivers[i]->listDomains (conn, ids, maxids);
            if (ret >= 0) return ret;
        }
489

490
    return -1;
491 492 493 494 495
}

static int
xenUnifiedNumOfDomains (virConnectPtr conn)
{
496
    GET_PRIVATE(conn);
497
    int i, ret;
498

499 500
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->numOfDomains) {
501 502 503
            ret = drivers[i]->numOfDomains (conn);
            if (ret >= 0) return ret;
        }
504

505
    return -1;
506 507 508 509
}

static virDomainPtr
xenUnifiedDomainCreateLinux (virConnectPtr conn,
510
                             const char *xmlDesc, unsigned int flags)
511
{
512
    GET_PRIVATE(conn);
513 514
    int i;
    virDomainPtr ret;
515

516 517
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainCreateLinux) {
518 519 520
            ret = drivers[i]->domainCreateLinux (conn, xmlDesc, flags);
            if (ret) return ret;
        }
521

522
    return NULL;
523 524
}

525 526 527 528
/* Assumption made in underlying drivers:
 * If the domain is "not found" and there is no other error, then
 * the Lookup* functions return a NULL but do not set virterror.
 */
529 530 531
static virDomainPtr
xenUnifiedDomainLookupByID (virConnectPtr conn, int id)
{
532
    GET_PRIVATE(conn);
533
    virDomainPtr ret;
534

535 536 537 538 539
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

540 541 542 543 544 545 546
    /* Try hypervisor/xenstore combo. */
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
        ret = xenHypervisorLookupDomainByID (conn, id);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

547 548 549 550 551 552 553 554 555 556 557 558 559
    /* Try proxy. */
    if (priv->opened[XEN_UNIFIED_PROXY_OFFSET]) {
        ret = xenProxyLookupByID (conn, id);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonLookupByID (conn, id);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }
560

561 562
    /* Not found. */
    xenUnifiedError (conn, VIR_ERR_NO_DOMAIN, __FUNCTION__);
563
    return NULL;
564 565 566 567
}

static virDomainPtr
xenUnifiedDomainLookupByUUID (virConnectPtr conn,
568
                              const unsigned char *uuid)
569
{
570
    GET_PRIVATE(conn);
571
    virDomainPtr ret;
572

573 574 575 576 577
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

578 579 580 581 582 583 584
    /* Try hypervisor/xenstore combo. */
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
        ret = xenHypervisorLookupDomainByUUID (conn, uuid);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

585 586 587 588 589 590 591 592 593 594 595 596 597
    /* Try proxy. */
    if (priv->opened[XEN_UNIFIED_PROXY_OFFSET]) {
        ret = xenProxyLookupByUUID (conn, uuid);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonLookupByUUID (conn, uuid);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }
598

599 600 601 602 603 604 605 606 607
    /* Try XM for inactive domains. */
    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        ret = xenXMDomainLookupByUUID (conn, uuid);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

    /* Not found. */
    xenUnifiedError (conn, VIR_ERR_NO_DOMAIN, __FUNCTION__);
608
    return NULL;
609 610 611 612
}

static virDomainPtr
xenUnifiedDomainLookupByName (virConnectPtr conn,
613
                              const char *name)
614
{
615
    GET_PRIVATE(conn);
616
    virDomainPtr ret;
617

618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

    /* Try proxy. */
    if (priv->opened[XEN_UNIFIED_PROXY_OFFSET]) {
        ret = xenProxyLookupByName (conn, name);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonLookupByName (conn, name);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

    /* Try xenstore for inactive domains. */
    if (priv->opened[XEN_UNIFIED_XS_OFFSET]) {
        ret = xenStoreLookupByName (conn, name);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }

    /* Try XM for inactive domains. */
    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        ret = xenXMDomainLookupByName (conn, name);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }
650

651 652
    /* Not found. */
    xenUnifiedError (conn, VIR_ERR_NO_DOMAIN, __FUNCTION__);
653
    return NULL;
654 655 656 657 658
}

static int
xenUnifiedDomainSuspend (virDomainPtr dom)
{
659
    GET_PRIVATE(dom->conn);
660
    int i;
661

662 663 664
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
665
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
666
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
667
            priv->opened[i] &&
668 669 670
            drivers[i]->domainSuspend &&
            drivers[i]->domainSuspend (dom) == 0)
            return 0;
671

672 673 674
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSuspend &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSuspend (dom) == 0)
675
        return 0;
676

677
    return -1;
678 679 680 681 682
}

static int
xenUnifiedDomainResume (virDomainPtr dom)
{
683
    GET_PRIVATE(dom->conn);
684
    int i;
685

686 687 688
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
689
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
690
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
691
            priv->opened[i] &&
692 693 694
            drivers[i]->domainResume &&
            drivers[i]->domainResume (dom) == 0)
            return 0;
695

696 697 698
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainResume &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainResume (dom) == 0)
699
        return 0;
700

701
    return -1;
702 703 704 705 706
}

static int
xenUnifiedDomainShutdown (virDomainPtr dom)
{
707
    GET_PRIVATE(dom->conn);
708
    int i;
709

710 711 712
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainShutdown &&
713 714
            drivers[i]->domainShutdown (dom) == 0)
            return 0;
715

716
    return -1;
717 718 719 720 721
}

static int
xenUnifiedDomainReboot (virDomainPtr dom, unsigned int flags)
{
722
    GET_PRIVATE(dom->conn);
723
    int i;
724

725 726 727
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainReboot &&
728 729
            drivers[i]->domainReboot (dom, flags) == 0)
            return 0;
730

731
    return -1;
732 733 734 735 736
}

static int
xenUnifiedDomainDestroy (virDomainPtr dom)
{
737
    GET_PRIVATE(dom->conn);
738
    int i;
739

740 741 742
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
743
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
744
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
745
            priv->opened[i] &&
746 747 748
            drivers[i]->domainDestroy &&
            drivers[i]->domainDestroy (dom) == 0)
            return 0;
749

750
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
751 752
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainDestroy &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainDestroy (dom) == 0)
753
        return 0;
754

755
    return -1;
756 757 758 759 760
}

static char *
xenUnifiedDomainGetOSType (virDomainPtr dom)
{
761
    GET_PRIVATE(dom->conn);
762 763
    int i;
    char *ret;
764

765 766
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetOSType) {
767 768 769
            ret = drivers[i]->domainGetOSType (dom);
            if (ret) return ret;
        }
770

771
    return NULL;
772 773 774 775 776
}

static unsigned long
xenUnifiedDomainGetMaxMemory (virDomainPtr dom)
{
777
    GET_PRIVATE(dom->conn);
778 779
    int i;
    unsigned long ret;
780

781 782
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetMaxMemory) {
783 784 785
            ret = drivers[i]->domainGetMaxMemory (dom);
            if (ret != 0) return ret;
        }
786

787
    return 0;
788 789 790 791 792
}

static int
xenUnifiedDomainSetMaxMemory (virDomainPtr dom, unsigned long memory)
{
793
    GET_PRIVATE(dom->conn);
794
    int i;
795

796 797 798
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainSetMaxMemory &&
799 800
            drivers[i]->domainSetMaxMemory (dom, memory) == 0)
            return 0;
801

802
    return -1;
803 804 805 806 807
}

static int
xenUnifiedDomainSetMemory (virDomainPtr dom, unsigned long memory)
{
808
    GET_PRIVATE(dom->conn);
809
    int i;
810

811 812 813
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainSetMemory &&
814 815
            drivers[i]->domainSetMemory (dom, memory) == 0)
            return 0;
816

817
    return -1;
818 819 820 821 822
}

static int
xenUnifiedDomainGetInfo (virDomainPtr dom, virDomainInfoPtr info)
{
823
    GET_PRIVATE(dom->conn);
824
    int i;
825

826 827 828
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainGetInfo &&
829 830
            drivers[i]->domainGetInfo (dom, info) == 0)
            return 0;
831

832
    return -1;
833 834 835 836 837
}

static int
xenUnifiedDomainSave (virDomainPtr dom, const char *to)
{
838
    GET_PRIVATE(dom->conn);
839
    int i;
840

841 842 843
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainSave &&
844 845
            drivers[i]->domainSave (dom, to) == 0)
            return 0;
846

847
    return -1;
848 849 850 851 852
}

static int
xenUnifiedDomainRestore (virConnectPtr conn, const char *from)
{
853
    GET_PRIVATE(conn);
854
    int i;
855

856 857 858
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainRestore &&
859 860
            drivers[i]->domainRestore (conn, from) == 0)
            return 0;
861

862
    return -1;
863 864 865 866 867
}

static int
xenUnifiedDomainCoreDump (virDomainPtr dom, const char *to, int flags)
{
868
    GET_PRIVATE(dom->conn);
869
    int i;
870

871 872 873
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainCoreDump &&
874 875
            drivers[i]->domainCoreDump (dom, to, flags) == 0)
            return 0;
876

877
    return -1;
878 879 880 881 882
}

static int
xenUnifiedDomainSetVcpus (virDomainPtr dom, unsigned int nvcpus)
{
883
    GET_PRIVATE(dom->conn);
884
    int i;
885

886 887 888
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
889
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
890
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
891
            priv->opened[i] &&
892 893 894
            drivers[i]->domainSetVcpus &&
            drivers[i]->domainSetVcpus (dom, nvcpus) == 0)
            return 0;
895

896 897 898
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSetVcpus &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSetVcpus (dom, nvcpus) == 0)
899
        return 0;
900

901
    return -1;
902 903 904 905
}

static int
xenUnifiedDomainPinVcpu (virDomainPtr dom, unsigned int vcpu,
906
                         unsigned char *cpumap, int maplen)
907
{
908
    GET_PRIVATE(dom->conn);
909
    int i;
910

911 912 913
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainPinVcpu &&
914 915
            drivers[i]->domainPinVcpu (dom, vcpu, cpumap, maplen) == 0)
            return 0;
916

917
    return -1;
918 919 920 921
}

static int
xenUnifiedDomainGetVcpus (virDomainPtr dom,
922 923
                          virVcpuInfoPtr info, int maxinfo,
                          unsigned char *cpumaps, int maplen)
924
{
925
    GET_PRIVATE(dom->conn);
926
    int i, ret;
927

928 929
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetVcpus) {
930 931 932 933
            ret = drivers[i]->domainGetVcpus (dom, info, maxinfo, cpumaps, maplen);
            if (ret > 0)
                return ret;
        }
934
    return -1;
935 936 937 938 939
}

static int
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom)
{
940
    GET_PRIVATE(dom->conn);
941
    int i, ret;
942

943 944
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetMaxVcpus) {
945 946 947
            ret = drivers[i]->domainGetMaxVcpus (dom);
            if (ret != 0) return ret;
        }
948

949
    return -1;
950 951 952 953 954
}

static char *
xenUnifiedDomainDumpXML (virDomainPtr dom, int flags)
{
955
    GET_PRIVATE(dom->conn);
956

957 958 959 960 961 962 963 964
    if (dom->id == -1 && priv->xendConfigVersion < 3 ) {
        if (priv->opened[XEN_UNIFIED_XM_OFFSET])
            return xenXMDomainDumpXML(dom, flags);
    } else {
        if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
            char *cpus, *res;
            cpus = xenDomainUsedCpus(dom);
            res = xenDaemonDomainDumpXML(dom, flags, cpus);
965
            VIR_FREE(cpus);
966
            return(res);
967
        }
968 969
        if (priv->opened[XEN_UNIFIED_PROXY_OFFSET])
            return xenProxyDomainDumpXML(dom, flags);
970
    }
971

972
    xenUnifiedError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
973
    return NULL;
974 975
}

976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
static int
xenUnifiedDomainMigratePrepare (virConnectPtr dconn,
                                char **cookie,
                                int *cookielen,
                                const char *uri_in,
                                char **uri_out,
                                unsigned long flags,
                                const char *dname,
                                unsigned long resource)
{
    GET_PRIVATE(dconn);

    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonDomainMigratePrepare (dconn, cookie, cookielen,
                                              uri_in, uri_out,
                                              flags, dname, resource);

    xenUnifiedError (dconn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
}

static int
xenUnifiedDomainMigratePerform (virDomainPtr dom,
                                const char *cookie,
                                int cookielen,
                                const char *uri,
                                unsigned long flags,
                                const char *dname,
                                unsigned long resource)
{
    GET_PRIVATE(dom->conn);

    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonDomainMigratePerform (dom, cookie, cookielen, uri,
                                              flags, dname, resource);

    xenUnifiedError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
}

static virDomainPtr
xenUnifiedDomainMigrateFinish (virConnectPtr dconn,
                               const char *dname,
                               const char *cookie ATTRIBUTE_UNUSED,
                               int cookielen ATTRIBUTE_UNUSED,
                               const char *uri ATTRIBUTE_UNUSED,
                               unsigned long flags ATTRIBUTE_UNUSED)
{
    return xenUnifiedDomainLookupByName (dconn, dname);
}

1027 1028
static int
xenUnifiedListDefinedDomains (virConnectPtr conn, char **const names,
1029
                              int maxnames)
1030
{
1031
    GET_PRIVATE(conn);
1032 1033
    int i;
    int ret;
1034

1035 1036
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->listDefinedDomains) {
1037 1038 1039
            ret = drivers[i]->listDefinedDomains (conn, names, maxnames);
            if (ret >= 0) return ret;
        }
1040

1041
    return -1;
1042 1043 1044 1045 1046
}

static int
xenUnifiedNumOfDefinedDomains (virConnectPtr conn)
{
1047
    GET_PRIVATE(conn);
1048 1049
    int i;
    int ret;
1050

1051 1052
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->numOfDefinedDomains) {
1053 1054 1055
            ret = drivers[i]->numOfDefinedDomains (conn);
            if (ret >= 0) return ret;
        }
1056

1057
    return -1;
1058 1059 1060 1061 1062
}

static int
xenUnifiedDomainCreate (virDomainPtr dom)
{
1063
    GET_PRIVATE(dom->conn);
1064
    int i;
1065

1066 1067
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainCreate &&
1068 1069
            drivers[i]->domainCreate (dom) == 0)
            return 0;
1070

1071
    return -1;
1072 1073 1074 1075 1076
}

static virDomainPtr
xenUnifiedDomainDefineXML (virConnectPtr conn, const char *xml)
{
1077
    GET_PRIVATE(conn);
1078 1079
    int i;
    virDomainPtr ret;
1080

1081 1082
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainDefineXML) {
1083 1084 1085
            ret = drivers[i]->domainDefineXML (conn, xml);
            if (ret) return ret;
        }
1086

1087
    return NULL;
1088 1089 1090 1091 1092
}

static int
xenUnifiedDomainUndefine (virDomainPtr dom)
{
1093
    GET_PRIVATE(dom->conn);
1094
    int i;
1095

1096 1097
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainUndefine &&
1098 1099
            drivers[i]->domainUndefine (dom) == 0)
            return 0;
1100

1101
    return -1;
1102 1103 1104
}

static int
1105
xenUnifiedDomainAttachDevice (virDomainPtr dom, const char *xml)
1106
{
1107
    GET_PRIVATE(dom->conn);
1108
    int i;
1109

1110 1111
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainAttachDevice &&
1112 1113
            drivers[i]->domainAttachDevice (dom, xml) == 0)
            return 0;
1114

1115
    return -1;
1116 1117 1118
}

static int
1119
xenUnifiedDomainDetachDevice (virDomainPtr dom, const char *xml)
1120
{
1121
    GET_PRIVATE(dom->conn);
1122
    int i;
1123

1124 1125
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainDetachDevice &&
1126 1127
            drivers[i]->domainDetachDevice (dom, xml) == 0)
            return 0;
1128

1129
    return -1;
1130 1131
}

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
static int
xenUnifiedDomainGetAutostart (virDomainPtr dom, int *autostart)
{
    GET_PRIVATE(dom->conn);
    int i;

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetAutostart &&
            drivers[i]->domainGetAutostart (dom, autostart) == 0)
            return 0;

    return -1;
}

static int
xenUnifiedDomainSetAutostart (virDomainPtr dom, int autostart)
{
    GET_PRIVATE(dom->conn);
    int i;

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainSetAutostart &&
            drivers[i]->domainSetAutostart (dom, autostart) == 0)
            return 0;

    return -1;
}

1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
static char *
xenUnifiedDomainGetSchedulerType (virDomainPtr dom, int *nparams)
{
    GET_PRIVATE(dom->conn);
    int i;
    char *schedulertype;

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; i++) {
        if (priv->opened[i] && drivers[i]->domainGetSchedulerType) {
            schedulertype = drivers[i]->domainGetSchedulerType (dom, nparams);
1170 1171
            if (schedulertype != NULL)
                return(schedulertype);
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
        }
    }
    return(NULL);
}

static int
xenUnifiedDomainGetSchedulerParameters (virDomainPtr dom,
                    virSchedParameterPtr params, int *nparams)
{
    GET_PRIVATE(dom->conn);
    int i, ret;

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
        if (priv->opened[i] && drivers[i]->domainGetSchedulerParameters) {
           ret = drivers[i]->domainGetSchedulerParameters(dom, params, nparams);
1187 1188 1189
           if (ret == 0)
               return(0);
        }
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
    }
    return(-1);
}

static int
xenUnifiedDomainSetSchedulerParameters (virDomainPtr dom,
                    virSchedParameterPtr params, int nparams)
{
    GET_PRIVATE(dom->conn);
    int i, ret;

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
        if (priv->opened[i] && drivers[i]->domainSetSchedulerParameters) {
           ret = drivers[i]->domainSetSchedulerParameters(dom, params, nparams);
1204 1205 1206
           if (ret == 0)
               return 0;
        }
1207 1208 1209 1210 1211
    }

    return(-1);
}

1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
static int
xenUnifiedDomainBlockStats (virDomainPtr dom, const char *path,
                            struct _virDomainBlockStats *stats)
{
    GET_PRIVATE (dom->conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
        return xenHypervisorDomainBlockStats (dom, path, stats);

    xenUnifiedError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
}

static int
xenUnifiedDomainInterfaceStats (virDomainPtr dom, const char *path,
                                struct _virDomainInterfaceStats *stats)
{
    GET_PRIVATE (dom->conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
        return xenHypervisorDomainInterfaceStats (dom, path, stats);

    xenUnifiedError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
}

R
Richard W.M. Jones 已提交
1238 1239 1240
static int
xenUnifiedDomainBlockPeek (virDomainPtr dom, const char *path,
                           unsigned long long offset, size_t size,
1241
                           void *buffer, unsigned int flags ATTRIBUTE_UNUSED)
R
Richard W.M. Jones 已提交
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
{
    int r;
    GET_PRIVATE (dom->conn);

    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        r = xenDaemonDomainBlockPeek (dom, path, offset, size, buffer);
        if (r != -2) return r;
        /* r == -2 means declined, so fall through to XM driver ... */
    }

    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        if (xenXMDomainBlockPeek (dom, path, offset, size, buffer) == 0)
            return 0;
    }

    xenUnifiedError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
}

1261 1262 1263 1264 1265 1266 1267
static int
xenUnifiedNodeGetCellsFreeMemory (virConnectPtr conn, unsigned long long *freeMems,
                                  int startCell, int maxCells)
{
    GET_PRIVATE (conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
1268
        return xenHypervisorNodeGetCellsFreeMemory (conn, freeMems,
1269 1270 1271 1272 1273 1274
                                                    startCell, maxCells);

    xenUnifiedError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
}

1275 1276 1277 1278 1279 1280 1281 1282
static unsigned long long
xenUnifiedNodeGetFreeMemory (virConnectPtr conn)
{
    unsigned long long freeMem = 0;
    int ret;
    GET_PRIVATE (conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
1283
        ret = xenHypervisorNodeGetCellsFreeMemory (conn, &freeMem,
1284
                                                    -1, 1);
1285 1286 1287
        if (ret != 1)
            return (0);
        return(freeMem);
1288 1289 1290 1291 1292 1293
    }

    xenUnifiedError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return(0);
}

1294 1295
/*----- Register with libvirt.c, and initialise Xen drivers. -----*/

1296 1297 1298
#define HV_VERSION ((DOM0_INTERFACE_VERSION >> 24) * 1000000 +         \
                    ((DOM0_INTERFACE_VERSION >> 16) & 0xFF) * 1000 +   \
                    (DOM0_INTERFACE_VERSION & 0xFFFF))
1299 1300 1301

/* The interface which we export upwards to libvirt.c. */
static virDriver xenUnifiedDriver = {
1302
    .no = VIR_DRV_XEN_UNIFIED,
1303
    .name = "Xen",
1304
    .ver = HV_VERSION,
1305
    .probe 			= xenUnifiedProbe,
1306 1307
    .open 			= xenUnifiedOpen,
    .close 			= xenUnifiedClose,
1308
    .supports_feature   = xenUnifiedSupportsFeature,
1309 1310
    .type 			= xenUnifiedType,
    .version 			= xenUnifiedVersion,
1311
    .getHostname    = xenUnifiedGetHostname,
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
    .getMaxVcpus 			= xenUnifiedGetMaxVcpus,
    .nodeGetInfo 			= xenUnifiedNodeGetInfo,
    .getCapabilities 		= xenUnifiedGetCapabilities,
    .listDomains 			= xenUnifiedListDomains,
    .numOfDomains 		= xenUnifiedNumOfDomains,
    .domainCreateLinux 		= xenUnifiedDomainCreateLinux,
    .domainLookupByID 		= xenUnifiedDomainLookupByID,
    .domainLookupByUUID 		= xenUnifiedDomainLookupByUUID,
    .domainLookupByName 		= xenUnifiedDomainLookupByName,
    .domainSuspend 		= xenUnifiedDomainSuspend,
    .domainResume 		= xenUnifiedDomainResume,
    .domainShutdown 		= xenUnifiedDomainShutdown,
    .domainReboot 		= xenUnifiedDomainReboot,
    .domainDestroy 		= xenUnifiedDomainDestroy,
    .domainGetOSType 		= xenUnifiedDomainGetOSType,
    .domainGetMaxMemory 		= xenUnifiedDomainGetMaxMemory,
    .domainSetMaxMemory 		= xenUnifiedDomainSetMaxMemory,
    .domainSetMemory 		= xenUnifiedDomainSetMemory,
    .domainGetInfo 		= xenUnifiedDomainGetInfo,
    .domainSave 			= xenUnifiedDomainSave,
    .domainRestore 		= xenUnifiedDomainRestore,
    .domainCoreDump 		= xenUnifiedDomainCoreDump,
    .domainSetVcpus 		= xenUnifiedDomainSetVcpus,
    .domainPinVcpu 		= xenUnifiedDomainPinVcpu,
    .domainGetVcpus 		= xenUnifiedDomainGetVcpus,
    .domainGetMaxVcpus 		= xenUnifiedDomainGetMaxVcpus,
    .domainDumpXML 		= xenUnifiedDomainDumpXML,
    .listDefinedDomains 		= xenUnifiedListDefinedDomains,
    .numOfDefinedDomains 		= xenUnifiedNumOfDefinedDomains,
    .domainCreate 		= xenUnifiedDomainCreate,
    .domainDefineXML 		= xenUnifiedDomainDefineXML,
    .domainUndefine 		= xenUnifiedDomainUndefine,
    .domainAttachDevice 		= xenUnifiedDomainAttachDevice,
    .domainDetachDevice 		= xenUnifiedDomainDetachDevice,
1346 1347
    .domainGetAutostart             = xenUnifiedDomainGetAutostart,
    .domainSetAutostart             = xenUnifiedDomainSetAutostart,
1348 1349 1350
    .domainGetSchedulerType	= xenUnifiedDomainGetSchedulerType,
    .domainGetSchedulerParameters	= xenUnifiedDomainGetSchedulerParameters,
    .domainSetSchedulerParameters	= xenUnifiedDomainSetSchedulerParameters,
1351 1352 1353
    .domainMigratePrepare		= xenUnifiedDomainMigratePrepare,
    .domainMigratePerform		= xenUnifiedDomainMigratePerform,
    .domainMigrateFinish		= xenUnifiedDomainMigrateFinish,
1354 1355
    .domainBlockStats	= xenUnifiedDomainBlockStats,
    .domainInterfaceStats = xenUnifiedDomainInterfaceStats,
R
Richard W.M. Jones 已提交
1356
    .domainBlockPeek	= xenUnifiedDomainBlockPeek,
1357
    .nodeGetCellsFreeMemory = xenUnifiedNodeGetCellsFreeMemory,
1358
    .getFreeMemory = xenUnifiedNodeGetFreeMemory,
1359 1360
};

1361 1362 1363 1364 1365 1366 1367
/**
 * xenUnifiedRegister:
 *
 * Register xen related drivers
 *
 * Returns the driver priority or -1 in case of error.
 */
1368 1369 1370
int
xenUnifiedRegister (void)
{
1371 1372 1373 1374 1375 1376
    /* Ignore failures here. */
    (void) xenHypervisorInit ();
    (void) xenProxyInit ();
    (void) xenDaemonInit ();
    (void) xenStoreInit ();
    (void) xenXMInit ();
1377

1378
    return virRegisterDriver (&xenUnifiedDriver);
1379 1380 1381
}

#endif /* WITH_XEN */