xend_internal.c 97.7 KB
Newer Older
1 2 3
/*
 * xend_internal.c: access to Xen though the Xen Daemon interface
 *
4
 * Copyright (C) 2010-2013 Red Hat, Inc.
5
 * Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com>
6 7 8 9 10 11
 *
 *  This file is subject to the terms and conditions of the GNU Lesser General
 *  Public License. See the file COPYING.LIB in the main directory of this
 *  archive for more details.
 */

12
#include <config.h>
13

14 15 16 17 18
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/errno.h>
R
Richard W.M. Jones 已提交
19 20
#include <sys/stat.h>
#include <fcntl.h>
21 22 23 24 25 26 27 28 29
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <stdarg.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
30
#include <errno.h>
31

32
#include "virerror.h"
33
#include "virlog.h"
34
#include "datatypes.h"
35
#include "xend_internal.h"
36
#include "driver.h"
37
#include "virsexpr.h"
38
#include "xen_sxpr.h"
39
#include "virbuffer.h"
40
#include "viruuid.h"
41 42
#include "xen_driver.h"
#include "xen_hypervisor.h"
43
#include "xs_internal.h" /* To extract VNC port & Serial console TTY */
44
#include "viralloc.h"
45
#include "count-one-bits.h"
E
Eric Blake 已提交
46
#include "virfile.h"
M
Martin Kletzander 已提交
47
#include "viruri.h"
48
#include "device_conf.h"
49
#include "virstring.h"
50

51 52 53
/* required for cpumap_t */
#include <xen/dom0_ops.h>

54 55
#define VIR_FROM_THIS VIR_FROM_XEND

56 57 58
/*
 * The number of Xen scheduler parameters
 */
59

60
#define XEND_RCV_BUF_MAX_LEN (256 * 1024)
D
Daniel Veillard 已提交
61

62
static int
63 64
virDomainXMLDevID(virDomainPtr domain, virDomainDeviceDefPtr dev, char *class,
                  char *ref, int ref_len);
65

66 67 68 69 70 71 72 73 74
/**
 * do_connect:
 * @xend: pointer to the Xen Daemon structure
 *
 * Internal routine to (re)connect to the daemon
 *
 * Returns the socket file descriptor or -1 in case of error
 */
static int
75
do_connect(virConnectPtr xend)
76 77
{
    int s;
78
    int no_slow_start = 1;
79
    xenUnifiedPrivatePtr priv = xend->privateData;
80

81
    s = socket(priv->addrfamily, SOCK_STREAM, priv->addrprotocol);
D
Daniel Veillard 已提交
82
    if (s == -1) {
83 84
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("failed to create a socket"));
85
        return -1;
D
Daniel Veillard 已提交
86
    }
87

88
    /*
89
     * try to deactivate slow-start
90
     */
91 92
    ignore_value(setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
                            sizeof(no_slow_start)));
93

94
    if (connect(s, (struct sockaddr *)&priv->addr, priv->addrlen) == -1) {
95
        VIR_FORCE_CLOSE(s); /* preserves errno */
96 97

        /*
J
John Levon 已提交
98 99
         * Connecting to XenD when privileged is mandatory, so log this
         * error
100
         */
J
John Levon 已提交
101
        if (xenHavePrivilege()) {
102 103
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("failed to connect to xend"));
104
        }
105 106 107 108 109 110 111
    }

    return s;
}

/**
 * wr_sync:
112
 * @xend: the xend connection object
113 114 115 116 117 118 119 120 121 122
 * @fd:  the file descriptor
 * @buffer: the I/O buffer
 * @size: the size of the I/O
 * @do_read: write operation if 0, read operation otherwise
 *
 * Do a synchronous read or write on the file descriptor
 *
 * Returns the number of bytes exchanged, or -1 in case of error
 */
static size_t
123
wr_sync(int fd, void *buffer, size_t size, int do_read)
124 125 126 127 128 129 130
{
    size_t offset = 0;

    while (offset < size) {
        ssize_t len;

        if (do_read) {
131
            len = read(fd, ((char *) buffer) + offset, size - offset);
132
        } else {
133
            len = write(fd, ((char *) buffer) + offset, size - offset);
134 135 136 137 138 139 140 141 142 143 144 145 146 147
        }

        /* recoverable error, retry  */
        if ((len == -1) && ((errno == EAGAIN) || (errno == EINTR))) {
            continue;
        }

        /* eof */
        if (len == 0) {
            break;
        }

        /* unrecoverable error */
        if (len == -1) {
148
            if (do_read)
149 150
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("failed to read from Xen Daemon"));
151
            else
152 153
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("failed to write to Xen Daemon"));
154

155
            return -1;
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
        }

        offset += len;
    }

    return offset;
}

/**
 * sread:
 * @fd:  the file descriptor
 * @buffer: the I/O buffer
 * @size: the size of the I/O
 *
 * Internal routine to do a synchronous read
 *
 * Returns the number of bytes read, or -1 in case of error
 */
static ssize_t
175
sread(int fd, void *buffer, size_t size)
176
{
177
    return wr_sync(fd, buffer, size, 1);
178 179 180 181 182 183 184 185 186 187 188 189 190
}

/**
 * swrite:
 * @fd:  the file descriptor
 * @buffer: the I/O buffer
 * @size: the size of the I/O
 *
 * Internal routine to do a synchronous write
 *
 * Returns the number of bytes written, or -1 in case of error
 */
static ssize_t
191
swrite(int fd, const void *buffer, size_t size)
192
{
193
    return wr_sync(fd, (void *) buffer, size, 0);
194 195 196 197 198 199 200 201 202 203 204 205
}

/**
 * swrites:
 * @fd:  the file descriptor
 * @string: the string to write
 *
 * Internal routine to do a synchronous write of a string
 *
 * Returns the number of bytes written, or -1 in case of error
 */
static ssize_t
206
swrites(int fd, const char *string)
207
{
208
    return swrite(fd, string, strlen(string));
209 210
}

211 212 213 214 215 216 217 218 219 220 221
/**
 * sreads:
 * @fd:  the file descriptor
 * @buffer: the I/O buffer
 * @n_buffer: the size of the I/O buffer
 *
 * Internal routine to do a synchronous read of a line
 *
 * Returns the number of bytes read, or -1 in case of error
 */
static ssize_t
222
sreads(int fd, char *buffer, size_t n_buffer)
223 224 225 226
{
    size_t offset;

    if (n_buffer < 1)
227
        return -1;
228 229 230 231

    for (offset = 0; offset < (n_buffer - 1); offset++) {
        ssize_t ret;

232
        ret = sread(fd, buffer + offset, 1);
233 234 235 236 237 238 239 240 241 242 243 244 245 246
        if (ret == 0)
            break;
        else if (ret == -1)
            return ret;

        if (buffer[offset] == '\n') {
            offset++;
            break;
        }
    }
    buffer[offset] = 0;

    return offset;
}
247 248 249 250

static int
istartswith(const char *haystack, const char *needle)
{
251
    return STRCASEEQLEN(haystack, needle, strlen(needle));
252 253
}

254

255 256 257 258 259 260
/**
 * xend_req:
 * @fd: the file descriptor
 * @content: the buffer to store the content
 *
 * Read the HTTP response from a Xen Daemon request.
261 262
 * If the response contains content, memory is allocated to
 * hold the content.
263
 *
264 265
 * Returns the HTTP return code and @content is set to the
 * allocated memory containing HTTP content.
266
 */
267
static int ATTRIBUTE_NONNULL(2)
268
xend_req(int fd, char **content)
269
{
270 271
    char *buffer;
    size_t buffer_size = 4096;
272
    int content_length = 0;
273 274
    int retcode = 0;

275 276 277 278 279 280
    if (VIR_ALLOC_N(buffer, buffer_size) < 0) {
        virReportOOMError();
        return -1;
    }

    while (sreads(fd, buffer, buffer_size) > 0) {
281
        if (STREQ(buffer, "\r\n"))
282
            break;
283 284 285 286 287

        if (istartswith(buffer, "Content-Length: "))
            content_length = atoi(buffer + 16);
        else if (istartswith(buffer, "HTTP/1.1 "))
            retcode = atoi(buffer + 9);
288 289
    }

290 291
    VIR_FREE(buffer);

292
    if (content_length > 0) {
293 294
        ssize_t ret;

J
Jim Fehlig 已提交
295
        if (content_length > XEND_RCV_BUF_MAX_LEN) {
296 297 298 299 300
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Xend returned HTTP Content-Length of %d, "
                             "which exceeds maximum of %d"),
                           content_length,
                           XEND_RCV_BUF_MAX_LEN);
J
Jim Fehlig 已提交
301 302 303 304 305 306
            return -1;
        }

        /* Allocate one byte beyond the end of the largest buffer we will read.
           Combined with the fact that VIR_ALLOC_N zeros the returned buffer,
           this guarantees that "content" will always be NUL-terminated. */
307
        if (VIR_ALLOC_N(*content, content_length + 1) < 0) {
308 309 310
            virReportOOMError();
            return -1;
        }
311

312
        ret = sread(fd, *content, content_length);
313 314
        if (ret < 0)
            return -1;
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
    }

    return retcode;
}

/**
 * xend_get:
 * @xend: pointer to the Xen Daemon structure
 * @path: the path used for the HTTP request
 * @content: the buffer to store the content
 *
 * Do an HTTP GET RPC with the Xen Daemon
 *
 * Returns the HTTP return code or -1 in case or error.
 */
J
Jim Fehlig 已提交
330
static int ATTRIBUTE_NONNULL(3)
331
xend_get(virConnectPtr xend, const char *path, char **content)
332 333 334 335 336 337 338
{
    int ret;
    int s = do_connect(xend);

    if (s == -1)
        return s;

339 340 341
    swrites(s, "GET ");
    swrites(s, path);
    swrites(s, " HTTP/1.1\r\n");
342

343
    swrites(s,
344 345 346 347
            "Host: localhost:8000\r\n"
            "Accept-Encoding: identity\r\n"
            "Content-Type: application/x-www-form-urlencoded\r\n" "\r\n");

348
    ret = xend_req(s, content);
349
    VIR_FORCE_CLOSE(s);
350

351 352 353 354
    if (ret < 0)
        return ret;

    if ((ret >= 300) && ((ret != 404) || (!STRPREFIX(path, "/xend/domain/")))) {
355 356 357
        virReportError(VIR_ERR_GET_FAILED,
                       _("%d status from xen daemon: %s:%s"),
                       ret, path, NULLSTR(*content));
D
Daniel Veillard 已提交
358 359
    }

360 361 362 363 364 365 366
    return ret;
}

/**
 * xend_post:
 * @xend: pointer to the Xen Daemon structure
 * @path: the path used for the HTTP request
367
 * @ops: the information sent for the POST
368 369 370 371 372 373 374
 *
 * Do an HTTP POST RPC with the Xen Daemon, this usually makes changes at the
 * Xen level.
 *
 * Returns the HTTP return code or -1 in case or error.
 */
static int
375
xend_post(virConnectPtr xend, const char *path, const char *ops)
376 377
{
    char buffer[100];
378
    char *err_buf = NULL;
379 380 381 382 383 384
    int ret;
    int s = do_connect(xend);

    if (s == -1)
        return s;

385 386 387
    swrites(s, "POST ");
    swrites(s, path);
    swrites(s, " HTTP/1.1\r\n");
388

389
    swrites(s,
390 391 392 393
            "Host: localhost:8000\r\n"
            "Accept-Encoding: identity\r\n"
            "Content-Type: application/x-www-form-urlencoded\r\n"
            "Content-Length: ");
394
    snprintf(buffer, sizeof(buffer), "%d", (int) strlen(ops));
395 396 397
    swrites(s, buffer);
    swrites(s, "\r\n\r\n");
    swrites(s, ops);
398

399
    ret = xend_req(s, &err_buf);
400
    VIR_FORCE_CLOSE(s);
401

D
Daniel Veillard 已提交
402
    if ((ret < 0) || (ret >= 300)) {
403 404
        virReportError(VIR_ERR_POST_FAILED,
                       _("xend_post: error from xen daemon: %s"), err_buf);
405
    } else if ((ret == 202) && err_buf && (strstr(err_buf, "failed") != NULL)) {
406 407
        virReportError(VIR_ERR_POST_FAILED,
                       _("xend_post: error from xen daemon: %s"), err_buf);
408
        ret = -1;
409 410
    } else if (((ret >= 200) && (ret <= 202)) && err_buf &&
               (strstr(err_buf, "xend.err") != NULL)) {
411 412 413
        /* This is to catch case of things like 'virsh dump Domain-0 foo'
         * which returns a success code, but the word 'xend.err'
         * in body to indicate error :-(
414
         */
415 416
        virReportError(VIR_ERR_POST_FAILED,
                       _("xend_post: error from xen daemon: %s"), err_buf);
417
        ret = -1;
D
Daniel Veillard 已提交
418 419
    }

420
    VIR_FREE(err_buf);
421 422
    return ret;
}
423

424 425 426 427 428 429 430 431 432 433

/**
 * http2unix:
 * @ret: the http return code
 *
 * Convert the HTTP return code to 0/-1 and set errno if needed
 *
 * Return -1 in case of error code 0 otherwise
 */
static int
434
http2unix(int ret)
435 436 437 438 439 440 441 442 443 444 445
{
    switch (ret) {
        case -1:
            break;
        case 200:
        case 201:
        case 202:
            return 0;
        case 404:
            errno = ESRCH;
            break;
446 447 448
        case 500:
            errno = EIO;
            break;
449
        default:
450 451
            virReportError(VIR_ERR_HTTP_ERROR,
                           _("Unexpected HTTP error code %d"), ret);
452 453 454 455 456 457 458
            errno = EINVAL;
            break;
    }
    return -1;
}

