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

12
#include <config.h>
13

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

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

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

54 55
#define VIR_FROM_THIS VIR_FROM_XEND

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

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

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

69 70 71 72 73 74 75 76 77
/**
 * 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
78
do_connect(virConnectPtr xend)
79 80
{
    int s;
81
    int no_slow_start = 1;
82
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) xend->privateData;
83

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

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

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

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

    return s;
}

/**
 * wr_sync:
115
 * @xend: the xend connection object
116 117 118 119 120 121 122 123 124 125
 * @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
126
wr_sync(int fd, void *buffer, size_t size, int do_read)
127 128 129 130 131 132 133
{
    size_t offset = 0;

    while (offset < size) {
        ssize_t len;

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

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

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

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

158
            return -1;
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
        }

        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
178
sread(int fd, void *buffer, size_t size)
179
{
180
    return wr_sync(fd, buffer, size, 1);
181 182 183 184 185 186 187 188 189 190 191 192 193
}

/**
 * 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
194
swrite(int fd, const void *buffer, size_t size)
195
{
196
    return wr_sync(fd, (void *) buffer, size, 0);
197 198 199 200 201 202 203 204 205 206 207 208
}

/**
 * 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
209
swrites(int fd, const char *string)
210
{
211
    return swrite(fd, string, strlen(string));
212 213
}

214 215 216 217 218 219 220 221 222 223 224
/**
 * 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
225
sreads(int fd, char *buffer, size_t n_buffer)
226 227 228 229
{
    size_t offset;

    if (n_buffer < 1)
230
        return -1;
231 232 233 234

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

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

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

    return offset;
}
250 251 252 253

static int
istartswith(const char *haystack, const char *needle)
{
254
    return STRCASEEQLEN(haystack, needle, strlen(needle));
255 256
}

257

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

278 279 280 281 282 283
    if (VIR_ALLOC_N(buffer, buffer_size) < 0) {
        virReportOOMError();
        return -1;
    }

    while (sreads(fd, buffer, buffer_size) > 0) {
284
        if (STREQ(buffer, "\r\n"))
285
            break;
286 287 288 289 290

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

293 294
    VIR_FREE(buffer);

295
    if (content_length > 0) {
296 297
        ssize_t ret;

J
Jim Fehlig 已提交
298
        if (content_length > XEND_RCV_BUF_MAX_LEN) {
299 300 301 302 303
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Xend returned HTTP Content-Length of %d, "
                             "which exceeds maximum of %d"),
                           content_length,
                           XEND_RCV_BUF_MAX_LEN);
J
Jim Fehlig 已提交
304 305 306 307 308 309
            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. */
310
        if (VIR_ALLOC_N(*content, content_length + 1) < 0) {
311 312 313
            virReportOOMError();
            return -1;
        }
314

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

    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 已提交
333
static int ATTRIBUTE_NONNULL(3)
334
xend_get(virConnectPtr xend, const char *path,
335
         char **content)
336 337 338 339 340 341 342
{
    int ret;
    int s = do_connect(xend);

    if (s == -1)
        return s;

343 344 345
    swrites(s, "GET ");
    swrites(s, path);
    swrites(s, " HTTP/1.1\r\n");
346

347
    swrites(s,
348 349 350 351
            "Host: localhost:8000\r\n"
            "Accept-Encoding: identity\r\n"
            "Content-Type: application/x-www-form-urlencoded\r\n" "\r\n");

352
    ret = xend_req(s, content);
353
    VIR_FORCE_CLOSE(s);
354

355 356 357 358
    if (ret < 0)
        return ret;

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

364 365 366 367 368 369 370
    return ret;
}

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

    if (s == -1)
        return s;

389 390 391
    swrites(s, "POST ");
    swrites(s, path);
    swrites(s, " HTTP/1.1\r\n");
392

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

403
    ret = xend_req(s, &err_buf);
404
    VIR_FORCE_CLOSE(s);
405

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

424
    VIR_FREE(err_buf);
425 426
    return ret;
}
427

428 429 430 431 432 433 434 435 436 437

/**
 * 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
438
http2unix(int ret)
439 440 441 442 443 444 445 446 447 448 449
{
    switch (ret) {
        case -1:
            break;
        case 200:
        case 201:
        case 202:
            return 0;
        case 404:
            errno = ESRCH;
            break;
450 451 452
        case 500:
            errno = EIO;
            break;
453
        default:
454 455
            virReportError(VIR_ERR_HTTP_ERROR,
                           _("Unexpected HTTP error code %d"), ret);
456 457 458 459 460 461 462
            errno = EINVAL;
            break;
    }
    return -1;
}

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

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

P
Philipp Hahn 已提交
484 485 486
        virBufferURIEncodeString(&buf, k);
        virBufferAddChar(&buf, '=');
        virBufferURIEncodeString(&buf, v);
487 488 489
        k = va_arg(ap, const char *);

        if (k)
490
            virBufferAddChar(&buf, '&');
491 492
    }

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

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

    return ret;
505 506
}

507

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

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

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

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

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

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

    if (buffer == NULL)
        goto cleanup;

    res = string2sexpr(buffer);
573

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

/**
 * 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
 *
587
 * Returns a -1 on error, 0 on success
588
 */
589
static int
590
sexpr_uuid(unsigned char *ptr, const struct sexpr *node, const char *path)
591 592
{
    const char *r = sexpr_node(node, path);
593 594 595
    if (!r)
        return -1;
    return virUUIDParse(r, ptr);
596 597 598 599 600
}

/* PUBLIC FUNCTIONS */

/**
601
 * xenDaemonOpen_unix:
602
 * @conn: an existing virtual connection block
603 604 605 606 607
 * @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
 *
608
 * Returns 0 in case of success, -1 in case of error.
609
 */
610
int
611
xenDaemonOpen_unix(virConnectPtr conn, const char *path)
612 613
{
    struct sockaddr_un *addr;
614
    xenUnifiedPrivatePtr priv;
615

616
    if ((conn == NULL) || (path == NULL))
617
        return -1;
618

619
    priv = (xenUnifiedPrivatePtr) conn->privateData;
620 621
    memset(&priv->addr, 0, sizeof(priv->addr));
    priv->addrfamily = AF_UNIX;
622 623 624 625 626
    /*
     * This must be zero on Solaris at least for AF_UNIX (which should
     * really be PF_UNIX, but doesn't matter).
     */
    priv->addrprotocol = 0;
627 628 629
    priv->addrlen = sizeof(struct sockaddr_un);

    addr = (struct sockaddr_un *)&priv->addr;
630 631
    addr->sun_family = AF_UNIX;
    memset(addr->sun_path, 0, sizeof(addr->sun_path));
C
Chris Lalancette 已提交
632 633
    if (virStrcpyStatic(addr->sun_path, path) == NULL)
        return -1;
634

635
    return 0;
636 637
}

638

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

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

662 663
    priv = (xenUnifiedPrivatePtr) conn->privateData;

664 665 666
    priv->addrlen = 0;
    memset(&priv->addr, 0, sizeof(priv->addr));

667
    /* http://people.redhat.com/drepper/userapi-ipv6.html */
668
    memset (&hints, 0, sizeof(hints));
669 670 671 672 673
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_flags = AI_ADDRCONFIG;

    ret = getaddrinfo (host, port, &hints, &res);
    if (ret != 0) {
674 675 676
        virReportError(VIR_ERR_UNKNOWN_HOST,
                       _("unable to resolve hostname '%s': %s"),
                       host, gai_strerror (ret));
677 678 679 680 681 682 683
        return -1;
    }

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

684
        sock = socket(r->ai_family, SOCK_STREAM, r->ai_protocol);
685 686 687
        if (sock == -1) {
            saved_errno = errno;
            continue;
688
        }
689

690
        if (connect(sock, r->ai_addr, r->ai_addrlen) == -1) {
691
            saved_errno = errno;
692
            VIR_FORCE_CLOSE(sock);
693 694 695 696 697 698 699 700 701
            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);
702
        VIR_FORCE_CLOSE(sock);
703
        break;
704 705
    }

706
    freeaddrinfo(res);
707

708
    if (!priv->addrlen) {
709 710
        /* Don't raise error when unprivileged, since proxy takes over */
        if (xenHavePrivilege())
711
            virReportSystemError(saved_errno,
712 713
                                 _("unable to connect to '%s:%s'"),
                                 host, port);
714 715
        return -1;
    }
716

717
    return 0;
718 719
}

720

721 722
/**
 * xend_wait_for_devices:
P
Philipp Hahn 已提交
723
 * @xend: pointer to the Xen Daemon block
724 725 726 727 728 729 730 731
 * @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
732
xend_wait_for_devices(virConnectPtr xend, const char *name)
733 734 735 736
{
    return xend_op(xend, name, "op", "wait_for_devices", NULL);
}

737

738
/**
739
 * xenDaemonListDomainsOld:
P
Philipp Hahn 已提交
740
 * @xend: pointer to the Xen Daemon block
741 742 743 744 745 746
 *
 * 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.
 */
747
char **
748
xenDaemonListDomainsOld(virConnectPtr xend)
749 750 751 752 753 754 755 756 757 758 759
{
    struct sexpr *root = NULL;
    char **ret = NULL;
    int count = 0;
    int i;
    struct sexpr *_for_i, *node;

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

760 761
    for (_for_i = root, node = root->u.s.car; _for_i->kind == SEXPR_CONS;
         _for_i = _for_i->u.s.cdr, node = _for_i->u.s.car) {
762 763 764 765 766
        if (node->kind != SEXPR_VALUE)
            continue;
        count++;
    }

E
Eric Blake 已提交
767 768
    if (VIR_ALLOC_N(ret, count + 1) < 0) {
        virReportOOMError();
769
        goto error;
E
Eric Blake 已提交
770
    }
771 772

    i = 0;
773 774
    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) {
775 776
        if (node->kind != SEXPR_VALUE)
            continue;
E
Eric Blake 已提交
777 778 779
        ret[i] = strdup(node->u.value);
        if (!ret[i])
            goto no_memory;
780 781 782 783 784 785 786 787
        i++;
    }

    ret[i] = NULL;

  error:
    sexpr_free(root);
    return ret;
E
Eric Blake 已提交
788 789 790 791 792 793

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

796

797
/**
798
 * xenDaemonDomainCreateXML:
799 800 801
 * @xend: A xend instance
 * @sexpr: An S-Expr description of the domain.
 *
P
Philipp Hahn 已提交
802
 * This method will create a domain based on the passed in description.  The
803
 * domain will be paused after creation and must be unpaused with
804
 * xenDaemonResumeDomain() to begin execution.
805 806 807 808 809 810 811
 * This method may be deprecated once switching to XML-RPC based communcations
 * with xend.
 *
 * Returns 0 for success, -1 (with errno) on error
 */

int
812
xenDaemonDomainCreateXML(virConnectPtr xend, const char *sexpr)
813
{
P
Philipp Hahn 已提交
814
    int ret;
815

P
Philipp Hahn 已提交
816
    ret = xend_op(xend, "", "op", "create", "config", sexpr, NULL);
817 818 819

    return ret;
}
820

