xen_unified.c 34.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * xen_unified.c: Unified Xen driver.
 *
 * Copyright (C) 2007 Red Hat, Inc.
 *
 * See COPYING.LIB for the License of this software
 *
 * Richard W.M. Jones <rjones@redhat.com>
 */

#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>
24
#include <string.h>
25
#include <errno.h>
26 27
#include <sys/types.h>
#include <xen/dom0_ops.h>
28
#include <libxml/uri.h>
29 30 31 32 33 34 35 36 37 38

#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"
39
#include "xml.h"
40

41 42
static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info);
43 44 45 46 47 48
static int
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom);
static int
xenUnifiedDomainGetVcpus (virDomainPtr dom,
                          virVcpuInfoPtr info, int maxinfo,
                          unsigned char *cpumaps, int maplen);
49

50
/* The five Xen drivers below us. */
51 52 53 54 55 56
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,
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
};

/**
 * 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,
74
                     errmsg, info, NULL, 0, 0, errmsg, info);
75 76
}

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
/*
 * Helper functions currently used in the NUMA code
 * Those variables should not be accessed directly but through helper 
 * functions xenNbCells() and xenNbCpu() available to all Xen backends 
 */
static int nbNodeCells = -1;
static int nbNodeCpus = -1;

/**
 * xenNumaInit:
 * @conn: pointer to the hypervisor connection
 *
 * Initializer for previous variables. We currently assume that
 * the number of physical CPU and the numebr of NUMA cell is fixed
 * 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
 *
 * Number of NUMa cells present in the actual Node
 *
 * 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
 *
123
 * Number of CPUs present in the actual Node
124
 *
125
 * Returns the number of CPUs available on that Node
126 127 128 129 130 131 132
 */
int xenNbCpus(virConnectPtr conn) {
    if (nbNodeCpus < 0)
        xenNumaInit(conn);
    return(nbNodeCpus);
}

133 134 135 136 137 138 139 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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
/**
 * 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);

    cpulist = (char *) calloc(nb_cpu, sizeof(char));
    if (cpulist == NULL)
        goto done;
    cpuinfo = malloc(sizeof(virVcpuInfo) * nb_vcpu);
    if (cpuinfo == NULL)
        goto done;
    cpumaplen = VIR_CPU_MAPLEN(VIR_NODEINFO_MAXCPUS(nodeinfo));
    cpumap = (unsigned char *) calloc(nb_vcpu, cpumaplen);
    if (cpumap == NULL)
        goto done;

    if ((ncpus = xenUnifiedDomainGetVcpus(dom, cpuinfo, nb_vcpu,
                                          cpumap, cpumaplen)) >= 0) {
	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;
		        
		}
	    }
	}
        res = virSaveCpuSet(dom->conn, cpulist, nb_cpu);
    }

done:
    if (cpulist != NULL)
        free(cpulist);
    if (cpumap != NULL)
        free(cpumap);
    if (cpuinfo != NULL)
        free(cpuinfo);
    return(res);
}

208 209 210 211 212 213 214 215 216 217 218 219
/*----- 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.
 */