/**
459
 * xend_op_ext:
460 461 462 463 464 465 466 467 468 469
 * @xend: pointer to the Xen Daemon structure
 * @path: path for the object
 * @key: the key for the operation
 * @ap: input values to pass to the operation
 *
 * internal routine to run a POST RPC operation to the Xen Daemon
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
static int
470
xend_op_ext(virConnectPtr xend, const char *path, const char *key, va_list ap)
471 472
{
    const char *k = key, *v;
473
    virBuffer buf = VIR_BUFFER_INITIALIZER;
474
    int ret;
475
    char *content;
476 477 478 479

    while (k) {
        v = va_arg(ap, const char *);

P
Philipp Hahn 已提交
480 481 482
        virBufferURIEncodeString(&buf, k);
        virBufferAddChar(&buf, '=');
        virBufferURIEncodeString(&buf, v);
483 484 485
        k = va_arg(ap, const char *);

        if (k)
486
            virBufferAddChar(&buf, '&');
487 488
    }

489
    if (virBufferError(&buf)) {
490
        virBufferFreeAndReset(&buf);
491
        virReportOOMError();
492 493 494 495
        return -1;
    }

    content = virBufferContentAndReset(&buf);
496
    VIR_DEBUG("xend op: %s\n", content);
497
    ret = http2unix(xend_post(xend, path, content));
498
    VIR_FREE(content);
499 500

    return ret;
501 502
}

503

504
/**
505
 * xend_op:
506 507 508 509 510 511 512 513 514 515 516
 * @xend: pointer to the Xen Daemon structure
 * @name: the domain name target of this operation
 * @key: the key for the operation
 * @ap: input values to pass to the operation
 * @...: input values to pass to the operation
 *
 * internal routine to run a POST RPC operation to the Xen Daemon targetting
 * a given domain.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
P
Paolo Bonzini 已提交
517
static int ATTRIBUTE_SENTINEL
518
xend_op(virConnectPtr xend, const char *name, const char *key, ...)
519 520 521 522 523 524 525 526
{
    char buffer[1024];
    va_list ap;
    int ret;

    snprintf(buffer, sizeof(buffer), "/xend/domain/%s", name);

    va_start(ap, key);
527
    ret = xend_op_ext(xend, buffer, key, ap);
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
    va_end(ap);

    return ret;
}


/**
 * sexpr_get:
 * @xend: pointer to the Xen Daemon structure
 * @fmt: format string for the path of the operation
 * @...: extra data to build the path of the operation
 *
 * Internal routine to run a simple GET RPC operation to the Xen Daemon
 *
 * Returns a parsed S-Expression in case of success, NULL in case of failure
 */
544
static struct sexpr *sexpr_get(virConnectPtr xend, const char *fmt, ...)
545
  ATTRIBUTE_FMT_PRINTF(2,3);
546

547
static struct sexpr *
548
sexpr_get(virConnectPtr xend, const char *fmt, ...)
549
{
550
    char *buffer = NULL;
551 552 553
    char path[1024];
    va_list ap;
    int ret;
554
    struct sexpr *res = NULL;
555 556 557 558 559

    va_start(ap, fmt);
    vsnprintf(path, sizeof(path), fmt, ap);
    va_end(ap);

560
    ret = xend_get(xend, path, &buffer);
561
    ret = http2unix(ret);
562
    if (ret == -1)
563 564 565 566 567 568
        goto cleanup;

    if (buffer == NULL)
        goto cleanup;

    res = string2sexpr(buffer);
569

570 571 572
cleanup:
    VIR_FREE(buffer);
    return res;
573 574 575 576 577 578 579 580 581 582
}

/**
 * sexpr_uuid:
 * @ptr: where to store the UUID, incremented
 * @sexpr: an S-Expression
 * @name: the name for the value
 *
 * convenience function to lookup an UUID value from the S-Expression
 *
583
 * Returns a -1 on error, 0 on success
584
 */
585
static int
586
sexpr_uuid(unsigned char *ptr, const struct sexpr *node, const char *path)
587 588
{
    const char *r = sexpr_node(node, path);
589 590 591
    if (!r)
        return -1;
    return virUUIDParse(r, ptr);
592 593 594 595 596
}

/* PUBLIC FUNCTIONS */

/**
597
 * xenDaemonOpen_unix:
598
 * @conn: an existing virtual connection block
599 600 601 602 603
 * @path: the path for the Xen Daemon socket
 *
 * Creates a localhost Xen Daemon connection
 * Note: this doesn't try to check if the connection actually works
 *
604
 * Returns 0 in case of success, -1 in case of error.
605
 */
606
int
607
xenDaemonOpen_unix(virConnectPtr conn, const char *path)
608 609
{
    struct sockaddr_un *addr;
610
    xenUnifiedPrivatePtr priv = conn->privateData;
611

612 613
    memset(&priv->addr, 0, sizeof(priv->addr));
    priv->addrfamily = AF_UNIX;
614 615 616 617 618
    /*
     * This must be zero on Solaris at least for AF_UNIX (which should
     * really be PF_UNIX, but doesn't matter).
     */
    priv->addrprotocol = 0;
619 620 621
    priv->addrlen = sizeof(struct sockaddr_un);

    addr = (struct sockaddr_un *)&priv->addr;
622 623
    addr->sun_family = AF_UNIX;
    memset(addr->sun_path, 0, sizeof(addr->sun_path));
C
Chris Lalancette 已提交
624 625
    if (virStrcpyStatic(addr->sun_path, path) == NULL)
        return -1;
626

627
    return 0;
628 629
}

630

631
/**
632
 * xenDaemonOpen_tcp:
633
 * @conn: an existing virtual connection block
634
 * @host: the host name for the Xen Daemon
635
 * @port: the port
636 637 638 639
 *
 * Creates a possibly remote Xen Daemon connection
 * Note: this doesn't try to check if the connection actually works
 *
640
 * Returns 0 in case of success, -1 in case of error.
641
 */
642
static int
643
xenDaemonOpen_tcp(virConnectPtr conn, const char *host, const char *port)
644
{
645
    xenUnifiedPrivatePtr priv = conn->privateData;
646 647 648 649
    struct addrinfo *res, *r;
    struct addrinfo hints;
    int saved_errno = EINVAL;
    int ret;
650

651 652 653
    priv->addrlen = 0;
    memset(&priv->addr, 0, sizeof(priv->addr));

654
    /* http://people.redhat.com/drepper/userapi-ipv6.html */
655
    memset (&hints, 0, sizeof(hints));
656 657 658 659 660
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_flags = AI_ADDRCONFIG;

    ret = getaddrinfo (host, port, &hints, &res);
    if (ret != 0) {
661 662 663
        virReportError(VIR_ERR_UNKNOWN_HOST,
                       _("unable to resolve hostname '%s': %s"),
                       host, gai_strerror (ret));
664 665 666 667 668 669 670
        return -1;
    }

    /* Try to connect to each returned address in turn. */
    for (r = res; r; r = r->ai_next) {
        int sock;

671
        sock = socket(r->ai_family, SOCK_STREAM, r->ai_protocol);
672 673 674
        if (sock == -1) {
            saved_errno = errno;
            continue;
675
        }
676

677
        if (connect(sock, r->ai_addr, r->ai_addrlen) == -1) {
678
            saved_errno = errno;
679
            VIR_FORCE_CLOSE(sock);
680 681 682 683 684 685 686 687 688
            continue;
        }

        priv->addrlen = r->ai_addrlen;
        priv->addrfamily = r->ai_family;
        priv->addrprotocol = r->ai_protocol;
        memcpy(&priv->addr,
               r->ai_addr,
               r->ai_addrlen);
689
        VIR_FORCE_CLOSE(sock);
690
        break;
691 692
    }

693
    freeaddrinfo(res);
694

695
    if (!priv->addrlen) {
696 697
        /* Don't raise error when unprivileged, since proxy takes over */
        if (xenHavePrivilege())
698
            virReportSystemError(saved_errno,
699 700
                                 _("unable to connect to '%s:%s'"),
                                 host, port);
701 702
        return -1;
    }
703

704
    return 0;
705 706
}

707

708 709
/**
 * xend_wait_for_devices:
P
Philipp Hahn 已提交
710
 * @xend: pointer to the Xen Daemon block
711 712 713 714 715 716 717 718
 * @name: name for the domain
 *
 * Block the domain until all the virtual devices are ready. This operation
 * is needed when creating a domain before resuming it.
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
719
xend_wait_for_devices(virConnectPtr xend, const char *name)
720 721 722 723
{
    return xend_op(xend, name, "op", "wait_for_devices", NULL);
}

724

725
/**
726
 * xenDaemonListDomainsOld:
P
Philipp Hahn 已提交
727
 * @xend: pointer to the Xen Daemon block
728 729 730 731 732 733
 *
 * This method will return an array of names of currently running
 * domains.  The memory should be released will a call to free().
 *
 * Returns a list of names or NULL in case of error.
 */
734
char **
735
xenDaemonListDomainsOld(virConnectPtr xend)
736 737 738 739 740 741 742 743 744 745 746
{
    struct sexpr *root = NULL;
    char **ret = NULL;
    int count = 0;
    int i;
    struct sexpr *_for_i, *node;

    root = sexpr_get(xend, "/xend/domain");
    if (root == NULL)
        goto error;

747 748
    for (_for_i = root, node = root->u.s.car; _for_i->kind == SEXPR_CONS;
         _for_i = _for_i->u.s.cdr, node = _for_i->u.s.car) {
749 750 751 752 753
        if (node->kind != SEXPR_VALUE)
            continue;
        count++;
    }

E
Eric Blake 已提交
754 755
    if (VIR_ALLOC_N(ret, count + 1) < 0) {
        virReportOOMError();
756
        goto error;
E
Eric Blake 已提交
757
    }
758 759

    i = 0;
760 761
    for (_for_i = root, node = root->u.s.car; _for_i->kind == SEXPR_CONS;
         _for_i = _for_i->u.s.cdr, node = _for_i->u.s.car) {
762 763
        if (node->kind != SEXPR_VALUE)
            continue;
E
Eric Blake 已提交
764 765 766
        ret[i] = strdup(node->u.value);
        if (!ret[i])
            goto no_memory;
767 768 769 770 771 772 773 774
        i++;
    }

    ret[i] = NULL;

  error:
    sexpr_free(root);
    return ret;
E
Eric Blake 已提交
775 776 777 778 779 780

no_memory:
    for (i = 0; i < count; i++)
        VIR_FREE(ret[i]);
    VIR_FREE(ret);
    goto error;
781 782
}

783

784
/**
785
 * xenDaemonDomainCreateXML:
786 787 788
 * @xend: A xend instance
 * @sexpr: An S-Expr description of the domain.
 *
P
Philipp Hahn 已提交
789
 * This method will create a domain based on the passed in description.  The
790
 * domain will be paused after creation and must be unpaused with
791
 * xenDaemonResumeDomain() to begin execution.
792 793 794 795 796 797 798
 * This method may be deprecated once switching to XML-RPC based communcations
 * with xend.
 *
 * Returns 0 for success, -1 (with errno) on error
 */

int
799
xenDaemonDomainCreateXML(virConnectPtr xend, const char *sexpr)
800
{
P
Philipp Hahn 已提交
801
    int ret;
802

P
Philipp Hahn 已提交
803
    ret = xend_op(xend, "", "op", "create", "config", sexpr, NULL);
804 805 806

    return ret;
}
807

808

809
/**
810
 * xenDaemonDomainLookupByName_ids:
811
 * @xend: A xend instance
812 813
 * @domname: The name of the domain
 * @uuid: return value for the UUID if not NULL
814 815 816 817 818 819
 *
 * This method looks up the id of a domain
 *
 * Returns the id on success; -1 (with errno) on error
 */
int
820 821
xenDaemonDomainLookupByName_ids(virConnectPtr xend,
                                const char *domname,
822
                                unsigned char *uuid)
823 824 825 826 827
{
    struct sexpr *root;
    const char *value;
    int ret = -1;

828
    if (uuid != NULL)
829
        memset(uuid, 0, VIR_UUID_BUFLEN);
830 831 832 833 834
    root = sexpr_get(xend, "/xend/domain/%s?detail=1", domname);
    if (root == NULL)
        goto error;

    value = sexpr_node(root, "domain/domid");
835
    if (value == NULL) {
836 837
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("domain information incomplete, missing domid"));
838
        goto error;
839
    }
840
    ret = strtol(value, NULL, 0);
841
    if ((ret == 0) && (value[0] != '0')) {
842 843
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("domain information incorrect domid not numeric"));
844
        ret = -1;
845
    } else if (uuid != NULL) {
846
        if (sexpr_uuid(uuid, root, "domain/uuid") < 0) {
847 848
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("domain information incomplete, missing uuid"));
849
        }
850
    }
851

852
  error:
853
    sexpr_free(root);
854
    return ret;
855 856
}

857

858
static int
859 860
xend_detect_config_version(virConnectPtr conn)
{
861 862
    struct sexpr *root;
    const char *value;
863
    xenUnifiedPrivatePtr priv = conn->privateData;
864

865 866
    root = sexpr_get(conn, "/xend/node/");
    if (root == NULL)
867
        return -1;
868

869
    value = sexpr_node(root, "node/xend_config_format");
870

871
    if (value) {
872
        priv->xendConfigVersion = strtol(value, NULL, 10);
873 874 875
    }  else {
        /* Xen prior to 3.0.3 did not have the xend_config_format
           field, and is implicitly version 1. */
876
        priv->xendConfigVersion = XEND_CONFIG_VERSION_3_0_2;
877
    }
878
    sexpr_free(root);
879
    return 0;
880 881
}

D
Daniel Veillard 已提交
882

883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
/**
 * sexpr_to_xend_domain_state:
 * @root: an S-Expression describing a domain
 *
 * Internal routine getting the domain's state from the domain root provided.
 *
 * Returns domain's state.
 */
static int
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
sexpr_to_xend_domain_state(virDomainPtr domain, const struct sexpr *root)
{
    const char *flags;
    int state = VIR_DOMAIN_NOSTATE;

    if ((flags = sexpr_node(root, "domain/state"))) {
        if (strchr(flags, 'c'))
            state = VIR_DOMAIN_CRASHED;
        else if (strchr(flags, 's'))
            state = VIR_DOMAIN_SHUTOFF;
        else if (strchr(flags, 'd'))
            state = VIR_DOMAIN_SHUTDOWN;
        else if (strchr(flags, 'p'))
            state = VIR_DOMAIN_PAUSED;
        else if (strchr(flags, 'b'))
            state = VIR_DOMAIN_BLOCKED;
        else if (strchr(flags, 'r'))
            state = VIR_DOMAIN_RUNNING;
911 912 913 914 915 916 917 918
    } else if (domain->id < 0 || sexpr_int(root, "domain/status") == 0) {
        /* As far as I can see the domain->id is a bad sign for checking
         * inactive domains as this is inaccurate after the domain has
         * been running once. However domain/status from xend seems to
         * be always present and 0 for inactive domains.
         * (keeping the check for id < 0 to be extra safe about backward
         * compatibility)
         */
919 920 921 922 923 924
        state = VIR_DOMAIN_SHUTOFF;
    }

    return state;
}

