xen_driver.c 66.6 KB
Newer Older
1
/*
2
 * xen_driver.c: Unified Xen driver.
3
 *
4
 * Copyright (C) 2007-2011 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
/* Note:
 *
 * This driver provides a unified interface to the five
16
 * separate underlying Xen drivers (xen_internal,
17 18 19 20 21 22 23
 * 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
#include <sys/types.h>
27
#include <fcntl.h>
28
#include <xen/dom0_ops.h>
29
#include <libxml/uri.h>
30

31
#include "virterror_internal.h"
32
#include "logging.h"
33
#include "datatypes.h"
34
#include "xen_driver.h"
35

36
#include "xen_sxpr.h"
37
#include "xen_xm.h"
38
#include "xen_hypervisor.h"
39 40 41
#include "xend_internal.h"
#include "xs_internal.h"
#include "xm_internal.h"
42
#if WITH_XEN_INOTIFY
43
# include "xen_inotify.h"
44
#endif
45
#include "xml.h"
46
#include "util.h"
47
#include "memory.h"
48 49
#include "node_device_conf.h"
#include "pci.h"
50
#include "uuid.h"
51
#include "fdstream.h"
E
Eric Blake 已提交
52
#include "virfile.h"
J
Jim Fehlig 已提交
53
#include "command.h"
54

55 56
#define VIR_FROM_THIS VIR_FROM_XEN

57 58
static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info);
59 60 61 62 63 64
static int
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom);
static int
xenUnifiedDomainGetVcpus (virDomainPtr dom,
                          virVcpuInfoPtr info, int maxinfo,
                          unsigned char *cpumaps, int maplen);
65

66
/* The five Xen drivers below us. */
D
Daniel P. Berrange 已提交
67
static struct xenUnifiedDriver const * const drivers[XEN_UNIFIED_NR_DRIVERS] = {
68 69 70 71
    [XEN_UNIFIED_HYPERVISOR_OFFSET] = &xenHypervisorDriver,
    [XEN_UNIFIED_XEND_OFFSET] = &xenDaemonDriver,
    [XEN_UNIFIED_XS_OFFSET] = &xenStoreDriver,
    [XEN_UNIFIED_XM_OFFSET] = &xenXMDriver,
72 73 74
#if WITH_XEN_INOTIFY
    [XEN_UNIFIED_INOTIFY_OFFSET] = &xenInotifyDriver,
#endif
75 76
};

77
#if defined WITH_LIBVIRTD || defined __sun
J
John Levon 已提交
78
static int inside_daemon;
79
#endif
J
John Levon 已提交
80

81
#define xenUnifiedError(code, ...)                                         \
82
        virReportErrorHelper(VIR_FROM_XEN, code, __FILE__,                 \
83
                             __FUNCTION__, __LINE__, __VA_ARGS__)
84

85 86 87 88 89
/**
 * xenNumaInit:
 * @conn: pointer to the hypervisor connection
 *
 * Initializer for previous variables. We currently assume that
R
Richard W.M. Jones 已提交
90
 * the number of physical CPU and the number of NUMA cell is fixed
91 92 93 94 95
 * until reboot which might be false in future Xen implementations.
 */
static void
xenNumaInit(virConnectPtr conn) {
    virNodeInfo nodeInfo;
D
Daniel P. Berrange 已提交
96
    xenUnifiedPrivatePtr priv;
97 98 99 100 101 102
    int ret;

    ret = xenUnifiedNodeGetInfo(conn, &nodeInfo);
    if (ret < 0)
        return;

D
Daniel P. Berrange 已提交
103
    priv = conn->privateData;
104

D
Daniel P. Berrange 已提交
105 106
    priv->nbNodeCells = nodeInfo.nodes;
    priv->nbNodeCpus = nodeInfo.cpus;
107 108
}

D
Daniel P. Berrange 已提交
109

110 111 112 113 114 115 116 117 118 119 120 121 122 123
/**
 * 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;
D
Daniel P. Berrange 已提交
124
    int ncpus;
125 126 127 128 129 130 131 132
    int nb_vcpu;
    char *cpulist = NULL;
    unsigned char *cpumap = NULL;
    size_t cpumaplen;
    int nb = 0;
    int n, m;
    virVcpuInfoPtr cpuinfo = NULL;
    virNodeInfo nodeinfo;
D
Daniel P. Berrange 已提交
133
    xenUnifiedPrivatePtr priv;
134 135 136 137

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

D
Daniel P. Berrange 已提交
138 139 140
    priv = dom->conn->privateData;

    if (priv->nbNodeCpus <= 0)
141 142 143 144 145 146 147
        return(NULL);
    nb_vcpu = xenUnifiedDomainGetMaxVcpus(dom);
    if (nb_vcpu <= 0)
        return(NULL);
    if (xenUnifiedNodeGetInfo(dom->conn, &nodeinfo) < 0)
        return(NULL);

148
    if (VIR_ALLOC_N(cpulist, priv->nbNodeCpus) < 0) {
149
        virReportOOMError();
150
        goto done;
151 152
    }
    if (VIR_ALLOC_N(cpuinfo, nb_vcpu) < 0) {
153
        virReportOOMError();
154
        goto done;
155
    }
156
    cpumaplen = VIR_CPU_MAPLEN(VIR_NODEINFO_MAXCPUS(nodeinfo));
157
    if (xalloc_oversized(nb_vcpu, cpumaplen) ||
158
        VIR_ALLOC_N(cpumap, nb_vcpu * cpumaplen) < 0) {
159
        virReportOOMError();
160
        goto done;
161
    }
162 163 164

    if ((ncpus = xenUnifiedDomainGetVcpus(dom, cpuinfo, nb_vcpu,
                                          cpumap, cpumaplen)) >= 0) {
165
        for (n = 0 ; n < ncpus ; n++) {
D
Daniel P. Berrange 已提交
166
            for (m = 0 ; m < priv->nbNodeCpus; m++) {
167 168 169 170 171
                if ((cpulist[m] == 0) &&
                    (VIR_CPU_USABLE(cpumap, cpumaplen, n, m))) {
                    cpulist[m] = 1;
                    nb++;
                    /* if all CPU are used just return NULL */
D
Daniel P. Berrange 已提交
172
                    if (nb == priv->nbNodeCpus)
173 174 175 176 177
                        goto done;

                }
            }
        }
178
        res = virDomainCpuSetFormat(cpulist, priv->nbNodeCpus);
179 180 181
    }

done:
182 183 184
    VIR_FREE(cpulist);
    VIR_FREE(cpumap);
    VIR_FREE(cpuinfo);
185 186 187
    return(res);
}

J
John Levon 已提交
188 189 190
#ifdef WITH_LIBVIRTD

static int
191
xenInitialize (int privileged ATTRIBUTE_UNUSED)
J
John Levon 已提交
192 193 194 195 196 197
{
    inside_daemon = 1;
    return 0;
}

static virStateDriver state_driver = {
198
    .name = "Xen",
J
John Levon 已提交
199 200 201 202 203
    .initialize = xenInitialize,
};

#endif

204 205 206 207 208 209 210 211 212 213 214
/*----- 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.
 */

215
static int
216 217 218 219
xenUnifiedProbe (void)
{
#ifdef __linux__
    if (virFileExists("/proc/xen"))
220
        return 1;
221
#endif
222
#ifdef __sun
223
    int fd;
224

225 226
    if ((fd = open("/dev/xen/domcaps", O_RDONLY)) >= 0) {
        VIR_FORCE_CLOSE(fd);
227
        return 1;
228 229
    }
#endif
230
    return 0;
231 232
}

J
Jim Fehlig 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
#ifdef WITH_LIBXL
static int
xenUnifiedXendProbe (void)
{
    virCommandPtr cmd;
    int status;
    int ret = 0;

    cmd = virCommandNewArgList("/usr/sbin/xend", "status", NULL);
    if (virCommandRun(cmd, &status) == 0 && status == 0)
        ret = 1;
    virCommandFree(cmd);

    return ret;
}
#endif