821

822
/**
823
 * xenDaemonDomainLookupByName_ids:
824
 * @xend: A xend instance
825 826
 * @domname: The name of the domain
 * @uuid: return value for the UUID if not NULL
827 828 829 830 831 832
 *
 * This method looks up the id of a domain
 *
 * Returns the id on success; -1 (with errno) on error
 */
int
833
xenDaemonDomainLookupByName_ids(virConnectPtr xend, const char *domname,
834
                                unsigned char *uuid)
835 836 837 838 839
{
    struct sexpr *root;
    const char *value;
    int ret = -1;

840
    if (uuid != NULL)
841
        memset(uuid, 0, VIR_UUID_BUFLEN);
842 843 844 845 846
    root = sexpr_get(xend, "/xend/domain/%s?detail=1", domname);
    if (root == NULL)
        goto error;

    value = sexpr_node(root, "domain/domid");
847
    if (value == NULL) {
848 849
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("domain information incomplete, missing domid"));
850
        goto error;
851
    }
852
    ret = strtol(value, NULL, 0);
853
    if ((ret == 0) && (value[0] != '0')) {
854 855
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("domain information incorrect domid not numeric"));
856
        ret = -1;
857
    } else if (uuid != NULL) {
858
        if (sexpr_uuid(uuid, root, "domain/uuid") < 0) {
859 860
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("domain information incomplete, missing uuid"));
861
        }
862
    }
863

864
  error:
865
    sexpr_free(root);
866
    return ret;
867 868
}

869 870 871 872 873 874 875 876 877 878 879 880 881 882

/**
 * 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,
883 884 885
                          int id,
                          char **domname,
                          unsigned char *uuid)
886 887 888 889
{
    const char *name = NULL;
    struct sexpr *root;

890
    memset(uuid, 0, VIR_UUID_BUFLEN);
891 892 893 894 895 896 897

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

    name = sexpr_node(root, "domain/name");
    if (name == NULL) {
898 899
      virReportError(VIR_ERR_INTERNAL_ERROR,
                     "%s", _("domain information incomplete, missing name"));
900 901
      goto error;
    }
902
    if (domname) {
903
      *domname = strdup(name);
904
      if (*domname == NULL) {
905
          virReportOOMError();
906 907 908
          goto error;
      }
    }
909

910
    if (sexpr_uuid(uuid, root, "domain/uuid") < 0) {
911 912
      virReportError(VIR_ERR_INTERNAL_ERROR,
                     "%s", _("domain information incomplete, missing uuid"));
913 914 915 916
      goto error;
    }

    sexpr_free(root);
917
    return 0;
918 919 920

error:
    sexpr_free(root);
921 922
    if (domname)
        VIR_FREE(*domname);
923
    return -1;
924 925
}

926

927 928
static int
xend_detect_config_version(virConnectPtr conn) {
929 930
    struct sexpr *root;
    const char *value;
931
    xenUnifiedPrivatePtr priv;
932 933

    if (!VIR_IS_CONNECT(conn)) {
934
        virReportError(VIR_ERR_INVALID_CONN, __FUNCTION__);
935
        return -1;
936 937
    }

938 939
    priv = (xenUnifiedPrivatePtr) conn->privateData;

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

944
    value = sexpr_node(root, "node/xend_config_format");
945

946
    if (value) {
947
        priv->xendConfigVersion = strtol(value, NULL, 10);
948 949 950
    }  else {
        /* Xen prior to 3.0.3 did not have the xend_config_format
           field, and is implicitly version 1. */
951
        priv->xendConfigVersion = XEND_CONFIG_VERSION_3_0_2;
952
    }
953
    sexpr_free(root);
954
    return 0;
955 956
}

D
Daniel Veillard 已提交
957

958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
/**
 * 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;
986 987 988 989 990 991 992 993
    } else if (domain->id < 0 || sexpr_int(root, "domain/status") == 0) {
        /* As far as I can see the domain->id is a bad sign for checking
         * inactive domains as this is inaccurate after the domain has
         * been running once. However domain/status from xend seems to
         * be always present and 0 for inactive domains.
         * (keeping the check for id < 0 to be extra safe about backward
         * compatibility)
         */
994 995 996 997 998 999
        state = VIR_DOMAIN_SHUTOFF;
    }

    return state;
}

D
Daniel Veillard 已提交
1000
/**
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
 * 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
1011 1012
sexpr_to_xend_domain_info(virDomainPtr domain, const struct sexpr *root,
                          virDomainInfoPtr info)
1013
{
1014
    int vcpus;
1015 1016

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

1019
    info->state = sexpr_to_xend_domain_state(domain, root);
1020 1021 1022
    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;
1023

1024
    vcpus = sexpr_int(root, "domain/vcpus");
1025
    info->nrVirtCpu = count_one_bits_l(sexpr_u64(root, "domain/vcpu_avail"));
1026 1027 1028
    if (!info->nrVirtCpu || vcpus < info->nrVirtCpu)
        info->nrVirtCpu = vcpus;

1029
    return 0;
1030 1031
}

1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
/**
 * 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
1043
sexpr_to_xend_node_info(const struct sexpr *root, virNodeInfoPtr info)
1044 1045 1046 1047 1048
{
    const char *machine;


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

    machine = sexpr_node(root, "node/machine");
1052
    if (machine == NULL) {
1053
        info->model[0] = 0;
1054
    } else {
1055
        snprintf(&info->model[0], sizeof(info->model) - 1, "%s", machine);
1056
        info->model[sizeof(info->model) - 1] = 0;
1057 1058 1059 1060 1061 1062 1063
    }
    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");
1064 1065 1066
    info->cores = sexpr_int(root, "node/cores_per_socket");
    info->threads = sexpr_int(root, "node/threads_per_core");

1067 1068 1069 1070 1071 1072 1073
    /* 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");
1074 1075
        int procs = info->nodes * info->cores * info->threads;
        if (procs == 0) /* Sanity check in case of Xen bugs in futures..*/
1076
            return -1;
1077
        info->sockets = nr_cpus / procs;
1078
    }
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092

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

1093
    return 0;
1094 1095
}

1096

1097
/**
1098
 * sexpr_to_xend_topology
1099
 * @root: an S-Expression describing a node
1100
 * @caps: capability info
1101
 *
1102 1103
 * Internal routine populating capability info with
 * NUMA node mapping details
1104
 *
1105 1106
 * Does nothing when the system doesn't support NUMA (not an error).
 *
1107 1108
 * Returns 0 in case of success, -1 in case of error
 */
1109
static int
1110
sexpr_to_xend_topology(const struct sexpr *root,
1111
                       virCapsPtr caps)
1112 1113
{
    const char *nodeToCpu;
1114 1115 1116 1117
    const char *cur;
    int *cpuNums = NULL;
    int cell, cpu, nb_cpus;
    int n = 0;
1118 1119 1120
    int numCpus;

    nodeToCpu = sexpr_node(root, "node/node_to_cpu");
1121 1122
    if (nodeToCpu == NULL)
        return 0;               /* no NUMA support */
1123 1124 1125

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

1126

1127
    if (VIR_ALLOC_N(cpuNums, numCpus) < 0)
1128 1129 1130 1131
        goto memory_error;

    cur = nodeToCpu;
    while (*cur != 0) {
1132
        virBitmapPtr cpuset = NULL;
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
        /*
         * 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 已提交
1143
        virSkipSpacesAndBackslash(&cur);
1144 1145 1146
        if (*cur != ':')
            goto parse_error;
        cur++;
E
Eric Blake 已提交
1147
        virSkipSpacesAndBackslash(&cur);
1148
        if (STRPREFIX(cur, "no cpus")) {
1149
            nb_cpus = 0;
1150 1151
            if (!(cpuset = virBitmapNew(numCpus)))
                goto memory_error;
1152
        } else {
1153
            nb_cpus = virBitmapParse(cur, 'n', &cpuset, numCpus);
1154 1155 1156 1157
            if (nb_cpus < 0)
                goto error;
        }

1158 1159 1160 1161 1162
        for (n = 0, cpu = 0; cpu < numCpus; cpu++) {
            bool used;

            ignore_value(virBitmapGetBit(cpuset, cpu, &used));
            if (used)
1163
                cpuNums[n++] = cpu;
1164
        }
1165
        virBitmapFree(cpuset);
1166

1167
        if (virCapabilitiesAddHostNUMACell(caps, cell, nb_cpus, cpuNums) < 0)
1168 1169
            goto memory_error;
    }
1170
    VIR_FREE(cpuNums);
1171
    return 0;
1172

1173
  parse_error:
1174
    virReportError(VIR_ERR_XEN_CALL, "%s", _("topology syntax error"));
1175
  error:
1176
    VIR_FREE(cpuNums);
1177
    return -1;
1178

1179
  memory_error:
1180
    VIR_FREE(cpuNums);
1181
    virReportOOMError();
1182
    return -1;
1183 1184
}

1185

1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
/**
 * 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
1196
sexpr_to_domain(virConnectPtr conn, const struct sexpr *root)
1197
{
1198
    virDomainPtr ret = NULL;
1199
    unsigned char uuid[VIR_UUID_BUFLEN];
1200
    const char *name;
1201
    const char *tmp;
1202
    xenUnifiedPrivatePtr priv;
1203 1204

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

1207 1208
    priv = (xenUnifiedPrivatePtr) conn->privateData;

1209
    if (sexpr_uuid(uuid, root, "domain/uuid") < 0)
1210 1211 1212 1213 1214
        goto error;
    name = sexpr_node(root, "domain/name");
    if (name == NULL)
        goto error;

1215
    ret = virGetDomain(conn, name, uuid);
1216 1217
    if (ret == NULL) return NULL;

1218 1219 1220 1221
    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
     */
1222
    if (!tmp && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1223 1224
        goto error;

1225
    if (tmp)
1226
        ret->id = sexpr_int(root, "domain/domid");
1227
    else
1228
        ret->id = -1; /* An inactive domain */
1229

1230
    return ret;
1231

1232
error:
1233 1234
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   "%s", _("failed to parse Xend domain information"));
1235
    virObjectUnref(ret);
1236
    return NULL;
1237
}
1238

1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260

/*****************************************************************
 ******
 ******
 ******
 ******
             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.
 */
1261
virDrvOpenStatus
1262 1263
xenDaemonOpen(virConnectPtr conn,
              virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
1264
              unsigned int flags)
1265
{
1266 1267
    char *port = NULL;
    int ret = VIR_DRV_OPEN_ERROR;
1268

E
Eric Blake 已提交
1269 1270
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

1271 1272
    /* Switch on the scheme, which we expect to be NULL (file),
     * "http" or "xen".
1273
     */
1274
    if (conn->uri->scheme == NULL) {
1275
        /* It should be a file access */
1276
        if (conn->uri->path == NULL) {
1277
            virReportError(VIR_ERR_NO_CONNECT, __FUNCTION__);
1278 1279
            goto failed;
        }
1280 1281
        if (xenDaemonOpen_unix(conn, conn->uri->path) < 0 ||
            xend_detect_config_version(conn) == -1)
1282 1283
            goto failed;
    }
1284
    else if (STRCASEEQ(conn->uri->scheme, "xen")) {
1285
        /*
1286 1287
         * try first to open the unix socket
         */
1288 1289
        if (xenDaemonOpen_unix(conn, "/var/lib/xend/xend-socket") == 0 &&
            xend_detect_config_version(conn) != -1)
1290 1291 1292 1293 1294
            goto done;

        /*
         * try though http on port 8000
         */
1295 1296
        if (xenDaemonOpen_tcp(conn, "localhost", "8000") < 0 ||
            xend_detect_config_version(conn) == -1)
1297
            goto failed;
1298
    } else if (STRCASEEQ(conn->uri->scheme, "http")) {
1299
        if (conn->uri->port &&
1300
            virAsprintf(&port, "%d", conn->uri->port) == -1) {
1301
            virReportOOMError();
1302
            goto failed;
1303
        }
1304

1305 1306 1307
        if (xenDaemonOpen_tcp(conn,
                              conn->uri->server ? conn->uri->server : "localhost",
                              port ? port : "8000") < 0 ||
1308
            xend_detect_config_version(conn) == -1)
1309
            goto failed;
1310
    } else {
1311
        virReportError(VIR_ERR_NO_CONNECT, __FUNCTION__);
1312
        goto failed;
1313
    }
1314

1315
 done:
1316
    ret = VIR_DRV_OPEN_SUCCESS;
1317

1318
failed:
1319 1320
    VIR_FREE(port);
    return ret;
1321
}
1322

1323 1324 1325 1326 1327 1328 1329 1330 1331

/**
 * 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.
 *
1332
 * Returns 0 in case of success, -1 in case of error
1333 1334 1335 1336
 */
int
xenDaemonClose(virConnectPtr conn ATTRIBUTE_UNUSED)
{
1337
    return 0;
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
}

/**
 * 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)) {
1353
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1354
        return -1;
1355
    }
1356 1357

    if (domain->id < 0) {
1358 1359
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1360
        return -1;
1361 1362
    }

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

/**
 * xenDaemonDomainResume:
P
Philipp Hahn 已提交
1368
 * @xend: pointer to the Xen Daemon block
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
 * @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)) {
1379
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1380
        return -1;
1381
    }
1382 1383

    if (domain->id < 0) {
1384 1385
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1386
        return -1;
1387 1388
    }

1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
    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)) {
1406
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1407
        return -1;
1408
    }
1409 1410

    if (domain->id < 0) {
1411 1412
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1413
        return -1;
1414 1415
    }

1416
    return xend_op(domain->conn, domain->name, "op", "shutdown", "reason", "poweroff", NULL);
1417 1418
}

1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
/**
 * 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 已提交
1431
xenDaemonDomainReboot(virDomainPtr domain, unsigned int flags)
1432
{
E
Eric Blake 已提交
1433 1434
    virCheckFlags(0, -1);

1435
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1436
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1437
        return -1;
1438
    }
1439 1440

    if (domain->id < 0) {
1441 1442
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1443
        return -1;
1444 1445
    }

1446 1447 1448
    return xend_op(domain->conn, domain->name, "op", "shutdown", "reason", "reboot", NULL);
}

1449
/**
1450
 * xenDaemonDomainDestroyFlags:
1451
 * @domain: pointer to the Domain block
1452
 * @flags: an OR'ed set of virDomainDestroyFlagsValues
1453 1454 1455 1456 1457 1458 1459 1460
 *
 * 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).
 *
1461 1462 1463
 * Calling this function with no @flags set (equal to zero)
 * is equivalent to calling xenDaemonDomainDestroy.
 *
1464 1465 1466
 * Returns 0 in case of success, -1 (with errno) in case of error.
 */
int
1467 1468
xenDaemonDomainDestroyFlags(virDomainPtr domain,
                            unsigned int flags)
1469
{
1470 1471
    virCheckFlags(0, -1);

1472
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1473
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1474
        return -1;
1475
    }
1476 1477

    if (domain->id < 0) {
1478 1479
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1480
        return -1;
1481 1482
    }

1483 1484 1485
    return xend_op(domain->conn, domain->name, "op", "destroy", NULL);
}