D
Daniel Veillard 已提交
925
/**
926 927 928 929 930 931 932 933 934 935
 * sexpr_to_xend_domain_info:
 * @root: an S-Expression describing a domain
 * @info: a info data structure to fill=up
 *
 * Internal routine filling up the info structure with the values from
 * the domain root provided.
 *
 * Returns 0 in case of success, -1 in case of error
 */
static int
936 937
sexpr_to_xend_domain_info(virDomainPtr domain,
                          const struct sexpr *root,
938
                          virDomainInfoPtr info)
939
{
940
    int vcpus;
941

942
    info->state = sexpr_to_xend_domain_state(domain, root);
943 944 945
    info->memory = sexpr_u64(root, "domain/memory") << 10;
    info->maxMem = sexpr_u64(root, "domain/maxmem") << 10;
    info->cpuTime = sexpr_float(root, "domain/cpu_time") * 1000000000;
946

947
    vcpus = sexpr_int(root, "domain/vcpus");
948
    info->nrVirtCpu = count_one_bits_l(sexpr_u64(root, "domain/vcpu_avail"));
949 950 951
    if (!info->nrVirtCpu || vcpus < info->nrVirtCpu)
        info->nrVirtCpu = vcpus;

952
    return 0;
953 954
}

955 956 957 958 959 960 961 962 963 964 965
/**
 * sexpr_to_xend_node_info:
 * @root: an S-Expression describing a domain
 * @info: a info data structure to fill up
 *
 * Internal routine filling up the info structure with the values from
 * the node root provided.
 *
 * Returns 0 in case of success, -1 in case of error
 */
static int
966
sexpr_to_xend_node_info(const struct sexpr *root, virNodeInfoPtr info)
967 968 969 970
{
    const char *machine;

    machine = sexpr_node(root, "node/machine");
971
    if (machine == NULL) {
972
        info->model[0] = 0;
973
    } else {
974
        snprintf(&info->model[0], sizeof(info->model) - 1, "%s", machine);
975
        info->model[sizeof(info->model) - 1] = 0;
976 977 978 979 980 981 982
    }
    info->memory = (unsigned long) sexpr_u64(root, "node/total_memory") << 10;

    info->cpus = sexpr_int(root, "node/nr_cpus");
    info->mhz = sexpr_int(root, "node/cpu_mhz");
    info->nodes = sexpr_int(root, "node/nr_nodes");
    info->sockets = sexpr_int(root, "node/sockets_per_node");
983 984 985
    info->cores = sexpr_int(root, "node/cores_per_socket");
    info->threads = sexpr_int(root, "node/threads_per_core");

986 987 988 989 990 991 992
    /* Xen 3.2.0 replaces sockets_per_node with 'nr_cpus'.
     * Old Xen calculated sockets_per_node using its internal
     * nr_cpus / (nodes*cores*threads), so fake it ourselves
     * in the same way
     */
    if (info->sockets == 0) {
        int nr_cpus = sexpr_int(root, "node/nr_cpus");
993 994
        int procs = info->nodes * info->cores * info->threads;
        if (procs == 0) /* Sanity check in case of Xen bugs in futures..*/
995
            return -1;
996
        info->sockets = nr_cpus / procs;
997
    }
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011

    /* On systems where NUMA nodes are not composed of whole sockets either Xen
     * provided us wrong number of sockets per node or we computed the wrong
     * number in the compatibility code above. In such case, we compute the
     * correct number of sockets on the host, lie about the number of NUMA
     * nodes, and force apps to check capabilities XML for the actual NUMA
     * topology.
     */
    if (info->nodes * info->sockets * info->cores * info->threads
        != info->cpus) {
        info->nodes = 1;
        info->sockets = info->cpus / (info->cores * info->threads);
    }

1012
    return 0;
1013 1014
}

1015

1016
/**
1017
 * sexpr_to_xend_topology
1018
 * @root: an S-Expression describing a node
1019
 * @caps: capability info
1020
 *
1021 1022
 * Internal routine populating capability info with
 * NUMA node mapping details
1023
 *
1024 1025
 * Does nothing when the system doesn't support NUMA (not an error).
 *
1026 1027
 * Returns 0 in case of success, -1 in case of error
 */
1028
static int
1029
sexpr_to_xend_topology(const struct sexpr *root, virCapsPtr caps)
1030 1031
{
    const char *nodeToCpu;
1032
    const char *cur;
1033
    virCapsHostNUMACellCPUPtr cpuInfo = NULL;
1034
    int cell, cpu, nb_cpus = 0;
1035
    int n = 0;
1036
    int numCpus;
1037 1038

    nodeToCpu = sexpr_node(root, "node/node_to_cpu");
1039 1040
    if (nodeToCpu == NULL)
        return 0;               /* no NUMA support */
1041 1042 1043

    numCpus = sexpr_int(root, "node/nr_cpus");

1044 1045 1046

    cur = nodeToCpu;
    while (*cur != 0) {
1047
        virBitmapPtr cpuset = NULL;
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
        /*
         * Find the next NUMA cell described in the xend output
         */
        cur = strstr(cur, "node");
        if (cur == NULL)
            break;
        cur += 4;
        cell = virParseNumber(&cur);
        if (cell < 0)
            goto parse_error;
E
Eric Blake 已提交
1058
        virSkipSpacesAndBackslash(&cur);
1059 1060 1061
        if (*cur != ':')
            goto parse_error;
        cur++;
E
Eric Blake 已提交
1062
        virSkipSpacesAndBackslash(&cur);
1063
        if (STRPREFIX(cur, "no cpus")) {
1064
            nb_cpus = 0;
1065 1066
            if (!(cpuset = virBitmapNew(numCpus)))
                goto memory_error;
1067
        } else {
1068
            nb_cpus = virBitmapParse(cur, 'n', &cpuset, numCpus);
1069 1070 1071 1072
            if (nb_cpus < 0)
                goto error;
        }

1073 1074
        if (VIR_ALLOC_N(cpuInfo, numCpus) < 0) {
            virBitmapFree(cpuset);
1075
            goto memory_error;
1076
        }
1077

1078 1079 1080 1081 1082
        for (n = 0, cpu = 0; cpu < numCpus; cpu++) {
            bool used;

            ignore_value(virBitmapGetBit(cpuset, cpu, &used));
            if (used)
1083
                cpuInfo[n++].id = cpu;
1084
        }
1085
        virBitmapFree(cpuset);
1086

1087
        if (virCapabilitiesAddHostNUMACell(caps, cell, nb_cpus, 0, cpuInfo) < 0)
1088
            goto memory_error;
1089
        cpuInfo = NULL;
1090
    }
1091

1092
    return 0;
1093

1094
  parse_error:
1095
    virReportError(VIR_ERR_XEN_CALL, "%s", _("topology syntax error"));
1096
  error:
1097 1098
    virCapabilitiesClearHostNUMACellCPUTopology(cpuInfo, nb_cpus);
    VIR_FREE(cpuInfo);
1099
    return -1;
1100

1101
  memory_error:
1102
    virReportOOMError();
1103
    goto error;
1104 1105
}

1106

1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
/**
 * sexpr_to_domain:
 * @conn: an existing virtual connection block
 * @root: an S-Expression describing a domain
 *
 * Internal routine returning the associated virDomainPtr for this domain
 *
 * Returns the domain pointer or NULL in case of error.
 */
static virDomainPtr
1117
sexpr_to_domain(virConnectPtr conn, const struct sexpr *root)
1118
{
1119
    virDomainPtr ret = NULL;
1120
    unsigned char uuid[VIR_UUID_BUFLEN];
1121
    const char *name;
1122
    const char *tmp;
1123
    xenUnifiedPrivatePtr priv = conn->privateData;
1124

1125
    if (sexpr_uuid(uuid, root, "domain/uuid") < 0)
1126 1127 1128 1129 1130
        goto error;
    name = sexpr_node(root, "domain/name");
    if (name == NULL)
        goto error;

1131
    ret = virGetDomain(conn, name, uuid);
1132 1133
    if (ret == NULL) return NULL;

1134 1135 1136 1137
    tmp = sexpr_node(root, "domain/domid");
    /* New 3.0.4 XenD will not report a domid for inactive domains,
     * so only error out for old XenD
     */
1138
    if (!tmp && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1139 1140
        goto error;

1141
    if (tmp)
1142
        ret->id = sexpr_int(root, "domain/domid");
1143
    else
1144
        ret->id = -1; /* An inactive domain */
1145

1146
    return ret;
1147

1148
error:
1149 1150
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   "%s", _("failed to parse Xend domain information"));
1151
    virObjectUnref(ret);
1152
    return NULL;
1153
}
1154

1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176

/*****************************************************************
 ******
 ******
 ******
 ******
             Refactored
 ******
 ******
 ******
 ******
 *****************************************************************/
/**
 * xenDaemonOpen:
 * @conn: an existing virtual connection block
 * @name: optional argument to select a connection type
 * @flags: combination of virDrvOpenFlag(s)
 *
 * Creates a localhost Xen Daemon connection
 *
 * Returns 0 in case of success, -1 in case of error.
 */
1177
int
1178 1179
xenDaemonOpen(virConnectPtr conn,
              virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
1180
              unsigned int flags)
1181
{
1182
    char *port = NULL;
1183
    int ret = -1;
1184

1185
    virCheckFlags(VIR_CONNECT_RO, -1);
E
Eric Blake 已提交
1186

1187 1188
    /* Switch on the scheme, which we expect to be NULL (file),
     * "http" or "xen".
1189
     */
1190
    if (conn->uri->scheme == NULL) {
1191
        /* It should be a file access */
1192
        if (conn->uri->path == NULL) {
1193
            virReportError(VIR_ERR_NO_CONNECT, __FUNCTION__);
1194 1195
            goto failed;
        }
1196 1197
        if (xenDaemonOpen_unix(conn, conn->uri->path) < 0 ||
            xend_detect_config_version(conn) == -1)
1198 1199
            goto failed;
    }
1200
    else if (STRCASEEQ(conn->uri->scheme, "xen")) {
1201
        /*
1202 1203
         * try first to open the unix socket
         */
1204 1205
        if (xenDaemonOpen_unix(conn, "/var/lib/xend/xend-socket") == 0 &&
            xend_detect_config_version(conn) != -1)
1206 1207 1208 1209 1210
            goto done;

        /*
         * try though http on port 8000
         */
1211 1212
        if (xenDaemonOpen_tcp(conn, "localhost", "8000") < 0 ||
            xend_detect_config_version(conn) == -1)
1213
            goto failed;
1214
    } else if (STRCASEEQ(conn->uri->scheme, "http")) {
1215
        if (conn->uri->port &&
1216
            virAsprintf(&port, "%d", conn->uri->port) == -1) {
1217
            virReportOOMError();
1218
            goto failed;
1219
        }
1220

1221 1222 1223
        if (xenDaemonOpen_tcp(conn,
                              conn->uri->server ? conn->uri->server : "localhost",
                              port ? port : "8000") < 0 ||
1224
            xend_detect_config_version(conn) == -1)
1225
            goto failed;
1226
    } else {
1227
        virReportError(VIR_ERR_NO_CONNECT, __FUNCTION__);
1228
        goto failed;
1229
    }
1230

1231
 done:
1232
    ret = 0;
1233

1234
failed:
1235 1236
    VIR_FREE(port);
    return ret;
1237
}
1238

1239 1240 1241 1242 1243 1244 1245 1246 1247

/**
 * xenDaemonClose:
 * @conn: an existing virtual connection block
 *
 * This method should be called when a connection to xend instance
 * initialized with xenDaemonOpen is no longer needed
 * to free the associated resources.
 *
1248
 * Returns 0 in case of success, -1 in case of error
1249 1250 1251 1252
 */
int
xenDaemonClose(virConnectPtr conn ATTRIBUTE_UNUSED)
{
1253
    return 0;
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
}

/**
 * xenDaemonDomainSuspend:
 * @domain: pointer to the Domain block
 *
 * Pause the domain, the domain is not scheduled anymore though its resources
 * are preserved. Use xenDaemonDomainResume() to resume execution.
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
xenDaemonDomainSuspend(virDomainPtr domain)
{
1268
    if (domain->id < 0) {
1269 1270
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1271
        return -1;
1272 1273
    }

1274 1275 1276 1277 1278
    return xend_op(domain->conn, domain->name, "op", "pause", NULL);
}

/**
 * xenDaemonDomainResume:
P
Philipp Hahn 已提交
1279
 * @xend: pointer to the Xen Daemon block
1280 1281 1282 1283 1284 1285 1286 1287 1288
 * @name: name for the domain
 *
 * Resume the domain after xenDaemonDomainSuspend() has been called
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
xenDaemonDomainResume(virDomainPtr domain)
{
1289
    if (domain->id < 0) {
1290 1291
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1292
        return -1;
1293 1294
    }

1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
    return xend_op(domain->conn, domain->name, "op", "unpause", NULL);
}

/**
 * xenDaemonDomainShutdown:
 * @domain: pointer to the Domain block
 *
 * Shutdown the domain, the OS is requested to properly shutdown
 * and the domain may ignore it.  It will return immediately
 * after queuing the request.
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
xenDaemonDomainShutdown(virDomainPtr domain)
{
1311
    if (domain->id < 0) {
1312 1313
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1314
        return -1;
1315 1316
    }

1317
    return xend_op(domain->conn, domain->name, "op", "shutdown", "reason", "poweroff", NULL);
1318 1319
}

1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
/**
 * xenDaemonDomainReboot:
 * @domain: pointer to the Domain block
 *
 * Reboot the domain, the OS is requested to properly shutdown
 * and restart but the domain may ignore it.  It will return immediately
 * after queuing the request.
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
1331
xenDaemonDomainReboot(virDomainPtr domain)
1332
{
1333
    if (domain->id < 0) {
1334 1335
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1336
        return -1;
1337 1338
    }

1339 1340 1341
    return xend_op(domain->conn, domain->name, "op", "shutdown", "reason", "reboot", NULL);
}

1342
/**
1343
 * xenDaemonDomainDestroy:
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
 * @domain: pointer to the Domain block
 *
 * Abruptly halt the domain, the OS is not properly shutdown and the
 * resources allocated for the domain are immediately freed, mounted
 * filesystems will be marked as uncleanly shutdown.
 * After calling this function, the domain's status will change to
 * dying and will go away completely once all of the resources have been
 * unmapped (usually from the backend devices).
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
1356
xenDaemonDomainDestroy(virDomainPtr domain)
1357
{
1358
    if (domain->id < 0) {
1359 1360
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1361
        return -1;
1362 1363
    }

1364 1365 1366
    return xend_op(domain->conn, domain->name, "op", "destroy", NULL);
}

1367 1368 1369 1370 1371 1372 1373 1374 1375
/**
 * xenDaemonDomainGetOSType:
 * @domain: a domain object
 *
 * Get the type of domain operation system.
 *
 * Returns the new string or NULL in case of error, the string must be
 *         freed by the caller.
 */