250
static virDrvOpenStatus
251
xenUnifiedOpen (virConnectPtr conn, virConnectAuthPtr auth, unsigned int flags)
252
{
253
    int i, ret = VIR_DRV_OPEN_DECLINED;
254
    xenUnifiedPrivatePtr priv;
255
    virDomainEventCallbackListPtr cbList;
256

J
John Levon 已提交
257 258 259 260 261 262 263 264 265
#ifdef __sun
    /*
     * Only the libvirtd instance can open this driver.
     * Everything else falls back to the remote driver.
     */
    if (!inside_daemon)
        return VIR_DRV_OPEN_DECLINED;
#endif

266 267 268 269 270 271
    if (conn->uri == NULL) {
        if (!xenUnifiedProbe())
            return VIR_DRV_OPEN_DECLINED;

        conn->uri = xmlParseURI("xen:///");
        if (!conn->uri) {
272
            virReportOOMError();
273 274
            return VIR_DRV_OPEN_ERROR;
        }
275 276 277 278 279 280 281 282 283 284 285 286
    } else {
        if (conn->uri->scheme) {
            /* Decline any scheme which isn't "xen://" or "http://". */
            if (STRCASENEQ(conn->uri->scheme, "xen") &&
                STRCASENEQ(conn->uri->scheme, "http"))
                return VIR_DRV_OPEN_DECLINED;


            /* Return an error if the path isn't '' or '/' */
            if (conn->uri->path &&
                STRNEQ(conn->uri->path, "") &&
                STRNEQ(conn->uri->path, "/")) {
287
                xenUnifiedError(VIR_ERR_INTERNAL_ERROR,
288 289 290 291
                                _("unexpected Xen URI path '%s', try xen:///"),
                                conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
292

293 294 295 296 297 298
            /* Decline any xen:// URI with a server specified, allowing remote
             * driver to handle, but keep any http:/// URIs */
            if (STRCASEEQ(conn->uri->scheme, "xen") &&
                conn->uri->server)
                return VIR_DRV_OPEN_DECLINED;
        } else {
299
            return VIR_DRV_OPEN_DECLINED;
300 301
        }
    }
302

J
Jim Fehlig 已提交
303 304 305 306 307 308 309
#ifdef WITH_LIBXL
    /* Decline xen:// URI if xend is not running and libxenlight
     * driver is potentially available. */
    if (!xenUnifiedXendProbe())
        return VIR_DRV_OPEN_DECLINED;
#endif

310 311
    /* We now know the URI is definitely for this driver, so beyond
     * here, don't return DECLINED, always use ERROR */
312 313

    /* Allocate per-connection private data. */
314
    if (VIR_ALLOC(priv) < 0) {
315
        virReportOOMError();
316 317
        return VIR_DRV_OPEN_ERROR;
    }
D
Daniel P. Berrange 已提交
318
    if (virMutexInit(&priv->lock) < 0) {
319
        xenUnifiedError(VIR_ERR_INTERNAL_ERROR,
E
Eric Blake 已提交
320
                        "%s", _("cannot initialize mutex"));
D
Daniel P. Berrange 已提交
321 322 323
        VIR_FREE(priv);
        return VIR_DRV_OPEN_ERROR;
    }
324

325 326
    /* Allocate callback list */
    if (VIR_ALLOC(cbList) < 0) {
327
        virReportOOMError();
D
Daniel P. Berrange 已提交
328 329
        virMutexDestroy(&priv->lock);
        VIR_FREE(priv);
330 331
        return VIR_DRV_OPEN_ERROR;
    }
D
Daniel P. Berrange 已提交
332 333
    conn->privateData = priv;

334 335
    priv->domainEventCallbacks = cbList;

336 337 338 339 340
    priv->handle = -1;
    priv->xendConfigVersion = -1;
    priv->xshandle = NULL;


J
John Levon 已提交
341 342
    /* Hypervisor is only run with privilege & required to succeed */
    if (xenHavePrivilege()) {
343
        VIR_DEBUG("Trying hypervisor sub-driver");
E
Eric Blake 已提交
344
        if (xenHypervisorOpen(conn, auth, flags) == VIR_DRV_OPEN_SUCCESS) {
345
            VIR_DEBUG("Activated hypervisor sub-driver");
346
            priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] = 1;
347
        }
348
    }
349

350
    /* XenD is required to succeed if privileged */
351
    VIR_DEBUG("Trying XenD sub-driver");
E
Eric Blake 已提交
352
    if (xenDaemonOpen(conn, auth, flags) == VIR_DRV_OPEN_SUCCESS) {
353
        VIR_DEBUG("Activated XenD sub-driver");
354 355 356 357 358
        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) {
359
            VIR_DEBUG("Trying XM sub-driver");
E
Eric Blake 已提交
360
            if (xenXMOpen(conn, auth, flags) == VIR_DRV_OPEN_SUCCESS) {
361
                VIR_DEBUG("Activated XM sub-driver");
362 363 364
                priv->opened[XEN_UNIFIED_XM_OFFSET] = 1;
            }
        }
365
        VIR_DEBUG("Trying XS sub-driver");
E
Eric Blake 已提交
366
        if (xenStoreOpen(conn, auth, flags) == VIR_DRV_OPEN_SUCCESS) {
367
            VIR_DEBUG("Activated XS sub-driver");
368 369
            priv->opened[XEN_UNIFIED_XS_OFFSET] = 1;
        } else {
J
John Levon 已提交
370 371
            if (xenHavePrivilege())
                goto fail; /* XS is mandatory when privileged */
372 373
        }
    } else {
J
John Levon 已提交
374 375
        if (xenHavePrivilege()) {
            goto fail; /* XenD is mandatory when privileged */
376
        } else {
377
            VIR_DEBUG("Handing off for remote driver");
378 379
            ret = VIR_DRV_OPEN_DECLINED; /* Let remote_driver try instead */
            goto clean;
380
        }
381 382
    }

D
Daniel P. Berrange 已提交
383 384
    xenNumaInit(conn);

385
    if (!(priv->caps = xenHypervisorMakeCapabilities(conn))) {
386
        VIR_DEBUG("Failed to make capabilities");
387 388 389
        goto fail;
    }

390
#if WITH_XEN_INOTIFY
391
    if (xenHavePrivilege()) {
392
        VIR_DEBUG("Trying Xen inotify sub-driver");
E
Eric Blake 已提交
393
        if (xenInotifyOpen(conn, auth, flags) == VIR_DRV_OPEN_SUCCESS) {
394
            VIR_DEBUG("Activated Xen inotify sub-driver");
395 396
            priv->opened[XEN_UNIFIED_INOTIFY_OFFSET] = 1;
        }
397 398 399
    }
#endif

400
    return VIR_DRV_OPEN_SUCCESS;
401

402 403 404
fail:
    ret = VIR_DRV_OPEN_ERROR;
clean:
405
    VIR_DEBUG("Failed to activate a mandatory sub-driver");
406
    for (i = 0 ; i < XEN_UNIFIED_NR_DRIVERS ; i++)
407 408
        if (priv->opened[i])
            drivers[i]->xenClose(conn);
D
Daniel P. Berrange 已提交
409
    virMutexDestroy(&priv->lock);
410
    VIR_FREE(priv);
D
Daniel P. Berrange 已提交
411
    conn->privateData = NULL;
D
Daniel Veillard 已提交
412
    return ret;
413 414
}

415 416 417
#define GET_PRIVATE(conn) \
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) (conn)->privateData

418 419 420
static int
xenUnifiedClose (virConnectPtr conn)
{
421
    GET_PRIVATE(conn);
422
    int i;
423

424
    virCapabilitiesFree(priv->caps);
425 426
    virDomainEventCallbackListFree(priv->domainEventCallbacks);

427
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
428 429
        if (priv->opened[i])
            drivers[i]->xenClose(conn);
430

D
Daniel P. Berrange 已提交
431 432
    virMutexDestroy(&priv->lock);
    VIR_FREE(conn->privateData);
433

434
    return 0;
435 436
}

437 438 439 440 441 442 443 444 445 446 447

#define HV_VERSION ((DOM0_INTERFACE_VERSION >> 24) * 1000000 +         \
                    ((DOM0_INTERFACE_VERSION >> 16) & 0xFF) * 1000 +   \
                    (DOM0_INTERFACE_VERSION & 0xFFFF))

unsigned long xenUnifiedVersion(void)
{
    return HV_VERSION;
}


448 449 450
static const char *
xenUnifiedType (virConnectPtr conn)
{
451
    GET_PRIVATE(conn);
452
    int i;
453

454
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
455 456
        if (priv->opened[i])
            return "Xen";
457

458
    return NULL;
459 460
}

461 462 463 464 465
/* Which features are supported by this driver? */
static int
xenUnifiedSupportsFeature (virConnectPtr conn ATTRIBUTE_UNUSED, int feature)
{
    switch (feature) {
466 467 468 469 470
    case VIR_DRV_FEATURE_MIGRATION_V1:
    case VIR_DRV_FEATURE_MIGRATION_DIRECT:
        return 1;
    default:
        return 0;
471 472 473
    }
}

474
static int
475
xenUnifiedGetVersion (virConnectPtr conn, unsigned long *hvVer)
476
{
477
    GET_PRIVATE(conn);
478
    int i;
479

480 481
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
E
Eric Blake 已提交
482 483
            drivers[i]->xenVersion &&
            drivers[i]->xenVersion (conn, hvVer) == 0)
484
            return 0;
485

486
    return -1;
487 488
}

489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
static int
xenUnifiedIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 0;
}

static int
xenUnifiedIsSecure(virConnectPtr conn)
{
    GET_PRIVATE(conn);
    int ret = 1;

    /* All drivers are secure, except for XenD over TCP */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET] &&
        priv->addrfamily != AF_UNIX)
        ret = 0;

    return ret;
}

509 510 511 512 513 514 515
static int
xenUnifiedIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* XenD reconnects for each request */
    return 1;
}

516
int
517 518
xenUnifiedGetMaxVcpus (virConnectPtr conn, const char *type)
{
519
    GET_PRIVATE(conn);
520

521
    if (type && STRCASENEQ (type, "Xen")) {
522
        xenUnifiedError(VIR_ERR_INVALID_ARG, __FUNCTION__);
523 524
        return -1;
    }
525

526 527 528
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET])
        return xenHypervisorGetMaxVcpus (conn, type);
    else {
529
        xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
530 531
        return -1;
    }
532 533 534 535 536
}

static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info)
{
537
    GET_PRIVATE(conn);
538

539 540
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonNodeGetInfo(conn, info);
541
    return -1;
542 543 544 545 546
}

static char *
xenUnifiedGetCapabilities (virConnectPtr conn)
{
D
Daniel P. Berrange 已提交
547 548
    xenUnifiedPrivatePtr priv = conn->privateData;
    char *xml;
549

D
Daniel P. Berrange 已提交
550
    if (!(xml = virCapabilitiesFormatXML(priv->caps))) {
551
        virReportOOMError();
D
Daniel P. Berrange 已提交
552 553
        return NULL;
    }
554

D
Daniel P. Berrange 已提交
555
    return xml;
556 557 558 559 560
}

static int
xenUnifiedListDomains (virConnectPtr conn, int *ids, int maxids)
{
561
    GET_PRIVATE(conn);
562
    int ret;
563

564 565 566 567 568
    /* Try xenstore. */
    if (priv->opened[XEN_UNIFIED_XS_OFFSET]) {
        ret = xenStoreListDomains (conn, ids, maxids);
        if (ret >= 0) return ret;
    }
569

570 571 572 573 574 575 576 577 578 579 580 581
    /* Try HV. */
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
        ret = xenHypervisorListDomains (conn, ids, maxids);
        if (ret >= 0) return ret;
    }

    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonListDomains (conn, ids, maxids);
        if (ret >= 0) return ret;
    }

582
    return -1;
583 584 585 586 587
}

static int
xenUnifiedNumOfDomains (virConnectPtr conn)
{
588
    GET_PRIVATE(conn);
589
    int ret;
590

591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
    /* Try xenstore. */
    if (priv->opened[XEN_UNIFIED_XS_OFFSET]) {
        ret = xenStoreNumOfDomains (conn);
        if (ret >= 0) return ret;
    }

    /* Try HV. */
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
        ret = xenHypervisorNumOfDomains (conn);
        if (ret >= 0) return ret;
    }

    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonNumOfDomains (conn);
        if (ret >= 0) return ret;
    }