1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
/**
 * 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)) {
1503
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1504
        return NULL;
1505 1506 1507 1508
    }

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

1509
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1510
        return NULL;
1511 1512 1513 1514

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

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

1523
    if (type == NULL)
1524
        virReportOOMError();
1525

1526 1527
    sexpr_free(root);

1528
    return type;
1529 1530
}

1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
/**
 * 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) ||
1548
        (filename == NULL)) {
1549
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1550
        return -1;
1551
    }
1552

1553
    if (domain->id < 0) {
1554 1555
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1556
        return -1;
1557
    }
1558 1559 1560

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

1564 1565 1566
    return xend_op(domain->conn, domain->name, "op", "save", "file", filename, NULL);
}

D
Daniel Veillard 已提交
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
/**
 * 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.
 */
1579
int
D
Daniel Veillard 已提交
1580
xenDaemonDomainCoreDump(virDomainPtr domain, const char *filename,
E
Eric Blake 已提交
1581
                        unsigned int flags)
D
Daniel Veillard 已提交
1582
{
E
Eric Blake 已提交
1583 1584
    virCheckFlags(VIR_DUMP_LIVE | VIR_DUMP_CRASH, -1);

D
Daniel Veillard 已提交
1585 1586
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL) ||
        (filename == NULL)) {
1587
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1588
        return -1;
D
Daniel Veillard 已提交
1589
    }
1590 1591

    if (domain->id < 0) {
1592 1593
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain %s isn't running."), domain->name);
1594
        return -1;
1595 1596
    }

1597
    return xend_op(domain->conn, domain->name,
J
Jiri Denemark 已提交
1598
                   "op", "dump", "file", filename,
P
Paolo Bonzini 已提交
1599
                   "live", (flags & VIR_DUMP_LIVE ? "1" : "0"),
1600 1601
                   "crash", (flags & VIR_DUMP_CRASH ? "1" : "0"),
                   NULL);
D
Daniel Veillard 已提交
1602 1603
}

1604 1605
/**
 * xenDaemonDomainRestore:
P
Philipp Hahn 已提交
1606
 * @conn: pointer to the Xen Daemon block
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
 * @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 ... */
1620
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1621
        return -1;
1622 1623 1624
    }
    return xend_op(conn, "", "op", "restore", "file", filename, NULL);
}
1625

1626

1627 1628 1629 1630 1631 1632 1633 1634
/**
 * 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.
 */
1635
unsigned long long
1636 1637
xenDaemonDomainGetMaxMemory(virDomainPtr domain)
{
1638
    unsigned long long ret = 0;
1639
    struct sexpr *root;
1640
    xenUnifiedPrivatePtr priv;
1641 1642

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1643
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1644
        return 0;
1645
    }
1646 1647 1648

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

1649
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1650
        return 0;
1651 1652 1653 1654

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

1657
    ret = sexpr_u64(root, "domain/memory") << 10;
1658 1659
    sexpr_free(root);

1660
    return ret;
1661 1662
}

1663

1664 1665 1666 1667 1668 1669 1670
/**
 * 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
1671
 * on its own.
1672 1673 1674 1675 1676 1677 1678
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
xenDaemonDomainSetMaxMemory(virDomainPtr domain, unsigned long memory)
{
    char buf[1024];
1679
    xenUnifiedPrivatePtr priv;
1680 1681

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1682
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1683
        return -1;
1684
    }
1685 1686 1687

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

1688
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1689
        return -1;
1690

1691
    snprintf(buf, sizeof(buf), "%lu", VIR_DIV_UP(memory, 1024));
1692 1693 1694 1695
    return xend_op(domain->conn, domain->name, "op", "maxmem_set", "memory",
                   buf, NULL);
}

1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
/**
 * 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];
1716
    xenUnifiedPrivatePtr priv;
1717 1718

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1719
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1720
        return -1;
1721
    }
1722 1723 1724

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

1725
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1726
        return -1;
1727

1728
    snprintf(buf, sizeof(buf), "%lu", VIR_DIV_UP(memory, 1024));
1729 1730 1731 1732
    return xend_op(domain->conn, domain->name, "op", "mem_target_set",
                   "target", buf, NULL);
}

1733

1734 1735 1736 1737 1738
virDomainDefPtr
xenDaemonDomainFetch(virConnectPtr conn,
                     int domid,
                     const char *name,
                     const char *cpus)
1739 1740
{
    struct sexpr *root;
1741
    xenUnifiedPrivatePtr priv;
1742
    virDomainDefPtr def;
1743 1744 1745
    int id;
    char * tty;
    int vncport;
1746

1747 1748 1749 1750
    if (name)
        root = sexpr_get(conn, "/xend/domain/%s?detail=1", name);
    else
        root = sexpr_get(conn, "/xend/domain/%d?detail=1", domid);
1751
    if (root == NULL)
1752
        return NULL;
1753

1754 1755
    priv = (xenUnifiedPrivatePtr) conn->privateData;

1756 1757
    id = xenGetDomIdFromSxpr(root, priv->xendConfigVersion);
    xenUnifiedLock(priv);
1758 1759 1760 1761
    if (sexpr_lookup(root, "domain/image/hvm"))
        tty = xenStoreDomainGetSerialConsolePath(conn, id);
    else
        tty = xenStoreDomainGetConsolePath(conn, id);
1762 1763
    vncport = xenStoreDomainGetVNCPort(conn, id);
    xenUnifiedUnlock(priv);
M
Markus Groß 已提交
1764 1765 1766 1767 1768
    if (!(def = xenParseSxpr(root,
                             priv->xendConfigVersion,
                             cpus,
                             tty,
                             vncport)))
1769 1770 1771
        goto cleanup;

cleanup:
1772 1773
    sexpr_free(root);

1774
    return def;
1775 1776 1777
}


1778
/**
1779
 * xenDaemonDomainGetXMLDesc:
D
Daniel Veillard 已提交
1780
 * @domain: a domain object
1781 1782
 * @flags: potential dump flags
 * @cpus: list of cpu the domain is pinned to.
D
Daniel Veillard 已提交
1783
 *
1784
 * Provide an XML description of the domain.
D
Daniel Veillard 已提交
1785 1786 1787 1788 1789
 *
 * 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 已提交
1790 1791
xenDaemonDomainGetXMLDesc(virDomainPtr domain, unsigned int flags,
                          const char *cpus)
1792
{
1793
    xenUnifiedPrivatePtr priv;
1794 1795
    virDomainDefPtr def;
    char *xml;
1796

E
Eric Blake 已提交
1797 1798
    /* Flags checked by virDomainDefFormat */

1799
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
1800
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1801
        return NULL;
1802
    }
1803 1804
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;

1805
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
1806
        /* fall-through to the next driver to handle */
1807
        return NULL;
1808 1809
    }

1810 1811 1812 1813
    if (!(def = xenDaemonDomainFetch(domain->conn,
                                     domain->id,
                                     domain->name,
                                     cpus)))
1814
        return NULL;
1815