1376
char *
1377 1378 1379 1380 1381 1382 1383 1384
xenDaemonDomainGetOSType(virDomainPtr domain)
{
    char *type;
    struct sexpr *root;

    /* can we ask for a subset ? worth it ? */
    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL)
1385
        return NULL;
1386 1387 1388 1389 1390 1391 1392

    if (sexpr_lookup(root, "domain/image/hvm")) {
        type = strdup("hvm");
    } else {
        type = strdup("linux");
    }

1393
    if (type == NULL)
1394
        virReportOOMError();
1395

1396 1397
    sexpr_free(root);

1398
    return type;
1399 1400
}

1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
/**
 * xenDaemonDomainSave:
 * @domain: pointer to the Domain block
 * @filename: path for the output file
 *
 * This method will suspend a domain and save its memory contents to
 * a file on disk.  Use xenDaemonDomainRestore() to restore a domain after
 * saving.
 * Note that for remote Xen Daemon the file path will be interpreted in
 * the remote host.
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
xenDaemonDomainSave(virDomainPtr domain, const char *filename)
{
1417
    if (domain->id < 0) {
1418 1419
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1420
        return -1;
1421
    }
1422 1423 1424

    /* We can't save the state of Domain-0, that would mean stopping it too */
    if (domain->id == 0) {
1425 1426
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Cannot save host domain"));
1427
        return -1;
1428 1429
    }

1430 1431 1432
    return xend_op(domain->conn, domain->name, "op", "save", "file", filename, NULL);
}

D
Daniel Veillard 已提交
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
/**
 * xenDaemonDomainCoreDump:
 * @domain: pointer to the Domain block
 * @filename: path for the output file
 * @flags: extra flags, currently unused
 *
 * This method will dump the core of a domain on a given file for analysis.
 * Note that for remote Xen Daemon the file path will be interpreted in
 * the remote host.
 *
 * Returns 0 in case of success, -1 in case of error.
 */
1445
int
1446 1447
xenDaemonDomainCoreDump(virDomainPtr domain,
                        const char *filename,
E
Eric Blake 已提交
1448
                        unsigned int flags)
D
Daniel Veillard 已提交
1449
{
E
Eric Blake 已提交
1450 1451
    virCheckFlags(VIR_DUMP_LIVE | VIR_DUMP_CRASH, -1);

1452
    if (domain->id < 0) {
1453 1454
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1455
        return -1;
1456 1457
    }

1458
    return xend_op(domain->conn, domain->name,
J
Jiri Denemark 已提交
1459
                   "op", "dump", "file", filename,
P
Paolo Bonzini 已提交
1460
                   "live", (flags & VIR_DUMP_LIVE ? "1" : "0"),
1461 1462
                   "crash", (flags & VIR_DUMP_CRASH ? "1" : "0"),
                   NULL);
D
Daniel Veillard 已提交
1463 1464
}

1465 1466
/**
 * xenDaemonDomainRestore:
P
Philipp Hahn 已提交
1467
 * @conn: pointer to the Xen Daemon block
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
 * @filename: path for the output file
 *
 * This method will restore a domain saved to disk by xenDaemonDomainSave().
 * Note that for remote Xen Daemon the file path will be interpreted in
 * the remote host.
 *
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
xenDaemonDomainRestore(virConnectPtr conn, const char *filename)
{
    return xend_op(conn, "", "op", "restore", "file", filename, NULL);
}
1481

1482

1483 1484 1485 1486 1487 1488 1489 1490
/**
 * xenDaemonDomainGetMaxMemory:
 * @domain: pointer to the domain block
 *
 * Ask the Xen Daemon for the maximum memory allowed for a domain
 *
 * Returns the memory size in kilobytes or 0 in case of error.
 */
1491
unsigned long long
1492 1493
xenDaemonDomainGetMaxMemory(virDomainPtr domain)
{
1494
    unsigned long long ret = 0;
1495 1496 1497 1498 1499
    struct sexpr *root;

    /* can we ask for a subset ? worth it ? */
    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL)
1500
        return 0;
1501

1502
    ret = sexpr_u64(root, "domain/memory") << 10;
1503 1504
    sexpr_free(root);

1505
    return ret;
1506 1507
}

1508

1509 1510 1511 1512 1513 1514 1515
/**
 * xenDaemonDomainSetMaxMemory:
 * @domain: pointer to the Domain block
 * @memory: The maximum memory in kilobytes
 *
 * This method will set the maximum amount of memory that can be allocated to
 * a domain.  Please note that a domain is able to allocate up to this amount
1516
 * on its own.
1517 1518 1519 1520 1521 1522 1523
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
xenDaemonDomainSetMaxMemory(virDomainPtr domain, unsigned long memory)
{
    char buf[1024];
1524

1525
    snprintf(buf, sizeof(buf), "%lu", VIR_DIV_UP(memory, 1024));
1526 1527 1528 1529
    return xend_op(domain->conn, domain->name, "op", "maxmem_set", "memory",
                   buf, NULL);
}

1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
/**
 * xenDaemonDomainSetMemory:
 * @domain: pointer to the Domain block
 * @memory: The target memory in kilobytes
 *
 * This method will set a target memory allocation for a given domain and
 * request that the guest meet this target.  The guest may or may not actually
 * achieve this target.  When this function returns, it does not signify that
 * the domain has actually reached that target.
 *
 * Memory for a domain can only be allocated up to the maximum memory setting.
 * There is no safe guard for allocations that are too small so be careful
 * when using this function to reduce a domain's memory usage.
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
xenDaemonDomainSetMemory(virDomainPtr domain, unsigned long memory)
{
    char buf[1024];
1550

1551
    snprintf(buf, sizeof(buf), "%lu", VIR_DIV_UP(memory, 1024));
1552 1553 1554 1555
    return xend_op(domain->conn, domain->name, "op", "mem_target_set",
                   "target", buf, NULL);
}

1556

1557
virDomainDefPtr
1558
xenDaemonDomainFetch(virConnectPtr conn, int domid, const char *name,
1559
                     const char *cpus)
1560 1561
{
    struct sexpr *root;
1562
    xenUnifiedPrivatePtr priv = conn->privateData;
1563
    virDomainDefPtr def;
1564 1565 1566
    int id;
    char * tty;
    int vncport;
1567

1568 1569 1570 1571
    if (name)
        root = sexpr_get(conn, "/xend/domain/%s?detail=1", name);
    else
        root = sexpr_get(conn, "/xend/domain/%d?detail=1", domid);
1572
    if (root == NULL)
1573
        return NULL;
1574

1575 1576
    id = xenGetDomIdFromSxpr(root, priv->xendConfigVersion);
    xenUnifiedLock(priv);
1577 1578 1579 1580
    if (sexpr_lookup(root, "domain/image/hvm"))
        tty = xenStoreDomainGetSerialConsolePath(conn, id);
    else
        tty = xenStoreDomainGetConsolePath(conn, id);
1581 1582
    vncport = xenStoreDomainGetVNCPort(conn, id);
    xenUnifiedUnlock(priv);
M
Markus Groß 已提交
1583 1584 1585 1586 1587
    if (!(def = xenParseSxpr(root,
                             priv->xendConfigVersion,
                             cpus,
                             tty,
                             vncport)))
1588 1589 1590
        goto cleanup;

cleanup:
1591 1592
    sexpr_free(root);

1593
    return def;
1594 1595 1596
}


1597
/**
1598
 * xenDaemonDomainGetXMLDesc:
D
Daniel Veillard 已提交
1599
 * @domain: a domain object
1600 1601
 * @flags: potential dump flags
 * @cpus: list of cpu the domain is pinned to.
D
Daniel Veillard 已提交
1602
 *
1603
 * Provide an XML description of the domain.
D
Daniel Veillard 已提交
1604 1605 1606 1607 1608
 *
 * Returns a 0 terminated UTF-8 encoded XML instance, or NULL in case of error.
 *         the caller must free() the returned value.
 */
char *
1609 1610
xenDaemonDomainGetXMLDesc(virDomainPtr domain,
                          unsigned int flags,
E
Eric Blake 已提交
1611
                          const char *cpus)
1612
{
1613 1614
    virDomainDefPtr def;
    char *xml;
1615

E
Eric Blake 已提交
1616 1617
    /* Flags checked by virDomainDefFormat */

1618 1619 1620 1621
    if (!(def = xenDaemonDomainFetch(domain->conn,
                                     domain->id,
                                     domain->name,
                                     cpus)))
1622
        return NULL;
1623

1624
    xml = virDomainDefFormat(def, flags);
1625 1626 1627 1628

    virDomainDefFree(def);

    return xml;
D
Daniel Veillard 已提交
1629
}
1630

1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649

/**
 * xenDaemonDomainGetInfo:
 * @domain: a domain object
 * @info: pointer to a virDomainInfo structure allocated by the user
 *
 * This method looks up information about a domain and update the
 * information block provided.
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
xenDaemonDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
{
    struct sexpr *root;
    int ret;

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL)
1650
        return -1;
1651

1652
    ret = sexpr_to_xend_domain_info(domain, root, info);
1653
    sexpr_free(root);
1654
    return ret;
1655
}
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670


/**
 * xenDaemonDomainGetState:
 * @domain: a domain object
 * @state: returned domain's state
 * @reason: returned reason for the state
 *
 * This method looks up domain state and reason.
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
xenDaemonDomainGetState(virDomainPtr domain,
                        int *state,
1671
                        int *reason)
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
{
    struct sexpr *root;

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (!root)
        return -1;

    *state = sexpr_to_xend_domain_state(domain, root);
    if (reason)
        *reason = 0;

    sexpr_free(root);
    return 0;
}
1686

1687

1688
/**
1689
 * xenDaemonLookupByName:
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
 * @conn: A xend instance
 * @name: The name of the domain
 *
 * This method looks up information about a domain and returns
 * it in the form of a struct xend_domain.  This should be
 * free()'d when no longer needed.
 *
 * Returns domain info on success; NULL (with errno) on error
 */
virDomainPtr
1700
xenDaemonLookupByName(virConnectPtr conn, const char *domname)
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
{
    struct sexpr *root;
    virDomainPtr ret = NULL;

    root = sexpr_get(conn, "/xend/domain/%s?detail=1", domname);
    if (root == NULL)
        goto error;

    ret = sexpr_to_domain(conn, root);

error:
    sexpr_free(root);
1713
    return ret;
1714
}
1715

1716

1717 1718 1719 1720
/**
 * xenDaemonNodeGetInfo:
 * @conn: pointer to the Xen Daemon block
 * @info: pointer to a virNodeInfo structure allocated by the user
1721
 *
1722 1723 1724 1725
 * Extract hardware information about the node.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
1726
int
1727 1728
xenDaemonNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
{
1729 1730 1731 1732 1733
    int ret = -1;
    struct sexpr *root;

    root = sexpr_get(conn, "/xend/node/");
    if (root == NULL)
1734
        return -1;
1735 1736 1737

    ret = sexpr_to_xend_node_info(root, info);
    sexpr_free(root);
1738
    return ret;
1739 1740
}

1741 1742 1743
/**
 * xenDaemonNodeGetTopology:
 * @conn: pointer to the Xen Daemon block
1744
 * @caps: capabilities info
1745 1746 1747 1748 1749 1750
 *
 * This method retrieves a node's topology information.
 *
 * Returns -1 in case of error, 0 otherwise.
 */
int
1751 1752
xenDaemonNodeGetTopology(virConnectPtr conn, virCapsPtr caps)
{
1753 1754 1755 1756 1757
    int ret = -1;
    struct sexpr *root;

    root = sexpr_get(conn, "/xend/node/");
    if (root == NULL) {
1758
        return -1;
1759 1760
    }

1761
    ret = sexpr_to_xend_topology(root, caps);
1762
    sexpr_free(root);
1763
    return ret;
1764 1765
}

1766

1767 1768 1769 1770 1771 1772 1773 1774
/**
 * xenDaemonDomainSetVcpusFlags:
 * @domain: pointer to domain object
 * @nvcpus: the new number of virtual CPUs for this domain
 * @flags: bitwise-ORd from virDomainVcpuFlags
 *
 * Change virtual CPUs allocation of domain according to flags.
 *
1775
 * Returns 0 on success, -1 if an error message was issued
1776 1777
 */
