xend_internal.c 116.3 KB
Newer Older
1 2 3
/*
 * xend_internal.c: access to Xen though the Xen Daemon interface
 *
4
 * Copyright (C) 2010-2011 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 <libxml/uri.h>
31
#include <errno.h>
32

33
#include "virterror_internal.h"
34
#include "logging.h"
35
#include "datatypes.h"
36
#include "xend_internal.h"
37
#include "driver.h"
38
#include "util.h"
39
#include "sexpr.h"
40
#include "xen_sxpr.h"
41
#include "buf.h"
42
#include "uuid.h"
43 44
#include "xen_driver.h"
#include "xen_hypervisor.h"
45
#include "xs_internal.h" /* To extract VNC port & Serial console TTY */
46
#include "memory.h"
47
#include "count-one-bits.h"
E
Eric Blake 已提交
48
#include "virfile.h"
49

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

53 54
#define VIR_FROM_THIS VIR_FROM_XEND

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

J
Jim Fehlig 已提交
59
#define XEND_RCV_BUF_MAX_LEN 65536
D
Daniel Veillard 已提交
60

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

68
#define virXendError(code, ...)                                            \
69
        virReportErrorHelper(VIR_FROM_XEND, code, __FILE__,                \
70
                             __FUNCTION__, __LINE__, __VA_ARGS__)
71

72 73
#define virXendErrorInt(code, ival)                                        \
        virXendError(code, "%d", ival)
74

75 76 77 78 79 80 81 82 83
/**
 * 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
84
do_connect(virConnectPtr xend)
85 86
{
    int s;
87
    int no_slow_start = 1;
88
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) xend->privateData;
89

90
    s = socket(priv->addrfamily, SOCK_STREAM, priv->addrprotocol);
D
Daniel Veillard 已提交
91
    if (s == -1) {
92
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
93
                     "%s", _("failed to create a socket"));
94
        return -1;
D
Daniel Veillard 已提交
95
    }
96

97 98 99 100 101 102 103
    /*
     * try to desactivate slow-start
     */
    setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
               sizeof(no_slow_start));


104
    if (connect(s, (struct sockaddr *)&priv->addr, priv->addrlen) == -1) {
105
        VIR_FORCE_CLOSE(s); /* preserves errno */
106 107

        /*
J
John Levon 已提交
108 109
         * Connecting to XenD when privileged is mandatory, so log this
         * error
110
         */
J
John Levon 已提交
111
        if (xenHavePrivilege()) {
112
            virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
113
                         "%s", _("failed to connect to xend"));
114
        }
115 116 117 118 119 120 121
    }

    return s;
}

/**
 * wr_sync:
122
 * @xend: the xend connection object
123 124 125 126 127 128 129 130 131 132
 * @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
133
wr_sync(int fd, void *buffer, size_t size, int do_read)
134 135 136 137 138 139 140
{
    size_t offset = 0;

    while (offset < size) {
        ssize_t len;

        if (do_read) {
141
            len = read(fd, ((char *) buffer) + offset, size - offset);
142
        } else {
143
            len = write(fd, ((char *) buffer) + offset, size - offset);
144 145 146 147 148 149 150 151 152 153 154 155 156 157
        }

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

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

        /* unrecoverable error */
        if (len == -1) {
158
            if (do_read)
159
                virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
160
                             "%s", _("failed to read from Xen Daemon"));
161
            else
162
                virXendError(VIR_ERR_INTERNAL_ERROR,
163
                             "%s", _("failed to write to Xen Daemon"));
164 165

            return (-1);
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
        }

        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
185
sread(int fd, void *buffer, size_t size)
186
{
187
    return wr_sync(fd, buffer, size, 1);
188 189 190 191 192 193 194 195 196 197 198 199 200
}

/**
 * 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
201
swrite(int fd, const void *buffer, size_t size)
202
{
203
    return wr_sync(fd, (void *) buffer, size, 0);
204 205 206 207 208 209 210 211 212 213 214 215
}

/**
 * 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
216
swrites(int fd, const char *string)
217
{
218
    return swrite(fd, string, strlen(string));
219 220
}

221 222 223 224 225 226 227 228 229 230 231
/**
 * 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
232
sreads(int fd, char *buffer, size_t n_buffer)
233 234 235 236 237 238 239 240 241
{
    size_t offset;

    if (n_buffer < 1)
        return (-1);

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

242
        ret = sread(fd, buffer + offset, 1);
243 244 245 246 247 248 249 250 251 252 253 254 255 256
        if (ret == 0)
            break;
        else if (ret == -1)
            return ret;

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

    return offset;
}
257 258 259 260

static int
istartswith(const char *haystack, const char *needle)
{
261
    return STRCASEEQLEN(haystack, needle, strlen(needle));
262 263
}

264

265 266 267 268 269 270
/**
 * xend_req:
 * @fd: the file descriptor
 * @content: the buffer to store the content
 *
 * Read the HTTP response from a Xen Daemon request.
271 272
 * If the response contains content, memory is allocated to
 * hold the content.
273
 *
274 275
 * Returns the HTTP return code and @content is set to the
 * allocated memory containing HTTP content.
276
 */
J
Jim Fehlig 已提交
277
static int ATTRIBUTE_NONNULL (2)
278
xend_req(int fd, char **content)
279
{
280 281
    char *buffer;
    size_t buffer_size = 4096;
282
    int content_length = 0;
283 284
    int retcode = 0;

285 286 287 288 289 290
    if (VIR_ALLOC_N(buffer, buffer_size) < 0) {
        virReportOOMError();
        return -1;
    }

    while (sreads(fd, buffer, buffer_size) > 0) {
291
        if (STREQ(buffer, "\r\n"))
292
            break;
293 294 295 296 297

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

300 301
    VIR_FREE(buffer);

302
    if (content_length > 0) {
303 304
        ssize_t ret;

J
Jim Fehlig 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317
        if (content_length > XEND_RCV_BUF_MAX_LEN) {
            virXendError(VIR_ERR_INTERNAL_ERROR,
                         _("Xend returned HTTP Content-Length of %d, "
                           "which exceeds maximum of %d"),
                         content_length,
                         XEND_RCV_BUF_MAX_LEN);
            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. */
        if (VIR_ALLOC_N(*content, content_length + 1) < 0 ) {
318 319 320
            virReportOOMError();
            return -1;
        }
321

322
        ret = sread(fd, *content, content_length);
323 324
        if (ret < 0)
            return -1;
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
    }

    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 已提交
340
static int ATTRIBUTE_NONNULL(3)
341
xend_get(virConnectPtr xend, const char *path,
342
         char **content)
343 344 345 346 347 348 349
{
    int ret;
    int s = do_connect(xend);

    if (s == -1)
        return s;

350 351 352
    swrites(s, "GET ");
    swrites(s, path);
    swrites(s, " HTTP/1.1\r\n");
353

354
    swrites(s,
355 356 357 358
            "Host: localhost:8000\r\n"
            "Accept-Encoding: identity\r\n"
            "Content-Type: application/x-www-form-urlencoded\r\n" "\r\n");

359
    ret = xend_req(s, content);
360
    VIR_FORCE_CLOSE(s);
361

362
    if (((ret < 0) || (ret >= 300)) &&
363
        ((ret != 404) || (!STRPREFIX(path, "/xend/domain/")))) {
364
        virXendError(VIR_ERR_GET_FAILED,
J
John Levon 已提交
365
                     _("%d status from xen daemon: %s:%s"),
J
Jim Fehlig 已提交
366
                     ret, path, NULLSTR(*content));
D
Daniel Veillard 已提交
367 368
    }

369 370 371 372 373 374 375
    return ret;
}

/**
 * xend_post:
 * @xend: pointer to the Xen Daemon structure
 * @path: the path used for the HTTP request
376
 * @ops: the information sent for the POST
377 378 379 380 381 382 383
 *
 * 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
384
xend_post(virConnectPtr xend, const char *path, const char *ops)
385 386
{
    char buffer[100];
387
    char *err_buf = NULL;
388 389 390 391 392 393
    int ret;
    int s = do_connect(xend);

    if (s == -1)
        return s;

394 395 396
    swrites(s, "POST ");
    swrites(s, path);
    swrites(s, " HTTP/1.1\r\n");
397

398
    swrites(s,
399 400 401 402
            "Host: localhost:8000\r\n"
            "Accept-Encoding: identity\r\n"
            "Content-Type: application/x-www-form-urlencoded\r\n"
            "Content-Length: ");
403
    snprintf(buffer, sizeof(buffer), "%d", (int) strlen(ops));
404 405 406
    swrites(s, buffer);
    swrites(s, "\r\n\r\n");
    swrites(s, ops);
407

408
    ret = xend_req(s, &err_buf);
409
    VIR_FORCE_CLOSE(s);
410

D
Daniel Veillard 已提交
411
    if ((ret < 0) || (ret >= 300)) {
412
        virXendError(VIR_ERR_POST_FAILED,
413 414
                     _("xend_post: error from xen daemon: %s"), err_buf);
    } else if ((ret == 202) && err_buf && (strstr(err_buf, "failed") != NULL)) {
415
        virXendError(VIR_ERR_POST_FAILED,
416
                     _("xend_post: error from xen daemon: %s"), err_buf);
417
        ret = -1;
418 419
    } else if (((ret >= 200) && (ret <= 202)) && err_buf &&
               (strstr(err_buf, "xend.err") != NULL)) {
420 421 422
        /* 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 :-(
423
         */
424
        virXendError(VIR_ERR_POST_FAILED,
425
                     _("xend_post: error from xen daemon: %s"), err_buf);
426
        ret = -1;
D
Daniel Veillard 已提交
427 428
    }

429
    VIR_FREE(err_buf);
430 431
    return ret;
}
432

433 434 435 436 437 438 439 440 441 442

/**
 * 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
443
http2unix(int ret)
444 445 446 447 448 449 450 451 452 453 454
{
    switch (ret) {
        case -1:
            break;
        case 200:
        case 201:
        case 202:
            return 0;
        case 404:
            errno = ESRCH;
            break;
455 456 457
        case 500:
            errno = EIO;
            break;
458
        default:
459
            virXendErrorInt(VIR_ERR_HTTP_ERROR, ret);
460 461 462 463 464 465 466
            errno = EINVAL;
            break;
    }
    return -1;
}

/**
467
 * xend_op_ext:
468 469 470 471 472 473 474 475 476 477
 * @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
478
xend_op_ext(virConnectPtr xend, const char *path, const char *key, va_list ap)
479 480
{
    const char *k = key, *v;
481
    virBuffer buf = VIR_BUFFER_INITIALIZER;
482
    int ret;
483
    char *content;
484 485 486 487

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

488
        virBufferAsprintf(&buf, "%s=%s", k, v);
489 490 491
        k = va_arg(ap, const char *);

        if (k)
492
            virBufferAddChar(&buf, '&');
493 494
    }

495
    if (virBufferError(&buf)) {
496
        virBufferFreeAndReset(&buf);
497
        virReportOOMError();
498 499 500 501
        return -1;
    }

    content = virBufferContentAndReset(&buf);
502
    VIR_DEBUG("xend op: %s\n", content);
503
    ret = http2unix(xend_post(xend, path, content));
504
    VIR_FREE(content);
505 506

    return ret;
507 508
}

509

510
/**
511
 * xend_op:
512 513 514 515 516 517 518 519 520 521 522
 * @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 已提交
523
static int ATTRIBUTE_SENTINEL
524
xend_op(virConnectPtr xend, const char *name, const char *key, ...)
525 526 527 528 529 530 531 532
{
    char buffer[1024];
    va_list ap;
    int ret;

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

    va_start(ap, key);
533
    ret = xend_op_ext(xend, buffer, key, ap);
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
    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
 */
550
static struct sexpr *sexpr_get(virConnectPtr xend, const char *fmt, ...)
551
  ATTRIBUTE_FMT_PRINTF(2,3);
552

553
static struct sexpr *
554
sexpr_get(virConnectPtr xend, const char *fmt, ...)
555
{
556
    char *buffer = NULL;
557 558 559
    char path[1024];
    va_list ap;
    int ret;
560
    struct sexpr *res = NULL;
561 562 563 564 565

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

566
    ret = xend_get(xend, path, &buffer);
567
    ret = http2unix(ret);
568
    if (ret == -1)
569 570 571 572 573 574
        goto cleanup;

    if (buffer == NULL)
        goto cleanup;

    res = string2sexpr(buffer);
575

576 577 578
cleanup:
    VIR_FREE(buffer);
    return res;
579 580 581 582 583 584 585 586 587 588
}

/**
 * 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
 *
589
 * Returns a -1 on error, 0 on success
590
 */
591
static int
592
sexpr_uuid(unsigned char *ptr, const struct sexpr *node, const char *path)
593 594
{
    const char *r = sexpr_node(node, path);
595 596 597
    if (!r)
        return -1;
    return virUUIDParse(r, ptr);
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
}


/**
 * urlencode:
 * @string: the input URL
 *
 * Encode an URL see RFC 2396 and following
 *
 * Returns the new string or NULL in case of error.
 */
static char *
urlencode(const char *string)
{
    size_t len = strlen(string);
613 614
    char *buffer;
    char *ptr;
615 616
    size_t i;

617
    if (VIR_ALLOC_N(buffer, len * 3 + 1) < 0) {
618
        virReportOOMError();
619
        return (NULL);
620
    }
621
    ptr = buffer;
622 623 624 625
    for (i = 0; i < len; i++) {
        switch (string[i]) {
            case ' ':
            case '\n':
626
            case '&':
627
                snprintf(ptr, 4, "%%%02x", string[i]);
628 629 630 631 632 633 634 635 636 637 638 639
                ptr += 3;
                break;
            default:
                *ptr = string[i];
                ptr++;
        }
    }

    *ptr = 0;

    return buffer;
}
D
Daniel Veillard 已提交
640

641 642 643
/* PUBLIC FUNCTIONS */

/**
644
 * xenDaemonOpen_unix:
645
 * @conn: an existing virtual connection block
646 647 648 649 650
 * @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
 *
651
 * Returns 0 in case of success, -1 in case of error.
652
 */
653
int
654
xenDaemonOpen_unix(virConnectPtr conn, const char *path)
655 656
{
    struct sockaddr_un *addr;
657
    xenUnifiedPrivatePtr priv;
658

659
    if ((conn == NULL) || (path == NULL))
660
        return (-1);
661

662
    priv = (xenUnifiedPrivatePtr) conn->privateData;
663 664
    memset(&priv->addr, 0, sizeof(priv->addr));
    priv->addrfamily = AF_UNIX;
665 666 667 668 669
    /*
     * This must be zero on Solaris at least for AF_UNIX (which should
     * really be PF_UNIX, but doesn't matter).
     */
    priv->addrprotocol = 0;
670 671 672
    priv->addrlen = sizeof(struct sockaddr_un);

    addr = (struct sockaddr_un *)&priv->addr;
673 674
    addr->sun_family = AF_UNIX;
    memset(addr->sun_path, 0, sizeof(addr->sun_path));
C
Chris Lalancette 已提交
675 676
    if (virStrcpyStatic(addr->sun_path, path) == NULL)
        return -1;
677

678
    return (0);
679 680
}

681

682
/**
683
 * xenDaemonOpen_tcp:
684
 * @conn: an existing virtual connection block
685
 * @host: the host name for the Xen Daemon
686
 * @port: the port
687 688 689 690
 *
 * Creates a possibly remote Xen Daemon connection
 * Note: this doesn't try to check if the connection actually works
 *
691
 * Returns 0 in case of success, -1 in case of error.
692
 */
693
static int
694
xenDaemonOpen_tcp(virConnectPtr conn, const char *host, const char *port)
695
{
696
    xenUnifiedPrivatePtr priv;
697 698 699 700
    struct addrinfo *res, *r;
    struct addrinfo hints;
    int saved_errno = EINVAL;
    int ret;
701

702
    if ((conn == NULL) || (host == NULL) || (port == NULL))
703
        return (-1);
704

705 706
    priv = (xenUnifiedPrivatePtr) conn->privateData;

707 708 709
    priv->addrlen = 0;
    memset(&priv->addr, 0, sizeof(priv->addr));

710
    /* http://people.redhat.com/drepper/userapi-ipv6.html */
711 712 713 714 715 716
    memset (&hints, 0, sizeof hints);
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_flags = AI_ADDRCONFIG;

    ret = getaddrinfo (host, port, &hints, &res);
    if (ret != 0) {
717
        virXendError(VIR_ERR_UNKNOWN_HOST,
718 719 720 721 722 723 724 725 726 727 728 729 730
                     _("unable to resolve hostname '%s': %s"),
                     host, gai_strerror (ret));
        return -1;
    }

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

        sock = socket (r->ai_family, SOCK_STREAM, r->ai_protocol);
        if (sock == -1) {
            saved_errno = errno;
            continue;
731
        }
732 733 734

        if (connect (sock, r->ai_addr, r->ai_addrlen) == -1) {
            saved_errno = errno;
735
            VIR_FORCE_CLOSE(sock);
736 737 738 739 740 741 742 743 744
            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);
745
        VIR_FORCE_CLOSE(sock);
746
        break;
747 748
    }

749
    freeaddrinfo (res);
750

751
    if (!priv->addrlen) {
752 753
        /* Don't raise error when unprivileged, since proxy takes over */
        if (xenHavePrivilege())
754
            virReportSystemError(saved_errno,
755 756
                                 _("unable to connect to '%s:%s'"),
                                 host, port);
757 758
        return -1;
    }
759

760
    return 0;
761 762
}