1816
    xml = virDomainDefFormat(def, flags);
1817 1818 1819 1820

    virDomainDefFree(def);

    return xml;
D
Daniel Veillard 已提交
1821
}
1822

1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838

/**
 * 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;
1839
    xenUnifiedPrivatePtr priv;
1840

1841 1842
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL) ||
        (info == NULL)) {
1843
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1844
        return -1;
1845
    }
1846 1847 1848

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

1849
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1850
        return -1;
1851 1852 1853

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

1856
    ret = sexpr_to_xend_domain_info(domain, root, info);
1857
    sexpr_free(root);
1858
    return ret;
1859
}
1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876


/**
 * 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 已提交
1877
                        unsigned int flags)
1878 1879 1880 1881
{
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
    struct sexpr *root;

E
Eric Blake 已提交
1882 1883
    virCheckFlags(0, -1);

1884
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
        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;
}
1898

1899

1900
/**
1901
 * xenDaemonLookupByName:
1902 1903 1904 1905 1906 1907 1908 1909 1910 1911
 * @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
1912
xenDaemonLookupByName(virConnectPtr conn, const char *domname)
1913 1914 1915 1916 1917
{
    struct sexpr *root;
    virDomainPtr ret = NULL;

    if ((conn == NULL) || (domname == NULL)) {
1918
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1919
        return NULL;
1920
    }
1921

1922 1923 1924 1925 1926 1927 1928 1929
    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);
1930
    return ret;
1931
}
1932

1933

1934 1935 1936 1937
/**
 * xenDaemonNodeGetInfo:
 * @conn: pointer to the Xen Daemon block
 * @info: pointer to a virNodeInfo structure allocated by the user
1938
 *
1939 1940 1941 1942
 * Extract hardware information about the node.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
1943
int
1944 1945 1946 1947 1948
xenDaemonNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info) {
    int ret = -1;
    struct sexpr *root;

    if (!VIR_IS_CONNECT(conn)) {
1949
        virReportError(VIR_ERR_INVALID_CONN, __FUNCTION__);
1950
        return -1;
1951 1952
    }
    if (info == NULL) {
1953
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1954
        return -1;
1955 1956 1957 1958
    }

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

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

1966 1967 1968
/**
 * xenDaemonNodeGetTopology:
 * @conn: pointer to the Xen Daemon block
1969
 * @caps: capabilities info
1970 1971 1972 1973 1974 1975
 *
 * This method retrieves a node's topology information.
 *
 * Returns -1 in case of error, 0 otherwise.
 */
int
1976 1977
xenDaemonNodeGetTopology(virConnectPtr conn,
                         virCapsPtr caps) {
1978 1979 1980 1981
    int ret = -1;
    struct sexpr *root;

    if (!VIR_IS_CONNECT(conn)) {
1982
        virReportError(VIR_ERR_INVALID_CONN, __FUNCTION__);
1983
        return -1;
1984 1985
    }

1986
    if (caps == NULL) {
1987
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
1988
        return -1;
1989
    }
1990 1991 1992

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

1996
    ret = sexpr_to_xend_topology(root, caps);
1997
    sexpr_free(root);
1998
    return ret;
1999 2000
}

2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011
/**
 * 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
 */
2012
int
2013 2014
xenDaemonGetVersion(virConnectPtr conn, unsigned long *hvVer)
{
2015
    struct sexpr *root;
2016
    int major, minor;
2017
    unsigned long version;
2018

2019
    if (!VIR_IS_CONNECT(conn)) {
2020
        virReportError(VIR_ERR_INVALID_CONN, __FUNCTION__);
2021
        return -1;
2022 2023
    }
    if (hvVer == NULL) {
2024
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2025
        return -1;
2026
    }
2027 2028
    root = sexpr_get(conn, "/xend/node/");
    if (root == NULL)
2029
        return -1;
2030 2031 2032 2033

    major = sexpr_int(root, "node/xen_major");
    minor = sexpr_int(root, "node/xen_minor");
    sexpr_free(root);
2034
    version = major * 1000000 + minor * 1000;
2035
    *hvVer = version;
2036
    return 0;
2037
}
2038

2039

2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051
/**
 * 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
 */
2052
int
2053 2054 2055 2056 2057 2058 2059
xenDaemonListDomains(virConnectPtr conn, int *ids, int maxids)
{
    struct sexpr *root = NULL;
    int ret = -1;
    struct sexpr *_for_i, *node;
    long id;

2060
    if (maxids == 0)
2061
        return 0;
2062 2063

    if ((ids == NULL) || (maxids < 0))
2064 2065 2066 2067 2068 2069 2070
        goto error;
    root = sexpr_get(conn, "/xend/domain");
    if (root == NULL)
        goto error;

    ret = 0;

2071 2072
    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) {
2073 2074
        if (node->kind != SEXPR_VALUE)
            continue;
2075
        id = xenDaemonDomainLookupByName_ids(conn, node->u.value, NULL);
2076
        if (id >= 0)
2077 2078 2079
            ids[ret++] = (int) id;
        if (ret >= maxids)
            break;
2080 2081 2082
    }

error:
2083
    sexpr_free(root);
2084
    return ret;
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
}

/**
 * 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
 */
2095
int
2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107
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;

2108 2109
    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) {
2110 2111
        if (node->kind != SEXPR_VALUE)
            continue;
2112
        ret++;
2113 2114 2115
    }

error:
2116
    sexpr_free(root);
2117
    return ret;
2118
}
2119

2120

2121 2122 2123 2124 2125 2126 2127 2128 2129
/**
 * 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
 */
2130
virDomainPtr
2131 2132
xenDaemonLookupByID(virConnectPtr conn, int id) {
    char *name = NULL;
2133
    unsigned char uuid[VIR_UUID_BUFLEN];
2134 2135
    virDomainPtr ret;

2136
    if (xenDaemonDomainLookupByID(conn, id, &name, uuid) < 0) {
2137
        goto error;
2138
    }
2139 2140

    ret = virGetDomain(conn, name, uuid);
2141
    if (ret == NULL) goto error;
2142

2143
    ret->id = id;
2144
    VIR_FREE(name);
2145
    return ret;
2146

2147
 error:
2148
    VIR_FREE(name);
2149
    return NULL;
2150 2151
}

2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170
/**
 * 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 已提交
2171 2172 2173 2174
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

2175 2176
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)
        || (vcpus < 1)) {
2177
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2178
        return -1;
2179 2180 2181 2182
    }

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

2183
    if ((domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) ||
2184 2185 2186 2187 2188 2189
        (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.  */
2190
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
2191
        if (flags & VIR_DOMAIN_VCPU_CONFIG) {
2192 2193 2194
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2195 2196 2197 2198
            return -1;
        }
    } else if (domain->id < 0) {
        if (flags & VIR_DOMAIN_VCPU_LIVE) {
2199 2200
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("domain not running"));
2201 2202 2203 2204 2205
            return -1;
        }
    } else {
        if ((flags & (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) !=
            (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) {
2206 2207 2208
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2209 2210 2211 2212 2213 2214 2215
        }
    }

    /* Unfortunately, xend_op does not validate whether this exceeds
     * the maximum.  */
    flags |= VIR_DOMAIN_VCPU_MAXIMUM;
    if ((max = xenDaemonDomainGetVcpusFlags(domain, flags)) < 0) {
2216 2217
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("could not determine max vcpus for the domain"));
2218 2219 2220
        return -1;
    }
    if (vcpus > max) {
2221 2222 2223
        virReportError(VIR_ERR_INVALID_ARG,
                       _("requested vcpus is greater than max allowable"
                         " vcpus for the domain: %d > %d"), vcpus, max);
2224 2225 2226 2227 2228 2229 2230 2231
        return -1;
    }

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

2232 2233 2234 2235 2236 2237
/**
 * 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
2238
 *
2239
 * Dynamically change the real CPUs which can be allocated to a virtual CPU.
2240 2241 2242 2243 2244
 * 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
2245 2246 2247 2248 2249
 *
 * Returns 0 for success; -1 (with errno) on error
 */
int
xenDaemonDomainPinVcpu(virDomainPtr domain, unsigned int vcpu,
2250
                       unsigned char *cpumap, int maplen)
2251
{
2252
    char buf[VIR_UUID_BUFLEN], mapstr[sizeof(cpumap_t) * 64];
2253
    int i, j, ret;
2254
    xenUnifiedPrivatePtr priv;
2255
    virDomainDefPtr def = NULL;
2256 2257 2258

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)
     || (cpumap == NULL) || (maplen < 1) || (maplen > (int)sizeof(cpumap_t))) {
2259
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2260
        return -1;
2261
    }
2262

2263
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
2264
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
H
Henrik Persson 已提交
2265 2266
        mapstr[0] = '[';
        mapstr[1] = 0;
2267
    } else {
H
Henrik Persson 已提交
2268
        mapstr[0] = 0;
2269 2270
    }

2271 2272 2273
    /* 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)) {
2274
        snprintf(buf, sizeof(buf), "%d,", (8 * i) + j);
2275 2276
        strcat(mapstr, buf);
    }
2277
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
2278 2279 2280 2281
        mapstr[strlen(mapstr) - 1] = ']';
    else
        mapstr[strlen(mapstr) - 1] = 0;

2282
    snprintf(buf, sizeof(buf), "%d", vcpu);
2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293

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

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

    if (ret == 0) {
H
Hu Tao 已提交
2294 2295 2296 2297 2298 2299 2300
        if (!def->cputune.vcpupin) {
            if (VIR_ALLOC(def->cputune.vcpupin) < 0) {
                virReportOOMError();
                goto cleanup;
            }
            def->cputune.nvcpupin = 0;
        }
2301
        if (virDomainVcpuPinAdd(&def->cputune.vcpupin,
H
Hu Tao 已提交
2302 2303 2304 2305
                                &def->cputune.nvcpupin,
                                cpumap,
                                maplen,
                                vcpu) < 0) {
2306 2307
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("failed to add vcpupin xml entry"));
2308
            return -1;
2309 2310 2311 2312 2313 2314 2315 2316
        }
    }

    return ret;

cleanup:
    virDomainDefFree(def);
    return -1;
2317 2318
}

2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336
/**
 * 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 已提交
2337 2338 2339 2340
    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

2341
    if (domain == NULL || domain->conn == NULL || domain->name == NULL) {
2342
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2343 2344 2345 2346 2347 2348 2349 2350
        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.  */
2351
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
2352 2353
        return -2;
    if (domain->id < 0 && (flags & VIR_DOMAIN_VCPU_LIVE)) {
2354 2355
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("domain not active"));
2356 2357 2358 2359 2360 2361 2362 2363 2364
        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)) {
2365
        int vcpus = count_one_bits_l(sexpr_u64(root, "domain/vcpu_avail"));
2366 2367 2368 2369 2370 2371 2372 2373 2374
        if (vcpus)
            ret = MIN(vcpus, ret);
    }
    if (!ret)
        ret = -2;
    sexpr_free(root);
    return ret;
}