int
1778 1779
xenDaemonDomainSetVcpusFlags(virDomainPtr domain,
                             unsigned int vcpus,
1780 1781 1782 1783 1784
                             unsigned int flags)
{
    char buf[VIR_UUID_BUFLEN];
    int max;

E
Eric Blake 已提交
1785 1786 1787 1788
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

1789
    if (vcpus < 1) {
1790
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1791
        return -1;
1792 1793
    }

1794
    if (domain->id < 0) {
1795
        if (flags & VIR_DOMAIN_VCPU_LIVE) {
1796 1797
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("domain not running"));
1798 1799 1800 1801 1802
            return -1;
        }
    } else {
        if ((flags & (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) !=
            (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) {
1803 1804 1805
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
1806 1807 1808 1809 1810 1811 1812
        }
    }

    /* Unfortunately, xend_op does not validate whether this exceeds
     * the maximum.  */
    flags |= VIR_DOMAIN_VCPU_MAXIMUM;
    if ((max = xenDaemonDomainGetVcpusFlags(domain, flags)) < 0) {
1813 1814
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("could not determine max vcpus for the domain"));
1815 1816 1817
        return -1;
    }
    if (vcpus > max) {
1818 1819 1820
        virReportError(VIR_ERR_INVALID_ARG,
                       _("requested vcpus is greater than max allowable"
                         " vcpus for the domain: %d > %d"), vcpus, max);
1821 1822 1823 1824 1825 1826 1827 1828
        return -1;
    }

    snprintf(buf, sizeof(buf), "%d", vcpus);
    return xend_op(domain->conn, domain->name, "op", "set_vcpus", "vcpus",
                   buf, NULL);
}

1829 1830 1831 1832 1833 1834
/**
 * xenDaemonDomainPinCpu:
 * @domain: pointer to domain object
 * @vcpu: virtual CPU number
 * @cpumap: pointer to a bit map of real CPUs (in 8-bit bytes)
 * @maplen: length of cpumap in bytes
1835
 *
1836
 * Dynamically change the real CPUs which can be allocated to a virtual CPU.
1837 1838 1839 1840 1841
 * NOTE: The XenD cpu affinity map format changed from "[0,1,2]" to
 *       "0,1,2"
 *       the XenD cpu affinity works only after cset 19579.
 *       there is no fine grained xend version detection possible, so we
 *       use the old format for anything before version 3
1842 1843 1844 1845
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
1846 1847 1848 1849
xenDaemonDomainPinVcpu(virDomainPtr domain,
                       unsigned int vcpu,
                       unsigned char *cpumap,
                       int maplen)
1850
{
1851
    char buf[VIR_UUID_BUFLEN], mapstr[sizeof(cpumap_t) * 64];
1852
    int i, j, ret;
1853
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
1854
    virDomainDefPtr def = NULL;
1855

1856
    if (maplen > (int)sizeof(cpumap_t)) {
1857
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1858
        return -1;
1859
    }
1860

1861
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
H
Henrik Persson 已提交
1862 1863
        mapstr[0] = '[';
        mapstr[1] = 0;
1864
    } else {
H
Henrik Persson 已提交
1865
        mapstr[0] = 0;
1866 1867
    }

1868 1869 1870
    /* from bit map, build character string of mapped CPU numbers */
    for (i = 0; i < maplen; i++) for (j = 0; j < 8; j++)
     if (cpumap[i] & (1 << j)) {
1871
        snprintf(buf, sizeof(buf), "%d,", (8 * i) + j);
1872 1873
        strcat(mapstr, buf);
    }
1874
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1875 1876 1877 1878
        mapstr[strlen(mapstr) - 1] = ']';
    else
        mapstr[strlen(mapstr) - 1] = 0;

1879
    snprintf(buf, sizeof(buf), "%d", vcpu);
1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890

    ret = xend_op(domain->conn, domain->name, "op", "pincpu", "vcpu", buf,
                  "cpumap", mapstr, NULL);

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

    if (ret == 0) {
H
Hu Tao 已提交
1891 1892 1893 1894 1895 1896 1897
        if (!def->cputune.vcpupin) {
            if (VIR_ALLOC(def->cputune.vcpupin) < 0) {
                virReportOOMError();
                goto cleanup;
            }
            def->cputune.nvcpupin = 0;
        }
1898
        if (virDomainVcpuPinAdd(&def->cputune.vcpupin,
H
Hu Tao 已提交
1899 1900 1901 1902
                                &def->cputune.nvcpupin,
                                cpumap,
                                maplen,
                                vcpu) < 0) {
1903 1904
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("failed to add vcpupin xml entry"));
1905
            return -1;
1906 1907 1908 1909 1910 1911 1912 1913
        }
    }

    return ret;

cleanup:
    virDomainDefFree(def);
    return -1;
1914 1915
}

1916 1917 1918 1919 1920 1921 1922 1923
/**
 * xenDaemonDomainGetVcpusFlags:
 * @domain: pointer to domain object
 * @flags: bitwise-ORd from virDomainVcpuFlags
 *
 * Extract information about virtual CPUs of domain according to flags.
 *
 * Returns the number of vcpus on success, -1 if an error message was
1924
 * issued
1925 1926 1927 1928 1929 1930 1931 1932

 */
int
xenDaemonDomainGetVcpusFlags(virDomainPtr domain, unsigned int flags)
{
    struct sexpr *root;
    int ret;

E
Eric Blake 已提交
1933 1934 1935 1936
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

1937
    if (domain->id < 0 && (flags & VIR_DOMAIN_VCPU_LIVE)) {
1938 1939
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("domain not active"));
1940 1941 1942 1943 1944 1945 1946 1947 1948
        return -1;
    }

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL)
        return -1;

    ret = sexpr_int(root, "domain/vcpus");
    if (!(flags & VIR_DOMAIN_VCPU_MAXIMUM)) {
1949
        int vcpus = count_one_bits_l(sexpr_u64(root, "domain/vcpu_avail"));
1950 1951 1952 1953
        if (vcpus)
            ret = MIN(vcpus, ret);
    }
    if (!ret)
1954
        ret = -1;
1955 1956 1957 1958
    sexpr_free(root);
    return ret;
}

1959 1960 1961 1962 1963
/**
 * virDomainGetVcpus:
 * @domain: pointer to domain object, or NULL for Domain0
 * @info: pointer to an array of virVcpuInfo structures (OUT)
 * @maxinfo: number of structures in info array
E
Eric Blake 已提交
1964
 * @cpumaps: pointer to a bit map of real CPUs for all vcpus of this domain (in 8-bit bytes) (OUT)
D
Daniel Veillard 已提交
1965
 *	If cpumaps is NULL, then no cpumap information is returned by the API.
1966 1967 1968 1969 1970 1971
 *	It's assumed there is <maxinfo> cpumap in cpumaps array.
 *	The memory allocated to cpumaps must be (maxinfo * maplen) bytes
 *	(ie: calloc(maxinfo, maplen)).
 *	One cpumap inside cpumaps has the format described in virDomainPinVcpu() API.
 * @maplen: number of bytes in one cpumap, from 1 up to size of CPU map in
 *	underlying virtualization system (Xen...).
1972
 *
1973
 * Extract information about virtual CPUs of domain, store it in info array
D
Daniel Veillard 已提交
1974
 * and also in cpumaps if this pointer isn't NULL.
1975 1976 1977 1978
 *
 * Returns the number of info filled in case of success, -1 in case of failure.
 */
int
1979 1980 1981 1982 1983
xenDaemonDomainGetVcpus(virDomainPtr domain,
                        virVcpuInfoPtr info,
                        int maxinfo,
                        unsigned char *cpumaps,
                        int maplen)
1984 1985 1986 1987 1988 1989 1990 1991 1992
{
    struct sexpr *root, *s, *t;
    virVcpuInfoPtr ipt = info;
    int nbinfo = 0, oln;
    unsigned char *cpumap;
    int vcpu, cpu;

    root = sexpr_get(domain->conn, "/xend/domain/%s?op=vcpuinfo", domain->name);
    if (root == NULL)
1993
        return -1;
1994 1995

    if (cpumaps != NULL)
1996
        memset(cpumaps, 0, maxinfo * maplen);
1997 1998

    /* scan the sexprs from "(vcpu (number x)...)" and get parameter values */
1999 2000 2001
    for (s = root; s->kind == SEXPR_CONS; s = s->u.s.cdr) {
        if ((s->u.s.car->kind == SEXPR_CONS) &&
            (s->u.s.car->u.s.car->kind == SEXPR_VALUE) &&
2002
            STREQ(s->u.s.car->u.s.car->u.value, "vcpu")) {
2003
            t = s->u.s.car;
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
            vcpu = ipt->number = sexpr_int(t, "vcpu/number");
            if ((oln = sexpr_int(t, "vcpu/online")) != 0) {
                if (sexpr_int(t, "vcpu/running")) ipt->state = VIR_VCPU_RUNNING;
                if (sexpr_int(t, "vcpu/blocked")) ipt->state = VIR_VCPU_BLOCKED;
            }
            else
                ipt->state = VIR_VCPU_OFFLINE;
            ipt->cpuTime = sexpr_float(t, "vcpu/cpu_time") * 1000000000;
            ipt->cpu = oln ? sexpr_int(t, "vcpu/cpu") : -1;

            if (cpumaps != NULL && vcpu >= 0 && vcpu < maxinfo) {
                cpumap = (unsigned char *) VIR_GET_CPUMAP(cpumaps, maplen, vcpu);
                /*
                 * get sexpr from "(cpumap (x y z...))" and convert values
                 * to bitmap
                 */
2020 2021 2022
                for (t = t->u.s.cdr; t->kind == SEXPR_CONS; t = t->u.s.cdr)
                    if ((t->u.s.car->kind == SEXPR_CONS) &&
                        (t->u.s.car->u.s.car->kind == SEXPR_VALUE) &&
2023
                        STREQ(t->u.s.car->u.s.car->u.value, "cpumap") &&
2024 2025
                        (t->u.s.car->u.s.cdr->kind == SEXPR_CONS)) {
                        for (t = t->u.s.car->u.s.cdr->u.s.car; t->kind == SEXPR_CONS; t = t->u.s.cdr)
2026
                            if (t->u.s.car->kind == SEXPR_VALUE
2027
                                && virStrToLong_i(t->u.s.car->u.value, NULL, 10, &cpu) == 0
2028 2029 2030
                                && cpu >= 0
                                && (VIR_CPU_MAPLEN(cpu+1) <= maplen)) {
                                VIR_USE_CPU(cpumap, cpu);
2031 2032 2033
                            }
                        break;
                    }
2034 2035
            }

2036 2037 2038
            if (++nbinfo == maxinfo) break;
            ipt++;
        }
2039 2040
    }
    sexpr_free(root);
2041
    return nbinfo;
2042 2043
}

2044 2045 2046 2047 2048 2049 2050 2051 2052
/**
 * xenDaemonLookupByUUID:
 * @conn: pointer to the hypervisor connection
 * @uuid: the raw UUID for the domain
 *
 * Try to lookup a domain on xend based on its UUID.
 *
 * Returns a new domain object or NULL in case of failure
 */
2053
virDomainPtr
2054 2055 2056 2057 2058
xenDaemonLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
    virDomainPtr ret;
    char *name = NULL;
    int id = -1;
2059
    xenUnifiedPrivatePtr priv = conn->privateData;
2060

2061
    /* Old approach for xen <= 3.0.3 */
2062
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
2063 2064 2065 2066 2067 2068
        char **names, **tmp;
        unsigned char ident[VIR_UUID_BUFLEN];
        names = xenDaemonListDomainsOld(conn);
        tmp = names;

        if (names == NULL) {
2069
            return NULL;
2070 2071 2072 2073 2074
        }
        while (*tmp != NULL) {
            id = xenDaemonDomainLookupByName_ids(conn, *tmp, &ident[0]);
            if (id >= 0) {
                if (!memcmp(uuid, ident, VIR_UUID_BUFLEN)) {
E
Eric Blake 已提交
2075
                    name = *tmp;
2076 2077
                    break;
                }
2078
            }
2079
            tmp++;
2080
        }
E
Eric Blake 已提交
2081 2082 2083 2084 2085 2086
        tmp = names;
        while (*tmp) {
            if (*tmp != name)
                VIR_FREE(*tmp);
            tmp++;
        }
2087
        VIR_FREE(names);
2088 2089 2090 2091 2092
    } else { /* New approach for xen >= 3.0.4 */
        char *domname = NULL;
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        struct sexpr *root = NULL;

2093
        virUUIDFormat(uuid, uuidstr);
2094 2095
        root = sexpr_get(conn, "/xend/domain/%s?detail=1", uuidstr);
        if (root == NULL)
2096
            return NULL;
2097 2098 2099 2100 2101
        domname = (char*)sexpr_node(root, "domain/name");
        if (sexpr_node(root, "domain/domid")) /* only active domains have domid */
            id = sexpr_int(root, "domain/domid");
        else
            id = -1;
2102 2103 2104 2105 2106

        if (domname) {
            name = strdup(domname);

            if (name == NULL)
2107
                virReportOOMError();
2108 2109
        }

2110
        sexpr_free(root);
2111 2112 2113
    }

    if (name == NULL)
2114
        return NULL;
2115 2116

    ret = virGetDomain(conn, name, uuid);
2117
    if (ret == NULL) goto cleanup;
2118

2119
    ret->id = id;
2120 2121

  cleanup:
2122
    VIR_FREE(name);
2123
    return ret;
2124
}
2125 2126

/**
2127
 * xenDaemonCreateXML:
2128 2129 2130 2131 2132 2133
 * @conn: pointer to the hypervisor connection
 * @xmlDesc: an XML description of the domain
 * @flags: an optional set of virDomainFlags
 *
 * Launch a new Linux guest domain, based on an XML description similar
 * to the one returned by virDomainGetXMLDesc()
2134
 * This function may requires privileged access to the hypervisor.
2135
 *
2136 2137
 * Returns a new domain object or NULL in case of failure
 */