763

764 765
/**
 * xend_wait_for_devices:
P
Philipp Hahn 已提交
766
 * @xend: pointer to the Xen Daemon block
767 768 769 770 771 772 773 774
 * @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
775
xend_wait_for_devices(virConnectPtr xend, const char *name)
776 777 778 779
{
    return xend_op(xend, name, "op", "wait_for_devices", NULL);
}

780

781
/**
782
 * xenDaemonListDomainsOld:
P
Philipp Hahn 已提交
783
 * @xend: pointer to the Xen Daemon block
784 785 786 787 788 789
 *
 * 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.
 */
790
char **
791
xenDaemonListDomainsOld(virConnectPtr xend)
792 793 794 795 796 797 798 799 800 801 802 803 804
{
    size_t extra = 0;
    struct sexpr *root = NULL;
    char **ret = NULL;
    int count = 0;
    int i;
    char *ptr;
    struct sexpr *_for_i, *node;

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

805 806
    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) {
807 808
        if (node->kind != SEXPR_VALUE)
            continue;
809
        extra += strlen(node->u.value) + 1;
810 811 812
        count++;
    }

813 814 815 816 817 818 819 820 821
    /*
     * We can'tuse the normal allocation routines as we are mixing
     * an array of char * at the beginning followed by an array of char
     * ret points to the NULL terminated array of char *
     * ptr points to the current string after that array but in the same
     * allocated block
     */
    if (virAlloc((void *)&ptr,
                 (count + 1) * sizeof(char *) + extra * sizeof(char)) < 0)
822 823 824 825 826 827
        goto error;

    ret = (char **) ptr;
    ptr += sizeof(char *) * (count + 1);

    i = 0;
828 829
    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) {
830 831 832
        if (node->kind != SEXPR_VALUE)
            continue;
        ret[i] = ptr;
833 834
        strcpy(ptr, node->u.value);
        ptr += strlen(node->u.value) + 1;
835 836 837 838 839 840 841 842 843 844
        i++;
    }

    ret[i] = NULL;

  error:
    sexpr_free(root);
    return ret;
}

845

846
/**
847
 * xenDaemonDomainCreateXML:
848 849 850
 * @xend: A xend instance
 * @sexpr: An S-Expr description of the domain.
 *
P
Philipp Hahn 已提交
851
 * This method will create a domain based on the passed in description.  The
852
 * domain will be paused after creation and must be unpaused with
853
 * xenDaemonResumeDomain() to begin execution.
854 855 856 857 858 859 860
 * This method may be deprecated once switching to XML-RPC based communcations
 * with xend.
 *
 * Returns 0 for success, -1 (with errno) on error
 */

int
861
xenDaemonDomainCreateXML(virConnectPtr xend, const char *sexpr)
862 863 864 865 866
{
    int ret, serrno;
    char *ptr;

    ptr = urlencode(sexpr);
867
    if (ptr == NULL) {
868
        /* this should be caught at the interface but ... */
869
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
870
                     "%s", _("failed to urlencode the create S-Expr"));
871
        return (-1);
872
    }
873 874 875 876

    ret = xend_op(xend, "", "op", "create", "config", ptr, NULL);

    serrno = errno;
877
    VIR_FREE(ptr);
878 879 880 881
    errno = serrno;

    return ret;
}
882

883

884
/**
885
 * xenDaemonDomainLookupByName_ids:
886
 * @xend: A xend instance
887 888
 * @domname: The name of the domain
 * @uuid: return value for the UUID if not NULL
889 890 891 892 893 894
 *
 * This method looks up the id of a domain
 *
 * Returns the id on success; -1 (with errno) on error
 */
int
895
xenDaemonDomainLookupByName_ids(virConnectPtr xend, const char *domname,
896
                                unsigned char *uuid)
897 898 899 900 901
{
    struct sexpr *root;
    const char *value;
    int ret = -1;

902
    if (uuid != NULL)
903
        memset(uuid, 0, VIR_UUID_BUFLEN);
904 905 906 907 908
    root = sexpr_get(xend, "/xend/domain/%s?detail=1", domname);
    if (root == NULL)
        goto error;

    value = sexpr_node(root, "domain/domid");
909
    if (value == NULL) {
910
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
911
                     "%s", _("domain information incomplete, missing domid"));
912
        goto error;
913
    }
914
    ret = strtol(value, NULL, 0);
915
    if ((ret == 0) && (value[0] != '0')) {
916
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
917
                     "%s", _("domain information incorrect domid not numeric"));
918
        ret = -1;
919
    } else if (uuid != NULL) {
920
        if (sexpr_uuid(uuid, root, "domain/uuid") < 0) {
921
            virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
922
                         "%s", _("domain information incomplete, missing uuid"));
923
        }
924
    }
925

926
  error:
927
    sexpr_free(root);
928
    return (ret);
929 930
}

931 932 933 934 935 936 937 938 939 940 941 942 943 944

/**
 * xenDaemonDomainLookupByID:
 * @xend: A xend instance
 * @id: The id of the domain
 * @name: return value for the name if not NULL
 * @uuid: return value for the UUID if not NULL
 *
 * This method looks up the name of a domain based on its id
 *
 * Returns the 0 on success; -1 (with errno) on error
 */
int
xenDaemonDomainLookupByID(virConnectPtr xend,
945 946 947
                          int id,
                          char **domname,
                          unsigned char *uuid)
948 949 950 951
{
    const char *name = NULL;
    struct sexpr *root;

952
    memset(uuid, 0, VIR_UUID_BUFLEN);
953 954 955 956 957 958 959

    root = sexpr_get(xend, "/xend/domain/%d?detail=1", id);
    if (root == NULL)
      goto error;

    name = sexpr_node(root, "domain/name");
    if (name == NULL) {
960
      virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
961
                   "%s", _("domain information incomplete, missing name"));
962 963
      goto error;
    }
964
    if (domname) {
965
      *domname = strdup(name);
966
      if (*domname == NULL) {
967
          virReportOOMError();
968 969 970
          goto error;
      }
    }
971

972
    if (sexpr_uuid(uuid, root, "domain/uuid") < 0) {
973
      virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
974
                   "%s", _("domain information incomplete, missing uuid"));
975 976 977 978 979 980 981 982
      goto error;
    }

    sexpr_free(root);
    return (0);

error:
    sexpr_free(root);
983 984
    if (domname)
        VIR_FREE(*domname);
985 986 987
    return (-1);
}

988

989 990
static int
xend_detect_config_version(virConnectPtr conn) {
991 992
    struct sexpr *root;
    const char *value;
993
    xenUnifiedPrivatePtr priv;
994 995

    if (!VIR_IS_CONNECT(conn)) {
996
        virXendError(VIR_ERR_INVALID_CONN, __FUNCTION__);
997 998 999
        return (-1);
    }

1000 1001
    priv = (xenUnifiedPrivatePtr) conn->privateData;

1002 1003 1004
    root = sexpr_get(conn, "/xend/node/");
    if (root == NULL)
        return (-1);
1005

1006
    value = sexpr_node(root, "node/xend_config_format");
1007

1008
    if (value) {
1009
        priv->xendConfigVersion = strtol(value, NULL, 10);
1010 1011 1012
    }  else {
        /* Xen prior to 3.0.3 did not have the xend_config_format
           field, and is implicitly version 1. */
1013
        priv->xendConfigVersion = 1;
1014
    }
1015
    sexpr_free(root);
1016
    return (0);
1017 1018
}

D
Daniel Veillard 已提交
1019

1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
/**
 * 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;
    } else if (domain->id < 0) {
        /* Inactive domains don't have a state reported, so
           mark them SHUTOFF, rather than NOSTATE */
        state = VIR_DOMAIN_SHUTOFF;
    }

    return state;
}

D
Daniel Veillard 已提交
1057
/**
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
 * 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
1068 1069
sexpr_to_xend_domain_info(virDomainPtr domain, const struct sexpr *root,
                          virDomainInfoPtr info)
1070
{
1071
    int vcpus;
1072 1073 1074 1075

    if ((root == NULL) || (info == NULL))
        return (-1);

1076
    info->state = sexpr_to_xend_domain_state(domain, root);
1077 1078 1079
    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;
1080

1081
    vcpus = sexpr_int(root, "domain/vcpus");
1082
    info->nrVirtCpu = count_one_bits_l(sexpr_u64(root, "domain/vcpu_avail"));
1083 1084 1085
    if (!info->nrVirtCpu || vcpus < info->nrVirtCpu)
        info->nrVirtCpu = vcpus;

1086 1087 1088
    return (0);
}

1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
/**
 * 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
1100
sexpr_to_xend_node_info(const struct sexpr *root, virNodeInfoPtr info)
1101 1102 1103 1104 1105 1106 1107 1108
{
    const char *machine;


    if ((root == NULL) || (info == NULL))
        return (-1);

    machine = sexpr_node(root, "node/machine");
1109
    if (machine == NULL) {
1110
        info->model[0] = 0;
1111
    } else {
1112
        snprintf(&info->model[0], sizeof(info->model) - 1, "%s", machine);
1113
        info->model[sizeof(info->model) - 1] = 0;
1114 1115 1116 1117 1118 1119 1120
    }
    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");
1121 1122 1123
    info->cores = sexpr_int(root, "node/cores_per_socket");
    info->threads = sexpr_int(root, "node/threads_per_core");

1124 1125 1126 1127 1128 1129 1130
    /* 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");
1131 1132 1133 1134
        int procs = info->nodes * info->cores * info->threads;
        if (procs == 0) /* Sanity check in case of Xen bugs in futures..*/
            return (-1);
        info->sockets = nr_cpus / procs;