static int
220
xenUnifiedOpen (virConnectPtr conn, xmlURIPtr uri, int flags)
221
{
222 223
    int i, j;
    xenUnifiedPrivatePtr priv;
224

225
    /* Refuse any scheme which isn't "xen://" or "http://". */
226 227
    if (uri->scheme &&
        strcasecmp(uri->scheme, "xen") != 0 &&
228
        strcasecmp(uri->scheme, "http") != 0)
229 230 231 232 233 234 235
        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.
     */
236
    if (!uri->scheme && (!uri->path || uri->path[0] != '/'))
237
        return VIR_DRV_OPEN_DECLINED;
238 239

    /* Refuse any xen:// URI with a server specified - allow remote to do it */
240
    if (uri->scheme && strcasecmp(uri->scheme, "xen") == 0 && uri->server)
241
        return VIR_DRV_OPEN_DECLINED;
242 243

    /* Allocate per-connection private data. */
244
    priv = calloc (1, sizeof *priv);
245
    if (!priv) {
246
        xenUnifiedError (NULL, VIR_ERR_NO_MEMORY, "allocating private data");
247 248 249 250 251 252 253 254 255 256 257 258
        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;

259 260
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
        priv->opened[i] = 0;
261

262 263 264 265 266
        /* Only use XM driver for Xen <= 3.0.3 (ie xendConfigVersion <= 2) */
        if (drivers[i] == &xenXMDriver &&
            priv->xendConfigVersion > 2)
            continue;

267
        /* Ignore proxy for root */
268
        if (i == XEN_UNIFIED_PROXY_OFFSET && getuid() == 0)
269 270
            continue;

271 272 273 274
        if (drivers[i]->open) {
#ifdef ENABLE_DEBUG
            fprintf (stderr, "libvirt: xenUnifiedOpen: trying Xen sub-driver %d\n", i);
#endif
275
            if (drivers[i]->open (conn, uri, flags) == VIR_DRV_OPEN_SUCCESS)
276 277 278 279 280 281
                priv->opened[i] = 1;
#ifdef ENABLE_DEBUG
            fprintf (stderr, "libvirt: xenUnifiedOpen: Xen sub-driver %d open %s\n",
                     i, priv->opened[i] ? "ok" : "failed");
#endif
        }
282 283 284

        /* If as root, then all drivers must succeed.
           If non-root, then only proxy must succeed */
285 286
        if (!priv->opened[i] &&
            (getuid() == 0 || i == XEN_UNIFIED_PROXY_OFFSET)) {
287
            for (j = 0; j < i; ++j)
288
                if (priv->opened[j]) drivers[j]->close (conn);
289 290 291 292
            free (priv);
            /* The assumption is that one of the underlying drivers
             * has set virterror already.
             */
293 294
            return VIR_DRV_OPEN_ERROR;
        }
295 296
    }

297
    return VIR_DRV_OPEN_SUCCESS;
298 299
}

300 301 302
#define GET_PRIVATE(conn) \
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) (conn)->privateData

303 304 305
static int
xenUnifiedClose (virConnectPtr conn)
{
306
    GET_PRIVATE(conn);
307
    int i;
308

309 310
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->close)
311
            (void) drivers[i]->close (conn);
312

313 314
    free (conn->privateData);
    conn->privateData = NULL;
315

316
    return 0;
317 318 319 320 321
}

static const char *
xenUnifiedType (virConnectPtr conn)
{
322
    GET_PRIVATE(conn);
323
    int i;
324

325
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
326 327
        if (priv->opened[i])
            return "Xen";
328

329
    return NULL;
330 331
}

332 333 334 335 336 337 338 339 340 341
/* 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;
    }
}

342 343 344
static int
xenUnifiedVersion (virConnectPtr conn, unsigned long *hvVer)
{
345
    GET_PRIVATE(conn);
346
    int i;
347

348 349 350
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->version &&
351 352
            drivers[i]->version (conn, hvVer) == 0)
            return 0;
353

354
    return -1;
355 356
}

357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
/* 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;
}

379 380 381
static int
xenUnifiedGetMaxVcpus (virConnectPtr conn, const char *type)
{
382
    GET_PRIVATE(conn);
383

384 385 386 387
    if (type && STRCASENEQ (type, "Xen")) {
        xenUnifiedError (conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return -1;
    }
388

389 390 391 392 393 394
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
        return xenHypervisorGetMaxVcpus (conn, type);
    else {
        xenUnifiedError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
        return -1;
    }
395 396 397 398 399
}

static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info)
{
400
    GET_PRIVATE(conn);
401
    int i;
402

403 404 405
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->nodeGetInfo &&
406 407
            drivers[i]->nodeGetInfo (conn, info) == 0)
            return 0;
408

409
    return -1;
410 411 412 413 414
}

static char *
xenUnifiedGetCapabilities (virConnectPtr conn)
{
415
    GET_PRIVATE(conn);
416 417
    int i;
    char *ret;
418

419 420
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->getCapabilities) {
421 422 423
            ret = drivers[i]->getCapabilities (conn);
            if (ret) return ret;
        }
424

425
    return NULL;
426 427 428 429 430
}

static int
xenUnifiedListDomains (virConnectPtr conn, int *ids, int maxids)
{
431
    GET_PRIVATE(conn);
432
    int i, ret;
433

434 435
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->listDomains) {
436 437 438
            ret = drivers[i]->listDomains (conn, ids, maxids);
            if (ret >= 0) return ret;
        }
439

440
    return -1;
441 442 443 444 445
}

static int
xenUnifiedNumOfDomains (virConnectPtr conn)
{
446
    GET_PRIVATE(conn);
447
    int i, ret;
448

449 450
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->numOfDomains) {
451 452 453
            ret = drivers[i]->numOfDomains (conn);
            if (ret >= 0) return ret;
        }
454

455
    return -1;
456 457 458 459
}

static virDomainPtr
xenUnifiedDomainCreateLinux (virConnectPtr conn,
460
                             const char *xmlDesc, unsigned int flags)
461
{
462
    GET_PRIVATE(conn);
463 464
    int i;
    virDomainPtr ret;
465

466 467
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainCreateLinux) {
468 469 470
            ret = drivers[i]->domainCreateLinux (conn, xmlDesc, flags);
            if (ret) return ret;
        }
471

472
    return NULL;
473 474
}

475 476 477 478
/* 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.
 */