609
    return -1;
610 611 612
}

static virDomainPtr
613 614
xenUnifiedDomainCreateXML (virConnectPtr conn,
                           const char *xmlDesc, unsigned int flags)
615
{
616
    GET_PRIVATE(conn);
617

618 619
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonCreateXML(conn, xmlDesc, flags);
620
    return NULL;
621 622
}

623 624 625 626
/* 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.
 */
627 628 629
static virDomainPtr
xenUnifiedDomainLookupByID (virConnectPtr conn, int id)
{
630
    GET_PRIVATE(conn);
631
    virDomainPtr ret;
632

633 634 635 636 637
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

638 639 640 641 642 643 644
    /* 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;
    }

645 646 647 648 649 650
    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonLookupByID (conn, id);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }
651

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

static virDomainPtr
xenUnifiedDomainLookupByUUID (virConnectPtr conn,
659
                              const unsigned char *uuid)
660
{
661
    GET_PRIVATE(conn);
662
    virDomainPtr ret;
663

664 665 666 667 668
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

669 670 671 672 673 674 675
    /* 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;
    }

676 677 678 679 680 681
    /* Try xend. */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonLookupByUUID (conn, uuid);
        if (ret || conn->err.code != VIR_ERR_OK)
            return ret;
    }
682

683 684 685 686 687 688 689 690
    /* 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. */
691
    xenUnifiedError(VIR_ERR_NO_DOMAIN, __FUNCTION__);
692
    return NULL;
693 694 695 696
}

static virDomainPtr
xenUnifiedDomainLookupByName (virConnectPtr conn,
697
                              const char *name)
698
{
699
    GET_PRIVATE(conn);
700
    virDomainPtr ret;
701

702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
    /* Reset any connection-level errors in virterror first, in case
     * there is one hanging around from a previous call.
     */
    virConnResetLastError (conn);

    /* 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;
    }
727

728
    /* Not found. */
729
    xenUnifiedError(VIR_ERR_NO_DOMAIN, __FUNCTION__);
730
    return NULL;
731 732
}

733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751

static int
xenUnifiedDomainIsActive(virDomainPtr dom)
{
    virDomainPtr currdom;
    int ret = -1;

    /* ID field in dom may be outdated, so re-lookup */
    currdom = xenUnifiedDomainLookupByUUID(dom->conn, dom->uuid);

    if (currdom) {
        ret = currdom->id == -1 ? 0 : 1;
        virDomainFree(currdom);
    }

    return ret;
}

static int
752
xenUnifiedDomainIsPersistent(virDomainPtr dom)
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
{
    GET_PRIVATE(dom->conn);
    virDomainPtr currdom = NULL;
    int ret = -1;

    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        /* Old Xen, pre-inactive domain management.
         * If the XM driver can see the guest, it is definitely persistent */
        currdom = xenXMDomainLookupByUUID(dom->conn, dom->uuid);
        if (currdom)
            ret = 1;
        else
            ret = 0;
    } else {
        /* New Xen with inactive domain management */
        if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
            currdom = xenDaemonLookupByUUID(dom->conn, dom->uuid);
            if (currdom) {
                if (currdom->id == -1) {
                    /* If its inactive, then trivially, it must be persistent */
                    ret = 1;
                } else {
                    char *path;
                    char uuidstr[VIR_UUID_STRING_BUFLEN];

                    /* If its running there's no official way to tell, so we
                     * go behind xend's back & look at the config dir */

                    virUUIDFormat(dom->uuid, uuidstr);
                    if (virAsprintf(&path, "%s/%s", XEND_DOMAINS_DIR, uuidstr) < 0) {
783
                        virReportOOMError();
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
                        goto done;
                    }
                    if (access(path, R_OK) == 0)
                        ret = 1;
                    else if (errno == ENOENT)
                        ret = 0;
                }
            }
        }
    }

done:
    if (currdom)
        virDomainFree(currdom);

    return ret;
}

802 803 804 805 806 807
static int
xenUnifiedDomainIsUpdated(virDomainPtr dom ATTRIBUTE_UNUSED)
{
    return 0;
}

808 809 810
static int
xenUnifiedDomainSuspend (virDomainPtr dom)
{
811
    GET_PRIVATE(dom->conn);
812
    int i;
813

814 815 816
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
817
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
818
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
819
            priv->opened[i] &&
E
Eric Blake 已提交
820 821
            drivers[i]->xenDomainSuspend &&
            drivers[i]->xenDomainSuspend (dom) == 0)
822
            return 0;
823

824
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
E
Eric Blake 已提交
825
        xenHypervisorPauseDomain(dom) == 0)
826
        return 0;
827

828
    return -1;
829 830 831 832 833
}

static int
xenUnifiedDomainResume (virDomainPtr dom)
{
834
    GET_PRIVATE(dom->conn);
835
    int i;
836

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

847
    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
E
Eric Blake 已提交
848
        xenHypervisorResumeDomain(dom) == 0)
849
        return 0;
850

851
    return -1;
852 853 854 855 856
}

static int
xenUnifiedDomainShutdown (virDomainPtr dom)
{
857
    GET_PRIVATE(dom->conn);
858
    int i;
859

860 861
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
E
Eric Blake 已提交
862 863
            drivers[i]->xenDomainShutdown &&
            drivers[i]->xenDomainShutdown (dom) == 0)
864
            return 0;
865

866
    return -1;
867 868 869 870 871
}

static int
xenUnifiedDomainReboot (virDomainPtr dom, unsigned int flags)
{
872
    GET_PRIVATE(dom->conn);
873
    int i;
874

875 876
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
E
Eric Blake 已提交
877 878
            drivers[i]->xenDomainReboot &&
            drivers[i]->xenDomainReboot (dom, flags) == 0)
879
            return 0;
880

881
    return -1;
882 883
}

884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
static int
xenUnifiedDomainDestroyFlags(virDomainPtr dom,
                             unsigned int flags)
{
    GET_PRIVATE(dom->conn);
    int i;

    virCheckFlags(0, -1);

    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (i != XEN_UNIFIED_HYPERVISOR_OFFSET &&
            priv->opened[i] &&
E
Eric Blake 已提交
899 900
            drivers[i]->xenDomainDestroyFlags &&
            drivers[i]->xenDomainDestroyFlags(dom, flags) == 0)
901 902 903
            return 0;

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
E
Eric Blake 已提交
904
        xenHypervisorDestroyDomainFlags(dom, flags) == 0)
905 906 907 908 909
        return 0;

    return -1;
}

910 911 912 913 914 915
static int
xenUnifiedDomainDestroy(virDomainPtr dom)
{
    return xenUnifiedDomainDestroyFlags(dom, 0);
}

916 917 918
static char *
xenUnifiedDomainGetOSType (virDomainPtr dom)
{
919
    GET_PRIVATE(dom->conn);
920 921
    int i;
    char *ret;
922

923
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
924 925
        if (priv->opened[i] && drivers[i]->xenDomainGetOSType) {
            ret = drivers[i]->xenDomainGetOSType (dom);
926 927
            if (ret) return ret;
        }
928

929
    return NULL;
930 931 932 933 934
}

static unsigned long
xenUnifiedDomainGetMaxMemory (virDomainPtr dom)
{
935
    GET_PRIVATE(dom->conn);
936 937
    int i;
    unsigned long ret;
938

939
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
940 941
        if (priv->opened[i] && drivers[i]->xenDomainGetMaxMemory) {
            ret = drivers[i]->xenDomainGetMaxMemory (dom);
942 943
            if (ret != 0) return ret;
        }
944

945
    return 0;
946 947 948 949 950
}

static int
xenUnifiedDomainSetMaxMemory (virDomainPtr dom, unsigned long memory)
{
951
    GET_PRIVATE(dom->conn);
952
    int i;
953

954 955 956 957 958 959
    /* Prefer xend for setting max memory */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        if (xenDaemonDomainSetMaxMemory (dom, memory) == 0)
            return 0;
    }

960
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
961 962
        if (i != XEN_UNIFIED_XEND_OFFSET &&
            priv->opened[i] &&
E
Eric Blake 已提交
963 964
            drivers[i]->xenDomainSetMaxMemory &&
            drivers[i]->xenDomainSetMaxMemory (dom, memory) == 0)
965
            return 0;
966

967
    return -1;
968 969 970 971 972
}

static int
xenUnifiedDomainSetMemory (virDomainPtr dom, unsigned long memory)
{
973
    GET_PRIVATE(dom->conn);
974
    int i;
975

976 977
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
E
Eric Blake 已提交
978 979
            drivers[i]->xenDomainSetMemory &&
            drivers[i]->xenDomainSetMemory (dom, memory) == 0)
980
            return 0;
981

982
    return -1;
983 984 985 986 987
}

static int
xenUnifiedDomainGetInfo (virDomainPtr dom, virDomainInfoPtr info)
{
988
    GET_PRIVATE(dom->conn);
989
    int i;
990

991 992
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
E
Eric Blake 已提交
993 994
            drivers[i]->xenDomainGetInfo &&
            drivers[i]->xenDomainGetInfo (dom, info) == 0)
995
            return 0;
996

997
    return -1;
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 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
static int
xenUnifiedDomainGetState(virDomainPtr dom,
                         int *state,
                         int *reason,
                         unsigned int flags)
{
    GET_PRIVATE(dom->conn);
    int ret;

    virCheckFlags(0, -1);

    /* trying drivers in the same order as GetInfo for consistent results:
     * hypervisor, xend, xs, and xm */

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
        ret = xenHypervisorGetDomainState(dom, state, reason, flags);
        if (ret >= 0)
            return ret;
    }

    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonDomainGetState(dom, state, reason, flags);
        if (ret >= 0)
            return ret;
    }

    if (priv->opened[XEN_UNIFIED_XS_OFFSET]) {
        ret = xenStoreDomainGetState(dom, state, reason, flags);
        if (ret >= 0)
            return ret;
    }

    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        ret = xenXMDomainGetState(dom, state, reason, flags);
        if (ret >= 0)
            return ret;
    }

    return -1;
}