1135
    }
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149

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

1150 1151 1152
    return (0);
}

1153

1154
/**
1155
 * sexpr_to_xend_topology
1156
 * @root: an S-Expression describing a node
1157
 * @caps: capability info
1158
 *
1159 1160
 * Internal routine populating capability info with
 * NUMA node mapping details
1161
 *
1162 1163
 * Does nothing when the system doesn't support NUMA (not an error).
 *
1164 1165
 * Returns 0 in case of success, -1 in case of error
 */
1166
static int
1167
sexpr_to_xend_topology(const struct sexpr *root,
1168
                       virCapsPtr caps)
1169 1170
{
    const char *nodeToCpu;
1171 1172 1173 1174 1175
    const char *cur;
    char *cpuset = NULL;
    int *cpuNums = NULL;
    int cell, cpu, nb_cpus;
    int n = 0;
1176 1177 1178
    int numCpus;

    nodeToCpu = sexpr_node(root, "node/node_to_cpu");
1179 1180
    if (nodeToCpu == NULL)
        return 0;               /* no NUMA support */
1181 1182 1183

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

1184

1185
    if (VIR_ALLOC_N(cpuset, numCpus) < 0)
1186
        goto memory_error;
1187
    if (VIR_ALLOC_N(cpuNums, numCpus) < 0)
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
        goto memory_error;

    cur = nodeToCpu;
    while (*cur != 0) {
        /*
         * 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 已提交
1202
        virSkipSpacesAndBackslash(&cur);
1203 1204 1205
        if (*cur != ':')
            goto parse_error;
        cur++;
E
Eric Blake 已提交
1206
        virSkipSpacesAndBackslash(&cur);
1207
        if (STRPREFIX(cur, "no cpus")) {
1208 1209 1210 1211
            nb_cpus = 0;
            for (cpu = 0; cpu < numCpus; cpu++)
                cpuset[cpu] = 0;
        } else {
1212
            nb_cpus = virDomainCpuSetParse(&cur, 'n', cpuset, numCpus);
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
            if (nb_cpus < 0)
                goto error;
        }

        for (n = 0, cpu = 0; cpu < numCpus; cpu++)
            if (cpuset[cpu] == 1)
                cpuNums[n++] = cpu;

        if (virCapabilitiesAddHostNUMACell(caps,
                                           cell,
                                           nb_cpus,
                                           cpuNums) < 0)
            goto memory_error;
    }
1227 1228
    VIR_FREE(cpuNums);
    VIR_FREE(cpuset);
1229
    return (0);
1230

1231
  parse_error:
1232
    virXendError(VIR_ERR_XEN_CALL, "%s", _("topology syntax error"));
1233
  error:
1234 1235
    VIR_FREE(cpuNums);
    VIR_FREE(cpuset);
1236

1237
    return (-1);
1238

1239
  memory_error:
1240 1241
    VIR_FREE(cpuNums);
    VIR_FREE(cpuset);
1242
    virReportOOMError();
1243 1244 1245
    return (-1);
}

1246

1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
/**
 * 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
1257
sexpr_to_domain(virConnectPtr conn, const struct sexpr *root)
1258
{
1259
    virDomainPtr ret = NULL;
1260
    unsigned char uuid[VIR_UUID_BUFLEN];
1261
    const char *name;
1262
    const char *tmp;
1263
    xenUnifiedPrivatePtr priv;
1264 1265 1266 1267

    if ((conn == NULL) || (root == NULL))
        return(NULL);

1268 1269
    priv = (xenUnifiedPrivatePtr) conn->privateData;

1270
    if (sexpr_uuid(uuid, root, "domain/uuid") < 0)
1271 1272 1273 1274 1275
        goto error;
    name = sexpr_node(root, "domain/name");
    if (name == NULL)
        goto error;

1276
    ret = virGetDomain(conn, name, uuid);
1277 1278
    if (ret == NULL) return NULL;

1279 1280 1281 1282
    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
     */
1283
    if (!tmp && priv->xendConfigVersion < 3)
1284 1285
        goto error;

1286
    if (tmp)
1287
        ret->id = sexpr_int(root, "domain/domid");
1288
    else
1289
        ret->id = -1; /* An inactive domain */
1290

1291
    return (ret);
1292

1293
error:
1294
    virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
1295
                 "%s", _("failed to parse Xend domain information"));
1296
    if (ret != NULL)
1297
        virUnrefDomain(ret);
1298 1299
    return(NULL);
}
1300

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322

/*****************************************************************
 ******
 ******
 ******
 ******
             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.
 */
1323
virDrvOpenStatus
1324 1325
xenDaemonOpen(virConnectPtr conn,
              virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
1326
              unsigned int flags)
1327
{
1328 1329
    char *port = NULL;
    int ret = VIR_DRV_OPEN_ERROR;
1330

E
Eric Blake 已提交
1331 1332
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

1333 1334
    /* Switch on the scheme, which we expect to be NULL (file),
     * "http" or "xen".
1335
     */
1336
    if (conn->uri->scheme == NULL) {
1337
        /* It should be a file access */
1338
        if (conn->uri->path == NULL) {
1339
            virXendError(VIR_ERR_NO_CONNECT, __FUNCTION__);
1340 1341
            goto failed;
        }
1342 1343
        if (xenDaemonOpen_unix(conn, conn->uri->path) < 0 ||
            xend_detect_config_version(conn) == -1)
1344 1345
            goto failed;
    }
1346
    else if (STRCASEEQ (conn->uri->scheme, "xen")) {
1347
        /*
1348 1349
         * try first to open the unix socket
         */
1350 1351
        if (xenDaemonOpen_unix(conn, "/var/lib/xend/xend-socket") == 0 &&
            xend_detect_config_version(conn) != -1)
1352 1353 1354 1355 1356
            goto done;

        /*
         * try though http on port 8000
         */
1357 1358
        if (xenDaemonOpen_tcp(conn, "localhost", "8000") < 0 ||
            xend_detect_config_version(conn) == -1)
1359
            goto failed;
1360
    } else if (STRCASEEQ (conn->uri->scheme, "http")) {
1361
        if (conn->uri->port &&
1362
            virAsprintf(&port, "%d", conn->uri->port) == -1) {
1363
            virReportOOMError();
1364
            goto failed;
1365
        }
1366

1367 1368 1369
        if (xenDaemonOpen_tcp(conn,
                              conn->uri->server ? conn->uri->server : "localhost",
                              port ? port : "8000") < 0 ||
1370
            xend_detect_config_version(conn) == -1)
1371
            goto failed;
1372
    } else {
1373
        virXendError(VIR_ERR_NO_CONNECT, __FUNCTION__);
1374
        goto failed;
1375
    }
1376

1377
 done:
1378
    ret = VIR_DRV_OPEN_SUCCESS;
1379

1380
failed:
1381 1382
    VIR_FREE(port);
    return ret;
1383
}
1384

1385 1386 1387 1388 1389 1390 1391 1392 1393

/**
 * 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.
 *
1394
 * Returns 0 in case of success, -1 in case of error
1395 1396 1397 1398
 */
int
xenDaemonClose(virConnectPtr conn ATTRIBUTE_UNUSED)
{
1399
    return 0;
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
}

/**
 * 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)
{
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1415
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1416 1417
        return(-1);
    }
1418 1419

    if (domain->id < 0) {
1420
        virXendError(VIR_ERR_OPERATION_INVALID,
1421
                     _("Domain %s isn't running."), domain->name);
1422
        return(-1);
1423 1424
    }

1425 1426 1427 1428 1429
    return xend_op(domain->conn, domain->name, "op", "pause", NULL);
}

/**
 * xenDaemonDomainResume:
P
Philipp Hahn 已提交
1430
 * @xend: pointer to the Xen Daemon block
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
 * @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)
{
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1441
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1442 1443
        return(-1);
    }
1444 1445

    if (domain->id < 0) {
1446
        virXendError(VIR_ERR_OPERATION_INVALID,
1447
                     _("Domain %s isn't running."), domain->name);
1448
        return(-1);
1449 1450
    }

1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
    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)
{
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1468
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1469 1470
        return(-1);
    }
1471 1472

    if (domain->id < 0) {
1473
        virXendError(VIR_ERR_OPERATION_INVALID,
1474
                     _("Domain %s isn't running."), domain->name);
1475
        return(-1);
1476 1477
    }

1478
    return xend_op(domain->conn, domain->name, "op", "shutdown", "reason", "poweroff", NULL);
1479 1480
}

1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
/**
 * xenDaemonDomainReboot:
 * @domain: pointer to the Domain block
 * @flags: extra flags for the reboot operation, not used yet
 *
 * 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
E
Eric Blake 已提交
1493
xenDaemonDomainReboot(virDomainPtr domain, unsigned int flags)
1494
{
E
Eric Blake 已提交
1495 1496
    virCheckFlags(0, -1);

1497
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1498
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1499 1500
        return(-1);
    }
1501 1502

    if (domain->id < 0) {
1503
        virXendError(VIR_ERR_OPERATION_INVALID,
1504
                     _("Domain %s isn't running."), domain->name);
1505
        return(-1);
1506 1507
    }

1508 1509 1510
    return xend_op(domain->conn, domain->name, "op", "shutdown", "reason", "reboot", NULL);
}

1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
/**
 * xenDaemonDomainDestroy:
 * @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
xenDaemonDomainDestroy(virDomainPtr domain)
{
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1528
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1529 1530
        return(-1);
    }
1531 1532

    if (domain->id < 0) {
1533
        virXendError(VIR_ERR_OPERATION_INVALID,
1534
                     _("Domain %s isn't running."), domain->name);
1535
        return(-1);
1536 1537
    }

1538 1539 1540
    return xend_op(domain->conn, domain->name, "op", "destroy", NULL);
}

1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
/**
 * 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.
 */
static char *
xenDaemonDomainGetOSType(virDomainPtr domain)
{
    char *type;
    struct sexpr *root;
    xenUnifiedPrivatePtr priv;

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1558
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
        return(NULL);
    }

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0 && priv->xendConfigVersion < 3)
        return(NULL);

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

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

1578
    if (type == NULL)
1579
        virReportOOMError();
1580

1581 1582 1583 1584 1585
    sexpr_free(root);

    return(type);
}

1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
/**
 * 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)
{
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL) ||
1603
        (filename == NULL)) {
1604
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1605 1606
        return(-1);
    }
1607

1608
    if (domain->id < 0) {
1609
        virXendError(VIR_ERR_OPERATION_INVALID,
1610 1611 1612
                     _("Domain %s isn't running."), domain->name);
        return(-1);
    }
1613 1614 1615

    /* We can't save the state of Domain-0, that would mean stopping it too */
    if (domain->id == 0) {
1616
        return(-1);
1617 1618
    }

1619 1620 1621
    return xend_op(domain->conn, domain->name, "op", "save", "file", filename, NULL);
}

D
Daniel Veillard 已提交
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
/**
 * 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.
 */
static int
xenDaemonDomainCoreDump(virDomainPtr domain, const char *filename,
E
Eric Blake 已提交
1636
                        unsigned int flags)
D
Daniel Veillard 已提交
1637
{
E
Eric Blake 已提交
1638 1639
    virCheckFlags(VIR_DUMP_LIVE | VIR_DUMP_CRASH, -1);

D
Daniel Veillard 已提交
1640 1641
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL) ||
        (filename == NULL)) {
1642
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
D
Daniel Veillard 已提交
1643 1644
        return(-1);
    }
1645 1646

    if (domain->id < 0) {
1647
        virXendError(VIR_ERR_OPERATION_INVALID,
1648
                     _("Domain %s isn't running."), domain->name);
D
Daniel Veillard 已提交
1649
        return(-1);
1650 1651
    }

1652
    return xend_op(domain->conn, domain->name,
J
Jiri Denemark 已提交
1653
                   "op", "dump", "file", filename,
P
Paolo Bonzini 已提交
1654
                   "live", (flags & VIR_DUMP_LIVE ? "1" : "0"),
1655 1656
                   "crash", (flags & VIR_DUMP_CRASH ? "1" : "0"),
                   NULL);
D
Daniel Veillard 已提交
1657 1658
}

1659 1660
/**
 * xenDaemonDomainRestore:
P
Philipp Hahn 已提交
1661
 * @conn: pointer to the Xen Daemon block
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
 * @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)
{
    if ((conn == NULL) || (filename == NULL)) {
        /* this should be caught at the interface but ... */