2375 2376 2377 2378 2379
/**
 * virDomainGetVcpus:
 * @domain: pointer to domain object, or NULL for Domain0
 * @info: pointer to an array of virVcpuInfo structures (OUT)
 * @maxinfo: number of structures in info array
E
Eric Blake 已提交
2380
 * @cpumaps: pointer to a bit map of real CPUs for all vcpus of this domain (in 8-bit bytes) (OUT)
D
Daniel Veillard 已提交
2381
 *	If cpumaps is NULL, then no cpumap information is returned by the API.
2382 2383 2384 2385 2386 2387
 *	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...).
2388
 *
2389
 * Extract information about virtual CPUs of domain, store it in info array
D
Daniel Veillard 已提交
2390
 * and also in cpumaps if this pointer isn't NULL.
2391 2392 2393 2394 2395
 *
 * Returns the number of info filled in case of success, -1 in case of failure.
 */
int
xenDaemonDomainGetVcpus(virDomainPtr domain, virVcpuInfoPtr info, int maxinfo,
2396
                        unsigned char *cpumaps, int maplen)
2397 2398 2399 2400 2401 2402 2403 2404
{
    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)
2405
        || (info == NULL) || (maxinfo < 1)) {
2406
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2407
        return -1;
2408 2409
    }
    if (cpumaps != NULL && maplen < 1) {
2410
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2411
        return -1;
2412
    }
2413

2414 2415
    root = sexpr_get(domain->conn, "/xend/domain/%s?op=vcpuinfo", domain->name);
    if (root == NULL)
2416
        return -1;
2417 2418

    if (cpumaps != NULL)
2419
        memset(cpumaps, 0, maxinfo * maplen);
2420 2421

    /* scan the sexprs from "(vcpu (number x)...)" and get parameter values */
2422 2423 2424
    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) &&
2425
            STREQ(s->u.s.car->u.s.car->u.value, "vcpu")) {
2426
            t = s->u.s.car;
2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442
            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
                 */
2443 2444 2445
                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) &&
2446
                        STREQ(t->u.s.car->u.s.car->u.value, "cpumap") &&
2447 2448
                        (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)
2449
                            if (t->u.s.car->kind == SEXPR_VALUE
2450
                                && virStrToLong_i(t->u.s.car->u.value, NULL, 10, &cpu) == 0
2451 2452 2453
                                && cpu >= 0
                                && (VIR_CPU_MAPLEN(cpu+1) <= maplen)) {
                                VIR_USE_CPU(cpumap, cpu);
2454 2455 2456
                            }
                        break;
                    }
2457 2458
            }

2459 2460 2461
            if (++nbinfo == maxinfo) break;
            ipt++;
        }
2462 2463
    }
    sexpr_free(root);
2464
    return nbinfo;
2465 2466
}

2467 2468 2469 2470 2471 2472 2473 2474 2475
/**
 * 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
 */
2476
virDomainPtr
2477 2478 2479 2480 2481
xenDaemonLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
    virDomainPtr ret;
    char *name = NULL;
    int id = -1;
2482 2483
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;

2484
    /* Old approach for xen <= 3.0.3 */
2485
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
2486 2487 2488 2489 2490 2491
        char **names, **tmp;
        unsigned char ident[VIR_UUID_BUFLEN];
        names = xenDaemonListDomainsOld(conn);
        tmp = names;

        if (names == NULL) {
2492
            return NULL;
2493 2494 2495 2496 2497
        }
        while (*tmp != NULL) {
            id = xenDaemonDomainLookupByName_ids(conn, *tmp, &ident[0]);
            if (id >= 0) {
                if (!memcmp(uuid, ident, VIR_UUID_BUFLEN)) {
E
Eric Blake 已提交
2498
                    name = *tmp;
2499 2500
                    break;
                }
2501
            }
2502
            tmp++;
2503
        }
E
Eric Blake 已提交
2504 2505 2506 2507 2508 2509
        tmp = names;
        while (*tmp) {
            if (*tmp != name)
                VIR_FREE(*tmp);
            tmp++;
        }
2510
        VIR_FREE(names);
2511 2512 2513 2514 2515
    } else { /* New approach for xen >= 3.0.4 */
        char *domname = NULL;
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        struct sexpr *root = NULL;

2516
        virUUIDFormat(uuid, uuidstr);
2517 2518
        root = sexpr_get(conn, "/xend/domain/%s?detail=1", uuidstr);
        if (root == NULL)
2519
            return NULL;
2520 2521 2522 2523 2524
        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;
2525 2526 2527 2528 2529

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

            if (name == NULL)
2530
                virReportOOMError();
2531 2532
        }

2533
        sexpr_free(root);
2534 2535 2536
    }

    if (name == NULL)
2537
        return NULL;
2538 2539

    ret = virGetDomain(conn, name, uuid);
2540
    if (ret == NULL) goto cleanup;
2541

2542
    ret->id = id;
2543 2544

  cleanup:
2545
    VIR_FREE(name);
2546
    return ret;
2547
}
2548 2549

/**
2550
 * xenDaemonCreateXML:
2551 2552 2553 2554 2555 2556
 * @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()
2557
 * This function may requires privileged access to the hypervisor.
2558
 *
2559 2560
 * Returns a new domain object or NULL in case of failure
 */
2561
virDomainPtr
2562
xenDaemonCreateXML(virConnectPtr conn, const char *xmlDesc,
2563
                     unsigned int flags)
2564 2565 2566
{
    int ret;
    char *sexpr;
2567
    virDomainPtr dom = NULL;
2568
    xenUnifiedPrivatePtr priv;
2569
    virDomainDefPtr def;
2570

2571 2572
    virCheckFlags(0, NULL);

2573 2574
    priv = (xenUnifiedPrivatePtr) conn->privateData;

M
Matthias Bolte 已提交
2575 2576
    if (!(def = virDomainDefParseString(priv->caps, xmlDesc,
                                        1 << VIR_DOMAIN_VIRT_XEN,
2577
                                        VIR_DOMAIN_XML_INACTIVE)))
2578
        return NULL;
2579

M
Markus Groß 已提交
2580
    if (!(sexpr = xenFormatSxpr(conn, def, priv->xendConfigVersion))) {
2581
        virDomainDefFree(def);
2582
        return NULL;
2583 2584
    }

2585
    ret = xenDaemonDomainCreateXML(conn, sexpr);
2586
    VIR_FREE(sexpr);
2587 2588 2589 2590
    if (ret != 0) {
        goto error;
    }

2591 2592
    /* This comes before wait_for_devices, to ensure that latter
       cleanup will destroy the domain upon failure */
2593
    if (!(dom = virDomainLookupByName(conn, def->name)))
2594 2595
        goto error;

2596
    if (xend_wait_for_devices(conn, def->name) < 0)
2597 2598
        goto error;

2599
    if (xenDaemonDomainResume(dom) < 0)
2600 2601
        goto error;

2602
    virDomainDefFree(def);
2603
    return dom;
2604

2605
  error:
2606 2607
    /* Make sure we don't leave a still-born domain around */
    if (dom != NULL) {
2608
        xenDaemonDomainDestroyFlags(dom, 0);
2609
        virObjectUnref(dom);
2610
    }
2611
    virDomainDefFree(def);
2612
    return NULL;
2613
}
2614 2615

/**
2616
 * xenDaemonAttachDeviceFlags:
2617 2618
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
2619
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
2620
 *
2621 2622 2623 2624 2625 2626
 * 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
2627 2628
xenDaemonAttachDeviceFlags(virDomainPtr domain, const char *xml,
                           unsigned int flags)
2629
{
2630
    xenUnifiedPrivatePtr priv;
2631 2632 2633 2634 2635
    char *sexpr = NULL;
    int ret = -1;
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2636
    char class[8], ref[80];
2637
    char *target = NULL;
2638

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

2641
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
2642
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2643
        return -1;
2644
    }
2645

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

2648
    if (domain->id < 0) {
2649 2650
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
2651 2652
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot modify live config if domain is inactive"));
2653 2654
            return -1;
        }
2655
        /* If xendConfigVersion < 3 only live config can be changed */
2656
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
2657 2658
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
2659
                           "persistent config"));
2660 2661 2662 2663
            return -1;
        }
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
2664
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4 &&
E
Eric Blake 已提交
2665
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2666
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2667 2668 2669
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2670 2671
            return -1;
        }
2672
        /* Xen only supports modifying both live and persistent config if
2673 2674
         * xendConfigVersion >= 3
         */
2675
        if (priv->xendConfigVersion >= XEND_CONFIG_VERSION_3_0_4 &&
2676 2677
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2678 2679 2680
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2681 2682 2683
            return -1;
        }
    }
2684

2685 2686 2687 2688 2689 2690
    if (!(def = xenDaemonDomainFetch(domain->conn,
                                     domain->id,
                                     domain->name,
                                     NULL)))
        goto cleanup;

2691
    if (!(dev = virDomainDeviceDefParse(priv->caps,
G
Guido Günther 已提交
2692
                                        def, xml, VIR_DOMAIN_XML_INACTIVE)))
2693 2694 2695 2696 2697
        goto cleanup;


    switch (dev->type) {
    case VIR_DOMAIN_DEVICE_DISK:
2698 2699 2700 2701
        if (xenFormatSxprDisk(dev->data.disk,
                              &buf,
                              STREQ(def->os.type, "hvm") ? 1 : 0,
                              priv->xendConfigVersion, 1) < 0)
2702
            goto cleanup;
2703 2704 2705 2706 2707 2708 2709

        if (dev->data.disk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
            if (!(target = strdup(dev->data.disk->dst))) {
                virReportOOMError();
                goto cleanup;
            }
        }
2710
        break;
2711 2712

    case VIR_DOMAIN_DEVICE_NET:
M
Markus Groß 已提交
2713 2714 2715 2716 2717
        if (xenFormatSxprNet(domain->conn,
                             dev->data.net,
                             &buf,
                             STREQ(def->os.type, "hvm") ? 1 : 0,
                             priv->xendConfigVersion, 1) < 0)
2718
            goto cleanup;
2719 2720

        char macStr[VIR_MAC_STRING_BUFLEN];
2721
        virMacAddrFormat(&dev->data.net->mac, macStr);
2722 2723 2724 2725 2726

        if (!(target = strdup(macStr))) {
            virReportOOMError();
            goto cleanup;
        }
2727
        break;
2728

2729 2730 2731
    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ß 已提交
2732
            if (xenFormatSxprOnePCI(dev->data.hostdev, &buf, 0) < 0)
2733
                goto cleanup;
2734

2735
            virDevicePCIAddress PCIAddr;
2736 2737 2738 2739 2740 2741 2742 2743 2744

            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;
            }
2745
        } else {
2746 2747
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("unsupported device type"));
2748 2749 2750 2751
            goto cleanup;
        }
        break;

2752
    default:
2753 2754
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unsupported device type"));
2755
        goto cleanup;
2756
    }
