parallels_driver.c 69.1 KB
Newer Older
D
Dmitry Guryanov 已提交
1 2 3 4
/*
 * parallels_driver.c: core driver functions for managing
 * Parallels Cloud Server hosts
 *
5
 * Copyright (C) 2014 Red Hat, Inc.
D
Dmitry Guryanov 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2012 Parallels, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
19
 * License along with this library.  If not, see
D
Dmitry Guryanov 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
 * <http://www.gnu.org/licenses/>.
 *
 */

#include <config.h>

#include <sys/types.h>
#include <sys/poll.h>
#include <limits.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <paths.h>
#include <pwd.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/statvfs.h>

#include "datatypes.h"
44
#include "virerror.h"
45
#include "viralloc.h"
46
#include "virlog.h"
47
#include "vircommand.h"
D
Dmitry Guryanov 已提交
48
#include "configmake.h"
49
#include "virfile.h"
50
#include "virstoragefile.h"
D
Dmitry Guryanov 已提交
51
#include "nodeinfo.h"
52
#include "c-ctype.h"
53
#include "virstring.h"
54
#include "cpu/cpu.h"
D
Dmitry Guryanov 已提交
55 56

#include "parallels_driver.h"
57
#include "parallels_utils.h"
58
#include "parallels_sdk.h"
D
Dmitry Guryanov 已提交
59 60 61

#define VIR_FROM_THIS VIR_FROM_PARALLELS

62 63
VIR_LOG_INIT("parallels.parallels_driver");

D
Dmitry Guryanov 已提交
64
#define PRLCTL                      "prlctl"
65
#define PRLSRVCTL                   "prlsrvctl"
D
Dmitry Guryanov 已提交
66

67 68 69 70 71 72 73 74
#define parallelsDomNotFoundError(domain)                                \
    do {                                                                 \
        char uuidstr[VIR_UUID_STRING_BUFLEN];                            \
        virUUIDFormat(domain->uuid, uuidstr);                            \
        virReportError(VIR_ERR_NO_DOMAIN,                                \
                       _("no domain with matching uuid '%s'"), uuidstr); \
    } while (0)

75 76
#define IS_CT(def)  (STREQ_NULLABLE(def->os.type, "exe"))

77
static int parallelsConnectClose(virConnectPtr conn);
D
Dmitry Guryanov 已提交
78

79 80 81 82 83 84 85 86 87 88 89 90 91
static const char * parallelsGetDiskBusName(int bus) {
    switch (bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
        return "ide";
    case VIR_DOMAIN_DISK_BUS_SATA:
        return "sata";
    case VIR_DOMAIN_DISK_BUS_SCSI:
        return "scsi";
    default:
        return NULL;
    }
}

D
Dmitry Guryanov 已提交
92
void
D
Dmitry Guryanov 已提交
93 94 95 96 97
parallelsDriverLock(parallelsConnPtr driver)
{
    virMutexLock(&driver->lock);
}

D
Dmitry Guryanov 已提交
98
void
D
Dmitry Guryanov 已提交
99 100 101 102 103 104
parallelsDriverUnlock(parallelsConnPtr driver)
{
    virMutexUnlock(&driver->lock);
}


105 106 107 108 109 110 111 112
static void
parallelsDomObjFreePrivate(void *p)
{
    parallelsDomObjPtr pdom = p;

    if (!pdom)
        return;

113
    virBitmapFree(pdom->cpumask);
114
    VIR_FREE(pdom->uuid);
115
    VIR_FREE(pdom->home);
116 117 118
    VIR_FREE(p);
};

D
Dmitry Guryanov 已提交
119 120 121
static virCapsPtr
parallelsBuildCapabilities(void)
{
122 123 124
    virCapsPtr caps = NULL;
    virCPUDefPtr cpu = NULL;
    virCPUDataPtr data = NULL;
D
Dmitry Guryanov 已提交
125
    virCapsGuestPtr guest;
126
    virNodeInfo nodeinfo;
D
Dmitry Guryanov 已提交
127

128
    if ((caps = virCapabilitiesNew(virArchFromHost(),
129
                                   false, false)) == NULL)
130
        return NULL;
D
Dmitry Guryanov 已提交
131 132

    if (nodeCapsInitNUMA(caps) < 0)
133
        goto error;
D
Dmitry Guryanov 已提交
134

135 136 137
    if ((guest = virCapabilitiesAddGuest(caps, "hvm",
                                         VIR_ARCH_X86_64,
                                         "parallels",
D
Dmitry Guryanov 已提交
138
                                         NULL, 0, NULL)) == NULL)
139
        goto error;
D
Dmitry Guryanov 已提交
140 141 142

    if (virCapabilitiesAddGuestDomain(guest,
                                      "parallels", NULL, NULL, 0, NULL) == NULL)
143
        goto error;
D
Dmitry Guryanov 已提交
144

145 146 147
    if ((guest = virCapabilitiesAddGuest(caps, "exe",
                                         VIR_ARCH_X86_64,
                                         "parallels",
148
                                         NULL, 0, NULL)) == NULL)
149
        goto error;
150 151 152

    if (virCapabilitiesAddGuestDomain(guest,
                                      "parallels", NULL, NULL, 0, NULL) == NULL)
153
        goto error;
154

155
    if (nodeGetInfo(&nodeinfo))
156 157
        goto error;

158
    if (VIR_ALLOC(cpu) < 0)
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
        goto error;

    cpu->arch = caps->host.arch;
    cpu->type = VIR_CPU_TYPE_HOST;
    cpu->sockets = nodeinfo.sockets;
    cpu->cores = nodeinfo.cores;
    cpu->threads = nodeinfo.threads;

    caps->host.cpu = cpu;

    if (!(data = cpuNodeData(cpu->arch))
        || cpuDecode(cpu, data, NULL, 0, NULL) < 0) {
        goto cleanup;
    }

 cleanup:
    cpuDataFree(data);
D
Dmitry Guryanov 已提交
176 177
    return caps;

178
 error:
179
    virObjectUnref(caps);
180
    goto cleanup;
D
Dmitry Guryanov 已提交
181 182 183
}

static char *
184
parallelsConnectGetCapabilities(virConnectPtr conn)
D
Dmitry Guryanov 已提交
185 186 187 188 189
{
    parallelsConnPtr privconn = conn->privateData;
    char *xml;

    parallelsDriverLock(privconn);
190
    xml = virCapabilitiesFormatXML(privconn->caps);
D
Dmitry Guryanov 已提交
191 192 193 194
    parallelsDriverUnlock(privconn);
    return xml;
}

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
static int
parallelsGetSerialInfo(virDomainChrDefPtr chr,
                       const char *name, virJSONValuePtr value)
{
    const char *tmp;

    chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL;
    chr->targetType = VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL;
    if (virStrToLong_i(name + strlen("serial"),
                       NULL, 10, &chr->target.port) < 0) {
        parallelsParseError();
        return -1;
    }

    if (virJSONValueObjectHasKey(value, "output")) {
        chr->source.type = VIR_DOMAIN_CHR_TYPE_FILE;

        tmp = virJSONValueObjectGetString(value, "output");
        if (!tmp) {
            parallelsParseError();
            return -1;
        }

218 219
        if (VIR_STRDUP(chr->source.data.file.path, tmp) < 0)
            return -1;
220 221 222 223 224 225 226 227 228
    } else if (virJSONValueObjectHasKey(value, "socket")) {
        chr->source.type = VIR_DOMAIN_CHR_TYPE_UNIX;

        tmp = virJSONValueObjectGetString(value, "socket");
        if (!tmp) {
            parallelsParseError();
            return -1;
        }

229 230
        if (VIR_STRDUP(chr->source.data.nix.path, tmp) < 0)
            return -1;
231 232 233 234 235 236 237 238 239 240
        chr->source.data.nix.listen = false;
    } else if (virJSONValueObjectHasKey(value, "real")) {
        chr->source.type = VIR_DOMAIN_CHR_TYPE_DEV;

        tmp = virJSONValueObjectGetString(value, "real");
        if (!tmp) {
            parallelsParseError();
            return -1;
        }

241 242
        if (VIR_STRDUP(chr->source.data.file.path, tmp) < 0)
            return -1;
243 244 245 246 247 248 249 250 251
    } else {
        parallelsParseError();
        return -1;
    }

    return 0;
}

static int
252
parallelsAddSerialInfo(virDomainChrDefPtr **serials, size_t *nserials,
253 254 255 256 257
                       const char *key, virJSONValuePtr value)
{
    virDomainChrDefPtr chr = NULL;

    if (!(chr = virDomainChrDefNew()))
258
        goto cleanup;
259 260 261 262

    if (parallelsGetSerialInfo(chr, key, value))
        goto cleanup;

263
    if (VIR_APPEND_ELEMENT(*serials, *nserials, chr) < 0)
264
        goto cleanup;
265 266 267

    return 0;

268
 cleanup:
269 270 271 272
    virDomainChrDefFree(chr);
    return -1;
}

273 274 275 276 277 278 279 280 281 282 283
static int
parallelsAddVideoInfo(virDomainDefPtr def, virJSONValuePtr value)
{
    virDomainVideoDefPtr video = NULL;
    virDomainVideoAccelDefPtr accel = NULL;
    const char *tmp;
    char *endptr;
    unsigned long mem;

    if (!(tmp = virJSONValueObjectGetString(value, "size"))) {
        parallelsParseError();
284
        goto error;
285 286 287 288
    }

    if (virStrToLong_ul(tmp, &endptr, 10, &mem) < 0) {
        parallelsParseError();
289
        goto error;
290 291 292 293
    }

    if (!STREQ(endptr, "Mb")) {
        parallelsParseError();
294
        goto error;
295 296 297
    }

    if (VIR_ALLOC(video) < 0)
298
        goto error;
299 300

    if (VIR_ALLOC(accel) < 0)
301
        goto error;
302

303
    if (VIR_APPEND_ELEMENT_COPY(def->videos, def->nvideos, video) < 0)
304
        goto error;
305 306 307 308 309 310 311 312

    video->type = VIR_DOMAIN_VIDEO_TYPE_VGA;
    video->vram = mem << 20;
    video->heads = 1;
    video->accel = accel;

    return 0;

313
 error:
314
    VIR_FREE(accel);
315 316 317 318
    virDomainVideoDefFree(video);
    return -1;
}