479 480 481
static virDomainPtr
xenUnifiedDomainLookupByID (virConnectPtr conn, int id)
{
482
    GET_PRIVATE(conn);
483
    virDomainPtr ret;
484

485 486 487 488 489
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

490 491 492 493 494 495 496
    /* 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;
    }

497 498 499 500 501 502 503 504 505 506 507 508 509
    /* 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;
    }
510

511 512
    /* Not found. */
    xenUnifiedError (conn, VIR_ERR_NO_DOMAIN, __FUNCTION__);
513
    return NULL;
514 515 516 517
}

static virDomainPtr
xenUnifiedDomainLookupByUUID (virConnectPtr conn,
518
                              const unsigned char *uuid)
519
{
520
    GET_PRIVATE(conn);
521
    virDomainPtr ret;
522

523 524 525 526 527
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

528 529 530 531 532 533 534
    /* 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;
    }

535 536 537 538 539 540 541 542 543 544 545 546 547
    /* 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;
    }
548

549 550 551 552 553 554 555 556 557
    /* 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__);
558
    return NULL;
559 560 561 562
}

static virDomainPtr
xenUnifiedDomainLookupByName (virConnectPtr conn,
563
                              const char *name)
564
{
565
    GET_PRIVATE(conn);
566
    virDomainPtr ret;
567

568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
    /* 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;
    }
600

601 602
    /* Not found. */
    xenUnifiedError (conn, VIR_ERR_NO_DOMAIN, __FUNCTION__);
603
    return NULL;
604 605 606 607 608
}

static int
xenUnifiedDomainSuspend (virDomainPtr dom)
{
609
    GET_PRIVATE(dom->conn);
610
    int i;
611

612 613 614
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
615
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
616
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
617
            priv->opened[i] &&
618 619 620
            drivers[i]->domainSuspend &&
            drivers[i]->domainSuspend (dom) == 0)
            return 0;
621

622 623 624
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSuspend &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSuspend (dom) == 0)
625
        return 0;
626

627
    return -1;
628 629 630 631 632
}

static int
xenUnifiedDomainResume (virDomainPtr dom)
{
633
    GET_PRIVATE(dom->conn);
634
    int i;
635

636 637 638
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
639
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
640
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
641
            priv->opened[i] &&
642 643 644
            drivers[i]->domainResume &&
            drivers[i]->domainResume (dom) == 0)
            return 0;
645

646 647 648
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainResume &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainResume (dom) == 0)
649
        return 0;
650

651
    return -1;
652 653 654 655 656
}

static int
xenUnifiedDomainShutdown (virDomainPtr dom)
{
657
    GET_PRIVATE(dom->conn);
658
    int i;
659

660 661 662
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainShutdown &&
663 664
            drivers[i]->domainShutdown (dom) == 0)
            return 0;
665

666
    return -1;
667 668 669 670 671
}

static int
xenUnifiedDomainReboot (virDomainPtr dom, unsigned int flags)
{
672
    GET_PRIVATE(dom->conn);
673
    int i;
674

675 676 677
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainReboot &&
678 679
            drivers[i]->domainReboot (dom, flags) == 0)
            return 0;