2757 2758 2759 2760

    sexpr = virBufferContentAndReset(&buf);

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref))) {
2761 2762
        /* device doesn't exist, define it */
        ret = xend_op(domain->conn, domain->name, "op", "device_create",
2763
                      "config", sexpr, NULL);
2764 2765
    } else {
        if (dev->data.disk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
2766 2767
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("target '%s' already exists"), target);
2768 2769 2770 2771 2772
        } else {
            /* device exists, attempt to modify it */
            ret = xend_op(domain->conn, domain->name, "op", "device_configure",
                          "config", sexpr, "dev", ref, NULL);
        }
2773
    }
2774 2775

cleanup:
2776
    VIR_FREE(sexpr);
2777 2778
    virDomainDefFree(def);
    virDomainDeviceDefFree(dev);
2779
    VIR_FREE(target);
2780 2781 2782
    return ret;
}

2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793
/**
 * 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.
 */
2794
int
2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805
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 已提交
2806
    virCheckFlags(VIR_DOMAIN_DEVICE_MODIFY_LIVE |
2807 2808
                  VIR_DOMAIN_DEVICE_MODIFY_CONFIG, -1);

2809
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
2810
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2811 2812 2813 2814 2815 2816
        return -1;
    }

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

    if (domain->id < 0) {
2817 2818
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
2819 2820
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot modify live config if domain is inactive"));
2821 2822
            return -1;
        }
2823
        /* If xendConfigVersion < 3 only live config can be changed */
2824
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
2825 2826
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
2827 2828 2829 2830 2831
                           "persistent config"));
            return -1;
        }
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
2832
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4 &&
E
Eric Blake 已提交
2833
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2834
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2835 2836 2837
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2838 2839 2840 2841 2842
            return -1;
        }
        /* Xen only supports modifying both live and persistent config if
         * xendConfigVersion >= 3
         */
2843
        if (priv->xendConfigVersion >= XEND_CONFIG_VERSION_3_0_4 &&
2844 2845
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2846 2847 2848
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865
            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:
2866
        if (xenFormatSxprDisk(dev->data.disk,
M
Markus Groß 已提交
2867 2868 2869
                              &buf,
                              STREQ(def->os.type, "hvm") ? 1 : 0,
                              priv->xendConfigVersion, 1) < 0)
2870 2871 2872 2873
            goto cleanup;
        break;

    default:
2874 2875
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unsupported device type"));
2876 2877 2878 2879 2880 2881
        goto cleanup;
    }

    sexpr = virBufferContentAndReset(&buf);

    if (virDomainXMLDevID(domain, dev, class, ref, sizeof(ref))) {
2882 2883
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("requested device does not exist"));
2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897
        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;
}

2898
/**
2899
 * xenDaemonDetachDeviceFlags:
2900 2901
 * @domain: pointer to domain object
 * @xml: pointer to XML description of device
2902
 * @flags: an OR'ed set of virDomainDeviceModifyFlags
2903
 *
2904 2905 2906 2907 2908
 * Destroy a virtual device attachment to backend.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
static int
2909 2910
xenDaemonDetachDeviceFlags(virDomainPtr domain, const char *xml,
                           unsigned int flags)
2911
{
2912
    xenUnifiedPrivatePtr priv;
2913
    char class[8], ref[80];
2914 2915 2916
    virDomainDeviceDefPtr dev = NULL;
    virDomainDefPtr def = NULL;
    int ret = -1;
2917 2918
    char *xendev = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2919

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

2922
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
2923
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
2924
        return -1;
2925
    }
2926 2927 2928

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

2929
    if (domain->id < 0) {
2930 2931
        /* Cannot modify live config if domain is inactive */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
2932 2933
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot modify live config if domain is inactive"));
2934 2935
            return -1;
        }
2936
        /* If xendConfigVersion < 3 only live config can be changed */
2937
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4) {
2938 2939 2940
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2941 2942 2943 2944
            return -1;
        }
    } else {
        /* Only live config can be changed if xendConfigVersion < 3 */
2945
        if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4 &&
E
Eric Blake 已提交
2946
            (flags != VIR_DOMAIN_DEVICE_MODIFY_CURRENT &&
2947
             flags != VIR_DOMAIN_DEVICE_MODIFY_LIVE)) {
2948 2949 2950
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend version does not support modifying "
                             "persistent config"));
2951 2952
            return -1;
        }
2953
        /* Xen only supports modifying both live and persistent config if
2954 2955
         * xendConfigVersion >= 3
         */
2956
        if (priv->xendConfigVersion >= XEND_CONFIG_VERSION_3_0_4 &&
2957 2958
            (flags != (VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                       VIR_DOMAIN_DEVICE_MODIFY_CONFIG))) {
2959 2960 2961
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Xend only supports modifying both live and "
                             "persistent config"));
2962 2963 2964
            return -1;
        }
    }
2965 2966 2967 2968 2969 2970 2971

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

2972
    if (!(dev = virDomainDeviceDefParse(priv->caps,
G
Guido Günther 已提交
2973
                                        def, xml, VIR_DOMAIN_XML_INACTIVE)))
2974 2975 2976 2977 2978
        goto cleanup;

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

2979 2980 2981
    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ß 已提交
2982
            if (xenFormatSxprOnePCI(dev->data.hostdev, &buf, 1) < 0)
2983 2984
                goto cleanup;
        } else {
2985 2986
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("unsupported device type"));
2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998
            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);
    }
2999 3000 3001 3002 3003 3004

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

    return ret;
3005
}
3006

3007 3008 3009 3010 3011 3012 3013 3014 3015
int
xenDaemonDomainGetAutostart(virDomainPtr domain,
                            int *autostart)
{
    struct sexpr *root;
    const char *tmp;
    xenUnifiedPrivatePtr priv;

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3016
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3017
        return -1;
3018 3019 3020 3021 3022 3023
    }

    /* 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;
3024
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3025
        return -1;
3026 3027 3028

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL) {
3029 3030
        virReportError(VIR_ERR_XEN_CALL,
                       "%s", _("xenDaemonGetAutostart failed to find this domain"));
3031
        return -1;
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
    }

    *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;
3050 3051
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    char *content = NULL;
3052 3053 3054 3055
    int ret = -1;
    xenUnifiedPrivatePtr priv;

    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3056
        virReportError(VIR_ERR_INTERNAL_ERROR, __FUNCTION__);
3057
        return -1;
3058 3059 3060 3061 3062 3063
    }

    /* 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;
3064
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3065
        return -1;
3066 3067 3068

    root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1", domain->name);
    if (root == NULL) {
3069 3070
        virReportError(VIR_ERR_XEN_CALL,
                       "%s", _("xenDaemonSetAutostart failed to find this domain"));
3071
        return -1;
3072 3073
    }

3074 3075 3076 3077
    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);
3078
        if (!val || (!STREQ(val, "ignore") && !STREQ(val, "start"))) {
3079 3080
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("unexpected value from on_xend_start"));
3081 3082 3083
            goto error;
        }

3084
        /* Change the autostart value in place, then define the new sexpr */
3085
        VIR_FREE(autonode->u.s.car->u.value);
3086 3087 3088
        autonode->u.s.car->u.value = (autostart ? strdup("start")
                                                : strdup("ignore"));
        if (!(autonode->u.s.car->u.value)) {
3089
            virReportOOMError();
3090 3091 3092
            goto error;
        }

3093
        if (sexpr2string(root, &buffer) < 0) {
3094 3095
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("sexpr2string failed"));
3096 3097
            goto error;
        }
3098 3099 3100 3101 3102 3103 3104 3105 3106

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

        content = virBufferContentAndReset(&buffer);

        if (xend_op(domain->conn, "", "op", "new", "config", content, NULL) != 0) {
3107 3108
            virReportError(VIR_ERR_XEN_CALL,
                           "%s", _("Failed to redefine sexpr"));
3109 3110 3111
            goto error;
        }
    } else {
3112 3113
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("on_xend_start not present in sexpr"));
3114 3115 3116 3117 3118
        goto error;
    }

    ret = 0;
  error:
3119 3120
    virBufferFreeAndReset(&buffer);
    VIR_FREE(content);
3121 3122 3123
    sexpr_free(root);
    return ret;
}
3124

3125
int
3126 3127 3128 3129 3130 3131 3132 3133
xenDaemonDomainMigratePrepare(virConnectPtr dconn,
                              char **cookie ATTRIBUTE_UNUSED,
                              int *cookielen ATTRIBUTE_UNUSED,
                              const char *uri_in,
                              char **uri_out,
                              unsigned long flags,
                              const char *dname ATTRIBUTE_UNUSED,
                              unsigned long resource ATTRIBUTE_UNUSED)
3134
{
E
Eric Blake 已提交
3135 3136
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

3137 3138 3139 3140 3141
    /* 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) {
3142 3143
        *uri_out = virGetHostname(dconn);
        if (*uri_out == NULL)
3144 3145 3146 3147 3148 3149 3150
            return -1;
    }

    return 0;
}

int
3151 3152 3153 3154 3155 3156 3157
xenDaemonDomainMigratePerform(virDomainPtr domain,
                              const char *cookie ATTRIBUTE_UNUSED,
                              int cookielen ATTRIBUTE_UNUSED,
                              const char *uri,
                              unsigned long flags,
                              const char *dname,
                              unsigned long bandwidth)
3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168
{
    /* 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;

3169 3170
    int undefined_source = 0;

E
Eric Blake 已提交
3171 3172
    virCheckFlags(XEN_MIGRATION_FLAGS, -1);

3173 3174
    /* Xen doesn't support renaming domains during migration. */
    if (dname) {
3175 3176 3177
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: Xen does not support"
                               " renaming domains during migration"));
3178 3179 3180 3181 3182 3183 3184
        return -1;
    }

    /* Xen (at least up to 3.1.0) takes a resource parameter but
     * ignores it.
     */
    if (bandwidth) {
3185 3186 3187
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: Xen does not support"
                               " bandwidth limits during migration"));
3188 3189 3190
        return -1;
    }

3191 3192 3193
    /*
     * Check the flags.
     */
3194
    if ((flags & VIR_MIGRATE_LIVE)) {
3195
        strcpy(live, "1");
3196 3197
        flags &= ~VIR_MIGRATE_LIVE;
    }
3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208

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

3209 3210 3211 3212
    /* This is buggy in Xend, but could be supported in principle.  Give
     * a nice error message.
     */
    if (flags & VIR_MIGRATE_PAUSED) {
3213 3214
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: xend cannot migrate paused domains"));
3215 3216 3217
        return -1;
    }

3218 3219
    /* XXX we could easily do tunnelled & peer2peer migration too
       if we want to. support these... */
3220
    if (flags != 0) {
3221 3222
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("xenDaemonDomainMigrate: unsupported flag"));
3223 3224 3225 3226 3227 3228 3229 3230
        return -1;
    }

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

3236
        if (uriptr->scheme && STRCASENEQ(uriptr->scheme, "xenmigr")) {
3237 3238 3239
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("xenDaemonDomainMigrate: only xenmigr://"
                                   " migrations are supported by Xen"));
3240
            virURIFree(uriptr);
3241 3242 3243
            return -1;
        }
        if (!uriptr->server) {
3244 3245 3246
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("xenDaemonDomainMigrate: a hostname must be"
                                   " specified in the URI"));
3247
            virURIFree(uriptr);