1041
static int
1042 1043
xenUnifiedDomainSaveFlags(virDomainPtr dom, const char *to, const char *dxml,
                          unsigned int flags)
1044
{
1045
    GET_PRIVATE(dom->conn);
1046

1047 1048 1049 1050 1051 1052 1053
    virCheckFlags(0, -1);
    if (dxml) {
        xenUnifiedError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                        _("xml modification unsupported"));
        return -1;
    }

1054 1055
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonDomainSave(dom, to);
1056
    return -1;
1057 1058 1059
}

static int
1060 1061 1062 1063 1064 1065 1066 1067
xenUnifiedDomainSave(virDomainPtr dom, const char *to)
{
    return xenUnifiedDomainSaveFlags(dom, to, NULL, 0);
}

static int
xenUnifiedDomainRestoreFlags(virConnectPtr conn, const char *from,
                             const char *dxml, unsigned int flags)
1068
{
1069
    GET_PRIVATE(conn);
1070

1071 1072 1073 1074 1075 1076 1077
    virCheckFlags(0, -1);
    if (dxml) {
        xenUnifiedError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                        _("xml modification unsupported"));
        return -1;
    }

1078 1079
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonDomainRestore(conn, from);
1080
    return -1;
1081 1082
}

1083 1084 1085 1086 1087 1088
static int
xenUnifiedDomainRestore (virConnectPtr conn, const char *from)
{
    return xenUnifiedDomainRestoreFlags(conn, from, NULL, 0);
}

1089
static int
1090
xenUnifiedDomainCoreDump (virDomainPtr dom, const char *to, unsigned int flags)
1091
{
1092
    GET_PRIVATE(dom->conn);
1093

1094 1095
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonDomainCoreDump(dom, to, flags);
1096
    return -1;
1097 1098 1099
}

static int
1100 1101
xenUnifiedDomainSetVcpusFlags (virDomainPtr dom, unsigned int nvcpus,
                               unsigned int flags)
1102
{
1103
    GET_PRIVATE(dom->conn);
1104
    int ret;
1105

1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

    /* At least one of LIVE or CONFIG must be set.  MAXIMUM cannot be
     * mixed with LIVE.  */
    if ((flags & (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) == 0 ||
        (flags & (VIR_DOMAIN_VCPU_MAXIMUM | VIR_DOMAIN_VCPU_LIVE)) ==
         (VIR_DOMAIN_VCPU_MAXIMUM | VIR_DOMAIN_VCPU_LIVE)) {
        xenUnifiedError(VIR_ERR_INVALID_ARG,
                        _("invalid flag combination: (0x%x)"), flags);
        return -1;
    }
    if (!nvcpus || (unsigned short) nvcpus != nvcpus) {
        xenUnifiedError(VIR_ERR_INVALID_ARG,
                        _("argument out of range: %d"), nvcpus);
1122 1123 1124
        return -1;
    }

1125 1126 1127
    /* Try non-hypervisor methods first, then hypervisor direct method
     * as a last resort.
     */
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonDomainSetVcpusFlags(dom, nvcpus, flags);
        if (ret != -2)
            return ret;
    }
    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        ret = xenXMDomainSetVcpusFlags(dom, nvcpus, flags);
        if (ret != -2)
            return ret;
    }
    if (flags == VIR_DOMAIN_VCPU_LIVE)
        return xenHypervisorSetVcpus(dom, nvcpus);
1140

1141
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1142
    return -1;
1143 1144
}

1145 1146 1147
static int
xenUnifiedDomainSetVcpus (virDomainPtr dom, unsigned int nvcpus)
{
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
    unsigned int flags = VIR_DOMAIN_VCPU_LIVE;
    xenUnifiedPrivatePtr priv;

    /* Per the documented API, it is hypervisor-dependent whether this
     * affects just _LIVE or _LIVE|_CONFIG; in xen's case, that
     * depends on xendConfigVersion.  */
    if (dom) {
        priv = dom->conn->privateData;
        if (priv->xendConfigVersion >= 3)
            flags |= VIR_DOMAIN_VCPU_CONFIG;
    }
    return xenUnifiedDomainSetVcpusFlags(dom, nvcpus, flags);
1160 1161
}

1162 1163
static int
xenUnifiedDomainPinVcpu (virDomainPtr dom, unsigned int vcpu,
1164
                         unsigned char *cpumap, int maplen)
1165
{
1166
    GET_PRIVATE(dom->conn);
1167
    int i;
1168

1169 1170
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
        if (priv->opened[i] &&
E
Eric Blake 已提交
1171 1172
            drivers[i]->xenDomainPinVcpu &&
            drivers[i]->xenDomainPinVcpu (dom, vcpu, cpumap, maplen) == 0)
1173
            return 0;
1174

1175
    return -1;
1176 1177 1178 1179
}

static int
xenUnifiedDomainGetVcpus (virDomainPtr dom,
1180 1181
                          virVcpuInfoPtr info, int maxinfo,
                          unsigned char *cpumaps, int maplen)
1182
{
1183
    GET_PRIVATE(dom->conn);
1184
    int i, ret;
1185

1186
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1187 1188
        if (priv->opened[i] && drivers[i]->xenDomainGetVcpus) {
            ret = drivers[i]->xenDomainGetVcpus (dom, info, maxinfo, cpumaps, maplen);
1189 1190 1191
            if (ret > 0)
                return ret;
        }
1192
    return -1;
1193 1194 1195
}

static int
1196
xenUnifiedDomainGetVcpusFlags (virDomainPtr dom, unsigned int flags)
1197
{
1198
    GET_PRIVATE(dom->conn);
1199
    int ret;
1200

1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

    if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
        ret = xenDaemonDomainGetVcpusFlags(dom, flags);
        if (ret != -2)
            return ret;
    }
    if (priv->opened[XEN_UNIFIED_XM_OFFSET]) {
        ret = xenXMDomainGetVcpusFlags(dom, flags);
        if (ret != -2)
            return ret;
    }
    if (flags == (VIR_DOMAIN_VCPU_CONFIG | VIR_DOMAIN_VCPU_MAXIMUM))
        return xenHypervisorGetVcpuMax(dom);
1217

1218
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1219
    return -1;
1220 1221
}

1222 1223 1224 1225 1226 1227 1228
static int
xenUnifiedDomainGetMaxVcpus (virDomainPtr dom)
{
    return xenUnifiedDomainGetVcpusFlags(dom, (VIR_DOMAIN_VCPU_LIVE |
                                               VIR_DOMAIN_VCPU_MAXIMUM));
}

1229
static char *
1230
xenUnifiedDomainGetXMLDesc(virDomainPtr dom, unsigned int flags)
1231
{
1232
    GET_PRIVATE(dom->conn);
1233

1234 1235
    if (dom->id == -1 && priv->xendConfigVersion < 3 ) {
        if (priv->opened[XEN_UNIFIED_XM_OFFSET])
1236
            return xenXMDomainGetXMLDesc(dom, flags);
1237 1238 1239
    } else {
        if (priv->opened[XEN_UNIFIED_XEND_OFFSET]) {
            char *cpus, *res;
D
Daniel P. Berrange 已提交
1240
            xenUnifiedLock(priv);
1241
            cpus = xenDomainUsedCpus(dom);
D
Daniel P. Berrange 已提交
1242
            xenUnifiedUnlock(priv);
1243
            res = xenDaemonDomainGetXMLDesc(dom, flags, cpus);
1244
            VIR_FREE(cpus);
1245
            return(res);
1246
        }
1247
    }
1248

1249
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1250
    return NULL;
1251 1252
}

1253 1254 1255 1256 1257

static char *
xenUnifiedDomainXMLFromNative(virConnectPtr conn,
                              const char *format,
                              const char *config,
E
Eric Blake 已提交
1258
                              unsigned int flags)
1259 1260 1261 1262
{
    virDomainDefPtr def = NULL;
    char *ret = NULL;
    virConfPtr conf = NULL;
1263 1264 1265
    int id;
    char * tty;
    int vncport;
1266 1267
    GET_PRIVATE(conn);

E
Eric Blake 已提交
1268 1269
    virCheckFlags(0, NULL);

1270 1271
    if (STRNEQ(format, XEN_CONFIG_FORMAT_XM) &&
        STRNEQ(format, XEN_CONFIG_FORMAT_SEXPR)) {
1272
        xenUnifiedError(VIR_ERR_INVALID_ARG,
1273 1274 1275 1276 1277
                        _("unsupported config type %s"), format);
        return NULL;
    }

    if (STREQ(format, XEN_CONFIG_FORMAT_XM)) {
1278
        conf = virConfReadMem(config, strlen(config), 0);
1279 1280 1281
        if (!conf)
            goto cleanup;

M
Markus Groß 已提交
1282
        def = xenParseXM(conf, priv->xendConfigVersion, priv->caps);
1283
    } else if (STREQ(format, XEN_CONFIG_FORMAT_SEXPR)) {
1284 1285 1286 1287 1288
        id = xenGetDomIdFromSxprString(config, priv->xendConfigVersion);
        xenUnifiedLock(priv);
        tty = xenStoreDomainGetConsolePath(conn, id);
        vncport = xenStoreDomainGetVNCPort(conn, id);
        xenUnifiedUnlock(priv);
M
Markus Groß 已提交
1289
        def = xenParseSxprString(config, priv->xendConfigVersion, tty,
1290
                                       vncport);
1291 1292 1293 1294
    }
    if (!def)
        goto cleanup;

1295
    ret = virDomainDefFormat(def, 0);
1296 1297 1298

cleanup:
    virDomainDefFree(def);
1299 1300
    if (conf)
        virConfFree(conf);
1301 1302 1303 1304 1305 1306 1307 1308 1309
    return ret;
}


#define MAX_CONFIG_SIZE (1024 * 65)
static char *
xenUnifiedDomainXMLToNative(virConnectPtr conn,
                            const char *format,
                            const char *xmlData,
E
Eric Blake 已提交
1310
                            unsigned int flags)