680

681
    return -1;
682 683 684 685 686
}

static int
xenUnifiedDomainDestroy (virDomainPtr dom)
{
687
    GET_PRIVATE(dom->conn);
688
    int i;
689

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

700
    if (priv->opened[i] &&
701 702
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainDestroy &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainDestroy (dom) == 0)
703
        return 0;
704

705
    return -1;
706 707 708 709 710
}

static char *
xenUnifiedDomainGetOSType (virDomainPtr dom)
{
711
    GET_PRIVATE(dom->conn);
712 713
    int i;
    char *ret;
714

715 716
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetOSType) {
717 718 719
            ret = drivers[i]->domainGetOSType (dom);
            if (ret) return ret;
        }
720

721
    return NULL;
722 723 724 725 726
}

static unsigned long
xenUnifiedDomainGetMaxMemory (virDomainPtr dom)
{
727
    GET_PRIVATE(dom->conn);
728 729
    int i;
    unsigned long ret;
730

731 732
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetMaxMemory) {
733 734 735
            ret = drivers[i]->domainGetMaxMemory (dom);
            if (ret != 0) return ret;
        }
736

737
    return 0;
738 739 740 741 742
}

static int
xenUnifiedDomainSetMaxMemory (virDomainPtr dom, unsigned long memory)
{
743
    GET_PRIVATE(dom->conn);
744
    int i;
745

746 747 748
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainSetMaxMemory &&
749 750
            drivers[i]->domainSetMaxMemory (dom, memory) == 0)
            return 0;
751

752
    return -1;
753 754 755 756 757
}

static int
xenUnifiedDomainSetMemory (virDomainPtr dom, unsigned long memory)
{
758
    GET_PRIVATE(dom->conn);
759
    int i;
760

761 762 763
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainSetMemory &&
764 765
            drivers[i]->domainSetMemory (dom, memory) == 0)
            return 0;
766

767
    return -1;
768 769 770 771 772
}

static int
xenUnifiedDomainGetInfo (virDomainPtr dom, virDomainInfoPtr info)
{
773
    GET_PRIVATE(dom->conn);
774
    int i;
775

776 777 778
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainGetInfo &&
779 780
            drivers[i]->domainGetInfo (dom, info) == 0)
            return 0;
781

782
    return -1;
783 784 785 786 787
}

static int
xenUnifiedDomainSave (virDomainPtr dom, const char *to)
{
788
    GET_PRIVATE(dom->conn);
789
    int i;
790

791 792 793
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainSave &&
794 795
            drivers[i]->domainSave (dom, to) == 0)
            return 0;
796

797
    return -1;
798 799 800 801 802
}

static int
xenUnifiedDomainRestore (virConnectPtr conn, const char *from)
{
803
    GET_PRIVATE(conn);
804
    int i;
805

806 807 808
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainRestore &&
809 810
            drivers[i]->domainRestore (conn, from) == 0)
            return 0;
811

812
    return -1;
813 814 815 816 817
}

static int
xenUnifiedDomainCoreDump (virDomainPtr dom, const char *to, int flags)
{
818
    GET_PRIVATE(dom->conn);
819
    int i;
820

821 822 823
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainCoreDump &&
824 825
            drivers[i]->domainCoreDump (dom, to, flags) == 0)
            return 0;
826

827
    return -1;
828 829 830 831 832
}

static int
xenUnifiedDomainSetVcpus (virDomainPtr dom, unsigned int nvcpus)
{
833
    GET_PRIVATE(dom->conn);
834
    int i;
835

836 837 838
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
839
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
840
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
841
            priv->opened[i] &&
842 843 844
            drivers[i]->domainSetVcpus &&
            drivers[i]->domainSetVcpus (dom, nvcpus) == 0)
            return 0;
845

846 847 848
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSetVcpus &&
        drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainSetVcpus (dom, nvcpus) == 0)
849
        return 0;
850

851
    return -1;
852 853 854 855
}

static int
xenUnifiedDomainPinVcpu (virDomainPtr dom, unsigned int vcpu,
856
                         unsigned char *cpumap, int maplen)