2138
virDomainPtr
2139
xenDaemonCreateXML(virConnectPtr conn, const char *xmlDesc)
2140 2141 2142
{
    int ret;
    char *sexpr;
2143
    virDomainPtr dom = NULL;
2144
    xenUnifiedPrivatePtr priv = conn->privateData;
2145
    virDomainDefPtr def;
2146

2147 2148
    if (!(def = virDomainDefParseString(xmlDesc, priv->caps, priv->xmlopt,
                                        1 << VIR_DOMAIN_VIRT_XEN,
2149
                                        VIR_DOMAIN_XML_INACTIVE)))
2150
        return NULL;
2151

M
Markus Groß 已提交
2152
    if (!(sexpr = xenFormatSxpr(conn, def, priv->xendConfigVersion))) {
2153
        virDomainDefFree(def);
2154
        return NULL;
2155 2156
    }

2157
    ret = xenDaemonDomainCreateXML(conn, sexpr);
2158
    VIR_FREE(sexpr);
2159 2160 2161 2162
    if (ret != 0) {
        goto error;
    }

2163 2164
    /* This comes before wait_for_devices, to ensure that latter
       cleanup will destroy the domain upon failure */
2165
    if (!(dom = virDomainLookupByName(conn, def->name)))
2166 2167
        goto error;

2168
    if (xend_wait_for_devices(conn, def->name) < 0)
2169 2170
        goto error;

2171
    if (xenDaemonDomainResume(dom) < 0)
2172 2173
        goto error;

2174
    virDomainDefFree(def);
2175
    return dom;
2176

2177
  error:
2178 2179
    /* Make sure we don't leave a still-born domain around */
    if (dom != NULL) {
2180
        xenDaemonDomainDestroy(dom);
2181
        virObjectUnref(dom);
2182
    }
2183
    virDomainDefFree(def);
2184
    return NULL;
2185
}
2186 2187

/**
2188
 * xenDaemonAttachDeviceFlags:
2189 2190
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
2191
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
2192
 *
2193 2194 2195 2196 2197
 * Create a virtual device attachment to backend.
 * XML description is translated into S-expression.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
2198
int
2199 2200
xenDaemonAttachDeviceFlags(virDomainPtr domain,
                           const char *xml,
2201
                           unsigned int flags)
2202
{
2203
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
2204 2205 2206 2207 2208
    char *sexpr = NULL;
    int ret = -1;
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2209
    char class[8], ref[80];
2210
    char *target = NULL;
2211

E
Eric Blake 已提交
2212 2213
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1);

2214
    if (domain->id < 0) {
2215 2216
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
2217 2218
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot modify live config if domain is inactive"));
2219 2220
            return -1;
        }
2221 2222
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
2223
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4 &&
E
Eric Blake 已提交
2224
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2225
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2226 2227 2228
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2229 2230
            return -1;
        }
2231
        /* Xen only supports modifying both live and persistent config if
2232 2233
         * xendConfigVersion >= 3
         */
2234
        if (priv->xendConfigVersion >= XEND_CONFIG_VERSION_3_0_4 &&
2235 2236
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2237 2238 2239
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2240 2241 2242
            return -1;
        }
    }
2243

2244 2245 2246 2247 2248 2249
    if (!(def = xenDaemonDomainFetch(domain->conn,
                                     domain->id,
                                     domain->name,
                                     NULL)))
        goto cleanup;

2250 2251
    if (!(dev = virDomainDeviceDefParse(xml, def, priv->caps, priv->xmlopt,
                                        VIR_DOMAIN_XML_INACTIVE)))
2252 2253 2254 2255 2256
        goto cleanup;


    switch (dev->type) {
    case VIR_DOMAIN_DEVICE_DISK:
2257 2258 2259 2260
        if (xenFormatSxprDisk(dev->data.disk,
                              &buf,
                              STREQ(def->os.type, "hvm") ? 1 : 0,
                              priv->xendConfigVersion, 1) < 0)
2261
            goto cleanup;
2262 2263 2264 2265 2266 2267 2268

        if (dev->data.disk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
            if (!(target = strdup(dev->data.disk->dst))) {
                virReportOOMError();
                goto cleanup;
            }
        }
2269
        break;
2270 2271

    case VIR_DOMAIN_DEVICE_NET:
M
Markus Groß 已提交
2272 2273 2274 2275 2276
        if (xenFormatSxprNet(domain->conn,
                             dev->data.net,
                             &buf,
                             STREQ(def->os.type, "hvm") ? 1 : 0,
                             priv->xendConfigVersion, 1) < 0)
2277
            goto cleanup;
2278 2279

        char macStr[VIR_MAC_STRING_BUFLEN];
2280
        virMacAddrFormat(&dev->data.net->mac, macStr);
2281 2282 2283 2284 2285

        if (!(target = strdup(macStr))) {
            virReportOOMError();
            goto cleanup;
        }
2286
        break;
2287

2288 2289 2290
    case VIR_DOMAIN_DEVICE_HOSTDEV:
        if (dev->data.hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            dev->data.hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
M
Markus Groß 已提交
2291
            if (xenFormatSxprOnePCI(dev->data.hostdev, &buf, 0) < 0)
2292
                goto cleanup;
2293

2294
            virDevicePCIAddress PCIAddr;
2295

2296
            PCIAddr = dev->data.hostdev->source.subsys.u.pci.addr;
2297 2298
            if (virAsprintf(&target, "PCI device: %.4x:%.2x:%.2x",
                            PCIAddr.domain, PCIAddr.bus, PCIAddr.slot) < 0) {
2299 2300 2301
                virReportOOMError();
                goto cleanup;
            }
2302
        } else {
2303 2304
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("unsupported device type"));
2305 2306 2307 2308
            goto cleanup;
        }
        break;

2309
    default:
2310 2311
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unsupported device type"));
2312
        goto cleanup;
2313
    }
2314 2315 2316 2317

    sexpr = virBufferContentAndReset(&buf);

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref))) {
2318 2319
        /* device doesn't exist, define it */
        ret = xend_op(domain->conn, domain->name, "op", "device_create",
2320
                      "config", sexpr, NULL);
2321 2322
    } else {
        if (dev->data.disk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
2323 2324
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("target '%s' already exists"), target);
2325 2326 2327 2328 2329
        } else {
            /* device exists, attempt to modify it */
            ret = xend_op(domain->conn, domain->name, "op", "device_configure",
                          "config", sexpr, "dev", ref, NULL);
        }
2330
    }
2331 2332

cleanup:
2333
    VIR_FREE(sexpr);
2334 2335
    virDomainDefFree(def);
    virDomainDeviceDefFree(dev);
2336
    VIR_FREE(target);
2337 2338 2339
    return ret;
}

2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
/**
 * xenDaemonUpdateDeviceFlags:
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
 *
 * Create a virtual device attachment to backend.
 * XML description is translated into S-expression.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
2351
int
2352 2353
xenDaemonUpdateDeviceFlags(virDomainPtr domain,
                           const char *xml,
2354 2355
                           unsigned int flags)
{
2356
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
2357 2358 2359 2360 2361 2362 2363
    char *sexpr = NULL;
    int ret = -1;
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char class[8], ref[80];

E
Eric Blake 已提交
2364
    virCheckFlags(VIR_DOMAIN_DEVICE_MODIFY_LIVE |
2365 2366
                  VIR_DOMAIN_DEVICE_MODIFY_CONFIG, -1);

2367
    if (domain->id < 0) {
2368 2369
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
2370 2371
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot modify live config if domain is inactive"));
2372 2373
            return -1;
        }
2374 2375
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
2376
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4 &&
E
Eric Blake 已提交
2377
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2378
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2379 2380 2381
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2382 2383 2384 2385 2386
            return -1;
        }
        /* Xen only supports modifying both live and persistent config if
         * xendConfigVersion >= 3
         */
2387
        if (priv->xendConfigVersion >= XEND_CONFIG_VERSION_3_0_4 &&
2388 2389
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2390 2391 2392
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2393 2394 2395 2396 2397 2398 2399 2400 2401 2402
            return -1;
        }
    }

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

2403 2404
    if (!(dev = virDomainDeviceDefParse(xml, def, priv->caps, priv->xmlopt,
                                        VIR_DOMAIN_XML_INACTIVE)))
2405 2406 2407 2408 2409
        goto cleanup;


    switch (dev->type) {
    case VIR_DOMAIN_DEVICE_DISK:
2410
        if (xenFormatSxprDisk(dev->data.disk,
M
Markus Groß 已提交
2411 2412 2413
                              &buf,
                              STREQ(def->os.type, "hvm") ? 1 : 0,
                              priv->xendConfigVersion, 1) < 0)
2414 2415 2416 2417
            goto cleanup;
        break;

    default:
2418 2419
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unsupported device type"));
2420 2421 2422 2423 2424 2425
        goto cleanup;
    }

    sexpr = virBufferContentAndReset(&buf);

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref))) {
2426 2427
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("requested device does not exist"));
2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441
        goto cleanup;
    } else {
        /* device exists, attempt to modify it */
        ret = xend_op(domain->conn, domain->name, "op", "device_configure",
                      "config", sexpr, "dev", ref, NULL);
    }

cleanup:
    VIR_FREE(sexpr);
    virDomainDefFree(def);
    virDomainDeviceDefFree(dev);
    return ret;
}

2442
/**
2443
 * xenDaemonDetachDeviceFlags:
2444 2445
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
2446
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
2447
 *
2448 2449 2450 2451
 * Destroy a virtual device attachment to backend.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
2452
int
2453 2454
xenDaemonDetachDeviceFlags(virDomainPtr domain,
                           const char *xml,
2455
                           unsigned int flags)
2456
{
2457
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
2458
    char class[8], ref[80];
2459 2460 2461
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    int ret = -1;
2462 2463
    char *xendev = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2464

E
Eric Blake 已提交
2465 2466
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1);

2467
    if (domain->id < 0) {
2468 2469
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
2470 2471
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot modify live config if domain is inactive"));
2472 2473
            return -1;
        }
2474 2475
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
2476
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4 &&
E
Eric Blake 已提交
2477
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2478
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2479 2480 2481
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2482 2483
            return -1;
        }
2484
        /* Xen only supports modifying both live and persistent config if
2485 2486
         * xendConfigVersion >= 3
         */
2487
        if (priv->xendConfigVersion >= XEND_CONFIG_VERSION_3_0_4 &&
2488 2489
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2490 2491 2492
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2493 2494 2495
            return -1;
        }
    }
2496 2497 2498 2499 2500 2501 2502

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

2503 2504
    if (!(dev = virDomainDeviceDefParse(xml, def, priv->caps, priv->xmlopt,
                                        VIR_DOMAIN_XML_INACTIVE)))
2505 2506 2507 2508 2509
        goto cleanup;

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref)))
        goto cleanup;

2510 2511 2512
    if (dev->type == VIR_DOMAIN_DEVICE_HOSTDEV) {
        if (dev->data.hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            dev->data.hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
M
Markus Groß 已提交
2513
            if (xenFormatSxprOnePCI(dev->data.hostdev, &buf, 1) < 0)
2514 2515
                goto cleanup;
        } else {
2516 2517
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("unsupported device type"));
2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529
            goto cleanup;
        }
        xendev = virBufferContentAndReset(&buf);
        ret = xend_op(domain->conn, domain->name, "op", "device_configure",
                      "config", xendev, "dev", ref, NULL);
        VIR_FREE(xendev);
    }
    else {
        ret = xend_op(domain->conn, domain->name, "op", "device_destroy",
                      "type", class, "dev", ref, "force", "0", "rm_cfg", "1",
                      NULL);
    }
2530 2531 2532 2533 2534 2535

cleanup:
    virDomainDefFree(def);
    virDomainDeviceDefFree(dev);

    return ret;
2536
}
2537

2538
int
2539
xenDaemonDomainGetAutostart(virDomainPtr domain, int *autostart)
2540 2541 2542 2543 2544 2545
{
    struct sexpr *root;
    const char *tmp;

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL) {
2546 2547
        virReportError(VIR_ERR_XEN_CALL,
                       "%s", _("xenDaemonGetAutostart failed to find this domain"));
2548
        return -1;
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562
    }

    *autostart = 0;

    tmp = sexpr_node(root, "domain/on_xend_start");
    if (tmp && STREQ(tmp, "start")) {
        *autostart = 1;
    }

    sexpr_free(root);
    return 0;
}

int
2563
xenDaemonDomainSetAutostart(virDomainPtr domain, int autostart)
2564 2565
{
    struct sexpr *root, *autonode;
2566 2567
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    char *content = NULL;
2568 2569 2570 2571
    int ret = -1;

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL) {
2572 2573
        virReportError(VIR_ERR_XEN_CALL,
                       "%s", _("xenDaemonSetAutostart failed to find this domain"));
2574
        return -1;
2575 2576
    }

2577 2578 2579 2580
    autonode = sexpr_lookup(root, "domain/on_xend_start");
    if (autonode) {
        const char *val = (autonode->u.s.car->kind == SEXPR_VALUE
                           ? autonode->u.s.car->u.value : NULL);
2581
        if (!val || (!STREQ(val, "ignore") && !STREQ(val, "start"))) {
2582 2583
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("unexpected value from on_xend_start"));
2584 2585 2586
            goto error;
        }

2587
        /* Change the autostart value in place, then define the new sexpr */
2588
        VIR_FREE(autonode->u.s.car->u.value);
2589 2590 2591
        autonode->u.s.car->u.value = (autostart ? strdup("start")
                                                : strdup("ignore"));
        if (!(autonode->u.s.car->u.value)) {
2592
            virReportOOMError();
2593 2594 2595
            goto error;
        }

2596
        if (sexpr2string(root, &buffer) < 0) {
2597 2598
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("sexpr2string failed"));
2599 2600
            goto error;
        }
2601 2602 2603 2604 2605 2606 2607 2608 2609

        if (virBufferError(&buffer)) {
            virReportOOMError();
            goto error;
        }

        content = virBufferContentAndReset(&buffer);

        if (xend_op(domain->conn, "", "op", "new", "config", content, NULL) != 0) {
2610 2611
            virReportError(VIR_ERR_XEN_CALL,
                           "%s", _("Failed to redefine sexpr"));
2612 2613 2614
            goto error;
        }
    } else {
2615 2616
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("on_xend_start not present in sexpr"));
2617 2618 2619 2620 2621
        goto error;
    }

    ret = 0;
  error:
2622 2623
    virBufferFreeAndReset(&buffer);
    VIR_FREE(content);
2624 2625 2626
    sexpr_free(root);
    return ret;
}
2627

2628
int
2629
xenDaemonDomainMigratePrepare(virConnectPtr dconn ATTRIBUTE_UNUSED,
2630 2631 2632 2633 2634 2635 2636
                              char **cookie ATTRIBUTE_UNUSED,
                              int *cookielen ATTRIBUTE_UNUSED,
                              const char *uri_in,
                              char **uri_out,
                              unsigned long flags,
                              const char *dname ATTRIBUTE_UNUSED,
                              unsigned long resource ATTRIBUTE_UNUSED)
