esx_driver.c 170.1 KB
Newer Older
1 2

/*
3
 * esx_driver.c: core driver functions for managing VMware ESX hosts
4
 *
5
 * Copyright (C) 2010-2012 Red Hat, Inc.
6
 * Copyright (C) 2009-2013 Matthias Bolte <matthias.bolte@googlemail.com>
7 8 9 10 11 12 13 14 15 16 17 18 19
 * Copyright (C) 2009 Maximilian Wilhelm <max@rfc2324.org>
 *
 * 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
20
 * License along with this library.  If not, see
O
Osier Yang 已提交
21
 * <http://www.gnu.org/licenses/>.
22 23 24 25 26 27 28
 *
 */

#include <config.h>

#include "internal.h"
#include "domain_conf.h"
29
#include "snapshot_conf.h"
30
#include "virauth.h"
31
#include "virutil.h"
32
#include "viralloc.h"
33
#include "virlog.h"
34
#include "viruuid.h"
35
#include "vmx.h"
36
#include "virtypedparam.h"
37
#include "esx_driver.h"
38 39 40 41 42
#include "esx_interface_driver.h"
#include "esx_network_driver.h"
#include "esx_storage_driver.h"
#include "esx_device_monitor.h"
#include "esx_secret_driver.h"
M
Matthias Bolte 已提交
43
#include "esx_nwfilter_driver.h"
44
#include "esx_private.h"
45 46 47
#include "esx_vi.h"
#include "esx_vi_methods.h"
#include "esx_util.h"
M
Martin Kletzander 已提交
48
#include "viruri.h"
49 50 51 52 53

#define VIR_FROM_THIS VIR_FROM_ESX

static int esxDomainGetMaxVcpus(virDomainPtr domain);

54 55 56 57
typedef struct _esxVMX_Data esxVMX_Data;

struct _esxVMX_Data {
    esxVI_Context *ctx;
58
    char *datastorePathWithoutFileName;
59 60 61 62
};



63 64 65 66 67 68 69 70 71 72
static void
esxFreePrivate(esxPrivate **priv)
{
    if (priv == NULL || *priv == NULL) {
        return;
    }

    esxVI_Context_Free(&(*priv)->host);
    esxVI_Context_Free(&(*priv)->vCenter);
    esxUtil_FreeParsedUri(&(*priv)->parsedUri);
73
    virObjectUnref((*priv)->caps);
74
    virObjectUnref((*priv)->xmlopt);
75 76 77 78 79
    VIR_FREE(*priv);
}



80
/*
81 82
 * Parse a file name from a .vmx file and convert it to datastore path format
 * if possbile. A .vmx file can contain file names in various formats:
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
 *
 * - A single name referencing a file in the same directory as the .vmx file:
 *
 *     test1.vmdk
 *
 * - An absolute file name referencing a file in a datastore that is mounted at
 *   /vmfs/volumes/<datastore>:
 *
 *     /vmfs/volumes/b24b7a78-9d82b4f5/test1/test1.vmdk
 *     /vmfs/volumes/datastore1/test1/test1.vmdk
 *
 *   The actual mount directory is /vmfs/volumes/b24b7a78-9d82b4f5, the second
 *   form is a symlink to it using the datastore name. This is the typical
 *   setup on an ESX(i) server.
 *
 * - With GSX installed on Windows there are also Windows style file names
 *   including UNC file names:
 *
 *     C:\Virtual Machines\test1\test1.vmdk
 *     \\nas1\storage1\test1\test1.vmdk
 *
104 105 106 107 108 109 110 111
 * - There might also be absolute file names referencing files outside of a
 *   datastore:
 *
 *     /usr/lib/vmware/isoimages/linux.iso
 *
 *   Such file names are left as is and are not converted to datastore path
 *   format because this is not possible.
 *
112 113 114 115 116 117 118
 * The datastore path format typically looks like this:
 *
 *  [datastore1] test1/test1.vmdk
 *
 * Firstly this functions checks if the given file name contains a separator.
 * If it doesn't then the referenced file is in the same directory as the .vmx
 * file. The datastore name and directory of the .vmx file are passed to this
119
 * function via the opaque parameter by the caller of virVMXParseConfig.
120 121 122 123 124 125 126 127 128
 *
 * Otherwise query for all known datastores and their mount directories. Then
 * try to find a datastore with a mount directory that is a prefix to the given
 * file name. This mechanism covers the Windows style file names too.
 *
 * The symlinks using the datastore name (/vmfs/volumes/datastore1) are an
 * exception and need special handling. Parse the datastore name and use it
 * to lookup the datastore by name to verify that it exists.
 */
129
static char *
130
esxParseVMXFileName(const char *fileName, void *opaque)
131
{
132
    char *result = NULL;
133
    esxVMX_Data *data = opaque;
134
    esxVI_String *propertyNameList = NULL;
135
    esxVI_ObjectContent *datastoreList = NULL;
136
    esxVI_ObjectContent *datastore = NULL;
137 138 139 140 141 142 143 144 145 146
    esxVI_DatastoreHostMount *hostMount = NULL;
    char *datastoreName;
    char *tmp;
    char *saveptr;
    char *strippedFileName = NULL;
    char *copyOfFileName = NULL;
    char *directoryAndFileName;

    if (strchr(fileName, '/') == NULL && strchr(fileName, '\\') == NULL) {
        /* Plain file name, use same directory as for the .vmx file */
147
        if (virAsprintf(&result, "%s/%s",
148
                        data->datastorePathWithoutFileName, fileName) < 0) {
149 150 151 152 153 154 155 156 157 158
            virReportOOMError();
            goto cleanup;
        }
    } else {
        if (esxVI_String_AppendValueToList(&propertyNameList,
                                           "summary.name") < 0 ||
            esxVI_LookupDatastoreList(data->ctx, propertyNameList,
                                      &datastoreList) < 0) {
            return NULL;
        }
159

160 161 162 163 164
        /* Search for datastore by mount path */
        for (datastore = datastoreList; datastore != NULL;
             datastore = datastore->_next) {
            esxVI_DatastoreHostMount_Free(&hostMount);
            datastoreName = NULL;
165

166
            if (esxVI_LookupDatastoreHostMount(data->ctx, datastore->obj,
167 168
                                               &hostMount,
                                               esxVI_Occurrence_RequiredItem) < 0 ||
169 170 171 172
                esxVI_GetStringValue(datastore, "summary.name", &datastoreName,
                                     esxVI_Occurrence_RequiredItem) < 0) {
                goto cleanup;
            }
173

174
            tmp = (char *)STRSKIP(fileName, hostMount->mountInfo->path);
175

176 177 178
            if (tmp == NULL) {
                continue;
            }
179

180 181 182 183
            /* Found a match. Strip leading separators */
            while (*tmp == '/' || *tmp == '\\') {
                ++tmp;
            }
184

185 186 187
            if (esxVI_String_DeepCopyValue(&strippedFileName, tmp) < 0) {
                goto cleanup;
            }
188

189
            tmp = strippedFileName;
190

191 192 193 194 195
            /* Convert \ to / */
            while (*tmp != '\0') {
                if (*tmp == '\\') {
                    *tmp = '/';
                }
196

197 198
                ++tmp;
            }
199

200
            if (virAsprintf(&result, "[%s] %s", datastoreName,
201 202 203 204
                            strippedFileName) < 0) {
                virReportOOMError();
                goto cleanup;
            }
205

206 207
            break;
        }
208

209
        /* Fallback to direct datastore name match */
210
        if (result == NULL && STRPREFIX(fileName, "/vmfs/volumes/")) {
211 212 213
            if (esxVI_String_DeepCopyValue(&copyOfFileName, fileName) < 0) {
                goto cleanup;
            }
214

215 216 217 218
            /* Expected format: '/vmfs/volumes/<datastore>/<path>' */
            if ((tmp = STRSKIP(copyOfFileName, "/vmfs/volumes/")) == NULL ||
                (datastoreName = strtok_r(tmp, "/", &saveptr)) == NULL ||
                (directoryAndFileName = strtok_r(NULL, "", &saveptr)) == NULL) {
219 220 221
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("File name '%s' doesn't have expected format "
                                 "'/vmfs/volumes/<datastore>/<path>'"), fileName);
222 223
                goto cleanup;
            }
224

225
            esxVI_ObjectContent_Free(&datastoreList);
226

227 228 229 230 231
            if (esxVI_LookupDatastoreByName(data->ctx, datastoreName,
                                            NULL, &datastoreList,
                                            esxVI_Occurrence_OptionalItem) < 0) {
                goto cleanup;
            }
232

233
            if (datastoreList == NULL) {
234 235 236
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("File name '%s' refers to non-existing datastore '%s'"),
                               fileName, datastoreName);
237 238
                goto cleanup;
            }
239

240
            if (virAsprintf(&result, "[%s] %s", datastoreName,
241 242 243 244
                            directoryAndFileName) < 0) {
                virReportOOMError();
                goto cleanup;
            }
245 246
        }

247 248 249 250 251 252 253 254 255
        /* If it's an absolute path outside of a datastore just use it as is */
        if (result == NULL && *fileName == '/') {
            /* FIXME: need to deal with Windows paths here too */
            if (esxVI_String_DeepCopyValue(&result, fileName) < 0) {
                goto cleanup;
            }
        }

        if (result == NULL) {
256 257
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not handle file name '%s'"), fileName);
258
            goto cleanup;
259
        }
260
    }
261

262 263 264 265 266 267
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&datastoreList);
    esxVI_DatastoreHostMount_Free(&hostMount);
    VIR_FREE(strippedFileName);
    VIR_FREE(copyOfFileName);
268

269
    return result;
270 271 272 273
}



274
/*
E
Eric Blake 已提交
275
 * This function does the inverse of esxParseVMXFileName. It takes a file name
276 277
 * in datastore path format or in absolute format and converts it to a file
 * name that can be used in a .vmx file.
278 279 280 281 282 283
 *
 * The datastore path format and the formats found in a .vmx file are described
 * in the documentation of esxParseVMXFileName.
 *
 * Firstly parse the datastore path. Then use the datastore name to lookup the
 * datastore and it's mount path. Finally concatenate the mount path, directory
E
Eric Blake 已提交
284
 * and file name to an absolute path and return it. Detect the separator type
285 286
 * based on the mount path.
 */
287
static char *
288
esxFormatVMXFileName(const char *fileName, void *opaque)
289 290
{
    bool success = false;
291
    char *result = NULL;
292
    esxVMX_Data *data = opaque;
293
    char *datastoreName = NULL;
294
    char *directoryAndFileName = NULL;
295 296 297 298 299
    esxVI_ObjectContent *datastore = NULL;
    esxVI_DatastoreHostMount *hostMount = NULL;
    char separator = '/';
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    char *tmp;
300
    size_t length;
301

302 303 304 305 306 307
    if (*fileName == '[') {
        /* Parse datastore path and lookup datastore */
        if (esxUtil_ParseDatastorePath(fileName, &datastoreName, NULL,
                                       &directoryAndFileName) < 0) {
            goto cleanup;
        }
308

309 310 311
        if (esxVI_LookupDatastoreByName(data->ctx, datastoreName, NULL, &datastore,
                                        esxVI_Occurrence_RequiredItem) < 0 ||
            esxVI_LookupDatastoreHostMount(data->ctx, datastore->obj,
312 313
                                           &hostMount,
                                           esxVI_Occurrence_RequiredItem) < 0) {
314 315
            goto cleanup;
        }
316

317 318 319 320
        /* Detect separator type */
        if (strchr(hostMount->mountInfo->path, '\\') != NULL) {
            separator = '\\';
        }
321

322 323
        /* Strip trailing separators */
        length = strlen(hostMount->mountInfo->path);
324

325 326 327
        while (length > 0 && hostMount->mountInfo->path[length - 1] == separator) {
            --length;
        }
328

329 330
        /* Format as <mount>[/<directory>]/<file>, convert / to \ when necessary */
        virBufferAdd(&buffer, hostMount->mountInfo->path, length);
331

332 333
        if (separator != '/') {
            tmp = directoryAndFileName;
334

335 336 337 338
            while (*tmp != '\0') {
                if (*tmp == '/') {
                    *tmp = separator;
                }
339

340 341
                ++tmp;
            }
342
        }
343

344 345
        virBufferAddChar(&buffer, separator);
        virBufferAdd(&buffer, directoryAndFileName, -1);
346

347 348 349 350 351 352 353 354 355 356 357 358
        if (virBufferError(&buffer)) {
            virReportOOMError();
            goto cleanup;
        }

        result = virBufferContentAndReset(&buffer);
    } else if (*fileName == '/') {
        /* FIXME: need to deal with Windows paths here too */
        if (esxVI_String_DeepCopyValue(&result, fileName) < 0) {
            goto cleanup;
        }
    } else {
359 360
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not handle file name '%s'"), fileName);
361 362 363 364 365 366 367 368 369
        goto cleanup;
    }

    /* FIXME: Check if referenced path/file really exists */

    success = true;

  cleanup:
    if (! success) {
370
        virBufferFreeAndReset(&buffer);
371
        VIR_FREE(result);
372 373 374
    }

    VIR_FREE(datastoreName);
375
    VIR_FREE(directoryAndFileName);
376 377
    esxVI_ObjectContent_Free(&datastore);
    esxVI_DatastoreHostMount_Free(&hostMount);
378

379
    return result;
380 381 382 383 384 385 386 387 388 389
}



static int
esxAutodetectSCSIControllerModel(virDomainDiskDefPtr def, int *model,
                                 void *opaque)
{
    int result = -1;
    esxVMX_Data *data = opaque;
390
    esxVI_FileInfo *fileInfo = NULL;
391 392 393 394 395 396 397 398 399 400 401 402 403 404
    esxVI_VmDiskFileInfo *vmDiskFileInfo = NULL;

    if (def->device != VIR_DOMAIN_DISK_DEVICE_DISK ||
        def->bus != VIR_DOMAIN_DISK_BUS_SCSI ||
        def->type != VIR_DOMAIN_DISK_TYPE_FILE ||
        def->src == NULL ||
        ! STRPREFIX(def->src, "[")) {
        /*
         * This isn't a file-based SCSI disk device with a datastore related
         * source path => do nothing.
         */
        return 0;
    }

405 406
    if (esxVI_LookupFileInfoByDatastorePath(data->ctx, def->src,
                                            false, &fileInfo,
407
                                            esxVI_Occurrence_RequiredItem) < 0) {
408 409 410
        goto cleanup;
    }

411
    vmDiskFileInfo = esxVI_VmDiskFileInfo_DynamicCast(fileInfo);
412 413

    if (vmDiskFileInfo == NULL || vmDiskFileInfo->controllerType == NULL) {
414 415
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not lookup controller model for '%s'"), def->src);
416 417 418 419 420
        goto cleanup;
    }

    if (STRCASEEQ(vmDiskFileInfo->controllerType,
                  "VirtualBusLogicController")) {
421
        *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_BUSLOGIC;
422 423
    } else if (STRCASEEQ(vmDiskFileInfo->controllerType,
                         "VirtualLsiLogicController")) {
424
        *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC;
425 426
    } else if (STRCASEEQ(vmDiskFileInfo->controllerType,
                         "VirtualLsiLogicSASController")) {
427
        *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1068;
428 429
    } else if (STRCASEEQ(vmDiskFileInfo->controllerType,
                         "ParaVirtualSCSIController")) {
430
        *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VMPVSCSI;
431
    } else {
432 433 434
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Found unexpected controller model '%s' for disk '%s'"),
                       vmDiskFileInfo->controllerType, def->src);
435 436 437 438 439 440
        goto cleanup;
    }

    result = 0;

  cleanup:
441
    esxVI_FileInfo_Free(&fileInfo);
442 443 444 445

    return result;
}

446 447


448
static esxVI_Boolean
449
esxSupportsLongMode(esxPrivate *priv)
450 451 452 453 454 455
{
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_HostCpuIdInfo *hostCpuIdInfoList = NULL;
    esxVI_HostCpuIdInfo *hostCpuIdInfo = NULL;
456
    esxVI_ParsedHostCpuIdInfo parsedHostCpuIdInfo;
457 458 459 460 461 462
    char edxLongModeBit = '?';

    if (priv->supportsLongMode != esxVI_Boolean_Undefined) {
        return priv->supportsLongMode;
    }

463
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
464
        return esxVI_Boolean_Undefined;
465 466
    }

467
    if (esxVI_String_AppendValueToList(&propertyNameList,
468
                                       "hardware.cpuFeature") < 0 ||
469 470
        esxVI_LookupHostSystemProperties(priv->primary, propertyNameList,
                                         &hostSystem) < 0) {
M
Matthias Bolte 已提交
471
        goto cleanup;
472 473 474 475 476 477
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "hardware.cpuFeature")) {
            if (esxVI_HostCpuIdInfo_CastListFromAnyType
478
                  (dynamicProperty->val, &hostCpuIdInfoList) < 0) {
M
Matthias Bolte 已提交
479
                goto cleanup;
480 481 482 483 484
            }

            for (hostCpuIdInfo = hostCpuIdInfoList; hostCpuIdInfo != NULL;
                 hostCpuIdInfo = hostCpuIdInfo->_next) {
                if (hostCpuIdInfo->level->value == -2147483647) { /* 0x80000001 */
485 486
                    if (esxVI_ParseHostCpuIdInfo(&parsedHostCpuIdInfo,
                                                 hostCpuIdInfo) < 0) {
M
Matthias Bolte 已提交
487
                        goto cleanup;
488 489
                    }

490
                    edxLongModeBit = parsedHostCpuIdInfo.edx[29];
491 492 493 494 495 496

                    if (edxLongModeBit == '1') {
                        priv->supportsLongMode = esxVI_Boolean_True;
                    } else if (edxLongModeBit == '0') {
                        priv->supportsLongMode = esxVI_Boolean_False;
                    } else {
497 498 499 500 501
                        virReportError(VIR_ERR_INTERNAL_ERROR,
                                       _("Bit 29 (Long Mode) of HostSystem property "
                                         "'hardware.cpuFeature[].edx' with value '%s' "
                                         "has unexpected value '%c', expecting '0' "
                                         "or '1'"), hostCpuIdInfo->edx, edxLongModeBit);
M
Matthias Bolte 已提交
502
                        goto cleanup;
503 504 505 506 507 508 509 510 511 512 513 514 515
                    }

                    break;
                }
            }

            break;
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

  cleanup:
M
Matthias Bolte 已提交
516 517 518 519
    /*
     * If we goto cleanup in case of an error then priv->supportsLongMode
     * is still esxVI_Boolean_Undefined, therefore we don't need to set it.
     */
520 521 522 523 524 525 526 527 528
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);
    esxVI_HostCpuIdInfo_Free(&hostCpuIdInfoList);

    return priv->supportsLongMode;
}



529 530 531 532 533 534
static int
esxLookupHostSystemBiosUuid(esxPrivate *priv, unsigned char *uuid)
{
    int result = -1;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
535
    char *uuid_string = NULL;
536

537
    if (esxVI_EnsureSession(priv->primary) < 0) {
538 539 540 541 542
        return -1;
    }

    if (esxVI_String_AppendValueToList(&propertyNameList,
                                       "hardware.systemInfo.uuid") < 0 ||
543
        esxVI_LookupHostSystemProperties(priv->primary, propertyNameList,
544 545 546
                                         &hostSystem) < 0 ||
        esxVI_GetStringValue(hostSystem, "hardware.systemInfo.uuid",
                             &uuid_string, esxVI_Occurrence_RequiredItem) < 0) {
547 548 549
        goto cleanup;
    }

550 551 552
    if (strlen(uuid_string) > 0) {
        if (virUUIDParse(uuid_string, uuid) < 0) {
            VIR_WARN("Could not parse host UUID from string '%s'", uuid_string);
553

554 555
            /* HostSystem has an invalid UUID, ignore it */
            memset(uuid, 0, VIR_UUID_BUFLEN);
556
        }
557 558 559
    } else {
        /* HostSystem has an empty UUID */
        memset(uuid, 0, VIR_UUID_BUFLEN);
560 561 562 563 564 565 566 567 568 569 570 571
    }

    result = 0;

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);

    return result;
}


572
static virCapsPtr
573
esxCapsInit(esxPrivate *priv)
574
{
575
    esxVI_Boolean supportsLongMode = esxSupportsLongMode(priv);
576 577 578
    virCapsPtr caps = NULL;
    virCapsGuestPtr guest = NULL;

579 580 581 582 583
    if (supportsLongMode == esxVI_Boolean_Undefined) {
        return NULL;
    }

    if (supportsLongMode == esxVI_Boolean_True) {
584
        caps = virCapabilitiesNew(VIR_ARCH_X86_64, 1, 1);
585
    } else {
586
        caps = virCapabilitiesNew(VIR_ARCH_I686, 1, 1);
587
    }
588 589

    if (caps == NULL) {
590
        virReportOOMError();
591 592 593
        return NULL;
    }

594
    virCapabilitiesAddHostMigrateTransport(caps, "vpxmigr");
595

596

597 598 599 600
    if (esxLookupHostSystemBiosUuid(priv, caps->host.host_uuid) < 0) {
        goto failure;
    }

601
    /* i686 */
602 603 604
    guest = virCapabilitiesAddGuest(caps, "hvm",
                                    VIR_ARCH_I686,
                                    NULL, NULL, 0,
605
                                    NULL);
606 607 608 609 610 611 612 613 614 615

    if (guest == NULL) {
        goto failure;
    }

    if (virCapabilitiesAddGuestDomain(guest, "vmware", NULL, NULL, 0,
                                      NULL) == NULL) {
        goto failure;
    }

616 617
    /* x86_64 */
    if (supportsLongMode == esxVI_Boolean_True) {
618 619 620
        guest = virCapabilitiesAddGuest(caps, "hvm",
                                        VIR_ARCH_X86_64,
                                        NULL, NULL,
621 622 623 624 625 626 627 628 629 630 631 632
                                        0, NULL);

        if (guest == NULL) {
            goto failure;
        }

        if (virCapabilitiesAddGuestDomain(guest, "vmware", NULL, NULL, 0,
                                          NULL) == NULL) {
            goto failure;
        }
    }

633 634 635
    return caps;

  failure:
636
    virObjectUnref(caps);
637 638 639 640 641 642

    return NULL;
}