857
{
858
    GET_PRIVATE(dom->conn);
859
    int i;
860

861 862 863
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
            drivers[i]->domainPinVcpu &&
864 865
            drivers[i]->domainPinVcpu (dom, vcpu, cpumap, maplen) == 0)
            return 0;
866

867
    return -1;
868 869 870 871
}

static int
xenUnifiedDomainGetVcpus (virDomainPtr dom,
872 873
                          virVcpuInfoPtr info, int maxinfo,
                          unsigned char *cpumaps, int maplen)
874
{
875
    GET_PRIVATE(dom->conn);
876
    int i, ret;
877

878 879
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetVcpus) {
880 881 882 883
            ret = drivers[i]->domainGetVcpus (dom, info, maxinfo, cpumaps, maplen);
            if (ret > 0)
                return ret;
        }
884
    return -1;
885 886 887 888 889
}

static int
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom)
{
890
    GET_PRIVATE(dom->conn);
891
    int i, ret;
892

893 894
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainGetMaxVcpus) {
895 896 897
            ret = drivers[i]->domainGetMaxVcpus (dom);
            if (ret != 0) return ret;
        }
898

899
    return -1;
900 901 902 903 904
}

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

907 908 909 910 911 912 913 914 915 916 917
    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);
	    if (cpus != NULL)
	        free(cpus);
	    return(res);
918
        }
919 920 921
        if (priv->opened[XEN_UNIFIED_PROXY_OFFSET])
            return xenProxyDomainDumpXML(dom, flags);
    } 
922

923
    xenUnifiedError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
924
    return NULL;
925 926
}

927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
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);
}

978 979
static int
xenUnifiedListDefinedDomains (virConnectPtr conn, char **const names,
980
                              int maxnames)
981
{
982
    GET_PRIVATE(conn);
983 984
    int i;
    int ret;
985

986 987
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->listDefinedDomains) {
988 989 990
            ret = drivers[i]->listDefinedDomains (conn, names, maxnames);
            if (ret >= 0) return ret;
        }
991

992
    return -1;
993 994 995 996 997
}

static int
xenUnifiedNumOfDefinedDomains (virConnectPtr conn)
{
998
    GET_PRIVATE(conn);
999 1000
    int i;
    int ret;
1001

1002 1003
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->numOfDefinedDomains) {
1004 1005 1006
            ret = drivers[i]->numOfDefinedDomains (conn);
            if (ret >= 0) return ret;
        }
1007

1008
    return -1;
1009 1010 1011 1012 1013
}

static int
xenUnifiedDomainCreate (virDomainPtr dom)
{
1014
    GET_PRIVATE(dom->conn);
1015
    int i;
1016

1017 1018
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainCreate &&
1019 1020
            drivers[i]->domainCreate (dom) == 0)
            return 0;
1021

1022
    return -1;
1023 1024 1025 1026 1027
}

static virDomainPtr
xenUnifiedDomainDefineXML (virConnectPtr conn, const char *xml)
{
1028
    GET_PRIVATE(conn);
1029 1030
    int i;
    virDomainPtr ret;
1031

1032 1033
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainDefineXML) {
1034 1035 1036
            ret = drivers[i]->domainDefineXML (conn, xml);
            if (ret) return ret;
        }
1037

1038
    return NULL;
1039 1040 1041 1042 1043
}

static int
xenUnifiedDomainUndefine (virDomainPtr dom)
{
1044
    GET_PRIVATE(dom->conn);
1045
    int i;
1046

1047 1048
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainUndefine &&
1049 1050
            drivers[i]->domainUndefine (dom) == 0)
            return 0;
1051

1052
    return -1;
1053 1054 1055
}

static int
1056
xenUnifiedDomainAttachDevice (virDomainPtr dom, const char *xml)
1057
{
1058
    GET_PRIVATE(dom->conn);
1059
    int i;
1060

1061 1062
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainAttachDevice &&
1063 1064
            drivers[i]->domainAttachDevice (dom, xml) == 0)
            return 0;
1065

1066
    return -1;
1067 1068 1069
}