319 320 321 322 323 324 325 326 327 328 329 330
static int
parallelsGetHddInfo(virDomainDefPtr def,
                    virDomainDiskDefPtr disk,
                    const char *key,
                    virJSONValuePtr value)
{
    const char *tmp;
    unsigned int idx;

    disk->device = VIR_DOMAIN_DISK_DEVICE_DISK;

    if (virJSONValueObjectHasKey(value, "real") == 1) {
E
Eric Blake 已提交
331
        virDomainDiskSetType(disk, VIR_STORAGE_TYPE_BLOCK);
332 333 334 335 336 337

        if (!(tmp = virJSONValueObjectGetString(value, "real"))) {
            parallelsParseError();
            return -1;
        }

338
        if (virDomainDiskSetSource(disk, tmp) < 0)
339 340
            return -1;
    } else {
E
Eric Blake 已提交
341
        virDomainDiskSetType(disk, VIR_STORAGE_TYPE_FILE);
342 343 344 345 346 347

        if (!(tmp = virJSONValueObjectGetString(value, "image"))) {
            parallelsParseError();
            return -1;
        }

348
        if (virDomainDiskSetSource(disk, tmp) < 0)
349
            return -1;
350 351

        virDomainDiskSetFormat(disk, VIR_STORAGE_FILE_PLOOP);
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
    }

    tmp = virJSONValueObjectGetString(value, "port");
    if (!tmp && !IS_CT(def)) {
        parallelsParseError();
        return -1;
    }

    if (tmp) {
        if (STRPREFIX(tmp, "ide")) {
            disk->bus = VIR_DOMAIN_DISK_BUS_IDE;
        } else if (STRPREFIX(tmp, "sata")) {
            disk->bus = VIR_DOMAIN_DISK_BUS_SATA;
        } else if (STRPREFIX(tmp, "scsi")) {
            disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
        } else {
            parallelsParseError();
            return -1;
        }

        char *colonp;
        unsigned int pos;

        if (!(colonp = strchr(tmp, ':'))) {
            parallelsParseError();
            return -1;
        }

        if (virStrToLong_ui(colonp + 1, NULL, 10, &pos) < 0) {
            parallelsParseError();
            return -1;
        }

        disk->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE;
        disk->info.addr.drive.target = pos;
    } else {
        /* Actually there are no disk devices in containers, but in
         * in Parallels Cloud Server we mount disk images as container's
         * root fs during start, so it looks like a disk device. */
        disk->bus = VIR_DOMAIN_DISK_BUS_IDE;
    }

    if (virStrToLong_ui(key + strlen("hdd"), NULL, 10, &idx) < 0) {
        parallelsParseError();
        return -1;
    }

    if (!(disk->dst = virIndexToDiskName(idx, "sd")))
        return -1;

    return 0;
}

static int
parallelsAddHddInfo(virDomainDefPtr def, const char *key, virJSONValuePtr value)
{
    virDomainDiskDefPtr disk = NULL;

410
    if (!(disk = virDomainDiskDefNew()))
411
        goto error;
412 413 414 415

    if (parallelsGetHddInfo(def, disk, key, value))
        goto error;

416
    if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
417
        goto error;
418 419 420

    return 0;

421
 error:
422 423 424 425
    virDomainDiskDefFree(disk);
    return -1;
}

426 427 428 429 430 431 432 433 434 435 436 437 438 439
static inline unsigned char hex2int(char c)
{
    if (c <= '9')
        return c - '0';
    else
        return 10 + c - 'A';
}

/*
 * Parse MAC address in format XXXXXXXXXXXX.
 */
static int
parallelsMacAddrParse(const char *str, virMacAddrPtr addr)
{
440
    size_t i;
441 442 443 444 445 446 447 448 449 450 451 452

    if (strlen(str) != 12)
        goto error;

    for (i = 0; i < 6; i++) {
        if (!c_isxdigit(str[2 * i]) || !c_isxdigit(str[2 * i + 1]))
            goto error;

        addr->addr[i] = (hex2int(str[2 * i]) << 4) + hex2int(str[2 * i + 1]);
    }

    return 0;
453
 error:
454 455 456 457 458 459 460 461 462 463 464 465 466 467
    virReportError(VIR_ERR_INVALID_ARG,
                   _("Invalid MAC address format '%s'"), str);
    return -1;
}

static int
parallelsGetNetInfo(virDomainNetDefPtr net,
                    const char *key,
                    virJSONValuePtr value)
{
    const char *tmp;

    /* use device name, shown by prlctl as target device
     * for identifying network adapter in virDomainDefineXML */
468
    if (VIR_STRDUP(net->ifname, key) < 0)
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
        goto error;

    net->type = VIR_DOMAIN_NET_TYPE_NETWORK;

    if (!(tmp = virJSONValueObjectGetString(value, "mac"))) {
        parallelsParseError();
        return -1;
    }

    if (parallelsMacAddrParse(tmp, &net->mac) < 0) {
        parallelsParseError();
        goto error;
    }


484 485 486 487 488 489
    if (virJSONValueObjectHasKey(value, "network")) {
        if (!(tmp = virJSONValueObjectGetString(value, "network"))) {
            parallelsParseError();
            goto error;
        }

490
        if (VIR_STRDUP(net->data.network.name, tmp) < 0)
491 492 493 494 495 496 497 498 499 500 501 502
            goto error;
    } else if (virJSONValueObjectHasKey(value, "type")) {
        if (!(tmp = virJSONValueObjectGetString(value, "type"))) {
            parallelsParseError();
            goto error;
        }

        if (!STREQ(tmp, "routed")) {
            parallelsParseError();
            goto error;
        }

503 504
        if (VIR_STRDUP(net->data.network.name,
                       PARALLELS_ROUTED_NETWORK_NAME) < 0)
505 506 507
            goto error;
    } else {
        parallelsParseError();
508 509 510 511
        goto error;
    }

    net->linkstate = VIR_DOMAIN_NET_INTERFACE_LINK_STATE_UP;
512 513 514
    if ((tmp = virJSONValueObjectGetString(value, "state")) &&
        STREQ(tmp, "disconnected")) {
        net->linkstate = VIR_DOMAIN_NET_INTERFACE_LINK_STATE_DOWN;
515 516 517 518
    }

    return 0;

519
 error:
520 521 522 523 524 525 526 527 528
    return -1;
}

static int
parallelsAddNetInfo(virDomainDefPtr def, const char *key, virJSONValuePtr value)
{
    virDomainNetDefPtr net = NULL;

    if (VIR_ALLOC(net) < 0)
529
        goto error;
530 531 532 533 534

    if (parallelsGetNetInfo(net, key, value))
        goto error;

    if (VIR_EXPAND_N(def->nets, def->nnets, 1) < 0)
535
        goto error;
536 537 538 539 540

    def->nets[def->nnets - 1] = net;

    return 0;

541
 error:
542 543 544 545
    virDomainNetDefFree(net);
    return -1;
}

546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
static int
parallelsAddDomainHardware(virDomainDefPtr def, virJSONValuePtr jobj)
{
    int n;
    size_t i;
    virJSONValuePtr value;
    const char *key;

    n = virJSONValueObjectKeysNumber(jobj);
    if (n < 1)
        goto cleanup;

    for (i = 0; i < n; i++) {
        key = virJSONValueObjectGetKey(jobj, i);
        value = virJSONValueObjectGetValue(jobj, i);

        if (STRPREFIX(key, "serial")) {
563 564 565 566 567 568 569 570 571 572
            if (parallelsAddSerialInfo(&def->serials,
                                       &def->nserials, key, value))
                goto cleanup;
            if (def->nconsoles == 0) {
                if (parallelsAddSerialInfo(&def->consoles,
                                           &def->nconsoles, key, value))
                    goto cleanup;
            }
        } else if (STREQ(key, "video")) {
            if (parallelsAddVideoInfo(def, value))
573
                goto cleanup;
574 575 576
        } else if (STRPREFIX(key, "hdd")) {
            if (parallelsAddHddInfo(def, key, value))
                goto cleanup;
577 578 579
        } else if (STRPREFIX(key, "net")) {
            if (parallelsAddNetInfo(def, key, value))
                goto cleanup;
580 581 582 583 584
        }
    }

    return 0;

585
 cleanup:
586 587 588
    return -1;
}

589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
static int
parallelsAddVNCInfo(virDomainDefPtr def, virJSONValuePtr jobj_root)
{
    const char *tmp;
    unsigned int port;
    virJSONValuePtr jobj;
    int ret = -1;
    virDomainGraphicsDefPtr gr = NULL;

    jobj = virJSONValueObjectGet(jobj_root, "Remote display");
    if (!jobj) {
        parallelsParseError();
        goto cleanup;
    }

    tmp = virJSONValueObjectGetString(jobj, "mode");
    if (!tmp) {
        parallelsParseError();
        goto cleanup;
    }

    if (STREQ(tmp, "off")) {
        ret = 0;
        goto cleanup;
    }

    if (VIR_ALLOC(gr) < 0)
616
        goto cleanup;
617 618 619 620

    if (STREQ(tmp, "auto")) {
        if (virJSONValueObjectGetNumberUint(jobj, "port", &port) < 0)
            port = 0;
621
        gr->data.vnc.autoport = true;
622 623 624 625 626
    } else {
        if (virJSONValueObjectGetNumberUint(jobj, "port", &port) < 0) {
            parallelsParseError();
            goto cleanup;
        }
627
        gr->data.vnc.autoport = false;
628 629 630 631 632 633 634
    }

    gr->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;
    gr->data.vnc.port = port;
    gr->data.vnc.keymap = NULL;
    gr->data.vnc.socket = NULL;
    gr->data.vnc.auth.passwd = NULL;
635
    gr->data.vnc.auth.expires = false;
636 637 638 639 640 641 642 643
    gr->data.vnc.auth.connected = 0;

    if (!(tmp = virJSONValueObjectGetString(jobj, "address"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (VIR_ALLOC(gr->listens) < 0)
644
        goto cleanup;
645 646 647

    gr->nListens = 1;

648 649
    if (VIR_STRDUP(gr->listens[0].address, tmp) < 0)
        goto cleanup;
650 651 652

    gr->listens[0].type = VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS;

653
    if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, gr) < 0)
654
        goto cleanup;
655 656 657

    return 0;

658
 cleanup:
659 660 661 662
    virDomainGraphicsDefFree(gr);
    return ret;
}

663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
/*
 * Must be called with privconn->lock held
 */
static virDomainObjPtr
parallelsLoadDomain(parallelsConnPtr privconn, virJSONValuePtr jobj)
{
    virDomainObjPtr dom = NULL;
    virDomainDefPtr def = NULL;
    parallelsDomObjPtr pdom = NULL;
    virJSONValuePtr jobj2, jobj3;
    const char *tmp;
    char *endptr;
    unsigned long mem;
    unsigned int x;
    const char *autostart;
    const char *state;
679
    int hostcpus;
680 681

    if (VIR_ALLOC(def) < 0)
682
        goto cleanup;
683

684 685 686
    if (VIR_ALLOC(pdom) < 0)
        goto cleanup;

687 688 689 690 691 692 693
    def->virtType = VIR_DOMAIN_VIRT_PARALLELS;
    def->id = -1;

    if (!(tmp = virJSONValueObjectGetString(jobj, "Name"))) {
        parallelsParseError();
        goto cleanup;
    }
694 695
    if (VIR_STRDUP(def->name, tmp) < 0)
        goto cleanup;
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711

    if (!(tmp = virJSONValueObjectGetString(jobj, "ID"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (virUUIDParse(tmp, def->uuid) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("UUID in config file malformed"));
        goto cleanup;
    }

    if (!(tmp = virJSONValueObjectGetString(jobj, "Description"))) {
        parallelsParseError();
        goto cleanup;
    }
712 713
    if (VIR_STRDUP(def->description, tmp) < 0)
        goto cleanup;
714 715 716 717 718 719 720 721 722 723 724

    if (!(jobj2 = virJSONValueObjectGet(jobj, "Hardware"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (!(jobj3 = virJSONValueObjectGet(jobj2, "cpu"))) {
        parallelsParseError();
        goto cleanup;
    }

725 726 727 728 729 730 731
    if (virJSONValueObjectGetNumberUint(jobj3, "cpus", &x) == 0) {
        def->vcpus = x;
        def->maxvcpus = x;
    } else if ((tmp = virJSONValueObjectGetString(jobj3, "cpus"))) {
        if (STREQ(tmp, "unlimited")) {
            virNodeInfo nodeinfo;

732
            if (nodeGetInfo(&nodeinfo) < 0) {
733 734 735 736 737 738 739 740 741 742 743 744
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Can't get node info"));
                goto cleanup;
            }

            def->vcpus = nodeinfo.cpus;
            def->maxvcpus = def->vcpus;
        } else {
            parallelsParseError();
            goto cleanup;
        }
    } else {
745 746 747 748
        parallelsParseError();
        goto cleanup;
    }

749 750 751 752 753 754 755 756 757 758 759 760 761
    if ((hostcpus = nodeGetCPUCount()) < 0)
        goto cleanup;

    if (!(tmp = virJSONValueObjectGetString(jobj3, "mask"))) {
        /* Absence of this field means that all domains cpus are available */
        if (!(pdom->cpumask = virBitmapNew(hostcpus)))
            goto cleanup;
        virBitmapSetAll(pdom->cpumask);
    } else {
        if (virBitmapParse(tmp, 0, &pdom->cpumask, hostcpus) < 0)
            goto cleanup;
    }

762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
    if (!(jobj3 = virJSONValueObjectGet(jobj2, "memory"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (!(tmp = virJSONValueObjectGetString(jobj3, "size"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (virStrToLong_ul(tmp, &endptr, 10, &mem) < 0) {
        parallelsParseError();
        goto cleanup;
    }

    if (!STREQ(endptr, "Mb")) {
        parallelsParseError();
        goto cleanup;
    }

    def->mem.max_balloon = mem;
    def->mem.max_balloon <<= 10;
    def->mem.cur_balloon = def->mem.max_balloon;

786 787 788 789 790 791
    if (!(tmp = virJSONValueObjectGetString(jobj, "Type"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (STREQ(tmp, "CT")) {
792 793 794 795
        if (VIR_STRDUP(def->os.type, "exe") < 0)
            goto cleanup;
        if (VIR_STRDUP(def->os.init, "/sbin/init") < 0)
            goto cleanup;
796
    } else if (STREQ(tmp, "VM")) {
797 798
        if (VIR_STRDUP(def->os.type, "hvm") < 0)
            goto cleanup;
799
    }
800

801
    def->os.arch = VIR_ARCH_X86_64;
802 803 804 805 806 807 808 809

    if (virJSONValueObjectGetNumberUint(jobj, "EnvID", &x) < 0)
        goto cleanup;
    pdom->id = x;
    if (!(tmp = virJSONValueObjectGetString(jobj, "ID"))) {
        parallelsParseError();
        goto cleanup;
    }
810 811
    if (VIR_STRDUP(pdom->uuid, tmp) < 0)
        goto cleanup;
812

813 814 815 816 817
    if (!(tmp = virJSONValueObjectGetString(jobj, "Home"))) {
        parallelsParseError();
        goto cleanup;
    }

818 819
    if (VIR_STRDUP(pdom->home, tmp) < 0)
        goto cleanup;
820

821 822 823 824 825 826 827 828 829 830
    if (!(state = virJSONValueObjectGetString(jobj, "State"))) {
        parallelsParseError();
        goto cleanup;
    }

    if (!(autostart = virJSONValueObjectGetString(jobj, "Autostart"))) {
        parallelsParseError();
        goto cleanup;
    }

831 832 833
    if (parallelsAddDomainHardware(def, jobj2) < 0)
        goto cleanup;

834 835 836
    if (parallelsAddVNCInfo(def, jobj) < 0)
        goto cleanup;

837
    if (!(dom = virDomainObjListAdd(privconn->domains, def,
838
                                    privconn->xmlopt,
839
                                    0, NULL)))
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
        goto cleanup;
    /* dom is locked here */

    dom->privateDataFreeFunc = parallelsDomObjFreePrivate;
    dom->privateData = pdom;
    dom->persistent = 1;

    /* TODO: handle all possible states */
    if (STREQ(state, "running")) {
        virDomainObjSetState(dom, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_BOOTED);
        def->id = pdom->id;
    }

    if (STREQ(autostart, "on"))
        dom->autostart = 1;
    else
        dom->autostart = 0;

859
    virObjectUnlock(dom);
860 861 862

    return dom;

863
 cleanup:
864 865 866 867 868 869 870 871 872 873 874 875 876 877
    virDomainDefFree(def);
    parallelsDomObjFreePrivate(pdom);
    return NULL;
}

/*
 * Must be called with privconn->lock held
 *
 * if domain_name is NULL - load information about all
 * registered domains.
 */
static int
parallelsLoadDomains(parallelsConnPtr privconn, const char *domain_name)
{
878 879
    int count;
    size_t i;
880 881 882 883 884 885
    virJSONValuePtr jobj;
    virJSONValuePtr jobj2;
    virDomainObjPtr dom = NULL;
    int ret = -1;

    jobj = parallelsParseOutput(PRLCTL, "list", "-j", "-a", "-i", "-H",
886
                                "--vmtype", "all", domain_name, NULL);
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
    if (!jobj) {
        parallelsParseError();
        goto cleanup;
    }

    count = virJSONValueArraySize(jobj);
    if (count < 0) {
        parallelsParseError();
        goto cleanup;
    }

    for (i = 0; i < count; i++) {
        jobj2 = virJSONValueArrayGet(jobj, i);
        if (!jobj2) {
            parallelsParseError();
            goto cleanup;
        }

        dom = parallelsLoadDomain(privconn, jobj2);
        if (!dom)
            goto cleanup;
    }

    ret = 0;

912
 cleanup:
913 914 915 916
    virJSONValueFree(jobj);
    return ret;
}

917 918 919 920 921 922

virDomainDefParserConfig parallelsDomainDefParserConfig = {
    .macPrefix = {0x42, 0x1C, 0x00},
};


D
Dmitry Guryanov 已提交
923 924 925 926 927
static int
parallelsOpenDefault(virConnectPtr conn)
{
    parallelsConnPtr privconn;

928
    if (VIR_ALLOC(privconn) < 0)
D
Dmitry Guryanov 已提交
929 930 931 932
        return VIR_DRV_OPEN_ERROR;
    if (virMutexInit(&privconn->lock) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("cannot initialize mutex"));
933 934 935 936 937 938
        goto err_free;
    }

    if (prlsdkInit(privconn)) {
        VIR_DEBUG("%s", _("Can't initialize Parallels SDK"));
        goto err_free;
D
Dmitry Guryanov 已提交
939 940
    }

941 942 943
    if (prlsdkConnect(privconn) < 0)
        goto err_free;

D
Dmitry Guryanov 已提交
944 945 946
    if (!(privconn->caps = parallelsBuildCapabilities()))
        goto error;

947 948
    if (!(privconn->xmlopt = virDomainXMLOptionNew(&parallelsDomainDefParserConfig,
                                                 NULL, NULL)))
949 950
        goto error;

951
    if (!(privconn->domains = virDomainObjListNew()))
D
Dmitry Guryanov 已提交
952 953 954 955
        goto error;

    conn->privateData = privconn;

956 957 958
    if (parallelsLoadDomains(privconn, NULL))
        goto error;

D
Dmitry Guryanov 已提交
959 960
    return VIR_DRV_OPEN_SUCCESS;

961
 error:
962
    virObjectUnref(privconn->domains);
963
    virObjectUnref(privconn->caps);
D
Dmitry Guryanov 已提交
964
    virStoragePoolObjListFree(&privconn->pools);
965 966 967
    prlsdkDisconnect(privconn);
    prlsdkDeinit();
 err_free:
D
Dmitry Guryanov 已提交
968 969 970 971 972
    VIR_FREE(privconn);
    return VIR_DRV_OPEN_ERROR;
}

static virDrvOpenStatus
973 974 975
parallelsConnectOpen(virConnectPtr conn,
                     virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                     unsigned int flags)
D
Dmitry Guryanov 已提交
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
{
    int ret;

    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

    if (!conn->uri)
        return VIR_DRV_OPEN_DECLINED;

    if (!conn->uri->scheme || STRNEQ(conn->uri->scheme, "parallels"))
        return VIR_DRV_OPEN_DECLINED;

    /* Remote driver should handle these. */
    if (conn->uri->server)
        return VIR_DRV_OPEN_DECLINED;

    /* From this point on, the connection is for us. */
992 993 994 995
    if (!STREQ_NULLABLE(conn->uri->path, "/system")) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unexpected Parallels URI path '%s', try parallels:///system"),
                       conn->uri->path);
D
Dmitry Guryanov 已提交
996 997 998
        return VIR_DRV_OPEN_ERROR;
    }

999
    if ((ret = parallelsOpenDefault(conn)) != VIR_DRV_OPEN_SUCCESS)
D
Dmitry Guryanov 已提交
1000 1001 1002 1003 1004 1005
        return ret;

    return VIR_DRV_OPEN_SUCCESS;
}

static int
1006
parallelsConnectClose(virConnectPtr conn)
D
Dmitry Guryanov 已提交
1007 1008 1009 1010
{
    parallelsConnPtr privconn = conn->privateData;

    parallelsDriverLock(privconn);
1011
    virObjectUnref(privconn->caps);
1012
    virObjectUnref(privconn->xmlopt);
1013
    virObjectUnref(privconn->domains);
1014
    prlsdkDisconnect(privconn);
D
Dmitry Guryanov 已提交
1015
    conn->privateData = NULL;
1016
    prlsdkDeinit();
D
Dmitry Guryanov 已提交
1017 1018 1019 1020 1021 1022 1023 1024 1025

    parallelsDriverUnlock(privconn);
    virMutexDestroy(&privconn->lock);

    VIR_FREE(privconn);
    return 0;
}

static int
1026
parallelsConnectGetVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *hvVer)
D
Dmitry Guryanov 已提交
1027
{
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
    char *output, *sVer, *tmp;
    const char *searchStr = "prlsrvctl version ";
    int ret = -1;

    output = parallelsGetOutput(PRLSRVCTL, "--help", NULL);

    if (!output) {
        parallelsParseError();
        goto cleanup;
    }

    if (!(sVer = strstr(output, searchStr))) {
        parallelsParseError();
        goto cleanup;
    }

    sVer = sVer + strlen(searchStr);

    /* parallels server has versions number like 6.0.17977.782218,
     * so libvirt can handle only first two numbers. */
    if (!(tmp = strchr(sVer, '.'))) {
        parallelsParseError();
        goto cleanup;
    }

    if (!(tmp = strchr(tmp + 1, '.'))) {
        parallelsParseError();
        goto cleanup;
    }

    tmp[0] = '\0';
    if (virParseVersionString(sVer, hvVer, true) < 0) {
        parallelsParseError();
        goto cleanup;
    }

    ret = 0;

1066
 cleanup:
1067 1068 1069 1070
    VIR_FREE(output);
    return ret;
}

1071 1072 1073 1074 1075 1076 1077

static char *parallelsConnectGetHostname(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return virGetHostname();
}


1078
static int
1079
parallelsConnectListDomains(virConnectPtr conn, int *ids, int maxids)
1080 1081 1082 1083 1084
{
    parallelsConnPtr privconn = conn->privateData;
    int n;

    parallelsDriverLock(privconn);
1085 1086
    n = virDomainObjListGetActiveIDs(privconn->domains, ids, maxids,
                                     NULL, NULL);
1087 1088 1089 1090 1091 1092
    parallelsDriverUnlock(privconn);

    return n;
}

static int
1093
parallelsConnectNumOfDomains(virConnectPtr conn)
1094 1095 1096 1097 1098
{
    parallelsConnPtr privconn = conn->privateData;
    int count;

    parallelsDriverLock(privconn);
1099 1100
    count = virDomainObjListNumOfDomains(privconn->domains, true,
                                         NULL, NULL);
1101 1102 1103 1104 1105 1106
    parallelsDriverUnlock(privconn);

    return count;
}

static int
1107
parallelsConnectListDefinedDomains(virConnectPtr conn, char **const names, int maxnames)
1108 1109 1110 1111 1112 1113
{
    parallelsConnPtr privconn = conn->privateData;
    int n;

    parallelsDriverLock(privconn);
    memset(names, 0, sizeof(*names) * maxnames);
1114
    n = virDomainObjListGetInactiveNames(privconn->domains, names,
1115
                                         maxnames, NULL, NULL);
1116 1117 1118 1119 1120 1121
    parallelsDriverUnlock(privconn);

    return n;
}

static int
1122
parallelsConnectNumOfDefinedDomains(virConnectPtr conn)
1123 1124 1125 1126 1127
{
    parallelsConnPtr privconn = conn->privateData;
    int count;

    parallelsDriverLock(privconn);
1128 1129
    count = virDomainObjListNumOfDomains(privconn->domains, false,
                                         NULL, NULL);
1130 1131 1132 1133 1134 1135
    parallelsDriverUnlock(privconn);

    return count;
}

static int
1136 1137 1138
parallelsConnectListAllDomains(virConnectPtr conn,
                               virDomainPtr **domains,
                               unsigned int flags)
1139 1140 1141 1142
{
    parallelsConnPtr privconn = conn->privateData;
    int ret = -1;

O
Osier Yang 已提交
1143
    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);
1144
    parallelsDriverLock(privconn);
1145 1146
    ret = virDomainObjListExport(privconn->domains, conn, domains,
                                 NULL, flags);
1147 1148 1149 1150 1151 1152
    parallelsDriverUnlock(privconn);

    return ret;
}

static virDomainPtr
1153
parallelsDomainLookupByID(virConnectPtr conn, int id)
1154 1155 1156 1157 1158 1159
{
    parallelsConnPtr privconn = conn->privateData;
    virDomainPtr ret = NULL;
    virDomainObjPtr dom;

    parallelsDriverLock(privconn);
1160
    dom = virDomainObjListFindByID(privconn->domains, id);
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
    parallelsDriverUnlock(privconn);

    if (dom == NULL) {
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
        goto cleanup;
    }

    ret = virGetDomain(conn, dom->def->name, dom->def->uuid);
    if (ret)
        ret->id = dom->def->id;

1172
 cleanup:
1173
    if (dom)
1174
        virObjectUnlock(dom);
1175 1176 1177 1178
    return ret;
}

static virDomainPtr
1179
parallelsDomainLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
1180 1181 1182 1183 1184 1185
{
    parallelsConnPtr privconn = conn->privateData;
    virDomainPtr ret = NULL;
    virDomainObjPtr dom;

    parallelsDriverLock(privconn);
1186
    dom = virDomainObjListFindByUUID(privconn->domains, uuid);
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
    parallelsDriverUnlock(privconn);

    if (dom == NULL) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    ret = virGetDomain(conn, dom->def->name, dom->def->uuid);
    if (ret)
        ret->id = dom->def->id;

1201
 cleanup:
1202
    if (dom)
1203
        virObjectUnlock(dom);
1204 1205 1206 1207
    return ret;
}

static virDomainPtr
1208
parallelsDomainLookupByName(virConnectPtr conn, const char *name)
1209 1210 1211 1212 1213 1214
{
    parallelsConnPtr privconn = conn->privateData;
    virDomainPtr ret = NULL;
    virDomainObjPtr dom;

    parallelsDriverLock(privconn);
1215
    dom = virDomainObjListFindByName(privconn->domains, name);
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
    parallelsDriverUnlock(privconn);

    if (dom == NULL) {
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching name '%s'"), name);
        goto cleanup;
    }

    ret = virGetDomain(conn, dom->def->name, dom->def->uuid);
    if (ret)
        ret->id = dom->def->id;

1228
 cleanup:
1229
    if (dom)
1230
        virObjectUnlock(dom);
1231 1232 1233 1234
    return ret;
}

static int
1235
parallelsDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
1236 1237 1238 1239 1240 1241
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr privdom;
    int ret = -1;

    parallelsDriverLock(privconn);
1242
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
    parallelsDriverUnlock(privconn);

    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    info->state = virDomainObjGetState(privdom, NULL);
    info->memory = privdom->def->mem.cur_balloon;
    info->maxMem = privdom->def->mem.max_balloon;
    info->nrVirtCpu = privdom->def->vcpus;
    info->cpuTime = 0;
    ret = 0;

1257
 cleanup:
1258
    if (privdom)
1259
        virObjectUnlock(privdom);
1260 1261 1262 1263
    return ret;
}

static char *
1264
parallelsDomainGetOSType(virDomainPtr domain)
1265 1266 1267 1268 1269 1270 1271
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr privdom;

    char *ret = NULL;

    parallelsDriverLock(privconn);
1272
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1273 1274 1275 1276 1277
    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

1278
    ignore_value(VIR_STRDUP(ret, privdom->def->os.type));
1279

1280
 cleanup:
1281
    if (privdom)
1282
        virObjectUnlock(privdom);
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
    parallelsDriverUnlock(privconn);
    return ret;
}

static int
parallelsDomainIsPersistent(virDomainPtr domain)
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr privdom;
    int ret = -1;

    parallelsDriverLock(privconn);
1295
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1296 1297 1298 1299 1300 1301 1302
    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    ret = 1;

1303
 cleanup:
1304
    if (privdom)
1305
        virObjectUnlock(privdom);
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
    parallelsDriverUnlock(privconn);
    return ret;
}

static int
parallelsDomainGetState(virDomainPtr domain,
                  int *state, int *reason, unsigned int flags)
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr privdom;
    int ret = -1;
    virCheckFlags(0, -1);

    parallelsDriverLock(privconn);
1320
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
    parallelsDriverUnlock(privconn);

    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    *state = virDomainObjGetState(privdom, reason);
    ret = 0;

1331
 cleanup:
1332
    if (privdom)
1333
        virObjectUnlock(privdom);
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
    return ret;
}

static char *
parallelsDomainGetXMLDesc(virDomainPtr domain, unsigned int flags)
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainDefPtr def;
    virDomainObjPtr privdom;
    char *ret = NULL;

    /* Flags checked by virDomainDefFormat */

    parallelsDriverLock(privconn);
1348
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
    parallelsDriverUnlock(privconn);

    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    def = (flags & VIR_DOMAIN_XML_INACTIVE) &&
        privdom->newDef ? privdom->newDef : privdom->def;

    ret = virDomainDefFormat(def, flags);

1361
 cleanup:
1362
    if (privdom)
1363
        virObjectUnlock(privdom);
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
    return ret;
}

static int
parallelsDomainGetAutostart(virDomainPtr domain, int *autostart)
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr privdom;
    int ret = -1;

    parallelsDriverLock(privconn);
1375
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
    parallelsDriverUnlock(privconn);

    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    *autostart = privdom->autostart;
    ret = 0;

1386
 cleanup:
1387
    if (privdom)
1388
        virObjectUnlock(privdom);
1389
    return ret;
D
Dmitry Guryanov 已提交
1390 1391
}

1392
typedef int (*parallelsChangeStateFunc)(virDomainObjPtr privdom);
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
#define PARALLELS_UUID(x)     (((parallelsDomObjPtr)(x->privateData))->uuid)

static int
parallelsDomainChangeState(virDomainPtr domain,
                           virDomainState req_state, const char *req_state_name,
                           parallelsChangeStateFunc chstate,
                           virDomainState new_state, int reason)
{
    parallelsConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr privdom;
    int state;
    int ret = -1;

    parallelsDriverLock(privconn);
1407
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
    parallelsDriverUnlock(privconn);

    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    state = virDomainObjGetState(privdom, NULL);
    if (state != req_state) {
        virReportError(VIR_ERR_INTERNAL_ERROR, _("domain '%s' not %s"),
                       privdom->def->name, req_state_name);
        goto cleanup;
    }

    if (chstate(privdom))
        goto cleanup;

    virDomainObjSetState(privdom, new_state, reason);

    ret = 0;

1429
 cleanup:
1430
    if (privdom)
1431
        virObjectUnlock(privdom);
1432 1433 1434 1435 1436 1437 1438 1439 1440 1441

    return ret;
}

static int parallelsPause(virDomainObjPtr privdom)
{
    return parallelsCmdRun(PRLCTL, "pause", PARALLELS_UUID(privdom), NULL);
}

static int
1442
parallelsDomainSuspend(virDomainPtr domain)
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
{
    return parallelsDomainChangeState(domain,
                                      VIR_DOMAIN_RUNNING, "running",
                                      parallelsPause,
                                      VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
}

static int parallelsResume(virDomainObjPtr privdom)
{
    return parallelsCmdRun(PRLCTL, "resume", PARALLELS_UUID(privdom), NULL);
}

static int
1456
parallelsDomainResume(virDomainPtr domain)
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483
{
    return parallelsDomainChangeState(domain,
                                      VIR_DOMAIN_PAUSED, "paused",
                                      parallelsResume,
                                      VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_UNPAUSED);
}

static int parallelsStart(virDomainObjPtr privdom)
{
    return parallelsCmdRun(PRLCTL, "start", PARALLELS_UUID(privdom), NULL);
}

static int
parallelsDomainCreate(virDomainPtr domain)
{
    return parallelsDomainChangeState(domain,
                                      VIR_DOMAIN_SHUTOFF, "stopped",
                                      parallelsStart,
                                      VIR_DOMAIN_RUNNING, VIR_DOMAIN_EVENT_STARTED_BOOTED);
}

static int parallelsKill(virDomainObjPtr privdom)
{
    return parallelsCmdRun(PRLCTL, "stop", PARALLELS_UUID(privdom), "--kill", NULL);
}

static int
1484
parallelsDomainDestroy(virDomainPtr domain)
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
{
    return parallelsDomainChangeState(domain,
                                      VIR_DOMAIN_RUNNING, "running",
                                      parallelsKill,
                                      VIR_DOMAIN_SHUTOFF, VIR_DOMAIN_SHUTOFF_DESTROYED);
}

static int parallelsStop(virDomainObjPtr privdom)
{
    return parallelsCmdRun(PRLCTL, "stop", PARALLELS_UUID(privdom), NULL);
}

static int
1498
parallelsDomainShutdown(virDomainPtr domain)
1499 1500 1501 1502 1503 1504 1505
{
    return parallelsDomainChangeState(domain,
                                      VIR_DOMAIN_RUNNING, "running",
                                      parallelsStop,
                                      VIR_DOMAIN_SHUTOFF, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
}

1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
static int
parallelsApplyGraphicsParams(virDomainGraphicsDefPtr *oldgraphics, int nold,
                             virDomainGraphicsDefPtr *newgraphics, int nnew)
{
    virDomainGraphicsDefPtr new, old;

    /* parallels server supports only 1 VNC display per VM */
    if (nold != nnew || nnew > 1)
        goto error;

    if (nnew == 0)
        return 0;

    if (newgraphics[0]->type != VIR_DOMAIN_GRAPHICS_TYPE_VNC)
        goto error;

    old = oldgraphics[0];
    new = newgraphics[0];

    if (old->data.vnc.port != new->data.vnc.port &&
1526
        (old->data.vnc.port != 0 && new->data.vnc.port != 0)) {
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547

        goto error;
    } else if (old->data.vnc.autoport != new->data.vnc.autoport ||
        new->data.vnc.keymap != NULL ||
        new->data.vnc.socket != NULL ||
        !STREQ_NULLABLE(old->data.vnc.auth.passwd, new->data.vnc.auth.passwd) ||
        old->data.vnc.auth.expires != new->data.vnc.auth.expires ||
        old->data.vnc.auth.validTo != new->data.vnc.auth.validTo ||
        old->data.vnc.auth.connected != new->data.vnc.auth.connected) {

        goto error;
    } else if (old->nListens != new->nListens ||
               new->nListens > 1 ||
               old->listens[0].type != new->listens[0].type ||
                 !STREQ_NULLABLE(old->listens[0].address, new->listens[0].address) ||
                 !STREQ_NULLABLE(old->listens[0].network, new->listens[0].network)) {

        goto error;
    }

    return 0;
1548
 error:
1549
    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1550 1551 1552 1553 1554 1555 1556 1557 1558
                   _("changing display parameters is not supported "
                     "by parallels driver"));
    return -1;
}

static int
parallelsApplySerialParams(virDomainChrDefPtr *oldserials, int nold,
                           virDomainChrDefPtr *newserials, int nnew)
{
1559
    size_t i, j;
1560

1561 1562 1563
    if (nold != nnew)
        goto error;

1564
    for (i = 0; i < nold; i++) {
1565 1566 1567
        virDomainChrDefPtr oldserial = oldserials[i];
        virDomainChrDefPtr newserial = NULL;

1568
        for (j = 0; j < nnew; j++) {
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585
            if (newserials[j]->target.port == oldserial->target.port) {
                newserial = newserials[j];
                break;
            }
        }

        if (!newserial)
            goto error;

        if (oldserial->source.type != newserial->source.type)
            goto error;

        if ((newserial->source.type == VIR_DOMAIN_CHR_TYPE_DEV ||
            newserial->source.type == VIR_DOMAIN_CHR_TYPE_FILE) &&
            !STREQ_NULLABLE(oldserial->source.data.file.path,
                            newserial->source.data.file.path))
            goto error;
1586
        if (newserial->source.type == VIR_DOMAIN_CHR_TYPE_UNIX &&
1587 1588 1589 1590 1591 1592 1593 1594 1595
           (!STREQ_NULLABLE(oldserial->source.data.nix.path,
                            newserial->source.data.nix.path) ||
            oldserial->source.data.nix.listen == newserial->source.data.nix.listen)) {

            goto error;
        }
    }

    return 0;
1596
 error:
1597
    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
                   _("changing serial device parameters is "
                     "not supported by parallels driver"));
    return -1;
}

static int
parallelsApplyVideoParams(parallelsDomObjPtr pdom,
                          virDomainVideoDefPtr *oldvideos, int nold,
                           virDomainVideoDefPtr *newvideos, int nnew)
{
    virDomainVideoDefPtr old, new;
    char str_vram[32];

    if (nold != 1 || nnew != 1) {
1612
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1613 1614 1615 1616 1617 1618 1619 1620
                       _("Only one video device is "
                         "supported by parallels driver"));
        return -1;
    }

    old = oldvideos[0];
    new = newvideos[0];
    if (new->type != VIR_DOMAIN_VIDEO_TYPE_VGA) {
1621
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1622 1623 1624 1625 1626 1627
                       _("Only VGA video device is "
                         "supported by parallels driver"));
        return -1;
    }

    if (new->heads != 1) {
1628
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1629 1630 1631 1632 1633 1634 1635 1636 1637
                       _("Only one monitor is supported by parallels driver"));
        return -1;
    }

    /* old->accel must be always non-NULL */
    if (new->accel == NULL ||
        old->accel->support2d != new->accel->support2d ||
        old->accel->support3d != new->accel->support3d) {

1638
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1639 1640 1641
                   _("Changing video acceleration parameters is "
                     "not supported by parallels driver"));
        return -1;
1642

1643 1644 1645
    }

    if (old->vram != new->vram) {
1646
        if (new->vram % (1 << 10) != 0) {
1647
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1648 1649 1650 1651
                       _("Video RAM size should be multiple of 1Mb."));
            return -1;
        }

1652
        snprintf(str_vram, 31, "%dK", new->vram);
1653 1654 1655 1656 1657 1658 1659 1660 1661
        str_vram[31] = '\0';

        if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                            "--videosize", str_vram, NULL))
            return -1;
    }
    return 0;
}

D
Dmitry Guryanov 已提交
1662 1663
static int parallelsAddHdd(parallelsDomObjPtr pdom,
                           virDomainDiskDefPtr disk)
1664 1665
{
    int ret = -1;
D
Dmitry Guryanov 已提交
1666 1667
    const char *src = virDomainDiskGetSource(disk);
    int type = virDomainDiskGetType(disk);
1668 1669 1670 1671
    const char *strbus;

    virCommandPtr cmd = virCommandNewArgList(PRLCTL, "set", pdom->uuid,
                                             "--device-add", "hdd", NULL);
D
Dmitry Guryanov 已提交
1672 1673 1674 1675 1676

    if (type == VIR_STORAGE_TYPE_FILE) {
        int format = virDomainDiskGetFormat(disk);

        if (format != VIR_STORAGE_FILE_PLOOP) {
1677
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
D
Dmitry Guryanov 已提交
1678 1679 1680 1681 1682 1683 1684 1685
                           _("Invalid disk format: %d"), type);
            goto cleanup;
        }

        virCommandAddArg(cmd, "--image");
    } else if (VIR_STORAGE_TYPE_BLOCK) {
        virCommandAddArg(cmd, "--device");
    } else {
1686
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
D
Dmitry Guryanov 已提交
1687 1688 1689 1690 1691
                       _("Invalid disk type: %d"), type);
        goto cleanup;
    }

    virCommandAddArg(cmd, src);
1692 1693

    if (!(strbus = parallelsGetDiskBusName(disk->bus))) {
1694
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
                       _("Invalid disk bus: %d"), disk->bus);
        goto cleanup;
    }

    virCommandAddArgFormat(cmd, "--iface=%s", strbus);

    if (disk->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE)
        virCommandAddArgFormat(cmd, "--position=%d",
                               disk->info.addr.drive.target);

1705
    if (virCommandRun(cmd, NULL) < 0)
1706 1707 1708 1709
        goto cleanup;

    ret = 0;

1710
 cleanup:
D
Dmitry Guryanov 已提交
1711
    virCommandFree(cmd);
1712 1713 1714
    return ret;
}

1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730
static int parallelsRemoveHdd(parallelsDomObjPtr pdom,
                              virDomainDiskDefPtr disk)
{
    char prlname[16];

    prlname[15] = '\0';
    snprintf(prlname, 15, "hdd%d", virDiskNameToIndex(disk->dst));

    if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                        "--device-del", prlname,
                        "--detach-only", NULL))
        return -1;

    return 0;
}

1731
static int
D
Dmitry Guryanov 已提交
1732
parallelsApplyDisksParams(parallelsDomObjPtr pdom,
1733 1734 1735
                          virDomainDiskDefPtr *olddisks, int nold,
                          virDomainDiskDefPtr *newdisks, int nnew)
{
1736
    size_t i, j;
1737

1738
    for (i = 0; i < nold; i++) {
1739 1740
        virDomainDiskDefPtr newdisk = NULL;
        virDomainDiskDefPtr olddisk = olddisks[i];
1741
        for (j = 0; j < nnew; j++) {
1742 1743 1744 1745 1746 1747 1748
            if (STREQ_NULLABLE(newdisks[j]->dst, olddisk->dst)) {
                newdisk = newdisks[j];
                break;
            }
        }

        if (!newdisk) {
1749
            if (parallelsRemoveHdd(pdom, olddisk)) {
1750
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1751 1752 1753 1754 1755 1756
                               _("Can't remove disk '%s' "
                                 "in the specified config"), olddisks[i]->serial);
                return -1;
            }

            continue;
1757 1758 1759 1760
        }

        if (olddisk->bus != newdisk->bus ||
            olddisk->info.addr.drive.target != newdisk->info.addr.drive.target ||
1761 1762
            !STREQ_NULLABLE(virDomainDiskGetSource(olddisk),
                            virDomainDiskGetSource(newdisk))) {
1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773

            char prlname[16];
            char strpos[16];
            const char *strbus;

            prlname[15] = '\0';
            snprintf(prlname, 15, "hdd%d", virDiskNameToIndex(newdisk->dst));

            strpos[15] = '\0';
            snprintf(strpos, 15, "%d", newdisk->info.addr.drive.target);

1774
            if (!(strbus = parallelsGetDiskBusName(newdisk->bus))) {
1775
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1776
                               _("Unsupported disk bus: %d"), newdisk->bus);
1777
                return -1;
1778
            }
1779

1780 1781 1782 1783 1784 1785 1786 1787 1788
            if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                                "--device-set", prlname,
                                "--iface", strbus,
                                "--position", strpos,
                                "--image", newdisk->src, NULL))
                return -1;
        }
    }

1789 1790 1791 1792 1793 1794 1795 1796 1797
    for (i = 0; i < nnew; i++) {
        virDomainDiskDefPtr newdisk = newdisks[i];
        bool found = false;
        for (j = 0; j < nold; j++)
            if (STREQ_NULLABLE(olddisks[j]->dst, newdisk->dst))
                found = true;
        if (found)
            continue;

D
Dmitry Guryanov 已提交
1798
        if (parallelsAddHdd(pdom, newdisk))
1799 1800 1801
            return -1;
    }

1802 1803 1804
    return 0;
}

1805 1806 1807 1808 1809 1810
static int parallelsApplyIfaceParams(parallelsDomObjPtr pdom,
                                     virDomainNetDefPtr oldnet,
                                     virDomainNetDefPtr newnet)
{
    bool create = false;
    bool is_changed = false;
1811
    virCommandPtr cmd = NULL;
1812
    char strmac[VIR_MAC_STRING_BUFLEN];
1813
    size_t i;
1814
    int ret = -1;
1815 1816 1817

    if (!oldnet) {
        create = true;
1818
        if (VIR_ALLOC(oldnet) < 0)
1819 1820 1821 1822
            return -1;
    }

    if (!create && oldnet->type != newnet->type) {
1823
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1824
                       _("Changing network type is not supported"));
1825
        goto cleanup;
1826 1827 1828
    }

    if (!STREQ_NULLABLE(oldnet->model, newnet->model)) {
1829
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1830
                       _("Changing network device model is not supported"));
1831
        goto cleanup;
1832 1833 1834 1835
    }

    if (!STREQ_NULLABLE(oldnet->data.network.portgroup,
                        newnet->data.network.portgroup)) {
1836
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1837
                       _("Changing network portgroup is not supported"));
1838
        goto cleanup;
1839 1840 1841 1842
    }

    if (!virNetDevVPortProfileEqual(oldnet->virtPortProfile,
                                    newnet->virtPortProfile)) {
1843
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1844
                       _("Changing virtual port profile is not supported"));
1845
        goto cleanup;
1846 1847 1848
    }

    if (newnet->tune.sndbuf_specified) {
1849
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1850
                       _("Setting send buffer size is not supported"));
1851
        goto cleanup;
1852 1853 1854
    }

    if (!STREQ_NULLABLE(oldnet->script, newnet->script)) {
1855
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1856
                       _("Setting startup script is not supported"));
1857
        goto cleanup;
1858 1859 1860
    }

    if (!STREQ_NULLABLE(oldnet->filter, newnet->filter)) {
1861
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1862
                       _("Changing filter params is not supported"));
1863
        goto cleanup;
1864 1865 1866
    }

    if (newnet->bandwidth != NULL) {
1867
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1868
                       _("Setting bandwidth params is not supported"));
1869
        goto cleanup;
1870 1871 1872 1873
    }

    for (i = 0; i < sizeof(newnet->vlan); i++) {
        if (((char *)&newnet->vlan)[i] != 0) {
1874
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1875
                           _("Setting vlan params is not supported"));
1876
            goto cleanup;
1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
        }
    }

    /* Here we know, that there are no differences, that are forbidden.
     * Check is something changed, if no - do nothing */

    if (create) {
        cmd = virCommandNewArgList(PRLCTL, "set", pdom->uuid,
                                   "--device-add", "net", NULL);
    } else {
        cmd = virCommandNewArgList(PRLCTL, "set", pdom->uuid,
                                   "--device-set", newnet->ifname, NULL);
    }

    if (virMacAddrCmp(&oldnet->mac, &newnet->mac)) {
        virMacAddrFormat(&newnet->mac, strmac);
        virCommandAddArgFormat(cmd, "--mac=%s", strmac);
        is_changed = true;
    }

    if (!STREQ_NULLABLE(oldnet->data.network.name, newnet->data.network.name)) {
1898 1899 1900 1901 1902 1903 1904 1905
        if (STREQ_NULLABLE(newnet->data.network.name,
                           PARALLELS_ROUTED_NETWORK_NAME)) {
            virCommandAddArgFormat(cmd, "--type=routed");
        } else {
            virCommandAddArgFormat(cmd, "--network=%s",
                                   newnet->data.network.name);
        }

1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
        is_changed = true;
    }

    if (oldnet->linkstate != newnet->linkstate) {
        if (newnet->linkstate == VIR_DOMAIN_NET_INTERFACE_LINK_STATE_UP) {
            virCommandAddArgFormat(cmd, "--connect");
        } else if (newnet->linkstate == VIR_DOMAIN_NET_INTERFACE_LINK_STATE_DOWN) {
            virCommandAddArgFormat(cmd, "--disconnect");
        }
        is_changed = true;
    }

    if (!create && !is_changed) {
        /* nothing changed - no need to run prlctl */
1920 1921
        ret = 0;
        goto cleanup;
1922 1923
    }

1924 1925
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;
1926

1927 1928
    ret = 0;

1929
 cleanup:
1930 1931 1932 1933
    if (create)
        VIR_FREE(oldnet);
    virCommandFree(cmd);
    return ret;
1934 1935 1936 1937 1938 1939 1940
}

static int
parallelsApplyIfacesParams(parallelsDomObjPtr pdom,
                            virDomainNetDefPtr *oldnets, int nold,
                            virDomainNetDefPtr *newnets, int nnew)
{
1941
    size_t i, j;
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
    virDomainNetDefPtr newnet;
    virDomainNetDefPtr oldnet;
    bool found;

    for (i = 0; i < nold; i++) {
        newnet = NULL;
        oldnet = oldnets[i];
        for (j = 0; j < nnew; j++) {
            if (STREQ_NULLABLE(newnets[j]->ifname, oldnet->ifname)) {
                newnet = newnets[j];
                break;
            }
        }

        if (!newnet) {
            if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                                "--device-del", oldnet->ifname, NULL) < 0)
                return -1;

            continue;
        }

        if (parallelsApplyIfaceParams(pdom, oldnet, newnet) < 0)
            return -1;
    }

    for (i = 0; i < nnew; i++) {
        newnet = newnets[i];
        found = false;

        for (j = 0; j < nold; j++)
            if (STREQ_NULLABLE(oldnets[j]->ifname, newnet->ifname))
                found = true;
        if (found)
            continue;

        if (parallelsApplyIfaceParams(pdom, NULL, newnet))
            return -1;
    }

    return 0;
}

1985
static int
D
Dmitry Guryanov 已提交
1986
parallelsApplyChanges(virDomainObjPtr dom, virDomainDefPtr new)
1987 1988
{
    char buf[32];
1989
    size_t i;
1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006

    virDomainDefPtr old = dom->def;
    parallelsDomObjPtr pdom = dom->privateData;

    if (new->description && !STREQ_NULLABLE(old->description, new->description)) {
        if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                            "--description", new->description, NULL))
            return -1;
    }

    if (new->name && !STREQ_NULLABLE(old->name, new->name)) {
        if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                            "--name", new->name, NULL))
            return -1;
    }

    if (new->title && !STREQ_NULLABLE(old->title, new->title)) {
2007
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2008 2009 2010 2011 2012
                       _("titles are not supported by parallels driver"));
        return -1;
    }

    if (new->blkio.ndevices > 0) {
2013
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2014 2015 2016 2017 2018 2019 2020
                       _("blkio parameters are not supported "
                         "by parallels driver"));
        return -1;
    }

    if (old->mem.max_balloon != new->mem.max_balloon) {
        if (new->mem.max_balloon != new->mem.cur_balloon) {
2021
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2022 2023 2024 2025 2026 2027
                       _("changing balloon parameters is not supported "
                         "by parallels driver"));
           return -1;
        }

        if (new->mem.max_balloon % (1 << 10) != 0) {
2028
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
                       _("Memory size should be multiple of 1Mb."));
            return -1;
        }

        snprintf(buf, 31, "%llu", new->mem.max_balloon >> 10);
        buf[31] = '\0';

        if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                            "--memsize", buf, NULL))
            return -1;
    }

2041
    if (old->mem.nhugepages != new->mem.nhugepages ||
2042 2043 2044 2045 2046
        old->mem.hard_limit != new->mem.hard_limit ||
        old->mem.soft_limit != new->mem.soft_limit ||
        old->mem.min_guarantee != new->mem.min_guarantee ||
        old->mem.swap_hard_limit != new->mem.swap_hard_limit) {

2047
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2048 2049 2050 2051 2052 2053 2054
                       _("Memory parameter is not supported "
                         "by parallels driver"));
        return -1;
    }

    if (old->vcpus != new->vcpus) {
        if (new->vcpus != new->maxvcpus) {
2055
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068
                       _("current vcpus must be equal to maxvcpus"));
            return -1;
        }

        snprintf(buf, 31, "%d", new->vcpus);
        buf[31] = '\0';

        if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,
                            "--cpus", buf, NULL))
            return -1;
    }

    if (old->placement_mode != new->placement_mode) {
2069
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2070 2071 2072 2073 2074
                       _("changing cpu placement mode is not supported "
                         "by parallels driver"));
        return -1;
    }

2075 2076 2077
    if ((old->cpumask != NULL || new->cpumask != NULL) &&
        (old->cpumask == NULL || new->cpumask == NULL ||
        !virBitmapEqual(old->cpumask, new->cpumask))) {
2078

2079
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2080 2081 2082 2083 2084 2085
                       _("changing cpu mask is not supported "
                         "by parallels driver"));
        return -1;
    }

    if (old->cputune.shares != new->cputune.shares ||
2086
        old->cputune.sharesSpecified != new->cputune.sharesSpecified ||
2087 2088 2089 2090
        old->cputune.period != new->cputune.period ||
        old->cputune.quota != new->cputune.quota ||
        old->cputune.nvcpupin != new->cputune.nvcpupin) {

2091
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2092 2093 2094 2095
                       _("cputune is not supported by parallels driver"));
        return -1;
    }

2096
    if (!virDomainNumatuneEquals(old->numatune, new->numatune)) {
2097
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2098 2099 2100 2101 2102 2103 2104 2105 2106
                        _("numa parameters are not supported "
                          "by parallels driver"));
        return -1;
    }

    if (old->onReboot != new->onReboot ||
        old->onPoweroff != new->onPoweroff ||
        old->onCrash != new->onCrash) {

2107
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2108 2109 2110 2111 2112
                       _("on_reboot, on_poweroff and on_crash parameters "
                         "are not supported by parallels driver"));
        return -1;
    }

2113 2114 2115 2116
    /* we fill only type and arch fields in parallelsLoadDomain for
     * hvm type and also init for containers, so we can check that all
     * other paramenters are null and boot devices config is default */

2117
    if (!STREQ_NULLABLE(old->os.type, new->os.type) ||
2118
        old->os.arch != new->os.arch ||
2119 2120 2121 2122 2123 2124
        new->os.machine != NULL || new->os.bootmenu != 0 ||
        new->os.kernel != NULL || new->os.initrd != NULL ||
        new->os.cmdline != NULL || new->os.root != NULL ||
        new->os.loader != NULL || new->os.bootloader != NULL ||
        new->os.bootloaderArgs != NULL || new->os.smbios_mode != 0 ||
        new->os.bios.useserial != 0) {
2125

2126
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2127 2128 2129 2130
                       _("changing OS parameters is not supported "
                         "by parallels driver"));
        return -1;
    }
2131 2132 2133 2134 2135
    if (STREQ(new->os.type, "hvm")) {
        if (new->os.nBootDevs != 1 ||
            new->os.bootDevs[0] != VIR_DOMAIN_BOOT_DISK ||
            new->os.init != NULL || new->os.initargv != NULL) {

2136
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2137 2138 2139 2140 2141 2142 2143 2144 2145
                           _("changing OS parameters is not supported "
                             "by parallels driver"));
            return -1;
        }
    } else {
        if (new->os.nBootDevs != 0 ||
            !STREQ_NULLABLE(old->os.init, new->os.init) ||
            (new->os.initargv != NULL && new->os.initargv[0] != NULL)) {

2146
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2147 2148 2149 2150 2151 2152
                           _("changing OS parameters is not supported "
                             "by parallels driver"));
            return -1;
        }
    }

2153 2154

    if (!STREQ_NULLABLE(old->emulator, new->emulator)) {
2155
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2156 2157 2158 2159 2160
                       _("changing emulator is not supported "
                         "by parallels driver"));
        return -1;
    }

2161 2162
    for (i = 0; i < VIR_DOMAIN_FEATURE_LAST; i++) {
        if (old->features[i] != new->features[i]) {
2163
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2164 2165 2166 2167
                           _("changing features is not supported "
                             "by parallels driver"));
            return -1;
        }
2168 2169 2170 2171 2172
    }

    if (new->clock.offset != VIR_DOMAIN_CLOCK_OFFSET_UTC ||
        new->clock.ntimers != 0) {

2173
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2174 2175 2176 2177 2178 2179 2180 2181 2182
                       _("changing clock parameters is not supported "
                         "by parallels driver"));
        return -1;
    }

    if (parallelsApplyGraphicsParams(old->graphics, old->ngraphics,
                                   new->graphics, new->ngraphics) < 0)
        return -1;

2183
    if (new->nfss != 0 ||
2184 2185 2186 2187 2188
        new->nsounds != 0 || new->nhostdevs != 0 ||
        new->nredirdevs != 0 || new->nsmartcards != 0 ||
        new->nparallels || new->nchannels != 0 ||
        new->nleases != 0 || new->nhubs != 0) {

2189
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
                       _("changing devices parameters is not supported "
                         "by parallels driver"));
        return -1;
    }

    /* there may be one auto-input */
    if (new->ninputs > 1 ||
        (new->ninputs > 1 &&
        (new->inputs[0]->type != VIR_DOMAIN_INPUT_TYPE_MOUSE ||
        new->inputs[0]->bus != VIR_DOMAIN_INPUT_BUS_PS2))) {

2201
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217
                       _("changing input devices parameters is not supported "
                         "by parallels driver"));
    }


    if (parallelsApplySerialParams(old->serials, old->nserials,
                                   new->serials, new->nserials) < 0)
        return -1;

    if (parallelsApplySerialParams(old->consoles, old->nconsoles,
                                   new->consoles, new->nconsoles) < 0)
        return -1;

    if (parallelsApplyVideoParams(pdom, old->videos, old->nvideos,
                                   new->videos, new->nvideos) < 0)
        return -1;
D
Dmitry Guryanov 已提交
2218
    if (parallelsApplyDisksParams(pdom, old->disks, old->ndisks,
2219 2220
                                  new->disks, new->ndisks) < 0)
        return -1;
2221 2222 2223
    if (parallelsApplyIfacesParams(pdom, old->nets, old->nnets,
                                  new->nets, new->nnets) < 0)
        return -1;
2224

2225 2226 2227
    return 0;
}

2228
static int
2229
parallelsCreateVm(virConnectPtr conn ATTRIBUTE_UNUSED, virDomainDefPtr def)
2230 2231 2232 2233 2234
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(def->uuid, uuidstr);

2235
    if (parallelsCmdRun(PRLCTL, "create", def->name, "--no-hdd",
2236
                        "--uuid", uuidstr, NULL) < 0)
2237
        return -1;
2238 2239 2240 2241

    return 0;
}

2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
static int
parallelsCreateCt(virConnectPtr conn ATTRIBUTE_UNUSED, virDomainDefPtr def)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(def->uuid, uuidstr);

    if (def->nfss != 1 ||
        def->fss[0]->type != VIR_DOMAIN_FS_TYPE_TEMPLATE) {

        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("There must be only 1 template FS for "
                         "container creation"));
        goto error;
    }

    if (parallelsCmdRun(PRLCTL, "create", def->name, "--vmtype", "ct",
                        "--uuid", uuidstr,
                        "--ostemplate", def->fss[0]->src, NULL) < 0)
        goto error;

    return 0;

2265
 error:
2266 2267 2268
    return -1;
}

2269 2270 2271 2272 2273 2274
static virDomainPtr
parallelsDomainDefineXML(virConnectPtr conn, const char *xml)
{
    parallelsConnPtr privconn = conn->privateData;
    virDomainPtr ret = NULL;
    virDomainDefPtr def;
2275
    virDomainObjPtr olddom = NULL;
2276 2277

    parallelsDriverLock(privconn);
2278 2279
    if ((def = virDomainDefParseString(xml, privconn->caps, privconn->xmlopt,
                                       1 << VIR_DOMAIN_VIRT_PARALLELS,
2280 2281 2282 2283 2284 2285
                                       VIR_DOMAIN_XML_INACTIVE)) == NULL) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Can't parse XML desc"));
        goto cleanup;
    }

2286 2287 2288
    olddom = virDomainObjListFindByUUID(privconn->domains, def->uuid);
    if (olddom == NULL) {
        virResetLastError();
2289 2290 2291 2292 2293 2294 2295 2296 2297
        if (STREQ(def->os.type, "hvm")) {
            if (parallelsCreateVm(conn, def))
                goto cleanup;
        } else if (STREQ(def->os.type, "exe")) {
            if (parallelsCreateCt(conn, def))
                goto cleanup;
        } else {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Unsupported OS type: %s"), def->os.type);
2298
            goto cleanup;
2299
        }
2300 2301
        if (parallelsLoadDomains(privconn, def->name))
            goto cleanup;
2302
        olddom = virDomainObjListFindByName(privconn->domains, def->name);
2303
        if (!olddom) {
2304 2305
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Domain for '%s' is not defined after creation"),
E
Eric Blake 已提交
2306
                           def->name ? def->name : _("(unnamed)"));
2307 2308
            goto cleanup;
        }
2309 2310
    }

D
Dmitry Guryanov 已提交
2311
    if (parallelsApplyChanges(olddom, def) < 0) {
2312
        virObjectUnlock(olddom);
2313 2314
        goto cleanup;
    }
2315
    virObjectUnlock(olddom);
2316

2317
    ret = virGetDomain(conn, def->name, def->uuid);
2318
    if (ret)
2319
        ret->id = def->id;
2320

2321
 cleanup:
2322 2323 2324 2325 2326
    virDomainDefFree(def);
    parallelsDriverUnlock(privconn);
    return ret;
}

2327 2328 2329 2330 2331 2332 2333
static int
parallelsNodeGetInfo(virConnectPtr conn ATTRIBUTE_UNUSED,
                     virNodeInfoPtr nodeinfo)
{
    return nodeGetInfo(nodeinfo);
}

2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
static int parallelsConnectIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Encryption is not relevant / applicable to way we talk to PCS */
    return 0;
}

static int parallelsConnectIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* We run CLI tools directly so this is secure */
    return 1;
}

static int parallelsConnectIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 1;
}

2351

2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
static char *
parallelsConnectBaselineCPU(virConnectPtr conn ATTRIBUTE_UNUSED,
                            const char **xmlCPUs,
                            unsigned int ncpus,
                            unsigned int flags)
{
    virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES, NULL);

    return cpuBaselineXML(xmlCPUs, ncpus, NULL, 0, flags);
}


2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434
static int
parallelsDomainGetVcpus(virDomainPtr domain,
                        virVcpuInfoPtr info,
                        int maxinfo,
                        unsigned char *cpumaps,
                        int maplen)
{
    parallelsConnPtr privconn = domain->conn->privateData;
    parallelsDomObjPtr privdomdata = NULL;
    virDomainObjPtr privdom = NULL;
    size_t i;
    int v, maxcpu, hostcpus;
    int ret = -1;

    parallelsDriverLock(privconn);
    privdom = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
    parallelsDriverUnlock(privconn);

    if (privdom == NULL) {
        parallelsDomNotFoundError(domain);
        goto cleanup;
    }

    if (!virDomainObjIsActive(privdom)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s",
                       _("cannot list vcpu pinning for an inactive domain"));
        goto cleanup;
    }

    privdomdata = privdom->privateData;
    if ((hostcpus = nodeGetCPUCount()) < 0)
        goto cleanup;

    maxcpu = maplen * 8;
    if (maxcpu > hostcpus)
        maxcpu = hostcpus;

    if (maxinfo >= 1) {
        if (info != NULL) {
            memset(info, 0, sizeof(*info) * maxinfo);
            for (i = 0; i < maxinfo; i++) {
                info[i].number = i;
                info[i].state = VIR_VCPU_RUNNING;
            }
        }
        if (cpumaps != NULL) {
            unsigned char *tmpmap = NULL;
            int tmpmapLen = 0;

            memset(cpumaps, 0, maplen * maxinfo);
            virBitmapToData(privdomdata->cpumask, &tmpmap, &tmpmapLen);
            if (tmpmapLen > maplen)
                tmpmapLen = maplen;

            for (v = 0; v < maxinfo; v++) {
                unsigned char *cpumap = VIR_GET_CPUMAP(cpumaps, maplen, v);
                memcpy(cpumap, tmpmap, tmpmapLen);
            }
            VIR_FREE(tmpmap);
        }
    }
    ret = maxinfo;

 cleanup:
    if (privdom)
        virObjectUnlock(privdom);
    return ret;
}


2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
static int
parallelsNodeGetCPUMap(virConnectPtr conn ATTRIBUTE_UNUSED,
                       unsigned char **cpumap,
                       unsigned int *online,
                       unsigned int flags)
{
    return nodeGetCPUMap(cpumap, online, flags);
}


D
Dmitry Guryanov 已提交
2445 2446 2447
static virDriver parallelsDriver = {
    .no = VIR_DRV_PARALLELS,
    .name = "Parallels",
2448 2449 2450
    .connectOpen = parallelsConnectOpen,            /* 0.10.0 */
    .connectClose = parallelsConnectClose,          /* 0.10.0 */
    .connectGetVersion = parallelsConnectGetVersion,   /* 0.10.0 */
2451
    .connectGetHostname = parallelsConnectGetHostname,      /* 0.10.0 */
2452
    .nodeGetInfo = parallelsNodeGetInfo,      /* 0.10.0 */
2453
    .connectGetCapabilities = parallelsConnectGetCapabilities,      /* 0.10.0 */
2454
    .connectBaselineCPU = parallelsConnectBaselineCPU, /* 1.2.6 */
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
    .connectListDomains = parallelsConnectListDomains,      /* 0.10.0 */
    .connectNumOfDomains = parallelsConnectNumOfDomains,    /* 0.10.0 */
    .connectListDefinedDomains = parallelsConnectListDefinedDomains,        /* 0.10.0 */
    .connectNumOfDefinedDomains = parallelsConnectNumOfDefinedDomains,      /* 0.10.0 */
    .connectListAllDomains = parallelsConnectListAllDomains, /* 0.10.0 */
    .domainLookupByID = parallelsDomainLookupByID,    /* 0.10.0 */
    .domainLookupByUUID = parallelsDomainLookupByUUID,        /* 0.10.0 */
    .domainLookupByName = parallelsDomainLookupByName,        /* 0.10.0 */
    .domainGetOSType = parallelsDomainGetOSType,    /* 0.10.0 */
    .domainGetInfo = parallelsDomainGetInfo,  /* 0.10.0 */
2465 2466 2467 2468
    .domainGetState = parallelsDomainGetState,        /* 0.10.0 */
    .domainGetXMLDesc = parallelsDomainGetXMLDesc,    /* 0.10.0 */
    .domainIsPersistent = parallelsDomainIsPersistent,        /* 0.10.0 */
    .domainGetAutostart = parallelsDomainGetAutostart,        /* 0.10.0 */
2469
    .domainGetVcpus = parallelsDomainGetVcpus, /* 1.2.6 */
2470 2471 2472 2473
    .domainSuspend = parallelsDomainSuspend,    /* 0.10.0 */
    .domainResume = parallelsDomainResume,    /* 0.10.0 */
    .domainDestroy = parallelsDomainDestroy,  /* 0.10.0 */
    .domainShutdown = parallelsDomainShutdown, /* 0.10.0 */
2474
    .domainCreate = parallelsDomainCreate,    /* 0.10.0 */
2475
    .domainDefineXML = parallelsDomainDefineXML,      /* 0.10.0 */
2476
    .nodeGetCPUMap = parallelsNodeGetCPUMap, /* 1.2.8 */
2477 2478 2479
    .connectIsEncrypted = parallelsConnectIsEncrypted, /* 1.2.5 */
    .connectIsSecure = parallelsConnectIsSecure, /* 1.2.5 */
    .connectIsAlive = parallelsConnectIsAlive, /* 1.2.5 */
D
Dmitry Guryanov 已提交
2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
};

/**
 * parallelsRegister:
 *
 * Registers the parallels driver
 */
int
parallelsRegister(void)
{
    char *prlctl_path;

    prlctl_path = virFindFileInPath(PRLCTL);
    if (!prlctl_path) {
        VIR_DEBUG("%s", _("Can't find prlctl command in the PATH env"));
        return 0;
    }

    VIR_FREE(prlctl_path);

    if (virRegisterDriver(&parallelsDriver) < 0)
        return -1;
D
Dmitry Guryanov 已提交
2502 2503
    if (parallelsStorageRegister())
        return -1;
D
Dmitry Guryanov 已提交
2504 2505
    if (parallelsNetworkRegister())
        return -1;
D
Dmitry Guryanov 已提交
2506 2507 2508

    return 0;
}