3248 3249
            return -1;
        }
3250
        hostname = strdup(uriptr->server);
3251
        if (!hostname) {
3252
            virReportOOMError();
3253
            virURIFree(uriptr);
3254 3255 3256
            return -1;
        }
        if (uriptr->port)
3257 3258
            snprintf(port, sizeof(port), "%d", uriptr->port);
        virURIFree(uriptr);
3259
    }
3260
    else if ((p = strrchr(uri, ':')) != NULL) { /* "hostname:port" */
3261 3262
        int port_nr, n;

3263
        if (virStrToLong_i(p+1, NULL, 10, &port_nr) < 0) {
3264 3265
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("xenDaemonDomainMigrate: invalid port number"));
3266 3267
            return -1;
        }
3268
        snprintf(port, sizeof(port), "%d", port_nr);
3269 3270 3271

        /* Get the hostname. */
        n = p - uri; /* n = Length of hostname in bytes. */
3272
        hostname = strdup(uri);
3273
        if (!hostname) {
3274
            virReportOOMError();
3275 3276 3277 3278 3279
            return -1;
        }
        hostname[n] = '\0';
    }
    else {                      /* "hostname" (or IP address) */
3280
        hostname = strdup(uri);
3281
        if (!hostname) {
3282
            virReportOOMError();
3283 3284 3285 3286
            return -1;
        }
    }

3287
    VIR_DEBUG("hostname = %s, port = %s", hostname, port);
3288

J
Jim Fehlig 已提交
3289 3290 3291 3292 3293 3294
    /* 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.
     */
3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305
    ret = xend_op(domain->conn, domain->name,
                  "op", "migrate",
                  "destination", hostname,
                  "live", live,
                  "port", port,
                  "node", "-1", /* xen-unstable c/s 17753 */
                  "ssl", "0", /* xen-unstable c/s 17709 */
                  "change_home_server", "0", /* xen-unstable c/s 20326 */
                  "resource", "0", /* removed by xen-unstable c/s 17553 */
                  NULL);
    VIR_FREE(hostname);
3306

3307
    if (ret == 0 && undefined_source)
3308
        xenDaemonDomainUndefine(domain);
3309

3310
    VIR_DEBUG("migration done");
3311 3312 3313 3314

    return ret;
}

3315 3316 3317 3318
virDomainPtr xenDaemonDomainDefineXML(virConnectPtr conn, const char *xmlDesc) {
    int ret;
    char *sexpr;
    virDomainPtr dom;
3319
    xenUnifiedPrivatePtr priv;
3320
    virDomainDefPtr def;
3321 3322 3323

    priv = (xenUnifiedPrivatePtr) conn->privateData;

3324
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3325
        return NULL;
3326

3327
    if (!(def = virDomainDefParseString(priv->caps, xmlDesc,
M
Matthias Bolte 已提交
3328
                                        1 << VIR_DOMAIN_VIRT_XEN,
3329
                                        VIR_DOMAIN_XML_INACTIVE))) {
3330 3331
        virReportError(VIR_ERR_XML_ERROR,
                       "%s", _("failed to parse domain description"));
3332
        return NULL;
3333 3334
    }

M
Markus Groß 已提交
3335
    if (!(sexpr = xenFormatSxpr(conn, def, priv->xendConfigVersion))) {
3336 3337
        virReportError(VIR_ERR_XML_ERROR,
                       "%s", _("failed to build sexpr"));
3338 3339 3340
        goto error;
    }

3341
    ret = xend_op(conn, "", "op", "new", "config", sexpr, NULL);
3342
    VIR_FREE(sexpr);
3343
    if (ret != 0) {
3344 3345
        virReportError(VIR_ERR_XEN_CALL,
                       _("Failed to create inactive domain %s"), def->name);
3346 3347 3348
        goto error;
    }

3349
    dom = virDomainLookupByName(conn, def->name);
3350 3351 3352
    if (dom == NULL) {
        goto error;
    }
3353
    virDomainDefFree(def);
3354
    return dom;
3355

3356
  error:
3357
    virDomainDefFree(def);
3358
    return NULL;
3359
}
3360 3361 3362
int xenDaemonDomainCreate(virDomainPtr domain)
{
    xenUnifiedPrivatePtr priv;
3363 3364
    int ret;
    virDomainPtr tmp;
3365

3366
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3367
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3368
        return -1;
3369
    }
3370 3371 3372

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

3373
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3374
        return -1;
3375

3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386
    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;
3387 3388
}

3389 3390 3391 3392
int xenDaemonDomainUndefine(virDomainPtr domain)
{
    xenUnifiedPrivatePtr priv;

3393
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3394
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3395
        return -1;
3396
    }
3397 3398 3399

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

3400
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3401
        return -1;
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419

    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;
3420
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
3421

3422 3423 3424
    /* xm_internal.c (the support for defined domains from /etc/xen
     * config files used by old Xen) will handle this.
     */
3425
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3426
        return -1;
3427

3428 3429 3430 3431 3432 3433
    root = sexpr_get(conn, "/xend/domain?state=halted");
    if (root == NULL)
        goto error;

    ret = 0;

3434 3435
    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) {
3436 3437 3438 3439 3440 3441
        if (node->kind != SEXPR_VALUE)
            continue;
        ret++;
    }

error:
3442
    sexpr_free(root);
3443
    return ret;
3444 3445
}

3446 3447
static int
xenDaemonListDefinedDomains(virConnectPtr conn, char **const names, int maxnames) {
3448
    struct sexpr *root = NULL;
3449
    int i, ret = -1;
3450
    struct sexpr *_for_i, *node;
3451
    xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
3452

3453
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
3454
        return -1;
3455

3456
    if ((names == NULL) || (maxnames < 0))
3457
        goto error;
3458
    if (maxnames == 0)
3459
        return 0;
3460

3461 3462 3463 3464 3465 3466
    root = sexpr_get(conn, "/xend/domain?state=halted");
    if (root == NULL)
        goto error;

    ret = 0;

3467 3468
    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) {
3469 3470 3471
        if (node->kind != SEXPR_VALUE)
            continue;

3472
        if ((names[ret++] = strdup(node->u.value)) == NULL) {
3473
            virReportOOMError();
3474 3475 3476
            goto error;
        }

3477 3478 3479 3480
        if (ret >= maxnames)
            break;
    }

3481 3482
cleanup:
    sexpr_free(root);
3483
    return ret;
3484

3485
error:
3486 3487 3488
    for (i = 0; i < ret; ++i)
        VIR_FREE(names[i]);

3489 3490 3491
    ret = -1;

    goto cleanup;
3492 3493
}

3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511
/**
 * 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;

3512
    if (domain->conn == NULL || domain->name == NULL) {
3513
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3514 3515 3516 3517 3518
        return NULL;
    }

    /* Support only xendConfigVersion >=4 */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
3519
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_1_0) {
3520 3521
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("unsupported in xendConfigVersion < 4"));
3522 3523 3524 3525 3526 3527 3528 3529 3530 3531
        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){
3532 3533
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("node information incomplete, missing scheduler name"));
3534 3535
        goto error;
    }
3536
    if (STREQ(ret, "credit")) {
3537 3538
        schedulertype = strdup("credit");
        if (schedulertype == NULL){
3539
            virReportOOMError();
3540 3541
            goto error;
        }
3542 3543
        if (nparams)
            *nparams = XEN_SCHED_CRED_NPARAM;
3544
    } else if (STREQ(ret, "sedf")) {
3545 3546
        schedulertype = strdup("sedf");
        if (schedulertype == NULL){
3547
            virReportOOMError();
3548 3549
            goto error;
        }
3550 3551
        if (nparams)
            *nparams = XEN_SCHED_SEDF_NPARAM;
3552
    } else {
3553
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576
        goto error;
    }

error:
    sexpr_free(root);
    return schedulertype;

}

/**
 * xenDaemonGetSchedulerParameters:
 * @domain: pointer to the Domain block
 * @params: pointer to scheduler parameters
 *          This memory area must be allocated by the caller
 * @nparams: a number of scheduler parameters which should be same as a
 *           given number from xenDaemonGetSchedulerType()
 *
 * Get the scheduler parameters
 *
 * Returns 0 or -1 in case of failure
 */
static int
xenDaemonGetSchedulerParameters(virDomainPtr domain,
3577
                                virTypedParameterPtr params, int *nparams)
3578 3579 3580 3581 3582 3583 3584
{
    xenUnifiedPrivatePtr priv;
    struct sexpr *root;
    char *sched_type = NULL;
    int sched_nparam = 0;
    int ret = -1;

3585
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3586
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3587
        return -1;
3588 3589 3590 3591
    }

    /* Support only xendConfigVersion >=4 */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
3592
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_1_0) {
3593 3594
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("unsupported in xendConfigVersion < 4"));
3595
        return -1;
3596 3597 3598 3599 3600
    }

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

    /* get the scheduler type */
    sched_type = xenDaemonGetSchedulerType(domain, &sched_nparam);
    if (sched_type == NULL) {
3606 3607
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Failed to get a scheduler name"));
3608 3609 3610 3611 3612
        goto error;
    }

    switch (sched_nparam){
        case XEN_SCHED_SEDF_NPARAM:
3613
            if (*nparams < XEN_SCHED_SEDF_NPARAM) {
3614 3615
                virReportError(VIR_ERR_INVALID_ARG,
                               "%s", _("Invalid parameter count"));
3616 3617 3618
                goto error;
            }

3619 3620 3621 3622 3623 3624
            /* TODO: Implement for Xen/SEDF */
            TODO
            goto error;
        case XEN_SCHED_CRED_NPARAM:
            /* get cpu_weight/cpu_cap from xend/domain */
            if (sexpr_node(root, "domain/cpu_weight") == NULL) {
3625 3626
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("domain information incomplete, missing cpu_weight"));
3627 3628 3629
                goto error;
            }
            if (sexpr_node(root, "domain/cpu_cap") == NULL) {
3630 3631
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("domain information incomplete, missing cpu_cap"));
3632 3633 3634
                goto error;
            }

3635 3636
            if (virStrcpyStatic(params[0].field,
                                VIR_DOMAIN_SCHEDULER_WEIGHT) == NULL) {
3637 3638 3639
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Weight %s too big for destination"),
                               VIR_DOMAIN_SCHEDULER_WEIGHT);
C
Chris Lalancette 已提交
3640 3641
                goto error;
            }
3642
            params[0].type = VIR_TYPED_PARAM_UINT;
3643 3644
            params[0].value.ui = sexpr_int(root, "domain/cpu_weight");

3645 3646 3647
            if (*nparams > 1) {
                if (virStrcpyStatic(params[1].field,
                                    VIR_DOMAIN_SCHEDULER_CAP) == NULL) {
3648 3649 3650
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Cap %s too big for destination"),
                                   VIR_DOMAIN_SCHEDULER_CAP);
3651 3652 3653 3654
                    goto error;
                }
                params[1].type = VIR_TYPED_PARAM_UINT;
                params[1].value.ui = sexpr_int(root, "domain/cpu_cap");
C
Chris Lalancette 已提交
3655
            }
3656 3657 3658

            if (*nparams > XEN_SCHED_CRED_NPARAM)
                *nparams = XEN_SCHED_CRED_NPARAM;
3659 3660 3661
            ret = 0;
            break;
        default:
3662
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3663 3664 3665 3666 3667
            goto error;
    }

error:
    sexpr_free(root);
3668
    VIR_FREE(sched_type);
3669
    return ret;
3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683
}

/**
 * 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,
3684
                                virTypedParameterPtr params, int nparams)
3685 3686 3687 3688 3689 3690 3691 3692
{
    xenUnifiedPrivatePtr priv;
    struct sexpr *root;
    char *sched_type = NULL;
    int i;
    int sched_nparam = 0;
    int ret = -1;

3693
    if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
3694
        virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3695
        return -1;
3696 3697 3698 3699
    }

    /* Support only xendConfigVersion >=4 and active domains */
    priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
3700
    if (priv->xendConfigVersion < XEND_CONFIG_VERSION_3_1_0) {
3701 3702
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("unsupported in xendConfigVersion < 4"));
3703
        return -1;
3704 3705 3706 3707 3708
    }

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

    /* get the scheduler type */
    sched_type = xenDaemonGetSchedulerType(domain, &sched_nparam);
    if (sched_type == NULL) {
3714 3715
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Failed to get a scheduler name"));
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733
        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++) {
3734
                if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_WEIGHT) &&
3735
                    params[i].type == VIR_TYPED_PARAM_UINT) {
3736
                    snprintf(buf_weight, sizeof(buf_weight), "%u", params[i].value.ui);
3737
                } else if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_CAP) &&
3738
                    params[i].type == VIR_TYPED_PARAM_UINT) {
3739 3740
                    snprintf(buf_cap, sizeof(buf_cap), "%u", params[i].value.ui);
                } else {
3741
                    virReportError(VIR_ERR_INVALID_ARG, __FUNCTION__);
3742 3743 3744 3745 3746 3747 3748 3749
                    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) {
3750 3751
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("domain information incomplete, missing cpu_weight"));
3752 3753 3754 3755 3756 3757 3758
                    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) {
3759 3760
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("domain information incomplete, missing cpu_cap"));
3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771
                    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:
3772
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Unknown scheduler"));
3773 3774 3775 3776 3777
            goto error;
    }

error:
    sexpr_free(root);
3778
    VIR_FREE(sched_type);
3779
    return ret;
3780 3781
}

R
Richard W.M. Jones 已提交
3782 3783
/**
 * xenDaemonDomainBlockPeek:
P
Philipp Hahn 已提交
3784
 * @domain: domain object
R
Richard W.M. Jones 已提交
3785 3786 3787 3788 3789 3790 3791 3792
 * @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
3793 3794 3795
xenDaemonDomainBlockPeek(virDomainPtr domain, const char *path,
                         unsigned long long offset, size_t size,
                         void *buffer)
R
Richard W.M. Jones 已提交
3796 3797
{
    xenUnifiedPrivatePtr priv;
3798 3799 3800
    struct sexpr *root = NULL;
    int fd = -1, ret = -1;
    virDomainDefPtr def;
3801 3802 3803
    int id;
    char * tty;
    int vncport;
3804
    const char *actual;
R
Richard W.M. Jones 已提交
3805 3806 3807

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

3808
    if (domain->id < 0 && priv->xendConfigVersion < XEND_CONFIG_VERSION_3_0_4)
R
Richard W.M. Jones 已提交
3809 3810 3811 3812
        return -2;              /* Decline, allow XM to handle it. */

    /* Security check: The path must correspond to a block device. */
    if (domain->id > 0)
3813 3814
        root = sexpr_get(domain->conn, "/xend/domain/%d?detail=1",
                         domain->id);
R
Richard W.M. Jones 已提交
3815
    else if (domain->id < 0)
3816 3817
        root = sexpr_get(domain->conn, "/xend/domain/%s?detail=1",
                         domain->name);
R
Richard W.M. Jones 已提交
3818 3819
    else {
        /* This call always fails for dom0. */
3820 3821
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domainBlockPeek is not supported for dom0"));
R
Richard W.M. Jones 已提交
3822 3823 3824 3825
        return -1;
    }

    if (!root) {
3826
        virReportError(VIR_ERR_XEN_CALL, __FUNCTION__);
R
Richard W.M. Jones 已提交
3827 3828 3829
        return -1;
    }

3830 3831 3832 3833 3834 3835
    id = xenGetDomIdFromSxpr(root, priv->xendConfigVersion);
    xenUnifiedLock(priv);
    tty = xenStoreDomainGetConsolePath(domain->conn, id);
    vncport = xenStoreDomainGetVNCPort(domain->conn, id);
    xenUnifiedUnlock(priv);

M
Markus Groß 已提交
3836 3837
    if (!(def = xenParseSxpr(root, priv->xendConfigVersion, NULL, tty,
                             vncport)))
3838
        goto cleanup;
R
Richard W.M. Jones 已提交
3839

3840
    if (!(actual = virDomainDiskPathByName(def, path))) {
3841 3842
        virReportError(VIR_ERR_INVALID_ARG,
                       _("%s: invalid path"), path);
3843
        goto cleanup;
R
Richard W.M. Jones 已提交
3844
    }
3845
    path = actual;
R
Richard W.M. Jones 已提交
3846 3847

    /* The path is correct, now try to open it and get its size. */
3848
    fd = open(path, O_RDONLY);
3849
    if (fd == -1) {
3850
        virReportSystemError(errno,
3851 3852
                             _("failed to open for reading: %s"),
                             path);
3853
        goto cleanup;
R
Richard W.M. Jones 已提交
3854 3855 3856 3857 3858 3859
    }

    /* Seek and read. */
    /* NB. Because we configure with AC_SYS_LARGEFILE, off_t should
     * be 64 bits on all platforms.
     */
3860 3861
    if (lseek(fd, offset, SEEK_SET) == (off_t) -1 ||
        saferead(fd, buffer, size) == (ssize_t) -1) {
3862
        virReportSystemError(errno,
3863 3864
                             _("failed to lseek or read from file: %s"),
                             path);
3865
        goto cleanup;
R
Richard W.M. Jones 已提交
3866 3867 3868
    }

    ret = 0;
3869
 cleanup:
3870
    VIR_FORCE_CLOSE(fd);
3871 3872
    sexpr_free(root);
    virDomainDefFree(def);
R
Richard W.M. Jones 已提交
3873 3874 3875
    return ret;
}

3876
struct xenUnifiedDriver xenDaemonDriver = {
E
Eric Blake 已提交
3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900
    .xenClose = xenDaemonClose,
    .xenVersion = xenDaemonGetVersion,
    .xenDomainSuspend = xenDaemonDomainSuspend,
    .xenDomainResume = xenDaemonDomainResume,
    .xenDomainShutdown = xenDaemonDomainShutdown,
    .xenDomainReboot = xenDaemonDomainReboot,
    .xenDomainDestroyFlags = xenDaemonDomainDestroyFlags,
    .xenDomainGetOSType = xenDaemonDomainGetOSType,
    .xenDomainGetMaxMemory = xenDaemonDomainGetMaxMemory,
    .xenDomainSetMaxMemory = xenDaemonDomainSetMaxMemory,
    .xenDomainSetMemory = xenDaemonDomainSetMemory,
    .xenDomainGetInfo = xenDaemonDomainGetInfo,
    .xenDomainPinVcpu = xenDaemonDomainPinVcpu,
    .xenDomainGetVcpus = xenDaemonDomainGetVcpus,
    .xenListDefinedDomains = xenDaemonListDefinedDomains,
    .xenNumOfDefinedDomains = xenDaemonNumOfDefinedDomains,
    .xenDomainCreate = xenDaemonDomainCreate,
    .xenDomainDefineXML = xenDaemonDomainDefineXML,
    .xenDomainUndefine = xenDaemonDomainUndefine,
    .xenDomainAttachDeviceFlags = xenDaemonAttachDeviceFlags,
    .xenDomainDetachDeviceFlags = xenDaemonDetachDeviceFlags,
    .xenDomainGetSchedulerType = xenDaemonGetSchedulerType,
    .xenDomainGetSchedulerParameters = xenDaemonGetSchedulerParameters,
    .xenDomainSetSchedulerParameters = xenDaemonSetSchedulerParameters,
3901 3902
};

3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914

/**
 * 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.
3915 3916
 *  - if pci, get BDF from description, scan XenStore and
 *    copy in ref the corresponding dev number.
3917 3918 3919 3920 3921 3922 3923 3924 3925 3926
 *
 * 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 已提交
3927
    xenUnifiedPrivatePtr priv = domain->conn->privateData;
3928
    char *xref;
C
Chris Lalancette 已提交
3929
    char *tmp;
3930 3931

    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
3932 3933 3934
        if (dev->data.disk->driverName &&
            STREQ(dev->data.disk->driverName, "tap"))
            strcpy(class, "tap");
J
Jim Fehlig 已提交
3935 3936 3937
        else if (dev->data.disk->driverName &&
            STREQ(dev->data.disk->driverName, "tap2"))
            strcpy(class, "tap2");
3938 3939 3940
        else
            strcpy(class, "vbd");

3941 3942
        if (dev->data.disk->dst == NULL)
            return -1;
D
Daniel P. Berrange 已提交
3943
        xenUnifiedLock(priv);
3944 3945
        xref = xenStoreDomainGetDiskID(domain->conn, domain->id,
                                       dev->data.disk->dst);
D
Daniel P. Berrange 已提交
3946
        xenUnifiedUnlock(priv);
3947 3948 3949
        if (xref == NULL)
            return -1;

C
Chris Lalancette 已提交
3950
        tmp = virStrcpy(ref, xref, ref_len);
3951
        VIR_FREE(xref);
C
Chris Lalancette 已提交
3952 3953
        if (tmp == NULL)
            return -1;
3954 3955 3956 3957
    } 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",
3958 3959
                 def->mac.addr[0], def->mac.addr[1], def->mac.addr[2],
                 def->mac.addr[3], def->mac.addr[4], def->mac.addr[5]);
3960 3961 3962

        strcpy(class, "vif");

D
Daniel P. Berrange 已提交
3963
        xenUnifiedLock(priv);
3964 3965
        xref = xenStoreDomainGetNetworkID(domain->conn, domain->id,
                                          mac);
D
Daniel P. Berrange 已提交
3966
        xenUnifiedUnlock(priv);
3967 3968 3969
        if (xref == NULL)
            return -1;

C
Chris Lalancette 已提交
3970
        tmp = virStrcpy(ref, xref, ref_len);
3971
        VIR_FREE(xref);
C
Chris Lalancette 已提交
3972 3973
        if (tmp == NULL)
            return -1;
3974 3975 3976
    } 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) {
3977 3978 3979 3980 3981 3982 3983 3984
        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) {
3985
            virReportOOMError();
3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001
            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;
4002
    } else {
4003 4004
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("hotplug of device type not supported"));
4005 4006 4007 4008 4009
        return -1;
    }

    return 0;
}