1675
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1676 1677 1678 1679
        return (-1);
    }
    return xend_op(conn, "", "op", "restore", "file", filename, NULL);
}
1680

1681

1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
/**
 * 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.
 */
unsigned long
xenDaemonDomainGetMaxMemory(virDomainPtr domain)
{
    unsigned long ret = 0;
    struct sexpr *root;
1695
    xenUnifiedPrivatePtr priv;
1696 1697

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1698
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1699 1700
        return(-1);
    }
1701 1702 1703 1704

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0 && priv->xendConfigVersion < 3)
1705
        return(-1);
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717

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

    ret = (unsigned long) sexpr_u64(root, "domain/memory") << 10;
    sexpr_free(root);

    return(ret);
}

1718

1719 1720 1721 1722 1723 1724 1725
/**
 * 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
1726
 * on its own.
1727 1728 1729 1730 1731 1732 1733
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
xenDaemonDomainSetMaxMemory(virDomainPtr domain, unsigned long memory)
{
    char buf[1024];
1734
    xenUnifiedPrivatePtr priv;
1735 1736

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1737
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1738 1739
        return(-1);
    }
1740 1741 1742 1743

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0 && priv->xendConfigVersion < 3)
1744 1745
        return(-1);

1746
    snprintf(buf, sizeof(buf), "%lu", VIR_DIV_UP(memory, 1024));
1747 1748 1749 1750
    return xend_op(domain->conn, domain->name, "op", "maxmem_set", "memory",
                   buf, NULL);
}

1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
/**
 * 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];
1771
    xenUnifiedPrivatePtr priv;
1772 1773

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1774
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1775 1776
        return(-1);
    }
1777 1778 1779 1780

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0 && priv->xendConfigVersion < 3)
1781 1782
        return(-1);

1783
    snprintf(buf, sizeof(buf), "%lu", VIR_DIV_UP(memory, 1024));
1784 1785 1786 1787
    return xend_op(domain->conn, domain->name, "op", "mem_target_set",
                   "target", buf, NULL);
}

1788

1789 1790 1791 1792 1793
virDomainDefPtr
xenDaemonDomainFetch(virConnectPtr conn,
                     int domid,
                     const char *name,
                     const char *cpus)
1794 1795
{
    struct sexpr *root;
1796
    xenUnifiedPrivatePtr priv;
1797
    virDomainDefPtr def;
1798 1799 1800
    int id;
    char * tty;
    int vncport;
1801

1802 1803 1804 1805
    if (name)
        root = sexpr_get(conn, "/xend/domain/%s?detail=1", name);
    else
        root = sexpr_get(conn, "/xend/domain/%d?detail=1", domid);
1806
    if (root == NULL) {
1807
        virXendError(VIR_ERR_XEN_CALL,
J
Jim Meyering 已提交
1808
                      "%s", _("xenDaemonDomainFetch failed to"
1809
                        " find this domain"));
1810
        return (NULL);
1811
    }
1812

1813 1814
    priv = (xenUnifiedPrivatePtr) conn->privateData;

1815 1816 1817 1818 1819
    id = xenGetDomIdFromSxpr(root, priv->xendConfigVersion);
    xenUnifiedLock(priv);
    tty = xenStoreDomainGetConsolePath(conn, id);
    vncport = xenStoreDomainGetVNCPort(conn, id);
    xenUnifiedUnlock(priv);
M
Markus Groß 已提交
1820 1821 1822 1823 1824
    if (!(def = xenParseSxpr(root,
                             priv->xendConfigVersion,
                             cpus,
                             tty,
                             vncport)))
1825 1826 1827
        goto cleanup;

cleanup:
1828 1829
    sexpr_free(root);

1830
    return (def);
1831 1832 1833
}


1834
/**
1835
 * xenDaemonDomainGetXMLDesc:
D
Daniel Veillard 已提交
1836
 * @domain: a domain object
1837 1838
 * @flags: potential dump flags
 * @cpus: list of cpu the domain is pinned to.
D
Daniel Veillard 已提交
1839
 *
1840
 * Provide an XML description of the domain.
D
Daniel Veillard 已提交
1841 1842 1843 1844 1845
 *
 * Returns a 0 terminated UTF-8 encoded XML instance, or NULL in case of error.
 *         the caller must free() the returned value.
 */
char *
E
Eric Blake 已提交
1846 1847
xenDaemonDomainGetXMLDesc(virDomainPtr domain, unsigned int flags,
                          const char *cpus)
1848
{
1849
    xenUnifiedPrivatePtr priv;
1850 1851
    virDomainDefPtr def;
    char *xml;
1852

E
Eric Blake 已提交
1853 1854
    /* Flags checked by virDomainDefFormat */

1855
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1856
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1857
        return(NULL);
1858
    }
1859 1860
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

1861
    if (domain->id < 0 && priv->xendConfigVersion < 3) {
1862
        /* fall-through to the next driver to handle */
1863
        return(NULL);
1864 1865
    }

1866 1867 1868 1869 1870 1871
    if (!(def = xenDaemonDomainFetch(domain->conn,
                                     domain->id,
                                     domain->name,
                                     cpus)))
        return(NULL);

1872
    xml = virDomainDefFormat(def, flags);
1873 1874 1875 1876

    virDomainDefFree(def);

    return xml;
D
Daniel Veillard 已提交
1877
}
1878

1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894

/**
 * 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;
1895
    xenUnifiedPrivatePtr priv;
1896

1897 1898
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL) ||
        (info == NULL)) {
1899
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1900 1901
        return(-1);
    }
1902 1903 1904 1905

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0 && priv->xendConfigVersion < 3)
1906
        return(-1);
1907 1908 1909 1910 1911

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

1912
    ret = sexpr_to_xend_domain_info(domain, root, info);
1913 1914 1915
    sexpr_free(root);
    return (ret);
}
1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932


/**
 * xenDaemonDomainGetState:
 * @domain: a domain object
 * @state: returned domain's state
 * @reason: returned reason for the state
 * @flags: additional flags, 0 for now
 *
 * 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,
                        int *reason,
E
Eric Blake 已提交
1933
                        unsigned int flags)
1934 1935 1936 1937
{
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
    struct sexpr *root;

E
Eric Blake 已提交
1938 1939
    virCheckFlags(0, -1);

1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
    if (domain->id < 0 && priv->xendConfigVersion < 3)
        return -1;

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

1955

1956
/**
1957
 * xenDaemonLookupByName:
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
 * @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
1968
xenDaemonLookupByName(virConnectPtr conn, const char *domname)
1969 1970 1971 1972 1973
{
    struct sexpr *root;
    virDomainPtr ret = NULL;

    if ((conn == NULL) || (domname == NULL)) {
1974
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1975
        return(NULL);
1976
    }
1977

1978 1979 1980 1981 1982 1983 1984 1985 1986 1987
    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);
    return(ret);
}
1988

1989

1990 1991 1992 1993
/**
 * xenDaemonNodeGetInfo:
 * @conn: pointer to the Xen Daemon block
 * @info: pointer to a virNodeInfo structure allocated by the user
1994
 *
1995 1996 1997 1998
 * Extract hardware information about the node.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
1999
int
2000 2001 2002 2003 2004
xenDaemonNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info) {
    int ret = -1;
    struct sexpr *root;

    if (!VIR_IS_CONNECT(conn)) {
2005
        virXendError(VIR_ERR_INVALID_CONN, __FUNCTION__);
2006 2007 2008
        return (-1);
    }
    if (info == NULL) {
2009
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
        return (-1);
    }

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

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

2022 2023 2024
/**
 * xenDaemonNodeGetTopology:
 * @conn: pointer to the Xen Daemon block
2025
 * @caps: capabilities info
2026 2027 2028 2029 2030 2031
 *
 * This method retrieves a node's topology information.
 *
 * Returns -1 in case of error, 0 otherwise.
 */
int
2032 2033
xenDaemonNodeGetTopology(virConnectPtr conn,
                         virCapsPtr caps) {
2034 2035 2036 2037
    int ret = -1;
    struct sexpr *root;

    if (!VIR_IS_CONNECT(conn)) {
2038
        virXendError(VIR_ERR_INVALID_CONN, __FUNCTION__);
2039 2040 2041
        return (-1);
    }

2042
    if (caps == NULL) {
2043
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2044
        return (-1);
2045
    }
2046 2047 2048 2049 2050 2051

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

2052
    ret = sexpr_to_xend_topology(root, caps);
2053 2054 2055 2056
    sexpr_free(root);
    return (ret);
}

2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
/**
 * xenDaemonGetVersion:
 * @conn: pointer to the Xen Daemon block
 * @hvVer: return value for the version of the running hypervisor (OUT)
 *
 * Get the version level of the Hypervisor running.
 *
 * Returns -1 in case of error, 0 otherwise. if the version can't be
 *    extracted by lack of capacities returns 0 and @hvVer is 0, otherwise
 *    @hvVer value is major * 1,000,000 + minor * 1,000 + release
 */
2068
int
2069 2070
xenDaemonGetVersion(virConnectPtr conn, unsigned long *hvVer)
{
2071
    struct sexpr *root;
2072
    int major, minor;
2073
    unsigned long version;
2074

2075
    if (!VIR_IS_CONNECT(conn)) {
2076
        virXendError(VIR_ERR_INVALID_CONN, __FUNCTION__);
2077 2078 2079
        return (-1);
    }
    if (hvVer == NULL) {
2080
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2081 2082
        return (-1);
    }
2083 2084
    root = sexpr_get(conn, "/xend/node/");
    if (root == NULL)
2085
        return(-1);
2086 2087 2088 2089

    major = sexpr_int(root, "node/xen_major");
    minor = sexpr_int(root, "node/xen_minor");
    sexpr_free(root);
2090
    version = major * 1000000 + minor * 1000;
2091 2092 2093
    *hvVer = version;
    return(0);
}
2094

2095

2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107
/**
 * xenDaemonListDomains:
 * @conn: pointer to the hypervisor connection
 * @ids: array to collect the list of IDs of active domains
 * @maxids: size of @ids
 *
 * Collect the list of active domains, and store their ID in @maxids
 * TODO: this is quite expensive at the moment since there isn't one
 *       xend RPC providing both name and id for all domains.
 *
 * Returns the number of domain found or -1 in case of error
 */
2108
int
2109 2110 2111 2112 2113 2114 2115
xenDaemonListDomains(virConnectPtr conn, int *ids, int maxids)
{
    struct sexpr *root = NULL;
    int ret = -1;
    struct sexpr *_for_i, *node;
    long id;

2116 2117 2118 2119
    if (maxids == 0)
        return(0);

    if ((ids == NULL) || (maxids < 0))
2120 2121 2122 2123 2124 2125 2126
        goto error;
    root = sexpr_get(conn, "/xend/domain");
    if (root == NULL)
        goto error;

    ret = 0;

2127 2128
    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) {
2129 2130
        if (node->kind != SEXPR_VALUE)
            continue;
2131
        id = xenDaemonDomainLookupByName_ids(conn, node->u.value, NULL);
2132
        if (id >= 0)
2133 2134 2135
            ids[ret++] = (int) id;
        if (ret >= maxids)
            break;
2136 2137 2138
    }

error:
2139
    sexpr_free(root);
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150
    return(ret);
}

/**
 * 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
 */
2151
int
2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163
xenDaemonNumOfDomains(virConnectPtr conn)
{
    struct sexpr *root = NULL;
    int ret = -1;
    struct sexpr *_for_i, *node;

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

    ret = 0;

2164 2165
    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) {
2166 2167
        if (node->kind != SEXPR_VALUE)
            continue;
2168
        ret++;
2169 2170 2171
    }

error:
2172
    sexpr_free(root);
2173 2174
    return(ret);
}
2175

2176

2177 2178 2179 2180 2181 2182 2183 2184 2185
/**
 * xenDaemonLookupByID:
 * @conn: pointer to the hypervisor connection
 * @id: the domain ID number
 *
 * Try to find a domain based on the hypervisor ID number
 *
 * Returns a new domain object or NULL in case of failure
 */
2186
virDomainPtr
2187 2188
xenDaemonLookupByID(virConnectPtr conn, int id) {
    char *name = NULL;
2189
    unsigned char uuid[VIR_UUID_BUFLEN];
2190 2191
    virDomainPtr ret;

2192
    if (xenDaemonDomainLookupByID(conn, id, &name, uuid) < 0) {
2193
        goto error;
2194
    }
2195 2196

    ret = virGetDomain(conn, name, uuid);
2197
    if (ret == NULL) goto error;
2198

2199
    ret->id = id;
2200
    VIR_FREE(name);
2201 2202
    return (ret);

2203
 error:
2204
    VIR_FREE(name);
2205 2206 2207
    return (NULL);
}

2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
/**
 * 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.
 *
 * Returns 0 on success, -1 if an error message was issued, and -2 if
 * the unified driver should keep trying.
 */