1311 1312 1313 1314 1315 1316
{
    virDomainDefPtr def = NULL;
    char *ret = NULL;
    virConfPtr conf = NULL;
    GET_PRIVATE(conn);

E
Eric Blake 已提交
1317 1318
    virCheckFlags(0, NULL);

1319 1320
    if (STRNEQ(format, XEN_CONFIG_FORMAT_XM) &&
        STRNEQ(format, XEN_CONFIG_FORMAT_SEXPR)) {
1321
        xenUnifiedError(VIR_ERR_INVALID_ARG,
1322 1323 1324 1325
                        _("unsupported config type %s"), format);
        goto cleanup;
    }

M
Matthias Bolte 已提交
1326 1327
    if (!(def = virDomainDefParseString(priv->caps, xmlData,
                                        1 << VIR_DOMAIN_VIRT_XEN, 0)))
1328 1329 1330 1331
        goto cleanup;

    if (STREQ(format, XEN_CONFIG_FORMAT_XM)) {
        int len = MAX_CONFIG_SIZE;
M
Markus Groß 已提交
1332
        conf = xenFormatXM(conn, def, priv->xendConfigVersion);
1333 1334 1335 1336
        if (!conf)
            goto cleanup;

        if (VIR_ALLOC_N(ret, len) < 0) {
1337
            virReportOOMError();
1338 1339 1340 1341 1342 1343 1344 1345
            goto cleanup;
        }

        if (virConfWriteMem(ret, &len, conf) < 0) {
            VIR_FREE(ret);
            goto cleanup;
        }
    } else if (STREQ(format, XEN_CONFIG_FORMAT_SEXPR)) {
M
Markus Groß 已提交
1346
        ret = xenFormatSxpr(conn, def, priv->xendConfigVersion);
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
    }

cleanup:
    virDomainDefFree(def);
    if (conf)
        virConfFree(conf);
    return ret;
}


1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
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);

E
Eric Blake 已提交
1369 1370
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

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

1376
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390
    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);

E
Eric Blake 已提交
1391 1392
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

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

1397
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1398 1399 1400 1401 1402 1403 1404 1405 1406
    return -1;
}

static virDomainPtr
xenUnifiedDomainMigrateFinish (virConnectPtr dconn,
                               const char *dname,
                               const char *cookie ATTRIBUTE_UNUSED,
                               int cookielen ATTRIBUTE_UNUSED,
                               const char *uri ATTRIBUTE_UNUSED,
1407
                               unsigned long flags)
1408
{
1409 1410 1411 1412
    virDomainPtr dom = NULL;
    char *domain_xml = NULL;
    virDomainPtr dom_new = NULL;

E
Eric Blake 已提交
1413 1414
    virCheckFlags(XEN_MIGRATION_FLAGS, NULL);

1415 1416 1417 1418 1419 1420
    dom = xenUnifiedDomainLookupByName (dconn, dname);
    if (! dom) {
        return NULL;
    }

    if (flags & VIR_MIGRATE_PERSIST_DEST) {
1421
        domain_xml = xenDaemonDomainGetXMLDesc(dom, 0, NULL);
1422
        if (! domain_xml) {
1423
            xenUnifiedError(VIR_ERR_MIGRATE_PERSIST_FAILED,
1424
                            "%s", _("failed to get XML representation of migrated domain"));
1425 1426 1427 1428 1429
            goto failure;
        }

        dom_new = xenDaemonDomainDefineXML (dconn, domain_xml);
        if (! dom_new) {
1430
            xenUnifiedError(VIR_ERR_MIGRATE_PERSIST_FAILED,
1431
                            "%s", _("failed to define domain on destination host"));
1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
            goto failure;
        }

        /* Free additional reference added by Define */
        virDomainFree (dom_new);
    }

    VIR_FREE (domain_xml);

    return dom;


failure:
    virDomainFree (dom);

    VIR_FREE (domain_xml);

    return NULL;
1450 1451
}

1452 1453
static int
xenUnifiedListDefinedDomains (virConnectPtr conn, char **const names,
1454
                              int maxnames)
1455
{
1456
    GET_PRIVATE(conn);
1457 1458
    int i;
    int ret;
1459

1460
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1461 1462
        if (priv->opened[i] && drivers[i]->xenListDefinedDomains) {
            ret = drivers[i]->xenListDefinedDomains (conn, names, maxnames);
1463 1464
            if (ret >= 0) return ret;
        }
1465

1466
    return -1;
1467 1468 1469 1470 1471
}

static int
xenUnifiedNumOfDefinedDomains (virConnectPtr conn)
{
1472
    GET_PRIVATE(conn);
1473 1474
    int i;
    int ret;
1475

1476
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1477 1478
        if (priv->opened[i] && drivers[i]->xenNumOfDefinedDomains) {
            ret = drivers[i]->xenNumOfDefinedDomains (conn);
1479 1480
            if (ret >= 0) return ret;
        }
1481

1482
    return -1;
1483 1484 1485
}

static int
1486
xenUnifiedDomainCreateWithFlags (virDomainPtr dom, unsigned int flags)
1487
{
1488
    GET_PRIVATE(dom->conn);
1489
    int i;
1490

1491 1492
    virCheckFlags(0, -1);

1493
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1494 1495
        if (priv->opened[i] && drivers[i]->xenDomainCreate &&
            drivers[i]->xenDomainCreate (dom) == 0)
1496
            return 0;
1497

1498
    return -1;
1499 1500
}

1501 1502 1503 1504 1505 1506
static int
xenUnifiedDomainCreate (virDomainPtr dom)
{
    return xenUnifiedDomainCreateWithFlags(dom, 0);
}

1507 1508 1509
static virDomainPtr
xenUnifiedDomainDefineXML (virConnectPtr conn, const char *xml)
{
1510
    GET_PRIVATE(conn);
1511 1512
    int i;
    virDomainPtr ret;
1513

1514
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1515 1516
        if (priv->opened[i] && drivers[i]->xenDomainDefineXML) {
            ret = drivers[i]->xenDomainDefineXML (conn, xml);
1517 1518
            if (ret) return ret;
        }
1519

1520
    return NULL;
1521 1522 1523
}

static int
1524
xenUnifiedDomainUndefineFlags (virDomainPtr dom, unsigned int flags)
1525
{
1526
    GET_PRIVATE(dom->conn);
1527
    int i;
1528

1529
    virCheckFlags(0, -1);
1530
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1531 1532
        if (priv->opened[i] && drivers[i]->xenDomainUndefine &&
            drivers[i]->xenDomainUndefine (dom) == 0)
1533
            return 0;
1534

1535
    return -1;
1536 1537
}

1538 1539 1540 1541 1542
static int
xenUnifiedDomainUndefine (virDomainPtr dom) {
    return xenUnifiedDomainUndefineFlags(dom, 0);
}

1543
static int
1544
xenUnifiedDomainAttachDevice (virDomainPtr dom, const char *xml)
1545 1546 1547
{
    GET_PRIVATE(dom->conn);
    int i;
1548
    unsigned int flags = VIR_DOMAIN_DEVICE_MODIFY_LIVE;
1549

1550 1551 1552 1553 1554 1555 1556 1557
    /*
     * HACK: xend with xendConfigVersion >= 3 does not support changing live
     * config without touching persistent config, we add the extra flag here
     * to make this API work
     */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET] &&
        priv->xendConfigVersion >= 3)
        flags |= VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
1558 1559

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1560 1561
        if (priv->opened[i] && drivers[i]->xenDomainAttachDeviceFlags &&
            drivers[i]->xenDomainAttachDeviceFlags(dom, xml, flags) == 0)
1562 1563 1564 1565 1566 1567 1568 1569
            return 0;

    return -1;
}

static int
xenUnifiedDomainAttachDeviceFlags (virDomainPtr dom, const char *xml,
                                   unsigned int flags)
1570
{
1571
    GET_PRIVATE(dom->conn);
1572
    int i;
1573

1574
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1575 1576
        if (priv->opened[i] && drivers[i]->xenDomainAttachDeviceFlags &&
            drivers[i]->xenDomainAttachDeviceFlags(dom, xml, flags) == 0)
1577
            return 0;
1578

1579
    return -1;
1580 1581 1582
}

static int
1583
xenUnifiedDomainDetachDevice (virDomainPtr dom, const char *xml)
1584 1585 1586
{
    GET_PRIVATE(dom->conn);
    int i;
1587
    unsigned int flags = VIR_DOMAIN_DEVICE_MODIFY_LIVE;
1588

1589 1590 1591 1592 1593 1594 1595 1596
    /*
     * HACK: xend with xendConfigVersion >= 3 does not support changing live
     * config without touching persistent config, we add the extra flag here
     * to make this API work
     */
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET] &&
        priv->xendConfigVersion >= 3)
        flags |= VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
1597 1598

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1599 1600
        if (priv->opened[i] && drivers[i]->xenDomainDetachDeviceFlags &&
            drivers[i]->xenDomainDetachDeviceFlags(dom, xml, flags) == 0)
1601 1602 1603 1604 1605 1606 1607 1608
            return 0;

    return -1;
}

static int
xenUnifiedDomainDetachDeviceFlags (virDomainPtr dom, const char *xml,
                                   unsigned int flags)
1609
{
1610
    GET_PRIVATE(dom->conn);
1611
    int i;
1612

1613
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i)
E
Eric Blake 已提交
1614 1615
        if (priv->opened[i] && drivers[i]->xenDomainDetachDeviceFlags &&
            drivers[i]->xenDomainDetachDeviceFlags(dom, xml, flags) == 0)
1616
            return 0;
1617

1618
    return -1;
1619 1620
}

1621 1622 1623 1624 1625 1626
static int
xenUnifiedDomainUpdateDeviceFlags (virDomainPtr dom, const char *xml,
                                   unsigned int flags)
{
    GET_PRIVATE(dom->conn);

1627 1628
    if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
        return xenDaemonUpdateDeviceFlags(dom, xml, flags);
1629 1630 1631
    return -1;
}