2637
{
E
Eric Blake 已提交
2638 2639
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

2640 2641 2642 2643 2644
    /* If uri_in is NULL, get the current hostname as a best guess
     * of how the source host should connect to us.  Note that caller
     * deallocates this string.
     */
    if (uri_in == NULL) {
2645
        *uri_out = virGetHostname();
2646
        if (*uri_out == NULL)
2647 2648 2649 2650 2651 2652 2653
            return -1;
    }

    return 0;
}

int
2654 2655 2656 2657 2658 2659 2660
xenDaemonDomainMigratePerform(virDomainPtr domain,
                              const char *cookie ATTRIBUTE_UNUSED,
                              int cookielen ATTRIBUTE_UNUSED,
                              const char *uri,
                              unsigned long flags,
                              const char *dname,
                              unsigned long bandwidth)
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671
{
    /* Upper layers have already checked domain. */
    /* NB: Passing port=0 to xend means it ignores
     * the port.  However this is somewhat specific to
     * the internals of the xend Python code. (XXX).
     */
    char port[16] = "0";
    char live[2] = "0";
    int ret;
    char *p, *hostname = NULL;

2672 2673
    int undefined_source = 0;

E
Eric Blake 已提交
2674 2675
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

2676 2677
    /* Xen doesn't support renaming domains during migration. */
    if (dname) {
2678 2679 2680
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: Xen does not support"
                               " renaming domains during migration"));
2681 2682 2683 2684 2685 2686 2687
        return -1;
    }

    /* Xen (at least up to 3.1.0) takes a resource parameter but
     * ignores it.
     */
    if (bandwidth) {
2688 2689 2690
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: Xen does not support"
                               " bandwidth limits during migration"));
2691 2692 2693
        return -1;
    }

2694 2695 2696
    /*
     * Check the flags.
     */
2697
    if ((flags & VIR_MIGRATE_LIVE)) {
2698
        strcpy(live, "1");
2699 2700
        flags &= ~VIR_MIGRATE_LIVE;
    }
2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711

    /* Undefine the VM on the source host after migration? */
    if (flags & VIR_MIGRATE_UNDEFINE_SOURCE) {
       undefined_source = 1;
       flags &= ~VIR_MIGRATE_UNDEFINE_SOURCE;
    }

    /* Ignore the persist_dest flag here */
    if (flags & VIR_MIGRATE_PERSIST_DEST)
        flags &= ~VIR_MIGRATE_PERSIST_DEST;

2712 2713 2714 2715
    /* This is buggy in Xend, but could be supported in principle.  Give
     * a nice error message.
     */
    if (flags & VIR_MIGRATE_PAUSED) {
2716 2717
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: xend cannot migrate paused domains"));
2718 2719 2720
        return -1;
    }

2721 2722
    /* XXX we could easily do tunnelled & peer2peer migration too
       if we want to. support these... */
2723
    if (flags != 0) {
2724 2725
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: unsupported flag"));
2726 2727 2728 2729 2730 2731 2732 2733
        return -1;
    }

    /* Set hostname and port.
     *
     * URI is non-NULL (guaranteed by caller).  We expect either
     * "hostname", "hostname:port" or "xenmigr://hostname[:port]/".
     */
2734
    if (strstr(uri, "//")) {   /* Full URI. */
2735
        virURIPtr uriptr;
2736
        if (!(uriptr = virURIParse(uri)))
2737
            return -1;
2738

2739
        if (uriptr->scheme && STRCASENEQ(uriptr->scheme, "xenmigr")) {
2740 2741 2742
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("xenDaemonDomainMigrate: only xenmigr://"
                                   " migrations are supported by Xen"));
2743
            virURIFree(uriptr);
2744 2745 2746
            return -1;
        }
        if (!uriptr->server) {
2747 2748 2749
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("xenDaemonDomainMigrate: a hostname must be"
                                   " specified in the URI"));
2750
            virURIFree(uriptr);
2751 2752
            return -1;
        }
2753
        hostname = strdup(uriptr->server);
2754
        if (!hostname) {
2755
            virReportOOMError();
2756
            virURIFree(uriptr);
2757 2758 2759
            return -1;
        }
        if (uriptr->port)
2760 2761
            snprintf(port, sizeof(port), "%d", uriptr->port);
        virURIFree(uriptr);
2762
    }
2763
    else if ((p = strrchr(uri, ':')) != NULL) { /* "hostname:port" */
2764 2765
        int port_nr, n;

2766
        if (virStrToLong_i(p+1, NULL, 10, &port_nr) < 0) {
2767 2768
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("xenDaemonDomainMigrate: invalid port number"));
2769 2770
            return -1;
        }
2771
        snprintf(port, sizeof(port), "%d", port_nr);
2772 2773 2774

        /* Get the hostname. */
        n = p - uri; /* n = Length of hostname in bytes. */
2775
        hostname = strdup(uri);
2776
        if (!hostname) {
2777
            virReportOOMError();
2778 2779 2780 2781 2782
            return -1;
        }
        hostname[n] = '\0';
    }
    else {                      /* "hostname" (or IP address) */
2783
        hostname = strdup(uri);
2784
        if (!hostname) {
2785
            virReportOOMError();
2786 2787 2788 2789
            return -1;
        }
    }

2790
    VIR_DEBUG("hostname = %s, port = %s", hostname, port);
2791

J
Jim Fehlig 已提交
2792 2793 2794 2795 2796 2797
    /* Make the call.
     * NB:  xend will fail the operation if any parameters are
     * missing but happily accept unknown parameters.  This works
     * to our advantage since all parameters supported and required
     * by current xend can be included without breaking older xend.
     */
2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808
    ret = xend_op(domain->conn, domain->name,
                  "op", "migrate",
                  "destination", hostname,
                  "live", live,
                  "port", port,
                  "node", "-1", /* xen-unstable c/s 17753 */
                  "ssl", "0", /* xen-unstable c/s 17709 */
                  "change_home_server", "0", /* xen-unstable c/s 20326 */
                  "resource", "0", /* removed by xen-unstable c/s 17553 */
                  NULL);
    VIR_FREE(hostname);
2809

2810
    if (ret == 0 && undefined_source)
2811
        xenDaemonDomainUndefine(domain);
2812

2813
    VIR_DEBUG("migration done");
2814 2815 2816 2817

    return ret;
}

2818 2819 2820
virDomainPtr
xenDaemonDomainDefineXML(virConnectPtr conn, const char *xmlDesc)
{
2821 2822 2823
    int ret;
    char *sexpr;
    virDomainPtr dom;
2824
    xenUnifiedPrivatePtr priv = conn->privateData;
2825
    virDomainDefPtr def;
2826

2827 2828
    if (!(def = virDomainDefParseString(xmlDesc, priv->caps, priv->xmlopt,
                                        1 << VIR_DOMAIN_VIRT_XEN,
2829
                                        VIR_DOMAIN_XML_INACTIVE))) {
2830 2831
        virReportError(VIR_ERR_XML_ERROR,
                       "%s", _("failed to parse domain description"));
2832
        return NULL;
2833 2834
    }

M
Markus Groß 已提交
2835
    if (!(sexpr = xenFormatSxpr(conn, def, priv->xendConfigVersion))) {
2836 2837
        virReportError(VIR_ERR_XML_ERROR,
                       "%s", _("failed to build sexpr"));
2838 2839 2840
        goto error;
    }

2841
    ret = xend_op(conn, "", "op", "new", "config", sexpr, NULL);
2842
    VIR_FREE(sexpr);
2843
    if (ret != 0) {
2844 2845
        virReportError(VIR_ERR_XEN_CALL,
                       _("Failed to create inactive domain %s"), def->name);
2846 2847 2848
        goto error;
    }

2849
    dom = virDomainLookupByName(conn, def->name);
2850 2851 2852
    if (dom == NULL) {
        goto error;
    }
2853
    virDomainDefFree(def);
2854
    return dom;
2855

2856
  error:
2857
    virDomainDefFree(def);
2858
    return NULL;
2859
}
2860 2861
int
xenDaemonDomainCreate(virDomainPtr domain)
2862
{
2863
    int ret;
2864

2865 2866
    ret = xend_op(domain->conn, domain->name, "op", "start", NULL);

2867 2868 2869 2870 2871
    if (ret == 0) {
        int id = xenDaemonDomainLookupByName_ids(domain->conn, domain->name,
                                                 domain->uuid);
        if (id > 0)
            domain->id = id;
2872
    }
2873

2874
    return ret;
2875 2876
}

2877 2878
int
xenDaemonDomainUndefine(virDomainPtr domain)
2879
{
2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
    return xend_op(domain->conn, domain->name, "op", "delete", NULL);
}

/**
 * xenDaemonNumOfDomains:
 * @conn: pointer to the hypervisor connection
 *
 * Provides the number of active domains.
 *
 * Returns the number of domain found or -1 in case of error
 */
2891
int
2892 2893 2894 2895 2896
xenDaemonNumOfDefinedDomains(virConnectPtr conn)
{
    struct sexpr *root = NULL;
    int ret = -1;
    struct sexpr *_for_i, *node;
2897

2898 2899 2900 2901 2902 2903
    root = sexpr_get(conn, "/xend/domain?state=halted");
    if (root == NULL)
        goto error;

    ret = 0;

2904
    /* coverity[copy_paste_error] */
2905 2906
    for (_for_i = root, node = root->u.s.car; _for_i->kind == SEXPR_CONS;
         _for_i = _for_i->u.s.cdr, node = _for_i->u.s.car) {
2907 2908 2909 2910 2911 2912
        if (node->kind != SEXPR_VALUE)
            continue;
        ret++;
    }

error:
2913
    sexpr_free(root);
2914
    return ret;
2915 2916
}

2917
int
2918 2919 2920 2921
xenDaemonListDefinedDomains(virConnectPtr conn,
                            char **const names,
                            int maxnames)
{
2922
    struct sexpr *root = NULL;
2923
    int i, ret = -1;
2924
    struct sexpr *_for_i, *node;
2925

2926
    if (maxnames == 0)
2927
        return 0;
2928

2929 2930 2931 2932 2933 2934
    root = sexpr_get(conn, "/xend/domain?state=halted");
    if (root == NULL)
        goto error;

    ret = 0;

2935
    /* coverity[copy_paste_error] */
2936 2937
    for (_for_i = root, node = root->u.s.car; _for_i->kind == SEXPR_CONS;
         _for_i = _for_i->u.s.cdr, node = _for_i->u.s.car) {
2938 2939 2940
        if (node->kind != SEXPR_VALUE)
            continue;

2941
        if ((names[ret++] = strdup(node->u.value)) == NULL) {
2942
            virReportOOMError();
2943 2944 2945
            goto error;
        }

2946 2947 2948 2949
        if (ret >= maxnames)
            break;
    }

2950 2951
cleanup:
    sexpr_free(root);
2952
    return ret;
2953

2954
error:
2955 2956 2957
    for (i = 0; i < ret; ++i)
        VIR_FREE(names[i]);

2958 2959 2960
    ret = -1;

    goto cleanup;
2961 2962
}

2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
/**
 * xenDaemonGetSchedulerType:
 * @domain: pointer to the Domain block
 * @nparams: give a number of scheduler parameters
 *
 * Get the scheduler type of Xen
 *
 * Returns a scheduler name (credit or sedf) which must be freed by the
 * caller or NULL in case of failure
 */
2973
char *
2974 2975
xenDaemonGetSchedulerType(virDomainPtr domain, int *nparams)
{
2976
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
2977 2978 2979 2980 2981
    struct sexpr *root;
    const char *ret = NULL;
    char *schedulertype = NULL;

    /* Support only xendConfigVersion >=4 */
2982
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_1_0) {
2983 2984
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("unsupported in xendConfigVersion < 4"));
2985 2986 2987 2988 2989 2990 2991 2992 2993 2994
        return NULL;
    }

    root = sexpr_get(domain->conn, "/xend/node/");
    if (root == NULL)
        return NULL;

    /* get xen_scheduler from xend/node */
    ret = sexpr_node(root, "node/xen_scheduler");
    if (ret == NULL){
2995 2996
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("node information incomplete, missing scheduler name"));
2997 2998
        goto error;
    }
2999
    if (STREQ(ret, "credit")) {
3000 3001
        schedulertype = strdup("credit");
        if (schedulertype == NULL){
3002
            virReportOOMError();
3003 3004
            goto error;
        }
3005 3006
        if (nparams)
            *nparams = XEN_SCHED_CRED_NPARAM;
3007
    } else if (STREQ(ret, "sedf")) {
3008 3009
        schedulertype = strdup("sedf");
        if (schedulertype == NULL){
3010
            virReportOOMError();
3011 3012
            goto error;
        }
3013 3014
        if (nparams)
            *nparams = XEN_SCHED_SEDF_NPARAM;
3015
    } else {
3016
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037
        goto error;
    }

error:
    sexpr_free(root);
    return schedulertype;

}

/**
 * xenDaemonGetSchedulerParameters:
 * @domain: pointer to the Domain block
 * @params: pointer to scheduler parameters
 *          This memory area must be allocated by the caller
 * @nparams: a number of scheduler parameters which should be same as a
 *           given number from xenDaemonGetSchedulerType()
 *
 * Get the scheduler parameters
 *
 * Returns 0 or -1 in case of failure
 */
3038
int
3039
xenDaemonGetSchedulerParameters(virDomainPtr domain,
3040 3041
                                virTypedParameterPtr params,
                                int *nparams)
3042
{
3043
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
3044 3045 3046 3047 3048 3049
    struct sexpr *root;
    char *sched_type = NULL;
    int sched_nparam = 0;
    int ret = -1;

    /* Support only xendConfigVersion >=4 */
3050
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_1_0) {
3051 3052
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("unsupported in xendConfigVersion < 4"));
3053
        return -1;
3054 3055 3056 3057 3058
    }

    /* look up the information by domain name */
    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL)
3059
        return -1;