int
xenDaemonDomainSetVcpusFlags(virDomainPtr domain, unsigned int vcpus,
                             unsigned int flags)
{
    char buf[VIR_UUID_BUFLEN];
    xenUnifiedPrivatePtr priv;
    int max;

E
Eric Blake 已提交
2227 2228 2229 2230
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)
        || (vcpus < 1)) {
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if ((domain->id < 0 && priv->xendConfigVersion < 3) ||
        (flags & VIR_DOMAIN_VCPU_MAXIMUM))
        return -2;

    /* With xendConfigVersion 2, only _LIVE is supported.  With
     * xendConfigVersion 3, only _LIVE|_CONFIG is supported for
     * running domains, or _CONFIG for inactive domains.  */
    if (priv->xendConfigVersion < 3) {
        if (flags & VIR_DOMAIN_VCPU_CONFIG) {
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                         _("Xend version does not support modifying "
                           "persistent config"));
            return -1;
        }
    } else if (domain->id < 0) {
        if (flags & VIR_DOMAIN_VCPU_LIVE) {
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                         _("domain not running"));
            return -1;
        }
    } else {
        if ((flags & (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) !=
            (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) {
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                         _("Xend only supports modifying both live and "
                           "persistent config"));
        }
    }

    /* Unfortunately, xend_op does not validate whether this exceeds
     * the maximum.  */
    flags |= VIR_DOMAIN_VCPU_MAXIMUM;
    if ((max = xenDaemonDomainGetVcpusFlags(domain, flags)) < 0) {
        virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                     _("could not determin max vcpus for the domain"));
        return -1;
    }
    if (vcpus > max) {
        virXendError(VIR_ERR_INVALID_ARG,
                     _("requested vcpus is greater than max allowable"
                       " vcpus for the domain: %d > %d"), vcpus, max);
        return -1;
    }

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

2288 2289 2290 2291 2292 2293
/**
 * 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
2294
 *
2295
 * Dynamically change the real CPUs which can be allocated to a virtual CPU.
2296 2297 2298 2299 2300
 * 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
2301 2302 2303 2304 2305
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
xenDaemonDomainPinVcpu(virDomainPtr domain, unsigned int vcpu,
2306
                       unsigned char *cpumap, int maplen)
2307
{
2308
    char buf[VIR_UUID_BUFLEN], mapstr[sizeof(cpumap_t) * 64];
2309
    int i, j, ret;
2310
    xenUnifiedPrivatePtr priv;
2311
    virDomainDefPtr def = NULL;
2312 2313 2314

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)
     || (cpumap == NULL) || (maplen < 1) || (maplen > (int)sizeof(cpumap_t))) {
2315
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2316 2317
        return (-1);
    }
2318

2319 2320
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
    if (priv->xendConfigVersion < 3) {
H
Henrik Persson 已提交
2321 2322
        mapstr[0] = '[';
        mapstr[1] = 0;
2323
    } else {
H
Henrik Persson 已提交
2324
        mapstr[0] = 0;
2325 2326
    }

2327 2328 2329
    /* 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)) {
2330
        snprintf(buf, sizeof(buf), "%d,", (8 * i) + j);
2331 2332
        strcat(mapstr, buf);
    }
2333 2334 2335 2336 2337
    if (priv->xendConfigVersion < 3)
        mapstr[strlen(mapstr) - 1] = ']';
    else
        mapstr[strlen(mapstr) - 1] = 0;

2338
    snprintf(buf, sizeof(buf), "%d", vcpu);
2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349

    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) {
E
Eric Blake 已提交
2350
        if (virDomainVcpuPinAdd(def, cpumap, maplen, vcpu) < 0) {
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361
            virXendError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("failed to add vcpupin xml entry"));
            return (-1);
        }
    }

    return ret;

cleanup:
    virDomainDefFree(def);
    return -1;
2362 2363
}

2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381
/**
 * 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
 * issued, and -2 if the unified driver should keep trying.

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

E
Eric Blake 已提交
2382 2383 2384 2385
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
    if (domain == NULL || domain->conn == NULL || domain->name == NULL) {
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
        return -1;
    }

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    /* If xendConfigVersion is 2, then we can only report _LIVE (and
     * xm_internal reports _CONFIG).  If it is 3, then _LIVE and
     * _CONFIG are always in sync for a running system.  */
    if (domain->id < 0 && priv->xendConfigVersion < 3)
        return -2;
    if (domain->id < 0 && (flags & VIR_DOMAIN_VCPU_LIVE)) {
        virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                     _("domain not active"));
        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)) {
2410
        int vcpus = count_one_bits_l(sexpr_u64(root, "domain/vcpu_avail"));
2411 2412 2413 2414 2415 2416 2417 2418 2419
        if (vcpus)
            ret = MIN(vcpus, ret);
    }
    if (!ret)
        ret = -2;
    sexpr_free(root);
    return ret;
}

2420 2421 2422 2423 2424 2425
/**
 * 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
 * @cpumaps: pointer to an bit map of real CPUs for all vcpus of this domain (in 8-bit bytes) (OUT)
D
Daniel Veillard 已提交
2426
 *	If cpumaps is NULL, then no cpumap information is returned by the API.
2427 2428 2429 2430 2431 2432
 *	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...).
2433
 *
2434
 * Extract information about virtual CPUs of domain, store it in info array
D
Daniel Veillard 已提交
2435
 * and also in cpumaps if this pointer isn't NULL.
2436 2437 2438 2439 2440
 *
 * Returns the number of info filled in case of success, -1 in case of failure.
 */
int
xenDaemonDomainGetVcpus(virDomainPtr domain, virVcpuInfoPtr info, int maxinfo,
2441
                        unsigned char *cpumaps, int maplen)
2442 2443 2444 2445 2446 2447 2448 2449
{
    struct sexpr *root, *s, *t;
    virVcpuInfoPtr ipt = info;
    int nbinfo = 0, oln;
    unsigned char *cpumap;
    int vcpu, cpu;

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)
2450
        || (info == NULL) || (maxinfo < 1)) {
2451
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2452 2453 2454
        return (-1);
    }
    if (cpumaps != NULL && maplen < 1) {
2455
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2456 2457
        return (-1);
    }
2458

2459 2460 2461 2462 2463
    root = sexpr_get(domain->conn, "/xend/domain/%s?op=vcpuinfo", domain->name);
    if (root == NULL)
        return (-1);

    if (cpumaps != NULL)
2464
        memset(cpumaps, 0, maxinfo * maplen);
2465 2466

    /* scan the sexprs from "(vcpu (number x)...)" and get parameter values */
2467 2468 2469
    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) &&
2470
            STREQ(s->u.s.car->u.s.car->u.value, "vcpu")) {
2471
            t = s->u.s.car;
2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487
            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
                 */
2488 2489 2490
                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) &&
2491
                        STREQ(t->u.s.car->u.s.car->u.value, "cpumap") &&
2492 2493
                        (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)
2494
                            if (t->u.s.car->kind == SEXPR_VALUE
2495
                                && virStrToLong_i(t->u.s.car->u.value, NULL, 10, &cpu) == 0
2496 2497 2498
                                && cpu >= 0
                                && (VIR_CPU_MAPLEN(cpu+1) <= maplen)) {
                                VIR_USE_CPU(cpumap, cpu);
2499 2500 2501
                            }
                        break;
                    }
2502 2503
            }

2504 2505 2506
            if (++nbinfo == maxinfo) break;
            ipt++;
        }
2507 2508 2509 2510 2511
    }
    sexpr_free(root);
    return(nbinfo);
}

2512 2513 2514 2515 2516 2517 2518 2519 2520
/**
 * 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
 */
2521
virDomainPtr
2522 2523 2524 2525 2526
xenDaemonLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
    virDomainPtr ret;
    char *name = NULL;
    int id = -1;
2527 2528
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;

2529
    /* Old approach for xen <= 3.0.3 */
2530
    if (priv->xendConfigVersion < 3) {
2531 2532 2533 2534 2535 2536
        char **names, **tmp;
        unsigned char ident[VIR_UUID_BUFLEN];
        names = xenDaemonListDomainsOld(conn);
        tmp = names;

        if (names == NULL) {
2537
            return (NULL);
2538 2539 2540 2541 2542 2543
        }
        while (*tmp != NULL) {
            id = xenDaemonDomainLookupByName_ids(conn, *tmp, &ident[0]);
            if (id >= 0) {
                if (!memcmp(uuid, ident, VIR_UUID_BUFLEN)) {
                    name = strdup(*tmp);
2544 2545

                    if (name == NULL)
2546
                        virReportOOMError();
2547

2548 2549
                    break;
                }
2550
            }
2551
            tmp++;
2552
        }
2553
        VIR_FREE(names);
2554 2555 2556 2557 2558
    } else { /* New approach for xen >= 3.0.4 */
        char *domname = NULL;
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        struct sexpr *root = NULL;

2559
        virUUIDFormat(uuid, uuidstr);
2560 2561 2562 2563 2564 2565 2566 2567
        root = sexpr_get(conn, "/xend/domain/%s?detail=1", uuidstr);
        if (root == NULL)
            return (NULL);
        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;
2568 2569 2570 2571 2572

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

            if (name == NULL)
2573
                virReportOOMError();
2574 2575
        }

2576
        sexpr_free(root);
2577 2578 2579
    }

    if (name == NULL)
2580
        return (NULL);
2581 2582

    ret = virGetDomain(conn, name, uuid);
2583
    if (ret == NULL) goto cleanup;
2584

2585
    ret->id = id;
2586 2587

  cleanup:
2588
    VIR_FREE(name);
2589 2590
    return (ret);
}
2591 2592

/**
2593
 * xenDaemonCreateXML:
2594 2595 2596 2597 2598 2599
 * @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()
2600
 * This function may requires privileged access to the hypervisor.
2601
 *
2602 2603 2604
 * Returns a new domain object or NULL in case of failure
 */
static virDomainPtr
2605
xenDaemonCreateXML(virConnectPtr conn, const char *xmlDesc,
2606
                     unsigned int flags)
2607 2608 2609
{
    int ret;
    char *sexpr;
2610
    virDomainPtr dom = NULL;
2611
    xenUnifiedPrivatePtr priv;
2612
    virDomainDefPtr def;
2613

2614 2615
    virCheckFlags(0, NULL);

2616 2617
    priv = (xenUnifiedPrivatePtr) conn->privateData;

M
Matthias Bolte 已提交
2618 2619
    if (!(def = virDomainDefParseString(priv->caps, xmlDesc,
                                        1 << VIR_DOMAIN_VIRT_XEN,
2620
                                        VIR_DOMAIN_XML_INACTIVE)))
2621
        return (NULL);
2622

M
Markus Groß 已提交
2623
    if (!(sexpr = xenFormatSxpr(conn, def, priv->xendConfigVersion))) {
2624
        virDomainDefFree(def);
2625 2626 2627
        return (NULL);
    }

2628
    ret = xenDaemonDomainCreateXML(conn, sexpr);
2629
    VIR_FREE(sexpr);
2630 2631 2632 2633
    if (ret != 0) {
        goto error;
    }

2634 2635
    /* This comes before wait_for_devices, to ensure that latter
       cleanup will destroy the domain upon failure */
2636
    if (!(dom = virDomainLookupByName(conn, def->name)))
2637 2638
        goto error;

2639
    if (xend_wait_for_devices(conn, def->name) < 0)
2640 2641
        goto error;

2642
    if (xenDaemonDomainResume(dom) < 0)
2643 2644
        goto error;

2645
    virDomainDefFree(def);
2646
    return (dom);
2647

2648
  error:
2649 2650 2651
    /* Make sure we don't leave a still-born domain around */
    if (dom != NULL) {
        xenDaemonDomainDestroy(dom);
2652
        virUnrefDomain(dom);
2653
    }
2654
    virDomainDefFree(def);
2655 2656
    return (NULL);
}
2657 2658

/**
2659
 * xenDaemonAttachDeviceFlags:
2660 2661
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
2662
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
2663
 *
2664 2665 2666 2667 2668 2669
 * 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.
 */
static int
2670 2671
xenDaemonAttachDeviceFlags(virDomainPtr domain, const char *xml,
                           unsigned int flags)
2672
{
2673
    xenUnifiedPrivatePtr priv;
2674 2675 2676 2677 2678
    char *sexpr = NULL;
    int ret = -1;
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2679
    char class[8], ref[80];
2680
    char *target = NULL;
2681

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

2684
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
2685
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2686
        return -1;
2687
    }
2688

2689 2690
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

2691
    if (domain->id < 0) {
2692 2693 2694 2695 2696 2697
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                         _("Cannot modify live config if domain is inactive"));
            return -1;
        }
2698 2699
        /* If xendConfigVersion < 3 only live config can be changed */
        if (priv->xendConfigVersion < 3) {
2700
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2701
                         _("Xend version does not support modifying "
2702
                           "persistent config"));
2703 2704 2705 2706 2707
            return -1;
        }
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
        if (priv->xendConfigVersion < 3 &&
E
Eric Blake 已提交
2708
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2709
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2710
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2711
                         _("Xend version does not support modifying "
2712
                           "persistent config"));
2713 2714
            return -1;
        }
2715
        /* Xen only supports modifying both live and persistent config if
2716 2717
         * xendConfigVersion >= 3
         */
2718 2719 2720
        if (priv->xendConfigVersion >= 3 &&
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2721
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2722
                         _("Xend only supports modifying both live and "
2723
                           "persistent config"));
2724 2725 2726
            return -1;
        }
    }