1632 1633 1634 1635 1636
static int
xenUnifiedDomainGetAutostart (virDomainPtr dom, int *autostart)
{
    GET_PRIVATE(dom->conn);

1637 1638 1639 1640 1641 1642 1643
    if (priv->xendConfigVersion < 3) {
        if (priv->opened[XEN_UNIFIED_XM_OFFSET])
            return xenXMDomainGetAutostart(dom, autostart);
    } else {
        if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
            return xenDaemonDomainGetAutostart(dom, autostart);
    }
1644

1645
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1646 1647 1648 1649 1650 1651 1652 1653
    return -1;
}

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

1654 1655 1656 1657 1658 1659 1660
    if (priv->xendConfigVersion < 3) {
        if (priv->opened[XEN_UNIFIED_XM_OFFSET])
            return xenXMDomainSetAutostart(dom, autostart);
    } else {
        if (priv->opened[XEN_UNIFIED_XEND_OFFSET])
            return xenDaemonDomainSetAutostart(dom, autostart);
    }
1661

1662
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1663 1664 1665
    return -1;
}

1666 1667 1668 1669 1670 1671 1672 1673
static char *
xenUnifiedDomainGetSchedulerType (virDomainPtr dom, int *nparams)
{
    GET_PRIVATE(dom->conn);
    int i;
    char *schedulertype;

    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; i++) {
E
Eric Blake 已提交
1674 1675
        if (priv->opened[i] && drivers[i]->xenDomainGetSchedulerType) {
            schedulertype = drivers[i]->xenDomainGetSchedulerType (dom, nparams);
1676 1677
            if (schedulertype != NULL)
                return(schedulertype);
1678 1679 1680 1681 1682 1683
        }
    }
    return(NULL);
}

static int
1684 1685 1686 1687
xenUnifiedDomainGetSchedulerParametersFlags(virDomainPtr dom,
                                            virTypedParameterPtr params,
                                            int *nparams,
                                            unsigned int flags)
1688 1689 1690 1691
{
    GET_PRIVATE(dom->conn);
    int i, ret;

1692 1693
    virCheckFlags(0, -1);

1694
    for (i = 0; i < XEN_UNIFIED_NR_DRIVERS; ++i) {
E
Eric Blake 已提交
1695 1696
        if (priv->opened[i] && drivers[i]->xenDomainGetSchedulerParameters) {
           ret = drivers[i]->xenDomainGetSchedulerParameters(dom, params, nparams);
1697 1698 1699
           if (ret == 0)
               return(0);
        }
1700 1701 1702 1703 1704
    }
    return(-1);
}

static int
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
xenUnifiedDomainGetSchedulerParameters(virDomainPtr dom,
                                       virTypedParameterPtr params,
                                       int *nparams)
{
    return xenUnifiedDomainGetSchedulerParametersFlags(dom, params,
                                                       nparams, 0);
}

static int
xenUnifiedDomainSetSchedulerParametersFlags(virDomainPtr dom,
                                            virTypedParameterPtr params,
                                            int nparams,
                                            unsigned int flags)
1718 1719 1720 1721
{
    GET_PRIVATE(dom->conn);
    int i, ret;

1722 1723
    virCheckFlags(0, -1);

1724 1725
    /* do the hypervisor call last to get better error */
    for (i = XEN_UNIFIED_NR_DRIVERS - 1; i >= 0; i--) {
E
Eric Blake 已提交
1726 1727
        if (priv->opened[i] && drivers[i]->xenDomainSetSchedulerParameters) {
           ret = drivers[i]->xenDomainSetSchedulerParameters(dom, params, nparams);
1728 1729 1730
           if (ret == 0)
               return 0;
        }
1731 1732 1733 1734 1735
    }

    return(-1);
}

1736 1737 1738 1739 1740 1741 1742 1743 1744
static int
xenUnifiedDomainSetSchedulerParameters(virDomainPtr dom,
                                       virTypedParameterPtr params,
                                       int nparams)
{
    return xenUnifiedDomainSetSchedulerParametersFlags(dom, params,
                                                       nparams, 0);
}

1745 1746 1747 1748 1749 1750 1751 1752 1753
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);

1754
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
    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);

1767
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1768 1769 1770
    return -1;
}

R
Richard W.M. Jones 已提交
1771 1772 1773
static int
xenUnifiedDomainBlockPeek (virDomainPtr dom, const char *path,
                           unsigned long long offset, size_t size,
E
Eric Blake 已提交
1774
                           void *buffer, unsigned int flags)
R
Richard W.M. Jones 已提交
1775 1776 1777 1778
{
    int r;
    GET_PRIVATE (dom->conn);

E
Eric Blake 已提交
1779 1780
    virCheckFlags(0, -1);

R
Richard W.M. Jones 已提交
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
    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;
    }

1792
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
R
Richard W.M. Jones 已提交
1793 1794 1795
    return -1;
}

1796 1797 1798 1799 1800 1801 1802
static int
xenUnifiedNodeGetCellsFreeMemory (virConnectPtr conn, unsigned long long *freeMems,
                                  int startCell, int maxCells)
{
    GET_PRIVATE (conn);

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

1806
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1807 1808 1809
    return -1;
}

1810 1811 1812 1813 1814 1815 1816 1817
static unsigned long long
xenUnifiedNodeGetFreeMemory (virConnectPtr conn)
{
    unsigned long long freeMem = 0;
    int ret;
    GET_PRIVATE (conn);

    if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET]) {
1818
        ret = xenHypervisorNodeGetCellsFreeMemory (conn, &freeMem,
1819
                                                    -1, 1);
1820 1821 1822
        if (ret != 1)
            return (0);
        return(freeMem);
1823 1824
    }

1825
    xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1826 1827 1828
    return(0);
}

1829

1830
static int
1831 1832 1833 1834
xenUnifiedDomainEventRegister(virConnectPtr conn,
                              virConnectDomainEventCallback callback,
                              void *opaque,
                              virFreeCallback freefunc)
1835
{
D
Daniel P. Berrange 已提交
1836 1837
    GET_PRIVATE (conn);

1838
    int ret;
D
Daniel P. Berrange 已提交
1839
    xenUnifiedLock(priv);
1840

1841
    if (priv->xsWatch == -1) {
1842
        xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
D
Daniel P. Berrange 已提交
1843
        xenUnifiedUnlock(priv);
1844 1845 1846
        return -1;
    }

1847 1848 1849
    ret = virDomainEventCallbackListAdd(conn, priv->domainEventCallbacks,
                                        callback, opaque, freefunc);

D
Daniel P. Berrange 已提交
1850
    xenUnifiedUnlock(priv);
1851
    return (ret);
1852 1853
}

1854

1855
static int
1856 1857
xenUnifiedDomainEventDeregister(virConnectPtr conn,
                                virConnectDomainEventCallback callback)
1858 1859 1860
{
    int ret;
    GET_PRIVATE (conn);
D
Daniel P. Berrange 已提交
1861 1862
    xenUnifiedLock(priv);

1863
    if (priv->xsWatch == -1) {
1864
        xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
D
Daniel P. Berrange 已提交
1865
        xenUnifiedUnlock(priv);
1866 1867 1868
        return -1;
    }

D
Daniel P. Berrange 已提交
1869 1870 1871 1872 1873 1874
    if (priv->domainEventDispatching)
        ret = virDomainEventCallbackListMarkDelete(conn, priv->domainEventCallbacks,
                                                   callback);
    else
        ret = virDomainEventCallbackListRemove(conn, priv->domainEventCallbacks,
                                               callback);
1875

D
Daniel P. Berrange 已提交
1876
    xenUnifiedUnlock(priv);
1877 1878 1879
    return ret;
}

1880

1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
static int
xenUnifiedDomainEventRegisterAny(virConnectPtr conn,
                                 virDomainPtr dom,
                                 int eventID,
                                 virConnectDomainEventGenericCallback callback,
                                 void *opaque,
                                 virFreeCallback freefunc)
{
    GET_PRIVATE (conn);

    int ret;
    xenUnifiedLock(priv);

    if (priv->xsWatch == -1) {
1895
        xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916
        xenUnifiedUnlock(priv);
        return -1;
    }

    ret = virDomainEventCallbackListAddID(conn, priv->domainEventCallbacks,
                                          dom, eventID,
                                          callback, opaque, freefunc);

    xenUnifiedUnlock(priv);
    return (ret);
}

static int
xenUnifiedDomainEventDeregisterAny(virConnectPtr conn,
                                   int callbackID)
{
    int ret;
    GET_PRIVATE (conn);
    xenUnifiedLock(priv);

    if (priv->xsWatch == -1) {
1917
        xenUnifiedError(VIR_ERR_NO_SUPPORT, __FUNCTION__);
1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
        xenUnifiedUnlock(priv);
        return -1;
    }

    if (priv->domainEventDispatching)
        ret = virDomainEventCallbackListMarkDeleteID(conn, priv->domainEventCallbacks,
                                                     callbackID);
    else
        ret = virDomainEventCallbackListRemoveID(conn, priv->domainEventCallbacks,
                                                 callbackID);

    xenUnifiedUnlock(priv);
    return ret;
}


1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
static int
xenUnifiedNodeDeviceGetPciInfo (virNodeDevicePtr dev,
                           unsigned *domain,
                           unsigned *bus,
                           unsigned *slot,
                           unsigned *function)
{
    virNodeDeviceDefPtr def = NULL;
    virNodeDevCapsDefPtr cap;
    char *xml = NULL;
    int ret = -1;

    xml = virNodeDeviceGetXMLDesc(dev, 0);
    if (!xml)
        goto out;

1950
    def = virNodeDeviceDefParseString(xml, EXISTING_DEVICE);
1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
    if (!def)
        goto out;

    cap = def->caps;
    while (cap) {
        if (cap->type == VIR_NODE_DEV_CAP_PCI_DEV) {
            *domain   = cap->data.pci_dev.domain;
            *bus      = cap->data.pci_dev.bus;
            *slot     = cap->data.pci_dev.slot;
            *function = cap->data.pci_dev.function;
            break;
        }

        cap = cap->next;
    }

    if (!cap) {
1968
        xenUnifiedError(VIR_ERR_INVALID_ARG,
1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
                        _("device %s is not a PCI device"), dev->name);
        goto out;
    }

    ret = 0;
out:
    virNodeDeviceDefFree(def);
    VIR_FREE(xml);
    return ret;
}