643
static int
644 645
esxConnectToHost(esxPrivate *priv,
                 virConnectPtr conn,
646
                 virConnectAuthPtr auth,
647 648 649 650 651
                 char **vCenterIpAddress)
{
    int result = -1;
    char ipAddress[NI_MAXHOST] = "";
    char *username = NULL;
M
Matthias Bolte 已提交
652
    char *unescapedPassword = NULL;
653 654 655 656 657
    char *password = NULL;
    char *url = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
    esxVI_Boolean inMaintenanceMode = esxVI_Boolean_Undefined;
658 659 660
    esxVI_ProductVersion expectedProductVersion = STRCASEEQ(conn->uri->scheme, "esx")
        ? esxVI_ProductVersion_ESX
        : esxVI_ProductVersion_GSX;
661 662

    if (vCenterIpAddress == NULL || *vCenterIpAddress != NULL) {
663
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
664 665 666
        return -1;
    }

667
    if (esxUtil_ResolveHostname(conn->uri->server, ipAddress, NI_MAXHOST) < 0) {
668 669 670
        return -1;
    }

671 672
    if (conn->uri->user != NULL) {
        username = strdup(conn->uri->user);
673 674 675 676 677 678

        if (username == NULL) {
            virReportOOMError();
            goto cleanup;
        }
    } else {
679
        username = virAuthGetUsername(conn, auth, "esx", "root", conn->uri->server);
680 681

        if (username == NULL) {
682
            virReportError(VIR_ERR_AUTH_FAILED, "%s", _("Username request failed"));
683 684 685 686
            goto cleanup;
        }
    }

687
    unescapedPassword = virAuthGetPassword(conn, auth, "esx", username, conn->uri->server);
688

M
Matthias Bolte 已提交
689
    if (unescapedPassword == NULL) {
690
        virReportError(VIR_ERR_AUTH_FAILED, "%s", _("Password request failed"));
691 692 693
        goto cleanup;
    }

M
Matthias Bolte 已提交
694 695 696 697 698 699
    password = esxUtil_EscapeForXml(unescapedPassword);

    if (password == NULL) {
        goto cleanup;
    }

700
    if (virAsprintf(&url, "%s://%s:%d/sdk", priv->parsedUri->transport,
701
                    conn->uri->server, conn->uri->port) < 0) {
702 703 704 705 706 707
        virReportOOMError();
        goto cleanup;
    }

    if (esxVI_Context_Alloc(&priv->host) < 0 ||
        esxVI_Context_Connect(priv->host, url, ipAddress, username, password,
708
                              priv->parsedUri) < 0 ||
709
        esxVI_Context_LookupManagedObjects(priv->host) < 0) {
710 711 712 713 714
        goto cleanup;
    }

    if (expectedProductVersion == esxVI_ProductVersion_ESX) {
        if (priv->host->productVersion != esxVI_ProductVersion_ESX35 &&
M
Matthias Bolte 已提交
715 716
            priv->host->productVersion != esxVI_ProductVersion_ESX40 &&
            priv->host->productVersion != esxVI_ProductVersion_ESX41 &&
P
Patrice LACHANCE 已提交
717 718
            priv->host->productVersion != esxVI_ProductVersion_ESX4x &&
            priv->host->productVersion != esxVI_ProductVersion_ESX50 &&
M
Martin Kletzander 已提交
719
            priv->host->productVersion != esxVI_ProductVersion_ESX51 &&
P
Patrice LACHANCE 已提交
720
            priv->host->productVersion != esxVI_ProductVersion_ESX5x) {
721 722 723
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("%s is neither an ESX 3.5, 4.x nor 5.x host"),
                           conn->uri->server);
724 725 726 727
            goto cleanup;
        }
    } else { /* GSX */
        if (priv->host->productVersion != esxVI_ProductVersion_GSX20) {
728 729
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("%s isn't a GSX 2.0 host"), conn->uri->server);
730 731 732 733 734 735 736 737
            goto cleanup;
        }
    }

    /* Query the host for maintenance mode and vCenter IP address */
    if (esxVI_String_AppendValueListToList(&propertyNameList,
                                           "runtime.inMaintenanceMode\0"
                                           "summary.managementServerIp\0") < 0 ||
738 739
        esxVI_LookupHostSystemProperties(priv->host, propertyNameList,
                                         &hostSystem) < 0 ||
740 741 742 743 744 745 746 747 748 749 750
        esxVI_GetBoolean(hostSystem, "runtime.inMaintenanceMode",
                         &inMaintenanceMode,
                         esxVI_Occurrence_RequiredItem) < 0 ||
        esxVI_GetStringValue(hostSystem, "summary.managementServerIp",
                             vCenterIpAddress,
                             esxVI_Occurrence_OptionalItem) < 0) {
        goto cleanup;
    }

    /* Warn if host is in maintenance mode */
    if (inMaintenanceMode == esxVI_Boolean_True) {
751
        VIR_WARN("The server is in maintenance mode");
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
    }

    if (*vCenterIpAddress != NULL) {
        *vCenterIpAddress = strdup(*vCenterIpAddress);

        if (*vCenterIpAddress == NULL) {
            virReportOOMError();
            goto cleanup;
        }
    }

    result = 0;

  cleanup:
    VIR_FREE(username);
M
Matthias Bolte 已提交
767 768
    VIR_FREE(unescapedPassword);
    VIR_FREE(password);
769 770 771 772 773 774 775 776 777 778
    VIR_FREE(url);
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);

    return result;
}



static int
779 780
esxConnectToVCenter(esxPrivate *priv,
                    virConnectPtr conn,
781 782
                    virConnectAuthPtr auth,
                    const char *hostname,
783
                    const char *hostSystemIpAddress)
784 785 786 787
{
    int result = -1;
    char ipAddress[NI_MAXHOST] = "";
    char *username = NULL;
M
Matthias Bolte 已提交
788
    char *unescapedPassword = NULL;
789 790 791
    char *password = NULL;
    char *url = NULL;

792
    if (hostSystemIpAddress == NULL &&
793
        (priv->parsedUri->path == NULL || STREQ(priv->parsedUri->path, "/"))) {
794 795
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Path has to specify the datacenter and compute resource"));
796 797 798
        return -1;
    }

799 800 801 802
    if (esxUtil_ResolveHostname(hostname, ipAddress, NI_MAXHOST) < 0) {
        return -1;
    }

803 804
    if (conn->uri->user != NULL) {
        username = strdup(conn->uri->user);
805 806 807 808 809 810

        if (username == NULL) {
            virReportOOMError();
            goto cleanup;
        }
    } else {
811
        username = virAuthGetUsername(conn, auth, "esx", "administrator", hostname);
812 813

        if (username == NULL) {
814
            virReportError(VIR_ERR_AUTH_FAILED, "%s", _("Username request failed"));
815 816 817 818
            goto cleanup;
        }
    }

819
    unescapedPassword = virAuthGetPassword(conn, auth, "esx", username, hostname);
820

M
Matthias Bolte 已提交
821
    if (unescapedPassword == NULL) {
822
        virReportError(VIR_ERR_AUTH_FAILED, "%s", _("Password request failed"));
823 824 825
        goto cleanup;
    }

M
Matthias Bolte 已提交
826 827 828 829 830 831
    password = esxUtil_EscapeForXml(unescapedPassword);

    if (password == NULL) {
        goto cleanup;
    }

832
    if (virAsprintf(&url, "%s://%s:%d/sdk", priv->parsedUri->transport,
833
                    hostname, conn->uri->port) < 0) {
834 835 836 837 838 839
        virReportOOMError();
        goto cleanup;
    }

    if (esxVI_Context_Alloc(&priv->vCenter) < 0 ||
        esxVI_Context_Connect(priv->vCenter, url, ipAddress, username,
840
                              password, priv->parsedUri) < 0) {
841 842 843 844
        goto cleanup;
    }

    if (priv->vCenter->productVersion != esxVI_ProductVersion_VPX25 &&
M
Matthias Bolte 已提交
845 846
        priv->vCenter->productVersion != esxVI_ProductVersion_VPX40 &&
        priv->vCenter->productVersion != esxVI_ProductVersion_VPX41 &&
P
Patrice LACHANCE 已提交
847 848
        priv->vCenter->productVersion != esxVI_ProductVersion_VPX4x &&
        priv->vCenter->productVersion != esxVI_ProductVersion_VPX50 &&
M
Martin Kletzander 已提交
849
        priv->vCenter->productVersion != esxVI_ProductVersion_VPX51 &&
P
Patrice LACHANCE 已提交
850
        priv->vCenter->productVersion != esxVI_ProductVersion_VPX5x) {
851 852 853
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("%s is neither a vCenter 2.5, 4.x nor 5.x server"),
                       hostname);
854 855 856
        goto cleanup;
    }

857
    if (hostSystemIpAddress != NULL) {
858 859
        if (esxVI_Context_LookupManagedObjectsByHostSystemIp
              (priv->vCenter, hostSystemIpAddress) < 0) {
860 861 862
            goto cleanup;
        }
    } else {
863 864
        if (esxVI_Context_LookupManagedObjectsByPath(priv->vCenter,
                                                     priv->parsedUri->path) < 0) {
865 866 867 868
            goto cleanup;
        }
    }

869 870 871 872
    result = 0;

  cleanup:
    VIR_FREE(username);
M
Matthias Bolte 已提交
873 874
    VIR_FREE(unescapedPassword);
    VIR_FREE(password);
875 876 877 878 879 880 881
    VIR_FREE(url);

    return result;
}



882
/*
883 884
 * URI format: {vpx|esx|gsx}://[<username>@]<hostname>[:<port>]/[<path>][?<query parameter>...]
 *             <path> = [<folder>/...]<datacenter>/[<folder>/...]<computeresource>[/<hostsystem>]
885
 *
886 887
 * If no port is specified the default port is set dependent on the scheme and
 * transport parameter:
888 889
 * - vpx+http  80
 * - vpx+https 443
890
 * - esx+http  80
891
 * - esx+https 443
892 893 894
 * - gsx+http  8222
 * - gsx+https 8333
 *
895 896 897
 * For a vpx:// connection <path> references a host managed by the vCenter.
 * In case the host is part of a cluster then <computeresource> is the cluster
 * name. Otherwise <computeresource> and <hostsystem> are equal and the later
898 899
 * can be omitted. As datacenters and computeresources can be organized in
 * folders those have to be included in <path>.
900
 *
901 902
 * Optional query parameters:
 * - transport={http|https}
903
 * - vcenter={<vcenter>|*}             only useful for an esx:// connection
904 905
 * - no_verify={0|1}
 * - auto_answer={0|1}
M
Matthias Bolte 已提交
906
 * - proxy=[{http|socks|socks4|socks4a|socks5}://]<hostname>[:<port>]
907
 *
908 909 910
 * If no transport parameter is specified https is used.
 *
 * The vcenter parameter is only necessary for migration, because the vCenter
911
 * server is in charge to initiate a migration between two ESX hosts. The
912
 * vcenter parameter can be set to an explicitly hostname or to *. If set to *,
913 914
 * the driver will check if the ESX host is managed by a vCenter and connect to
 * it. If the ESX host is not managed by a vCenter an error is reported.
915 916
 *
 * If the no_verify parameter is set to 1, this disables libcurl client checks
917
 * of the server's certificate. The default value it 0.
918 919 920 921
 *
 * If the auto_answer parameter is set to 1, the driver will respond to all
 * virtual machine questions with the default answer, otherwise virtual machine
 * questions will be reported as errors. The default value it 0.
M
Matthias Bolte 已提交
922 923 924 925
 *
 * The proxy parameter allows to specify a proxy for to be used by libcurl.
 * The default for the optional <type> part is http and socks is synonymous for
 * socks5. The optional <port> part allows to override the default port 1080.
926 927
 */
static virDrvOpenStatus
928 929
esxConnectOpen(virConnectPtr conn, virConnectAuthPtr auth,
               unsigned int flags)
930
{
M
Matthias Bolte 已提交
931
    virDrvOpenStatus result = VIR_DRV_OPEN_ERROR;
932
    char *plus;
933
    esxPrivate *priv = NULL;
934
    char *potentialVCenterIpAddress = NULL;
M
Matthias Bolte 已提交
935
    char vCenterIpAddress[NI_MAXHOST] = "";
936

E
Eric Blake 已提交
937 938
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

939 940
    /* Decline if the URI is NULL or the scheme is NULL */
    if (conn->uri == NULL || conn->uri->scheme == NULL) {
941 942 943
        return VIR_DRV_OPEN_DECLINED;
    }

944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
    /* Decline if the scheme is not one of {vpx|esx|gsx} */
    plus = strchr(conn->uri->scheme, '+');

    if (plus == NULL) {
        if (STRCASENEQ(conn->uri->scheme, "vpx") &&
            STRCASENEQ(conn->uri->scheme, "esx") &&
            STRCASENEQ(conn->uri->scheme, "gsx")) {
            return VIR_DRV_OPEN_DECLINED;
        }
    } else {
        if (plus - conn->uri->scheme != 3 ||
            (STRCASENEQLEN(conn->uri->scheme, "vpx", 3) &&
             STRCASENEQLEN(conn->uri->scheme, "esx", 3) &&
             STRCASENEQLEN(conn->uri->scheme, "gsx", 3))) {
            return VIR_DRV_OPEN_DECLINED;
        }

961 962 963
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Transport '%s' in URI scheme is not supported, try again "
                         "without the transport part"), plus + 1);
964 965 966
        return VIR_DRV_OPEN_ERROR;
    }

967 968 969 970 971 972
    if (STRCASENEQ(conn->uri->scheme, "vpx") &&
        conn->uri->path != NULL && STRNEQ(conn->uri->path, "/")) {
        VIR_WARN("Ignoring unexpected path '%s' for non-vpx scheme '%s'",
                 conn->uri->path, conn->uri->scheme);
    }

973 974
    /* Require server part */
    if (conn->uri->server == NULL) {
975 976
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("URI is missing the server part"));
977 978 979 980 981
        return VIR_DRV_OPEN_ERROR;
    }

    /* Require auth */
    if (auth == NULL || auth->cb == NULL) {
982 983
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Missing or invalid auth pointer"));
984
        return VIR_DRV_OPEN_ERROR;
985 986 987 988
    }

    /* Allocate per-connection private data */
    if (VIR_ALLOC(priv) < 0) {
989
        virReportOOMError();
M
Matthias Bolte 已提交
990
        goto cleanup;
991 992
    }

993
    if (esxUtil_ParseUri(&priv->parsedUri, conn->uri) < 0) {
994 995 996
        goto cleanup;
    }

M
Matthias Bolte 已提交
997 998
    priv->maxVcpus = -1;
    priv->supportsVMotion = esxVI_Boolean_Undefined;
999
    priv->supportsLongMode = esxVI_Boolean_Undefined;
1000 1001
    priv->usedCpuTimeCounterId = -1;

M
Matthias Bolte 已提交
1002 1003 1004 1005 1006 1007 1008
    /*
     * Set the port dependent on the transport protocol if no port is
     * specified. This allows us to rely on the port parameter being
     * correctly set when building URIs later on, without the need to
     * distinguish between the situations port == 0 and port != 0
     */
    if (conn->uri->port == 0) {
1009 1010
        if (STRCASEEQ(conn->uri->scheme, "vpx") ||
            STRCASEEQ(conn->uri->scheme, "esx")) {
1011
            if (STRCASEEQ(priv->parsedUri->transport, "https")) {
M
Matthias Bolte 已提交
1012 1013 1014 1015 1016
                conn->uri->port = 443;
            } else {
                conn->uri->port = 80;
            }
        } else { /* GSX */
1017
            if (STRCASEEQ(priv->parsedUri->transport, "https")) {
M
Matthias Bolte 已提交
1018 1019 1020 1021
                conn->uri->port = 8333;
            } else {
                conn->uri->port = 8222;
            }
1022
        }
M
Matthias Bolte 已提交
1023
    }
1024

1025 1026 1027
    if (STRCASEEQ(conn->uri->scheme, "esx") ||
        STRCASEEQ(conn->uri->scheme, "gsx")) {
        /* Connect to host */
1028
        if (esxConnectToHost(priv, conn, auth,
1029
                             &potentialVCenterIpAddress) < 0) {
M
Matthias Bolte 已提交
1030
            goto cleanup;
1031
        }
1032

1033
        /* Connect to vCenter */
1034 1035
        if (priv->parsedUri->vCenter != NULL) {
            if (STREQ(priv->parsedUri->vCenter, "*")) {
1036
                if (potentialVCenterIpAddress == NULL) {
1037 1038
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("This host is not managed by a vCenter"));
M
Matthias Bolte 已提交
1039
                    goto cleanup;
1040 1041
                }

1042 1043
                if (virStrcpyStatic(vCenterIpAddress,
                                    potentialVCenterIpAddress) == NULL) {
1044 1045 1046
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("vCenter IP address %s too big for destination"),
                                   potentialVCenterIpAddress);
1047 1048 1049
                    goto cleanup;
                }
            } else {
1050
                if (esxUtil_ResolveHostname(priv->parsedUri->vCenter,
1051 1052 1053
                                            vCenterIpAddress, NI_MAXHOST) < 0) {
                    goto cleanup;
                }
1054

1055 1056
                if (potentialVCenterIpAddress != NULL &&
                    STRNEQ(vCenterIpAddress, potentialVCenterIpAddress)) {
1057 1058 1059 1060 1061 1062
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("This host is managed by a vCenter with IP "
                                     "address %s, but a mismachting vCenter '%s' "
                                     "(%s) has been specified"),
                                   potentialVCenterIpAddress, priv->parsedUri->vCenter,
                                   vCenterIpAddress);
M
Matthias Bolte 已提交
1063
                    goto cleanup;
1064 1065
                }
            }
1066

1067
            if (esxConnectToVCenter(priv, conn, auth,
1068
                                    vCenterIpAddress,
1069
                                    priv->host->ipAddress) < 0) {
1070 1071
                goto cleanup;
            }
1072 1073
        }

1074 1075 1076
        priv->primary = priv->host;
    } else { /* VPX */
        /* Connect to vCenter */
1077
        if (esxConnectToVCenter(priv, conn, auth,
1078 1079
                                conn->uri->server,
                                NULL) < 0) {
M
Matthias Bolte 已提交
1080
            goto cleanup;
1081 1082
        }

1083
        priv->primary = priv->vCenter;
1084 1085
    }

M
Matthias Bolte 已提交
1086
    /* Setup capabilities */
1087
    priv->caps = esxCapsInit(priv);
1088

M
Matthias Bolte 已提交
1089
    if (priv->caps == NULL) {
M
Matthias Bolte 已提交
1090
        goto cleanup;
1091 1092
    }

1093
    if (!(priv->xmlopt = virVMXDomainXMLConfInit()))
1094 1095
        goto cleanup;

1096 1097
    conn->privateData = priv;
    priv = NULL;
M
Matthias Bolte 已提交
1098
    result = VIR_DRV_OPEN_SUCCESS;
1099

M
Matthias Bolte 已提交
1100
  cleanup:
1101
    esxFreePrivate(&priv);
1102
    VIR_FREE(potentialVCenterIpAddress);
1103

M
Matthias Bolte 已提交
1104
    return result;
1105 1106 1107 1108 1109
}



static int
1110
esxConnectClose(virConnectPtr conn)
1111
{
M
Matthias Bolte 已提交
1112
    esxPrivate *priv = conn->privateData;
E
Eric Blake 已提交
1113
    int result = 0;
1114

1115 1116 1117 1118 1119 1120
    if (priv->host != NULL) {
        if (esxVI_EnsureSession(priv->host) < 0 ||
            esxVI_Logout(priv->host) < 0) {
            result = -1;
        }
    }
1121

M
Matthias Bolte 已提交
1122
    if (priv->vCenter != NULL) {
E
Eric Blake 已提交
1123 1124 1125 1126
        if (esxVI_EnsureSession(priv->vCenter) < 0 ||
            esxVI_Logout(priv->vCenter) < 0) {
            result = -1;
        }
1127 1128
    }

1129
    esxFreePrivate(&priv);
1130 1131 1132

    conn->privateData = NULL;

E
Eric Blake 已提交
1133
    return result;
1134 1135 1136 1137 1138
}



static esxVI_Boolean
1139
esxSupportsVMotion(esxPrivate *priv)
1140 1141 1142 1143
{
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;

M
Matthias Bolte 已提交
1144 1145
    if (priv->supportsVMotion != esxVI_Boolean_Undefined) {
        return priv->supportsVMotion;
1146 1147
    }

1148
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1149
        return esxVI_Boolean_Undefined;
1150 1151
    }

1152
    if (esxVI_String_AppendValueToList(&propertyNameList,
1153
                                       "capability.vmotionSupported") < 0 ||
1154
        esxVI_LookupHostSystemProperties(priv->primary, propertyNameList,
1155 1156
                                         &hostSystem) < 0 ||
        esxVI_GetBoolean(hostSystem, "capability.vmotionSupported",
1157 1158 1159
                         &priv->supportsVMotion,
                         esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
1160 1161 1162
    }

  cleanup:
M
Matthias Bolte 已提交
1163 1164 1165 1166
    /*
     * If we goto cleanup in case of an error then priv->supportsVMotion is
     * still esxVI_Boolean_Undefined, therefore we don't need to set it.
     */
1167 1168 1169
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);

M
Matthias Bolte 已提交
1170
    return priv->supportsVMotion;
1171 1172 1173 1174 1175
}



static int
1176
esxConnectSupportsFeature(virConnectPtr conn, int feature)
1177
{
M
Matthias Bolte 已提交
1178
    esxPrivate *priv = conn->privateData;
M
Matthias Bolte 已提交
1179
    esxVI_Boolean supportsVMotion = esxVI_Boolean_Undefined;
1180 1181 1182

    switch (feature) {
      case VIR_DRV_FEATURE_MIGRATION_V1:
1183
        supportsVMotion = esxSupportsVMotion(priv);
1184

M
Matthias Bolte 已提交
1185
        if (supportsVMotion == esxVI_Boolean_Undefined) {
1186 1187 1188
            return -1;
        }

M
Matthias Bolte 已提交
1189 1190 1191
        /* Migration is only possible via a vCenter and if VMotion is enabled */
        return priv->vCenter != NULL &&
               supportsVMotion == esxVI_Boolean_True ? 1 : 0;
1192 1193 1194 1195 1196 1197 1198 1199 1200

      default:
        return 0;
    }
}



static const char *
1201
esxConnectGetType(virConnectPtr conn ATTRIBUTE_UNUSED)
1202 1203 1204 1205 1206 1207 1208
{
    return "ESX";
}



static int
1209
esxConnectGetVersion(virConnectPtr conn, unsigned long *version)
1210
{
M
Matthias Bolte 已提交
1211
    esxPrivate *priv = conn->privateData;
1212

1213
    if (virParseVersionString(priv->primary->service->about->version,
1214
                              version, false) < 0) {
1215 1216 1217
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse version number from '%s'"),
                       priv->primary->service->about->version);
1218

1219
        return -1;
1220 1221 1222 1223 1224 1225 1226 1227
    }

    return 0;
}



static char *
1228
esxConnectGetHostname(virConnectPtr conn)
1229
{
M
Matthias Bolte 已提交
1230
    esxPrivate *priv = conn->privateData;
1231 1232 1233 1234 1235 1236 1237
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    const char *hostName = NULL;
    const char *domainName = NULL;
    char *complete = NULL;

1238
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1239
        return NULL;
1240 1241 1242
    }

    if (esxVI_String_AppendValueListToList
1243
          (&propertyNameList,
1244 1245
           "config.network.dnsConfig.hostName\0"
           "config.network.dnsConfig.domainName\0") < 0 ||
1246 1247
        esxVI_LookupHostSystemProperties(priv->primary, propertyNameList,
                                         &hostSystem) < 0) {
M
Matthias Bolte 已提交
1248
        goto cleanup;
1249 1250 1251 1252 1253 1254
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name,
                  "config.network.dnsConfig.hostName")) {
1255
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1256
                                         esxVI_Type_String) < 0) {
M
Matthias Bolte 已提交
1257
                goto cleanup;
1258 1259 1260 1261 1262
            }

            hostName = dynamicProperty->val->string;
        } else if (STREQ(dynamicProperty->name,
                         "config.network.dnsConfig.domainName")) {
1263
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1264
                                         esxVI_Type_String) < 0) {
M
Matthias Bolte 已提交
1265
                goto cleanup;
1266 1267 1268 1269 1270 1271 1272 1273
            }

            domainName = dynamicProperty->val->string;
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

M
Matthias Bolte 已提交
1274
    if (hostName == NULL || strlen(hostName) < 1) {
1275 1276
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing or empty 'hostName' property"));
M
Matthias Bolte 已提交
1277
        goto cleanup;
1278 1279
    }

M
Matthias Bolte 已提交
1280
    if (domainName == NULL || strlen(domainName) < 1) {
1281
        complete = strdup(hostName);
1282

1283
        if (complete == NULL) {
1284
            virReportOOMError();
M
Matthias Bolte 已提交
1285
            goto cleanup;
1286 1287 1288
        }
    } else {
        if (virAsprintf(&complete, "%s.%s", hostName, domainName) < 0) {
1289
            virReportOOMError();
M
Matthias Bolte 已提交
1290
            goto cleanup;
1291
        }
1292 1293 1294
    }

  cleanup:
M
Matthias Bolte 已提交
1295 1296 1297 1298 1299
    /*
     * If we goto cleanup in case of an error then complete is still NULL,
     * either strdup returned NULL or virAsprintf failed. When virAsprintf
     * fails it guarantees setting complete to NULL
     */
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);

    return complete;
}



static int
esxNodeGetInfo(virConnectPtr conn, virNodeInfoPtr nodeinfo)
{
M
Matthias Bolte 已提交
1311
    int result = -1;
M
Matthias Bolte 已提交
1312
    esxPrivate *priv = conn->privateData;
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    int64_t cpuInfo_hz = 0;
    int16_t cpuInfo_numCpuCores = 0;
    int16_t cpuInfo_numCpuPackages = 0;
    int16_t cpuInfo_numCpuThreads = 0;
    int64_t memorySize = 0;
    int32_t numaInfo_numNodes = 0;
    char *ptr = NULL;

1324
    memset(nodeinfo, 0, sizeof(*nodeinfo));
1325

1326
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1327
        return -1;
1328 1329
    }

1330
    if (esxVI_String_AppendValueListToList(&propertyNameList,
1331 1332 1333 1334 1335 1336 1337
                                           "hardware.cpuInfo.hz\0"
                                           "hardware.cpuInfo.numCpuCores\0"
                                           "hardware.cpuInfo.numCpuPackages\0"
                                           "hardware.cpuInfo.numCpuThreads\0"
                                           "hardware.memorySize\0"
                                           "hardware.numaInfo.numNodes\0"
                                           "summary.hardware.cpuModel\0") < 0 ||
1338 1339
        esxVI_LookupHostSystemProperties(priv->primary, propertyNameList,
                                         &hostSystem) < 0) {
M
Matthias Bolte 已提交
1340
        goto cleanup;
1341 1342 1343 1344 1345
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "hardware.cpuInfo.hz")) {
1346
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1347
                                         esxVI_Type_Long) < 0) {
M
Matthias Bolte 已提交
1348
                goto cleanup;
1349 1350 1351 1352 1353
            }

            cpuInfo_hz = dynamicProperty->val->int64;
        } else if (STREQ(dynamicProperty->name,
                         "hardware.cpuInfo.numCpuCores")) {
1354
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1355
                                         esxVI_Type_Short) < 0) {
M
Matthias Bolte 已提交
1356
                goto cleanup;
1357 1358 1359 1360 1361
            }

            cpuInfo_numCpuCores = dynamicProperty->val->int16;
        } else if (STREQ(dynamicProperty->name,
                         "hardware.cpuInfo.numCpuPackages")) {
1362
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1363
                                         esxVI_Type_Short) < 0) {
M
Matthias Bolte 已提交
1364
                goto cleanup;
1365 1366 1367 1368 1369
            }

            cpuInfo_numCpuPackages = dynamicProperty->val->int16;
        } else if (STREQ(dynamicProperty->name,
                         "hardware.cpuInfo.numCpuThreads")) {
1370
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1371
                                         esxVI_Type_Short) < 0) {
M
Matthias Bolte 已提交
1372
                goto cleanup;
1373 1374 1375 1376
            }

            cpuInfo_numCpuThreads = dynamicProperty->val->int16;
        } else if (STREQ(dynamicProperty->name, "hardware.memorySize")) {
1377
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1378
                                         esxVI_Type_Long) < 0) {
M
Matthias Bolte 已提交
1379
                goto cleanup;
1380 1381 1382 1383 1384
            }

            memorySize = dynamicProperty->val->int64;
        } else if (STREQ(dynamicProperty->name,
                         "hardware.numaInfo.numNodes")) {
1385
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1386
                                         esxVI_Type_Int) < 0) {
M
Matthias Bolte 已提交
1387
                goto cleanup;
1388 1389 1390 1391 1392
            }

            numaInfo_numNodes = dynamicProperty->val->int32;
        } else if (STREQ(dynamicProperty->name,
                         "summary.hardware.cpuModel")) {
1393
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1394
                                         esxVI_Type_String) < 0) {
M
Matthias Bolte 已提交
1395
                goto cleanup;
1396 1397 1398 1399 1400 1401
            }

            ptr = dynamicProperty->val->string;

            /* Strip the string to fit more relevant information in 32 chars */
            while (*ptr != '\0') {
M
Matthias Bolte 已提交
1402 1403
                if (STRPREFIX(ptr, "  ")) {
                    memmove(ptr, ptr + 1, strlen(ptr + 1) + 1);
1404
                    continue;
1405
                } else if (STRPREFIX(ptr, "(R)") || STRPREFIX(ptr, "(C)")) {
M
Matthias Bolte 已提交
1406
                    memmove(ptr, ptr + 3, strlen(ptr + 3) + 1);
1407
                    continue;
1408 1409 1410
                } else if (STRPREFIX(ptr, "(TM)")) {
                    memmove(ptr, ptr + 4, strlen(ptr + 4) + 1);
                    continue;
1411 1412 1413 1414 1415
                }

                ++ptr;
            }

C
Chris Lalancette 已提交
1416 1417 1418
            if (virStrncpy(nodeinfo->model, dynamicProperty->val->string,
                           sizeof(nodeinfo->model) - 1,
                           sizeof(nodeinfo->model)) == NULL) {
1419 1420 1421
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("CPU Model %s too long for destination"),
                               dynamicProperty->val->string);
M
Matthias Bolte 已提交
1422
                goto cleanup;
C
Chris Lalancette 已提交
1423
            }
1424 1425 1426 1427 1428 1429 1430
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    nodeinfo->memory = memorySize / 1024; /* Scale from bytes to kilobytes */
    nodeinfo->cpus = cpuInfo_numCpuCores;
1431
    nodeinfo->mhz = cpuInfo_hz / (1000 * 1000); /* Scale from hz to mhz */
1432 1433 1434 1435 1436 1437 1438 1439 1440
    nodeinfo->nodes = numaInfo_numNodes;
    nodeinfo->sockets = cpuInfo_numCpuPackages;
    nodeinfo->cores = cpuInfo_numCpuPackages > 0
                        ? cpuInfo_numCpuCores / cpuInfo_numCpuPackages
                        : 0;
    nodeinfo->threads = cpuInfo_numCpuCores > 0
                          ? cpuInfo_numCpuThreads / cpuInfo_numCpuCores
                          : 0;

M
Matthias Bolte 已提交
1441 1442
    result = 0;

1443 1444 1445 1446 1447 1448 1449 1450 1451
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);

    return result;
}



1452
static char *
1453
esxConnectGetCapabilities(virConnectPtr conn)
1454
{
M
Matthias Bolte 已提交
1455
    esxPrivate *priv = conn->privateData;
M
Matthias Bolte 已提交
1456
    char *xml = virCapabilitiesFormatXML(priv->caps);
1457 1458

    if (xml == NULL) {
1459
        virReportOOMError();
1460 1461 1462 1463 1464 1465 1466 1467
        return NULL;
    }

    return xml;
}



1468
static int
1469
esxConnectListDomains(virConnectPtr conn, int *ids, int maxids)
1470
{
M
Matthias Bolte 已提交
1471
    bool success = false;
M
Matthias Bolte 已提交
1472
    esxPrivate *priv = conn->privateData;
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;
    int count = 0;

    if (maxids == 0) {
        return 0;
    }

1483
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1484
        return -1;
1485 1486
    }

1487
    if (esxVI_String_AppendValueToList(&propertyNameList,
1488
                                       "runtime.powerState") < 0 ||
1489 1490
        esxVI_LookupVirtualMachineList(priv->primary, propertyNameList,
                                       &virtualMachineList) < 0) {
M
Matthias Bolte 已提交
1491
        goto cleanup;
1492 1493 1494 1495
    }

    for (virtualMachine = virtualMachineList; virtualMachine != NULL;
         virtualMachine = virtualMachine->_next) {
1496
        if (esxVI_GetVirtualMachinePowerState(virtualMachine,
1497
                                              &powerState) < 0) {
M
Matthias Bolte 已提交
1498
            goto cleanup;
1499 1500 1501 1502 1503 1504 1505 1506 1507
        }

        if (powerState != esxVI_VirtualMachinePowerState_PoweredOn) {
            continue;
        }

        if (esxUtil_ParseVirtualMachineIDString(virtualMachine->obj->value,
                                                &ids[count]) < 0 ||
            ids[count] <= 0) {
1508 1509 1510
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to parse positive integer from '%s'"),
                           virtualMachine->obj->value);
M
Matthias Bolte 已提交
1511
            goto cleanup;
1512 1513 1514 1515 1516 1517 1518 1519 1520
        }

        count++;

        if (count >= maxids) {
            break;
        }
    }

M
Matthias Bolte 已提交
1521 1522
    success = true;

1523 1524 1525 1526
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);

M
Matthias Bolte 已提交
1527
    return success ? count : -1;
1528 1529 1530 1531 1532
}



static int
1533
esxConnectNumOfDomains(virConnectPtr conn)
1534
{
M
Matthias Bolte 已提交
1535
    esxPrivate *priv = conn->privateData;
1536

1537
    if (esxVI_EnsureSession(priv->primary) < 0) {
1538 1539 1540
        return -1;
    }

1541
    return esxVI_LookupNumberOfDomainsByPowerState
1542
             (priv->primary, esxVI_VirtualMachinePowerState_PoweredOn, false);
1543 1544 1545 1546 1547 1548 1549
}



static virDomainPtr
esxDomainLookupByID(virConnectPtr conn, int id)
{
M
Matthias Bolte 已提交
1550
    esxPrivate *priv = conn->privateData;
1551 1552 1553 1554
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachinePowerState powerState;
M
Matthias Bolte 已提交
1555 1556 1557
    int id_candidate = -1;
    char *name_candidate = NULL;
    unsigned char uuid_candidate[VIR_UUID_BUFLEN];
1558 1559
    virDomainPtr domain = NULL;

1560
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1561
        return NULL;
1562 1563
    }

1564
    if (esxVI_String_AppendValueListToList(&propertyNameList,
1565
                                           "configStatus\0"
1566 1567
                                           "name\0"
                                           "runtime.powerState\0"
1568
                                           "config.uuid\0") < 0 ||
1569 1570
        esxVI_LookupVirtualMachineList(priv->primary, propertyNameList,
                                       &virtualMachineList) < 0) {
M
Matthias Bolte 已提交
1571
        goto cleanup;
1572 1573 1574 1575
    }

    for (virtualMachine = virtualMachineList; virtualMachine != NULL;
         virtualMachine = virtualMachine->_next) {
1576
        if (esxVI_GetVirtualMachinePowerState(virtualMachine,
1577
                                              &powerState) < 0) {
M
Matthias Bolte 已提交
1578
            goto cleanup;
1579 1580 1581 1582 1583 1584 1585
        }

        /* Only running/suspended domains have an ID != -1 */
        if (powerState == esxVI_VirtualMachinePowerState_PoweredOff) {
            continue;
        }

M
Matthias Bolte 已提交
1586
        VIR_FREE(name_candidate);
1587

1588
        if (esxVI_GetVirtualMachineIdentity(virtualMachine,
M
Matthias Bolte 已提交
1589 1590
                                            &id_candidate, &name_candidate,
                                            uuid_candidate) < 0) {
M
Matthias Bolte 已提交
1591
            goto cleanup;
1592 1593
        }

M
Matthias Bolte 已提交
1594
        if (id != id_candidate) {
1595 1596 1597
            continue;
        }

M
Matthias Bolte 已提交
1598
        domain = virGetDomain(conn, name_candidate, uuid_candidate);
1599 1600

        if (domain == NULL) {
M
Matthias Bolte 已提交
1601
            goto cleanup;
1602 1603 1604 1605 1606 1607 1608 1609
        }

        domain->id = id;

        break;
    }

    if (domain == NULL) {
1610
        virReportError(VIR_ERR_NO_DOMAIN, _("No domain with ID %d"), id);
1611 1612 1613 1614 1615
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);
M
Matthias Bolte 已提交
1616
    VIR_FREE(name_candidate);
1617 1618 1619 1620 1621 1622 1623 1624 1625

    return domain;
}



static virDomainPtr
esxDomainLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
M
Matthias Bolte 已提交
1626
    esxPrivate *priv = conn->privateData;
1627 1628 1629
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachinePowerState powerState;
1630 1631
    int id = -1;
    char *name = NULL;
1632 1633
    virDomainPtr domain = NULL;

1634
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1635
        return NULL;
1636 1637
    }

1638
    if (esxVI_String_AppendValueListToList(&propertyNameList,
1639
                                           "name\0"
1640
                                           "runtime.powerState\0") < 0 ||
1641
        esxVI_LookupVirtualMachineByUuid(priv->primary, uuid, propertyNameList,
1642
                                         &virtualMachine,
M
Matthias Bolte 已提交
1643
                                         esxVI_Occurrence_RequiredItem) < 0 ||
1644 1645
        esxVI_GetVirtualMachineIdentity(virtualMachine, &id, &name, NULL) < 0 ||
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
1646
        goto cleanup;
1647 1648
    }

1649
    domain = virGetDomain(conn, name, uuid);
1650 1651

    if (domain == NULL) {
M
Matthias Bolte 已提交
1652
        goto cleanup;
1653
    }
1654

1655 1656 1657 1658 1659
    /* Only running/suspended virtual machines have an ID != -1 */
    if (powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
        domain->id = id;
    } else {
        domain->id = -1;
1660 1661 1662 1663
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
1664 1665
    esxVI_ObjectContent_Free(&virtualMachine);
    VIR_FREE(name);
1666 1667 1668 1669 1670 1671 1672 1673 1674

    return domain;
}



static virDomainPtr
esxDomainLookupByName(virConnectPtr conn, const char *name)
{
M
Matthias Bolte 已提交
1675
    esxPrivate *priv = conn->privateData;
1676 1677 1678
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachinePowerState powerState;
1679 1680
    int id = -1;
    unsigned char uuid[VIR_UUID_BUFLEN];
1681 1682
    virDomainPtr domain = NULL;

1683
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1684
        return NULL;
1685 1686
    }

1687
    if (esxVI_String_AppendValueListToList(&propertyNameList,
1688
                                           "configStatus\0"
1689
                                           "runtime.powerState\0"
1690
                                           "config.uuid\0") < 0 ||
1691
        esxVI_LookupVirtualMachineByName(priv->primary, name, propertyNameList,
1692 1693
                                         &virtualMachine,
                                         esxVI_Occurrence_OptionalItem) < 0) {
M
Matthias Bolte 已提交
1694
        goto cleanup;
1695 1696
    }

1697
    if (virtualMachine == NULL) {
1698
        virReportError(VIR_ERR_NO_DOMAIN, _("No domain with name '%s'"), name);
M
Matthias Bolte 已提交
1699
        goto cleanup;
1700
    }
1701

M
Matthias Bolte 已提交
1702 1703 1704
    if (esxVI_GetVirtualMachineIdentity(virtualMachine, &id, NULL, uuid) < 0 ||
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
        goto cleanup;
1705
    }
1706

1707
    domain = virGetDomain(conn, name, uuid);
1708

1709
    if (domain == NULL) {
M
Matthias Bolte 已提交
1710
        goto cleanup;
1711 1712
    }

1713 1714 1715 1716 1717
    /* Only running/suspended virtual machines have an ID != -1 */
    if (powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
        domain->id = id;
    } else {
        domain->id = -1;
1718 1719 1720 1721
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
1722
    esxVI_ObjectContent_Free(&virtualMachine);
1723 1724 1725 1726 1727 1728 1729 1730 1731

    return domain;
}



static int
esxDomainSuspend(virDomainPtr domain)
{
M
Matthias Bolte 已提交
1732
    int result = -1;
M
Matthias Bolte 已提交
1733
    esxPrivate *priv = domain->conn->privateData;
1734 1735 1736 1737 1738
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
1739
    char *taskInfoErrorMessage = NULL;
1740

1741
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1742
        return -1;
1743 1744
    }

1745
    if (esxVI_String_AppendValueToList(&propertyNameList,
1746
                                       "runtime.powerState") < 0 ||
1747
        esxVI_LookupVirtualMachineByUuidAndPrepareForTask
1748
          (priv->primary, domain->uuid, propertyNameList, &virtualMachine,
1749
           priv->parsedUri->autoAnswer) < 0 ||
1750
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
1751
        goto cleanup;
1752 1753 1754
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOn) {
1755 1756
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not powered on"));
M
Matthias Bolte 已提交
1757
        goto cleanup;
1758 1759
    }

1760 1761
    if (esxVI_SuspendVM_Task(priv->primary, virtualMachine->obj, &task) < 0 ||
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
1762
                                    esxVI_Occurrence_RequiredItem,
1763
                                    priv->parsedUri->autoAnswer, &taskInfoState,
1764
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
1765
        goto cleanup;
1766 1767 1768
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
1769 1770
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Could not suspend domain: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
1771
        goto cleanup;
1772 1773
    }

M
Matthias Bolte 已提交
1774 1775
    result = 0;

1776 1777 1778 1779
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&task);
1780
    VIR_FREE(taskInfoErrorMessage);
1781 1782 1783 1784 1785 1786 1787 1788 1789

    return result;
}



static int
esxDomainResume(virDomainPtr domain)
{
M
Matthias Bolte 已提交
1790
    int result = -1;
M
Matthias Bolte 已提交
1791
    esxPrivate *priv = domain->conn->privateData;
1792 1793 1794 1795 1796
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
1797
    char *taskInfoErrorMessage = NULL;
1798

1799
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1800
        return -1;
1801 1802
    }

1803
    if (esxVI_String_AppendValueToList(&propertyNameList,
1804
                                       "runtime.powerState") < 0 ||
1805
        esxVI_LookupVirtualMachineByUuidAndPrepareForTask
1806
          (priv->primary, domain->uuid, propertyNameList, &virtualMachine,
1807
           priv->parsedUri->autoAnswer) < 0 ||
1808
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
1809
        goto cleanup;
1810 1811 1812
    }

    if (powerState != esxVI_VirtualMachinePowerState_Suspended) {
1813
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not suspended"));
M
Matthias Bolte 已提交
1814
        goto cleanup;
1815 1816
    }

1817
    if (esxVI_PowerOnVM_Task(priv->primary, virtualMachine->obj, NULL,
1818
                             &task) < 0 ||
1819
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
1820
                                    esxVI_Occurrence_RequiredItem,
1821
                                    priv->parsedUri->autoAnswer, &taskInfoState,
1822
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
1823
        goto cleanup;
1824 1825 1826
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
1827 1828
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Could not resume domain: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
1829
        goto cleanup;
1830 1831
    }

M
Matthias Bolte 已提交
1832 1833
    result = 0;

1834 1835 1836 1837
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&task);
1838
    VIR_FREE(taskInfoErrorMessage);
1839 1840 1841 1842 1843 1844 1845

    return result;
}



static int
1846
esxDomainShutdownFlags(virDomainPtr domain, unsigned int flags)
1847
{
M
Matthias Bolte 已提交
1848
    int result = -1;
M
Matthias Bolte 已提交
1849
    esxPrivate *priv = domain->conn->privateData;
1850 1851 1852 1853
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;

1854 1855
    virCheckFlags(0, -1);

1856
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1857
        return -1;
1858 1859
    }

1860
    if (esxVI_String_AppendValueToList(&propertyNameList,
1861
                                       "runtime.powerState") < 0 ||
1862
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
1863
                                         propertyNameList, &virtualMachine,
M
Matthias Bolte 已提交
1864
                                         esxVI_Occurrence_RequiredItem) < 0 ||
1865
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
1866
        goto cleanup;
1867 1868 1869
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOn) {
1870 1871
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not powered on"));
M
Matthias Bolte 已提交
1872
        goto cleanup;
1873 1874
    }

1875
    if (esxVI_ShutdownGuest(priv->primary, virtualMachine->obj) < 0) {
M
Matthias Bolte 已提交
1876
        goto cleanup;
1877 1878
    }

M
Matthias Bolte 已提交
1879 1880
    result = 0;

1881 1882 1883 1884 1885 1886 1887 1888
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);

    return result;
}


1889 1890 1891 1892 1893 1894
static int
esxDomainShutdown(virDomainPtr domain)
{
    return esxDomainShutdownFlags(domain, 0);
}

1895 1896

static int
E
Eric Blake 已提交
1897
esxDomainReboot(virDomainPtr domain, unsigned int flags)
1898
{
M
Matthias Bolte 已提交
1899
    int result = -1;
M
Matthias Bolte 已提交
1900
    esxPrivate *priv = domain->conn->privateData;
1901 1902 1903 1904
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;

E
Eric Blake 已提交
1905 1906
    virCheckFlags(0, -1);

1907
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
1908
        return -1;
1909 1910
    }

1911
    if (esxVI_String_AppendValueToList(&propertyNameList,
1912
                                       "runtime.powerState") < 0 ||
1913
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
1914
                                         propertyNameList, &virtualMachine,
M
Matthias Bolte 已提交
1915
                                         esxVI_Occurrence_RequiredItem) < 0 ||
1916
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
1917
        goto cleanup;
1918 1919 1920
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOn) {
1921 1922
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not powered on"));
M
Matthias Bolte 已提交
1923
        goto cleanup;
1924 1925
    }

1926
    if (esxVI_RebootGuest(priv->primary, virtualMachine->obj) < 0) {
M
Matthias Bolte 已提交
1927
        goto cleanup;
1928 1929
    }

M
Matthias Bolte 已提交
1930 1931
    result = 0;

1932 1933 1934 1935 1936 1937 1938 1939 1940 1941
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);

    return result;
}



static int
1942 1943
esxDomainDestroyFlags(virDomainPtr domain,
                      unsigned int flags)
1944
{
M
Matthias Bolte 已提交
1945
    int result = -1;
M
Matthias Bolte 已提交
1946
    esxPrivate *priv = domain->conn->privateData;
1947
    esxVI_Context *ctx = NULL;
1948 1949 1950 1951 1952
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
1953
    char *taskInfoErrorMessage = NULL;
1954

1955 1956
    virCheckFlags(0, -1);

1957 1958 1959 1960 1961 1962
    if (priv->vCenter != NULL) {
        ctx = priv->vCenter;
    } else {
        ctx = priv->host;
    }

1963
    if (esxVI_EnsureSession(ctx) < 0) {
M
Matthias Bolte 已提交
1964
        return -1;
1965 1966
    }

1967
    if (esxVI_String_AppendValueToList(&propertyNameList,
1968
                                       "runtime.powerState") < 0 ||
1969
        esxVI_LookupVirtualMachineByUuidAndPrepareForTask
1970
          (ctx, domain->uuid, propertyNameList, &virtualMachine,
1971
           priv->parsedUri->autoAnswer) < 0 ||
1972
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
1973
        goto cleanup;
1974 1975 1976
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOn) {
1977 1978
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not powered on"));
M
Matthias Bolte 已提交
1979
        goto cleanup;
1980 1981
    }

1982
    if (esxVI_PowerOffVM_Task(ctx, virtualMachine->obj, &task) < 0 ||
1983 1984
        esxVI_WaitForTaskCompletion(ctx, task, domain->uuid,
                                    esxVI_Occurrence_RequiredItem,
1985
                                    priv->parsedUri->autoAnswer, &taskInfoState,
1986
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
1987
        goto cleanup;
1988 1989 1990
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
1991 1992
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Could not destroy domain: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
1993
        goto cleanup;
1994 1995
    }

1996
    domain->id = -1;
M
Matthias Bolte 已提交
1997 1998
    result = 0;

1999 2000 2001 2002
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&task);
2003
    VIR_FREE(taskInfoErrorMessage);
2004 2005 2006 2007 2008

    return result;
}


2009 2010 2011 2012 2013 2014
static int
esxDomainDestroy(virDomainPtr dom)
{
    return esxDomainDestroyFlags(dom, 0);
}

2015 2016

static char *
2017
esxDomainGetOSType(virDomainPtr domain ATTRIBUTE_UNUSED)
2018
{
2019 2020 2021
    char *osType = strdup("hvm");

    if (osType == NULL) {
2022
        virReportOOMError();
2023 2024 2025 2026
        return NULL;
    }

    return osType;
2027 2028 2029 2030
}



2031
static unsigned long long
2032 2033
esxDomainGetMaxMemory(virDomainPtr domain)
{
M
Matthias Bolte 已提交
2034
    esxPrivate *priv = domain->conn->privateData;
2035 2036 2037 2038 2039
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    unsigned long memoryMB = 0;

2040
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2041
        return 0;
2042 2043
    }

2044
    if (esxVI_String_AppendValueToList(&propertyNameList,
2045
                                       "config.hardware.memoryMB") < 0 ||
2046
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
2047
                                         propertyNameList, &virtualMachine,
M
Matthias Bolte 已提交
2048
                                         esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
2049
        goto cleanup;
2050 2051 2052 2053 2054
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "config.hardware.memoryMB")) {
2055
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2056
                                         esxVI_Type_Int) < 0) {
M
Matthias Bolte 已提交
2057
                goto cleanup;
2058 2059 2060
            }

            if (dynamicProperty->val->int32 < 0) {
2061 2062 2063
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Got invalid memory size %d"),
                               dynamicProperty->val->int32);
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085
            } else {
                memoryMB = dynamicProperty->val->int32;
            }

            break;
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);

    return memoryMB * 1024; /* Scale from megabyte to kilobyte */
}



static int
esxDomainSetMaxMemory(virDomainPtr domain, unsigned long memory)
{
M
Matthias Bolte 已提交
2086
    int result = -1;
M
Matthias Bolte 已提交
2087
    esxPrivate *priv = domain->conn->privateData;
2088
    esxVI_String *propertyNameList = NULL;
2089
    esxVI_ObjectContent *virtualMachine = NULL;
2090
    esxVI_VirtualMachinePowerState powerState;
2091 2092 2093
    esxVI_VirtualMachineConfigSpec *spec = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
2094
    char *taskInfoErrorMessage = NULL;
2095

2096
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2097
        return -1;
2098 2099
    }

2100 2101 2102 2103
    if (esxVI_String_AppendValueToList(&propertyNameList,
                                       "runtime.powerState") < 0 ||
        esxVI_LookupVirtualMachineByUuidAndPrepareForTask
          (priv->primary, domain->uuid, propertyNameList, &virtualMachine,
2104
           priv->parsedUri->autoAnswer) < 0 ||
2105 2106 2107 2108 2109
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
        goto cleanup;
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
2110 2111
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not powered off"));
2112 2113 2114 2115
        goto cleanup;
    }

    if (esxVI_VirtualMachineConfigSpec_Alloc(&spec) < 0 ||
2116
        esxVI_Long_Alloc(&spec->memoryMB) < 0) {
M
Matthias Bolte 已提交
2117
        goto cleanup;
2118 2119
    }

2120
    /* max-memory must be a multiple of 4096 kilobyte */
2121
    spec->memoryMB->value =
2122
      VIR_DIV_UP(memory, 4096) * 4; /* Scale from kilobytes to megabytes */
2123

2124
    if (esxVI_ReconfigVM_Task(priv->primary, virtualMachine->obj, spec,
2125
                              &task) < 0 ||
2126
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
2127
                                    esxVI_Occurrence_RequiredItem,
2128
                                    priv->parsedUri->autoAnswer, &taskInfoState,
2129
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
2130
        goto cleanup;
2131 2132 2133
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
2134 2135 2136
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not set max-memory to %lu kilobytes: %s"), memory,
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
2137
        goto cleanup;
2138 2139
    }

M
Matthias Bolte 已提交
2140 2141
    result = 0;

2142
  cleanup:
2143
    esxVI_String_Free(&propertyNameList);
2144 2145 2146
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_VirtualMachineConfigSpec_Free(&spec);
    esxVI_ManagedObjectReference_Free(&task);
2147
    VIR_FREE(taskInfoErrorMessage);
2148 2149 2150 2151 2152 2153 2154 2155 2156

    return result;
}



static int
esxDomainSetMemory(virDomainPtr domain, unsigned long memory)
{
M
Matthias Bolte 已提交
2157
    int result = -1;
M
Matthias Bolte 已提交
2158
    esxPrivate *priv = domain->conn->privateData;
2159 2160 2161 2162
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachineConfigSpec *spec = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
2163
    char *taskInfoErrorMessage = NULL;
2164

2165
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2166
        return -1;
2167 2168
    }

2169
    if (esxVI_LookupVirtualMachineByUuidAndPrepareForTask
2170
          (priv->primary, domain->uuid, NULL, &virtualMachine,
2171
           priv->parsedUri->autoAnswer) < 0 ||
2172 2173 2174
        esxVI_VirtualMachineConfigSpec_Alloc(&spec) < 0 ||
        esxVI_ResourceAllocationInfo_Alloc(&spec->memoryAllocation) < 0 ||
        esxVI_Long_Alloc(&spec->memoryAllocation->limit) < 0) {
M
Matthias Bolte 已提交
2175
        goto cleanup;
2176 2177 2178
    }

    spec->memoryAllocation->limit->value =
2179
      VIR_DIV_UP(memory, 1024); /* Scale from kilobytes to megabytes */
2180

2181
    if (esxVI_ReconfigVM_Task(priv->primary, virtualMachine->obj, spec,
2182
                              &task) < 0 ||
2183
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
2184
                                    esxVI_Occurrence_RequiredItem,
2185
                                    priv->parsedUri->autoAnswer, &taskInfoState,
2186
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
2187
        goto cleanup;
2188 2189 2190
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
2191 2192 2193
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not set memory to %lu kilobytes: %s"), memory,
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
2194
        goto cleanup;
2195 2196
    }

M
Matthias Bolte 已提交
2197 2198
    result = 0;

2199 2200 2201 2202
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_VirtualMachineConfigSpec_Free(&spec);
    esxVI_ManagedObjectReference_Free(&task);
2203
    VIR_FREE(taskInfoErrorMessage);
2204 2205 2206 2207 2208 2209

    return result;
}



2210 2211 2212 2213 2214 2215 2216 2217 2218
/*
 * libvirt exposed virtual CPU usage in absolute time, ESX doesn't provide this
 * information in this format. It exposes it in 20 seconds slots, but it's hard
 * to get a reliable absolute time from this. Therefore, disable the code that
 * queries the performance counters here for now, but keep it as example for how
 * to query a selected performance counter for its values.
 */
#define ESX_QUERY_FOR_USED_CPU_TIME 0

2219 2220 2221
static int
esxDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
{
M
Matthias Bolte 已提交
2222
    int result = -1;
M
Matthias Bolte 已提交
2223
    esxPrivate *priv = domain->conn->privateData;
2224 2225 2226 2227 2228
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_VirtualMachinePowerState powerState;
    int64_t memory_limit = -1;
2229
#if ESX_QUERY_FOR_USED_CPU_TIME
2230 2231 2232 2233 2234 2235 2236
    esxVI_PerfMetricId *perfMetricId = NULL;
    esxVI_PerfMetricId *perfMetricIdList = NULL;
    esxVI_Int *counterId = NULL;
    esxVI_Int *counterIdList = NULL;
    esxVI_PerfCounterInfo *perfCounterInfo = NULL;
    esxVI_PerfCounterInfo *perfCounterInfoList = NULL;
    esxVI_PerfQuerySpec *querySpec = NULL;
2237 2238
    esxVI_PerfEntityMetricBase *perfEntityMetricBase = NULL;
    esxVI_PerfEntityMetricBase *perfEntityMetricBaseList = NULL;
2239 2240 2241
    esxVI_PerfEntityMetric *perfEntityMetric = NULL;
    esxVI_PerfMetricIntSeries *perfMetricIntSeries = NULL;
    esxVI_Long *value = NULL;
2242
#endif
2243

2244
    memset(info, 0, sizeof(*info));
M
Matthias Bolte 已提交
2245

2246
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2247
        return -1;
2248 2249
    }

2250
    if (esxVI_String_AppendValueListToList(&propertyNameList,
2251 2252 2253 2254
                                           "runtime.powerState\0"
                                           "config.hardware.memoryMB\0"
                                           "config.hardware.numCPU\0"
                                           "config.memoryAllocation.limit\0") < 0 ||
2255
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
2256
                                         propertyNameList, &virtualMachine,
M
Matthias Bolte 已提交
2257
                                         esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
2258
        goto cleanup;
2259 2260 2261 2262 2263 2264 2265 2266
    }

    info->state = VIR_DOMAIN_NOSTATE;

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "runtime.powerState")) {
            if (esxVI_VirtualMachinePowerState_CastFromAnyType
2267
                  (dynamicProperty->val, &powerState) < 0) {
M
Matthias Bolte 已提交
2268
                goto cleanup;
2269 2270
            }

2271 2272
            info->state = esxVI_VirtualMachinePowerState_ConvertToLibvirt
                            (powerState);
2273
        } else if (STREQ(dynamicProperty->name, "config.hardware.memoryMB")) {
2274
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2275
                                         esxVI_Type_Int) < 0) {
M
Matthias Bolte 已提交
2276
                goto cleanup;
2277 2278 2279 2280
            }

            info->maxMem = dynamicProperty->val->int32 * 1024; /* Scale from megabyte to kilobyte */
        } else if (STREQ(dynamicProperty->name, "config.hardware.numCPU")) {
2281
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2282
                                         esxVI_Type_Int) < 0) {
M
Matthias Bolte 已提交
2283
                goto cleanup;
2284 2285 2286 2287 2288
            }

            info->nrVirtCpu = dynamicProperty->val->int32;
        } else if (STREQ(dynamicProperty->name,
                         "config.memoryAllocation.limit")) {
2289
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2290
                                         esxVI_Type_Long) < 0) {
M
Matthias Bolte 已提交
2291
                goto cleanup;
2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306
            }

            memory_limit = dynamicProperty->val->int64;

            if (memory_limit > 0) {
                memory_limit *= 1024; /* Scale from megabyte to kilobyte */
            }
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    /* memory_limit < 0 means no memory limit is set */
    info->memory = memory_limit < 0 ? info->maxMem : memory_limit;

2307
#if ESX_QUERY_FOR_USED_CPU_TIME
2308
    /* Verify the cached 'used CPU time' performance counter ID */
2309 2310 2311 2312 2313 2314
    /* FIXME: Currently no host for a vpx:// connection */
    if (priv->host != NULL) {
        if (info->state == VIR_DOMAIN_RUNNING && priv->usedCpuTimeCounterId >= 0) {
            if (esxVI_Int_Alloc(&counterId) < 0) {
                goto cleanup;
            }
2315

2316
            counterId->value = priv->usedCpuTimeCounterId;
2317

2318 2319 2320
            if (esxVI_Int_AppendToList(&counterIdList, counterId) < 0) {
                goto cleanup;
            }
2321

2322 2323 2324 2325
            if (esxVI_QueryPerfCounter(priv->host, counterIdList,
                                       &perfCounterInfo) < 0) {
                goto cleanup;
            }
2326

2327 2328 2329 2330 2331
            if (STRNEQ(perfCounterInfo->groupInfo->key, "cpu") ||
                STRNEQ(perfCounterInfo->nameInfo->key, "used") ||
                STRNEQ(perfCounterInfo->unitInfo->key, "millisecond")) {
                VIR_DEBUG("Cached usedCpuTimeCounterId %d is invalid",
                          priv->usedCpuTimeCounterId);
2332

2333 2334 2335 2336 2337
                priv->usedCpuTimeCounterId = -1;
            }

            esxVI_Int_Free(&counterIdList);
            esxVI_PerfCounterInfo_Free(&perfCounterInfo);
2338 2339
        }

2340 2341 2342 2343 2344 2345 2346 2347 2348 2349
        /*
         * Query the PerformanceManager for the 'used CPU time' performance
         * counter ID and cache it, if it's not already cached.
         */
        if (info->state == VIR_DOMAIN_RUNNING && priv->usedCpuTimeCounterId < 0) {
            if (esxVI_QueryAvailablePerfMetric(priv->host, virtualMachine->obj,
                                               NULL, NULL, NULL,
                                               &perfMetricIdList) < 0) {
                goto cleanup;
            }
2350

2351 2352 2353 2354
            for (perfMetricId = perfMetricIdList; perfMetricId != NULL;
                 perfMetricId = perfMetricId->_next) {
                VIR_DEBUG("perfMetricId counterId %d, instance '%s'",
                          perfMetricId->counterId->value, perfMetricId->instance);
2355

2356
                counterId = NULL;
2357

2358 2359 2360 2361 2362
                if (esxVI_Int_DeepCopy(&counterId, perfMetricId->counterId) < 0 ||
                    esxVI_Int_AppendToList(&counterIdList, counterId) < 0) {
                    goto cleanup;
                }
            }
2363

2364 2365
            if (esxVI_QueryPerfCounter(priv->host, counterIdList,
                                       &perfCounterInfoList) < 0) {
M
Matthias Bolte 已提交
2366
                goto cleanup;
2367 2368
            }

2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385
            for (perfCounterInfo = perfCounterInfoList; perfCounterInfo != NULL;
                 perfCounterInfo = perfCounterInfo->_next) {
                VIR_DEBUG("perfCounterInfo key %d, nameInfo '%s', groupInfo '%s', "
                          "unitInfo '%s', rollupType %d, statsType %d",
                          perfCounterInfo->key->value,
                          perfCounterInfo->nameInfo->key,
                          perfCounterInfo->groupInfo->key,
                          perfCounterInfo->unitInfo->key,
                          perfCounterInfo->rollupType,
                          perfCounterInfo->statsType);

                if (STREQ(perfCounterInfo->groupInfo->key, "cpu") &&
                    STREQ(perfCounterInfo->nameInfo->key, "used") &&
                    STREQ(perfCounterInfo->unitInfo->key, "millisecond")) {
                    priv->usedCpuTimeCounterId = perfCounterInfo->key->value;
                    break;
                }
2386 2387
            }

2388
            if (priv->usedCpuTimeCounterId < 0) {
2389
                VIR_WARN("Could not find 'used CPU time' performance counter");
2390
            }
2391 2392
        }

2393 2394 2395 2396 2397 2398
        /*
         * Query the PerformanceManager for the 'used CPU time' performance
         * counter value.
         */
        if (info->state == VIR_DOMAIN_RUNNING && priv->usedCpuTimeCounterId >= 0) {
            VIR_DEBUG("usedCpuTimeCounterId %d BEGIN", priv->usedCpuTimeCounterId);
2399

2400 2401 2402 2403 2404 2405
            if (esxVI_PerfQuerySpec_Alloc(&querySpec) < 0 ||
                esxVI_Int_Alloc(&querySpec->maxSample) < 0 ||
                esxVI_PerfMetricId_Alloc(&querySpec->metricId) < 0 ||
                esxVI_Int_Alloc(&querySpec->metricId->counterId) < 0) {
                goto cleanup;
            }
2406

2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
            querySpec->entity = virtualMachine->obj;
            querySpec->maxSample->value = 1;
            querySpec->metricId->counterId->value = priv->usedCpuTimeCounterId;
            querySpec->metricId->instance = (char *)"";
            querySpec->format = (char *)"normal";

            if (esxVI_QueryPerf(priv->host, querySpec,
                                &perfEntityMetricBaseList) < 0) {
                goto cleanup;
            }
2417

2418 2419 2420
            for (perfEntityMetricBase = perfEntityMetricBaseList;
                 perfEntityMetricBase != NULL;
                 perfEntityMetricBase = perfEntityMetricBase->_next) {
2421
                VIR_DEBUG("perfEntityMetric ...");
2422

2423 2424
                perfEntityMetric =
                  esxVI_PerfEntityMetric_DynamicCast(perfEntityMetricBase);
2425

2426
                if (perfEntityMetric == NULL) {
2427 2428 2429
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("QueryPerf returned object with unexpected type '%s'"),
                                   esxVI_Type_ToString(perfEntityMetricBase->_type));
2430
                    goto cleanup;
2431
                }
2432

2433 2434
                perfMetricIntSeries =
                  esxVI_PerfMetricIntSeries_DynamicCast(perfEntityMetric->value);
2435

2436
                if (perfMetricIntSeries == NULL) {
2437 2438 2439
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("QueryPerf returned object with unexpected type '%s'"),
                                   esxVI_Type_ToString(perfEntityMetric->value->_type));
2440
                    goto cleanup;
2441
                }
2442

2443 2444
                for (; perfMetricIntSeries != NULL;
                     perfMetricIntSeries = perfMetricIntSeries->_next) {
2445
                    VIR_DEBUG("perfMetricIntSeries ...");
2446

2447 2448 2449 2450 2451
                    for (value = perfMetricIntSeries->value;
                         value != NULL;
                         value = value->_next) {
                        VIR_DEBUG("value %lld", (long long int)value->value);
                    }
2452 2453 2454
                }
            }

2455
            VIR_DEBUG("usedCpuTimeCounterId %d END", priv->usedCpuTimeCounterId);
M
Matthias Bolte 已提交
2456

2457
            /*
E
Eric Blake 已提交
2458
             * FIXME: Cannot map between relative used-cpu-time and absolute
2459 2460 2461
             *        info->cpuTime
             */
        }
2462
    }
2463
#endif
2464

M
Matthias Bolte 已提交
2465 2466
    result = 0;

2467
  cleanup:
2468
#if ESX_QUERY_FOR_USED_CPU_TIME
2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480
    /*
     * Remove values owned by data structures to prevent them from being freed
     * by the call to esxVI_PerfQuerySpec_Free().
     */
    if (querySpec != NULL) {
        querySpec->entity = NULL;
        querySpec->format = NULL;

        if (querySpec->metricId != NULL) {
            querySpec->metricId->instance = NULL;
        }
    }
2481
#endif
2482

2483 2484
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);
2485
#if ESX_QUERY_FOR_USED_CPU_TIME
2486 2487 2488 2489
    esxVI_PerfMetricId_Free(&perfMetricIdList);
    esxVI_Int_Free(&counterIdList);
    esxVI_PerfCounterInfo_Free(&perfCounterInfoList);
    esxVI_PerfQuerySpec_Free(&querySpec);
2490
    esxVI_PerfEntityMetricBase_Free(&perfEntityMetricBaseList);
2491
#endif
2492 2493 2494 2495 2496 2497

    return result;
}



2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540
static int
esxDomainGetState(virDomainPtr domain,
                  int *state,
                  int *reason,
                  unsigned int flags)
{
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachinePowerState powerState;

    virCheckFlags(0, -1);

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    if (esxVI_String_AppendValueToList(&propertyNameList,
                                       "runtime.powerState") < 0 ||
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
                                         propertyNameList, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0 ||
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
        goto cleanup;
    }

    *state = esxVI_VirtualMachinePowerState_ConvertToLibvirt(powerState);

    if (reason)
        *reason = 0;

    result = 0;

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);

    return result;
}



2541
static int
2542 2543
esxDomainSetVcpusFlags(virDomainPtr domain, unsigned int nvcpus,
                       unsigned int flags)
2544
{
M
Matthias Bolte 已提交
2545
    int result = -1;
M
Matthias Bolte 已提交
2546
    esxPrivate *priv = domain->conn->privateData;
M
Matthias Bolte 已提交
2547
    int maxVcpus;
2548 2549 2550 2551
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachineConfigSpec *spec = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
2552
    char *taskInfoErrorMessage = NULL;
2553

2554
    if (flags != VIR_DOMAIN_AFFECT_LIVE) {
2555
        virReportError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"), flags);
2556 2557 2558
        return -1;
    }

2559
    if (nvcpus < 1) {
2560 2561
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Requested number of virtual CPUs must at least be 1"));
M
Matthias Bolte 已提交
2562
        return -1;
2563 2564
    }

2565
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2566
        return -1;
2567 2568
    }

M
Matthias Bolte 已提交
2569
    maxVcpus = esxDomainGetMaxVcpus(domain);
2570

M
Matthias Bolte 已提交
2571
    if (maxVcpus < 0) {
M
Matthias Bolte 已提交
2572
        return -1;
2573 2574
    }

M
Matthias Bolte 已提交
2575
    if (nvcpus > maxVcpus) {
2576 2577 2578 2579
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Requested number of virtual CPUs is greater than max "
                         "allowable number of virtual CPUs for the domain: %d > %d"),
                       nvcpus, maxVcpus);
M
Matthias Bolte 已提交
2580
        return -1;
2581 2582
    }

2583
    if (esxVI_LookupVirtualMachineByUuidAndPrepareForTask
2584
          (priv->primary, domain->uuid, NULL, &virtualMachine,
2585
           priv->parsedUri->autoAnswer) < 0 ||
2586 2587
        esxVI_VirtualMachineConfigSpec_Alloc(&spec) < 0 ||
        esxVI_Int_Alloc(&spec->numCPUs) < 0) {
M
Matthias Bolte 已提交
2588
        goto cleanup;
2589 2590 2591 2592
    }

    spec->numCPUs->value = nvcpus;

2593
    if (esxVI_ReconfigVM_Task(priv->primary, virtualMachine->obj, spec,
2594
                              &task) < 0 ||
2595
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
2596
                                    esxVI_Occurrence_RequiredItem,
2597
                                    priv->parsedUri->autoAnswer, &taskInfoState,
2598
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
2599
        goto cleanup;
2600 2601 2602
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
2603 2604 2605
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not set number of virtual CPUs to %d: %s"), nvcpus,
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
2606
        goto cleanup;
2607 2608
    }

M
Matthias Bolte 已提交
2609 2610
    result = 0;

2611 2612 2613 2614
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_VirtualMachineConfigSpec_Free(&spec);
    esxVI_ManagedObjectReference_Free(&task);
2615
    VIR_FREE(taskInfoErrorMessage);
2616 2617 2618 2619 2620

    return result;
}


M
Matthias Bolte 已提交
2621

2622 2623 2624
static int
esxDomainSetVcpus(virDomainPtr domain, unsigned int nvcpus)
{
2625
    return esxDomainSetVcpusFlags(domain, nvcpus, VIR_DOMAIN_AFFECT_LIVE);
2626 2627
}

2628

M
Matthias Bolte 已提交
2629

2630
static int
2631
esxDomainGetVcpusFlags(virDomainPtr domain, unsigned int flags)
2632
{
M
Matthias Bolte 已提交
2633
    esxPrivate *priv = domain->conn->privateData;
2634 2635 2636 2637
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;

2638
    if (flags != (VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_VCPU_MAXIMUM)) {
2639
        virReportError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"), flags);
2640 2641 2642
        return -1;
    }

M
Matthias Bolte 已提交
2643 2644
    if (priv->maxVcpus > 0) {
        return priv->maxVcpus;
2645 2646
    }

M
Matthias Bolte 已提交
2647 2648
    priv->maxVcpus = -1;

2649
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2650
        return -1;
2651 2652
    }

2653
    if (esxVI_String_AppendValueToList(&propertyNameList,
2654
                                       "capability.maxSupportedVcpus") < 0 ||
2655 2656
        esxVI_LookupHostSystemProperties(priv->primary, propertyNameList,
                                         &hostSystem) < 0) {
M
Matthias Bolte 已提交
2657
        goto cleanup;
2658 2659 2660 2661 2662
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "capability.maxSupportedVcpus")) {
2663
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2664
                                         esxVI_Type_Int) < 0) {
M
Matthias Bolte 已提交
2665
                goto cleanup;
2666 2667
            }

M
Matthias Bolte 已提交
2668
            priv->maxVcpus = dynamicProperty->val->int32;
2669 2670 2671 2672 2673 2674 2675 2676 2677 2678
            break;
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);

M
Matthias Bolte 已提交
2679
    return priv->maxVcpus;
2680 2681
}

M
Matthias Bolte 已提交
2682 2683


2684 2685 2686
static int
esxDomainGetMaxVcpus(virDomainPtr domain)
{
2687
    return esxDomainGetVcpusFlags(domain, (VIR_DOMAIN_AFFECT_LIVE |
2688 2689
                                           VIR_DOMAIN_VCPU_MAXIMUM));
}
2690

M
Matthias Bolte 已提交
2691 2692


2693
static char *
2694
esxDomainGetXMLDesc(virDomainPtr domain, unsigned int flags)
2695
{
M
Matthias Bolte 已提交
2696
    esxPrivate *priv = domain->conn->privateData;
2697 2698
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
2699 2700
    esxVI_VirtualMachinePowerState powerState;
    int id;
2701
    char *vmPathName = NULL;
2702
    char *datastoreName = NULL;
M
Matthias Bolte 已提交
2703
    char *directoryName = NULL;
2704
    char *directoryAndFileName = NULL;
2705
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
2706 2707
    char *url = NULL;
    char *vmx = NULL;
2708
    virVMXContext ctx;
2709
    esxVMX_Data data;
2710 2711 2712
    virDomainDefPtr def = NULL;
    char *xml = NULL;

E
Eric Blake 已提交
2713 2714
    /* Flags checked by virDomainDefFormat */

2715
    memset(&data, 0, sizeof(data));
2716

2717
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2718
        return NULL;
2719 2720
    }

2721 2722 2723
    if (esxVI_String_AppendValueListToList(&propertyNameList,
                                           "config.files.vmPathName\0"
                                           "runtime.powerState\0") < 0 ||
2724
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
2725
                                         propertyNameList, &virtualMachine,
2726
                                         esxVI_Occurrence_RequiredItem) < 0 ||
2727 2728
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0 ||
        esxVI_GetVirtualMachineIdentity(virtualMachine, &id, NULL, NULL) < 0 ||
2729 2730
        esxVI_GetStringValue(virtualMachine, "config.files.vmPathName",
                             &vmPathName, esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
2731
        goto cleanup;
2732 2733
    }

2734
    if (esxUtil_ParseDatastorePath(vmPathName, &datastoreName, &directoryName,
2735
                                   &directoryAndFileName) < 0) {
M
Matthias Bolte 已提交
2736
        goto cleanup;
2737 2738
    }

2739
    virBufferAsprintf(&buffer, "%s://%s:%d/folder/", priv->parsedUri->transport,
2740
                      domain->conn->uri->server, domain->conn->uri->port);
2741
    virBufferURIEncodeString(&buffer, directoryAndFileName);
2742
    virBufferAddLit(&buffer, "?dcPath=");
2743
    virBufferURIEncodeString(&buffer, priv->primary->datacenterPath);
2744 2745 2746 2747
    virBufferAddLit(&buffer, "&dsName=");
    virBufferURIEncodeString(&buffer, datastoreName);

    if (virBufferError(&buffer)) {
2748
        virReportOOMError();
M
Matthias Bolte 已提交
2749
        goto cleanup;
2750 2751
    }

2752 2753
    url = virBufferContentAndReset(&buffer);

2754
    if (esxVI_CURL_Download(priv->primary->curl, url, &vmx, 0, NULL) < 0) {
M
Matthias Bolte 已提交
2755
        goto cleanup;
2756 2757
    }

2758
    data.ctx = priv->primary;
2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772

    if (directoryName == NULL) {
        if (virAsprintf(&data.datastorePathWithoutFileName, "[%s]",
                        datastoreName) < 0) {
            virReportOOMError();
            goto cleanup;
        }
    } else {
        if (virAsprintf(&data.datastorePathWithoutFileName, "[%s] %s",
                        datastoreName, directoryName) < 0) {
            virReportOOMError();
            goto cleanup;
        }
    }
2773 2774 2775 2776 2777 2778

    ctx.opaque = &data;
    ctx.parseFileName = esxParseVMXFileName;
    ctx.formatFileName = NULL;
    ctx.autodetectSCSIControllerModel = NULL;

2779
    def = virVMXParseConfig(&ctx, priv->xmlopt, vmx);
2780 2781

    if (def != NULL) {
2782 2783 2784 2785
        if (powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
            def->id = id;
        }

2786
        xml = virDomainDefFormat(def, flags);
2787 2788 2789
    }

  cleanup:
M
Matthias Bolte 已提交
2790 2791 2792 2793
    if (url == NULL) {
        virBufferFreeAndReset(&buffer);
    }

2794 2795
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);
2796
    VIR_FREE(datastoreName);
M
Matthias Bolte 已提交
2797
    VIR_FREE(directoryName);
2798
    VIR_FREE(directoryAndFileName);
2799
    VIR_FREE(url);
2800
    VIR_FREE(data.datastorePathWithoutFileName);
2801
    VIR_FREE(vmx);
2802
    virDomainDefFree(def);
2803 2804 2805 2806 2807 2808 2809

    return xml;
}



static char *
2810 2811 2812
esxConnectDomainXMLFromNative(virConnectPtr conn, const char *nativeFormat,
                              const char *nativeConfig,
                              unsigned int flags)
2813
{
M
Matthias Bolte 已提交
2814
    esxPrivate *priv = conn->privateData;
2815
    virVMXContext ctx;
2816
    esxVMX_Data data;
2817 2818 2819
    virDomainDefPtr def = NULL;
    char *xml = NULL;

E
Eric Blake 已提交
2820 2821
    virCheckFlags(0, NULL);

2822
    memset(&data, 0, sizeof(data));
2823

2824
    if (STRNEQ(nativeFormat, "vmware-vmx")) {
2825 2826
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Unsupported config format '%s'"), nativeFormat);
2827
        return NULL;
2828 2829
    }

2830
    data.ctx = priv->primary;
2831
    data.datastorePathWithoutFileName = (char *)"[?] ?";
2832 2833 2834 2835 2836 2837

    ctx.opaque = &data;
    ctx.parseFileName = esxParseVMXFileName;
    ctx.formatFileName = NULL;
    ctx.autodetectSCSIControllerModel = NULL;

2838
    def = virVMXParseConfig(&ctx, priv->xmlopt, nativeConfig);
2839 2840

    if (def != NULL) {
2841
        xml = virDomainDefFormat(def, VIR_DOMAIN_XML_INACTIVE);
2842 2843 2844 2845 2846 2847 2848 2849 2850
    }

    virDomainDefFree(def);

    return xml;
}



M
Matthias Bolte 已提交
2851
static char *
2852 2853 2854
esxConnectDomainXMLToNative(virConnectPtr conn, const char *nativeFormat,
                            const char *domainXml,
                            unsigned int flags)
M
Matthias Bolte 已提交
2855
{
M
Matthias Bolte 已提交
2856
    esxPrivate *priv = conn->privateData;
2857 2858
    int virtualHW_version;
    virVMXContext ctx;
2859
    esxVMX_Data data;
M
Matthias Bolte 已提交
2860 2861 2862
    virDomainDefPtr def = NULL;
    char *vmx = NULL;

E
Eric Blake 已提交
2863 2864
    virCheckFlags(0, NULL);

2865
    memset(&data, 0, sizeof(data));
2866

M
Matthias Bolte 已提交
2867
    if (STRNEQ(nativeFormat, "vmware-vmx")) {
2868 2869
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Unsupported config format '%s'"), nativeFormat);
M
Matthias Bolte 已提交
2870 2871 2872
        return NULL;
    }

2873 2874 2875 2876 2877 2878 2879
    virtualHW_version = esxVI_ProductVersionToDefaultVirtualHWVersion
                          (priv->primary->productVersion);

    if (virtualHW_version < 0) {
        return NULL;
    }

2880 2881
    def = virDomainDefParseString(domainXml, priv->caps, priv->xmlopt,
                                  1 << VIR_DOMAIN_VIRT_VMWARE, 0);
M
Matthias Bolte 已提交
2882 2883 2884 2885 2886

    if (def == NULL) {
        return NULL;
    }

2887
    data.ctx = priv->primary;
2888
    data.datastorePathWithoutFileName = NULL;
2889 2890 2891 2892 2893 2894

    ctx.opaque = &data;
    ctx.parseFileName = NULL;
    ctx.formatFileName = esxFormatVMXFileName;
    ctx.autodetectSCSIControllerModel = esxAutodetectSCSIControllerModel;

2895
    vmx = virVMXFormatConfig(&ctx, priv->xmlopt, def, virtualHW_version);
M
Matthias Bolte 已提交
2896 2897 2898 2899 2900 2901 2902 2903

    virDomainDefFree(def);

    return vmx;
}



2904
static int
2905
esxConnectListDefinedDomains(virConnectPtr conn, char **const names, int maxnames)
2906
{
M
Matthias Bolte 已提交
2907
    bool success = false;
M
Matthias Bolte 已提交
2908
    esxPrivate *priv = conn->privateData;
2909 2910 2911 2912 2913
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachinePowerState powerState;
    int count = 0;
2914
    int i;
2915 2916 2917 2918 2919

    if (maxnames == 0) {
        return 0;
    }

2920
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
2921
        return -1;
2922 2923
    }

2924
    if (esxVI_String_AppendValueListToList(&propertyNameList,
2925 2926
                                           "name\0"
                                           "runtime.powerState\0") < 0 ||
2927 2928
        esxVI_LookupVirtualMachineList(priv->primary, propertyNameList,
                                       &virtualMachineList) < 0) {
M
Matthias Bolte 已提交
2929
        goto cleanup;
2930 2931 2932 2933
    }

    for (virtualMachine = virtualMachineList; virtualMachine != NULL;
         virtualMachine = virtualMachine->_next) {
2934
        if (esxVI_GetVirtualMachinePowerState(virtualMachine,
2935
                                              &powerState) < 0) {
M
Matthias Bolte 已提交
2936
            goto cleanup;
2937 2938 2939 2940 2941 2942
        }

        if (powerState == esxVI_VirtualMachinePowerState_PoweredOn) {
            continue;
        }

2943
        names[count] = NULL;
2944

2945 2946 2947
        if (esxVI_GetVirtualMachineIdentity(virtualMachine, NULL, &names[count],
                                            NULL) < 0) {
            goto cleanup;
2948 2949
        }

2950 2951
        ++count;

2952 2953 2954 2955 2956
        if (count >= maxnames) {
            break;
        }
    }

M
Matthias Bolte 已提交
2957
    success = true;
2958

M
Matthias Bolte 已提交
2959 2960 2961 2962 2963
  cleanup:
    if (! success) {
        for (i = 0; i < count; ++i) {
            VIR_FREE(names[i]);
        }
2964

M
Matthias Bolte 已提交
2965
        count = -1;
2966 2967
    }

M
Matthias Bolte 已提交
2968 2969
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);
2970

M
Matthias Bolte 已提交
2971
    return count;
2972 2973 2974 2975 2976
}



static int
2977
esxConnectNumOfDefinedDomains(virConnectPtr conn)
2978
{
M
Matthias Bolte 已提交
2979
    esxPrivate *priv = conn->privateData;
2980

2981
    if (esxVI_EnsureSession(priv->primary) < 0) {
2982 2983 2984
        return -1;
    }

2985
    return esxVI_LookupNumberOfDomainsByPowerState
2986
             (priv->primary, esxVI_VirtualMachinePowerState_PoweredOn, true);
2987 2988 2989 2990 2991
}



static int
2992
esxDomainCreateWithFlags(virDomainPtr domain, unsigned int flags)
2993
{
M
Matthias Bolte 已提交
2994
    int result = -1;
M
Matthias Bolte 已提交
2995
    esxPrivate *priv = domain->conn->privateData;
2996 2997 2998
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;
2999
    int id = -1;
3000 3001
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
3002
    char *taskInfoErrorMessage = NULL;
3003

3004 3005
    virCheckFlags(0, -1);

3006
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
3007
        return -1;
3008 3009
    }

3010
    if (esxVI_String_AppendValueToList(&propertyNameList,
3011
                                       "runtime.powerState") < 0 ||
3012
        esxVI_LookupVirtualMachineByUuidAndPrepareForTask
3013
          (priv->primary, domain->uuid, propertyNameList, &virtualMachine,
3014
           priv->parsedUri->autoAnswer) < 0 ||
3015 3016
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0 ||
        esxVI_GetVirtualMachineIdentity(virtualMachine, &id, NULL, NULL) < 0) {
M
Matthias Bolte 已提交
3017
        goto cleanup;
3018 3019 3020
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
3021 3022
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not powered off"));
M
Matthias Bolte 已提交
3023
        goto cleanup;
3024 3025
    }

3026
    if (esxVI_PowerOnVM_Task(priv->primary, virtualMachine->obj, NULL,
3027
                             &task) < 0 ||
3028
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
3029
                                    esxVI_Occurrence_RequiredItem,
3030
                                    priv->parsedUri->autoAnswer, &taskInfoState,
3031
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
3032
        goto cleanup;
3033 3034 3035
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
3036 3037
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Could not start domain: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
3038
        goto cleanup;
3039 3040
    }

3041
    domain->id = id;
M
Matthias Bolte 已提交
3042 3043
    result = 0;

3044 3045 3046 3047
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&task);
3048
    VIR_FREE(taskInfoErrorMessage);
3049 3050 3051 3052

    return result;
}

3053 3054


3055 3056 3057 3058 3059
static int
esxDomainCreate(virDomainPtr domain)
{
    return esxDomainCreateWithFlags(domain, 0);
}
3060

3061 3062


M
Matthias Bolte 已提交
3063
static virDomainPtr
3064
esxDomainDefineXML(virConnectPtr conn, const char *xml)
M
Matthias Bolte 已提交
3065
{
M
Matthias Bolte 已提交
3066
    esxPrivate *priv = conn->privateData;
M
Matthias Bolte 已提交
3067 3068
    virDomainDefPtr def = NULL;
    char *vmx = NULL;
3069 3070
    int i;
    virDomainDiskDefPtr disk = NULL;
M
Matthias Bolte 已提交
3071
    esxVI_ObjectContent *virtualMachine = NULL;
3072 3073
    int virtualHW_version;
    virVMXContext ctx;
3074
    esxVMX_Data data;
M
Matthias Bolte 已提交
3075 3076
    char *datastoreName = NULL;
    char *directoryName = NULL;
3077
    char *escapedName = NULL;
M
Matthias Bolte 已提交
3078 3079 3080 3081 3082 3083 3084 3085
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    char *url = NULL;
    char *datastoreRelatedPath = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *hostSystem = NULL;
    esxVI_ManagedObjectReference *resourcePool = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
3086
    char *taskInfoErrorMessage = NULL;
M
Matthias Bolte 已提交
3087 3088
    virDomainPtr domain = NULL;

3089
    memset(&data, 0, sizeof(data));
3090

3091
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
3092
        return NULL;
M
Matthias Bolte 已提交
3093 3094 3095
    }

    /* Parse domain XML */
3096 3097
    def = virDomainDefParseString(xml, priv->caps, priv->xmlopt,
                                  1 << VIR_DOMAIN_VIRT_VMWARE,
M
Matthias Bolte 已提交
3098 3099 3100
                                  VIR_DOMAIN_XML_INACTIVE);

    if (def == NULL) {
M
Matthias Bolte 已提交
3101
        return NULL;
M
Matthias Bolte 已提交
3102 3103 3104
    }

    /* Check if an existing domain should be edited */
3105
    if (esxVI_LookupVirtualMachineByUuid(priv->primary, def->uuid, NULL,
M
Matthias Bolte 已提交
3106
                                         &virtualMachine,
M
Matthias Bolte 已提交
3107
                                         esxVI_Occurrence_OptionalItem) < 0) {
M
Matthias Bolte 已提交
3108
        goto cleanup;
M
Matthias Bolte 已提交
3109 3110
    }

3111 3112 3113 3114 3115 3116 3117
    if (virtualMachine == NULL &&
        esxVI_LookupVirtualMachineByName(priv->primary, def->name, NULL,
                                         &virtualMachine,
                                         esxVI_Occurrence_OptionalItem) < 0) {
        goto cleanup;
    }

M
Matthias Bolte 已提交
3118 3119
    if (virtualMachine != NULL) {
        /* FIXME */
3120 3121 3122
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Domain already exists, editing existing domains is not "
                         "supported yet"));
M
Matthias Bolte 已提交
3123
        goto cleanup;
M
Matthias Bolte 已提交
3124 3125 3126
    }

    /* Build VMX from domain XML */
3127 3128 3129 3130 3131 3132 3133
    virtualHW_version = esxVI_ProductVersionToDefaultVirtualHWVersion
                          (priv->primary->productVersion);

    if (virtualHW_version < 0) {
        goto cleanup;
    }

3134
    data.ctx = priv->primary;
3135
    data.datastorePathWithoutFileName = NULL;
3136 3137 3138 3139 3140 3141

    ctx.opaque = &data;
    ctx.parseFileName = NULL;
    ctx.formatFileName = esxFormatVMXFileName;
    ctx.autodetectSCSIControllerModel = esxAutodetectSCSIControllerModel;

3142
    vmx = virVMXFormatConfig(&ctx, priv->xmlopt, def, virtualHW_version);
M
Matthias Bolte 已提交
3143 3144

    if (vmx == NULL) {
M
Matthias Bolte 已提交
3145
        goto cleanup;
M
Matthias Bolte 已提交
3146 3147
    }

3148 3149 3150 3151 3152 3153 3154
    /*
     * Build VMX datastore URL. Use the source of the first file-based harddisk
     * to deduce the datastore and path for the VMX file. Don't just use the
     * first disk, because it may be CDROM disk and ISO images are normaly not
     * located in the virtual machine's directory. This approach to deduce the
     * datastore isn't perfect but should work in the majority of cases.
     */
M
Matthias Bolte 已提交
3155
    if (def->ndisks < 1) {
3156 3157 3158
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Domain XML doesn't contain any disks, cannot deduce "
                         "datastore and path for VMX file"));
M
Matthias Bolte 已提交
3159
        goto cleanup;
3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
    }

    for (i = 0; i < def->ndisks; ++i) {
        if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK &&
            def->disks[i]->type == VIR_DOMAIN_DISK_TYPE_FILE) {
            disk = def->disks[i];
            break;
        }
    }

    if (disk == NULL) {
3171 3172 3173
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Domain XML doesn't contain any file-based harddisks, "
                         "cannot deduce datastore and path for VMX file"));
M
Matthias Bolte 已提交
3174
        goto cleanup;
M
Matthias Bolte 已提交
3175 3176
    }

3177
    if (disk->src == NULL) {
3178 3179 3180
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("First file-based harddisk has no source, cannot deduce "
                         "datastore and path for VMX file"));
M
Matthias Bolte 已提交
3181
        goto cleanup;
M
Matthias Bolte 已提交
3182 3183
    }

3184
    if (esxUtil_ParseDatastorePath(disk->src, &datastoreName, &directoryName,
3185
                                   NULL) < 0) {
M
Matthias Bolte 已提交
3186
        goto cleanup;
M
Matthias Bolte 已提交
3187 3188
    }

3189
    if (! virFileHasSuffix(disk->src, ".vmdk")) {
3190 3191 3192
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting source '%s' of first file-based harddisk to "
                         "be a VMDK image"), disk->src);
M
Matthias Bolte 已提交
3193
        goto cleanup;
M
Matthias Bolte 已提交
3194 3195
    }

3196
    virBufferAsprintf(&buffer, "%s://%s:%d/folder/", priv->parsedUri->transport,
M
Matthias Bolte 已提交
3197 3198 3199 3200 3201 3202 3203
                      conn->uri->server, conn->uri->port);

    if (directoryName != NULL) {
        virBufferURIEncodeString(&buffer, directoryName);
        virBufferAddChar(&buffer, '/');
    }

3204 3205 3206 3207 3208 3209 3210
    escapedName = esxUtil_EscapeDatastoreItem(def->name);

    if (escapedName == NULL) {
        goto cleanup;
    }

    virBufferURIEncodeString(&buffer, escapedName);
M
Matthias Bolte 已提交
3211
    virBufferAddLit(&buffer, ".vmx?dcPath=");
3212
    virBufferURIEncodeString(&buffer, priv->primary->datacenterPath);
M
Matthias Bolte 已提交
3213 3214 3215 3216
    virBufferAddLit(&buffer, "&dsName=");
    virBufferURIEncodeString(&buffer, datastoreName);

    if (virBufferError(&buffer)) {
3217
        virReportOOMError();
M
Matthias Bolte 已提交
3218
        goto cleanup;
M
Matthias Bolte 已提交
3219 3220 3221 3222
    }

    url = virBufferContentAndReset(&buffer);

3223 3224 3225 3226 3227 3228
    /* Check, if VMX file already exists */
    /* FIXME */

    /* Upload VMX file */
    VIR_DEBUG("Uploading .vmx config, url='%s' vmx='%s'", url, vmx);

3229
    if (esxVI_CURL_Upload(priv->primary->curl, url, vmx) < 0) {
3230 3231 3232 3233
        goto cleanup;
    }

    /* Register the domain */
M
Matthias Bolte 已提交
3234 3235
    if (directoryName != NULL) {
        if (virAsprintf(&datastoreRelatedPath, "[%s] %s/%s.vmx", datastoreName,
3236
                        directoryName, escapedName) < 0) {
3237
            virReportOOMError();
M
Matthias Bolte 已提交
3238
            goto cleanup;
M
Matthias Bolte 已提交
3239 3240 3241
        }
    } else {
        if (virAsprintf(&datastoreRelatedPath, "[%s] %s.vmx", datastoreName,
3242
                        escapedName) < 0) {
3243
            virReportOOMError();
M
Matthias Bolte 已提交
3244
            goto cleanup;
M
Matthias Bolte 已提交
3245 3246 3247
        }
    }

3248
    if (esxVI_RegisterVM_Task(priv->primary, priv->primary->datacenter->vmFolder,
M
Matthias Bolte 已提交
3249
                              datastoreRelatedPath, NULL, esxVI_Boolean_False,
3250 3251 3252 3253
                              priv->primary->computeResource->resourcePool,
                              priv->primary->hostSystem->_reference,
                              &task) < 0 ||
        esxVI_WaitForTaskCompletion(priv->primary, task, def->uuid,
3254
                                    esxVI_Occurrence_OptionalItem,
3255
                                    priv->parsedUri->autoAnswer, &taskInfoState,
3256
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
3257
        goto cleanup;
M
Matthias Bolte 已提交
3258 3259 3260
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
3261 3262
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Could not define domain: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
3263
        goto cleanup;
M
Matthias Bolte 已提交
3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274
    }

    domain = virGetDomain(conn, def->name, def->uuid);

    if (domain != NULL) {
        domain->id = -1;
    }

    /* FIXME: Add proper rollback in case of an error */

  cleanup:
M
Matthias Bolte 已提交
3275 3276 3277 3278
    if (url == NULL) {
        virBufferFreeAndReset(&buffer);
    }

M
Matthias Bolte 已提交
3279 3280 3281 3282
    virDomainDefFree(def);
    VIR_FREE(vmx);
    VIR_FREE(datastoreName);
    VIR_FREE(directoryName);
3283
    VIR_FREE(escapedName);
M
Matthias Bolte 已提交
3284 3285 3286 3287 3288 3289 3290
    VIR_FREE(url);
    VIR_FREE(datastoreRelatedPath);
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&hostSystem);
    esxVI_ManagedObjectReference_Free(&resourcePool);
    esxVI_ManagedObjectReference_Free(&task);
3291
    VIR_FREE(taskInfoErrorMessage);
M
Matthias Bolte 已提交
3292 3293 3294 3295 3296 3297

    return domain;
}



3298
static int
3299 3300
esxDomainUndefineFlags(virDomainPtr domain,
                       unsigned int flags)
3301
{
M
Matthias Bolte 已提交
3302
    int result = -1;
M
Matthias Bolte 已提交
3303
    esxPrivate *priv = domain->conn->privateData;
3304
    esxVI_Context *ctx = NULL;
3305 3306 3307 3308
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;

3309 3310 3311 3312
    /* No managed save, so we explicitly reject
     * VIR_DOMAIN_UNDEFINE_MANAGED_SAVE.  No snapshot metadata for
     * ESX, so we can trivially ignore that flag.  */
    virCheckFlags(VIR_DOMAIN_UNDEFINE_SNAPSHOTS_METADATA, -1);
3313

3314 3315 3316 3317 3318 3319
    if (priv->vCenter != NULL) {
        ctx = priv->vCenter;
    } else {
        ctx = priv->host;
    }

3320
    if (esxVI_EnsureSession(ctx) < 0) {
M
Matthias Bolte 已提交
3321
        return -1;
3322 3323
    }

3324
    if (esxVI_String_AppendValueToList(&propertyNameList,
3325
                                       "runtime.powerState") < 0 ||
3326 3327
        esxVI_LookupVirtualMachineByUuid(ctx, domain->uuid, propertyNameList,
                                         &virtualMachine,
M
Matthias Bolte 已提交
3328
                                         esxVI_Occurrence_RequiredItem) < 0 ||
3329
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
3330
        goto cleanup;
3331 3332 3333 3334
    }

    if (powerState != esxVI_VirtualMachinePowerState_Suspended &&
        powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
3335 3336
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not suspended or powered off"));
M
Matthias Bolte 已提交
3337
        goto cleanup;
3338 3339
    }

3340
    if (esxVI_UnregisterVM(ctx, virtualMachine->obj) < 0) {
M
Matthias Bolte 已提交
3341
        goto cleanup;
3342 3343
    }

M
Matthias Bolte 已提交
3344 3345
    result = 0;

3346 3347 3348 3349 3350 3351 3352 3353
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);

    return result;
}


3354 3355 3356 3357 3358
static int
esxDomainUndefine(virDomainPtr domain)
{
    return esxDomainUndefineFlags(domain, 0);
}
3359

3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 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 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439
static int
esxDomainGetAutostart(virDomainPtr domain, int *autostart)
{
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_AutoStartDefaults *defaults = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_AutoStartPowerInfo *powerInfo = NULL;
    esxVI_AutoStartPowerInfo *powerInfoList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;

    *autostart = 0;

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    /* Check general autostart config */
    if (esxVI_LookupAutoStartDefaults(priv->primary, &defaults) < 0) {
        goto cleanup;
    }

    if (defaults->enabled != esxVI_Boolean_True) {
        /* Autostart is disabled in general, exit early here */
        result = 0;
        goto cleanup;
    }

    /* Check specific autostart config */
    if (esxVI_LookupAutoStartPowerInfoList(priv->primary, &powerInfoList) < 0) {
        goto cleanup;
    }

    if (powerInfoList == NULL) {
        /* powerInfo list is empty, exit early here */
        result = 0;
        goto cleanup;
    }

    if (esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
                                         NULL, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    for (powerInfo = powerInfoList; powerInfo != NULL;
         powerInfo = powerInfo->_next) {
        if (STREQ(powerInfo->key->value, virtualMachine->obj->value)) {
            if (STRCASEEQ(powerInfo->startAction, "powerOn")) {
                *autostart = 1;
            }

            break;
        }
    }

    result = 0;

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_AutoStartDefaults_Free(&defaults);
    esxVI_AutoStartPowerInfo_Free(&powerInfoList);
    esxVI_ObjectContent_Free(&virtualMachine);

    return result;
}



static int
esxDomainSetAutostart(virDomainPtr domain, int autostart)
{
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_HostAutoStartManagerConfig *spec = NULL;
    esxVI_AutoStartDefaults *defaults = NULL;
    esxVI_AutoStartPowerInfo *powerInfoList = NULL;
    esxVI_AutoStartPowerInfo *powerInfo = NULL;
    esxVI_AutoStartPowerInfo *newPowerInfo = NULL;
3440
    bool newPowerInfo_isAppended = false;
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

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    if (esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
                                         NULL, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0 ||
        esxVI_HostAutoStartManagerConfig_Alloc(&spec) < 0) {
        goto cleanup;
    }

    if (autostart) {
        /*
         * There is a general autostart option that affects the autostart
         * behavior of all domains. If it's disabled then no domain does
         * autostart. If it's enabled then the autostart behavior depends on
         * the per-domain autostart config.
         */
        if (esxVI_LookupAutoStartDefaults(priv->primary, &defaults) < 0) {
            goto cleanup;
        }

        if (defaults->enabled != esxVI_Boolean_True) {
            /*
             * Autostart is disabled in general. Check if no other domain is
             * in the list of autostarted domains, so it's safe to enable the
             * general autostart option without affecting the autostart
             * behavior of other domains.
             */
            if (esxVI_LookupAutoStartPowerInfoList(priv->primary,
                                                   &powerInfoList) < 0) {
                goto cleanup;
            }

            for (powerInfo = powerInfoList; powerInfo != NULL;
                 powerInfo = powerInfo->_next) {
                if (STRNEQ(powerInfo->key->value, virtualMachine->obj->value)) {
3479 3480 3481
                    virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                                   _("Cannot enable general autostart option "
                                     "without affecting other domains"));
3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497
                    goto cleanup;
                }
            }

            /* Enable autostart in general */
            if (esxVI_AutoStartDefaults_Alloc(&spec->defaults) < 0) {
                goto cleanup;
            }

            spec->defaults->enabled = esxVI_Boolean_True;
        }
    }

    if (esxVI_AutoStartPowerInfo_Alloc(&newPowerInfo) < 0 ||
        esxVI_Int_Alloc(&newPowerInfo->startOrder) < 0 ||
        esxVI_Int_Alloc(&newPowerInfo->startDelay) < 0 ||
3498
        esxVI_Int_Alloc(&newPowerInfo->stopDelay) < 0) {
3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509
        goto cleanup;
    }

    newPowerInfo->key = virtualMachine->obj;
    newPowerInfo->startOrder->value = -1; /* no specific start order */
    newPowerInfo->startDelay->value = -1; /* use system default */
    newPowerInfo->waitForHeartbeat = esxVI_AutoStartWaitHeartbeatSetting_SystemDefault;
    newPowerInfo->startAction = autostart ? (char *)"powerOn" : (char *)"none";
    newPowerInfo->stopDelay->value = -1; /* use system default */
    newPowerInfo->stopAction = (char *)"none";

3510 3511 3512 3513 3514 3515 3516
    if (esxVI_AutoStartPowerInfo_AppendToList(&spec->powerInfo,
                                              newPowerInfo) < 0) {
        goto cleanup;
    }

    newPowerInfo_isAppended = true;

3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537
    if (esxVI_ReconfigureAutostart
          (priv->primary,
           priv->primary->hostSystem->configManager->autoStartManager,
           spec) < 0) {
        goto cleanup;
    }

    result = 0;

  cleanup:
    if (newPowerInfo != NULL) {
        newPowerInfo->key = NULL;
        newPowerInfo->startAction = NULL;
        newPowerInfo->stopAction = NULL;
    }

    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_HostAutoStartManagerConfig_Free(&spec);
    esxVI_AutoStartDefaults_Free(&defaults);
    esxVI_AutoStartPowerInfo_Free(&powerInfoList);

3538 3539 3540 3541
    if (!newPowerInfo_isAppended) {
        esxVI_AutoStartPowerInfo_Free(&newPowerInfo);
    }

3542 3543 3544 3545 3546
    return result;
}



3547 3548 3549 3550 3551 3552 3553 3554 3555 3556
/*
 * The scheduler interface exposes basically the CPU ResourceAllocationInfo:
 *
 * - http://www.vmware.com/support/developer/vc-sdk/visdk25pubs/ReferenceGuide/vim.ResourceAllocationInfo.html
 * - http://www.vmware.com/support/developer/vc-sdk/visdk25pubs/ReferenceGuide/vim.SharesInfo.html
 * - http://www.vmware.com/support/developer/vc-sdk/visdk25pubs/ReferenceGuide/vim.SharesInfo.Level.html
 *
 *
 * Available parameters:
 *
3557
 * - reservation (VIR_TYPED_PARAM_LLONG >= 0, in megaherz)
3558
 *
3559
 *   The amount of CPU resource that is guaranteed to be available to the domain.
3560 3561
 *
 *
3562
 * - limit (VIR_TYPED_PARAM_LLONG >= 0, or -1, in megaherz)
3563
 *
3564 3565
 *   The CPU utilization of the domain will be limited to this value, even if
 *   more CPU resources are available. If the limit is set to -1, the CPU
3566 3567 3568 3569
 *   utilization of the domain is unlimited. If the limit is not set to -1, it
 *   must be greater than or equal to the reservation.
 *
 *
3570
 * - shares (VIR_TYPED_PARAM_INT >= 0, or in {-1, -2, -3}, no unit)
3571 3572 3573 3574 3575 3576
 *
 *   Shares are used to determine relative CPU allocation between domains. In
 *   general, a domain with more shares gets proportionally more of the CPU
 *   resource. The special values -1, -2 and -3 represent the predefined
 *   SharesLevel 'low', 'normal' and 'high'.
 */
3577
static char *
3578
esxDomainGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED, int *nparams)
3579 3580 3581 3582
{
    char *type = strdup("allocation");

    if (type == NULL) {
3583
        virReportOOMError();
3584
        return NULL;
3585 3586
    }

3587 3588 3589
    if (nparams != NULL) {
        *nparams = 3; /* reservation, limit, shares */
    }
3590 3591 3592 3593 3594 3595 3596

    return type;
}



static int
3597 3598 3599
esxDomainGetSchedulerParametersFlags(virDomainPtr domain,
                                     virTypedParameterPtr params, int *nparams,
                                     unsigned int flags)
3600
{
M
Matthias Bolte 已提交
3601
    int result = -1;
M
Matthias Bolte 已提交
3602
    esxPrivate *priv = domain->conn->privateData;
3603 3604 3605 3606 3607 3608 3609
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_SharesInfo *sharesInfo = NULL;
    unsigned int mask = 0;
    int i = 0;

3610 3611
    virCheckFlags(0, -1);

3612
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
3613
        return -1;
3614 3615
    }

3616
    if (esxVI_String_AppendValueListToList(&propertyNameList,
3617 3618 3619
                                           "config.cpuAllocation.reservation\0"
                                           "config.cpuAllocation.limit\0"
                                           "config.cpuAllocation.shares\0") < 0 ||
3620
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
3621
                                         propertyNameList, &virtualMachine,
M
Matthias Bolte 已提交
3622
                                         esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
3623
        goto cleanup;
3624 3625 3626
    }

    for (dynamicProperty = virtualMachine->propSet;
3627
         dynamicProperty != NULL && mask != 7 && i < 3 && i < *nparams;
3628 3629
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "config.cpuAllocation.reservation") &&
M
Matthias Bolte 已提交
3630
            ! (mask & (1 << 0))) {
3631
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
3632
                                         esxVI_Type_Long) < 0) {
M
Matthias Bolte 已提交
3633
                goto cleanup;
3634
            }
3635 3636 3637 3638 3639
            if (virTypedParameterAssign(&params[i],
                                        VIR_DOMAIN_SCHEDULER_RESERVATION,
                                        VIR_TYPED_PARAM_LLONG,
                                        dynamicProperty->val->int64) < 0)
                goto cleanup;
3640 3641 3642 3643
            mask |= 1 << 0;
            ++i;
        } else if (STREQ(dynamicProperty->name,
                         "config.cpuAllocation.limit") &&
M
Matthias Bolte 已提交
3644
                   ! (mask & (1 << 1))) {
3645
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
3646
                                         esxVI_Type_Long) < 0) {
M
Matthias Bolte 已提交
3647
                goto cleanup;
3648
            }
3649 3650 3651 3652 3653
            if (virTypedParameterAssign(&params[i],
                                        VIR_DOMAIN_SCHEDULER_LIMIT,
                                        VIR_TYPED_PARAM_LLONG,
                                        dynamicProperty->val->int64) < 0)
                goto cleanup;
3654 3655 3656 3657
            mask |= 1 << 1;
            ++i;
        } else if (STREQ(dynamicProperty->name,
                         "config.cpuAllocation.shares") &&
M
Matthias Bolte 已提交
3658
                   ! (mask & (1 << 2))) {
3659 3660 3661 3662
            if (virTypedParameterAssign(&params[i],
                                        VIR_DOMAIN_SCHEDULER_SHARES,
                                        VIR_TYPED_PARAM_INT, 0) < 0)
                goto cleanup;
3663
            if (esxVI_SharesInfo_CastFromAnyType(dynamicProperty->val,
3664
                                                 &sharesInfo) < 0) {
M
Matthias Bolte 已提交
3665
                goto cleanup;
3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685
            }

            switch (sharesInfo->level) {
              case esxVI_SharesLevel_Custom:
                params[i].value.i = sharesInfo->shares->value;
                break;

              case esxVI_SharesLevel_Low:
                params[i].value.i = -1;
                break;

              case esxVI_SharesLevel_Normal:
                params[i].value.i = -2;
                break;

              case esxVI_SharesLevel_High:
                params[i].value.i = -3;
                break;

              default:
3686 3687 3688
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Shares level has unknown value %d"),
                               (int)sharesInfo->level);
M
Matthias Bolte 已提交
3689
                goto cleanup;
3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701
            }

            esxVI_SharesInfo_Free(&sharesInfo);

            mask |= 1 << 2;
            ++i;
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    *nparams = i;
M
Matthias Bolte 已提交
3702
    result = 0;
3703 3704 3705 3706 3707 3708 3709 3710

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);

    return result;
}

3711 3712 3713 3714 3715 3716
static int
esxDomainGetSchedulerParameters(virDomainPtr domain,
                                virTypedParameterPtr params, int *nparams)
{
    return esxDomainGetSchedulerParametersFlags(domain, params, nparams, 0);
}
3717 3718 3719


static int
3720 3721 3722
esxDomainSetSchedulerParametersFlags(virDomainPtr domain,
                                     virTypedParameterPtr params, int nparams,
                                     unsigned int flags)
3723
{
M
Matthias Bolte 已提交
3724
    int result = -1;
M
Matthias Bolte 已提交
3725
    esxPrivate *priv = domain->conn->privateData;
3726 3727 3728 3729 3730
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachineConfigSpec *spec = NULL;
    esxVI_SharesInfo *sharesInfo = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
3731
    char *taskInfoErrorMessage = NULL;
3732 3733
    int i;

3734
    virCheckFlags(0, -1);
3735 3736 3737 3738 3739 3740 3741 3742 3743
    if (virTypedParameterArrayValidate(params, nparams,
                                       VIR_DOMAIN_SCHEDULER_RESERVATION,
                                       VIR_TYPED_PARAM_LLONG,
                                       VIR_DOMAIN_SCHEDULER_LIMIT,
                                       VIR_TYPED_PARAM_LLONG,
                                       VIR_DOMAIN_SCHEDULER_SHARES,
                                       VIR_TYPED_PARAM_INT,
                                       NULL) < 0)
        return -1;
3744

3745
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
3746
        return -1;
3747 3748
    }

3749
    if (esxVI_LookupVirtualMachineByUuidAndPrepareForTask
3750
          (priv->primary, domain->uuid, NULL, &virtualMachine,
3751
           priv->parsedUri->autoAnswer) < 0 ||
3752 3753
        esxVI_VirtualMachineConfigSpec_Alloc(&spec) < 0 ||
        esxVI_ResourceAllocationInfo_Alloc(&spec->cpuAllocation) < 0) {
M
Matthias Bolte 已提交
3754
        goto cleanup;
3755 3756 3757
    }

    for (i = 0; i < nparams; ++i) {
3758
        if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_RESERVATION)) {
3759
            if (esxVI_Long_Alloc(&spec->cpuAllocation->reservation) < 0) {
M
Matthias Bolte 已提交
3760
                goto cleanup;
3761 3762 3763
            }

            if (params[i].value.l < 0) {
3764 3765 3766
                virReportError(VIR_ERR_INVALID_ARG,
                               _("Could not set reservation to %lld MHz, expecting "
                                 "positive value"), params[i].value.l);
M
Matthias Bolte 已提交
3767
                goto cleanup;
3768 3769 3770
            }

            spec->cpuAllocation->reservation->value = params[i].value.l;
3771
        } else if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_LIMIT)) {
3772
            if (esxVI_Long_Alloc(&spec->cpuAllocation->limit) < 0) {
M
Matthias Bolte 已提交
3773
                goto cleanup;
3774 3775 3776
            }

            if (params[i].value.l < -1) {
3777 3778 3779 3780
                virReportError(VIR_ERR_INVALID_ARG,
                               _("Could not set limit to %lld MHz, expecting "
                                 "positive value or -1 (unlimited)"),
                               params[i].value.l);
M
Matthias Bolte 已提交
3781
                goto cleanup;
3782 3783 3784
            }

            spec->cpuAllocation->limit->value = params[i].value.l;
3785
        } else if (STREQ(params[i].field, VIR_DOMAIN_SCHEDULER_SHARES)) {
3786 3787
            if (esxVI_SharesInfo_Alloc(&sharesInfo) < 0 ||
                esxVI_Int_Alloc(&sharesInfo->shares) < 0) {
M
Matthias Bolte 已提交
3788
                goto cleanup;
3789 3790 3791 3792
            }

            spec->cpuAllocation->shares = sharesInfo;

3793
            if (params[i].value.i >= 0) {
3794
                spec->cpuAllocation->shares->level = esxVI_SharesLevel_Custom;
3795
                spec->cpuAllocation->shares->shares->value = params[i].value.i;
3796
            } else {
3797
                switch (params[i].value.i) {
3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815
                  case -1:
                    spec->cpuAllocation->shares->level = esxVI_SharesLevel_Low;
                    spec->cpuAllocation->shares->shares->value = -1;
                    break;

                  case -2:
                    spec->cpuAllocation->shares->level =
                      esxVI_SharesLevel_Normal;
                    spec->cpuAllocation->shares->shares->value = -1;
                    break;

                  case -3:
                    spec->cpuAllocation->shares->level =
                      esxVI_SharesLevel_High;
                    spec->cpuAllocation->shares->shares->value = -1;
                    break;

                  default:
3816 3817 3818 3819
                    virReportError(VIR_ERR_INVALID_ARG,
                                   _("Could not set shares to %d, expecting positive "
                                     "value or -1 (low), -2 (normal) or -3 (high)"),
                                   params[i].value.i);
M
Matthias Bolte 已提交
3820
                    goto cleanup;
3821 3822 3823 3824 3825
                }
            }
        }
    }

3826
    if (esxVI_ReconfigVM_Task(priv->primary, virtualMachine->obj, spec,
3827
                              &task) < 0 ||
3828
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
3829
                                    esxVI_Occurrence_RequiredItem,
3830
                                    priv->parsedUri->autoAnswer, &taskInfoState,
3831
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
3832
        goto cleanup;
3833 3834 3835
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
3836 3837 3838
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not change scheduler parameters: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
3839
        goto cleanup;
3840 3841
    }

M
Matthias Bolte 已提交
3842 3843
    result = 0;

3844 3845 3846 3847
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_VirtualMachineConfigSpec_Free(&spec);
    esxVI_ManagedObjectReference_Free(&task);
3848
    VIR_FREE(taskInfoErrorMessage);
3849 3850 3851 3852

    return result;
}

3853 3854 3855 3856 3857 3858
static int
esxDomainSetSchedulerParameters(virDomainPtr domain,
                                virTypedParameterPtr params, int nparams)
{
    return esxDomainSetSchedulerParametersFlags(domain, params, nparams, 0);
}
3859

E
Eric Blake 已提交
3860 3861 3862 3863 3864 3865
/* The subset of migration flags we are able to support.  */
#define ESX_MIGRATION_FLAGS                     \
    (VIR_MIGRATE_PERSIST_DEST |                 \
     VIR_MIGRATE_UNDEFINE_SOURCE |              \
     VIR_MIGRATE_LIVE |                         \
     VIR_MIGRATE_PAUSED)
3866 3867 3868 3869 3870

static int
esxDomainMigratePrepare(virConnectPtr dconn,
                        char **cookie ATTRIBUTE_UNUSED,
                        int *cookielen ATTRIBUTE_UNUSED,
3871 3872
                        const char *uri_in ATTRIBUTE_UNUSED,
                        char **uri_out,
E
Eric Blake 已提交
3873
                        unsigned long flags,
3874 3875 3876
                        const char *dname ATTRIBUTE_UNUSED,
                        unsigned long resource ATTRIBUTE_UNUSED)
{
3877
    esxPrivate *priv = dconn->privateData;
3878

E
Eric Blake 已提交
3879 3880
    virCheckFlags(ESX_MIGRATION_FLAGS, -1);

3881
    if (uri_in == NULL) {
3882 3883 3884 3885
        if (virAsprintf(uri_out, "vpxmigr://%s/%s/%s",
                        priv->vCenter->ipAddress,
                        priv->vCenter->computeResource->resourcePool->value,
                        priv->vCenter->hostSystem->_reference->value) < 0) {
3886
            virReportOOMError();
3887
            return -1;
3888 3889 3890
        }
    }

3891
    return 0;
3892 3893 3894 3895 3896 3897 3898 3899 3900
}



static int
esxDomainMigratePerform(virDomainPtr domain,
                        const char *cookie ATTRIBUTE_UNUSED,
                        int cookielen ATTRIBUTE_UNUSED,
                        const char *uri,
E
Eric Blake 已提交
3901
                        unsigned long flags,
3902 3903 3904
                        const char *dname,
                        unsigned long bandwidth ATTRIBUTE_UNUSED)
{
M
Matthias Bolte 已提交
3905
    int result = -1;
M
Matthias Bolte 已提交
3906
    esxPrivate *priv = domain->conn->privateData;
M
Martin Kletzander 已提交
3907
    virURIPtr parsedUri = NULL;
3908 3909 3910
    char *saveptr;
    char *path_resourcePool;
    char *path_hostSystem;
3911
    esxVI_ObjectContent *virtualMachine = NULL;
3912 3913
    esxVI_ManagedObjectReference resourcePool;
    esxVI_ManagedObjectReference hostSystem;
3914 3915 3916
    esxVI_Event *eventList = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
3917
    char *taskInfoErrorMessage = NULL;
3918

E
Eric Blake 已提交
3919 3920
    virCheckFlags(ESX_MIGRATION_FLAGS, -1);

M
Matthias Bolte 已提交
3921
    if (priv->vCenter == NULL) {
3922 3923
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Migration not possible without a vCenter"));
M
Matthias Bolte 已提交
3924
        return -1;
3925 3926 3927
    }

    if (dname != NULL) {
3928 3929
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Renaming domains on migration not supported"));
M
Matthias Bolte 已提交
3930
        return -1;
3931 3932
    }

3933
    if (esxVI_EnsureSession(priv->vCenter) < 0) {
M
Matthias Bolte 已提交
3934
        return -1;
3935 3936
    }

3937
    /* Parse migration URI */
3938
    if (!(parsedUri = virURIParse(uri)))
M
Matthias Bolte 已提交
3939
        return -1;
3940

3941
    if (parsedUri->scheme == NULL || STRCASENEQ(parsedUri->scheme, "vpxmigr")) {
3942 3943
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Only vpxmigr:// migration URIs are supported"));
M
Matthias Bolte 已提交
3944
        goto cleanup;
3945 3946
    }

3947
    if (STRCASENEQ(priv->vCenter->ipAddress, parsedUri->server)) {
3948 3949 3950
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Migration source and destination have to refer to "
                         "the same vCenter"));
3951 3952 3953 3954 3955 3956 3957
        goto cleanup;
    }

    path_resourcePool = strtok_r(parsedUri->path, "/", &saveptr);
    path_hostSystem = strtok_r(NULL, "", &saveptr);

    if (path_resourcePool == NULL || path_hostSystem == NULL) {
3958 3959
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Migration URI has to specify resource pool and host system"));
M
Matthias Bolte 已提交
3960
        goto cleanup;
3961 3962
    }

3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975
    resourcePool._next = NULL;
    resourcePool._type = esxVI_Type_ManagedObjectReference;
    resourcePool.type = (char *)"ResourcePool";
    resourcePool.value = path_resourcePool;

    hostSystem._next = NULL;
    hostSystem._type = esxVI_Type_ManagedObjectReference;
    hostSystem.type = (char *)"HostSystem";
    hostSystem.value = path_hostSystem;

    /* Lookup VirtualMachine */
    if (esxVI_LookupVirtualMachineByUuidAndPrepareForTask
          (priv->vCenter, domain->uuid, NULL, &virtualMachine,
3976
           priv->parsedUri->autoAnswer) < 0) {
M
Matthias Bolte 已提交
3977
        goto cleanup;
3978 3979 3980
    }

    /* Validate the purposed migration */
3981
    if (esxVI_ValidateMigration(priv->vCenter, virtualMachine->obj,
3982 3983
                                esxVI_VirtualMachinePowerState_Undefined, NULL,
                                &resourcePool, &hostSystem, &eventList) < 0) {
M
Matthias Bolte 已提交
3984
        goto cleanup;
3985 3986 3987 3988 3989 3990 3991 3992
    }

    if (eventList != NULL) {
        /*
         * FIXME: Need to report the complete list of events. Limit reporting
         *        to the first event for now.
         */
        if (eventList->fullFormattedMessage != NULL) {
3993 3994 3995
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not migrate domain, validation reported a "
                             "problem: %s"), eventList->fullFormattedMessage);
3996
        } else {
3997 3998 3999
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Could not migrate domain, validation reported a "
                             "problem"));
4000 4001
        }

M
Matthias Bolte 已提交
4002
        goto cleanup;
4003 4004 4005
    }

    /* Perform the purposed migration */
4006 4007
    if (esxVI_MigrateVM_Task(priv->vCenter, virtualMachine->obj,
                             &resourcePool, &hostSystem,
4008 4009 4010
                             esxVI_VirtualMachineMovePriority_DefaultPriority,
                             esxVI_VirtualMachinePowerState_Undefined,
                             &task) < 0 ||
4011
        esxVI_WaitForTaskCompletion(priv->vCenter, task, domain->uuid,
4012
                                    esxVI_Occurrence_RequiredItem,
4013
                                    priv->parsedUri->autoAnswer, &taskInfoState,
4014
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
4015
        goto cleanup;
4016 4017 4018
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
4019 4020 4021 4022
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not migrate domain, migration task finished with "
                         "an error: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
4023
        goto cleanup;
4024 4025
    }

M
Matthias Bolte 已提交
4026 4027
    result = 0;

4028
  cleanup:
4029
    virURIFree(parsedUri);
4030 4031 4032
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_Event_Free(&eventList);
    esxVI_ManagedObjectReference_Free(&task);
4033
    VIR_FREE(taskInfoErrorMessage);
4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044

    return result;
}



static virDomainPtr
esxDomainMigrateFinish(virConnectPtr dconn, const char *dname,
                       const char *cookie ATTRIBUTE_UNUSED,
                       int cookielen ATTRIBUTE_UNUSED,
                       const char *uri ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
4045
                       unsigned long flags)
4046
{
E
Eric Blake 已提交
4047 4048
    virCheckFlags(ESX_MIGRATION_FLAGS, NULL);

4049 4050 4051 4052 4053
    return esxDomainLookupByName(dconn, dname);
}



M
Matthias Bolte 已提交
4054 4055 4056 4057
static unsigned long long
esxNodeGetFreeMemory(virConnectPtr conn)
{
    unsigned long long result = 0;
M
Matthias Bolte 已提交
4058
    esxPrivate *priv = conn->privateData;
M
Matthias Bolte 已提交
4059 4060 4061 4062 4063
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *resourcePool = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_ResourcePoolResourceUsage *resourcePoolResourceUsage = NULL;

4064
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4065
        return 0;
M
Matthias Bolte 已提交
4066 4067 4068
    }

    /* Get memory usage of resource pool */
4069
    if (esxVI_String_AppendValueToList(&propertyNameList,
M
Matthias Bolte 已提交
4070
                                       "runtime.memory") < 0 ||
4071 4072
        esxVI_LookupObjectContentByType(priv->primary,
                                        priv->primary->computeResource->resourcePool,
4073
                                        "ResourcePool", propertyNameList,
4074 4075
                                        &resourcePool,
                                        esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
4076
        goto cleanup;
M
Matthias Bolte 已提交
4077 4078 4079 4080 4081 4082
    }

    for (dynamicProperty = resourcePool->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "runtime.memory")) {
            if (esxVI_ResourcePoolResourceUsage_CastFromAnyType
4083
                  (dynamicProperty->val, &resourcePoolResourceUsage) < 0) {
M
Matthias Bolte 已提交
4084
                goto cleanup;
M
Matthias Bolte 已提交
4085 4086 4087 4088 4089 4090 4091 4092 4093
            }

            break;
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    if (resourcePoolResourceUsage == NULL) {
4094 4095
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Could not retrieve memory usage of resource pool"));
M
Matthias Bolte 已提交
4096
        goto cleanup;
M
Matthias Bolte 已提交
4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110
    }

    result = resourcePoolResourceUsage->unreservedForVm->value;

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&resourcePool);
    esxVI_ResourcePoolResourceUsage_Free(&resourcePoolResourceUsage);

    return result;
}



4111
static int
4112
esxConnectIsEncrypted(virConnectPtr conn)
4113
{
M
Matthias Bolte 已提交
4114
    esxPrivate *priv = conn->privateData;
4115

4116
    if (STRCASEEQ(priv->parsedUri->transport, "https")) {
4117 4118 4119 4120 4121 4122 4123 4124 4125
        return 1;
    } else {
        return 0;
    }
}



static int
4126
esxConnectIsSecure(virConnectPtr conn)
4127
{
M
Matthias Bolte 已提交
4128
    esxPrivate *priv = conn->privateData;
4129

4130
    if (STRCASEEQ(priv->parsedUri->transport, "https")) {
4131 4132 4133 4134 4135 4136 4137 4138
        return 1;
    } else {
        return 0;
    }
}



4139
static int
4140
esxConnectIsAlive(virConnectPtr conn)
4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155
{
    esxPrivate *priv = conn->privateData;

    /* XXX we should be able to do something better than this but this is
     * simple, safe, and good enough for now. In worst case, the function will
     * return true even though the connection is not alive.
     */
    if (priv->primary)
        return 1;
    else
        return 0;
}



4156 4157 4158
static int
esxDomainIsActive(virDomainPtr domain)
{
M
Matthias Bolte 已提交
4159
    int result = -1;
M
Matthias Bolte 已提交
4160
    esxPrivate *priv = domain->conn->privateData;
4161 4162 4163 4164
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachinePowerState powerState;

4165
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4166
        return -1;
4167 4168
    }

4169
    if (esxVI_String_AppendValueToList(&propertyNameList,
4170
                                       "runtime.powerState") < 0 ||
4171
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
4172
                                         propertyNameList, &virtualMachine,
M
Matthias Bolte 已提交
4173
                                         esxVI_Occurrence_RequiredItem) < 0 ||
4174
        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0) {
M
Matthias Bolte 已提交
4175
        goto cleanup;
4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193
    }

    if (powerState != esxVI_VirtualMachinePowerState_PoweredOff) {
        result = 1;
    } else {
        result = 0;
    }

  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);

    return result;
}



static int
4194
esxDomainIsPersistent(virDomainPtr domain)
4195
{
4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215
    /* ESX has no concept of transient domains, so all of them are
     * persistent.  However, we do want to check for existence. */
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_ObjectContent *virtualMachine = NULL;

    if (esxVI_EnsureSession(priv->primary) < 0)
        return -1;

    if (esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
                                         NULL, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0)
        goto cleanup;

    result = 1;

cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);

    return result;
4216 4217
}

M
Matthias Bolte 已提交
4218 4219


4220 4221 4222
static int
esxDomainIsUpdated(virDomainPtr domain ATTRIBUTE_UNUSED)
{
4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242
    /* ESX domains never have a persistent state that differs from
     * current state.  However, we do want to check for existence.  */
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_ObjectContent *virtualMachine = NULL;

    if (esxVI_EnsureSession(priv->primary) < 0)
        return -1;

    if (esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
                                         NULL, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0)
        goto cleanup;

    result = 0;

cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);

    return result;
4243
}
4244

M
Matthias Bolte 已提交
4245 4246


4247 4248
static virDomainSnapshotPtr
esxDomainSnapshotCreateXML(virDomainPtr domain, const char *xmlDesc,
4249
                           unsigned int flags)
4250 4251 4252 4253 4254 4255 4256 4257
{
    esxPrivate *priv = domain->conn->privateData;
    virDomainSnapshotDefPtr def = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
4258
    char *taskInfoErrorMessage = NULL;
4259 4260
    virDomainSnapshotPtr snapshot = NULL;

4261 4262
    /* ESX has no snapshot metadata, so this flag is trivial.  */
    virCheckFlags(VIR_DOMAIN_SNAPSHOT_CREATE_NO_METADATA, NULL);
4263

4264
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4265
        return NULL;
4266 4267
    }

4268
    def = virDomainSnapshotDefParseString(xmlDesc, priv->caps,
4269
                                          priv->xmlopt, 0, 0);
4270 4271

    if (def == NULL) {
M
Matthias Bolte 已提交
4272
        return NULL;
4273 4274
    }

4275
    if (def->ndisks) {
4276 4277
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("disk snapshots not supported yet"));
4278 4279 4280
        return NULL;
    }

4281
    if (esxVI_LookupVirtualMachineByUuidAndPrepareForTask
4282
          (priv->primary, domain->uuid, NULL, &virtualMachine,
4283
           priv->parsedUri->autoAnswer) < 0 ||
4284
        esxVI_LookupRootSnapshotTreeList(priv->primary, domain->uuid,
4285 4286
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, def->name,
4287
                                    &snapshotTree, NULL,
4288
                                    esxVI_Occurrence_OptionalItem) < 0) {
M
Matthias Bolte 已提交
4289
        goto cleanup;
4290 4291 4292
    }

    if (snapshotTree != NULL) {
4293 4294
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Snapshot '%s' already exists"), def->name);
M
Matthias Bolte 已提交
4295
        goto cleanup;
4296 4297
    }

4298
    if (esxVI_CreateSnapshot_Task(priv->primary, virtualMachine->obj,
4299 4300 4301
                                  def->name, def->description,
                                  esxVI_Boolean_True,
                                  esxVI_Boolean_False, &task) < 0 ||
4302
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
4303
                                    esxVI_Occurrence_RequiredItem,
4304
                                    priv->parsedUri->autoAnswer, &taskInfoState,
4305
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
4306
        goto cleanup;
4307 4308 4309
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
4310 4311
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Could not create snapshot: %s"),
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
4312
        goto cleanup;
4313 4314 4315 4316 4317 4318 4319 4320 4321
    }

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

  cleanup:
    virDomainSnapshotDefFree(def);
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);
    esxVI_ManagedObjectReference_Free(&task);
4322
    VIR_FREE(taskInfoErrorMessage);
4323 4324 4325 4326 4327 4328 4329

    return snapshot;
}



static char *
4330 4331
esxDomainSnapshotGetXMLDesc(virDomainSnapshotPtr snapshot,
                            unsigned int flags)
4332 4333 4334 4335 4336 4337 4338 4339 4340
{
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTreeParent = NULL;
    virDomainSnapshotDef def;
    char uuid_string[VIR_UUID_STRING_BUFLEN] = "";
    char *xml = NULL;

4341 4342
    virCheckFlags(0, NULL);

4343
    memset(&def, 0, sizeof(def));
4344

4345
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4346
        return NULL;
4347 4348
    }

4349
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
4350 4351 4352 4353
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, snapshot->name,
                                    &snapshotTree, &snapshotTreeParent,
                                    esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
4354
        goto cleanup;
4355 4356 4357 4358 4359 4360 4361 4362
    }

    def.name = snapshot->name;
    def.description = snapshotTree->description;
    def.parent = snapshotTreeParent != NULL ? snapshotTreeParent->name : NULL;

    if (esxVI_DateTime_ConvertToCalendarTime(snapshotTree->createTime,
                                             &def.creationTime) < 0) {
M
Matthias Bolte 已提交
4363
        goto cleanup;
4364 4365 4366 4367 4368 4369 4370
    }

    def.state = esxVI_VirtualMachinePowerState_ConvertToLibvirt
                  (snapshotTree->state);

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

4371
    xml = virDomainSnapshotDefFormat(uuid_string, &def, flags, 0);
4372 4373 4374 4375 4376 4377 4378 4379 4380 4381

  cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);

    return xml;
}



static int
4382
esxDomainSnapshotNum(virDomainPtr domain, unsigned int flags)
4383
{
M
Matthias Bolte 已提交
4384
    int count;
4385 4386
    esxPrivate *priv = domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
4387
    bool recurse;
4388
    bool leaves;
4389

4390
    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_ROOTS |
4391 4392
                  VIR_DOMAIN_SNAPSHOT_LIST_METADATA |
                  VIR_DOMAIN_SNAPSHOT_LIST_LEAVES, -1);
4393 4394

    recurse = (flags & VIR_DOMAIN_SNAPSHOT_LIST_ROOTS) == 0;
4395
    leaves = (flags & VIR_DOMAIN_SNAPSHOT_LIST_LEAVES) != 0;
4396

4397
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4398
        return -1;
4399 4400
    }

4401 4402 4403 4404
    /* ESX snapshots do not require libvirt to maintain any metadata.  */
    if (flags & VIR_DOMAIN_SNAPSHOT_LIST_METADATA)
        return 0;

4405
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, domain->uuid,
4406
                                         &rootSnapshotTreeList) < 0) {
M
Matthias Bolte 已提交
4407
        return -1;
4408 4409
    }

4410 4411
    count = esxVI_GetNumberOfSnapshotTrees(rootSnapshotTreeList, recurse,
                                           leaves);
4412 4413 4414

    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

M
Matthias Bolte 已提交
4415
    return count;
4416 4417 4418 4419 4420 4421
}



static int
esxDomainSnapshotListNames(virDomainPtr domain, char **names, int nameslen,
4422
                           unsigned int flags)
4423
{
M
Matthias Bolte 已提交
4424
    int result;
4425 4426
    esxPrivate *priv = domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
4427
    bool recurse;
4428
    bool leaves;
4429 4430

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_ROOTS |
4431 4432
                  VIR_DOMAIN_SNAPSHOT_LIST_METADATA |
                  VIR_DOMAIN_SNAPSHOT_LIST_LEAVES, -1);
4433

4434
    recurse = (flags & VIR_DOMAIN_SNAPSHOT_LIST_ROOTS) == 0;
4435
    leaves = (flags & VIR_DOMAIN_SNAPSHOT_LIST_LEAVES) != 0;
4436

4437
    if (names == NULL || nameslen < 0) {
4438
        virReportError(VIR_ERR_INVALID_ARG, "%s", _("Invalid argument"));
4439 4440 4441
        return -1;
    }

4442
    if (nameslen == 0 || (flags & VIR_DOMAIN_SNAPSHOT_LIST_METADATA)) {
4443 4444 4445
        return 0;
    }

4446
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4447
        return -1;
4448 4449
    }

4450
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, domain->uuid,
4451
                                         &rootSnapshotTreeList) < 0) {
M
Matthias Bolte 已提交
4452
        return -1;
4453 4454
    }

4455
    result = esxVI_GetSnapshotTreeNames(rootSnapshotTreeList, names, nameslen,
4456
                                        recurse, leaves);
4457 4458 4459 4460 4461 4462 4463 4464

    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

    return result;
}



4465 4466 4467 4468 4469 4470 4471 4472
static int
esxDomainSnapshotNumChildren(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    int count = -1;
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    bool recurse;
4473
    bool leaves;
4474 4475

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS |
4476 4477
                  VIR_DOMAIN_SNAPSHOT_LIST_METADATA |
                  VIR_DOMAIN_SNAPSHOT_LIST_LEAVES, -1);
4478 4479

    recurse = (flags & VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS) != 0;
4480
    leaves = (flags & VIR_DOMAIN_SNAPSHOT_LIST_LEAVES) != 0;
4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
                                         &rootSnapshotTreeList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotTreeList, snapshot->name,
                                    &snapshotTree, NULL,
                                    esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    /* ESX snapshots do not require libvirt to maintain any metadata.  */
    if (flags & VIR_DOMAIN_SNAPSHOT_LIST_METADATA) {
        count = 0;
        goto cleanup;
    }

    count = esxVI_GetNumberOfSnapshotTrees(snapshotTree->childSnapshotList,
4501
                                           recurse, leaves);
4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520

cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

    return count;
}



static int
esxDomainSnapshotListChildrenNames(virDomainSnapshotPtr snapshot,
                                   char **names, int nameslen,
                                   unsigned int flags)
{
    int result = -1;
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    bool recurse;
4521
    bool leaves;
4522 4523

    virCheckFlags(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS |
4524 4525
                  VIR_DOMAIN_SNAPSHOT_LIST_METADATA |
                  VIR_DOMAIN_SNAPSHOT_LIST_LEAVES, -1);
4526 4527

    recurse = (flags & VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS) != 0;
4528
    leaves = (flags & VIR_DOMAIN_SNAPSHOT_LIST_LEAVES) != 0;
4529 4530

    if (names == NULL || nameslen < 0) {
4531
        virReportError(VIR_ERR_INVALID_ARG, "%s", _("Invalid argument"));
4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557
        return -1;
    }

    if (nameslen == 0) {
        return 0;
    }

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
                                         &rootSnapshotTreeList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotTreeList, snapshot->name,
                                    &snapshotTree, NULL,
                                    esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    /* ESX snapshots do not require libvirt to maintain any metadata.  */
    if (flags & VIR_DOMAIN_SNAPSHOT_LIST_METADATA) {
        result = 0;
        goto cleanup;
    }

    result = esxVI_GetSnapshotTreeNames(snapshotTree->childSnapshotList,
4558
                                        names, nameslen, recurse, leaves);
4559 4560 4561 4562 4563 4564 4565 4566 4567

cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

    return result;
}



4568 4569
static virDomainSnapshotPtr
esxDomainSnapshotLookupByName(virDomainPtr domain, const char *name,
4570
                              unsigned int flags)
4571 4572 4573 4574 4575 4576
{
    esxPrivate *priv = domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    virDomainSnapshotPtr snapshot = NULL;

4577 4578
    virCheckFlags(0, NULL);

4579
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4580
        return NULL;
4581 4582
    }

4583
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, domain->uuid,
4584 4585
                                         &rootSnapshotTreeList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotTreeList, name, &snapshotTree,
4586
                                    NULL,
4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606
                                    esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    snapshot = virGetDomainSnapshot(domain, name);

  cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

    return snapshot;
}



static int
esxDomainHasCurrentSnapshot(virDomainPtr domain, unsigned int flags)
{
    esxPrivate *priv = domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *currentSnapshotTree = NULL;

4607
    virCheckFlags(0, -1);
4608

4609
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4610
        return -1;
4611 4612
    }

4613
    if (esxVI_LookupCurrentSnapshotTree(priv->primary, domain->uuid,
4614 4615
                                        &currentSnapshotTree,
                                        esxVI_Occurrence_OptionalItem) < 0) {
M
Matthias Bolte 已提交
4616
        return -1;
4617 4618 4619
    }

    if (currentSnapshotTree != NULL) {
M
Matthias Bolte 已提交
4620 4621
        esxVI_VirtualMachineSnapshotTree_Free(&currentSnapshotTree);
        return 1;
4622 4623
    }

M
Matthias Bolte 已提交
4624
    return 0;
4625 4626 4627 4628
}



E
Eric Blake 已提交
4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652
static virDomainSnapshotPtr
esxDomainSnapshotGetParent(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTreeParent = NULL;
    virDomainSnapshotPtr parent = NULL;

    virCheckFlags(0, NULL);

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return NULL;
    }

    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, snapshot->name,
                                    &snapshotTree, &snapshotTreeParent,
                                    esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    if (!snapshotTreeParent) {
4653 4654 4655
        virReportError(VIR_ERR_NO_DOMAIN_SNAPSHOT,
                       _("snapshot '%s' does not have a parent"),
                       snapshotTree->name);
E
Eric Blake 已提交
4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668
        goto cleanup;
    }

    parent = virGetDomainSnapshot(snapshot->domain, snapshotTreeParent->name);

cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);

    return parent;
}



4669 4670 4671 4672 4673
static virDomainSnapshotPtr
esxDomainSnapshotCurrent(virDomainPtr domain, unsigned int flags)
{
    esxPrivate *priv = domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *currentSnapshotTree = NULL;
M
Matthias Bolte 已提交
4674
    virDomainSnapshotPtr snapshot = NULL;
4675

4676
    virCheckFlags(0, NULL);
4677

4678
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4679
        return NULL;
4680 4681
    }

4682
    if (esxVI_LookupCurrentSnapshotTree(priv->primary, domain->uuid,
4683 4684
                                        &currentSnapshotTree,
                                        esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
4685
        return NULL;
4686 4687 4688 4689 4690 4691 4692 4693 4694 4695
    }

    snapshot = virGetDomainSnapshot(domain, currentSnapshotTree->name);

    esxVI_VirtualMachineSnapshotTree_Free(&currentSnapshotTree);

    return snapshot;
}


4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764
static int
esxDomainSnapshotIsCurrent(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *currentSnapshotTree = NULL;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    /* Check that snapshot exists.  */
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, snapshot->name,
                                    &snapshotTree, NULL,
                                    esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    if (esxVI_LookupCurrentSnapshotTree(priv->primary, snapshot->domain->uuid,
                                        &currentSnapshotTree,
                                        esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    ret = STREQ(snapshot->name, currentSnapshotTree->name);

cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&currentSnapshotTree);
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);
    return ret;
}


static int
esxDomainSnapshotHasMetadata(virDomainSnapshotPtr snapshot, unsigned int flags)
{
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    /* Check that snapshot exists.  If so, there is no metadata.  */
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, snapshot->name,
                                    &snapshotTree, NULL,
                                    esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    ret = 0;

cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);
    return ret;
}

4765 4766 4767 4768

static int
esxDomainRevertToSnapshot(virDomainSnapshotPtr snapshot, unsigned int flags)
{
M
Matthias Bolte 已提交
4769
    int result = -1;
4770 4771 4772 4773 4774
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
4775
    char *taskInfoErrorMessage = NULL;
4776

4777
    virCheckFlags(0, -1);
4778

4779
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4780
        return -1;
4781 4782
    }

4783
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
4784 4785
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, snapshot->name,
4786
                                    &snapshotTree, NULL,
4787
                                    esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
4788
        goto cleanup;
4789 4790
    }

4791
    if (esxVI_RevertToSnapshot_Task(priv->primary, snapshotTree->snapshot, NULL,
4792
                                    esxVI_Boolean_Undefined, &task) < 0 ||
4793
        esxVI_WaitForTaskCompletion(priv->primary, task, snapshot->domain->uuid,
4794
                                    esxVI_Occurrence_RequiredItem,
4795
                                    priv->parsedUri->autoAnswer, &taskInfoState,
4796
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
4797
        goto cleanup;
4798 4799 4800
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
4801 4802 4803
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not revert to snapshot '%s': %s"), snapshot->name,
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
4804
        goto cleanup;
4805 4806
    }

M
Matthias Bolte 已提交
4807 4808
    result = 0;

4809 4810 4811
  cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);
    esxVI_ManagedObjectReference_Free(&task);
4812
    VIR_FREE(taskInfoErrorMessage);
4813 4814 4815 4816 4817 4818 4819 4820 4821

    return result;
}



static int
esxDomainSnapshotDelete(virDomainSnapshotPtr snapshot, unsigned int flags)
{
M
Matthias Bolte 已提交
4822
    int result = -1;
4823 4824 4825 4826 4827 4828
    esxPrivate *priv = snapshot->domain->conn->privateData;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;
    esxVI_Boolean removeChildren = esxVI_Boolean_False;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
4829
    char *taskInfoErrorMessage = NULL;
4830

4831 4832
    virCheckFlags(VIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN |
                  VIR_DOMAIN_SNAPSHOT_DELETE_METADATA_ONLY, -1);
4833

4834
    if (esxVI_EnsureSession(priv->primary) < 0) {
M
Matthias Bolte 已提交
4835
        return -1;
4836 4837 4838 4839 4840 4841
    }

    if (flags & VIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN) {
        removeChildren = esxVI_Boolean_True;
    }

4842
    if (esxVI_LookupRootSnapshotTreeList(priv->primary, snapshot->domain->uuid,
4843 4844
                                         &rootSnapshotList) < 0 ||
        esxVI_GetSnapshotTreeByName(rootSnapshotList, snapshot->name,
4845
                                    &snapshotTree, NULL,
4846
                                    esxVI_Occurrence_RequiredItem) < 0) {
M
Matthias Bolte 已提交
4847
        goto cleanup;
4848 4849
    }

4850 4851 4852 4853 4854 4855 4856
    /* ESX snapshots do not require any libvirt metadata, making this
     * flag trivial once we know we have a valid snapshot.  */
    if (flags & VIR_DOMAIN_SNAPSHOT_DELETE_METADATA_ONLY) {
        result = 0;
        goto cleanup;
    }

4857
    if (esxVI_RemoveSnapshot_Task(priv->primary, snapshotTree->snapshot,
4858
                                  removeChildren, &task) < 0 ||
4859
        esxVI_WaitForTaskCompletion(priv->primary, task, snapshot->domain->uuid,
4860
                                    esxVI_Occurrence_RequiredItem,
4861
                                    priv->parsedUri->autoAnswer, &taskInfoState,
4862
                                    &taskInfoErrorMessage) < 0) {
M
Matthias Bolte 已提交
4863
        goto cleanup;
4864 4865 4866
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
4867 4868 4869
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not delete snapshot '%s': %s"), snapshot->name,
                       taskInfoErrorMessage);
M
Matthias Bolte 已提交
4870
        goto cleanup;
4871 4872
    }

M
Matthias Bolte 已提交
4873 4874
    result = 0;

4875 4876 4877
  cleanup:
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotList);
    esxVI_ManagedObjectReference_Free(&task);
4878
    VIR_FREE(taskInfoErrorMessage);
4879 4880 4881 4882 4883 4884

    return result;
}



4885
static int
4886
esxDomainSetMemoryParameters(virDomainPtr domain, virTypedParameterPtr params,
4887 4888 4889 4890 4891 4892 4893 4894
                             int nparams, unsigned int flags)
{
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_VirtualMachineConfigSpec *spec = NULL;
    esxVI_ManagedObjectReference *task = NULL;
    esxVI_TaskInfoState taskInfoState;
4895
    char *taskInfoErrorMessage = NULL;
4896 4897 4898
    int i;

    virCheckFlags(0, -1);
4899 4900 4901 4902 4903
    if (virTypedParameterArrayValidate(params, nparams,
                                       VIR_DOMAIN_MEMORY_MIN_GUARANTEE,
                                       VIR_TYPED_PARAM_ULLONG,
                                       NULL) < 0)
        return -1;
4904 4905 4906 4907 4908 4909 4910

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    if (esxVI_LookupVirtualMachineByUuidAndPrepareForTask
          (priv->primary, domain->uuid, NULL, &virtualMachine,
4911
           priv->parsedUri->autoAnswer) < 0 ||
4912 4913 4914 4915 4916 4917
        esxVI_VirtualMachineConfigSpec_Alloc(&spec) < 0 ||
        esxVI_ResourceAllocationInfo_Alloc(&spec->memoryAllocation) < 0) {
        goto cleanup;
    }

    for (i = 0; i < nparams; ++i) {
4918
        if (STREQ(params[i].field, VIR_DOMAIN_MEMORY_MIN_GUARANTEE)) {
4919 4920 4921 4922 4923
            if (esxVI_Long_Alloc(&spec->memoryAllocation->reservation) < 0) {
                goto cleanup;
            }

            spec->memoryAllocation->reservation->value =
4924
              VIR_DIV_UP(params[i].value.ul, 1024); /* Scale from kilobytes to megabytes */
4925 4926 4927 4928 4929 4930 4931
        }
    }

    if (esxVI_ReconfigVM_Task(priv->primary, virtualMachine->obj, spec,
                              &task) < 0 ||
        esxVI_WaitForTaskCompletion(priv->primary, task, domain->uuid,
                                    esxVI_Occurrence_RequiredItem,
4932
                                    priv->parsedUri->autoAnswer, &taskInfoState,
4933
                                    &taskInfoErrorMessage) < 0) {
4934 4935 4936 4937
        goto cleanup;
    }

    if (taskInfoState != esxVI_TaskInfoState_Success) {
4938 4939 4940
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not change memory parameters: %s"),
                       taskInfoErrorMessage);
4941 4942 4943 4944 4945 4946 4947 4948 4949
        goto cleanup;
    }

    result = 0;

  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_VirtualMachineConfigSpec_Free(&spec);
    esxVI_ManagedObjectReference_Free(&task);
4950
    VIR_FREE(taskInfoErrorMessage);
4951 4952 4953 4954 4955 4956 4957

    return result;
}



static int
4958
esxDomainGetMemoryParameters(virDomainPtr domain, virTypedParameterPtr params,
4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987
                             int *nparams, unsigned int flags)
{
    int result = -1;
    esxPrivate *priv = domain->conn->privateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_Long *reservation = NULL;

    virCheckFlags(0, -1);

    if (*nparams == 0) {
        *nparams = 1; /* min_guarantee */
        return 0;
    }

    if (esxVI_EnsureSession(priv->primary) < 0) {
        return -1;
    }

    if (esxVI_String_AppendValueToList
          (&propertyNameList, "config.memoryAllocation.reservation") < 0 ||
        esxVI_LookupVirtualMachineByUuid(priv->primary, domain->uuid,
                                         propertyNameList, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0 ||
        esxVI_GetLong(virtualMachine, "config.memoryAllocation.reservation",
                      &reservation, esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

4988 4989 4990 4991
    /* Scale from megabytes to kilobytes */
    if (virTypedParameterAssign(params, VIR_DOMAIN_MEMORY_MIN_GUARANTEE,
                                VIR_TYPED_PARAM_ULLONG,
                                reservation->value * 1024) < 0)
4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004
        goto cleanup;

    *nparams = 1;
    result = 0;

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_Long_Free(&reservation);

    return result;
}

5005 5006
#define MATCH(FLAG) (flags & (FLAG))
static int
5007 5008 5009
esxConnectListAllDomains(virConnectPtr conn,
                         virDomainPtr **domains,
                         unsigned int flags)
5010 5011 5012
{
    int ret = -1;
    esxPrivate *priv = conn->privateData;
5013 5014
    bool needIdentity;
    bool needPowerState;
5015 5016 5017
    virDomainPtr dom;
    virDomainPtr *doms = NULL;
    size_t ndoms = 0;
5018
    esxVI_String *propertyNameList = NULL;
5019 5020
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
5021
    esxVI_AutoStartDefaults *autoStartDefaults = NULL;
5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038
    esxVI_VirtualMachinePowerState powerState;
    esxVI_AutoStartPowerInfo *powerInfoList = NULL;
    esxVI_AutoStartPowerInfo *powerInfo = NULL;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
    char *name = NULL;
    int id;
    unsigned char uuid[VIR_UUID_BUFLEN];
    int count = 0;
    bool autostart;
    int state;

    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);

    /* check for flags that would produce empty output lists:
     * - persistence: all esx machines are persistent
     * - managed save: esx doesn't support managed save
     */
5039
    if ((MATCH(VIR_CONNECT_LIST_DOMAINS_TRANSIENT) &&
5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050
         !MATCH(VIR_CONNECT_LIST_DOMAINS_PERSISTENT)) ||
        (MATCH(VIR_CONNECT_LIST_DOMAINS_MANAGEDSAVE) &&
         !MATCH(VIR_CONNECT_LIST_DOMAINS_NO_MANAGEDSAVE))) {
        if (domains &&
            VIR_ALLOC_N(*domains, 1) < 0)
            goto no_memory;

        ret = 0;
        goto cleanup;
    }

5051
    if (esxVI_EnsureSession(priv->primary) < 0)
5052 5053 5054 5055 5056
        return -1;

    /* check system default autostart value */
    if (MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_AUTOSTART)) {
        if (esxVI_LookupAutoStartDefaults(priv->primary,
5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077
                                          &autoStartDefaults) < 0) {
            goto cleanup;
        }

        if (autoStartDefaults->enabled == esxVI_Boolean_True) {
            if (esxVI_LookupAutoStartPowerInfoList(priv->primary,
                                                   &powerInfoList) < 0) {
                goto cleanup;
            }
        }
    }

    needIdentity = MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_SNAPSHOT) ||
                   domains != NULL;

    if (needIdentity) {
        /* Request required data for esxVI_GetVirtualMachineIdentity */
        if (esxVI_String_AppendValueListToList(&propertyNameList,
                                               "configStatus\0"
                                               "name\0"
                                               "config.uuid\0") < 0) {
5078
            goto cleanup;
5079 5080 5081 5082 5083 5084
        }
    }

    needPowerState = MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_ACTIVE) ||
                     MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_STATE) ||
                     domains != NULL;
5085

5086 5087 5088
    if (needPowerState) {
        if (esxVI_String_AppendValueToList(&propertyNameList,
                                           "runtime.powerState") < 0) {
5089
            goto cleanup;
5090
        }
5091 5092
    }

5093
    if (esxVI_LookupVirtualMachineList(priv->primary, propertyNameList,
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104
                                       &virtualMachineList) < 0)
        goto cleanup;

    if (domains) {
        if (VIR_ALLOC_N(doms, 1) < 0)
            goto no_memory;
        ndoms = 1;
    }

    for (virtualMachine = virtualMachineList; virtualMachine != NULL;
         virtualMachine = virtualMachine->_next) {
5105 5106
        if (needIdentity) {
            VIR_FREE(name);
5107

5108 5109 5110 5111 5112
            if (esxVI_GetVirtualMachineIdentity(virtualMachine, &id,
                                                &name, uuid) < 0) {
                goto cleanup;
            }
        }
5113

5114 5115 5116 5117 5118 5119
        if (needPowerState) {
            if (esxVI_GetVirtualMachinePowerState(virtualMachine,
                                                  &powerState) < 0) {
                goto cleanup;
            }
        }
5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130

        /* filter by active state */
        if (MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_ACTIVE) &&
            !((MATCH(VIR_CONNECT_LIST_DOMAINS_ACTIVE) &&
               powerState != esxVI_VirtualMachinePowerState_PoweredOff) ||
              (MATCH(VIR_CONNECT_LIST_DOMAINS_INACTIVE) &&
               powerState == esxVI_VirtualMachinePowerState_PoweredOff)))
            continue;

        /* filter by snapshot existence */
        if (MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_SNAPSHOT)) {
5131 5132
            esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

5133 5134 5135 5136 5137 5138
            if (esxVI_LookupRootSnapshotTreeList(priv->primary, uuid,
                                                 &rootSnapshotTreeList) < 0) {
                goto cleanup;
            }

            if (!((MATCH(VIR_CONNECT_LIST_DOMAINS_HAS_SNAPSHOT) &&
5139
                   rootSnapshotTreeList != NULL) ||
5140
                  (MATCH(VIR_CONNECT_LIST_DOMAINS_NO_SNAPSHOT) &&
5141
                   rootSnapshotTreeList == NULL)))
5142 5143 5144 5145 5146 5147 5148
                continue;
        }

        /* filter by autostart */
        if (MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_AUTOSTART)) {
            autostart = false;

5149 5150 5151 5152 5153 5154
            if (autoStartDefaults->enabled == esxVI_Boolean_True) {
                for (powerInfo = powerInfoList; powerInfo != NULL;
                     powerInfo = powerInfo->_next) {
                    if (STREQ(powerInfo->key->value, virtualMachine->obj->value)) {
                        if (STRCASEEQ(powerInfo->startAction, "powerOn"))
                            autostart = true;
5155

5156 5157
                        break;
                    }
5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170
                }
            }

            if (!((MATCH(VIR_CONNECT_LIST_DOMAINS_AUTOSTART) &&
                   autostart) ||
                  (MATCH(VIR_CONNECT_LIST_DOMAINS_NO_AUTOSTART) &&
                   !autostart)))
                continue;
        }

        /* filter by domain state */
        if (MATCH(VIR_CONNECT_LIST_DOMAINS_FILTERS_STATE)) {
            state = esxVI_VirtualMachinePowerState_ConvertToLibvirt(powerState);
5171

5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190
            if (!((MATCH(VIR_CONNECT_LIST_DOMAINS_RUNNING) &&
                   state == VIR_DOMAIN_RUNNING) ||
                  (MATCH(VIR_CONNECT_LIST_DOMAINS_PAUSED) &&
                   state == VIR_DOMAIN_PAUSED) ||
                  (MATCH(VIR_CONNECT_LIST_DOMAINS_SHUTOFF) &&
                   state == VIR_DOMAIN_SHUTOFF) ||
                  (MATCH(VIR_CONNECT_LIST_DOMAINS_OTHER) &&
                   (state != VIR_DOMAIN_RUNNING &&
                    state != VIR_DOMAIN_PAUSED &&
                    state != VIR_DOMAIN_SHUTOFF))))
                continue;
        }

        /* just count the machines */
        if (!doms) {
            count++;
            continue;
        }

5191
        if (VIR_RESIZE_N(doms, ndoms, count, 2) < 0)
5192 5193
            goto no_memory;

5194 5195 5196
        if (!(dom = virGetDomain(conn, name, uuid)))
            goto cleanup;

5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213
        /* Only running/suspended virtual machines have an ID != -1 */
        if (powerState != esxVI_VirtualMachinePowerState_PoweredOff)
            dom->id = id;
        else
            dom->id = -1;

        doms[count++] = dom;
    }

    if (doms)
        *domains = doms;
    doms = NULL;
    ret = count;

cleanup:
    if (doms) {
        for (id = 0; id < count; id++) {
5214
            virDomainFree(doms[id]);
5215
        }
5216 5217

        VIR_FREE(doms);
5218
    }
5219

5220
    VIR_FREE(name);
5221 5222
    esxVI_AutoStartDefaults_Free(&autoStartDefaults);
    esxVI_AutoStartPowerInfo_Free(&powerInfoList);
5223 5224
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);
5225 5226
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

5227 5228 5229 5230 5231 5232 5233
    return ret;

no_memory:
    virReportOOMError();
    goto cleanup;
}
#undef MATCH
5234 5235


5236
static virDriver esxDriver = {
5237 5238
    .no = VIR_DRV_ESX,
    .name = "ESX",
5239 5240 5241 5242 5243 5244
    .connectOpen = esxConnectOpen, /* 0.7.0 */
    .connectClose = esxConnectClose, /* 0.7.0 */
    .connectSupportsFeature = esxConnectSupportsFeature, /* 0.7.0 */
    .connectGetType = esxConnectGetType, /* 0.7.0 */
    .connectGetVersion = esxConnectGetVersion, /* 0.7.0 */
    .connectGetHostname = esxConnectGetHostname, /* 0.7.0 */
5245
    .nodeGetInfo = esxNodeGetInfo, /* 0.7.0 */
5246 5247 5248 5249
    .connectGetCapabilities = esxConnectGetCapabilities, /* 0.7.1 */
    .connectListDomains = esxConnectListDomains, /* 0.7.0 */
    .connectNumOfDomains = esxConnectNumOfDomains, /* 0.7.0 */
    .connectListAllDomains = esxConnectListAllDomains, /* 0.10.2 */
5250 5251 5252 5253 5254 5255
    .domainLookupByID = esxDomainLookupByID, /* 0.7.0 */
    .domainLookupByUUID = esxDomainLookupByUUID, /* 0.7.0 */
    .domainLookupByName = esxDomainLookupByName, /* 0.7.0 */
    .domainSuspend = esxDomainSuspend, /* 0.7.0 */
    .domainResume = esxDomainResume, /* 0.7.0 */
    .domainShutdown = esxDomainShutdown, /* 0.7.0 */
5256
    .domainShutdownFlags = esxDomainShutdownFlags, /* 0.9.10 */
5257 5258
    .domainReboot = esxDomainReboot, /* 0.7.0 */
    .domainDestroy = esxDomainDestroy, /* 0.7.0 */
5259
    .domainDestroyFlags = esxDomainDestroyFlags, /* 0.9.4 */
5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272
    .domainGetOSType = esxDomainGetOSType, /* 0.7.0 */
    .domainGetMaxMemory = esxDomainGetMaxMemory, /* 0.7.0 */
    .domainSetMaxMemory = esxDomainSetMaxMemory, /* 0.7.0 */
    .domainSetMemory = esxDomainSetMemory, /* 0.7.0 */
    .domainSetMemoryParameters = esxDomainSetMemoryParameters, /* 0.8.6 */
    .domainGetMemoryParameters = esxDomainGetMemoryParameters, /* 0.8.6 */
    .domainGetInfo = esxDomainGetInfo, /* 0.7.0 */
    .domainGetState = esxDomainGetState, /* 0.9.2 */
    .domainSetVcpus = esxDomainSetVcpus, /* 0.7.0 */
    .domainSetVcpusFlags = esxDomainSetVcpusFlags, /* 0.8.5 */
    .domainGetVcpusFlags = esxDomainGetVcpusFlags, /* 0.8.5 */
    .domainGetMaxVcpus = esxDomainGetMaxVcpus, /* 0.7.0 */
    .domainGetXMLDesc = esxDomainGetXMLDesc, /* 0.7.0 */
5273 5274 5275 5276
    .connectDomainXMLFromNative = esxConnectDomainXMLFromNative, /* 0.7.0 */
    .connectDomainXMLToNative = esxConnectDomainXMLToNative, /* 0.7.2 */
    .connectListDefinedDomains = esxConnectListDefinedDomains, /* 0.7.0 */
    .connectNumOfDefinedDomains = esxConnectNumOfDefinedDomains, /* 0.7.0 */
5277 5278 5279 5280
    .domainCreate = esxDomainCreate, /* 0.7.0 */
    .domainCreateWithFlags = esxDomainCreateWithFlags, /* 0.8.2 */
    .domainDefineXML = esxDomainDefineXML, /* 0.7.2 */
    .domainUndefine = esxDomainUndefine, /* 0.7.1 */
5281
    .domainUndefineFlags = esxDomainUndefineFlags, /* 0.9.4 */
5282 5283 5284 5285
    .domainGetAutostart = esxDomainGetAutostart, /* 0.9.0 */
    .domainSetAutostart = esxDomainSetAutostart, /* 0.9.0 */
    .domainGetSchedulerType = esxDomainGetSchedulerType, /* 0.7.0 */
    .domainGetSchedulerParameters = esxDomainGetSchedulerParameters, /* 0.7.0 */
5286
    .domainGetSchedulerParametersFlags = esxDomainGetSchedulerParametersFlags, /* 0.9.2 */
5287
    .domainSetSchedulerParameters = esxDomainSetSchedulerParameters, /* 0.7.0 */
5288
    .domainSetSchedulerParametersFlags = esxDomainSetSchedulerParametersFlags, /* 0.9.2 */
5289 5290 5291 5292
    .domainMigratePrepare = esxDomainMigratePrepare, /* 0.7.0 */
    .domainMigratePerform = esxDomainMigratePerform, /* 0.7.0 */
    .domainMigrateFinish = esxDomainMigrateFinish, /* 0.7.0 */
    .nodeGetFreeMemory = esxNodeGetFreeMemory, /* 0.7.2 */
5293 5294
    .connectIsEncrypted = esxConnectIsEncrypted, /* 0.7.3 */
    .connectIsSecure = esxConnectIsSecure, /* 0.7.3 */
5295 5296 5297 5298 5299 5300 5301
    .domainIsActive = esxDomainIsActive, /* 0.7.3 */
    .domainIsPersistent = esxDomainIsPersistent, /* 0.7.3 */
    .domainIsUpdated = esxDomainIsUpdated, /* 0.8.6 */
    .domainSnapshotCreateXML = esxDomainSnapshotCreateXML, /* 0.8.0 */
    .domainSnapshotGetXMLDesc = esxDomainSnapshotGetXMLDesc, /* 0.8.0 */
    .domainSnapshotNum = esxDomainSnapshotNum, /* 0.8.0 */
    .domainSnapshotListNames = esxDomainSnapshotListNames, /* 0.8.0 */
5302 5303
    .domainSnapshotNumChildren = esxDomainSnapshotNumChildren, /* 0.9.7 */
    .domainSnapshotListChildrenNames = esxDomainSnapshotListChildrenNames, /* 0.9.7 */
5304 5305
    .domainSnapshotLookupByName = esxDomainSnapshotLookupByName, /* 0.8.0 */
    .domainHasCurrentSnapshot = esxDomainHasCurrentSnapshot, /* 0.8.0 */
E
Eric Blake 已提交
5306
    .domainSnapshotGetParent = esxDomainSnapshotGetParent, /* 0.9.7 */
5307 5308
    .domainSnapshotCurrent = esxDomainSnapshotCurrent, /* 0.8.0 */
    .domainRevertToSnapshot = esxDomainRevertToSnapshot, /* 0.8.0 */
5309 5310
    .domainSnapshotIsCurrent = esxDomainSnapshotIsCurrent, /* 0.9.13 */
    .domainSnapshotHasMetadata = esxDomainSnapshotHasMetadata, /* 0.9.13 */
5311
    .domainSnapshotDelete = esxDomainSnapshotDelete, /* 0.8.0 */
5312
    .connectIsAlive = esxConnectIsAlive, /* 0.9.8 */
5313 5314 5315 5316 5317 5318 5319
};



int
esxRegister(void)
{
5320 5321 5322 5323 5324
    if (virRegisterDriver(&esxDriver) < 0 ||
        esxInterfaceRegister() < 0 ||
        esxNetworkRegister() < 0 ||
        esxStorageRegister() < 0 ||
        esxDeviceRegister() < 0 ||
M
Matthias Bolte 已提交
5325 5326
        esxSecretRegister() < 0 ||
        esxNWFilterRegister() < 0) {
5327 5328
        return -1;
    }
5329 5330 5331

    return 0;
}