2727

2728 2729 2730 2731 2732 2733
    if (!(def = xenDaemonDomainFetch(domain->conn,
                                     domain->id,
                                     domain->name,
                                     NULL)))
        goto cleanup;

2734
    if (!(dev = virDomainDeviceDefParse(priv->caps,
G
Guido Günther 已提交
2735
                                        def, xml, VIR_DOMAIN_XML_INACTIVE)))
2736 2737 2738 2739 2740
        goto cleanup;


    switch (dev->type) {
    case VIR_DOMAIN_DEVICE_DISK:
2741 2742 2743 2744
        if (xenFormatSxprDisk(dev->data.disk,
                              &buf,
                              STREQ(def->os.type, "hvm") ? 1 : 0,
                              priv->xendConfigVersion, 1) < 0)
2745
            goto cleanup;
2746 2747 2748 2749 2750 2751 2752

        if (dev->data.disk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
            if (!(target = strdup(dev->data.disk->dst))) {
                virReportOOMError();
                goto cleanup;
            }
        }
2753
        break;
2754 2755

    case VIR_DOMAIN_DEVICE_NET:
M
Markus Groß 已提交
2756 2757 2758 2759 2760
        if (xenFormatSxprNet(domain->conn,
                             dev->data.net,
                             &buf,
                             STREQ(def->os.type, "hvm") ? 1 : 0,
                             priv->xendConfigVersion, 1) < 0)
2761
            goto cleanup;
2762 2763 2764 2765 2766 2767 2768 2769

        char macStr[VIR_MAC_STRING_BUFLEN];
        virFormatMacAddr(dev->data.net->mac, macStr);

        if (!(target = strdup(macStr))) {
            virReportOOMError();
            goto cleanup;
        }
2770
        break;
2771

2772 2773 2774
    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ß 已提交
2775
            if (xenFormatSxprOnePCI(dev->data.hostdev, &buf, 0) < 0)
2776
                goto cleanup;
2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787

            virDomainDevicePCIAddress PCIAddr;

            PCIAddr = dev->data.hostdev->source.subsys.u.pci;
            virAsprintf(&target, "PCI device: %.4x:%.2x:%.2x", PCIAddr.domain,
                                 PCIAddr.bus, PCIAddr.slot);

            if (target == NULL) {
                virReportOOMError();
                goto cleanup;
            }
2788
        } else {
2789
            virXendError(VIR_ERR_NO_SUPPORT, "%s",
2790 2791 2792 2793 2794
                         _("unsupported device type"));
            goto cleanup;
        }
        break;

2795
    default:
2796
        virXendError(VIR_ERR_NO_SUPPORT, "%s",
2797 2798
                     _("unsupported device type"));
        goto cleanup;
2799
    }
2800 2801 2802 2803

    sexpr = virBufferContentAndReset(&buf);

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref))) {
2804 2805
        /* device doesn't exist, define it */
        ret = xend_op(domain->conn, domain->name, "op", "device_create",
2806
                      "config", sexpr, NULL);
2807 2808 2809 2810 2811 2812 2813 2814 2815
    } else {
        if (dev->data.disk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
            virXendError(VIR_ERR_OPERATION_INVALID,
                         _("target '%s' already exists"), target);
        } else {
            /* device exists, attempt to modify it */
            ret = xend_op(domain->conn, domain->name, "op", "device_configure",
                          "config", sexpr, "dev", ref, NULL);
        }
2816
    }
2817 2818

cleanup:
2819
    VIR_FREE(sexpr);
2820 2821
    virDomainDefFree(def);
    virDomainDeviceDefFree(dev);
2822
    VIR_FREE(target);
2823 2824 2825
    return ret;
}

2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848
/**
 * 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.
 */
static int
xenDaemonUpdateDeviceFlags(virDomainPtr domain, const char *xml,
                           unsigned int flags)
{
    xenUnifiedPrivatePtr priv;
    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 已提交
2849
    virCheckFlags(VIR_DOMAIN_DEVICE_MODIFY_LIVE |
2850 2851
                  VIR_DOMAIN_DEVICE_MODIFY_CONFIG, -1);

2852
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
2853
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2854 2855 2856 2857 2858 2859
        return -1;
    }

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0) {
2860 2861 2862 2863 2864 2865
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                         _("Cannot modify live config if domain is inactive"));
            return -1;
        }
2866 2867
        /* If xendConfigVersion < 3 only live config can be changed */
        if (priv->xendConfigVersion < 3) {
2868
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2869 2870 2871 2872 2873 2874 2875
                         _("Xend version does not support modifying "
                           "persistent config"));
            return -1;
        }
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
        if (priv->xendConfigVersion < 3 &&
E
Eric Blake 已提交
2876
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2877
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2878
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2879 2880 2881 2882 2883 2884 2885
                         _("Xend version does not support modifying "
                           "persistent config"));
            return -1;
        }
        /* Xen only supports modifying both live and persistent config if
         * xendConfigVersion >= 3
         */
2886 2887 2888
        if (priv->xendConfigVersion >= 3 &&
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2889
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908
                         _("Xend only supports modifying both live and "
                           "persistent config"));
            return -1;
        }
    }

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

    if (!(dev = virDomainDeviceDefParse(priv->caps,
                                        def, xml, VIR_DOMAIN_XML_INACTIVE)))
        goto cleanup;


    switch (dev->type) {
    case VIR_DOMAIN_DEVICE_DISK:
2909
        if (xenFormatSxprDisk(dev->data.disk,
M
Markus Groß 已提交
2910 2911 2912
                              &buf,
                              STREQ(def->os.type, "hvm") ? 1 : 0,
                              priv->xendConfigVersion, 1) < 0)
2913 2914 2915 2916
            goto cleanup;
        break;

    default:
2917
        virXendError(VIR_ERR_NO_SUPPORT, "%s",
2918 2919 2920 2921 2922 2923 2924
                     _("unsupported device type"));
        goto cleanup;
    }

    sexpr = virBufferContentAndReset(&buf);

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref))) {
2925
        virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940
                     _("requested device does not exist"));
        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;
}

2941
/**
2942
 * xenDaemonDetachDeviceFlags:
2943 2944
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
2945
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
2946
 *
2947 2948 2949 2950 2951
 * Destroy a virtual device attachment to backend.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
static int
2952 2953
xenDaemonDetachDeviceFlags(virDomainPtr domain, const char *xml,
                           unsigned int flags)
2954
{
2955
    xenUnifiedPrivatePtr priv;
2956
    char class[8], ref[80];
2957 2958 2959
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    int ret = -1;
2960 2961
    char *xendev = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2962

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

2965
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
2966
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2967 2968
        return (-1);
    }
2969 2970 2971

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

2972
    if (domain->id < 0) {
2973 2974 2975 2976 2977 2978
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
                         _("Cannot modify live config if domain is inactive"));
            return -1;
        }
2979 2980
        /* If xendConfigVersion < 3 only live config can be changed */
        if (priv->xendConfigVersion < 3) {
2981
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2982
                         _("Xend version does not support modifying "
2983
                           "persistent config"));
2984 2985 2986 2987 2988
            return -1;
        }
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
        if (priv->xendConfigVersion < 3 &&
E
Eric Blake 已提交
2989
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2990
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2991
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
2992
                         _("Xend version does not support modifying "
2993
                           "persistent config"));
2994 2995
            return -1;
        }
2996
        /* Xen only supports modifying both live and persistent config if
2997 2998
         * xendConfigVersion >= 3
         */
2999 3000 3001
        if (priv->xendConfigVersion >= 3 &&
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
3002
            virXendError(VIR_ERR_OPERATION_INVALID, "%s",
3003
                         _("Xend only supports modifying both live and "
3004
                           "persistent config"));
3005 3006 3007
            return -1;
        }
    }
3008 3009 3010 3011 3012 3013 3014

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

3015
    if (!(dev = virDomainDeviceDefParse(priv->caps,
G
Guido Günther 已提交
3016
                                        def, xml, VIR_DOMAIN_XML_INACTIVE)))
3017 3018 3019 3020 3021
        goto cleanup;

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

3022 3023 3024
    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ß 已提交
3025
            if (xenFormatSxprOnePCI(dev->data.hostdev, &buf, 1) < 0)
3026 3027
                goto cleanup;
        } else {
3028
            virXendError(VIR_ERR_NO_SUPPORT, "%s",
3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041
                         _("unsupported device type"));
            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);
    }
3042 3043 3044 3045 3046 3047

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

    return ret;
3048
}
3049

3050 3051 3052 3053 3054 3055 3056 3057 3058
int
xenDaemonDomainGetAutostart(virDomainPtr domain,
                            int *autostart)
{
    struct sexpr *root;
    const char *tmp;
    xenUnifiedPrivatePtr priv;

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3059
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071
        return (-1);
    }

    /* xm_internal.c (the support for defined domains from /etc/xen
     * config files used by old Xen) will handle this.
     */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
    if (priv->xendConfigVersion < 3)
        return(-1);

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL) {
3072
        virXendError(VIR_ERR_XEN_CALL,
J
Jim Meyering 已提交
3073
                      "%s", _("xenDaemonGetAutostart failed to find this domain"));
3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092
        return (-1);
    }

    *autostart = 0;

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

    sexpr_free(root);
    return 0;
}

int
xenDaemonDomainSetAutostart(virDomainPtr domain,
                            int autostart)
{
    struct sexpr *root, *autonode;
3093 3094
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    char *content = NULL;
3095 3096 3097 3098
    int ret = -1;
    xenUnifiedPrivatePtr priv;

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3099
        virXendError(VIR_ERR_INTERNAL_ERROR, __FUNCTION__);
3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111
        return (-1);
    }

    /* xm_internal.c (the support for defined domains from /etc/xen
     * config files used by old Xen) will handle this.
     */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
    if (priv->xendConfigVersion < 3)
        return(-1);

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL) {
3112
        virXendError(VIR_ERR_XEN_CALL,
J
Jim Meyering 已提交
3113
                      "%s", _("xenDaemonSetAutostart failed to find this domain"));
3114 3115 3116
        return (-1);
    }

3117 3118 3119 3120
    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);
3121
        if (!val || (!STREQ(val, "ignore") && !STREQ(val, "start"))) {
3122
            virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3123
                         "%s", _("unexpected value from on_xend_start"));
3124 3125 3126
            goto error;
        }

3127
        /* Change the autostart value in place, then define the new sexpr */
3128
        VIR_FREE(autonode->u.s.car->u.value);
3129 3130 3131
        autonode->u.s.car->u.value = (autostart ? strdup("start")
                                                : strdup("ignore"));
        if (!(autonode->u.s.car->u.value)) {
3132
            virReportOOMError();
3133 3134 3135
            goto error;
        }

3136
        if (sexpr2string(root, &buffer) < 0) {
3137
            virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3138
                         "%s", _("sexpr2string failed"));
3139 3140
            goto error;
        }
3141 3142 3143 3144 3145 3146 3147 3148 3149

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

        content = virBufferContentAndReset(&buffer);

        if (xend_op(domain->conn, "", "op", "new", "config", content, NULL) != 0) {
3150
            virXendError(VIR_ERR_XEN_CALL,
J
Jim Meyering 已提交
3151
                         "%s", _("Failed to redefine sexpr"));
3152 3153 3154
            goto error;
        }
    } else {
3155
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3156
                     "%s", _("on_xend_start not present in sexpr"));
3157 3158 3159 3160 3161
        goto error;
    }

    ret = 0;
  error:
3162 3163
    virBufferFreeAndReset(&buffer);
    VIR_FREE(content);
3164 3165 3166
    sexpr_free(root);
    return ret;
}
3167

3168 3169 3170 3171 3172 3173
int
xenDaemonDomainMigratePrepare (virConnectPtr dconn,
                               char **cookie ATTRIBUTE_UNUSED,
                               int *cookielen ATTRIBUTE_UNUSED,
                               const char *uri_in,
                               char **uri_out,
E
Eric Blake 已提交
3174
                               unsigned long flags,
3175 3176 3177
                               const char *dname ATTRIBUTE_UNUSED,
                               unsigned long resource ATTRIBUTE_UNUSED)
{
E
Eric Blake 已提交
3178 3179
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

3180 3181 3182 3183 3184
    /* 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) {
3185 3186
        *uri_out = virGetHostname(dconn);
        if (*uri_out == NULL)
3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211
            return -1;
    }

    return 0;
}

int
xenDaemonDomainMigratePerform (virDomainPtr domain,
                               const char *cookie ATTRIBUTE_UNUSED,
                               int cookielen ATTRIBUTE_UNUSED,
                               const char *uri,
                               unsigned long flags,
                               const char *dname,
                               unsigned long bandwidth)
{
    /* 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;

3212 3213
    int undefined_source = 0;

E
Eric Blake 已提交
3214 3215
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

3216 3217
    /* Xen doesn't support renaming domains during migration. */
    if (dname) {
3218
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3219
                      "%s", _("xenDaemonDomainMigrate: Xen does not support"
3220
                        " renaming domains during migration"));
3221 3222 3223 3224 3225 3226 3227
        return -1;
    }

    /* Xen (at least up to 3.1.0) takes a resource parameter but
     * ignores it.
     */
    if (bandwidth) {
3228
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3229
                      "%s", _("xenDaemonDomainMigrate: Xen does not support"
3230
                        " bandwidth limits during migration"));
3231 3232 3233
        return -1;
    }

3234 3235 3236
    /*
     * Check the flags.
     */
3237 3238 3239 3240
    if ((flags & VIR_MIGRATE_LIVE)) {
        strcpy (live, "1");
        flags &= ~VIR_MIGRATE_LIVE;
    }
3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251

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

3252 3253 3254 3255
    /* This is buggy in Xend, but could be supported in principle.  Give
     * a nice error message.
     */
    if (flags & VIR_MIGRATE_PAUSED) {
3256
        virXendError(VIR_ERR_NO_SUPPORT,
3257 3258 3259 3260
                      "%s", _("xenDaemonDomainMigrate: xend cannot migrate paused domains"));
        return -1;
    }

3261 3262
    /* XXX we could easily do tunnelled & peer2peer migration too
       if we want to. support these... */
3263
    if (flags != 0) {
3264
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3265
                      "%s", _("xenDaemonDomainMigrate: unsupported flag"));
3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276
        return -1;
    }

    /* Set hostname and port.
     *
     * URI is non-NULL (guaranteed by caller).  We expect either
     * "hostname", "hostname:port" or "xenmigr://hostname[:port]/".
     */
    if (strstr (uri, "//")) {   /* Full URI. */
        xmlURIPtr uriptr = xmlParseURI (uri);
        if (!uriptr) {
3277
            virXendError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
3278
                          "%s", _("xenDaemonDomainMigrate: invalid URI"));
3279 3280 3281
            return -1;
        }
        if (uriptr->scheme && STRCASENEQ (uriptr->scheme, "xenmigr")) {
3282
            virXendError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
3283
                          "%s", _("xenDaemonDomainMigrate: only xenmigr://"
3284
                            " migrations are supported by Xen"));
3285 3286 3287 3288
            xmlFreeURI (uriptr);
            return -1;
        }
        if (!uriptr->server) {
3289
            virXendError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
3290
                          "%s", _("xenDaemonDomainMigrate: a hostname must be"
3291
                            " specified in the URI"));
3292 3293 3294 3295 3296
            xmlFreeURI (uriptr);
            return -1;
        }
        hostname = strdup (uriptr->server);
        if (!hostname) {
3297
            virReportOOMError();
3298 3299 3300 3301 3302 3303 3304 3305 3306 3307
            xmlFreeURI (uriptr);
            return -1;
        }
        if (uriptr->port)
            snprintf (port, sizeof port, "%d", uriptr->port);
        xmlFreeURI (uriptr);
    }
    else if ((p = strrchr (uri, ':')) != NULL) { /* "hostname:port" */
        int port_nr, n;

3308
        if (virStrToLong_i(p+1, NULL, 10, &port_nr) < 0) {
3309
            virXendError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
3310
                          "%s", _("xenDaemonDomainMigrate: invalid port number"));
3311 3312 3313 3314 3315 3316 3317 3318
            return -1;
        }
        snprintf (port, sizeof port, "%d", port_nr);

        /* Get the hostname. */
        n = p - uri; /* n = Length of hostname in bytes. */
        hostname = strdup (uri);
        if (!hostname) {
3319
            virReportOOMError();
3320 3321 3322 3323 3324 3325 3326
            return -1;
        }
        hostname[n] = '\0';
    }
    else {                      /* "hostname" (or IP address) */
        hostname = strdup (uri);
        if (!hostname) {
3327
            virReportOOMError();
3328 3329 3330 3331
            return -1;
        }
    }

3332
    VIR_DEBUG("hostname = %s, port = %s", hostname, port);
3333

J
Jim Fehlig 已提交
3334 3335 3336 3337 3338 3339
    /* 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.
     */
3340 3341 3342 3343 3344
    ret = xend_op (domain->conn, domain->name,
                   "op", "migrate",
                   "destination", hostname,
                   "live", live,
                   "port", port,
J
Jim Fehlig 已提交
3345 3346 3347 3348
                   "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 */
3349
                   NULL);
3350
    VIR_FREE (hostname);
3351

3352 3353 3354
    if (ret == 0 && undefined_source)
        xenDaemonDomainUndefine (domain);

3355
    VIR_DEBUG("migration done");
3356 3357 3358 3359

    return ret;
}

3360 3361 3362 3363
virDomainPtr xenDaemonDomainDefineXML(virConnectPtr conn, const char *xmlDesc) {
    int ret;
    char *sexpr;
    virDomainPtr dom;
3364
    xenUnifiedPrivatePtr priv;
3365
    virDomainDefPtr def;
3366 3367 3368 3369

    priv = (xenUnifiedPrivatePtr) conn->privateData;

    if (priv->xendConfigVersion < 3)
3370
        return(NULL);
3371

3372
    if (!(def = virDomainDefParseString(priv->caps, xmlDesc,
M
Matthias Bolte 已提交
3373
                                        1 << VIR_DOMAIN_VIRT_XEN,
3374
                                        VIR_DOMAIN_XML_INACTIVE))) {
3375
        virXendError(VIR_ERR_XML_ERROR,
J
Jim Meyering 已提交
3376
                     "%s", _("failed to parse domain description"));
3377 3378 3379
        return (NULL);
    }

M
Markus Groß 已提交
3380
    if (!(sexpr = xenFormatSxpr(conn, def, priv->xendConfigVersion))) {
3381
        virXendError(VIR_ERR_XML_ERROR,
J
Jim Meyering 已提交
3382
                     "%s", _("failed to build sexpr"));
3383 3384 3385
        goto error;
    }

3386
    ret = xend_op(conn, "", "op", "new", "config", sexpr, NULL);
3387
    VIR_FREE(sexpr);
3388
    if (ret != 0) {
3389
        virXendError(VIR_ERR_XEN_CALL,
3390
                     _("Failed to create inactive domain %s"), def->name);
3391 3392 3393
        goto error;
    }

3394
    dom = virDomainLookupByName(conn, def->name);
3395 3396 3397
    if (dom == NULL) {
        goto error;
    }
3398
    virDomainDefFree(def);
3399
    return (dom);
3400

3401
  error:
3402
    virDomainDefFree(def);
3403 3404
    return (NULL);
}
3405 3406 3407
int xenDaemonDomainCreate(virDomainPtr domain)
{
    xenUnifiedPrivatePtr priv;
3408 3409
    int ret;
    virDomainPtr tmp;
3410

3411
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3412
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3413 3414
        return(-1);
    }
3415 3416 3417 3418

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (priv->xendConfigVersion < 3)
3419 3420
        return(-1);

3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431
    ret = xend_op(domain->conn, domain->name, "op", "start", NULL);

    if (ret != -1) {
        /* Need to force a refresh of this object's ID */
        tmp = virDomainLookupByName(domain->conn, domain->name);
        if (tmp) {
            domain->id = tmp->id;
            virDomainFree(tmp);
        }
    }
    return ret;
3432 3433
}

3434 3435 3436 3437
int xenDaemonDomainUndefine(virDomainPtr domain)
{
    xenUnifiedPrivatePtr priv;

3438
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3439
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3440 3441
        return(-1);
    }
3442 3443 3444 3445

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (priv->xendConfigVersion < 3)
3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464
        return(-1);

    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
 */
static int
xenDaemonNumOfDefinedDomains(virConnectPtr conn)
{
    struct sexpr *root = NULL;
    int ret = -1;
    struct sexpr *_for_i, *node;
3465
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
3466

3467 3468 3469
    /* xm_internal.c (the support for defined domains from /etc/xen
     * config files used by old Xen) will handle this.
     */
3470
    if (priv->xendConfigVersion < 3)
3471 3472
        return(-1);

3473 3474 3475 3476 3477 3478
    root = sexpr_get(conn, "/xend/domain?state=halted");
    if (root == NULL)
        goto error;

    ret = 0;

3479 3480
    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) {
3481 3482 3483 3484 3485 3486
        if (node->kind != SEXPR_VALUE)
            continue;
        ret++;
    }

error:
3487
    sexpr_free(root);
3488 3489 3490
    return(ret);
}

3491 3492
static int
xenDaemonListDefinedDomains(virConnectPtr conn, char **const names, int maxnames) {
3493
    struct sexpr *root = NULL;
3494
    int i, ret = -1;
3495
    struct sexpr *_for_i, *node;
3496
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
3497

3498
    if (priv->xendConfigVersion < 3)
3499 3500
        return(-1);

3501
    if ((names == NULL) || (maxnames < 0))
3502
        goto error;
3503 3504 3505
    if (maxnames == 0)
        return(0);

3506 3507 3508 3509 3510 3511
    root = sexpr_get(conn, "/xend/domain?state=halted");
    if (root == NULL)
        goto error;

    ret = 0;

3512 3513
    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) {
3514 3515 3516
        if (node->kind != SEXPR_VALUE)
            continue;

3517
        if ((names[ret++] = strdup(node->u.value)) == NULL) {
3518
            virReportOOMError();
3519 3520 3521
            goto error;
        }

3522 3523 3524 3525
        if (ret >= maxnames)
            break;
    }

3526 3527 3528 3529
cleanup:
    sexpr_free(root);
    return(ret);

3530
error:
3531 3532 3533
    for (i = 0; i < ret; ++i)
        VIR_FREE(names[i]);

3534 3535 3536
    ret = -1;

    goto cleanup;
3537 3538
}

3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556
/**
 * 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
 */
static char *
xenDaemonGetSchedulerType(virDomainPtr domain, int *nparams)
{
    xenUnifiedPrivatePtr priv;
    struct sexpr *root;
    const char *ret = NULL;
    char *schedulertype = NULL;

3557
    if (domain->conn == NULL || domain->name == NULL) {
3558
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3559 3560 3561 3562 3563 3564
        return NULL;
    }

    /* Support only xendConfigVersion >=4 */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
    if (priv->xendConfigVersion < 4) {
3565
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3566
                      "%s", _("unsupported in xendConfigVersion < 4"));
3567 3568 3569 3570 3571 3572 3573 3574 3575 3576
        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){
3577
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3578
                     "%s", _("node information incomplete, missing scheduler name"));
3579 3580 3581 3582 3583
        goto error;
    }
    if (STREQ (ret, "credit")) {
        schedulertype = strdup("credit");
        if (schedulertype == NULL){
3584
            virReportOOMError();
3585 3586
            goto error;
        }
3587 3588
        if (nparams)
            *nparams = XEN_SCHED_CRED_NPARAM;
3589 3590 3591
    } else if (STREQ (ret, "sedf")) {
        schedulertype = strdup("sedf");
        if (schedulertype == NULL){
3592
            virReportOOMError();
3593 3594
            goto error;
        }
3595 3596
        if (nparams)
            *nparams = XEN_SCHED_SEDF_NPARAM;
3597
    } else {
3598
        virXendError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624
        goto error;
    }

error:
    sexpr_free(root);
    return schedulertype;

}

static const char *str_weight = "weight";
static const char *str_cap = "cap";

/**
 * 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
 */
static int
xenDaemonGetSchedulerParameters(virDomainPtr domain,
3625
                                virTypedParameterPtr params, int *nparams)
3626 3627 3628 3629 3630 3631 3632
{
    xenUnifiedPrivatePtr priv;
    struct sexpr *root;
    char *sched_type = NULL;
    int sched_nparam = 0;
    int ret = -1;

3633
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3634
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3635 3636 3637 3638 3639 3640
        return (-1);
    }

    /* Support only xendConfigVersion >=4 */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
    if (priv->xendConfigVersion < 4) {
3641
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3642
                      "%s", _("unsupported in xendConfigVersion < 4"));
3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653
        return (-1);
    }

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

    /* get the scheduler type */
    sched_type = xenDaemonGetSchedulerType(domain, &sched_nparam);
    if (sched_type == NULL) {
3654
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3655
                     "%s", _("Failed to get a scheduler name"));
3656 3657 3658 3659 3660
        goto error;
    }

    switch (sched_nparam){
        case XEN_SCHED_SEDF_NPARAM:
3661 3662 3663 3664 3665 3666
            if (*nparams < XEN_SCHED_SEDF_NPARAM) {
                virXendError(VIR_ERR_INVALID_ARG,
                             "%s", _("Invalid parameter count"));
                goto error;
            }

3667 3668 3669 3670
            /* TODO: Implement for Xen/SEDF */
            TODO
            goto error;
        case XEN_SCHED_CRED_NPARAM:
3671 3672 3673 3674 3675 3676
            if (*nparams < XEN_SCHED_CRED_NPARAM) {
                virXendError(VIR_ERR_INVALID_ARG,
                             "%s", _("Invalid parameter count"));
                goto error;
            }

3677 3678
            /* get cpu_weight/cpu_cap from xend/domain */
            if (sexpr_node(root, "domain/cpu_weight") == NULL) {
3679
                virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3680
                        "%s", _("domain information incomplete, missing cpu_weight"));
3681 3682 3683
                goto error;
            }
            if (sexpr_node(root, "domain/cpu_cap") == NULL) {
3684
                virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3685
                        "%s", _("domain information incomplete, missing cpu_cap"));
3686 3687 3688
                goto error;
            }

C
Chris Lalancette 已提交
3689
            if (virStrcpyStatic(params[0].field, str_weight) == NULL) {
3690
                virXendError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
3691 3692 3693 3694
                             _("Weight %s too big for destination"),
                             str_weight);
                goto error;
            }
3695
            params[0].type = VIR_TYPED_PARAM_UINT;
3696 3697
            params[0].value.ui = sexpr_int(root, "domain/cpu_weight");

C
Chris Lalancette 已提交
3698
            if (virStrcpyStatic(params[1].field, str_cap) == NULL) {
3699
                virXendError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
3700 3701 3702
                             _("Cap %s too big for destination"), str_cap);
                goto error;
            }
3703
            params[1].type = VIR_TYPED_PARAM_UINT;
3704 3705 3706 3707 3708
            params[1].value.ui = sexpr_int(root, "domain/cpu_cap");
            *nparams = XEN_SCHED_CRED_NPARAM;
            ret = 0;
            break;
        default:
3709
            virXendError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3710 3711 3712 3713 3714
            goto error;
    }

error:
    sexpr_free(root);
3715
    VIR_FREE(sched_type);
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730
    return (ret);
}

/**
 * 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
 */
static int
xenDaemonSetSchedulerParameters(virDomainPtr domain,
3731
                                virTypedParameterPtr params, int nparams)
3732 3733 3734 3735 3736 3737 3738 3739
{
    xenUnifiedPrivatePtr priv;
    struct sexpr *root;
    char *sched_type = NULL;
    int i;
    int sched_nparam = 0;
    int ret = -1;

3740
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3741
        virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3742 3743 3744 3745 3746 3747
        return (-1);
    }

    /* Support only xendConfigVersion >=4 and active domains */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
    if (priv->xendConfigVersion < 4) {
3748
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3749
                      "%s", _("unsupported in xendConfigVersion < 4"));
3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760
        return (-1);
    }

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

    /* get the scheduler type */
    sched_type = xenDaemonGetSchedulerType(domain, &sched_nparam);
    if (sched_type == NULL) {
3761
        virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3762
                     "%s", _("Failed to get a scheduler name"));
3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781
        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++) {
                if (STREQ (params[i].field, str_weight) &&
3782
                    params[i].type == VIR_TYPED_PARAM_UINT) {
3783 3784
                    snprintf(buf_weight, sizeof(buf_weight), "%u", params[i].value.ui);
                } else if (STREQ (params[i].field, str_cap) &&
3785
                    params[i].type == VIR_TYPED_PARAM_UINT) {
3786 3787
                    snprintf(buf_cap, sizeof(buf_cap), "%u", params[i].value.ui);
                } else {
3788
                    virXendError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3789 3790 3791 3792 3793 3794 3795 3796
                    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) {
3797
                    virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3798
                                "%s", _("domain information incomplete, missing cpu_weight"));
3799 3800 3801 3802 3803 3804 3805
                    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) {
3806
                    virXendError(VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
3807
                                "%s", _("domain information incomplete, missing cpu_cap"));
3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818
                    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:
3819
            virXendError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3820 3821 3822 3823 3824
            goto error;
    }

error:
    sexpr_free(root);
3825
    VIR_FREE(sched_type);
3826 3827 3828
    return (ret);
}

R
Richard W.M. Jones 已提交
3829 3830
/**
 * xenDaemonDomainBlockPeek:
P
Philipp Hahn 已提交
3831
 * @domain: domain object
R
Richard W.M. Jones 已提交
3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844
 * @path: path to the file or device
 * @offset: offset
 * @size: size
 * @buffer: return buffer
 *
 * Returns 0 if successful, -1 if error, -2 if declined.
 */
int
xenDaemonDomainBlockPeek (virDomainPtr domain, const char *path,
                          unsigned long long offset, size_t size,
                          void *buffer)
{
    xenUnifiedPrivatePtr priv;
3845 3846
    struct sexpr *root = NULL;
    int fd = -1, ret = -1;
3847
    int found = 0, i;
3848
    virDomainDefPtr def;
3849 3850 3851
    int id;
    char * tty;
    int vncport;
R
Richard W.M. Jones 已提交
3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866

    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

    if (domain->id < 0 && priv->xendConfigVersion < 3)
        return -2;              /* Decline, allow XM to handle it. */

    /* Security check: The path must correspond to a block device. */
    if (domain->id > 0)
        root = sexpr_get (domain->conn, "/xend/domain/%d?detail=1",
                          domain->id);
    else if (domain->id < 0)
        root = sexpr_get (domain->conn, "/xend/domain/%s?detail=1",
                          domain->name);
    else {
        /* This call always fails for dom0. */
3867
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
3868
                      "%s", _("domainBlockPeek is not supported for dom0"));
R
Richard W.M. Jones 已提交
3869 3870 3871 3872
        return -1;
    }

    if (!root) {
3873
        virXendError(VIR_ERR_XEN_CALL, __FUNCTION__);
R
Richard W.M. Jones 已提交
3874 3875 3876
        return -1;
    }

3877 3878 3879 3880 3881 3882
    id = xenGetDomIdFromSxpr(root, priv->xendConfigVersion);
    xenUnifiedLock(priv);
    tty = xenStoreDomainGetConsolePath(domain->conn, id);
    vncport = xenStoreDomainGetVNCPort(domain->conn, id);
    xenUnifiedUnlock(priv);

M
Markus Groß 已提交
3883 3884
    if (!(def = xenParseSxpr(root, priv->xendConfigVersion, NULL, tty,
                             vncport)))
3885
        goto cleanup;
R
Richard W.M. Jones 已提交
3886

3887 3888 3889
    for (i = 0 ; i < def->ndisks ; i++) {
        if (def->disks[i]->src &&
            STREQ(def->disks[i]->src, path)) {
3890 3891 3892 3893 3894
            found = 1;
            break;
        }
    }
    if (!found) {
3895
        virXendError(VIR_ERR_INVALID_ARG,
3896
                      _("%s: invalid path"), path);
3897
        goto cleanup;
R
Richard W.M. Jones 已提交
3898 3899 3900 3901
    }

    /* The path is correct, now try to open it and get its size. */
    fd = open (path, O_RDONLY);
3902
    if (fd == -1) {
3903
        virReportSystemError(errno,
3904 3905
                             _("failed to open for reading: %s"),
                             path);
3906
        goto cleanup;
R
Richard W.M. Jones 已提交
3907 3908 3909 3910 3911 3912 3913 3914
    }

    /* Seek and read. */
    /* NB. Because we configure with AC_SYS_LARGEFILE, off_t should
     * be 64 bits on all platforms.
     */
    if (lseek (fd, offset, SEEK_SET) == (off_t) -1 ||
        saferead (fd, buffer, size) == (ssize_t) -1) {
3915
        virReportSystemError(errno,
3916 3917
                             _("failed to lseek or read from file: %s"),
                             path);
3918
        goto cleanup;
R
Richard W.M. Jones 已提交
3919 3920 3921
    }

    ret = 0;
3922
 cleanup:
3923
    VIR_FORCE_CLOSE(fd);
3924 3925
    sexpr_free(root);
    virDomainDefFree(def);
R
Richard W.M. Jones 已提交
3926 3927 3928
    return ret;
}

3929 3930 3931 3932 3933 3934 3935 3936 3937
struct xenUnifiedDriver xenDaemonDriver = {
    xenDaemonOpen,               /* open */
    xenDaemonClose,              /* close */
    xenDaemonGetVersion,         /* version */
    NULL,                        /* hostname */
    xenDaemonNodeGetInfo,        /* nodeGetInfo */
    NULL,                        /* getCapabilities */
    xenDaemonListDomains,        /* listDomains */
    xenDaemonNumOfDomains,       /* numOfDomains */
3938
    xenDaemonCreateXML,          /* domainCreateXML */
3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951
    xenDaemonDomainSuspend,      /* domainSuspend */
    xenDaemonDomainResume,       /* domainResume */
    xenDaemonDomainShutdown,     /* domainShutdown */
    xenDaemonDomainReboot,       /* domainReboot */
    xenDaemonDomainDestroy,      /* domainDestroy */
    xenDaemonDomainGetOSType,    /* domainGetOSType */
    xenDaemonDomainGetMaxMemory, /* domainGetMaxMemory */
    xenDaemonDomainSetMaxMemory, /* domainSetMaxMemory */
    xenDaemonDomainSetMemory,    /* domainMaxMemory */
    xenDaemonDomainGetInfo,      /* domainGetInfo */
    xenDaemonDomainSave,         /* domainSave */
    xenDaemonDomainRestore,      /* domainRestore */
    xenDaemonDomainCoreDump,     /* domainCoreDump */
3952
    NULL,                        /* domainScreenshot */
3953 3954 3955 3956 3957 3958 3959
    xenDaemonDomainPinVcpu,      /* domainPinVcpu */
    xenDaemonDomainGetVcpus,     /* domainGetVcpus */
    xenDaemonListDefinedDomains, /* listDefinedDomains */
    xenDaemonNumOfDefinedDomains,/* numOfDefinedDomains */
    xenDaemonDomainCreate,       /* domainCreate */
    xenDaemonDomainDefineXML,    /* domainDefineXML */
    xenDaemonDomainUndefine,     /* domainUndefine */
3960 3961
    xenDaemonAttachDeviceFlags,       /* domainAttachDeviceFlags */
    xenDaemonDetachDeviceFlags,       /* domainDetachDeviceFlags */
3962
    xenDaemonUpdateDeviceFlags,       /* domainUpdateDeviceFlags */
3963 3964 3965 3966 3967 3968 3969
    xenDaemonDomainGetAutostart, /* domainGetAutostart */
    xenDaemonDomainSetAutostart, /* domainSetAutostart */
    xenDaemonGetSchedulerType,   /* domainGetSchedulerType */
    xenDaemonGetSchedulerParameters, /* domainGetSchedulerParameters */
    xenDaemonSetSchedulerParameters, /* domainSetSchedulerParameters */
};

3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981

/**
 * 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.
3982 3983
 *  - if pci, get BDF from description, scan XenStore and
 *    copy in ref the corresponding dev number.
3984 3985 3986 3987 3988 3989 3990 3991 3992 3993
 *
 * 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 已提交
3994
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
3995
    char *xref;
C
Chris Lalancette 已提交
3996
    char *tmp;
3997 3998

    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
3999 4000 4001
        if (dev->data.disk->driverName &&
            STREQ(dev->data.disk->driverName, "tap"))
            strcpy(class, "tap");
J
Jim Fehlig 已提交
4002 4003 4004
        else if (dev->data.disk->driverName &&
            STREQ(dev->data.disk->driverName, "tap2"))
            strcpy(class, "tap2");
4005 4006 4007
        else
            strcpy(class, "vbd");

4008 4009
        if (dev->data.disk->dst == NULL)
            return -1;
D
Daniel P. Berrange 已提交
4010
        xenUnifiedLock(priv);
4011 4012
        xref = xenStoreDomainGetDiskID(domain->conn, domain->id,
                                       dev->data.disk->dst);
D
Daniel P. Berrange 已提交
4013
        xenUnifiedUnlock(priv);
4014 4015 4016
        if (xref == NULL)
            return -1;

C
Chris Lalancette 已提交
4017
        tmp = virStrcpy(ref, xref, ref_len);
4018
        VIR_FREE(xref);
C
Chris Lalancette 已提交
4019 4020
        if (tmp == NULL)
            return -1;
4021 4022 4023 4024 4025 4026 4027 4028 4029
    } else if (dev->type == VIR_DOMAIN_DEVICE_NET) {
        char mac[30];
        virDomainNetDefPtr def = dev->data.net;
        snprintf(mac, sizeof(mac), "%02x:%02x:%02x:%02x:%02x:%02x",
                 def->mac[0], def->mac[1], def->mac[2],
                 def->mac[3], def->mac[4], def->mac[5]);

        strcpy(class, "vif");

D
Daniel P. Berrange 已提交
4030
        xenUnifiedLock(priv);
4031 4032
        xref = xenStoreDomainGetNetworkID(domain->conn, domain->id,
                                          mac);
D
Daniel P. Berrange 已提交
4033
        xenUnifiedUnlock(priv);
4034 4035 4036
        if (xref == NULL)
            return -1;

C
Chris Lalancette 已提交
4037
        tmp = virStrcpy(ref, xref, ref_len);
4038
        VIR_FREE(xref);
C
Chris Lalancette 已提交
4039 4040
        if (tmp == NULL)
            return -1;
4041 4042 4043
    } 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) {
4044 4045 4046 4047 4048 4049 4050 4051
        char *bdf;
        virDomainHostdevDefPtr def = dev->data.hostdev;

        if (virAsprintf(&bdf, "%04x:%02x:%02x.%0x",
                        def->source.subsys.u.pci.domain,
                        def->source.subsys.u.pci.bus,
                        def->source.subsys.u.pci.slot,
                        def->source.subsys.u.pci.function) < 0) {
4052
            virReportOOMError();
4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068
            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;
4069
    } else {
4070
        virXendError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
4071
                     "%s", _("hotplug of device type not supported"));
4072 4073 4074 4075 4076
        return -1;
    }

    return 0;
}