static int
xenUnifiedNodeDeviceDettach (virNodeDevicePtr dev)
{
    pciDevice *pci;
    unsigned domain, bus, slot, function;
    int ret = -1;

    if (xenUnifiedNodeDeviceGetPciInfo(dev, &domain, &bus, &slot, &function) < 0)
        return -1;

1990
    pci = pciGetDevice(domain, bus, slot, function);
1991 1992 1993
    if (!pci)
        return -1;

1994
    if (pciDettachDevice(pci, NULL) < 0)
1995 1996 1997 1998
        goto out;

    ret = 0;
out:
1999
    pciFreeDevice(pci);
2000 2001 2002
    return ret;
}

2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060
static int
xenUnifiedNodeDeviceAssignedDomainId (virNodeDevicePtr dev)
{
    int numdomains;
    int ret = -1, i;
    int *ids = NULL;
    char *bdf = NULL;
    char *xref = NULL;
    unsigned int domain, bus, slot, function;
    virConnectPtr conn = dev->conn;
    xenUnifiedPrivatePtr priv = conn->privateData;

    /* Get active domains */
    numdomains = xenUnifiedNumOfDomains(conn);
    if (numdomains < 0) {
        return ret;
    }
    if (numdomains > 0){
        if (VIR_ALLOC_N(ids, numdomains) < 0) {
            virReportOOMError();
            goto out;
        }
        if ((numdomains = xenUnifiedListDomains(conn, &ids[0], numdomains)) < 0) {
            goto out;
        }
    }

    /* Get pci bdf */
    if (xenUnifiedNodeDeviceGetPciInfo(dev, &domain, &bus, &slot, &function) < 0)
        goto out;

    if (virAsprintf(&bdf, "%04x:%02x:%02x.%0x",
                    domain, bus, slot, function) < 0) {
        virReportOOMError();
        goto out;
    }

    xenUnifiedLock(priv);
    /* Check if bdf is assigned to one of active domains */
    for (i = 0; i < numdomains; i++ ) {
        xref = xenStoreDomainGetPCIID(conn, ids[i], bdf);
        if (xref == NULL) {
            continue;
        } else {
            ret = ids[i];
            break;
        }
    }
    xenUnifiedUnlock(priv);

    VIR_FREE(xref);
    VIR_FREE(bdf);
out:
    VIR_FREE(ids);

    return ret;
}

2061 2062 2063 2064 2065 2066
static int
xenUnifiedNodeDeviceReAttach (virNodeDevicePtr dev)
{
    pciDevice *pci;
    unsigned domain, bus, slot, function;
    int ret = -1;
2067
    int domid;
2068 2069 2070 2071

    if (xenUnifiedNodeDeviceGetPciInfo(dev, &domain, &bus, &slot, &function) < 0)
        return -1;

2072
    pci = pciGetDevice(domain, bus, slot, function);
2073 2074 2075
    if (!pci)
        return -1;

2076 2077 2078 2079 2080 2081 2082 2083
    /* Check if device is assigned to an active guest */
    if ((domid = xenUnifiedNodeDeviceAssignedDomainId(dev)) >= 0) {
        xenUnifiedError(VIR_ERR_INTERNAL_ERROR,
                        _("Device %s has been assigned to guest %d"),
                        dev->name, domid);
        goto out;
    }

2084
    if (pciReAttachDevice(pci, NULL) < 0)
2085 2086 2087 2088
        goto out;

    ret = 0;
out:
2089
    pciFreeDevice(pci);
2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102
    return ret;
}

static int
xenUnifiedNodeDeviceReset (virNodeDevicePtr dev)
{
    pciDevice *pci;
    unsigned domain, bus, slot, function;
    int ret = -1;

    if (xenUnifiedNodeDeviceGetPciInfo(dev, &domain, &bus, &slot, &function) < 0)
        return -1;

2103
    pci = pciGetDevice(domain, bus, slot, function);
2104 2105 2106
    if (!pci)
        return -1;

2107
    if (pciResetDevice(pci, NULL, NULL) < 0)
2108 2109 2110 2111
        goto out;

    ret = 0;
out:
2112
    pciFreeDevice(pci);
2113 2114 2115 2116
    return ret;
}


2117 2118
static int
xenUnifiedDomainOpenConsole(virDomainPtr dom,
2119
                            const char *dev_name,
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
                            virStreamPtr st,
                            unsigned int flags)
{
    virDomainDefPtr def = NULL;
    int ret = -1;
    virDomainChrDefPtr chr = NULL;

    virCheckFlags(0, -1);

    if (dom->id == -1) {
        xenUnifiedError(VIR_ERR_OPERATION_INVALID,
                        "%s", _("domain is not running"));
        goto cleanup;
    }

2135
    if (dev_name) {
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
        /* XXX support device aliases in future */
        xenUnifiedError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                        _("Named device aliases are not supported"));
        goto cleanup;
    }

    def = xenDaemonDomainFetch(dom->conn, dom->id, dom->name, NULL);
    if (!def)
        goto cleanup;

2146 2147
    if (def->nconsoles)
        chr = def->consoles[0];
2148 2149 2150 2151 2152 2153 2154 2155 2156
    else if (def->nserials)
        chr = def->serials[0];

    if (!chr) {
        xenUnifiedError(VIR_ERR_INTERNAL_ERROR, "%s",
                        _("cannot find default console device"));
        goto cleanup;
    }

2157
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
2158
        xenUnifiedError(VIR_ERR_INTERNAL_ERROR,
2159
                        _("character device %s is not using a PTY"), dev_name);
2160 2161 2162
        goto cleanup;
    }

2163
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
E
Eric Blake 已提交
2164
                            0, 0, O_RDWR) < 0)
2165 2166 2167 2168 2169 2170 2171
        goto cleanup;

    ret = 0;
cleanup:
    virDomainDefFree(def);
    return ret;
}
E
Eric Blake 已提交
2172
/*----- Register with libvirt.c, and initialize Xen drivers. -----*/
2173 2174 2175