static int
1070
xenUnifiedDomainDetachDevice (virDomainPtr dom, const char *xml)
1071
{
1072
    GET_PRIVATE(dom->conn);
1073
    int i;
1074

1075 1076
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] && drivers[i]->domainDetachDevice &&
1077 1078
            drivers[i]->domainDetachDevice (dom, xml) == 0)
            return 0;
1079

1080
    return -1;
1081 1082
}

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
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);
	    if (schedulertype != NULL)
		return(schedulertype); 
        }
    }
    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);
	   if (ret == 0)
	       return(0);
	}
    }
    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);
	   if (ret == 0)
	       return 0;
	}
    }

    return(-1);
}

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

1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
static int
xenUnifiedNodeGetCellsFreeMemory (virConnectPtr conn, unsigned long long *freeMems,
                                  int startCell, int maxCells)
{
    GET_PRIVATE (conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
        return xenHypervisorNodeGetCellsFreeMemory (conn, freeMems, 
                                                    startCell, maxCells);

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

1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
static unsigned long long
xenUnifiedNodeGetFreeMemory (virConnectPtr conn)
{
    unsigned long long freeMem = 0;
    int ret;
    GET_PRIVATE (conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
        ret = xenHypervisorNodeGetCellsFreeMemory (conn, &freeMem, 
                                                    -1, 1);
	if (ret != 1)
	    return (0);
	return(freeMem);
    }

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

1194 1195
/*----- Register with libvirt.c, and initialise Xen drivers. -----*/

1196 1197 1198
#define VERSION ((DOM0_INTERFACE_VERSION >> 24) * 1000000 +         \
                 ((DOM0_INTERFACE_VERSION >> 16) & 0xFF) * 1000 +	\
                 (DOM0_INTERFACE_VERSION & 0xFFFF))
1199 1200 1201

/* The interface which we export upwards to libvirt.c. */
static virDriver xenUnifiedDriver = {
1202
    .no = VIR_DRV_XEN_UNIFIED,
1203
    .name = "Xen",
1204 1205 1206
    .ver = VERSION,
    .open 			= xenUnifiedOpen,
    .close 			= xenUnifiedClose,
1207
    .supports_feature   = xenUnifiedSupportsFeature,
1208 1209
    .type 			= xenUnifiedType,
    .version 			= xenUnifiedVersion,
1210
    .getHostname    = xenUnifiedGetHostname,
1211 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 1238 1239 1240 1241 1242 1243 1244
    .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,
1245 1246 1247
    .domainGetSchedulerType	= xenUnifiedDomainGetSchedulerType,
    .domainGetSchedulerParameters	= xenUnifiedDomainGetSchedulerParameters,
    .domainSetSchedulerParameters	= xenUnifiedDomainSetSchedulerParameters,
1248 1249 1250
    .domainMigratePrepare		= xenUnifiedDomainMigratePrepare,
    .domainMigratePerform		= xenUnifiedDomainMigratePerform,
    .domainMigrateFinish		= xenUnifiedDomainMigrateFinish,
1251 1252
    .domainBlockStats	= xenUnifiedDomainBlockStats,
    .domainInterfaceStats = xenUnifiedDomainInterfaceStats,
1253
    .nodeGetCellsFreeMemory = xenUnifiedNodeGetCellsFreeMemory,
1254
    .getFreeMemory = xenUnifiedNodeGetFreeMemory,
1255 1256
};

1257 1258 1259 1260 1261 1262 1263
/**
 * xenUnifiedRegister:
 *
 * Register xen related drivers
 *
 * Returns the driver priority or -1 in case of error.
 */
1264 1265 1266
int
xenUnifiedRegister (void)
{
1267 1268 1269 1270 1271 1272
    /* Ignore failures here. */
    (void) xenHypervisorInit ();
    (void) xenProxyInit ();
    (void) xenDaemonInit ();
    (void) xenStoreInit ();
    (void) xenXMInit ();
1273

1274
    return virRegisterDriver (&xenUnifiedDriver);
1275 1276 1277
}

#endif /* WITH_XEN */
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291

/*
 * vim: set tabstop=4:
 * vim: set shiftwidth=4:
 * vim: set expandtab:
 */
/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */