vz_driver.c 114.7 KB
Newer Older
D
Dmitry Guryanov 已提交
1
/*
2
 * vz_driver.c: core driver functions for managing
D
Dmitry Guryanov 已提交
3 4
 * Parallels Cloud Server hosts
 *
5
 * Copyright (C) 2014-2015 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
 * <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 <pwd.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/statvfs.h>

#include "datatypes.h"
43
#include "virerror.h"
44
#include "viralloc.h"
45
#include "virlog.h"
46
#include "vircommand.h"
D
Dmitry Guryanov 已提交
47
#include "configmake.h"
48
#include "virfile.h"
49
#include "virstoragefile.h"
50
#include "virstring.h"
51
#include "cpu/cpu.h"
52
#include "virtypedparam.h"
53 54
#include "virhostmem.h"
#include "virhostcpu.h"
55
#include "viraccessapicheck.h"
D
Dmitry Guryanov 已提交
56

57 58 59
#include "vz_driver.h"
#include "vz_utils.h"
#include "vz_sdk.h"
D
Dmitry Guryanov 已提交
60 61 62

#define VIR_FROM_THIS VIR_FROM_PARALLELS

63 64
VIR_LOG_INIT("parallels.parallels_driver");

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

67
static virClassPtr vzDriverClass;
D
Dmitry Guryanov 已提交
68

69 70 71 72 73 74 75
static virMutex vz_driver_lock;
static vzDriverPtr vz_driver;
static vzConnPtr vz_conn_list;

static vzDriverPtr
vzDriverObjNew(void);

D
Dmitry Guryanov 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
static int
vzCapsAddGuestDomain(virCapsPtr caps,
                     virDomainOSType ostype,
                     virArch arch,
                     const char * emulator,
                     virDomainVirtType virt_type)
{
    virCapsGuestPtr guest;

    if ((guest = virCapabilitiesAddGuest(caps, ostype, arch, emulator,
                                         NULL, 0, NULL)) == NULL)
        return -1;


    if (virCapabilitiesAddGuestDomain(guest, virt_type,
                                      NULL, NULL, 0, NULL) == NULL)
        return -1;

    return 0;
}

D
Dmitry Guryanov 已提交
97
static virCapsPtr
98
vzBuildCapabilities(void)
D
Dmitry Guryanov 已提交
99
{
100 101
    virCapsPtr caps = NULL;
    virNodeInfo nodeinfo;
D
Dmitry Guryanov 已提交
102 103 104 105 106
    virDomainOSType ostypes[] = {
        VIR_DOMAIN_OSTYPE_HVM,
        VIR_DOMAIN_OSTYPE_EXE
    };
    virArch archs[] = { VIR_ARCH_I686, VIR_ARCH_X86_64 };
107
    const char *const emulators[] = { "vz", "parallels"};
D
Dmitry Guryanov 已提交
108
    virDomainVirtType virt_types[] = {
109 110
        VIR_DOMAIN_VIRT_VZ,
        VIR_DOMAIN_VIRT_PARALLELS
D
Dmitry Guryanov 已提交
111 112
    };
    size_t i, j, k;
D
Dmitry Guryanov 已提交
113

114
    if ((caps = virCapabilitiesNew(virArchFromHost(),
115
                                   false, false)) == NULL)
116
        return NULL;
D
Dmitry Guryanov 已提交
117

M
Martin Kletzander 已提交
118
    if (virCapabilitiesInitNUMA(caps) < 0)
119
        goto error;
D
Dmitry Guryanov 已提交
120

121 122
    if (virCapabilitiesInitCaches(caps) < 0)
        goto error;
123 124 125

    verify(ARRAY_CARDINALITY(archs) == ARRAY_CARDINALITY(emulators));

126
    for (i = 0; i < ARRAY_CARDINALITY(ostypes); i++)
127 128
        for (j = 0; j < ARRAY_CARDINALITY(archs); j++)
            for (k = 0; k < ARRAY_CARDINALITY(emulators); k++)
D
Dmitry Guryanov 已提交
129 130 131
                if (vzCapsAddGuestDomain(caps, ostypes[i], archs[j],
                                         emulators[k], virt_types[k]) < 0)
                    goto error;
132

M
Martin Kletzander 已提交
133
    if (virCapabilitiesGetNodeInfo(&nodeinfo))
134 135
        goto error;

136
    if (!(caps->host.cpu = virCPUGetHost(caps->host.arch, VIR_CPU_TYPE_HOST,
137
                                         &nodeinfo, NULL, 0)))
138 139
        goto error;

140 141 142
    if (virCapabilitiesAddHostMigrateTransport(caps, "vzmigr") < 0)
        goto error;

D
Dmitry Guryanov 已提交
143 144
    return caps;

145
 error:
146
    virObjectUnref(caps);
147
    return NULL;
D
Dmitry Guryanov 已提交
148 149
}

150 151 152 153
static void vzDriverDispose(void * obj)
{
    vzDriverPtr driver = obj;

154
    prlsdkDisconnect(driver);
155 156 157
    virObjectUnref(driver->domains);
    virObjectUnref(driver->caps);
    virObjectUnref(driver->xmlopt);
158
    virObjectUnref(driver->domainEventState);
159
    virSysinfoDefFree(driver->hostsysinfo);
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
}

static int vzDriverOnceInit(void)
{
    if (!(vzDriverClass = virClassNew(virClassForObjectLockable(),
                                      "vzDriver",
                                      sizeof(vzDriver),
                                      vzDriverDispose)))
        return -1;

    return 0;
}
VIR_ONCE_GLOBAL_INIT(vzDriver)

vzDriverPtr
vzGetDriverConnection(void)
{
    virMutexLock(&vz_driver_lock);
    if (!vz_driver)
        vz_driver = vzDriverObjNew();
    virObjectRef(vz_driver);
    virMutexUnlock(&vz_driver_lock);

    return vz_driver;
}

void
vzDestroyDriverConnection(void)
{

    vzDriverPtr driver;
    vzConnPtr privconn_list;

    virMutexLock(&vz_driver_lock);
    driver = vz_driver;
    vz_driver = NULL;

    privconn_list = vz_conn_list;
    vz_conn_list = NULL;

    virMutexUnlock(&vz_driver_lock);

    while (privconn_list) {
        vzConnPtr privconn = privconn_list;
        privconn_list = privconn->next;
        virConnectCloseCallbackDataCall(privconn->closeCallback,
                                        VIR_CONNECT_CLOSE_REASON_EOF);
    }
    virObjectUnref(driver);
}

D
Dmitry Guryanov 已提交
211
static char *
212
vzConnectGetCapabilities(virConnectPtr conn)
D
Dmitry Guryanov 已提交
213
{
214
    vzConnPtr privconn = conn->privateData;
D
Dmitry Guryanov 已提交
215 216
    char *xml;

217 218 219
    if (virConnectGetCapabilitiesEnsureACL(conn) < 0)
        return NULL;

220
    xml = virCapabilitiesFormatXML(privconn->driver->caps);
D
Dmitry Guryanov 已提交
221 222
    return xml;
}
223

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
static int
vzDomainDefAddDefaultInputDevices(virDomainDefPtr def)
{
    if (def->ngraphics == 0)
        return 0;

    int bus = IS_CT(def) ? VIR_DOMAIN_INPUT_BUS_PARALLELS :
                           VIR_DOMAIN_INPUT_BUS_PS2;

    if (virDomainDefMaybeAddInput(def,
                                  VIR_DOMAIN_INPUT_TYPE_MOUSE,
                                  bus) < 0)
        return -1;

    if (virDomainDefMaybeAddInput(def,
                                  VIR_DOMAIN_INPUT_TYPE_KBD,
                                  bus) < 0)
        return -1;

    return 0;
}
D
Dmitry Guryanov 已提交
245

246
static int
247
vzDomainDefPostParse(virDomainDefPtr def,
M
Michal Privoznik 已提交
248
                     virCapsPtr caps ATTRIBUTE_UNUSED,
249
                     unsigned int parseFlags ATTRIBUTE_UNUSED,
250 251
                     void *opaque ATTRIBUTE_UNUSED,
                     void *parseOpaque ATTRIBUTE_UNUSED)
252
{
253 254 255
    if (vzDomainDefAddDefaultInputDevices(def) < 0)
        return -1;

256 257 258 259 260 261 262 263
    return 0;
}

static int
vzDomainDefValidate(const virDomainDef *def,
                    virCapsPtr caps ATTRIBUTE_UNUSED,
                    void *opaque)
{
264 265 266
    if (vzCheckUnsupportedControllers(def, opaque) < 0)
        return -1;

267 268 269 270
    return 0;
}

static int
271
vzDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
M
Michal Privoznik 已提交
272 273
                           const virDomainDef *def,
                           virCapsPtr caps ATTRIBUTE_UNUSED,
274
                           unsigned int parseFlags ATTRIBUTE_UNUSED,
275 276
                           void *opaque ATTRIBUTE_UNUSED,
                           void *parseOpaque ATTRIBUTE_UNUSED)
277
{
278 279 280 281
    if (dev->type == VIR_DOMAIN_DEVICE_NET &&
        (dev->data.net->type == VIR_DOMAIN_NET_TYPE_NETWORK ||
         dev->data.net->type == VIR_DOMAIN_NET_TYPE_BRIDGE) &&
        !dev->data.net->model &&
282
        def->os.type == VIR_DOMAIN_OSTYPE_HVM &&
283
        VIR_STRDUP(dev->data.net->model, "e1000") < 0)
284
        return -1;
285

286 287 288 289 290 291 292 293
    return 0;
}

static int
vzDomainDeviceDefValidate(const virDomainDeviceDef *dev,
                          const virDomainDef *def,
                          void *opaque ATTRIBUTE_UNUSED)
{
294 295
    if (dev->type == VIR_DOMAIN_DEVICE_DISK)
        return vzCheckUnsupportedDisk(def, dev->data.disk, opaque);
296 297
    else if (dev->type == VIR_DOMAIN_DEVICE_GRAPHICS)
        return vzCheckUnsupportedGraphics(dev->data.graphics);
298 299

    return 0;
300 301
}

302 303 304 305
static virDomainXMLPrivateDataCallbacks vzDomainXMLPrivateDataCallbacksPtr = {
    .alloc = vzDomObjAlloc,
    .free = vzDomObjFree,
};
306

M
Maxim Nestratov 已提交
307
static virDomainDefParserConfig vzDomainDefParserConfig = {
308
    .macPrefix = {0x42, 0x1C, 0x00},
309
    .domainPostParseCallback = vzDomainDefPostParse,
310 311 312
    .devicesPostParseCallback = vzDomainDeviceDefPostParse,
    .domainValidateCallback = vzDomainDefValidate,
    .deviceValidateCallback = vzDomainDeviceDefValidate,
313 314
};

315 316
static vzDriverPtr
vzDriverObjNew(void)
D
Dmitry Guryanov 已提交
317
{
318
    vzDriverPtr driver;
D
Dmitry Guryanov 已提交
319

320 321
    if (vzDriverInitialize() < 0)
        return NULL;
D
Dmitry Guryanov 已提交
322

323 324
    if (!(driver = virObjectLockableNew(vzDriverClass)))
        return NULL;
325

326 327 328 329
    vzDomainDefParserConfig.priv = &driver->vzCaps;

    if (!(driver->caps = vzBuildCapabilities()) ||
        !(driver->xmlopt = virDomainXMLOptionNew(&vzDomainDefParserConfig,
330
                                                 &vzDomainXMLPrivateDataCallbacksPtr,
331
                                                 NULL, NULL, NULL)) ||
332 333 334
        !(driver->domains = virDomainObjListNew()) ||
        !(driver->domainEventState = virObjectEventStateNew()) ||
        (vzInitVersion(driver) < 0) ||
335
        (prlsdkConnect(driver) < 0)) {
336 337 338
        virObjectUnref(driver);
        return NULL;
    }
D
Dmitry Guryanov 已提交
339

340
    driver->hostsysinfo = virSysinfoRead();
341
    ignore_value(prlsdkLoadDomains(driver));
342 343 344 345 346

    /* As far as waitDomainJob finally calls virReportErrorHelper
     * and we are not going to report it, reset it expicitly*/
    virResetLastError();

347
    return driver;
D
Dmitry Guryanov 已提交
348 349 350
}

static virDrvOpenStatus
351
vzConnectOpen(virConnectPtr conn,
M
Michal Privoznik 已提交
352
              virConnectAuthPtr auth ATTRIBUTE_UNUSED,
353
              virConfPtr conf ATTRIBUTE_UNUSED,
M
Michal Privoznik 已提交
354
              unsigned int flags)
D
Dmitry Guryanov 已提交
355
{
356 357
    vzDriverPtr driver = NULL;
    vzConnPtr privconn = NULL;
D
Dmitry Guryanov 已提交
358 359 360 361 362 363

    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

    if (!conn->uri)
        return VIR_DRV_OPEN_DECLINED;

364 365 366 367 368 369 370 371 372 373 374
    if (!conn->uri->scheme)
        return VIR_DRV_OPEN_DECLINED;

    if (STRNEQ(conn->uri->scheme, "vz") &&
        STRNEQ(conn->uri->scheme, "parallels"))
        return VIR_DRV_OPEN_DECLINED;

    if (STREQ(conn->uri->scheme, "vz") && STRNEQ(conn->driver->name, "vz"))
        return VIR_DRV_OPEN_DECLINED;

    if (STREQ(conn->uri->scheme, "parallels") && STRNEQ(conn->driver->name, "Parallels"))
D
Dmitry Guryanov 已提交
375 376 377 378 379 380 381
        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. */
382
    if (STRNEQ_NULLABLE(conn->uri->path, "/system")) {
383
        virReportError(VIR_ERR_INTERNAL_ERROR,
384
                       _("Unexpected Virtuozzo URI path '%s', try vz:///system"),
385
                       conn->uri->path);
D
Dmitry Guryanov 已提交
386 387 388
        return VIR_DRV_OPEN_ERROR;
    }

389 390 391
    if (virConnectOpenEnsureACL(conn) < 0)
        return VIR_DRV_OPEN_ERROR;

392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
    if (!(driver = vzGetDriverConnection()))
        return VIR_DRV_OPEN_ERROR;

    if (VIR_ALLOC(privconn) < 0)
        goto error;

    conn->privateData = privconn;
    privconn->driver = driver;

    if (!(privconn->closeCallback = virNewConnectCloseCallbackData()))
        goto error;

    virMutexLock(&vz_driver_lock);
    privconn->next = vz_conn_list;
    vz_conn_list = privconn;
    virMutexUnlock(&vz_driver_lock);
D
Dmitry Guryanov 已提交
408 409

    return VIR_DRV_OPEN_SUCCESS;
410 411 412 413 414 415 416

 error:

    conn->privateData = NULL;
    virObjectUnref(driver);
    VIR_FREE(privconn);
    return VIR_DRV_OPEN_ERROR;
D
Dmitry Guryanov 已提交
417 418 419
}

static int
420
vzConnectClose(virConnectPtr conn)
D
Dmitry Guryanov 已提交
421
{
422
    vzConnPtr curr, *prev = &vz_conn_list;
423
    vzConnPtr privconn = conn->privateData;
D
Dmitry Guryanov 已提交
424

425 426 427
    if (!privconn)
        return 0;

428 429 430 431 432 433 434
    virMutexLock(&vz_driver_lock);
    for (curr = vz_conn_list; curr; prev = &curr->next, curr = curr->next) {
        if (curr == privconn) {
            *prev = curr->next;
            break;
        }
    }
D
Dmitry Guryanov 已提交
435

436
    virMutexUnlock(&vz_driver_lock);
D
Dmitry Guryanov 已提交
437

438 439
    virObjectUnref(privconn->closeCallback);
    virObjectUnref(privconn->driver);
D
Dmitry Guryanov 已提交
440
    VIR_FREE(privconn);
441
    conn->privateData = NULL;
D
Dmitry Guryanov 已提交
442 443 444 445
    return 0;
}

static int
446
vzConnectGetVersion(virConnectPtr conn, unsigned long *hvVer)
D
Dmitry Guryanov 已提交
447
{
448
    vzConnPtr privconn = conn->privateData;
449 450 451 452

    if (virConnectGetVersionEnsureACL(conn) < 0)
        return -1;

453
    *hvVer = privconn->driver->vzVersion;
454
    return 0;
455 456
}

457

458
static char *vzConnectGetHostname(virConnectPtr conn)
459
{
460 461 462
    if (virConnectGetHostnameEnsureACL(conn) < 0)
        return NULL;

463 464 465
    return virGetHostname();
}

466 467 468 469 470 471 472 473 474
static char *
vzConnectGetSysinfo(virConnectPtr conn, unsigned int flags)
{
    vzConnPtr privconn = conn->privateData;
    vzDriverPtr driver = privconn->driver;
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virCheckFlags(0, NULL);

475 476 477
    if (virConnectGetSysinfoEnsureACL(conn) < 0)
        return NULL;

478 479 480 481 482 483 484 485 486 487 488 489 490
    if (!driver->hostsysinfo) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Host SMBIOS information is not available"));
        return NULL;
    }

    if (virSysinfoFormat(&buf, driver->hostsysinfo) < 0)
        return NULL;
    if (virBufferCheckError(&buf) < 0)
        return NULL;

    return virBufferContentAndReset(&buf);
}
491

492
static int
493
vzConnectListDomains(virConnectPtr conn, int *ids, int maxids)
494
{
495
    vzConnPtr privconn = conn->privateData;
496 497
    int n;

498 499 500
    if (virConnectListDomainsEnsureACL(conn) < 0)
        return -1;

501
    n = virDomainObjListGetActiveIDs(privconn->driver->domains, ids, maxids,
502
                                     virConnectListDomainsCheckACL, conn);
503 504 505 506 507

    return n;
}

static int
508
vzConnectNumOfDomains(virConnectPtr conn)
509
{
510
    vzConnPtr privconn = conn->privateData;
511 512
    int count;

513 514 515
    if (virConnectNumOfDomainsEnsureACL(conn) < 0)
        return -1;

516
    count = virDomainObjListNumOfDomains(privconn->driver->domains, true,
517
                                         virConnectNumOfDomainsCheckACL, conn);
518 519 520 521 522

    return count;
}

static int
523
vzConnectListDefinedDomains(virConnectPtr conn, char **const names, int maxnames)
524
{
525
    vzConnPtr privconn = conn->privateData;
526 527
    int n;

528 529 530
    if (virConnectListDefinedDomainsEnsureACL(conn) < 0)
        return -1;

531
    memset(names, 0, sizeof(*names) * maxnames);
532
    n = virDomainObjListGetInactiveNames(privconn->driver->domains, names,
533 534 535
                                         maxnames,
                                         virConnectListDefinedDomainsCheckACL,
                                         conn);
536 537 538 539 540

    return n;
}

static int
541
vzConnectNumOfDefinedDomains(virConnectPtr conn)
542
{
543
    vzConnPtr privconn = conn->privateData;
544 545
    int count;

546 547 548
    if (virConnectNumOfDefinedDomainsEnsureACL(conn) < 0)
        return -1;

549
    count = virDomainObjListNumOfDomains(privconn->driver->domains, false,
550 551
                                         virConnectNumOfDefinedDomainsCheckACL,
                                         conn);
552 553 554 555
    return count;
}

static int
556
vzConnectListAllDomains(virConnectPtr conn,
M
Michal Privoznik 已提交
557 558
                        virDomainPtr **domains,
                        unsigned int flags)
559
{
560
    vzConnPtr privconn = conn->privateData;
561 562
    int ret = -1;

O
Osier Yang 已提交
563
    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);
564 565 566 567

    if (virConnectListAllDomainsEnsureACL(conn) < 0)
        return -1;

568
    ret = virDomainObjListExport(privconn->driver->domains, conn, domains,
569
                                 virConnectListAllDomainsCheckACL, flags);
570 571 572 573 574

    return ret;
}

static virDomainPtr
575
vzDomainLookupByID(virConnectPtr conn, int id)
576
{
577
    vzConnPtr privconn = conn->privateData;
578
    virDomainPtr ret = NULL;
579 580
    virDomainObjPtr dom;

581
    dom = virDomainObjListFindByID(privconn->driver->domains, id);
582 583 584

    if (dom == NULL) {
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
585
        return NULL;
586 587
    }

588 589 590
    if (virDomainLookupByIDEnsureACL(conn, dom->def) < 0)
        goto cleanup;

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

593
 cleanup:
594
    virObjectUnlock(dom);
595 596 597 598
    return ret;
}

static virDomainPtr
599
vzDomainLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
600
{
601
    vzConnPtr privconn = conn->privateData;
602
    virDomainPtr ret = NULL;
603 604
    virDomainObjPtr dom;

605
    dom = virDomainObjListFindByUUID(privconn->driver->domains, uuid);
606 607 608 609 610 611

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

615 616 617
    if (virDomainLookupByUUIDEnsureACL(conn, dom->def) < 0)
        goto cleanup;

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

620
 cleanup:
621
    virObjectUnlock(dom);
622 623 624 625
    return ret;
}

static virDomainPtr
626
vzDomainLookupByName(virConnectPtr conn, const char *name)
627
{
628
    vzConnPtr privconn = conn->privateData;
629
    virDomainPtr ret = NULL;
630 631
    virDomainObjPtr dom;

632
    dom = virDomainObjListFindByName(privconn->driver->domains, name);
633 634 635 636

    if (dom == NULL) {
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching name '%s'"), name);
637
        return NULL;
638 639
    }

640 641 642
    if (virDomainLookupByNameEnsureACL(conn, dom->def) < 0)
        goto cleanup;

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

645
 cleanup:
646
    virDomainObjEndAPI(&dom);
647 648 649 650
    return ret;
}

static int
651
vzDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
652
{
653
    virDomainObjPtr dom;
654
    vzDomObjPtr privdom;
655 656
    int ret = -1;

657
    if (!(dom = vzDomObjFromDomainRef(domain)))
658 659
        goto cleanup;

660 661 662
    if (virDomainGetInfoEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

663 664
    info->state = virDomainObjGetState(dom, NULL);
    info->memory = dom->def->mem.cur_balloon;
665
    info->maxMem = virDomainDefGetMemoryTotal(dom->def);
666
    info->nrVirtCpu = virDomainDefGetVcpus(dom->def);
667
    info->cpuTime = 0;
668

669 670 671
    privdom = dom->privateData;

    if (PRL_INVALID_HANDLE != privdom->stats && virDomainObjIsActive(dom)) {
672 673 674
        unsigned long long vtime;
        size_t i;

675
        for (i = 0; i < virDomainDefGetVcpus(dom->def); ++i) {
676
            if (prlsdkGetVcpuStats(privdom->stats, i, &vtime) < 0) {
677 678 679 680 681 682 683
                virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                               _("cannot read cputime for domain"));
                goto cleanup;
            }
            info->cpuTime += vtime;
        }
    }
684 685
    ret = 0;

686
 cleanup:
687
    virDomainObjEndAPI(&dom);
688 689 690 691
    return ret;
}

static char *
692
vzDomainGetOSType(virDomainPtr domain)
693
{
694
    virDomainObjPtr dom;
695 696
    char *ret = NULL;

697
    if (!(dom = vzDomObjFromDomain(domain)))
698
        return NULL;
699

700 701 702
    if (virDomainGetOSTypeEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

703
    ignore_value(VIR_STRDUP(ret, virDomainOSTypeToString(dom->def->os.type)));
704

705
 cleanup:
706
    virObjectUnlock(dom);
707 708 709 710
    return ret;
}

static int
711
vzDomainIsPersistent(virDomainPtr domain)
712
{
713
    virDomainObjPtr dom;
714
    int ret = -1;
715

716
    if (!(dom = vzDomObjFromDomain(domain)))
717
        return -1;
718

719 720 721 722 723 724
    if (virDomainIsPersistentEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

    ret = 1;

 cleanup:
725
    virObjectUnlock(dom);
726
    return ret;
727 728 729
}

static int
730
vzDomainGetState(virDomainPtr domain,
M
Michal Privoznik 已提交
731
                 int *state, int *reason, unsigned int flags)
732
{
733
    virDomainObjPtr dom;
734
    int ret = -1;
735

736 737
    virCheckFlags(0, -1);

738
    if (!(dom = vzDomObjFromDomain(domain)))
739
        return -1;
740

741 742 743
    if (virDomainGetStateEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

744
    *state = virDomainObjGetState(dom, reason);
745
    ret = 0;
746

747
 cleanup:
748
    virObjectUnlock(dom);
749
    return ret;
750 751 752
}

static char *
753
vzDomainGetXMLDesc(virDomainPtr domain, unsigned int flags)
754
{
755
    vzConnPtr privconn = domain->conn->privateData;
756
    virDomainDefPtr def;
757
    virDomainObjPtr dom;
758 759 760 761
    char *ret = NULL;

    /* Flags checked by virDomainDefFormat */

762
    if (!(dom = vzDomObjFromDomain(domain)))
763
        return NULL;
764

765 766 767
    if (virDomainGetXMLDescEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

768
    def = (flags & VIR_DOMAIN_XML_INACTIVE) &&
769
        dom->newDef ? dom->newDef : dom->def;
770

771
    ret = virDomainDefFormat(def, privconn->driver->caps, flags);
772

773
 cleanup:
774
    virObjectUnlock(dom);
775 776 777 778
    return ret;
}

static int
779
vzDomainGetAutostart(virDomainPtr domain, int *autostart)
780
{
781
    virDomainObjPtr dom;
782
    int ret = -1;
783

784
    if (!(dom = vzDomObjFromDomain(domain)))
785
        return -1;
786

787 788 789
    if (virDomainGetAutostartEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

790
    *autostart = dom->autostart;
791
    ret = 0;
792

793
 cleanup:
794
    virObjectUnlock(dom);
795
    return ret;
D
Dmitry Guryanov 已提交
796 797
}

798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
static int
vzEnsureDomainExists(virDomainObjPtr dom)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    if (!dom->removing)
        return 0;

    virUUIDFormat(dom->def->uuid, uuidstr);
    virReportError(VIR_ERR_NO_DOMAIN,
                   _("no domain with matching uuid '%s' (%s)"),
                   uuidstr, dom->def->name);

    return -1;
}

814
static virDomainPtr
815
vzDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
816
{
817
    vzConnPtr privconn = conn->privateData;
818
    virDomainPtr retdom = NULL;
819
    virDomainDefPtr def;
820
    virDomainObjPtr dom = NULL;
821
    unsigned int parse_flags = VIR_DOMAIN_DEF_PARSE_INACTIVE;
822
    vzDriverPtr driver = privconn->driver;
823
    bool job = false;
824

825 826 827
    virCheckFlags(VIR_DOMAIN_DEFINE_VALIDATE, NULL);

    if (flags & VIR_DOMAIN_DEFINE_VALIDATE)
828
        parse_flags |= VIR_DOMAIN_DEF_PARSE_VALIDATE_SCHEMA;
829

830
    if ((def = virDomainDefParseString(xml, driver->caps, driver->xmlopt,
831
                                       NULL, parse_flags)) == NULL)
832 833
        goto cleanup;

834 835 836
    if (virXMLCheckIllegalChars("name", def->name, "\n") < 0)
        goto cleanup;

837 838 839
    if (virDomainDefineXMLFlagsEnsureACL(conn, def) < 0)
        goto cleanup;

840
    dom = virDomainObjListFindByUUIDRef(driver->domains, def->uuid);
841
    if (dom == NULL) {
842
        virResetLastError();
843
        if (def->os.type == VIR_DOMAIN_OSTYPE_HVM) {
844
            if (prlsdkCreateVm(driver, def))
845
                goto cleanup;
846
        } else if (def->os.type == VIR_DOMAIN_OSTYPE_EXE) {
847
            if (prlsdkCreateCt(conn, def))
848 849 850
                goto cleanup;
        } else {
            virReportError(VIR_ERR_INVALID_ARG,
851 852
                           _("Unsupported OS type: %s"),
                           virDomainOSTypeToString(def->os.type));
853
            goto cleanup;
854
        }
855

856
        if (!(dom = prlsdkAddDomainByUUID(driver, def->uuid)))
857
            goto cleanup;
858
    } else {
859 860
        int state, reason;

861
        state = virDomainObjGetState(dom, &reason);
862 863 864 865 866 867 868 869 870 871 872 873 874

        if (state == VIR_DOMAIN_SHUTOFF &&
            reason == VIR_DOMAIN_SHUTOFF_SAVED) {

            /* PCS doesn't store domain config in managed save state file.
             * It's forbidden to change config for VMs in this state.
             * It's possible to change config for containers, but after
             * restoring domain will have that new config, not a config,
             * which domain had at the moment of virDomainManagedSave.
             *
             * So forbid this operation, if config is changed. If it's
             * not changed - just do nothing. */

875
            if (!virDomainDefCheckABIStability(dom->def, def, driver->xmlopt)) {
876 877 878 879 880 881
                virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                               _("Can't change domain configuration "
                                 "in managed save state"));
                goto cleanup;
            }
        } else {
882 883 884 885
            if (vzDomainObjBeginJob(dom) < 0)
                goto cleanup;
            job = true;

886 887 888
            if (vzEnsureDomainExists(dom) < 0)
                goto cleanup;

889
            if (prlsdkApplyConfig(driver, dom, def))
890
                goto cleanup;
891

892
            if (prlsdkUpdateDomain(driver, dom))
893 894
                goto cleanup;
        }
895 896
    }

897
    retdom = virGetDomain(conn, def->name, def->uuid, def->id);
898

899
 cleanup:
900 901 902
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
903
    virDomainDefFree(def);
904
    return retdom;
905 906
}

907
static virDomainPtr
908
vzDomainDefineXML(virConnectPtr conn, const char *xml)
909
{
910
    return vzDomainDefineXMLFlags(conn, xml, 0);
911 912 913
}


914
static int
915
vzNodeGetInfo(virConnectPtr conn,
M
Michal Privoznik 已提交
916
              virNodeInfoPtr nodeinfo)
917
{
918 919 920
    if (virNodeGetInfoEnsureACL(conn) < 0)
        return -1;

M
Martin Kletzander 已提交
921
    return virCapabilitiesGetNodeInfo(nodeinfo);
922 923
}

924
static int vzConnectIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
925 926 927 928 929
{
    /* Encryption is not relevant / applicable to way we talk to PCS */
    return 0;
}

930
static int vzConnectIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
931 932 933 934 935
{
    /* We run CLI tools directly so this is secure */
    return 1;
}

936
static int vzConnectIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
937 938 939 940
{
    return 1;
}

941

942
static char *
943
vzConnectBaselineCPU(virConnectPtr conn,
M
Michal Privoznik 已提交
944 945 946
                     const char **xmlCPUs,
                     unsigned int ncpus,
                     unsigned int flags)
947
{
J
Jiri Denemark 已提交
948 949 950 951
    virCPUDefPtr *cpus = NULL;
    virCPUDefPtr cpu = NULL;
    char *cpustr = NULL;

952 953
    virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES, NULL);

954 955 956
    if (virConnectBaselineCPUEnsureACL(conn) < 0)
        return NULL;

J
Jiri Denemark 已提交
957 958 959 960 961 962 963 964 965 966
    if (!(cpus = virCPUDefListParse(xmlCPUs, ncpus, VIR_CPU_TYPE_HOST)))
        goto cleanup;

    if (!(cpu = cpuBaseline(cpus, ncpus, NULL, 0, false)))
        goto cleanup;

    if ((flags & VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES) &&
        virCPUExpandFeatures(cpus[0]->arch, cpu) < 0)
        goto cleanup;

967
    cpustr = virCPUDefFormat(cpu, NULL);
J
Jiri Denemark 已提交
968 969 970 971 972 973

 cleanup:
    virCPUDefListFree(cpus);
    virCPUDefFree(cpu);

    return cpustr;
974 975 976
}


977
static int
978
vzDomainGetVcpus(virDomainPtr domain,
M
Michal Privoznik 已提交
979 980 981 982
                 virVcpuInfoPtr info,
                 int maxinfo,
                 unsigned char *cpumaps,
                 int maplen)
983
{
984
    virDomainObjPtr dom = NULL;
985 986 987
    size_t i;
    int ret = -1;

988
    if (!(dom = vzDomObjFromDomainRef(domain)))
989
        return -1;
990

991 992 993
    if (virDomainGetVcpusEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

994
    if (!virDomainObjIsActive(dom)) {
995 996 997 998 999 1000 1001 1002
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s",
                       _("cannot list vcpu pinning for an inactive domain"));
        goto cleanup;
    }

    if (maxinfo >= 1) {
        if (info != NULL) {
1003 1004
        vzDomObjPtr privdom;

1005
            memset(info, 0, sizeof(*info) * maxinfo);
1006 1007
            privdom = dom->privateData;

1008 1009 1010
            for (i = 0; i < maxinfo; i++) {
                info[i].number = i;
                info[i].state = VIR_VCPU_RUNNING;
1011
                if (prlsdkGetVcpuStats(privdom->stats, i, &info[i].cpuTime) < 0)
N
Nikolay Shirokovskiy 已提交
1012
                    goto cleanup;
1013 1014 1015 1016
            }
        }
        if (cpumaps != NULL) {
            memset(cpumaps, 0, maplen * maxinfo);
1017
            for (i = 0; i < maxinfo; i++)
1018
                virBitmapToDataBuf(dom->def->cpumask,
1019 1020
                                   VIR_GET_CPUMAP(cpumaps, maplen, i),
                                   maplen);
1021 1022 1023 1024 1025
        }
    }
    ret = maxinfo;

 cleanup:
1026
    virDomainObjEndAPI(&dom);
1027 1028 1029 1030
    return ret;
}


1031
static int
1032
vzNodeGetCPUMap(virConnectPtr conn,
M
Michal Privoznik 已提交
1033 1034 1035
                unsigned char **cpumap,
                unsigned int *online,
                unsigned int flags)
1036
{
1037 1038 1039
    if (virNodeGetCPUMapEnsureACL(conn) < 0)
        return -1;

1040
    return virHostCPUGetMap(cpumap, online, flags);
1041 1042
}

1043
static int
1044
vzConnectDomainEventRegisterAny(virConnectPtr conn,
M
Michal Privoznik 已提交
1045 1046 1047 1048 1049
                                virDomainPtr domain,
                                int eventID,
                                virConnectDomainEventGenericCallback callback,
                                void *opaque,
                                virFreeCallback freecb)
1050 1051
{
    int ret = -1;
1052
    vzConnPtr privconn = conn->privateData;
1053 1054 1055 1056

    if (virConnectDomainEventRegisterAnyEnsureACL(conn) < 0)
        return -1;

1057
    if (virDomainEventStateRegisterID(conn,
1058
                                      privconn->driver->domainEventState,
1059 1060 1061 1062 1063 1064 1065
                                      domain, eventID,
                                      callback, opaque, freecb, &ret) < 0)
        ret = -1;
    return ret;
}

static int
1066
vzConnectDomainEventDeregisterAny(virConnectPtr conn,
M
Michal Privoznik 已提交
1067
                                  int callbackID)
1068
{
1069
    vzConnPtr privconn = conn->privateData;
1070

1071 1072 1073
    if (virConnectDomainEventDeregisterAnyEnsureACL(conn) < 0)
        return -1;

1074
    if (virObjectEventStateDeregisterID(conn,
1075
                                        privconn->driver->domainEventState,
1076
                                        callbackID, true) < 0)
1077
        return -1;
1078

1079
    return 0;
1080
}
1081

1082 1083
static int
vzDomainSuspend(virDomainPtr domain)
1084
{
1085 1086 1087 1088 1089 1090 1091 1092
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom;
    int ret = -1;
    bool job = false;

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1093 1094 1095
    if (virDomainSuspendEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (prlsdkPause(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);

    return ret;
1117 1118
}

1119 1120
static int
vzDomainResume(virDomainPtr domain)
1121
{
1122 1123 1124 1125 1126 1127 1128 1129
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom;
    int ret = -1;
    bool job = false;

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1130 1131 1132
    if (virDomainResumeEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (prlsdkResume(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);

    return ret;
1154 1155
}

1156
static int
1157
vzDomainCreateWithFlags(virDomainPtr domain, unsigned int flags)
1158
{
1159 1160 1161 1162 1163
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom;
    int ret = -1;
    bool job = false;

1164 1165
    virCheckFlags(0, -1);

1166 1167 1168
    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1169 1170 1171
    if (virDomainCreateWithFlagsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (prlsdkStart(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);

    return ret;
1193 1194
}

1195
static int
1196
vzDomainDestroyFlags(virDomainPtr domain, unsigned int flags)
1197
{
1198 1199 1200 1201 1202
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom;
    int ret = -1;
    bool job = false;

1203 1204
    virCheckFlags(0, -1);

1205 1206 1207
    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1208 1209 1210
    if (virDomainDestroyFlagsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (prlsdkKill(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);

    return ret;
1232 1233
}

1234
static int
1235 1236 1237 1238 1239 1240 1241
vzDomainDestroy(virDomainPtr dom)
{
    return vzDomainDestroyFlags(dom, 0);
}

static int
vzDomainShutdownFlags(virDomainPtr domain, unsigned int flags)
1242
{
1243 1244 1245 1246 1247
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom;
    int ret = -1;
    bool job = false;

1248 1249
    virCheckFlags(0, -1);

1250 1251 1252
    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1253 1254 1255
    if (virDomainShutdownFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (prlsdkStop(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);

    return ret;
1277 1278
}

1279 1280 1281 1282 1283
static int vzDomainShutdown(virDomainPtr dom)
{
    return vzDomainShutdownFlags(dom, 0);
}

1284 1285
static int
vzDomainReboot(virDomainPtr domain, unsigned int flags)
1286
{
1287 1288 1289 1290 1291
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom;
    int ret = -1;
    bool job = false;

1292
    virCheckFlags(0, -1);
1293 1294 1295 1296

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1297 1298 1299
    if (virDomainRebootEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (prlsdkRestart(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);

    return ret;
1321 1322
}

1323
static int vzDomainIsActive(virDomainPtr domain)
1324 1325 1326 1327
{
    virDomainObjPtr dom = NULL;
    int ret = -1;

1328
    if (!(dom = vzDomObjFromDomain(domain)))
1329 1330
        return -1;

1331 1332 1333
    if (virDomainIsActiveEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1334
    ret = virDomainObjIsActive(dom);
1335 1336

 cleanup:
1337 1338 1339 1340 1341
    virObjectUnlock(dom);

    return ret;
}

1342
static int
1343
vzDomainCreate(virDomainPtr domain)
1344
{
1345
    return vzDomainCreateWithFlags(domain, 0);
1346 1347
}

1348
static int
1349
vzDomainUndefineFlags(virDomainPtr domain,
M
Michal Privoznik 已提交
1350
                      unsigned int flags)
1351
{
1352
    vzConnPtr privconn = domain->conn->privateData;
1353
    virDomainObjPtr dom = NULL;
1354 1355
    int ret = -1;
    bool job = false;
1356

1357 1358
    virCheckFlags(VIR_DOMAIN_UNDEFINE_MANAGED_SAVE |
                  VIR_DOMAIN_UNDEFINE_SNAPSHOTS_METADATA, -1);
1359

1360
    if (!(dom = vzDomObjFromDomainRef(domain)))
1361 1362
        return -1;

1363 1364 1365
    if (virDomainUndefineFlagsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1366 1367 1368 1369
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

1370 1371 1372
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

1373
    ret = prlsdkUnregisterDomain(privconn->driver, dom, flags);
1374 1375 1376 1377 1378 1379

 cleanup:

    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
1380 1381

    return ret;
1382 1383 1384
}

static int
1385
vzDomainUndefine(virDomainPtr domain)
1386
{
1387
    return vzDomainUndefineFlags(domain, 0);
1388 1389
}

1390
static int
1391
vzDomainHasManagedSaveImage(virDomainPtr domain, unsigned int flags)
1392 1393
{
    virDomainObjPtr dom = NULL;
1394
    int state, reason;
1395
    int ret = -1;
1396 1397 1398

    virCheckFlags(0, -1);

1399
    if (!(dom = vzDomObjFromDomain(domain)))
1400 1401
        return -1;

1402 1403 1404
    if (virDomainHasManagedSaveImageEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1405 1406 1407
    state = virDomainObjGetState(dom, &reason);
    if (state == VIR_DOMAIN_SHUTOFF && reason == VIR_DOMAIN_SHUTOFF_SAVED)
        ret = 1;
1408 1409 1410 1411
    else
        ret = 0;

 cleanup:
1412 1413
    virObjectUnlock(dom);

1414 1415 1416 1417
    return ret;
}

static int
1418
vzDomainManagedSave(virDomainPtr domain, unsigned int flags)
1419
{
1420
    vzConnPtr privconn = domain->conn->privateData;
1421 1422 1423
    virDomainObjPtr dom = NULL;
    int state, reason;
    int ret = -1;
1424
    bool job = false;
1425 1426 1427 1428

    virCheckFlags(VIR_DOMAIN_SAVE_RUNNING |
                  VIR_DOMAIN_SAVE_PAUSED, -1);

1429
    if (!(dom = vzDomObjFromDomainRef(domain)))
1430 1431
        return -1;

1432 1433 1434
    if (virDomainManagedSaveEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1435 1436 1437 1438
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

1439 1440 1441
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

1442 1443
    state = virDomainObjGetState(dom, &reason);

1444 1445 1446
    if (state == VIR_DOMAIN_RUNNING && (flags & VIR_DOMAIN_SAVE_PAUSED) &&
        prlsdkPause(dom) < 0)
        goto cleanup;
1447

1448 1449 1450 1451 1452 1453 1454
    if (prlsdkSuspend(dom) < 0)
        goto cleanup;

    if (prlsdkUpdateDomain(privconn->driver, dom) < 0)
        goto cleanup;

    ret = 0;
1455 1456

 cleanup:
1457 1458 1459
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
1460 1461 1462 1463
    return ret;
}

static int
1464
vzDomainManagedSaveRemove(virDomainPtr domain, unsigned int flags)
1465 1466 1467 1468 1469 1470 1471
{
    virDomainObjPtr dom = NULL;
    int state, reason;
    int ret = -1;

    virCheckFlags(0, -1);

1472
    if (!(dom = vzDomObjFromDomainRef(domain)))
1473 1474
        return -1;

1475 1476 1477
    if (virDomainManagedSaveRemoveEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1478 1479 1480 1481 1482
    state = virDomainObjGetState(dom, &reason);

    if (!(state == VIR_DOMAIN_SHUTOFF && reason == VIR_DOMAIN_SHUTOFF_SAVED))
        goto cleanup;

1483
    ret = prlsdkDomainManagedSaveRemove(dom);
1484 1485

 cleanup:
1486
    virDomainObjEndAPI(&dom);
1487
    return ret;
1488 1489
}

1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
static int vzCheckConfigUpdateFlags(virDomainObjPtr dom, unsigned int *flags)
{
    if (virDomainObjUpdateModificationImpact(dom, flags) < 0)
        return -1;

    if (!(*flags & VIR_DOMAIN_AFFECT_CONFIG)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("domain config update needs VIR_DOMAIN_AFFECT_CONFIG "
                         "flag to be set"));
        return -1;
    }

    if (virDomainObjIsActive(dom) && !(*flags & VIR_DOMAIN_AFFECT_LIVE)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Updates on a running domain need "
                         "VIR_DOMAIN_AFFECT_LIVE flag"));
        return -1;
    }

    return 0;
}

1512
static int vzDomainAttachDeviceFlags(virDomainPtr domain, const char *xml,
M
Michal Privoznik 已提交
1513
                                     unsigned int flags)
1514 1515
{
    int ret = -1;
1516
    vzConnPtr privconn = domain->conn->privateData;
1517
    virDomainDeviceDefPtr dev = NULL;
1518
    virDomainObjPtr dom = NULL;
1519
    vzDriverPtr driver = privconn->driver;
1520
    bool job = false;
1521 1522 1523 1524

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

1525
    if (!(dom = vzDomObjFromDomainRef(domain)))
1526
        return -1;
1527

1528
    if (vzCheckConfigUpdateFlags(dom, &flags) < 0)
1529 1530
        goto cleanup;

1531 1532 1533
    if (virDomainAttachDeviceFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

1534 1535
    dev = virDomainDeviceDefParse(xml, dom->def, driver->caps,
                                  driver->xmlopt, VIR_DOMAIN_XML_INACTIVE);
1536 1537 1538
    if (dev == NULL)
        goto cleanup;

1539 1540 1541 1542
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

1543 1544 1545
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

1546 1547
    if (prlsdkAttachDevice(driver, dom, dev) < 0)
        goto cleanup;
1548

1549 1550 1551
    if (prlsdkUpdateDomain(driver, dom) < 0)
        goto cleanup;

1552 1553
    ret = 0;
 cleanup:
1554
    virDomainDeviceDefFree(dev);
1555 1556 1557
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
1558 1559 1560
    return ret;
}

1561
static int vzDomainAttachDevice(virDomainPtr domain, const char *xml)
1562
{
1563
    return vzDomainAttachDeviceFlags(domain, xml,
M
Michal Privoznik 已提交
1564
                                     VIR_DOMAIN_AFFECT_CONFIG | VIR_DOMAIN_AFFECT_LIVE);
1565 1566
}

1567
static int vzDomainDetachDeviceFlags(virDomainPtr domain, const char *xml,
M
Michal Privoznik 已提交
1568
                                     unsigned int flags)
1569 1570
{
    int ret = -1;
1571
    vzConnPtr privconn = domain->conn->privateData;
1572
    virDomainDeviceDefPtr dev = NULL;
1573
    virDomainObjPtr dom = NULL;
1574
    vzDriverPtr driver = privconn->driver;
1575
    bool job = false;
1576 1577 1578 1579

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

1580
    dom = vzDomObjFromDomainRef(domain);
1581
    if (dom == NULL)
1582 1583
        return -1;

1584
    if (vzCheckConfigUpdateFlags(dom, &flags) < 0)
1585 1586
        goto cleanup;

1587 1588 1589
    if (virDomainDetachDeviceFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

1590 1591
    dev = virDomainDeviceDefParse(xml, dom->def, driver->caps,
                                  driver->xmlopt,
1592 1593
                                  VIR_DOMAIN_XML_INACTIVE |
                                  VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE);
1594 1595 1596
    if (dev == NULL)
        goto cleanup;

1597 1598 1599 1600
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

1601 1602 1603
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

1604 1605
    if (prlsdkDetachDevice(driver, dom, dev) < 0)
        goto cleanup;
1606

1607 1608 1609
    if (prlsdkUpdateDomain(driver, dom) < 0)
        goto cleanup;

1610 1611
    ret = 0;
 cleanup:
1612
    virDomainDeviceDefFree(dev);
1613 1614 1615
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
1616

1617 1618 1619
    return ret;
}

1620
static int vzDomainDetachDevice(virDomainPtr domain, const char *xml)
1621
{
1622
    return vzDomainDetachDeviceFlags(domain, xml,
M
Michal Privoznik 已提交
1623
                                     VIR_DOMAIN_AFFECT_CONFIG | VIR_DOMAIN_AFFECT_LIVE);
1624 1625
}

1626 1627 1628 1629 1630 1631 1632 1633
static int
vzDomainSetUserPassword(virDomainPtr domain,
                        const char *user,
                        const char *password,
                        unsigned int flags)
{
    virDomainObjPtr dom = NULL;
    int ret = -1;
1634
    bool job = false;
1635 1636

    virCheckFlags(0, -1);
1637
    if (!(dom = vzDomObjFromDomainRef(domain)))
1638 1639
        return -1;

1640 1641 1642
    if (virDomainSetUserPasswordEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1643 1644 1645 1646
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

1647 1648 1649
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

1650 1651
    ret = prlsdkDomainSetUserPassword(dom, user, password);

1652 1653 1654 1655
 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
1656 1657 1658
    return ret;
}

1659
static int vzDomainUpdateDeviceFlags(virDomainPtr domain,
N
Nikolay Shirokovskiy 已提交
1660 1661 1662 1663
                                     const char *xml,
                                     unsigned int flags)
{
    int ret = -1;
1664 1665
    vzConnPtr privconn = domain->conn->privateData;
    virDomainObjPtr dom = NULL;
N
Nikolay Shirokovskiy 已提交
1666 1667
    virDomainDeviceDefPtr dev = NULL;
    vzDriverPtr driver = privconn->driver;
1668
    bool job = false;
N
Nikolay Shirokovskiy 已提交
1669 1670 1671 1672

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

1673
    if (!(dom = vzDomObjFromDomainRef(domain)))
N
Nikolay Shirokovskiy 已提交
1674 1675
        return -1;

1676 1677 1678
    if (virDomainUpdateDeviceFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

1679
    if (vzCheckConfigUpdateFlags(dom, &flags) < 0)
N
Nikolay Shirokovskiy 已提交
1680 1681
        goto cleanup;

1682
    if (!(dev = virDomainDeviceDefParse(xml, dom->def, driver->caps,
N
Nikolay Shirokovskiy 已提交
1683 1684 1685 1686
                                        driver->xmlopt,
                                        VIR_DOMAIN_XML_INACTIVE)))
        goto cleanup;

1687 1688 1689 1690
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

1691 1692 1693
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

1694
    if (prlsdkUpdateDevice(driver, dom, dev) < 0)
N
Nikolay Shirokovskiy 已提交
1695 1696
        goto cleanup;

1697 1698 1699
    if (prlsdkUpdateDomain(driver, dom) < 0)
        goto cleanup;

N
Nikolay Shirokovskiy 已提交
1700 1701 1702 1703
    ret = 0;
 cleanup:

    virDomainDeviceDefFree(dev);
1704 1705 1706
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
N
Nikolay Shirokovskiy 已提交
1707 1708 1709 1710
    return ret;
}


1711
static unsigned long long
1712
vzDomainGetMaxMemory(virDomainPtr domain)
1713 1714 1715 1716
{
    virDomainObjPtr dom = NULL;
    int ret = -1;

1717
    if (!(dom = vzDomObjFromDomain(domain)))
1718 1719
        return -1;

1720 1721 1722
    if (virDomainGetMaxMemoryEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1723
    ret = virDomainDefGetMemoryTotal(dom->def);
1724 1725

 cleanup:
1726 1727 1728 1729
    virObjectUnlock(dom);
    return ret;
}

1730
static int
1731 1732 1733
vzDomainBlockStatsImpl(virDomainObjPtr dom,
                       const char *path,
                       virDomainBlockStatsPtr stats)
1734
{
1735
    vzDomObjPtr privdom = dom->privateData;
1736 1737 1738 1739 1740 1741
    size_t i;
    int idx;

    if (*path) {
        if ((idx = virDomainDiskIndexByName(dom->def, path, false)) < 0) {
            virReportError(VIR_ERR_INVALID_ARG, _("invalid path: %s"), path);
1742
            return -1;
1743
        }
M
Maxim Nestratov 已提交
1744 1745 1746 1747
        if (prlsdkGetBlockStats(privdom->stats,
                                dom->def->disks[idx],
                                stats,
                                IS_CT(dom->def)) < 0)
1748
            return -1;
1749 1750 1751
    } else {
        virDomainBlockStatsStruct s;

M
Michal Privoznik 已提交
1752
#define PARALLELS_ZERO_STATS(VAR, TYPE, NAME)      \
1753 1754 1755 1756 1757 1758 1759
        stats->VAR = 0;

        PARALLELS_BLOCK_STATS_FOREACH(PARALLELS_ZERO_STATS)

#undef PARALLELS_ZERO_STATS

        for (i = 0; i < dom->def->ndisks; i++) {
M
Maxim Nestratov 已提交
1760 1761 1762 1763
            if (prlsdkGetBlockStats(privdom->stats,
                                    dom->def->disks[i],
                                    &s,
                                    IS_CT(dom->def)) < 0)
1764
                return -1;
1765

1766
#define PARALLELS_SUM_STATS(VAR, TYPE, NAME)        \
M
Michal Privoznik 已提交
1767 1768
    if (s.VAR != -1)                                \
        stats->VAR += s.VAR;
1769

M
Michal Privoznik 已提交
1770
        PARALLELS_BLOCK_STATS_FOREACH(PARALLELS_SUM_STATS)
1771

1772
#undef PARALLELS_SUM_STATS
1773 1774 1775
        }
    }
    stats->errs = -1;
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
    return 0;
}

static int
vzDomainBlockStats(virDomainPtr domain,
                   const char *path,
                   virDomainBlockStatsPtr stats)
{
    virDomainObjPtr dom;
    int ret = -1;

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1790 1791 1792
    if (virDomainBlockStatsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1793 1794 1795
    if (vzDomainBlockStatsImpl(dom, path, stats) < 0)
        goto cleanup;

1796 1797 1798
    ret = 0;

 cleanup:
1799
    virDomainObjEndAPI(&dom);
1800 1801 1802 1803

    return ret;
}

1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
static int
vzDomainBlockStatsToParams(virDomainBlockStatsPtr stats,
                           virTypedParameterPtr params,
                           int *nparams)
{
    size_t i;

    if (*nparams == 0) {
#define PARALLELS_COUNT_STATS(VAR, TYPE, NAME)      \
        if ((stats->VAR) != -1)                     \
            ++*nparams;

        PARALLELS_BLOCK_STATS_FOREACH(PARALLELS_COUNT_STATS)

#undef PARALLELS_COUNT_STATS
        return 0;
    }

    i = 0;
#define PARALLELS_BLOCK_STATS_ASSIGN_PARAM(VAR, TYPE, NAME)                     \
    if (i < *nparams && (stats->VAR) != -1) {                                   \
        if (virTypedParameterAssign(params + i, TYPE,                           \
                                    VIR_TYPED_PARAM_LLONG, (stats->VAR)) < 0)   \
            return -1;                                                          \
        i++;                                                                    \
    }

    PARALLELS_BLOCK_STATS_FOREACH(PARALLELS_BLOCK_STATS_ASSIGN_PARAM)

#undef PARALLELS_BLOCK_STATS_ASSIGN_PARAM

    *nparams = i;
    return 0;
}

1839
static int
1840
vzDomainBlockStatsFlags(virDomainPtr domain,
M
Michal Privoznik 已提交
1841 1842 1843 1844
                        const char *path,
                        virTypedParameterPtr params,
                        int *nparams,
                        unsigned int flags)
1845 1846
{
    virDomainBlockStatsStruct stats;
1847
    virDomainObjPtr dom;
1848 1849 1850 1851 1852 1853
    int ret = -1;

    virCheckFlags(VIR_TYPED_PARAM_STRING_OKAY, -1);
    /* We don't return strings, and thus trivially support this flag.  */
    flags &= ~VIR_TYPED_PARAM_STRING_OKAY;

1854 1855 1856
    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1857 1858 1859
    if (virDomainBlockStatsFlagsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1860
    if (vzDomainBlockStatsImpl(dom, path, &stats) < 0)
1861 1862
        goto cleanup;

1863
    if (vzDomainBlockStatsToParams(&stats, params, nparams) < 0)
1864 1865 1866 1867 1868
        goto cleanup;

    ret = 0;

 cleanup:
1869 1870
    virDomainObjEndAPI(&dom);

1871 1872 1873
    return ret;
}

1874 1875 1876 1877 1878 1879
static int
vzDomainInterfaceStats(virDomainPtr domain,
                         const char *path,
                         virDomainInterfaceStatsPtr stats)
{
    virDomainObjPtr dom = NULL;
1880
    vzDomObjPtr privdom;
1881
    int ret = -1;
1882 1883 1884 1885

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1886 1887 1888
    if (virDomainInterfaceStatsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1889 1890 1891
    privdom = dom->privateData;

    ret = prlsdkGetNetStats(privdom->stats, privdom->sdkdom, path, stats);
1892 1893

 cleanup:
1894 1895 1896 1897
    virDomainObjEndAPI(&dom);

    return ret;
}
1898

N
Nikolay Shirokovskiy 已提交
1899 1900 1901 1902 1903 1904 1905
static int
vzDomainMemoryStats(virDomainPtr domain,
                    virDomainMemoryStatPtr stats,
                    unsigned int nr_stats,
                    unsigned int flags)
{
    virDomainObjPtr dom = NULL;
1906
    vzDomObjPtr privdom;
N
Nikolay Shirokovskiy 已提交
1907 1908 1909 1910 1911 1912
    int ret = -1;

    virCheckFlags(0, -1);
    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

1913 1914 1915
    if (virDomainMemoryStatsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

1916 1917 1918
    privdom = dom->privateData;

    ret = prlsdkGetMemoryStats(privdom->stats, stats, nr_stats);
1919 1920

 cleanup:
N
Nikolay Shirokovskiy 已提交
1921 1922 1923 1924 1925
    virDomainObjEndAPI(&dom);

    return ret;
}

1926
static int
1927
vzDomainGetVcpusFlags(virDomainPtr domain,
1928 1929
                      unsigned int flags)
{
1930
    virDomainObjPtr dom;
1931
    int ret = -1;
1932 1933 1934 1935 1936

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

1937
    if (!(dom = vzDomObjFromDomain(domain)))
1938
        return -1;
1939

1940 1941 1942
    if (virDomainGetVcpusFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

1943
    if (flags & VIR_DOMAIN_VCPU_MAXIMUM)
1944
        ret = virDomainDefGetVcpusMax(dom->def);
1945
    else
1946
        ret = virDomainDefGetVcpus(dom->def);
1947

1948
 cleanup:
1949
    virObjectUnlock(dom);
1950 1951 1952 1953

    return ret;
}

1954
static int vzDomainGetMaxVcpus(virDomainPtr domain)
1955
{
1956 1957
    return vzDomainGetVcpusFlags(domain, (VIR_DOMAIN_AFFECT_LIVE |
                                          VIR_DOMAIN_VCPU_MAXIMUM));
1958 1959
}

1960
static int vzDomainIsUpdated(virDomainPtr domain)
1961
{
1962
    virDomainObjPtr dom;
1963
    int ret = -1;
1964 1965 1966

    /* As far as VZ domains are always updated (e.g. current==persistent),
     * we just check for domain existence */
1967
    if (!(dom = vzDomObjFromDomain(domain)))
1968
        return -1;
1969

1970 1971 1972 1973 1974 1975
    if (virDomainIsUpdatedEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
1976
    virObjectUnlock(dom);
1977
    return ret;
1978 1979
}

1980
static int vzConnectGetMaxVcpus(virConnectPtr conn,
1981 1982
                                const char *type)
{
1983 1984 1985
    if (virConnectGetMaxVcpusEnsureACL(conn) < 0)
        return -1;

1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
    /* As far as we have no limitation for containers
     * we report maximum */
    if (type == NULL || STRCASEEQ(type, "vz") || STRCASEEQ(type, "parallels"))
        return 1028;

    virReportError(VIR_ERR_INVALID_ARG,
                   _("unknown type '%s'"), type);
    return -1;
}

1996
static int
1997
vzNodeGetCPUStats(virConnectPtr conn,
1998 1999 2000 2001 2002
                  int cpuNum,
                  virNodeCPUStatsPtr params,
                  int *nparams,
                  unsigned int flags)
{
2003 2004 2005
    if (virNodeGetCPUStatsEnsureACL(conn) < 0)
        return -1;

2006
    return virHostCPUGetStats(cpuNum, params, nparams, flags);
2007 2008 2009
}

static int
2010
vzNodeGetMemoryStats(virConnectPtr conn,
2011 2012 2013 2014 2015
                     int cellNum,
                     virNodeMemoryStatsPtr params,
                     int *nparams,
                     unsigned int flags)
{
2016 2017 2018
    if (virNodeGetMemoryStatsEnsureACL(conn) < 0)
        return -1;

2019
    return virHostMemGetStats(cellNum, params, nparams, flags);
2020 2021 2022
}

static int
2023
vzNodeGetCellsFreeMemory(virConnectPtr conn,
2024 2025 2026 2027
                         unsigned long long *freeMems,
                         int startCell,
                         int maxCells)
{
2028 2029 2030
    if (virNodeGetCellsFreeMemoryEnsureACL(conn) < 0)
        return -1;

2031
    return virHostMemGetCellsFree(freeMems, startCell, maxCells);
2032 2033 2034
}

static unsigned long long
2035
vzNodeGetFreeMemory(virConnectPtr conn)
2036 2037
{
    unsigned long long freeMem;
2038 2039 2040 2041

    if (virNodeGetFreeMemoryEnsureACL(conn) < 0)
        return -1;

2042
    if (virHostMemGetInfo(NULL, &freeMem) < 0)
2043 2044 2045 2046
        return 0;
    return freeMem;
}

2047 2048 2049 2050 2051 2052 2053 2054 2055
static int
vzConnectRegisterCloseCallback(virConnectPtr conn,
                               virConnectCloseFunc cb,
                               void *opaque,
                               virFreeCallback freecb)
{
    vzConnPtr privconn = conn->privateData;
    int ret = -1;

2056 2057 2058
    if (virConnectRegisterCloseCallbackEnsureACL(conn) < 0)
        return -1;

2059 2060
    virObjectLock(privconn->driver);

2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
    if (virConnectCloseCallbackDataGetCallback(privconn->closeCallback) != NULL) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("A close callback is already registered"));
        goto cleanup;
    }

    virConnectCloseCallbackDataRegister(privconn->closeCallback, conn, cb,
                                        opaque, freecb);
    ret = 0;

 cleanup:
2072
    virObjectUnlock(privconn->driver);
2073 2074 2075 2076 2077 2078 2079 2080 2081 2082

    return ret;
}

static int
vzConnectUnregisterCloseCallback(virConnectPtr conn, virConnectCloseFunc cb)
{
    vzConnPtr privconn = conn->privateData;
    int ret = -1;

2083 2084 2085
    if (virConnectUnregisterCloseCallbackEnsureACL(conn) < 0)
        return -1;

2086
    virObjectLock(privconn->driver);
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097

    if (virConnectCloseCallbackDataGetCallback(privconn->closeCallback) != cb) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("A different callback was requested"));
        goto cleanup;
    }

    virConnectCloseCallbackDataUnregister(privconn->closeCallback, cb);
    ret = 0;

 cleanup:
2098
    virObjectUnlock(privconn->driver);
2099 2100 2101 2102

    return ret;
}

2103 2104
static int vzDomainSetMemoryFlags(virDomainPtr domain, unsigned long memory,
                                  unsigned int flags)
2105 2106 2107
{
    virDomainObjPtr dom = NULL;
    int ret = -1;
2108
    bool job = false;
2109 2110 2111 2112

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

2113
    if (!(dom = vzDomObjFromDomainRef(domain)))
2114 2115
        return -1;

2116
    if (vzCheckConfigUpdateFlags(dom, &flags) < 0)
2117 2118
        goto cleanup;

2119 2120 2121
    if (virDomainSetMemoryFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

2122 2123 2124 2125
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

2126 2127 2128
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

2129 2130 2131 2132
    ret = prlsdkSetMemsize(dom, memory >> 10);

 cleanup:

2133 2134 2135
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
2136 2137 2138 2139 2140
    return ret;
}

static int vzDomainSetMemory(virDomainPtr domain, unsigned long memory)
{
2141 2142 2143 2144 2145 2146 2147
    virDomainObjPtr dom = NULL;
    int ret = -1;
    bool job = false;

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

2148 2149 2150
    if (virDomainSetMemoryEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    ret = prlsdkSetMemsize(dom, memory >> 10);

 cleanup:

    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
    return ret;
2166 2167
}

2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
static virDomainSnapshotObjPtr
vzSnapObjFromName(virDomainSnapshotObjListPtr snapshots, const char *name)
{
    virDomainSnapshotObjPtr snap = NULL;
    snap = virDomainSnapshotFindByName(snapshots, name);
    if (!snap)
        virReportError(VIR_ERR_NO_DOMAIN_SNAPSHOT,
                       _("no domain snapshot with matching name '%s'"), name);

    return snap;
}

static virDomainSnapshotObjPtr
vzSnapObjFromSnapshot(virDomainSnapshotObjListPtr snapshots,
                      virDomainSnapshotPtr snapshot)
{
    return vzSnapObjFromName(snapshots, snapshot->name);
}

static int
vzCurrentSnapshotIterator(void *payload,
                              const void *name ATTRIBUTE_UNUSED,
                              void *data)
{
    virDomainSnapshotObjPtr snapshot = payload;
    virDomainSnapshotObjPtr *current = data;

    if (snapshot->def->current)
        *current = snapshot;

    return 0;
}

static virDomainSnapshotObjPtr
vzFindCurrentSnapshot(virDomainSnapshotObjListPtr snapshots)
{
    virDomainSnapshotObjPtr current = NULL;

    virDomainSnapshotForEach(snapshots, vzCurrentSnapshotIterator, &current);
    return current;
}

static int
vzDomainSnapshotNum(virDomainPtr domain, unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int n = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_ROOTS |
                  VIR_DOMAIN_SNAPSHOT_FILTERS_ALL, -1);

2220
    if (!(dom = vzDomObjFromDomainRef(domain)))
2221 2222
        return -1;

2223 2224 2225
    if (virDomainSnapshotNumEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2226 2227 2228 2229 2230 2231 2232
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    n = virDomainSnapshotObjListNum(snapshots, NULL, flags);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2233
    virDomainObjEndAPI(&dom);
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250

    return n;
}

static int
vzDomainSnapshotListNames(virDomainPtr domain,
                          char **names,
                          int nameslen,
                          unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int n = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_ROOTS |
                  VIR_DOMAIN_SNAPSHOT_FILTERS_ALL, -1);

2251
    if (!(dom = vzDomObjFromDomainRef(domain)))
2252 2253
        return -1;

2254 2255 2256
    if (virDomainSnapshotListNamesEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2257 2258 2259 2260 2261 2262 2263
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    n = virDomainSnapshotObjListGetNames(snapshots, NULL, names, nameslen, flags);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2264
    virDomainObjEndAPI(&dom);
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280

    return n;
}

static int
vzDomainListAllSnapshots(virDomainPtr domain,
                         virDomainSnapshotPtr **snaps,
                         unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int n = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_ROOTS |
                  VIR_DOMAIN_SNAPSHOT_FILTERS_ALL, -1);

2281
    if (!(dom = vzDomObjFromDomainRef(domain)))
2282 2283
        return -1;

2284 2285 2286
    if (virDomainListAllSnapshotsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2287 2288 2289 2290 2291 2292 2293
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    n = virDomainListSnapshots(snapshots, NULL, domain, snaps, flags);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2294
    virDomainObjEndAPI(&dom);
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310

    return n;
}

static char *
vzDomainSnapshotGetXMLDesc(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    virDomainObjPtr dom;
    char *xml = NULL;
    virDomainSnapshotObjPtr snap;
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    virDomainSnapshotObjListPtr snapshots = NULL;
    vzConnPtr privconn = snapshot->domain->conn->privateData;

    virCheckFlags(VIR_DOMAIN_XML_SECURE, NULL);

2311
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2312 2313
        return NULL;

2314 2315 2316
    if (virDomainSnapshotGetXMLDescEnsureACL(snapshot->domain->conn, dom->def, flags) < 0)
        goto cleanup;

2317 2318 2319 2320 2321 2322 2323 2324 2325
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromSnapshot(snapshots, snapshot)))
        goto cleanup;

    virUUIDFormat(snapshot->domain->uuid, uuidstr);

    xml = virDomainSnapshotDefFormat(uuidstr, snap->def, privconn->driver->caps,
2326
                                     privconn->driver->xmlopt,
2327 2328 2329 2330 2331
                                     virDomainDefFormatConvertXMLFlags(flags),
                                     0);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2332
    virDomainObjEndAPI(&dom);
2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347

    return xml;
}

static int
vzDomainSnapshotNumChildren(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjPtr snap;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int n = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS |
                  VIR_DOMAIN_SNAPSHOT_FILTERS_ALL, -1);

2348
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2349 2350
        return -1;

2351 2352 2353
    if (virDomainSnapshotNumChildrenEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromSnapshot(snapshots, snapshot)))
        goto cleanup;

    n = virDomainSnapshotObjListNum(snapshots, snap, flags);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2364
    virDomainObjEndAPI(&dom);
2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382

    return n;
}

static int
vzDomainSnapshotListChildrenNames(virDomainSnapshotPtr snapshot,
                                  char **names,
                                  int nameslen,
                                  unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjPtr snap;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int n = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS |
                  VIR_DOMAIN_SNAPSHOT_FILTERS_ALL, -1);

2383
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2384 2385
        return -1;

2386 2387 2388
    if (virDomainSnapshotListChildrenNamesEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2389 2390 2391 2392 2393 2394 2395 2396 2397 2398
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromSnapshot(snapshots, snapshot)))
        goto cleanup;

    n = virDomainSnapshotObjListGetNames(snapshots, snap, names, nameslen, flags);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2399
    virDomainObjEndAPI(&dom);
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416

    return n;
}

static int
vzDomainSnapshotListAllChildren(virDomainSnapshotPtr snapshot,
                                virDomainSnapshotPtr **snaps,
                                unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjPtr snap;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int n = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS |
                  VIR_DOMAIN_SNAPSHOT_FILTERS_ALL, -1);

2417
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2418 2419
        return -1;

2420 2421 2422
    if (virDomainSnapshotListAllChildrenEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromSnapshot(snapshots, snapshot)))
        goto cleanup;

    n = virDomainListSnapshots(snapshots, snap, snapshot->domain, snaps, flags);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2433
    virDomainObjEndAPI(&dom);
2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449

    return n;
}

static virDomainSnapshotPtr
vzDomainSnapshotLookupByName(virDomainPtr domain,
                             const char *name,
                             unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjPtr snap;
    virDomainSnapshotPtr snapshot = NULL;
    virDomainSnapshotObjListPtr snapshots = NULL;

    virCheckFlags(0, NULL);

2450
    if (!(dom = vzDomObjFromDomainRef(domain)))
2451 2452
        return NULL;

2453 2454 2455
    if (virDomainSnapshotLookupByNameEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2456 2457 2458 2459 2460 2461 2462 2463 2464
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromName(snapshots, name)))
        goto cleanup;

    snapshot = virGetDomainSnapshot(domain, snap->def->name);

 cleanup:
2465
    virDomainObjEndAPI(&dom);
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
    virDomainSnapshotObjListFree(snapshots);

    return snapshot;
}

static int
vzDomainHasCurrentSnapshot(virDomainPtr domain, unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjListPtr snapshots = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

2480
    if (!(dom = vzDomObjFromDomainRef(domain)))
2481 2482
        return -1;

2483 2484 2485
    if (virDomainHasCurrentSnapshotEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2486 2487 2488 2489 2490 2491 2492
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    ret = vzFindCurrentSnapshot(snapshots) != NULL;

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2493
    virDomainObjEndAPI(&dom);
2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507

    return ret;
}

static virDomainSnapshotPtr
vzDomainSnapshotGetParent(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotObjPtr snap;
    virDomainSnapshotPtr parent = NULL;
    virDomainSnapshotObjListPtr snapshots = NULL;

    virCheckFlags(0, NULL);

2508
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2509 2510
        return NULL;

2511 2512 2513
    if (virDomainSnapshotGetParentEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromSnapshot(snapshots, snapshot)))
        goto cleanup;

    if (!snap->def->parent) {
        virReportError(VIR_ERR_NO_DOMAIN_SNAPSHOT,
                       _("snapshot '%s' does not have a parent"),
                       snap->def->name);
        goto cleanup;
    }

    parent = virGetDomainSnapshot(snapshot->domain, snap->def->parent);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2531
    virDomainObjEndAPI(&dom);
2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545

    return parent;
}

static virDomainSnapshotPtr
vzDomainSnapshotCurrent(virDomainPtr domain, unsigned int flags)
{
    virDomainObjPtr dom;
    virDomainSnapshotPtr snapshot = NULL;
    virDomainSnapshotObjListPtr snapshots = NULL;
    virDomainSnapshotObjPtr current;

    virCheckFlags(0, NULL);

2546
    if (!(dom = vzDomObjFromDomainRef(domain)))
2547 2548
        return NULL;

2549 2550 2551
    if (virDomainSnapshotCurrentEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(current = vzFindCurrentSnapshot(snapshots))) {
        virReportError(VIR_ERR_NO_DOMAIN_SNAPSHOT, "%s",
                       _("the domain does not have a current snapshot"));
        goto cleanup;
    }

    snapshot = virGetDomainSnapshot(domain, current->def->name);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2565
    virDomainObjEndAPI(&dom);
2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579

    return snapshot;
}

static int
vzDomainSnapshotIsCurrent(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    virDomainObjPtr dom;
    int ret = -1;
    virDomainSnapshotObjListPtr snapshots = NULL;
    virDomainSnapshotObjPtr current;

    virCheckFlags(0, -1);

2580
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2581 2582
        return -1;

2583 2584 2585
    if (virDomainSnapshotIsCurrentEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2586 2587 2588 2589 2590 2591 2592 2593
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    current = vzFindCurrentSnapshot(snapshots);
    ret = current && STREQ(snapshot->name, current->def->name);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2594
    virDomainObjEndAPI(&dom);
2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609

    return ret;
}

static int
vzDomainSnapshotHasMetadata(virDomainSnapshotPtr snapshot,
                              unsigned int flags)
{
    virDomainObjPtr dom;
    int ret = -1;
    virDomainSnapshotObjPtr snap;
    virDomainSnapshotObjListPtr snapshots = NULL;

    virCheckFlags(0, -1);

2610
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2611 2612
        return -1;

2613 2614 2615
    if (virDomainSnapshotHasMetadataEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2616 2617 2618 2619 2620 2621 2622 2623 2624 2625
    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(snap = vzSnapObjFromSnapshot(snapshots, snapshot)))
        goto cleanup;

    ret = 1;

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
2626 2627
    virDomainObjEndAPI(&dom);

2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
    return ret;
}

static virDomainSnapshotPtr
vzDomainSnapshotCreateXML(virDomainPtr domain,
                          const char *xmlDesc,
                          unsigned int flags)
{
    virDomainSnapshotDefPtr def = NULL;
    virDomainSnapshotPtr snapshot = NULL;
    virDomainObjPtr dom;
    vzConnPtr privconn = domain->conn->privateData;
    vzDriverPtr driver = privconn->driver;
    unsigned int parse_flags = VIR_DOMAIN_SNAPSHOT_PARSE_DISKS;
    virDomainSnapshotObjListPtr snapshots = NULL;
    virDomainSnapshotObjPtr current;
2644
    bool job = false;
2645 2646 2647

    virCheckFlags(0, NULL);

2648
    if (!(dom = vzDomObjFromDomainRef(domain)))
2649 2650
        return NULL;

2651 2652 2653
    if (virDomainSnapshotCreateXMLEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669
    if (!(def = virDomainSnapshotDefParseString(xmlDesc, driver->caps,
                                                driver->xmlopt, parse_flags)))
        goto cleanup;

    if (def->ndisks > 0) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("configuring disks is not supported for vz snapshots"));
        goto cleanup;
    }

    if (def->memory) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("configuring memory location is not supported"));
        goto cleanup;
    }

2670 2671 2672 2673
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

2674 2675 2676
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
    /* snaphot name is ignored, it will be set to auto generated by sdk uuid */
    if (prlsdkCreateSnapshot(dom, def->description) < 0)
        goto cleanup;

    if (!(snapshots = prlsdkLoadSnapshots(dom)))
        goto cleanup;

    if (!(current = vzFindCurrentSnapshot(snapshots))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("can't find created snapshot"));
        goto cleanup;
    }

    /* hopefully new current snapshot is newly created one */
    snapshot = virGetDomainSnapshot(domain, current->def->name);

 cleanup:
    virDomainSnapshotObjListFree(snapshots);
    virDomainSnapshotDefFree(def);
2696 2697 2698
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710

    return snapshot;
}

static int
vzDomainSnapshotDelete(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    virDomainObjPtr dom;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN, -1);

2711
    if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
2712 2713
        return -1;

2714 2715 2716
    if (virDomainSnapshotDeleteEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2717 2718 2719
    ret = prlsdkDeleteSnapshot(dom, snapshot->name,
                               flags & VIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN);

2720
 cleanup:
2721
    virDomainObjEndAPI(&dom);
2722 2723 2724 2725 2726 2727 2728 2729 2730

    return ret;
}

static int
vzDomainRevertToSnapshot(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    virDomainObjPtr dom;
    int ret = -1;
2731
    bool job = false;
2732 2733 2734 2735 2736 2737

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_REVERT_PAUSED, -1);

    if (!(dom = vzDomObjFromDomain(snapshot->domain)))
        return -1;

2738 2739 2740
    if (virDomainRevertToSnapshotEnsureACL(snapshot->domain->conn, dom->def) < 0)
        goto cleanup;

2741 2742 2743 2744
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

2745 2746 2747
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

2748 2749
    ret = prlsdkSwitchToSnapshot(dom, snapshot->name,
                                 flags & VIR_DOMAIN_SNAPSHOT_REVERT_PAUSED);
2750 2751 2752 2753
 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
2754 2755 2756 2757

    return ret;
}

2758 2759 2760 2761 2762 2763
enum vzMigrationCookieFeatures {
    VZ_MIGRATION_COOKIE_SESSION_UUID  = (1 << 0),
    VZ_MIGRATION_COOKIE_DOMAIN_UUID = (1 << 1),
    VZ_MIGRATION_COOKIE_DOMAIN_NAME = (1 << 1),
};

2764 2765 2766
typedef struct _vzMigrationCookie vzMigrationCookie;
typedef vzMigrationCookie *vzMigrationCookiePtr;
struct _vzMigrationCookie {
2767 2768
    unsigned char *session_uuid;
    unsigned char *uuid;
2769 2770 2771 2772 2773 2774 2775 2776
    char *name;
};

static void
vzMigrationCookieFree(vzMigrationCookiePtr mig)
{
    if (!mig)
        return;
2777 2778 2779

    VIR_FREE(mig->session_uuid);
    VIR_FREE(mig->uuid);
2780 2781 2782 2783 2784
    VIR_FREE(mig->name);
    VIR_FREE(mig);
}

static int
2785 2786 2787 2788
vzBakeCookie(vzDriverPtr driver,
             virDomainObjPtr dom,
             char **cookieout, int *cookieoutlen,
             unsigned int flags)
2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (!cookieout || !cookieoutlen) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Migration cookie parameters are not provided."));
        return -1;
    }

    *cookieout = NULL;
    *cookieoutlen = 0;

    virBufferAddLit(&buf, "<vz-migration>\n");
    virBufferAdjustIndent(&buf, 2);
2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825

    if (flags & VZ_MIGRATION_COOKIE_SESSION_UUID) {
        virUUIDFormat(driver->session_uuid, uuidstr);
        virBufferAsprintf(&buf, "<session-uuid>%s</session-uuid>\n", uuidstr);
    }

    if (flags & VZ_MIGRATION_COOKIE_DOMAIN_UUID) {
        unsigned char fakeuuid[VIR_UUID_BUFLEN] = { 0 };

        /* if dom is NULL just pass some parsable uuid for backward compat.
         * It is not used by peer */
        virUUIDFormat(dom ? dom->def->uuid : fakeuuid, uuidstr);
        virBufferAsprintf(&buf, "<uuid>%s</uuid>\n", uuidstr);
    }

    if (flags & VZ_MIGRATION_COOKIE_DOMAIN_NAME) {
        /* if dom is NULL just pass some name for backward compat.
         * It is not used by peer */
        virBufferAsprintf(&buf, "<name>%s</name>\n", dom ? dom->def->name :
                                                           "__fakename__");
    }

2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838
    virBufferAdjustIndent(&buf, -2);
    virBufferAddLit(&buf, "</vz-migration>\n");

    if (virBufferCheckError(&buf) < 0)
        return -1;

    *cookieout = virBufferContentAndReset(&buf);
    *cookieoutlen = strlen(*cookieout) + 1;

    return 0;
}

static vzMigrationCookiePtr
2839
vzEatCookie(const char *cookiein, int cookieinlen, unsigned int flags)
2840 2841 2842
{
    xmlDocPtr doc = NULL;
    xmlXPathContextPtr ctx = NULL;
2843
    char *tmp = NULL;
2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858
    vzMigrationCookiePtr mig = NULL;

    if (VIR_ALLOC(mig) < 0)
        return NULL;

    if (!cookiein || cookieinlen <= 0 || cookiein[cookieinlen - 1] != '\0') {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Invalid migration cookie"));
        goto error;
    }

    if (!(doc = virXMLParseStringCtxt(cookiein,
                                      _("(_migration_cookie)"), &ctx)))
        goto error;

2859 2860 2861 2862
    if ((flags & VZ_MIGRATION_COOKIE_SESSION_UUID)
        && (!(tmp = virXPathString("string(./session-uuid[1])", ctx))
            || (VIR_ALLOC_N(mig->session_uuid, VIR_UUID_BUFLEN) < 0)
            || (virUUIDParse(tmp, mig->session_uuid) < 0))) {
2863
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
2864 2865
                       _("missing or malformed session-uuid element "
                         "in migration data"));
2866 2867 2868 2869 2870
        VIR_FREE(tmp);
        goto error;
    }
    VIR_FREE(tmp);

2871 2872 2873 2874
    if ((flags & VZ_MIGRATION_COOKIE_DOMAIN_UUID)
        && (!(tmp = virXPathString("string(./uuid[1])", ctx))
            || (VIR_ALLOC_N(mig->uuid, VIR_UUID_BUFLEN) < 0)
            || (virUUIDParse(tmp, mig->uuid) < 0))) {
2875
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
2876
                       _("missing or malformed uuid element in migration data"));
2877 2878 2879 2880 2881
        VIR_FREE(tmp);
        goto error;
    }
    VIR_FREE(tmp);

2882 2883
    if ((flags & VZ_MIGRATION_COOKIE_DOMAIN_NAME)
        && !(mig->name = virXPathString("string(./name[1])", ctx))) {
2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("missing name element in migration data"));
        goto error;
    }

 cleanup:
    xmlXPathFreeContext(ctx);
    xmlFreeDoc(doc);
    return mig;

 error:
    vzMigrationCookieFree(mig);
    mig = NULL;
    goto cleanup;
}

2900 2901 2902 2903
#define VZ_MIGRATION_FLAGS         (VIR_MIGRATE_PAUSED |          \
                                    VIR_MIGRATE_PEER2PEER |       \
                                    VIR_MIGRATE_LIVE |            \
                                    VIR_MIGRATE_UNDEFINE_SOURCE | \
2904 2905
                                    VIR_MIGRATE_PERSIST_DEST |    \
                                    VIR_MIGRATE_NON_SHARED_INC)
2906 2907 2908 2909 2910

#define VZ_MIGRATION_PARAMETERS                                 \
    VIR_MIGRATE_PARAM_DEST_XML,         VIR_TYPED_PARAM_STRING, \
    VIR_MIGRATE_PARAM_URI,              VIR_TYPED_PARAM_STRING, \
    VIR_MIGRATE_PARAM_DEST_NAME,        VIR_TYPED_PARAM_STRING, \
2911
    VIR_MIGRATE_PARAM_BANDWIDTH,        VIR_TYPED_PARAM_ULLONG, \
2912 2913
    NULL

2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941
static char *
vzDomainMigrateBeginStep(virDomainObjPtr dom,
                         vzDriverPtr driver,
                         virTypedParameterPtr params,
                         int nparams,
                         char **cookieout,
                         int *cookieoutlen)
{
    /* we can't do this check via VZ_MIGRATION_PARAMETERS as on preparation
     * step domain xml will be passed via this parameter and it is a common
     * style to use single allowed parameter list definition in all steps */
    if (virTypedParamsGet(params, nparams, VIR_MIGRATE_PARAM_DEST_XML)) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("Changing destination XML is not supported"));
        return NULL;
    }

    /* session uuid, domain uuid and domain name are for backward compat */
    if (vzBakeCookie(driver, dom, cookieout, cookieoutlen,
                     VZ_MIGRATION_COOKIE_SESSION_UUID
                     | VZ_MIGRATION_COOKIE_DOMAIN_UUID
                     | VZ_MIGRATION_COOKIE_DOMAIN_NAME) < 0)
        return NULL;

    return virDomainDefFormat(dom->def, driver->caps,
                              VIR_DOMAIN_XML_MIGRATABLE);
}

2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952
static char *
vzDomainMigrateBegin3Params(virDomainPtr domain,
                            virTypedParameterPtr params,
                            int nparams,
                            char **cookieout,
                            int *cookieoutlen,
                            unsigned int flags)
{
    char *xml = NULL;
    virDomainObjPtr dom = NULL;
    vzConnPtr privconn = domain->conn->privateData;
2953
    unsigned long long bandwidth = 0;
2954 2955 2956 2957 2958 2959

    virCheckFlags(VZ_MIGRATION_FLAGS, NULL);

    if (virTypedParamsValidate(params, nparams, VZ_MIGRATION_PARAMETERS) < 0)
        goto cleanup;

2960 2961 2962 2963 2964 2965 2966 2967 2968 2969
    if (virTypedParamsGetULLong(params, nparams, VIR_MIGRATE_PARAM_BANDWIDTH,
                                &bandwidth) < 0)
        goto cleanup;

    if (bandwidth > 0) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("Bandwidth rate limiting is not supported"));
        goto cleanup;
    }

2970 2971 2972
    if (!(dom = vzDomObjFromDomain(domain)))
        goto cleanup;

2973 2974 2975
    if (virDomainMigrateBegin3ParamsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

2976 2977
    xml = vzDomainMigrateBeginStep(dom, privconn->driver, params, nparams,
                                   cookieout, cookieoutlen);
2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013

 cleanup:

    if (dom)
        virObjectUnlock(dom);
    return xml;
}

static char*
vzMigrationCreateURI(void)
{
    char *hostname = NULL;
    char *uri = NULL;

    if (!(hostname = virGetHostname()))
        goto cleanup;

    if (STRPREFIX(hostname, "localhost")) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("hostname on destination resolved to localhost,"
                         " but migration requires an FQDN"));
        goto cleanup;
    }

    if (virAsprintf(&uri, "vzmigr://%s", hostname) < 0)
        goto cleanup;

 cleanup:
    VIR_FREE(hostname);
    return uri;
}

static int
vzDomainMigratePrepare3Params(virConnectPtr conn,
                              virTypedParameterPtr params,
                              int nparams,
3014 3015
                              const char *cookiein ATTRIBUTE_UNUSED,
                              int cookieinlen ATTRIBUTE_UNUSED,
3016 3017 3018 3019 3020 3021
                              char **cookieout,
                              int *cookieoutlen,
                              char **uri_out,
                              unsigned int flags)
{
    vzConnPtr privconn = conn->privateData;
3022
    vzDriverPtr driver = privconn->driver;
3023 3024
    const char *miguri = NULL;
    const char *dname = NULL;
3025 3026
    const char *dom_xml = NULL;
    virDomainDefPtr def = NULL;
3027 3028 3029 3030 3031 3032 3033 3034 3035
    int ret = -1;

    virCheckFlags(VZ_MIGRATION_FLAGS, -1);

    if (virTypedParamsValidate(params, nparams, VZ_MIGRATION_PARAMETERS) < 0)
        goto cleanup;

    if (virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_URI, &miguri) < 0 ||
3036 3037
        virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_DEST_XML, &dom_xml) < 0 ||
3038 3039 3040 3041 3042 3043 3044 3045 3046
        virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_DEST_NAME, &dname) < 0)
        goto cleanup;

    /* We must set uri_out if miguri is not set. This is direct
     * managed migration requirement */
    if (!miguri && !(*uri_out = vzMigrationCreateURI()))
        goto cleanup;

3047 3048 3049 3050 3051 3052
    /* domain uuid and domain name are for backward compat */
    if (vzBakeCookie(privconn->driver, NULL,
                     cookieout, cookieoutlen,
                     VZ_MIGRATION_COOKIE_SESSION_UUID
                     | VZ_MIGRATION_COOKIE_DOMAIN_UUID
                     | VZ_MIGRATION_COOKIE_DOMAIN_NAME) < 0)
3053 3054
        goto cleanup;

3055
    if (!(def = virDomainDefParseString(dom_xml, driver->caps, driver->xmlopt,
3056
                                        NULL,
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068
                                        VIR_DOMAIN_DEF_PARSE_INACTIVE)))
        goto cleanup;

    if (dname) {
        VIR_FREE(def->name);
        if (VIR_STRDUP(def->name, dname) < 0)
            goto cleanup;
    }

    if (virDomainMigratePrepare3ParamsEnsureACL(conn, def) < 0)
        goto cleanup;

3069 3070 3071
    ret = 0;

 cleanup:
3072
    virDomainDefFree(def);
3073 3074 3075 3076 3077 3078
    return ret;
}

static int
vzConnectSupportsFeature(virConnectPtr conn ATTRIBUTE_UNUSED, int feature)
{
3079 3080 3081
    if (virConnectSupportsFeatureEnsureACL(conn) < 0)
        return -1;

3082 3083
    switch (feature) {
    case VIR_DRV_FEATURE_MIGRATION_PARAMS:
3084
    case VIR_DRV_FEATURE_MIGRATION_P2P:
3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127
        return 1;
    default:
        return 0;
    }
}

static virURIPtr
vzParseVzURI(const char *uri_str)
{
    virURIPtr uri = NULL;

    if (!(uri = virURIParse(uri_str)))
        goto error;

    if (!uri->scheme || !uri->server) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("scheme and host are mandatory vz migration URI: %s"),
                       uri_str);
        goto error;
    }

    if (uri->user || uri->path || uri->query || uri->fragment) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("only scheme, host and port are supported in "
                         "vz migration URI: %s"), uri_str);
        goto error;
    }

    if (STRNEQ(uri->scheme, "vzmigr")) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED,
                       _("unsupported scheme %s in migration URI %s"),
                       uri->scheme, uri_str);
        goto error;
    }

    return uri;

 error:
    virURIFree(uri);
    return NULL;
}

static int
3128 3129
vzDomainMigratePerformStep(virDomainObjPtr dom,
                           vzDriverPtr driver,
3130 3131 3132 3133 3134
                           virTypedParameterPtr params,
                           int nparams,
                           const char *cookiein,
                           int cookieinlen,
                           unsigned int flags)
3135 3136
{
    int ret = -1;
3137
    vzDomObjPtr privdom = dom->privateData;
3138 3139 3140 3141
    virURIPtr vzuri = NULL;
    const char *miguri = NULL;
    const char *dname = NULL;
    vzMigrationCookiePtr mig = NULL;
3142
    bool job = false;
3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155

    if (virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_URI, &miguri) < 0 ||
        virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_DEST_NAME, &dname) < 0)
        goto cleanup;

    if (!miguri) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("migrate uri is not set"));
        goto cleanup;
    }

3156 3157
    if (!(mig = vzEatCookie(cookiein, cookieinlen,
                            VZ_MIGRATION_COOKIE_SESSION_UUID)))
3158 3159
        goto cleanup;

3160 3161 3162
    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;
3163
    privdom->job.hasProgress = true;
3164

3165 3166 3167
    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

3168 3169 3170 3171 3172 3173
    if (!(vzuri = vzParseVzURI(miguri)))
        goto cleanup;

    if (prlsdkMigrate(dom, vzuri, mig->session_uuid, dname, flags) < 0)
        goto cleanup;

3174
    virDomainObjListRemove(driver->domains, dom);
3175
    virObjectLock(dom);
3176 3177 3178 3179

    ret = 0;

 cleanup:
3180 3181
    if (job)
        vzDomainObjEndJob(dom);
3182 3183 3184 3185 3186 3187
    virURIFree(vzuri);
    vzMigrationCookieFree(mig);

    return ret;
}

3188
static int
3189 3190
vzDomainMigratePerformP2P(virDomainObjPtr dom,
                          vzDriverPtr driver,
3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207
                          const char *dconnuri,
                          virTypedParameterPtr orig_params,
                          int nparams,
                          unsigned int flags)
{
    virDomainPtr ddomain = NULL;
    char *uri = NULL;
    char *cookiein = NULL;
    char *cookieout = NULL;
    char *dom_xml = NULL;
    int cookieinlen = 0;
    int cookieoutlen = 0;
    virErrorPtr orig_err = NULL;
    int cancelled = 1;
    virConnectPtr dconn = NULL;
    virTypedParameterPtr params = NULL;
    int ret = -1;
P
Pavel Glushchak 已提交
3208
    int maxparams = nparams;
3209 3210 3211 3212 3213 3214 3215

    if (virTypedParamsCopy(&params, orig_params, nparams) < 0)
        return -1;

    if (!(dconn = virConnectOpen(dconnuri)))
        goto done;

3216 3217
    if (!(dom_xml = vzDomainMigrateBeginStep(dom, driver, params, nparams,
                                             &cookieout, &cookieoutlen)))
3218 3219
        goto done;

P
Pavel Glushchak 已提交
3220 3221 3222 3223
    if (virTypedParamsAddString(&params, &nparams, &maxparams,
                                VIR_MIGRATE_PARAM_DEST_XML, dom_xml) < 0)
        goto done;

3224 3225 3226 3227
    cookiein = cookieout;
    cookieinlen = cookieoutlen;
    cookieout = NULL;
    cookieoutlen = 0;
3228 3229
    virObjectUnlock(dom);
    ret = dconn->driver->domainMigratePrepare3Params
3230
            (dconn, params, nparams, cookiein, cookieinlen,
3231 3232 3233
             &cookieout, &cookieoutlen, &uri, flags);
    virObjectLock(dom);
    if (ret < 0)
3234
        goto done;
3235
    ret = -1;
3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250

    /* preparation step was successful, thus on any error we must perform
     * finish step to finalize migration on target
     */
    if (uri && virTypedParamsReplaceString(&params, &nparams,
                                           VIR_MIGRATE_PARAM_URI, uri) < 0) {
        orig_err = virSaveLastError();
        goto finish;
    }

    VIR_FREE(cookiein);
    cookiein = cookieout;
    cookieinlen = cookieoutlen;
    cookieout = NULL;
    cookieoutlen = 0;
3251
    if (vzDomainMigratePerformStep(dom, driver, params, nparams, cookiein,
3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263
                                   cookieinlen, flags) < 0) {
        orig_err = virSaveLastError();
        goto finish;
    }

    cancelled = 0;

 finish:
    if (virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_DEST_NAME, NULL) <= 0 &&
        virTypedParamsReplaceString(&params, &nparams,
                                    VIR_MIGRATE_PARAM_DEST_NAME,
3264
                                    dom->def->name) < 0)
3265 3266
        goto done;

3267
    virObjectUnlock(dom);
3268 3269 3270
    ddomain = dconn->driver->domainMigrateFinish3Params(dconn, params, nparams,
                                                        NULL, 0, NULL, NULL,
                                                        flags, cancelled);
3271
    virObjectLock(dom);
3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302
    if (ddomain)
        ret = 0;
    virObjectUnref(ddomain);

    /* confirm step is NOOP thus no need to call it */

 done:
    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }
    VIR_FREE(dom_xml);
    VIR_FREE(uri);
    VIR_FREE(cookiein);
    VIR_FREE(cookieout);
    virTypedParamsFree(params, nparams);
    virObjectUnref(dconn);
    return ret;
}

static int
vzDomainMigratePerform3Params(virDomainPtr domain,
                              const char *dconnuri,
                              virTypedParameterPtr params,
                              int nparams,
                              const char *cookiein,
                              int cookieinlen,
                              char **cookieout ATTRIBUTE_UNUSED,
                              int *cookieoutlen ATTRIBUTE_UNUSED,
                              unsigned int flags)
{
3303
    int ret = -1;
3304 3305 3306
    virDomainObjPtr dom;
    vzConnPtr privconn = domain->conn->privateData;

3307 3308 3309 3310 3311
    virCheckFlags(VZ_MIGRATION_FLAGS, -1);

    if (virTypedParamsValidate(params, nparams, VZ_MIGRATION_PARAMETERS) < 0)
        return -1;

3312 3313 3314
    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

3315 3316 3317
    if (virDomainMigratePerform3ParamsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

3318
    if (flags & VIR_MIGRATE_PEER2PEER)
3319 3320
        ret = vzDomainMigratePerformP2P(dom, privconn->driver, dconnuri,
                                        params, nparams, flags);
3321
    else
3322 3323
        ret = vzDomainMigratePerformStep(dom, privconn->driver, params, nparams,
                                         cookiein, cookieinlen, flags);
3324

3325
 cleanup:
3326 3327 3328
    virDomainObjEndAPI(&dom);

    return ret;
3329 3330
}

3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350
static virDomainPtr
vzDomainMigrateFinish3Params(virConnectPtr dconn,
                             virTypedParameterPtr params,
                             int nparams,
                             const char *cookiein ATTRIBUTE_UNUSED,
                             int cookieinlen ATTRIBUTE_UNUSED,
                             char **cookieout ATTRIBUTE_UNUSED,
                             int *cookieoutlen ATTRIBUTE_UNUSED,
                             unsigned int flags,
                             int cancelled)
{
    virDomainObjPtr dom = NULL;
    virDomainPtr domain = NULL;
    vzConnPtr privconn = dconn->privateData;
    vzDriverPtr driver = privconn->driver;
    const char *name = NULL;

    virCheckFlags(VZ_MIGRATION_FLAGS, NULL);

    if (virTypedParamsValidate(params, nparams, VZ_MIGRATION_PARAMETERS) < 0)
3351 3352 3353 3354
        return NULL;

    if (cancelled)
        return NULL;
3355 3356 3357

    if (virTypedParamsGetString(params, nparams,
                                VIR_MIGRATE_PARAM_DEST_NAME, &name) < 0)
3358
        return NULL;
3359 3360


3361
    if (!(dom = prlsdkAddDomainByName(driver, name)))
3362 3363
        goto cleanup;

3364 3365 3366 3367 3368
    /* At first glace at may look strange that we add domain and
     * then check ACL but we touch only cache and not real system state */
    if (virDomainMigrateFinish3ParamsEnsureACL(dconn, dom->def) < 0)
        goto cleanup;

3369
    domain = virGetDomain(dconn, dom->def->name, dom->def->uuid, dom->def->id);
3370 3371 3372 3373

 cleanup:
    /* In this situation we have to restore domain on source. But the migration
     * is already finished. */
3374
    if (!domain)
3375
        VIR_WARN("Can't provide domain '%s' after successfull migration.", name);
3376
    virDomainObjEndAPI(&dom);
3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396
    return domain;
}

static int
vzDomainMigrateConfirm3Params(virDomainPtr domain ATTRIBUTE_UNUSED,
                              virTypedParameterPtr params,
                              int nparams,
                              const char *cookiein ATTRIBUTE_UNUSED,
                              int cookieinlen ATTRIBUTE_UNUSED,
                              unsigned int flags,
                              int cancelled ATTRIBUTE_UNUSED)
{
    virCheckFlags(VZ_MIGRATION_FLAGS, -1);

    if (virTypedParamsValidate(params, nparams, VZ_MIGRATION_PARAMETERS) < 0)
        return -1;

    return 0;
}

3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423
static int
vzDomainGetJobInfoImpl(virDomainObjPtr dom, virDomainJobInfoPtr info)
{
    vzDomObjPtr privdom = dom->privateData;
    vzDomainJobObjPtr job = &privdom->job;

    memset(info, 0, sizeof(*info));

    if (!job->active || !job->hasProgress)
        return 0;

    if (vzDomainJobUpdateTime(job) < 0)
        return -1;

    info->type = VIR_DOMAIN_JOB_UNBOUNDED;
    info->dataTotal = 100;
    info->dataProcessed = job->progress;
    info->dataRemaining = 100 - job->progress;
    info->timeElapsed = job->elapsed;

    return 0;
}

static int
vzDomainGetJobInfo(virDomainPtr domain, virDomainJobInfoPtr info)
{
    virDomainObjPtr dom;
3424
    int ret = -1;
3425 3426 3427 3428

    if (!(dom = vzDomObjFromDomain(domain)))
        return -1;

3429 3430 3431
    if (virDomainGetJobInfoEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

3432 3433
    ret = vzDomainGetJobInfoImpl(dom, info);

3434
 cleanup:
3435 3436 3437 3438
    virObjectUnlock(dom);
    return ret;
}

3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489
static int
vzDomainJobInfoToParams(virDomainJobInfoPtr info,
                        int *type,
                        virTypedParameterPtr *params,
                        int *nparams)
{
    virTypedParameterPtr par = NULL;
    int maxpar = 0;
    int npar = 0;

    if (virTypedParamsAddULLong(&par, &npar, &maxpar,
                                VIR_DOMAIN_JOB_TIME_ELAPSED,
                                info->timeElapsed) < 0 ||
        virTypedParamsAddULLong(&par, &npar, &maxpar,
                                VIR_DOMAIN_JOB_DATA_TOTAL,
                                info->dataTotal) < 0 ||
        virTypedParamsAddULLong(&par, &npar, &maxpar,
                                VIR_DOMAIN_JOB_DATA_PROCESSED,
                                info->dataProcessed) < 0 ||
        virTypedParamsAddULLong(&par, &npar, &maxpar,
                                VIR_DOMAIN_JOB_DATA_REMAINING,
                                info->dataRemaining) < 0)
        goto error;


    *type = info->type;
    *params = par;
    *nparams = npar;
    return 0;

 error:
    virTypedParamsFree(par, npar);
    return -1;
}

static int
vzDomainGetJobStats(virDomainPtr domain,
                    int *type,
                    virTypedParameterPtr *params,
                    int *nparams,
                    unsigned int flags)
{
    virDomainJobInfo info;
    virDomainObjPtr dom;
    int ret = -1;

    virCheckFlags(0, -1);

    if (!(dom = vzDomObjFromDomain(domain)))
        return -1;

3490 3491 3492
    if (virDomainGetJobStatsEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511
    if (vzDomainGetJobInfoImpl(dom, &info) < 0)
        goto cleanup;

    if (info.type == VIR_DOMAIN_JOB_NONE) {
        *type = VIR_DOMAIN_JOB_NONE;
        *params = NULL;
        *nparams = 0;
        ret = 0;
        goto cleanup;
    }

    ret = vzDomainJobInfoToParams(&info, type, params, nparams);

 cleanup:
    virObjectUnlock(dom);

    return ret;
}

3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592
#define VZ_ADD_STAT_PARAM_UUL(group, field, counter)            \
do {                                                            \
    if (stat.field != -1) {                                     \
        snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH,      \
                 group ".%zu." counter, i);                     \
        if (virTypedParamsAddULLong(&record->params,            \
                                    &record->nparams,           \
                                    maxparams,                  \
                                    param_name,                 \
                                    stat.field) < 0)            \
            return -1;                                          \
    }                                                           \
} while (0)

static int
vzDomainGetBlockStats(virDomainObjPtr dom,
                      virDomainStatsRecordPtr record,
                      int *maxparams)
{
    vzDomObjPtr privdom = dom->privateData;
    size_t i;
    char param_name[VIR_TYPED_PARAM_FIELD_LENGTH];

    if (virTypedParamsAddUInt(&record->params,
                              &record->nparams,
                              maxparams,
                              "block.count",
                              dom->def->ndisks) < 0)
        return -1;

    for (i = 0; i < dom->def->ndisks; i++) {
        virDomainBlockStatsStruct stat;
        virDomainDiskDefPtr disk = dom->def->disks[i];

        if (prlsdkGetBlockStats(privdom->stats,
                                disk,
                                &stat,
                                IS_CT(dom->def)) < 0)
            return -1;

        snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH,
                 "block.%zu.name", i);
        if (virTypedParamsAddString(&record->params,
                                    &record->nparams,
                                    maxparams,
                                    param_name,
                                    disk->dst) < 0)
            return -1;

        if (virStorageSourceIsLocalStorage(disk->src) && disk->src->path) {
            snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH,
                     "block.%zu.path", i);
            if (virTypedParamsAddString(&record->params,
                                        &record->nparams,
                                        maxparams,
                                        param_name,
                                        disk->src->path) < 0)
                return -1;
        }

        VZ_ADD_STAT_PARAM_UUL("block", rd_req, "rd.reqs");
        VZ_ADD_STAT_PARAM_UUL("block", rd_bytes, "rd.bytes");
        VZ_ADD_STAT_PARAM_UUL("block", wr_req, "wr.reqs");
        VZ_ADD_STAT_PARAM_UUL("block", wr_bytes, "wr.bytes");

        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
            snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH,
                     "block.%zu.capacity", i);
            if (virTypedParamsAddULLong(&record->params,
                                        &record->nparams,
                                        maxparams,
                                        param_name,
                                        disk->src->capacity) < 0)
                return -1;
        }

    }

    return 0;
}

3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633
static int
vzDomainGetNetStats(virDomainObjPtr dom,
                    virDomainStatsRecordPtr record,
                    int *maxparams)
{
    vzDomObjPtr privdom = dom->privateData;
    size_t i;
    char param_name[VIR_TYPED_PARAM_FIELD_LENGTH];

    if (virTypedParamsAddUInt(&record->params,
                              &record->nparams,
                              maxparams,
                              "net.count",
                              dom->def->nnets) < 0)
        return -1;

    for (i = 0; i < dom->def->nnets; i++) {
        virDomainInterfaceStatsStruct stat;
        virDomainNetDefPtr net = dom->def->nets[i];

        if (prlsdkGetNetStats(privdom->stats, privdom->sdkdom, net->ifname,
                              &stat) < 0)
            return -1;

        snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH, "net.%zu.name", i);
        if (virTypedParamsAddString(&record->params,
                                    &record->nparams,
                                    maxparams,
                                    param_name,
                                    net->ifname) < 0)
            return -1;

        VZ_ADD_STAT_PARAM_UUL("net", rx_bytes, "rx.bytes");
        VZ_ADD_STAT_PARAM_UUL("net", rx_packets, "rx.pkts");
        VZ_ADD_STAT_PARAM_UUL("net", tx_bytes, "tx.bytes");
        VZ_ADD_STAT_PARAM_UUL("net", tx_packets, "tx.pkts");
    }

    return 0;
}

3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684
static int
vzDomainGetVCPUStats(virDomainObjPtr dom,
                     virDomainStatsRecordPtr record,
                     int *maxparams)
{
    vzDomObjPtr privdom = dom->privateData;
    size_t i;
    char param_name[VIR_TYPED_PARAM_FIELD_LENGTH];

    if (virTypedParamsAddUInt(&record->params,
                              &record->nparams,
                              maxparams,
                              "vcpu.current",
                              virDomainDefGetVcpus(dom->def)) < 0)
        return -1;

    if (virTypedParamsAddUInt(&record->params,
                              &record->nparams,
                              maxparams,
                              "vcpu.maximum",
                              virDomainDefGetVcpusMax(dom->def)) < 0)
        return -1;

    for (i = 0; i < virDomainDefGetVcpusMax(dom->def); i++) {
        int state = dom->def->vcpus[i]->online ? VIR_VCPU_RUNNING :
                                                 VIR_VCPU_OFFLINE;
        unsigned long long time;

        snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH, "vcpu.%zu.state", i);
        if (virTypedParamsAddInt(&record->params,
                                 &record->nparams,
                                 maxparams,
                                 param_name,
                                 state) < 0)
            return -1;

        if (prlsdkGetVcpuStats(privdom->stats, i, &time) < 0)
            return -1;

        snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH, "vcpu.%zu.time", i);
        if (virTypedParamsAddULLong(&record->params,
                                    &record->nparams,
                                    maxparams,
                                    param_name,
                                    time) < 0)
            return -1;
    }

    return 0;
}

3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735
static int
vzDomainGetBalloonStats(virDomainObjPtr dom,
                        virDomainStatsRecordPtr record,
                        int *maxparams)
{
    vzDomObjPtr privdom = dom->privateData;
    virDomainMemoryStatStruct stats[VIR_DOMAIN_MEMORY_STAT_NR];
    size_t i;
    int n;

    if (virTypedParamsAddULLong(&record->params,
                                &record->nparams,
                                maxparams,
                                "balloon.maximum",
                                virDomainDefGetMemoryTotal(dom->def)) < 0)
        return -1;

    if (virTypedParamsAddULLong(&record->params,
                                &record->nparams,
                                maxparams,
                                "balloon.current",
                                virDomainDefGetMemoryTotal(dom->def)) < 0)
        return -1;

    n = prlsdkGetMemoryStats(privdom->stats, stats, VIR_DOMAIN_MEMORY_STAT_NR);
    if (n < 0)
        return -1;

#define STORE_MEM_RECORD(TAG, NAME)                         \
    if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_ ##TAG)      \
        if (virTypedParamsAddULLong(&record->params,        \
                                    &record->nparams,       \
                                    maxparams,              \
                                    "balloon." NAME,        \
                                    stats[i].val) < 0)      \
            return -1;

    for (i = 0; i < n; i++) {
        STORE_MEM_RECORD(SWAP_IN, "swap_in")
        STORE_MEM_RECORD(SWAP_OUT, "swap_out")
        STORE_MEM_RECORD(MAJOR_FAULT, "major_fault")
        STORE_MEM_RECORD(MINOR_FAULT, "minor_fault")
        STORE_MEM_RECORD(AVAILABLE, "available")
        STORE_MEM_RECORD(UNUSED, "unused")
    }

#undef STORE_MEM_RECORD

    return 0;
}

3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757
static int
vzDomainGetStateStats(virDomainObjPtr dom,
                      virDomainStatsRecordPtr record,
                      int *maxparams)
{
    if (virTypedParamsAddInt(&record->params,
                             &record->nparams,
                             maxparams,
                             "state.state",
                             dom->state.state) < 0)
        return -1;

    if (virTypedParamsAddInt(&record->params,
                             &record->nparams,
                             maxparams,
                             "state.reason",
                             dom->state.reason) < 0)
        return -1;

    return 0;
}

3758 3759 3760 3761 3762 3763 3764 3765 3766 3767
static virDomainStatsRecordPtr
vzDomainGetAllStats(virConnectPtr conn,
                    virDomainObjPtr dom)
{
    virDomainStatsRecordPtr stat;
    int maxparams = 0;

    if (VIR_ALLOC(stat) < 0)
        return NULL;

3768 3769 3770
    if (vzDomainGetStateStats(dom, stat, &maxparams) < 0)
        goto error;

3771 3772
    if (vzDomainGetBlockStats(dom, stat, &maxparams) < 0)
        goto error;
3773 3774 3775

    if (vzDomainGetNetStats(dom, stat, &maxparams) < 0)
        goto error;
3776 3777 3778

    if (vzDomainGetVCPUStats(dom, stat, &maxparams) < 0)
        goto error;
3779 3780 3781

    if (vzDomainGetBalloonStats(dom, stat, &maxparams) < 0)
        goto error;
3782

3783
    if (!(stat->dom = virGetDomain(conn, dom->def->name, dom->def->uuid, dom->def->id)))
3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879
        goto error;

    return stat;

 error:
    virTypedParamsFree(stat->params, stat->nparams);
    virObjectUnref(stat->dom);
    VIR_FREE(stat);
    return NULL;
}

static int
vzConnectGetAllDomainStats(virConnectPtr conn,
                           virDomainPtr *domains,
                           unsigned int ndomains,
                           unsigned int stats,
                           virDomainStatsRecordPtr **retStats,
                           unsigned int flags)
{
    vzConnPtr privconn = conn->privateData;
    vzDriverPtr driver = privconn->driver;
    unsigned int lflags = flags & (VIR_CONNECT_LIST_DOMAINS_FILTERS_ACTIVE |
                                   VIR_CONNECT_LIST_DOMAINS_FILTERS_PERSISTENT |
                                   VIR_CONNECT_LIST_DOMAINS_FILTERS_STATE);
    unsigned int supported = VIR_DOMAIN_STATS_STATE |
                             VIR_DOMAIN_STATS_VCPU |
                             VIR_DOMAIN_STATS_INTERFACE |
                             VIR_DOMAIN_STATS_BALLOON |
                             VIR_DOMAIN_STATS_BLOCK;
    virDomainObjPtr *doms = NULL;
    size_t ndoms;
    virDomainStatsRecordPtr *tmpstats = NULL;
    int nstats = 0;
    int ret = -1;
    size_t i;

    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ACTIVE |
                  VIR_CONNECT_LIST_DOMAINS_FILTERS_PERSISTENT |
                  VIR_CONNECT_LIST_DOMAINS_FILTERS_STATE |
                  VIR_CONNECT_GET_ALL_DOMAINS_STATS_ENFORCE_STATS, -1);

    if (virConnectGetAllDomainStatsEnsureACL(conn) < 0)
        return -1;

    if (!stats) {
        stats = supported;
    } else if ((flags & VIR_CONNECT_GET_ALL_DOMAINS_STATS_ENFORCE_STATS) &&
               (stats & ~supported)) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED,
                       _("Stats types bits 0x%x are not supported by this daemon"),
                       stats & ~supported);
        return -1;
    }

    if (ndomains) {
        if (virDomainObjListConvert(driver->domains, conn, domains, ndomains, &doms,
                                    &ndoms, virConnectGetAllDomainStatsCheckACL,
                                    lflags, true) < 0)
            return -1;
    } else {
        if (virDomainObjListCollect(driver->domains, conn, &doms, &ndoms,
                                    virConnectGetAllDomainStatsCheckACL,
                                    lflags) < 0)
            return -1;
    }

    if (VIR_ALLOC_N(tmpstats, ndoms + 1) < 0)
        goto cleanup;

    for (i = 0; i < ndoms; i++) {
        virDomainStatsRecordPtr tmp;
        virDomainObjPtr dom = doms[i];

        virObjectLock(dom);
        tmp = vzDomainGetAllStats(conn, dom);
        virObjectUnlock(dom);

        if (!tmp)
            goto cleanup;

        tmpstats[nstats++] = tmp;
    }

    *retStats = tmpstats;
    tmpstats = NULL;
    ret = nstats;

 cleanup:
    virDomainStatsRecordListFree(tmpstats);
    virObjectListFreeCount(doms, ndoms);

    return ret;
}

#undef VZ_ADD_STAT_PARAM_UUL

3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899
static int
vzDomainAbortJob(virDomainPtr domain)
{
    virDomainObjPtr dom;
    int ret = -1;

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

    if (virDomainAbortJobEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

    ret = prlsdkCancelJob(dom);

 cleanup:
    virDomainObjEndAPI(&dom);

    return ret;
}

3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930
static int
vzDomainReset(virDomainPtr domain, unsigned int flags)
{
    virDomainObjPtr dom = NULL;
    int ret = -1;
    bool job = false;

    virCheckFlags(0, -1);

    if (!(dom = vzDomObjFromDomainRef(domain)))
        return -1;

    if (virDomainResetEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    ret = prlsdkReset(dom);

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
    return ret;
}

3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970
static int vzDomainSetVcpusFlags(virDomainPtr domain, unsigned int nvcpus,
                                 unsigned int flags)
{
    virDomainObjPtr dom = NULL;
    int ret = -1;
    bool job = false;

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

    if (!(dom = vzDomObjFromDomainRef(domain)))
        goto cleanup;

    if (vzCheckConfigUpdateFlags(dom, &flags) < 0)
        goto cleanup;

    if (virDomainSetVcpusFlagsEnsureACL(domain->conn, dom->def, flags) < 0)
        goto cleanup;

    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    ret = prlsdkSetCpuCount(dom, nvcpus);

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
    return ret;
}

static int vzDomainSetVcpus(virDomainPtr dom, unsigned int nvcpus)
{
    return vzDomainSetVcpusFlags(dom, nvcpus,
                                 VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG);
}
3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013
static int
vzDomainBlockResize(virDomainPtr domain,
                    const char *path,
                    unsigned long long size,
                    unsigned int flags)
{
    virDomainObjPtr dom = NULL;
    virDomainDiskDefPtr disk = NULL;
    int ret = -1;
    bool job = false;

    virCheckFlags(VIR_DOMAIN_BLOCK_RESIZE_BYTES, -1);

    if (!(dom = vzDomObjFromDomainRef(domain)))
        goto cleanup;

    if (virDomainBlockResizeEnsureACL(domain->conn, dom->def) < 0)
        goto cleanup;

    if (path[0] == '\0') {
        virReportError(VIR_ERR_INVALID_ARG,
                       "%s", _("empty path"));
        goto cleanup;
    }

    /* sdk wants Mb */
    if (flags & VIR_DOMAIN_BLOCK_RESIZE_BYTES)
        size /= 1024;
    size /= 1024;

    if (vzDomainObjBeginJob(dom) < 0)
        goto cleanup;
    job = true;

    if (vzEnsureDomainExists(dom) < 0)
        goto cleanup;

    if (!virDomainObjIsActive(dom)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
        goto cleanup;
    }

4014 4015 4016 4017 4018 4019
    if (!(disk = virDomainDiskByName(dom->def, path, false))) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("invalid path: %s"), path);
        goto cleanup;
    }

4020 4021 4022 4023 4024 4025 4026 4027
    ret = prlsdkResizeImage(dom, disk, size);

 cleanup:
    if (job)
        vzDomainObjEndJob(dom);
    virDomainObjEndAPI(&dom);
    return ret;
}
4028

4029
static virHypervisorDriver vzHypervisorDriver = {
4030
    .name = "vz",
4031 4032 4033 4034
    .connectOpen = vzConnectOpen,            /* 0.10.0 */
    .connectClose = vzConnectClose,          /* 0.10.0 */
    .connectGetVersion = vzConnectGetVersion,   /* 0.10.0 */
    .connectGetHostname = vzConnectGetHostname,      /* 0.10.0 */
4035
    .connectGetSysinfo = vzConnectGetSysinfo, /* 1.3.4 */
4036
    .connectGetMaxVcpus = vzConnectGetMaxVcpus, /* 1.2.21 */
4037
    .nodeGetInfo = vzNodeGetInfo,      /* 0.10.0 */
4038 4039 4040 4041
    .nodeGetCPUStats = vzNodeGetCPUStats,      /* 1.2.21 */
    .nodeGetMemoryStats = vzNodeGetMemoryStats, /* 1.2.21 */
    .nodeGetCellsFreeMemory = vzNodeGetCellsFreeMemory, /* 1.2.21 */
    .nodeGetFreeMemory = vzNodeGetFreeMemory, /* 1.2.21 */
4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061
    .connectGetCapabilities = vzConnectGetCapabilities,      /* 0.10.0 */
    .connectBaselineCPU = vzConnectBaselineCPU, /* 1.2.6 */
    .connectListDomains = vzConnectListDomains,      /* 0.10.0 */
    .connectNumOfDomains = vzConnectNumOfDomains,    /* 0.10.0 */
    .connectListDefinedDomains = vzConnectListDefinedDomains,        /* 0.10.0 */
    .connectNumOfDefinedDomains = vzConnectNumOfDefinedDomains,      /* 0.10.0 */
    .connectListAllDomains = vzConnectListAllDomains, /* 0.10.0 */
    .domainLookupByID = vzDomainLookupByID,    /* 0.10.0 */
    .domainLookupByUUID = vzDomainLookupByUUID,        /* 0.10.0 */
    .domainLookupByName = vzDomainLookupByName,        /* 0.10.0 */
    .domainGetOSType = vzDomainGetOSType,    /* 0.10.0 */
    .domainGetInfo = vzDomainGetInfo,  /* 0.10.0 */
    .domainGetState = vzDomainGetState,        /* 0.10.0 */
    .domainGetXMLDesc = vzDomainGetXMLDesc,    /* 0.10.0 */
    .domainIsPersistent = vzDomainIsPersistent,        /* 0.10.0 */
    .domainGetAutostart = vzDomainGetAutostart,        /* 0.10.0 */
    .domainGetVcpus = vzDomainGetVcpus, /* 1.2.6 */
    .domainSuspend = vzDomainSuspend,    /* 0.10.0 */
    .domainResume = vzDomainResume,    /* 0.10.0 */
    .domainDestroy = vzDomainDestroy,  /* 0.10.0 */
4062
    .domainDestroyFlags = vzDomainDestroyFlags,  /* 2.2.0 */
4063
    .domainShutdown = vzDomainShutdown, /* 0.10.0 */
4064
    .domainShutdownFlags = vzDomainShutdownFlags, /* 2.2.0 */
4065 4066
    .domainCreate = vzDomainCreate,    /* 0.10.0 */
    .domainCreateWithFlags = vzDomainCreateWithFlags, /* 1.2.10 */
P
Pavel Hrdina 已提交
4067
    .domainReboot = vzDomainReboot, /* 1.3.0 */
4068 4069 4070 4071 4072 4073 4074 4075 4076
    .domainDefineXML = vzDomainDefineXML,      /* 0.10.0 */
    .domainDefineXMLFlags = vzDomainDefineXMLFlags, /* 1.2.12 */
    .domainUndefine = vzDomainUndefine, /* 1.2.10 */
    .domainUndefineFlags = vzDomainUndefineFlags, /* 1.2.10 */
    .domainAttachDevice = vzDomainAttachDevice, /* 1.2.15 */
    .domainAttachDeviceFlags = vzDomainAttachDeviceFlags, /* 1.2.15 */
    .domainDetachDevice = vzDomainDetachDevice, /* 1.2.15 */
    .domainDetachDeviceFlags = vzDomainDetachDeviceFlags, /* 1.2.15 */
    .domainIsActive = vzDomainIsActive, /* 1.2.10 */
4077
    .domainIsUpdated = vzDomainIsUpdated,     /* 1.2.21 */
4078 4079
    .domainSetVcpus = vzDomainSetVcpus, /* 3.3.0 */
    .domainSetVcpusFlags = vzDomainSetVcpusFlags, /* 3.3.0 */
4080 4081
    .domainGetVcpusFlags = vzDomainGetVcpusFlags, /* 1.2.21 */
    .domainGetMaxVcpus = vzDomainGetMaxVcpus, /* 1.2.21 */
4082
    .domainSetUserPassword = vzDomainSetUserPassword, /* 2.0.0 */
4083 4084 4085 4086 4087 4088 4089 4090 4091 4092
    .connectDomainEventRegisterAny = vzConnectDomainEventRegisterAny, /* 1.2.10 */
    .connectDomainEventDeregisterAny = vzConnectDomainEventDeregisterAny, /* 1.2.10 */
    .nodeGetCPUMap = vzNodeGetCPUMap, /* 1.2.8 */
    .connectIsEncrypted = vzConnectIsEncrypted, /* 1.2.5 */
    .connectIsSecure = vzConnectIsSecure, /* 1.2.5 */
    .connectIsAlive = vzConnectIsAlive, /* 1.2.5 */
    .domainHasManagedSaveImage = vzDomainHasManagedSaveImage, /* 1.2.13 */
    .domainManagedSave = vzDomainManagedSave, /* 1.2.14 */
    .domainManagedSaveRemove = vzDomainManagedSaveRemove, /* 1.2.14 */
    .domainGetMaxMemory = vzDomainGetMaxMemory, /* 1.2.15 */
4093 4094 4095 4096
    .domainBlockStats = vzDomainBlockStats, /* 1.2.17 */
    .domainBlockStatsFlags = vzDomainBlockStatsFlags, /* 1.2.17 */
    .domainInterfaceStats = vzDomainInterfaceStats, /* 1.2.17 */
    .domainMemoryStats = vzDomainMemoryStats, /* 1.2.17 */
4097 4098
    .connectRegisterCloseCallback = vzConnectRegisterCloseCallback, /* 1.3.2 */
    .connectUnregisterCloseCallback = vzConnectUnregisterCloseCallback, /* 1.3.2 */
4099 4100
    .domainSetMemoryFlags = vzDomainSetMemoryFlags, /* 1.3.4 */
    .domainSetMemory = vzDomainSetMemory, /* 1.3.4 */
4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116
    .domainSnapshotNum = vzDomainSnapshotNum, /* 1.3.5 */
    .domainSnapshotListNames = vzDomainSnapshotListNames, /* 1.3.5 */
    .domainListAllSnapshots = vzDomainListAllSnapshots, /* 1.3.5 */
    .domainSnapshotGetXMLDesc = vzDomainSnapshotGetXMLDesc, /* 1.3.5 */
    .domainSnapshotNumChildren = vzDomainSnapshotNumChildren, /* 1.3.5 */
    .domainSnapshotListChildrenNames = vzDomainSnapshotListChildrenNames, /* 1.3.5 */
    .domainSnapshotListAllChildren = vzDomainSnapshotListAllChildren, /* 1.3.5 */
    .domainSnapshotLookupByName = vzDomainSnapshotLookupByName, /* 1.3.5 */
    .domainHasCurrentSnapshot = vzDomainHasCurrentSnapshot, /* 1.3.5 */
    .domainSnapshotGetParent = vzDomainSnapshotGetParent, /* 1.3.5 */
    .domainSnapshotCurrent = vzDomainSnapshotCurrent, /* 1.3.5 */
    .domainSnapshotIsCurrent = vzDomainSnapshotIsCurrent, /* 1.3.5 */
    .domainSnapshotHasMetadata = vzDomainSnapshotHasMetadata, /* 1.3.5 */
    .domainSnapshotCreateXML = vzDomainSnapshotCreateXML, /* 1.3.5 */
    .domainSnapshotDelete = vzDomainSnapshotDelete, /* 1.3.5 */
    .domainRevertToSnapshot = vzDomainRevertToSnapshot, /* 1.3.5 */
4117 4118 4119 4120 4121 4122
    .connectSupportsFeature = vzConnectSupportsFeature, /* 1.3.5 */
    .domainMigrateBegin3Params = vzDomainMigrateBegin3Params, /* 1.3.5 */
    .domainMigratePrepare3Params = vzDomainMigratePrepare3Params, /* 1.3.5 */
    .domainMigratePerform3Params = vzDomainMigratePerform3Params, /* 1.3.5 */
    .domainMigrateFinish3Params = vzDomainMigrateFinish3Params, /* 1.3.5 */
    .domainMigrateConfirm3Params = vzDomainMigrateConfirm3Params, /* 1.3.5 */
N
Nikolay Shirokovskiy 已提交
4123
    .domainUpdateDeviceFlags = vzDomainUpdateDeviceFlags, /* 2.0.0 */
4124
    .domainGetJobInfo = vzDomainGetJobInfo, /* 2.2.0 */
4125
    .domainGetJobStats = vzDomainGetJobStats, /* 2.2.0 */
4126
    .connectGetAllDomainStats = vzConnectGetAllDomainStats, /* 3.1.0 */
4127
    .domainAbortJob = vzDomainAbortJob, /* 3.1.0 */
4128
    .domainReset = vzDomainReset, /* 3.1.0 */
4129
    .domainBlockResize = vzDomainBlockResize, /* 3.3.0 */
D
Dmitry Guryanov 已提交
4130 4131
};

4132
static virConnectDriver vzConnectDriver = {
4133
    .hypervisorDriver = &vzHypervisorDriver,
4134 4135
};

4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174
static int
vzStateCleanup(void)
{
    virObjectUnref(vz_driver);
    vz_driver = NULL;
    virMutexDestroy(&vz_driver_lock);
    prlsdkDeinit();
    return 0;
}

static int
vzStateInitialize(bool privileged ATTRIBUTE_UNUSED,
                  virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                  void *opaque ATTRIBUTE_UNUSED)
{
    if (prlsdkInit() < 0) {
        VIR_DEBUG("%s", _("Can't initialize Parallels SDK"));
        return -1;
    }

   if (virMutexInit(&vz_driver_lock) < 0)
        goto error;

    /* Failing to create driver here is not fatal and only means
     * that next driver client will try once more when connecting */
    vz_driver = vzDriverObjNew();
    return 0;

 error:
    vzStateCleanup();
    return -1;
}

static virStateDriver vzStateDriver = {
    .name = "vz",
    .stateInitialize = vzStateInitialize,
    .stateCleanup = vzStateCleanup,
};

4175
/* Parallels domain type backward compatibility*/
4176
static virHypervisorDriver parallelsHypervisorDriver;
4177 4178
static virConnectDriver parallelsConnectDriver;

D
Dmitry Guryanov 已提交
4179
/**
4180
 * vzRegister:
D
Dmitry Guryanov 已提交
4181
 *
4182
 * Registers the vz driver
D
Dmitry Guryanov 已提交
4183 4184
 */
int
4185
vzRegister(void)
D
Dmitry Guryanov 已提交
4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196
{
    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);

4197
    /* Backward compatibility with Parallels domain type */
4198 4199
    parallelsHypervisorDriver = vzHypervisorDriver;
    parallelsHypervisorDriver.name = "Parallels";
4200
    parallelsConnectDriver = vzConnectDriver;
4201
    parallelsConnectDriver.hypervisorDriver = &parallelsHypervisorDriver;
4202
    if (virRegisterConnectDriver(&parallelsConnectDriver, true) < 0)
D
Dmitry Guryanov 已提交
4203
        return -1;
D
Dmitry Guryanov 已提交
4204

4205
    if (virRegisterConnectDriver(&vzConnectDriver, true) < 0)
4206 4207
        return -1;

4208 4209 4210
    if (virRegisterStateDriver(&vzStateDriver) < 0)
        return -1;

D
Dmitry Guryanov 已提交
4211 4212
    return 0;
}