/* The interface which we export upwards to libvirt.c. */
static virDriver xenUnifiedDriver = {
2176 2177
    .no = VIR_DRV_XEN_UNIFIED,
    .name = "Xen",
2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
    .open = xenUnifiedOpen, /* 0.0.3 */
    .close = xenUnifiedClose, /* 0.0.3 */
    .supports_feature = xenUnifiedSupportsFeature, /* 0.3.2 */
    .type = xenUnifiedType, /* 0.0.3 */
    .version = xenUnifiedGetVersion, /* 0.0.3 */
    .getHostname = virGetHostname, /* 0.7.3 */
    .getMaxVcpus = xenUnifiedGetMaxVcpus, /* 0.2.1 */
    .nodeGetInfo = xenUnifiedNodeGetInfo, /* 0.1.0 */
    .getCapabilities = xenUnifiedGetCapabilities, /* 0.2.1 */
    .listDomains = xenUnifiedListDomains, /* 0.0.3 */
    .numOfDomains = xenUnifiedNumOfDomains, /* 0.0.3 */
    .domainCreateXML = xenUnifiedDomainCreateXML, /* 0.0.3 */
    .domainLookupByID = xenUnifiedDomainLookupByID, /* 0.0.3 */
    .domainLookupByUUID = xenUnifiedDomainLookupByUUID, /* 0.0.5 */
    .domainLookupByName = xenUnifiedDomainLookupByName, /* 0.0.3 */
    .domainSuspend = xenUnifiedDomainSuspend, /* 0.0.3 */
    .domainResume = xenUnifiedDomainResume, /* 0.0.3 */
    .domainShutdown = xenUnifiedDomainShutdown, /* 0.0.3 */
    .domainReboot = xenUnifiedDomainReboot, /* 0.1.0 */
    .domainDestroy = xenUnifiedDomainDestroy, /* 0.0.3 */
2198
    .domainDestroyFlags = xenUnifiedDomainDestroyFlags, /* 0.9.4 */
2199 2200 2201 2202 2203 2204 2205
    .domainGetOSType = xenUnifiedDomainGetOSType, /* 0.0.3 */
    .domainGetMaxMemory = xenUnifiedDomainGetMaxMemory, /* 0.0.3 */
    .domainSetMaxMemory = xenUnifiedDomainSetMaxMemory, /* 0.0.3 */
    .domainSetMemory = xenUnifiedDomainSetMemory, /* 0.1.1 */
    .domainGetInfo = xenUnifiedDomainGetInfo, /* 0.0.3 */
    .domainGetState = xenUnifiedDomainGetState, /* 0.9.2 */
    .domainSave = xenUnifiedDomainSave, /* 0.0.3 */
2206
    .domainSaveFlags = xenUnifiedDomainSaveFlags, /* 0.9.4 */
2207
    .domainRestore = xenUnifiedDomainRestore, /* 0.0.3 */
2208
    .domainRestoreFlags = xenUnifiedDomainRestoreFlags, /* 0.9.4 */
2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224
    .domainCoreDump = xenUnifiedDomainCoreDump, /* 0.1.9 */
    .domainSetVcpus = xenUnifiedDomainSetVcpus, /* 0.1.4 */
    .domainSetVcpusFlags = xenUnifiedDomainSetVcpusFlags, /* 0.8.5 */
    .domainGetVcpusFlags = xenUnifiedDomainGetVcpusFlags, /* 0.8.5 */
    .domainPinVcpu = xenUnifiedDomainPinVcpu, /* 0.1.4 */
    .domainGetVcpus = xenUnifiedDomainGetVcpus, /* 0.1.4 */
    .domainGetMaxVcpus = xenUnifiedDomainGetMaxVcpus, /* 0.2.1 */
    .domainGetXMLDesc = xenUnifiedDomainGetXMLDesc, /* 0.0.3 */
    .domainXMLFromNative = xenUnifiedDomainXMLFromNative, /* 0.6.4 */
    .domainXMLToNative = xenUnifiedDomainXMLToNative, /* 0.6.4 */
    .listDefinedDomains = xenUnifiedListDefinedDomains, /* 0.1.1 */
    .numOfDefinedDomains = xenUnifiedNumOfDefinedDomains, /* 0.1.5 */
    .domainCreate = xenUnifiedDomainCreate, /* 0.1.1 */
    .domainCreateWithFlags = xenUnifiedDomainCreateWithFlags, /* 0.8.2 */
    .domainDefineXML = xenUnifiedDomainDefineXML, /* 0.1.1 */
    .domainUndefine = xenUnifiedDomainUndefine, /* 0.1.1 */
2225
    .domainUndefineFlags = xenUnifiedDomainUndefineFlags, /* 0.9.4 */
2226 2227 2228 2229 2230 2231 2232 2233 2234
    .domainAttachDevice = xenUnifiedDomainAttachDevice, /* 0.1.9 */
    .domainAttachDeviceFlags = xenUnifiedDomainAttachDeviceFlags, /* 0.7.7 */
    .domainDetachDevice = xenUnifiedDomainDetachDevice, /* 0.1.9 */
    .domainDetachDeviceFlags = xenUnifiedDomainDetachDeviceFlags, /* 0.7.7 */
    .domainUpdateDeviceFlags = xenUnifiedDomainUpdateDeviceFlags, /* 0.8.0 */
    .domainGetAutostart = xenUnifiedDomainGetAutostart, /* 0.4.4 */
    .domainSetAutostart = xenUnifiedDomainSetAutostart, /* 0.4.4 */
    .domainGetSchedulerType = xenUnifiedDomainGetSchedulerType, /* 0.2.3 */
    .domainGetSchedulerParameters = xenUnifiedDomainGetSchedulerParameters, /* 0.2.3 */
2235
    .domainGetSchedulerParametersFlags = xenUnifiedDomainGetSchedulerParametersFlags, /* 0.9.2 */
2236
    .domainSetSchedulerParameters = xenUnifiedDomainSetSchedulerParameters, /* 0.2.3 */
2237
    .domainSetSchedulerParametersFlags = xenUnifiedDomainSetSchedulerParametersFlags, /* 0.9.2 */
2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258
    .domainMigratePrepare = xenUnifiedDomainMigratePrepare, /* 0.3.2 */
    .domainMigratePerform = xenUnifiedDomainMigratePerform, /* 0.3.2 */
    .domainMigrateFinish = xenUnifiedDomainMigrateFinish, /* 0.3.2 */
    .domainBlockStats = xenUnifiedDomainBlockStats, /* 0.3.2 */
    .domainInterfaceStats = xenUnifiedDomainInterfaceStats, /* 0.3.2 */
    .domainBlockPeek = xenUnifiedDomainBlockPeek, /* 0.4.4 */
    .nodeGetCellsFreeMemory = xenUnifiedNodeGetCellsFreeMemory, /* 0.3.3 */
    .nodeGetFreeMemory = xenUnifiedNodeGetFreeMemory, /* 0.3.3 */
    .domainEventRegister = xenUnifiedDomainEventRegister, /* 0.5.0 */
    .domainEventDeregister = xenUnifiedDomainEventDeregister, /* 0.5.0 */
    .nodeDeviceDettach = xenUnifiedNodeDeviceDettach, /* 0.6.1 */
    .nodeDeviceReAttach = xenUnifiedNodeDeviceReAttach, /* 0.6.1 */
    .nodeDeviceReset = xenUnifiedNodeDeviceReset, /* 0.6.1 */
    .isEncrypted = xenUnifiedIsEncrypted, /* 0.7.3 */
    .isSecure = xenUnifiedIsSecure, /* 0.7.3 */
    .domainIsActive = xenUnifiedDomainIsActive, /* 0.7.3 */
    .domainIsPersistent = xenUnifiedDomainIsPersistent, /* 0.7.3 */
    .domainIsUpdated = xenUnifiedDomainIsUpdated, /* 0.8.6 */
    .domainEventRegisterAny = xenUnifiedDomainEventRegisterAny, /* 0.8.0 */
    .domainEventDeregisterAny = xenUnifiedDomainEventDeregisterAny, /* 0.8.0 */
    .domainOpenConsole = xenUnifiedDomainOpenConsole, /* 0.8.6 */
2259
    .isAlive = xenUnifiedIsAlive, /* 0.9.8 */
2260 2261
};

2262
/**
2263
 * xenRegister:
2264 2265 2266 2267 2268
 *
 * Register xen related drivers
 *
 * Returns the driver priority or -1 in case of error.
 */
2269
int
2270
xenRegister (void)
2271
{
2272
    /* Ignore failures here. */
P
Philipp Hahn 已提交
2273
    (void) xenHypervisorInit (NULL);
2274

J
John Levon 已提交
2275 2276 2277 2278
#ifdef WITH_LIBVIRTD
    if (virRegisterStateDriver (&state_driver) == -1) return -1;
#endif

2279
    return virRegisterDriver (&xenUnifiedDriver);
2280 2281
}

2282 2283 2284 2285 2286 2287 2288 2289 2290
/**
 * xenUnifiedDomainInfoListFree:
 *
 * Free the Domain Info List
 */
void
xenUnifiedDomainInfoListFree(xenUnifiedDomainInfoListPtr list)
{
    int i;
J
John Levon 已提交
2291 2292 2293 2294

    if (list == NULL)
        return;

2295 2296 2297 2298
    for (i=0; i<list->count; i++) {
        VIR_FREE(list->doms[i]->name);
        VIR_FREE(list->doms[i]);
    }
2299
    VIR_FREE(list->doms);
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
    VIR_FREE(list);
}

/**
 * xenUnifiedAddDomainInfo:
 *
 * Add name and uuid to the domain info list
 *
 * Returns: 0 on success, -1 on failure
 */
int
xenUnifiedAddDomainInfo(xenUnifiedDomainInfoListPtr list,
                        int id, char *name,
                        unsigned char *uuid)
{
    xenUnifiedDomainInfoPtr info;
    int n;

    /* check if we already have this callback on our list */
    for (n=0; n < list->count; n++) {
        if (STREQ(list->doms[n]->name, name) &&
            !memcmp(list->doms[n]->uuid, uuid, VIR_UUID_BUFLEN)) {
2322
            VIR_DEBUG("WARNING: dom already tracked");
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344
            return -1;
        }
    }

    if (VIR_ALLOC(info) < 0)
        goto memory_error;
    if (!(info->name = strdup(name)))
        goto memory_error;

    memcpy(info->uuid, uuid, VIR_UUID_BUFLEN);
    info->id = id;

    /* Make space on list */
    n = list->count;
    if (VIR_REALLOC_N(list->doms, n + 1) < 0) {
        goto memory_error;
    }

    list->doms[n] = info;
    list->count++;
    return 0;
memory_error:
2345
    virReportOOMError();
2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390
    if (info)
        VIR_FREE(info->name);
    VIR_FREE(info);
    return -1;
}

/**
 * xenUnifiedRemoveDomainInfo:
 *
 * Removes name and uuid to the domain info list
 *
 * Returns: 0 on success, -1 on failure
 */
int
xenUnifiedRemoveDomainInfo(xenUnifiedDomainInfoListPtr list,
                           int id, char *name,
                           unsigned char *uuid)
{
    int i;
    for (i = 0 ; i < list->count ; i++) {
        if( list->doms[i]->id == id &&
            STREQ(list->doms[i]->name, name) &&
            !memcmp(list->doms[i]->uuid, uuid, VIR_UUID_BUFLEN)) {

            VIR_FREE(list->doms[i]->name);
            VIR_FREE(list->doms[i]);

            if (i < (list->count - 1))
                memmove(list->doms + i,
                        list->doms + i + 1,
                        sizeof(*(list->doms)) *
                                (list->count - (i + 1)));

            if (VIR_REALLOC_N(list->doms,
                              list->count - 1) < 0) {
                ; /* Failure to reduce memory allocation isn't fatal */
            }
            list->count--;

            return 0;
        }
    }
    return -1;
}

D
Daniel P. Berrange 已提交
2391 2392 2393
static void
xenUnifiedDomainEventDispatchFunc(virConnectPtr conn,
                                  virDomainEventPtr event,
2394
                                  virConnectDomainEventGenericCallback cb,
D
Daniel P. Berrange 已提交
2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411
                                  void *cbopaque,
                                  void *opaque)
{
    xenUnifiedPrivatePtr priv = opaque;

    /*
     * Release the lock while the callback is running so that
     * we're re-entrant safe for callback work - the callback
     * may want to invoke other virt functions & we have already
     * protected the one piece of state we have - the callback
     * list
     */
    xenUnifiedUnlock(priv);
    virDomainEventDispatchDefaultFunc(conn, event, cb, cbopaque, NULL);
    xenUnifiedLock(priv);
}

2412 2413
/**
 * xenUnifiedDomainEventDispatch:
D
Daniel P. Berrange 已提交
2414 2415
 * @priv: the connection to dispatch events on
 * @event: the event to dispatch
2416 2417 2418
 *
 * Dispatch domain events to registered callbacks
 *
D
Daniel P. Berrange 已提交
2419 2420
 * The caller must hold the lock in 'priv' before invoking
 *
2421 2422
 */
void xenUnifiedDomainEventDispatch (xenUnifiedPrivatePtr priv,
2423
                                    virDomainEventPtr event)
2424
{
D
Daniel P. Berrange 已提交
2425
    if (!priv)
2426
        return;
2427

D
Daniel P. Berrange 已提交
2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
    priv->domainEventDispatching = 1;

    if (priv->domainEventCallbacks) {
        virDomainEventDispatch(event,
                               priv->domainEventCallbacks,
                               xenUnifiedDomainEventDispatchFunc,
                               priv);

        /* Purge any deleted callbacks */
        virDomainEventCallbackListPurgeMarked(priv->domainEventCallbacks);
    }

2440
    virDomainEventFree(event);
D
Daniel P. Berrange 已提交
2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452

    priv->domainEventDispatching = 0;
}

void xenUnifiedLock(xenUnifiedPrivatePtr priv)
{
    virMutexLock(&priv->lock);
}

void xenUnifiedUnlock(xenUnifiedPrivatePtr priv)
{
    virMutexUnlock(&priv->lock);
2453
}