3060 3061 3062 3063

    /* get the scheduler type */
    sched_type = xenDaemonGetSchedulerType(domain, &sched_nparam);
    if (sched_type == NULL) {
3064 3065
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Failed to get a scheduler name"));
3066 3067 3068 3069 3070
        goto error;
    }

    switch (sched_nparam){
        case XEN_SCHED_SEDF_NPARAM:
3071
            if (*nparams < XEN_SCHED_SEDF_NPARAM) {
3072 3073
                virReportError(VIR_ERR_INVALID_ARG,
                               "%s", _("Invalid parameter count"));
3074 3075 3076
                goto error;
            }

3077 3078 3079 3080 3081 3082
            /* TODO: Implement for Xen/SEDF */
            TODO
            goto error;
        case XEN_SCHED_CRED_NPARAM:
            /* get cpu_weight/cpu_cap from xend/domain */
            if (sexpr_node(root, "domain/cpu_weight") == NULL) {
3083 3084
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("domain information incomplete, missing cpu_weight"));
3085 3086 3087
                goto error;
            }
            if (sexpr_node(root, "domain/cpu_cap") == NULL) {
3088 3089
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("domain information incomplete, missing cpu_cap"));
3090 3091 3092
                goto error;
            }

3093 3094
            if (virStrcpyStatic(params[0].field,
                                VIR_DOMAIN_SCHEDULER_WEIGHT) == NULL) {
3095 3096 3097
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Weight %s too big for destination"),
                               VIR_DOMAIN_SCHEDULER_WEIGHT);
C
Chris Lalancette 已提交
3098 3099
                goto error;
            }
3100
            params[0].type = VIR_TYPED_PARAM_UINT;
3101 3102
            params[0].value.ui = sexpr_int(root, "domain/cpu_weight");

3103 3104 3105
            if (*nparams > 1) {
                if (virStrcpyStatic(params[1].field,
                                    VIR_DOMAIN_SCHEDULER_CAP) == NULL) {
3106 3107 3108
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Cap %s too big for destination"),
                                   VIR_DOMAIN_SCHEDULER_CAP);
3109 3110 3111 3112
                    goto error;
                }
                params[1].type = VIR_TYPED_PARAM_UINT;
                params[1].value.ui = sexpr_int(root, "domain/cpu_cap");
C
Chris Lalancette 已提交
3113
            }
3114 3115 3116

            if (*nparams > XEN_SCHED_CRED_NPARAM)
                *nparams = XEN_SCHED_CRED_NPARAM;
3117 3118 3119
            ret = 0;
            break;
        default:
3120
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3121 3122 3123 3124 3125
            goto error;
    }

error:
    sexpr_free(root);
3126
    VIR_FREE(sched_type);
3127
    return ret;
3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139
}

/**
 * xenDaemonSetSchedulerParameters:
 * @domain: pointer to the Domain block
 * @params: pointer to scheduler parameters
 * @nparams: a number of scheduler setting parameters
 *
 * Set the scheduler parameters
 *
 * Returns 0 or -1 in case of failure
 */
3140
int
3141
xenDaemonSetSchedulerParameters(virDomainPtr domain,
3142 3143
                                virTypedParameterPtr params,
                                int nparams)
3144
{
3145
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
3146 3147 3148 3149 3150 3151 3152
    struct sexpr *root;
    char *sched_type = NULL;
    int i;
    int sched_nparam = 0;
    int ret = -1;

    /* Support only xendConfigVersion >=4 and active domains */
3153
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_1_0) {
3154 3155
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("unsupported in xendConfigVersion < 4"));
3156
        return -1;
3157 3158 3159 3160 3161
    }

    /* look up the information by domain name */
    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL)
3162
        return -1;
3163 3164 3165 3166

    /* get the scheduler type */
    sched_type = xenDaemonGetSchedulerType(domain, &sched_nparam);
    if (sched_type == NULL) {
3167 3168
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Failed to get a scheduler name"));
3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186
        goto error;
    }

    switch (sched_nparam){
        case XEN_SCHED_SEDF_NPARAM:
            /* TODO: Implement for Xen/SEDF */
            TODO
            goto error;
        case XEN_SCHED_CRED_NPARAM: {
            char buf_weight[VIR_UUID_BUFLEN];
            char buf_cap[VIR_UUID_BUFLEN];
            const char *weight = NULL;
            const char *cap = NULL;

            /* get the scheduler parameters */
            memset(&buf_weight, 0, VIR_UUID_BUFLEN);
            memset(&buf_cap, 0, VIR_UUID_BUFLEN);
            for (i = 0; i < nparams; i++) {
3187
                if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_WEIGHT) &&
3188
                    params[i].type == VIR_TYPED_PARAM_UINT) {
3189
                    snprintf(buf_weight, sizeof(buf_weight), "%u", params[i].value.ui);
3190
                } else if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_CAP) &&
3191
                    params[i].type == VIR_TYPED_PARAM_UINT) {
3192 3193
                    snprintf(buf_cap, sizeof(buf_cap), "%u", params[i].value.ui);
                } else {
3194
                    virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3195 3196 3197 3198 3199 3200 3201 3202
                    goto error;
                }
            }

            /* if not get the scheduler parameter, set the current setting */
            if (strlen(buf_weight) == 0) {
                weight = sexpr_node(root, "domain/cpu_weight");
                if (weight == NULL) {
3203 3204
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("domain information incomplete, missing cpu_weight"));
3205 3206 3207 3208 3209 3210 3211
                    goto error;
                }
                snprintf(buf_weight, sizeof(buf_weight), "%s", weight);
            }
            if (strlen(buf_cap) == 0) {
                cap = sexpr_node(root, "domain/cpu_cap");
                if (cap == NULL) {
3212 3213
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("domain information incomplete, missing cpu_cap"));
3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224
                    goto error;
                }
                snprintf(buf_cap, sizeof(buf_cap), "%s", cap);
            }

            ret = xend_op(domain->conn, domain->name, "op",
                          "domain_sched_credit_set", "weight", buf_weight,
                          "cap", buf_cap, NULL);
            break;
        }
        default:
3225
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3226 3227 3228 3229 3230
            goto error;
    }

error:
    sexpr_free(root);
3231
    VIR_FREE(sched_type);
3232
    return ret;
3233 3234
}

R
Richard W.M. Jones 已提交
3235 3236
/**
 * xenDaemonDomainBlockPeek:
P
Philipp Hahn 已提交
3237
 * @domain: domain object
R
Richard W.M. Jones 已提交
3238 3239 3240 3241 3242
 * @path: path to the file or device
 * @offset: offset
 * @size: size
 * @buffer: return buffer
 *
3243
 * Returns 0 if successful, -1 if error
R
Richard W.M. Jones 已提交
3244 3245
 */
int
3246 3247 3248 3249
xenDaemonDomainBlockPeek(virDomainPtr domain,
                         const char *path,
                         unsigned long long offset,
                         size_t size,
3250
                         void *buffer)
R
Richard W.M. Jones 已提交
3251
{
3252
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
3253 3254 3255
    struct sexpr *root = NULL;
    int fd = -1, ret = -1;
    virDomainDefPtr def;
3256 3257 3258
    int id;
    char * tty;
    int vncport;
3259
    const char *actual;
R
Richard W.M. Jones 已提交
3260 3261 3262

    /* Security check: The path must correspond to a block device. */
    if (domain->id > 0)
3263 3264
        root = sexpr_get(domain->conn, "/xend/domain/%d?detail=1",
                         domain->id);
R
Richard W.M. Jones 已提交
3265
    else if (domain->id < 0)
3266 3267
        root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1",
                         domain->name);
R
Richard W.M. Jones 已提交
3268 3269
    else {
        /* This call always fails for dom0. */
3270 3271
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domainBlockPeek is not supported for dom0"));
R
Richard W.M. Jones 已提交
3272 3273 3274 3275
        return -1;
    }

    if (!root) {
3276
        virReportError(VIR_ERR_XEN_CALL, __FUNCTION__);
R
Richard W.M. Jones 已提交
3277 3278 3279
        return -1;
    }

3280 3281 3282 3283 3284 3285
    id = xenGetDomIdFromSxpr(root, priv->xendConfigVersion);
    xenUnifiedLock(priv);
    tty = xenStoreDomainGetConsolePath(domain->conn, id);
    vncport = xenStoreDomainGetVNCPort(domain->conn, id);
    xenUnifiedUnlock(priv);

M
Markus Groß 已提交
3286 3287
    if (!(def = xenParseSxpr(root, priv->xendConfigVersion, NULL, tty,
                             vncport)))
3288
        goto cleanup;
R
Richard W.M. Jones 已提交
3289

3290
    if (!(actual = virDomainDiskPathByName(def, path))) {
3291 3292
        virReportError(VIR_ERR_INVALID_ARG,
                       _("%s: invalid path"), path);
3293
        goto cleanup;
R
Richard W.M. Jones 已提交
3294
    }
3295
    path = actual;
R
Richard W.M. Jones 已提交
3296 3297

    /* The path is correct, now try to open it and get its size. */
3298
    fd = open(path, O_RDONLY);
3299
    if (fd == -1) {
3300
        virReportSystemError(errno,
3301 3302
                             _("failed to open for reading: %s"),
                             path);
3303
        goto cleanup;
R
Richard W.M. Jones 已提交
3304 3305 3306 3307 3308 3309
    }

    /* Seek and read. */
    /* NB. Because we configure with AC_SYS_LARGEFILE, off_t should
     * be 64 bits on all platforms.
     */
3310 3311
    if (lseek(fd, offset, SEEK_SET) == (off_t) -1 ||
        saferead(fd, buffer, size) == (ssize_t) -1) {
3312
        virReportSystemError(errno,
3313 3314
                             _("failed to lseek or read from file: %s"),
                             path);
3315
        goto cleanup;
R
Richard W.M. Jones 已提交
3316 3317 3318
    }

    ret = 0;
3319
 cleanup:
3320
    VIR_FORCE_CLOSE(fd);
3321 3322
    sexpr_free(root);
    virDomainDefFree(def);
R
Richard W.M. Jones 已提交
3323 3324 3325
    return ret;
}

3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337

/**
 * virDomainXMLDevID:
 * @domain: pointer to domain object
 * @dev: pointer to device config object
 * @class: Xen device class "vbd" or "vif" (OUT)
 * @ref: Xen device reference (OUT)
 *
 * Set class according to XML root, and:
 *  - if disk, copy in ref the target name from description
 *  - if network, get MAC address from description, scan XenStore and
 *    copy in ref the corresponding vif number.
3338 3339
 *  - if pci, get BDF from description, scan XenStore and
 *    copy in ref the corresponding dev number.
3340 3341 3342 3343 3344 3345 3346 3347 3348 3349
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
static int
virDomainXMLDevID(virDomainPtr domain,
                  virDomainDeviceDefPtr dev,
                  char *class,
                  char *ref,
                  int ref_len)
{
D
Daniel P. Berrange 已提交
3350
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
3351
    char *xref;
C
Chris Lalancette 已提交
3352
    char *tmp;
3353 3354

    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
3355 3356 3357
        if (dev->data.disk->driverName &&
            STREQ(dev->data.disk->driverName, "tap"))
            strcpy(class, "tap");
J
Jim Fehlig 已提交
3358 3359 3360
        else if (dev->data.disk->driverName &&
            STREQ(dev->data.disk->driverName, "tap2"))
            strcpy(class, "tap2");
3361 3362 3363
        else
            strcpy(class, "vbd");

3364 3365
        if (dev->data.disk->dst == NULL)
            return -1;
D
Daniel P. Berrange 已提交
3366
        xenUnifiedLock(priv);
3367 3368
        xref = xenStoreDomainGetDiskID(domain->conn, domain->id,
                                       dev->data.disk->dst);
D
Daniel P. Berrange 已提交
3369
        xenUnifiedUnlock(priv);
3370 3371 3372
        if (xref == NULL)
            return -1;

C
Chris Lalancette 已提交
3373
        tmp = virStrcpy(ref, xref, ref_len);
3374
        VIR_FREE(xref);
C
Chris Lalancette 已提交
3375 3376
        if (tmp == NULL)
            return -1;
3377
    } else if (dev->type == VIR_DOMAIN_DEVICE_NET) {
3378
        char mac[VIR_MAC_STRING_BUFLEN];
3379
        virDomainNetDefPtr def = dev->data.net;
3380
        virMacAddrFormat(&def->mac, mac);
3381 3382 3383

        strcpy(class, "vif");

D
Daniel P. Berrange 已提交
3384
        xenUnifiedLock(priv);
3385
        xref = xenStoreDomainGetNetworkID(domain->conn, domain->id, mac);
D
Daniel P. Berrange 已提交
3386
        xenUnifiedUnlock(priv);
3387 3388 3389
        if (xref == NULL)
            return -1;

C
Chris Lalancette 已提交
3390
        tmp = virStrcpy(ref, xref, ref_len);
3391
        VIR_FREE(xref);
C
Chris Lalancette 已提交
3392 3393
        if (tmp == NULL)
            return -1;
3394 3395 3396
    } else if (dev->type == VIR_DOMAIN_DEVICE_HOSTDEV &&
               dev->data.hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
               dev->data.hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
3397 3398 3399 3400
        char *bdf;
        virDomainHostdevDefPtr def = dev->data.hostdev;

        if (virAsprintf(&bdf, "%04x:%02x:%02x.%0x",
3401 3402 3403 3404
                        def->source.subsys.u.pci.addr.domain,
                        def->source.subsys.u.pci.addr.bus,
                        def->source.subsys.u.pci.addr.slot,
                        def->source.subsys.u.pci.addr.function) < 0) {
3405
            virReportOOMError();
3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421
            return -1;
        }

        strcpy(class, "pci");

        xenUnifiedLock(priv);
        xref = xenStoreDomainGetPCIID(domain->conn, domain->id, bdf);
        xenUnifiedUnlock(priv);
        VIR_FREE(bdf);
        if (xref == NULL)
            return -1;

        tmp = virStrcpy(ref, xref, ref_len);
        VIR_FREE(xref);
        if (tmp == NULL)
            return -1;
3422
    } else {
3423 3424
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("hotplug of device type not supported"));
3425 3426 3427 3428 3429
        return -1;
    }

    return 0;
}