esx_vi.c 81.6 KB
Newer Older
1 2 3 4

/*
 * esx_vi.c: client for the VMware VI API 2.5 to manage ESX hosts
 *
5
 * Copyright (C) 2010 Red Hat, Inc.
6
 * Copyright (C) 2009-2010 Matthias Bolte <matthias.bolte@googlemail.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 */

#include <config.h>

#include <libxml/parser.h>
#include <libxml/xpathInternals.h>

#include "buf.h"
#include "memory.h"
#include "logging.h"
#include "util.h"
#include "uuid.h"
#include "virterror_internal.h"
35
#include "xml.h"
36 37 38 39 40 41
#include "esx_vi.h"
#include "esx_vi_methods.h"
#include "esx_util.h"

#define VIR_FROM_THIS VIR_FROM_ESX

42
#define ESX_VI_ERROR(code, ...)                                               \
43
    virReportErrorHelper(NULL, VIR_FROM_ESX, code, __FILE__, __FUNCTION__,    \
44
                         __LINE__, __VA_ARGS__)
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80

#define ESX_VI__SOAP__REQUEST_HEADER                                          \
    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"                            \
    "<soapenv:Envelope "                                                      \
      "xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" "          \
      "xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\" "          \
      "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" "              \
      "xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">"                       \
    "<soapenv:Body>"

#define ESX_VI__SOAP__REQUEST_FOOTER                                          \
    "</soapenv:Body>"                                                         \
    "</soapenv:Envelope>"

#define ESX_VI__SOAP__RESPONSE_XPATH(_type)                                   \
    ((char *)"/soapenv:Envelope/soapenv:Body/"                                \
               "vim:"_type"Response/vim:returnval")

#define ESV_VI__XML_TAG__OPEN(_buffer, _element, _type)                       \
    do {                                                                      \
        virBufferAddLit(_buffer, "<");                                        \
        virBufferAdd(_buffer, _element, -1);                                  \
        virBufferAddLit(_buffer, " xmlns=\"urn:vim25\" xsi:type=\"");         \
        virBufferAdd(_buffer, _type, -1);                                     \
        virBufferAddLit(_buffer, "\">");                                      \
    } while (0)

#define ESV_VI__XML_TAG__CLOSE(_buffer, _element)                             \
    do {                                                                      \
        virBufferAddLit(_buffer, "</");                                       \
        virBufferAdd(_buffer, _element, -1);                                  \
        virBufferAddLit(_buffer, ">");                                        \
    } while (0)

#define ESX_VI__TEMPLATE__ALLOC(_type)                                        \
    int                                                                       \
81
    esxVI_##_type##_Alloc(esxVI_##_type **ptrptr)                             \
82
    {                                                                         \
83
        return esxVI_Alloc((void **)ptrptr, sizeof(esxVI_##_type));           \
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    }

#define ESX_VI__TEMPLATE__FREE(_type, _body)                                  \
    void                                                                      \
    esxVI_##_type##_Free(esxVI_##_type **ptrptr)                              \
    {                                                                         \
        esxVI_##_type *item = NULL;                                           \
                                                                              \
        if (ptrptr == NULL || *ptrptr == NULL) {                              \
            return;                                                           \
        }                                                                     \
                                                                              \
        item = *ptrptr;                                                       \
                                                                              \
        _body                                                                 \
                                                                              \
        VIR_FREE(*ptrptr);                                                    \
    }



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Context
 */

/* esxVI_Context_Alloc */
ESX_VI__TEMPLATE__ALLOC(Context);

/* esxVI_Context_Free */
ESX_VI__TEMPLATE__FREE(Context,
{
    VIR_FREE(item->url);
M
Matthias Bolte 已提交
116
    VIR_FREE(item->ipAddress);
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138

    if (item->curl_handle != NULL) {
        curl_easy_cleanup(item->curl_handle);
    }

    if (item->curl_headers != NULL) {
        curl_slist_free_all(item->curl_headers);
    }

    virMutexDestroy(&item->curl_lock);

    VIR_FREE(item->username);
    VIR_FREE(item->password);
    esxVI_ServiceContent_Free(&item->service);
    esxVI_UserSession_Free(&item->session);
    esxVI_ManagedObjectReference_Free(&item->datacenter);
    esxVI_ManagedObjectReference_Free(&item->vmFolder);
    esxVI_ManagedObjectReference_Free(&item->hostFolder);
    esxVI_SelectionSpec_Free(&item->fullTraversalSpecList);
});

static size_t
M
Matthias Bolte 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
esxVI_CURL_ReadString(char *data, size_t size, size_t nmemb, void *ptrptr)
{
    const char *content = *(const char **)ptrptr;
    size_t available = 0;
    size_t requested = size * nmemb;

    if (content == NULL) {
        return 0;
    }

    available = strlen(content);

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

    if (requested > available) {
        requested = available;
    }

    memcpy(data, content, requested);

    *(const char **)ptrptr = content + requested;

    return requested;
}

static size_t
esxVI_CURL_WriteBuffer(char *data, size_t size, size_t nmemb, void *buffer)
168 169 170 171 172 173 174 175 176 177 178 179 180 181
{
    if (buffer != NULL) {
        virBufferAdd((virBufferPtr) buffer, data, size * nmemb);

        return size * nmemb;
    }

    return 0;
}

#define ESX_VI__CURL__ENABLE_DEBUG_OUTPUT 0

#if ESX_VI__CURL__ENABLE_DEBUG_OUTPUT
static int
M
Matthias Bolte 已提交
182 183
esxVI_CURL_Debug(CURL *curl ATTRIBUTE_UNUSED, curl_infotype type,
                 char *info, size_t size, void *data ATTRIBUTE_UNUSED)
184
{
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
    char *buffer = NULL;

    /*
     * The libcurl documentation says:
     *
     *    The data pointed to by the char * passed to this function WILL NOT
     *    be zero terminated, but will be exactly of the size as told by the
     *    size_t argument.
     *
     * To handle this properly in order to pass the info string to VIR_DEBUG
     * a zero terminated copy of the info string has to be allocated.
     */
    if (VIR_ALLOC_N(buffer, size + 1) < 0) {
        return 0;
    }

    if (virStrncpy(buffer, info, size, size + 1) == NULL) {
        VIR_FREE(buffer);
        return 0;
    }

206 207
    switch (type) {
      case CURLINFO_TEXT:
208 209 210 211 212
        if (size > 0 && buffer[size - 1] == '\n') {
            buffer[size - 1] = '\0';
        }

        VIR_DEBUG("CURLINFO_TEXT [[[[%s]]]]", buffer);
213 214 215
        break;

      case CURLINFO_HEADER_IN:
216
        VIR_DEBUG("CURLINFO_HEADER_IN [[[[%s]]]]", buffer);
217 218 219
        break;

      case CURLINFO_HEADER_OUT:
220
        VIR_DEBUG("CURLINFO_HEADER_OUT [[[[%s]]]]", buffer);
221 222 223
        break;

      case CURLINFO_DATA_IN:
224
        VIR_DEBUG("CURLINFO_DATA_IN [[[[%s]]]]", buffer);
225 226 227
        break;

      case CURLINFO_DATA_OUT:
228
        VIR_DEBUG("CURLINFO_DATA_OUT [[[[%s]]]]", buffer);
229 230 231 232 233 234 235
        break;

      default:
        VIR_DEBUG0("unknown");
        break;
    }

236 237
    VIR_FREE(buffer);

238 239 240 241
    return 0;
}
#endif

242
static int
243
esxVI_CURL_Perform(esxVI_Context *ctx, const char *url)
244 245 246 247 248 249 250 251 252 253
{
    CURLcode errorCode;
    long responseCode = 0;
#if LIBCURL_VERSION_NUM >= 0x071202 /* 7.18.2 */
    const char *redirectUrl = NULL;
#endif

    errorCode = curl_easy_perform(ctx->curl_handle);

    if (errorCode != CURLE_OK) {
254
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
255 256
                     "curl_easy_perform() returned an error: %s (%d) : %s",
                     curl_easy_strerror(errorCode), errorCode, ctx->curl_error);
257 258 259 260 261 262 263
        return -1;
    }

    errorCode = curl_easy_getinfo(ctx->curl_handle, CURLINFO_RESPONSE_CODE,
                                  &responseCode);

    if (errorCode != CURLE_OK) {
264
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
265
                     "curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned an "
266 267
                     "error: %s (%d) : %s", curl_easy_strerror(errorCode),
                     errorCode, ctx->curl_error);
268 269 270 271
        return -1;
    }

    if (responseCode < 0) {
272
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
273 274 275 276 277 278 279 280 281 282 283
                     "curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned a "
                     "negative response code");
        return -1;
    }

    if (responseCode == 301) {
#if LIBCURL_VERSION_NUM >= 0x071202 /* 7.18.2 */
        errorCode = curl_easy_getinfo(ctx->curl_handle, CURLINFO_REDIRECT_URL,
                                      &redirectUrl);

        if (errorCode != CURLE_OK) {
284
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
285
                         "curl_easy_getinfo(CURLINFO_REDIRECT_URL) returned "
286 287
                         "an error: %s (%d) : %s", curl_easy_strerror(errorCode),
                         errorCode, ctx->curl_error);
288
        } else {
289
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
290 291 292 293
                         "The server redirects from '%s' to '%s'", url,
                         redirectUrl);
        }
#else
294
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
295 296 297 298 299 300 301 302 303
                     "The server redirects from '%s'", url);
#endif

        return -1;
    }

    return responseCode;
}

304
int
305
esxVI_Context_Connect(esxVI_Context *ctx, const char *url,
M
Matthias Bolte 已提交
306 307
                      const char *ipAddress, const char *username,
                      const char *password, int noVerify)
308 309 310 311 312 313
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *datacenterList = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;

M
Matthias Bolte 已提交
314 315 316
    if (ctx == NULL || url == NULL || ipAddress == NULL || username == NULL ||
        password == NULL || ctx->url != NULL || ctx->service != NULL ||
        ctx->curl_handle != NULL || ctx->curl_headers != NULL) {
317
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
318 319 320
        goto failure;
    }

321 322
    if (esxVI_String_DeepCopyValue(&ctx->url, url) < 0 ||
        esxVI_String_DeepCopyValue(&ctx->ipAddress, ipAddress) < 0) {
323 324 325 326 327 328
        goto failure;
    }

    ctx->curl_handle = curl_easy_init();

    if (ctx->curl_handle == NULL) {
329
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Could not initialize CURL");
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
        goto failure;
    }

    ctx->curl_headers = curl_slist_append(ctx->curl_headers, "Content-Type: "
                                          "text/xml; charset=UTF-8");

    /*
     * Add a dummy expect header to stop CURL from waiting for a response code
     * 100 (Continue) from the server before continuing the POST operation.
     * Waiting for this response would slowdown each communication with the
     * server by approx. 2 sec, because the server doesn't send the expected
     * 100 (Continue) response and the wait times out resulting in wasting
     * approx. 2 sec per POST operation.
     */
    ctx->curl_headers = curl_slist_append(ctx->curl_headers,
                                          "Expect: nothing");

    if (ctx->curl_headers == NULL) {
348
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Could not build CURL header list");
349 350 351 352 353 354
        goto failure;
    }

    curl_easy_setopt(ctx->curl_handle, CURLOPT_URL, ctx->url);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_USERAGENT, "libvirt-esx");
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HEADER, 0);
355
    curl_easy_setopt(ctx->curl_handle, CURLOPT_FOLLOWLOCATION, 0);
356
    curl_easy_setopt(ctx->curl_handle, CURLOPT_SSL_VERIFYPEER, noVerify ? 0 : 1);
357
    curl_easy_setopt(ctx->curl_handle, CURLOPT_SSL_VERIFYHOST, noVerify ? 0 : 2);
358 359
    curl_easy_setopt(ctx->curl_handle, CURLOPT_COOKIEFILE, "");
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HTTPHEADER, ctx->curl_headers);
M
Matthias Bolte 已提交
360 361
    curl_easy_setopt(ctx->curl_handle, CURLOPT_READFUNCTION,
                     esxVI_CURL_ReadString);
362
    curl_easy_setopt(ctx->curl_handle, CURLOPT_WRITEFUNCTION,
M
Matthias Bolte 已提交
363
                     esxVI_CURL_WriteBuffer);
364 365
    curl_easy_setopt(ctx->curl_handle, CURLOPT_ERRORBUFFER,
                     ctx->curl_error);
366
#if ESX_VI__CURL__ENABLE_DEBUG_OUTPUT
367 368
    curl_easy_setopt(ctx->curl_handle, CURLOPT_DEBUGFUNCTION, esxVI_CURL_Debug);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_VERBOSE, 1);
369 370 371
#endif

    if (virMutexInit(&ctx->curl_lock) < 0) {
372
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Could not initialize CURL mutex");
373 374 375 376 377 378 379
        goto failure;
    }

    ctx->username = strdup(username);
    ctx->password = strdup(password);

    if (ctx->username == NULL || ctx->password == NULL) {
380
        virReportOOMError();
381 382 383
        goto failure;
    }

384
    if (esxVI_RetrieveServiceContent(ctx, &ctx->service) < 0) {
385 386 387
        goto failure;
    }

388 389 390
    if (STREQ(ctx->service->about->apiType, "HostAgent") ||
        STREQ(ctx->service->about->apiType, "VirtualCenter")) {
        if (STRPREFIX(ctx->service->about->apiVersion, "2.5")) {
391
            ctx->apiVersion = esxVI_APIVersion_25;
392
        } else if (STRPREFIX(ctx->service->about->apiVersion, "4.0")) {
393
            ctx->apiVersion = esxVI_APIVersion_40;
394
        } else {
395
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
396 397
                         "Expecting VI API major/minor version '2.5' or '4.0' "
                         "but found '%s'", ctx->service->about->apiVersion);
398 399
            goto failure;
        }
400

401 402 403 404
        if (STREQ(ctx->service->about->productLineId, "gsx")) {
            if (STRPREFIX(ctx->service->about->version, "2.0")) {
                ctx->productVersion = esxVI_ProductVersion_GSX20;
            } else {
405
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
406 407 408 409 410 411 412 413 414 415 416
                             "Expecting GSX major/minor version '2.0' but "
                             "found '%s'", ctx->service->about->version);
                goto failure;
            }
        } else if (STREQ(ctx->service->about->productLineId, "esx") ||
                   STREQ(ctx->service->about->productLineId, "embeddedEsx")) {
            if (STRPREFIX(ctx->service->about->version, "3.5")) {
                ctx->productVersion = esxVI_ProductVersion_ESX35;
            } else if (STRPREFIX(ctx->service->about->version, "4.0")) {
                ctx->productVersion = esxVI_ProductVersion_ESX40;
            } else {
417
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
418 419 420 421 422 423 424 425 426 427 428
                             "Expecting ESX major/minor version '3.5' or "
                             "'4.0' but found '%s'",
                             ctx->service->about->version);
                goto failure;
            }
        } else if (STREQ(ctx->service->about->productLineId, "vpx")) {
            if (STRPREFIX(ctx->service->about->version, "2.5")) {
                ctx->productVersion = esxVI_ProductVersion_VPX25;
            } else if (STRPREFIX(ctx->service->about->version, "4.0")) {
                ctx->productVersion = esxVI_ProductVersion_VPX40;
            } else {
429
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
430 431 432 433
                             "Expecting VPX major/minor version '2.5' or '4.0' "
                             "but found '%s'", ctx->service->about->version);
                goto failure;
            }
434
        } else {
435
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
436 437 438
                         "Expecting product 'gsx' or 'esx' or 'embeddedEsx' "
                         "or 'vpx' but found '%s'",
                         ctx->service->about->productLineId);
439 440 441
            goto failure;
        }
    } else {
442
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
443 444 445 446 447
                     "Expecting VI API type 'HostAgent' or 'VirtualCenter' "
                     "but found '%s'", ctx->service->about->apiType);
        goto failure;
    }

448
    if (esxVI_Login(ctx, username, password, &ctx->session) < 0) {
449 450 451
        goto failure;
    }

452
    esxVI_BuildFullTraversalSpecList(&ctx->fullTraversalSpecList);
453

454
    if (esxVI_String_AppendValueListToList(&propertyNameList,
455 456 457 458 459 460
                                           "vmFolder\0"
                                           "hostFolder\0") < 0) {
        goto failure;
    }

    /* Get pointer to Datacenter for later use */
461
    if (esxVI_LookupObjectContentByType(ctx, ctx->service->rootFolder,
462 463 464
                                        "Datacenter", propertyNameList,
                                        esxVI_Boolean_True,
                                        &datacenterList) < 0) {
465 466 467 468
        goto failure;
    }

    if (datacenterList == NULL) {
469
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
470 471 472 473 474 475 476 477 478 479 480 481 482
                     "Could not retrieve the 'datacenter' object from the VI "
                     "host/center");
        goto failure;
    }

    ctx->datacenter = datacenterList->obj;
    datacenterList->obj = NULL;

    /* Get pointer to vmFolder and hostFolder for later use */
    for (dynamicProperty = datacenterList->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "vmFolder")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
483
                  (dynamicProperty->val, &ctx->vmFolder)) {
484 485 486 487
                goto failure;
            }
        } else if (STREQ(dynamicProperty->name, "hostFolder")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
488
                  (dynamicProperty->val, &ctx->hostFolder)) {
489 490 491 492 493 494 495 496
                goto failure;
            }
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    if (ctx->vmFolder == NULL || ctx->hostFolder == NULL) {
497
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
498
                     "The 'datacenter' object is missing the "
M
Matthias Bolte 已提交
499
                     "'vmFolder'/'hostFolder' property");
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
        goto failure;
    }

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

    return result;

  failure:
    result = -1;

    goto cleanup;
}

int
516
esxVI_Context_DownloadFile(esxVI_Context *ctx, const char *url, char **content)
517 518
{
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
519
    int responseCode = 0;
520 521

    if (content == NULL || *content != NULL) {
522
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
523 524 525 526 527 528 529
        goto failure;
    }

    virMutexLock(&ctx->curl_lock);

    curl_easy_setopt(ctx->curl_handle, CURLOPT_URL, url);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_WRITEDATA, &buffer);
M
Matthias Bolte 已提交
530
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 0);
531 532
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HTTPGET, 1);

533
    responseCode = esxVI_CURL_Perform(ctx, url);
534

535
    virMutexUnlock(&ctx->curl_lock);
536

537 538 539
    if (responseCode < 0) {
        goto failure;
    } else if (responseCode != 200) {
540
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
541
                     "HTTP response code %d for download from '%s'",
542 543
                     responseCode, url);
        goto failure;
544 545 546
    }

    if (virBufferError(&buffer)) {
547
        virReportOOMError();
548 549 550 551 552 553 554 555
        goto failure;
    }

    *content = virBufferContentAndReset(&buffer);

    return 0;

  failure:
556
    virBufferFreeAndReset(&buffer);
557 558 559 560

    return -1;
}

M
Matthias Bolte 已提交
561
int
562 563
esxVI_Context_UploadFile(esxVI_Context *ctx, const char *url,
                         const char *content)
M
Matthias Bolte 已提交
564
{
565
    int responseCode = 0;
M
Matthias Bolte 已提交
566 567

    if (content == NULL) {
568
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
M
Matthias Bolte 已提交
569 570 571 572 573 574 575 576 577 578
        return -1;
    }

    virMutexLock(&ctx->curl_lock);

    curl_easy_setopt(ctx->curl_handle, CURLOPT_URL, url);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_READDATA, &content);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 1);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_INFILESIZE, strlen(content));

579
    responseCode = esxVI_CURL_Perform(ctx, url);
M
Matthias Bolte 已提交
580 581 582

    virMutexUnlock(&ctx->curl_lock);

583 584 585
    if (responseCode < 0) {
        return -1;
    } else if (responseCode != 200 && responseCode != 201) {
586
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
587
                     "HTTP response code %d for upload to '%s'",
588
                     responseCode, url);
M
Matthias Bolte 已提交
589 590 591 592 593 594
        return -1;
    }

    return 0;
}

595
int
596 597 598
esxVI_Context_Execute(esxVI_Context *ctx, const char *methodName,
                      const char *request, esxVI_Response **response,
                      esxVI_Occurrence occurrence)
599
{
600
    int result = 0;
601 602
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    esxVI_Fault *fault = NULL;
603 604 605
    char *xpathExpression = NULL;
    xmlXPathContextPtr xpathContext = NULL;
    xmlNodePtr responseNode = NULL;
606

607
    if (request == NULL || response == NULL || *response != NULL) {
608
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
609 610 611
        goto failure;
    }

612
    if (esxVI_Response_Alloc(response) < 0) {
613 614 615 616 617 618 619
        goto failure;
    }

    virMutexLock(&ctx->curl_lock);

    curl_easy_setopt(ctx->curl_handle, CURLOPT_URL, ctx->url);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_WRITEDATA, &buffer);
M
Matthias Bolte 已提交
620
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 0);
621 622
    curl_easy_setopt(ctx->curl_handle, CURLOPT_POSTFIELDS, request);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_POSTFIELDSIZE, strlen(request));
623

624
    (*response)->responseCode = esxVI_CURL_Perform(ctx, ctx->url);
625

626
    virMutexUnlock(&ctx->curl_lock);
627

628 629
    if ((*response)->responseCode < 0) {
        goto failure;
630 631 632
    }

    if (virBufferError(&buffer)) {
633
        virReportOOMError();
634 635 636
        goto failure;
    }

637
    (*response)->content = virBufferContentAndReset(&buffer);
638

639
    if ((*response)->responseCode == 500 || (*response)->responseCode == 200) {
640 641
        (*response)->document = xmlReadDoc(BAD_CAST (*response)->content, "",
                                           NULL, XML_PARSE_NONET);
642

643
        if ((*response)->document == NULL) {
644
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
645 646
                         "Response for call to '%s' could not be parsed",
                         methodName);
647 648 649
            goto failure;
        }

650
        if (xmlDocGetRootElement((*response)->document) == NULL) {
651
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
652 653
                         "Response for call to '%s' is an empty XML document",
                         methodName);
654 655 656
            goto failure;
        }

657
        xpathContext = xmlXPathNewContext((*response)->document);
658

659
        if (xpathContext == NULL) {
660
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
661 662 663 664
                         "Could not create XPath context");
            goto failure;
        }

665
        xmlXPathRegisterNs(xpathContext, BAD_CAST "soapenv",
666
                           BAD_CAST "http://schemas.xmlsoap.org/soap/envelope/");
667
        xmlXPathRegisterNs(xpathContext, BAD_CAST "vim", BAD_CAST "urn:vim25");
668

669 670
        if ((*response)->responseCode == 500) {
            (*response)->node =
671
              virXPathNode("/soapenv:Envelope/soapenv:Body/soapenv:Fault",
672
                           xpathContext);
673

674
            if ((*response)->node == NULL) {
675
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
676 677 678
                             "HTTP response code %d for call to '%s'. "
                             "Fault is unknown, XPath evaluation failed",
                             (*response)->responseCode, methodName);
679 680 681
                goto failure;
            }

682 683
            if (esxVI_Fault_Deserialize((*response)->node, &fault) < 0) {
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
684 685 686
                             "HTTP response code %d for call to '%s'. "
                             "Fault is unknown, deserialization failed",
                             (*response)->responseCode, methodName);
687 688 689
                goto failure;
            }

690
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
691 692 693
                         "HTTP response code %d for call to '%s'. "
                         "Fault: %s - %s", (*response)->responseCode,
                         methodName, fault->faultcode, fault->faultstring);
694 695 696 697 698 699

            /* FIXME: Dump raw response until detail part gets deserialized */
            VIR_DEBUG("HTTP response code %d for call to '%s' [[[[%s]]]]",
                      (*response)->responseCode, methodName,
                      (*response)->content);

700
            goto failure;
701 702 703 704
        } else {
            if (virAsprintf(&xpathExpression,
                            "/soapenv:Envelope/soapenv:Body/vim:%sResponse",
                            methodName) < 0) {
705
                virReportOOMError();
706 707
                goto failure;
            }
708

709
            responseNode = virXPathNode(xpathExpression, xpathContext);
710

711
            if (responseNode == NULL) {
712
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
713 714
                             "XPath evaluation of response for call to '%s' "
                             "failed", methodName);
715 716 717
                goto failure;
            }

718
            xpathContext->node = responseNode;
719
            (*response)->node = virXPathNode("./vim:returnval", xpathContext);
720

721 722
            switch (occurrence) {
              case esxVI_Occurrence_RequiredItem:
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
                if ((*response)->node == NULL) {
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                                 "Call to '%s' returned an empty result, "
                                 "expecting a non-empty result", methodName);
                    goto failure;
                } else if ((*response)->node->next != NULL) {
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                                 "Call to '%s' returned a list, expecting "
                                 "exactly one item", methodName);
                    goto failure;
                }

                break;

              case esxVI_Occurrence_RequiredList:
738
                if ((*response)->node == NULL) {
739
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
740 741 742 743 744 745 746 747 748 749
                                 "Call to '%s' returned an empty result, "
                                 "expecting a non-empty result", methodName);
                    goto failure;
                }

                break;

              case esxVI_Occurrence_OptionalItem:
                if ((*response)->node != NULL &&
                    (*response)->node->next != NULL) {
750
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
751 752 753 754 755 756 757
                                 "Call to '%s' returned a list, expecting "
                                 "exactly one item", methodName);
                    goto failure;
                }

                break;

758
              case esxVI_Occurrence_OptionalList:
759 760 761 762 763
                /* Any amount of items is valid */
                break;

              case esxVI_Occurrence_None:
                if ((*response)->node != NULL) {
764
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
765 766 767 768 769 770 771 772
                                 "Call to '%s' returned something, expecting "
                                 "an empty result", methodName);
                    goto failure;
                }

                break;

              default:
773
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
774
                             "Invalid argument (occurrence)");
775 776
                goto failure;
            }
777
        }
778
    } else {
779
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
780 781
                     "HTTP response code %d for call to '%s'",
                     (*response)->responseCode, methodName);
782 783 784
        goto failure;
    }

785 786 787 788 789
  cleanup:
    VIR_FREE(xpathExpression);
    xmlXPathFreeContext(xpathContext);

    return result;
790 791

  failure:
792
    virBufferFreeAndReset(&buffer);
793
    esxVI_Response_Free(response);
794 795
    esxVI_Fault_Free(&fault);

796 797 798
    result = -1;

    goto cleanup;
799 800 801 802 803
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
804
 * Response
805 806
 */

807 808
/* esxVI_Response_Alloc */
ESX_VI__TEMPLATE__ALLOC(Response);
809

810 811
/* esxVI_Response_Free */
ESX_VI__TEMPLATE__FREE(Response,
812
{
813
    VIR_FREE(item->content);
814 815 816 817 818 819 820 821 822 823 824 825 826

    if (item->document != NULL) {
        xmlFreeDoc(item->document);
    }
});



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Enumeration
 */

int
827
esxVI_Enumeration_CastFromAnyType(const esxVI_Enumeration *enumeration,
828 829 830 831 832
                                  esxVI_AnyType *anyType, int *value)
{
    int i;

    if (anyType == NULL || value == NULL) {
833
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
834 835 836 837 838
        return -1;
    }

    *value = 0; /* undefined */

839
    if (anyType->type != enumeration->type) {
840
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
841 842 843
                     "Expecting type '%s' but found '%s'",
                     esxVI_Type_ToString(enumeration->type),
                     esxVI_Type_ToString(anyType->type));
844 845 846 847 848 849 850 851 852 853
        return -1;
    }

    for (i = 0; enumeration->values[i].name != NULL; ++i) {
        if (STREQ(anyType->value, enumeration->values[i].name)) {
            *value = enumeration->values[i].value;
            return 0;
        }
    }

854
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
855
                 "Unknown value '%s' for %s", anyType->value,
856
                 esxVI_Type_ToString(enumeration->type));
857 858 859 860 861

    return -1;
}

int
862
esxVI_Enumeration_Serialize(const esxVI_Enumeration *enumeration,
863
                            int value, const char *element, virBufferPtr output)
864 865 866 867 868
{
    int i;
    const char *name = NULL;

    if (element == NULL || output == NULL) {
869
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
870 871 872 873
        return -1;
    }

    if (value == 0) { /* undefined */
874
        return 0;
875 876 877 878 879 880 881 882 883 884
    }

    for (i = 0; enumeration->values[i].name != NULL; ++i) {
        if (value == enumeration->values[i].value) {
            name = enumeration->values[i].name;
            break;
        }
    }

    if (name == NULL) {
885
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
886 887 888
        return -1;
    }

889 890
    ESV_VI__XML_TAG__OPEN(output, element,
                          esxVI_Type_ToString(enumeration->type));
891 892 893 894 895 896 897 898 899

    virBufferAdd(output, name, -1);

    ESV_VI__XML_TAG__CLOSE(output, element);

    return 0;
}

int
900
esxVI_Enumeration_Deserialize(const esxVI_Enumeration *enumeration,
901 902 903 904 905 906 907
                              xmlNodePtr node, int *value)
{
    int i;
    int result = 0;
    char *name = NULL;

    if (value == NULL) {
908
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
909 910 911 912 913
        goto failure;
    }

    *value = 0; /* undefined */

914
    if (esxVI_String_DeserializeValue(node, &name) < 0) {
915 916 917 918 919 920 921 922 923 924
        goto failure;
    }

    for (i = 0; enumeration->values[i].name != NULL; ++i) {
        if (STREQ(name, enumeration->values[i].name)) {
            *value = enumeration->values[i].value;
            goto cleanup;
        }
    }

925
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Unknown value '%s' for %s",
926
                 name, esxVI_Type_ToString(enumeration->type));
927 928 929 930 931 932 933 934

  cleanup:
    VIR_FREE(name);

    return result;

  failure:
    result = -1;
M
Matthias Bolte 已提交
935

936
    goto cleanup;
937 938 939 940 941 942 943 944 945
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * List
 */

int
946
esxVI_List_Append(esxVI_List **list, esxVI_List *item)
947 948 949 950
{
    esxVI_List *next = NULL;

    if (list == NULL || item == NULL) {
951
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
        return -1;
    }

    if (*list == NULL) {
        *list = item;
        return 0;
    }

    next = *list;

    while (next->_next != NULL) {
        next = next->_next;
    }

    next->_next = item;

    return 0;
}

int
972
esxVI_List_DeepCopy(esxVI_List **destList, esxVI_List *srcList,
973 974 975 976 977 978 979
                    esxVI_List_DeepCopyFunc deepCopyFunc,
                    esxVI_List_FreeFunc freeFunc)
{
    esxVI_List *dest = NULL;
    esxVI_List *src = NULL;

    if (destList == NULL || *destList != NULL) {
980
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
981 982 983 984
        goto failure;
    }

    for (src = srcList; src != NULL; src = src->_next) {
985 986
        if (deepCopyFunc(&dest, src) < 0 ||
            esxVI_List_Append(destList, dest) < 0) {
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
            goto failure;
        }

        dest = NULL;
    }

    return 0;

  failure:
    freeFunc(&dest);
    freeFunc(destList);

    return -1;
}

1002
int
1003
esxVI_List_CastFromAnyType(esxVI_AnyType *anyType, esxVI_List **list,
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
                           esxVI_List_CastFromAnyTypeFunc castFromAnyTypeFunc,
                           esxVI_List_FreeFunc freeFunc)
{
    int result = 0;
    xmlNodePtr childNode = NULL;
    esxVI_AnyType *childAnyType = NULL;
    esxVI_List *item = NULL;

    if (list == NULL || *list != NULL ||
        castFromAnyTypeFunc == NULL || freeFunc == NULL) {
1014
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1015
        return -1;
1016 1017 1018 1019 1020 1021 1022
    }

    if (anyType == NULL) {
        return 0;
    }

    if (! STRPREFIX(anyType->other, "ArrayOf")) {
1023
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1024 1025
                     "Expecting type to begin with 'ArrayOf' but found '%s'",
                     anyType->other);
1026
        return -1;
1027 1028
    }

1029
    for (childNode = anyType->node->children; childNode != NULL;
1030 1031
         childNode = childNode->next) {
        if (childNode->type != XML_ELEMENT_NODE) {
1032
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1033 1034 1035 1036 1037 1038
                         "Wrong XML element type %d", childNode->type);
            goto failure;
        }

        esxVI_AnyType_Free(&childAnyType);

1039 1040 1041
        if (esxVI_AnyType_Deserialize(childNode, &childAnyType) < 0 ||
            castFromAnyTypeFunc(childAnyType, &item) < 0 ||
            esxVI_List_Append(list, item) < 0) {
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
            goto failure;
        }

        item = NULL;
    }

  cleanup:
    esxVI_AnyType_Free(&childAnyType);

    return result;

  failure:
1054
    freeFunc(&item);
1055 1056 1057 1058 1059 1060 1061
    freeFunc(list);

    result = -1;

    goto cleanup;
}

1062
int
1063
esxVI_List_Serialize(esxVI_List *list, const char *element,
1064
                     virBufferPtr output,
1065 1066 1067 1068 1069
                     esxVI_List_SerializeFunc serializeFunc)
{
    esxVI_List *item = NULL;

    if (element == NULL || output == NULL || serializeFunc == NULL) {
1070
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1071 1072 1073 1074
        return -1;
    }

    if (list == NULL) {
1075
        return 0;
1076 1077 1078
    }

    for (item = list; item != NULL; item = item->_next) {
1079
        if (serializeFunc(item, element, output) < 0) {
1080 1081 1082 1083 1084 1085 1086 1087
            return -1;
        }
    }

    return 0;
}

int
1088
esxVI_List_Deserialize(xmlNodePtr node, esxVI_List **list,
1089 1090 1091 1092 1093 1094 1095
                       esxVI_List_DeserializeFunc deserializeFunc,
                       esxVI_List_FreeFunc freeFunc)
{
    esxVI_List *item = NULL;

    if (list == NULL || *list != NULL ||
        deserializeFunc == NULL || freeFunc == NULL) {
1096
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1097 1098 1099 1100 1101 1102 1103 1104 1105
        return -1;
    }

    if (node == NULL) {
        return 0;
    }

    for (; node != NULL; node = node->next) {
        if (node->type != XML_ELEMENT_NODE) {
1106
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1107 1108 1109 1110
                         "Wrong XML element type %d", node->type);
            goto failure;
        }

1111 1112
        if (deserializeFunc(node, &item) < 0 ||
            esxVI_List_Append(list, item) < 0) {
1113 1114 1115
            goto failure;
        }

1116
        item = NULL;
1117 1118 1119 1120 1121
    }

    return 0;

  failure:
1122
    freeFunc(&item);
1123 1124 1125 1126 1127 1128 1129 1130 1131
    freeFunc(list);

    return -1;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Utility and Convenience Functions
1132 1133 1134 1135
 *
 * Function naming scheme:
 *  - 'lookup' functions query the ESX or vCenter for information
 *  - 'get' functions get information from a local object
1136 1137 1138
 */

int
1139
esxVI_Alloc(void **ptrptr, size_t size)
1140 1141
{
    if (ptrptr == NULL || *ptrptr != NULL) {
1142
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1143 1144 1145 1146
        return -1;
    }

    if (virAllocN(ptrptr, size, 1) < 0) {
1147
        virReportOOMError();
1148 1149 1150 1151 1152 1153
        return -1;
    }

    return 0;
}

1154 1155


1156
int
1157
esxVI_BuildFullTraversalSpecItem(esxVI_SelectionSpec **fullTraversalSpecList,
1158 1159 1160 1161 1162 1163 1164 1165
                                 const char *name, const char *type,
                                 const char *path, const char *selectSetNames)
{
    esxVI_TraversalSpec *traversalSpec = NULL;
    esxVI_SelectionSpec *selectionSpec = NULL;
    const char *currentSelectSetName = NULL;

    if (fullTraversalSpecList == NULL) {
1166
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1167 1168 1169
        return -1;
    }

1170
    if (esxVI_TraversalSpec_Alloc(&traversalSpec) < 0 ||
1171
        esxVI_String_DeepCopyValue(&traversalSpec->name, name) < 0 ||
1172 1173
        esxVI_String_DeepCopyValue(&traversalSpec->type, type) < 0 ||
        esxVI_String_DeepCopyValue(&traversalSpec->path, path) < 0) {
1174 1175 1176 1177 1178 1179 1180 1181 1182
        goto failure;
    }

    traversalSpec->skip = esxVI_Boolean_False;

    if (selectSetNames != NULL) {
        currentSelectSetName = selectSetNames;

        while (currentSelectSetName != NULL && *currentSelectSetName != '\0') {
1183 1184
            if (esxVI_SelectionSpec_Alloc(&selectionSpec) < 0 ||
                esxVI_String_DeepCopyValue(&selectionSpec->name,
1185
                                           currentSelectSetName) < 0 ||
1186
                esxVI_SelectionSpec_AppendToList(&traversalSpec->selectSet,
1187 1188 1189 1190
                                                 selectionSpec) < 0) {
                goto failure;
            }

1191
            selectionSpec = NULL;
1192 1193 1194 1195
            currentSelectSetName += strlen(currentSelectSetName) + 1;
        }
    }

1196
    if (esxVI_SelectionSpec_AppendToList(fullTraversalSpecList,
1197 1198
                                         esxVI_SelectionSpec_DynamicCast
                                           (traversalSpec)) < 0) {
1199 1200 1201 1202 1203 1204 1205
        goto failure;
    }

    return 0;

  failure:
    esxVI_TraversalSpec_Free(&traversalSpec);
1206
    esxVI_SelectionSpec_Free(&selectionSpec);
1207 1208 1209 1210 1211 1212 1213

    return -1;
}



int
1214
esxVI_BuildFullTraversalSpecList(esxVI_SelectionSpec **fullTraversalSpecList)
1215 1216
{
    if (fullTraversalSpecList == NULL || *fullTraversalSpecList != NULL) {
1217
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1218 1219 1220
        return -1;
    }

1221
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1222 1223 1224
                                         "visitFolders",
                                         "Folder", "childEntity",
                                         "visitFolders\0"
M
Matthias Bolte 已提交
1225
                                         "datacenterToDatastore\0"
1226 1227 1228 1229
                                         "datacenterToVmFolder\0"
                                         "datacenterToHostFolder\0"
                                         "computeResourceToHost\0"
                                         "computeResourceToResourcePool\0"
M
Matthias Bolte 已提交
1230
                                         "hostSystemToVm\0"
1231 1232 1233 1234
                                         "resourcePoolToVm\0") < 0) {
        goto failure;
    }

M
Matthias Bolte 已提交
1235
    /* Traversal through datastore branch */
1236
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
M
Matthias Bolte 已提交
1237 1238 1239 1240 1241 1242
                                         "datacenterToDatastore",
                                         "Datacenter", "datastore",
                                         NULL) < 0) {
        goto failure;
    }

1243
    /* Traversal through vmFolder branch */
1244
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1245 1246 1247 1248 1249 1250 1251
                                         "datacenterToVmFolder",
                                         "Datacenter", "vmFolder",
                                         "visitFolders\0") < 0) {
        goto failure;
    }

    /* Traversal through hostFolder branch  */
1252
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1253 1254 1255 1256 1257 1258 1259
                                         "datacenterToHostFolder",
                                         "Datacenter", "hostFolder",
                                         "visitFolders\0") < 0) {
        goto failure;
    }

    /* Traversal through host branch  */
1260
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1261 1262 1263 1264 1265 1266 1267
                                         "computeResourceToHost",
                                         "ComputeResource", "host",
                                         NULL) < 0) {
        goto failure;
    }

    /* Traversal through resourcePool branch */
1268
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1269 1270 1271 1272 1273 1274 1275 1276
                                         "computeResourceToResourcePool",
                                         "ComputeResource", "resourcePool",
                                         "resourcePoolToResourcePool\0"
                                         "resourcePoolToVm\0") < 0) {
        goto failure;
    }

    /* Recurse through all resource pools */
1277
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1278 1279 1280 1281 1282 1283 1284 1285
                                         "resourcePoolToResourcePool",
                                         "ResourcePool", "resourcePool",
                                         "resourcePoolToResourcePool\0"
                                         "resourcePoolToVm\0") < 0) {
        goto failure;
    }

    /* Recurse through all hosts */
1286
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
M
Matthias Bolte 已提交
1287
                                         "hostSystemToVm",
1288 1289 1290 1291 1292 1293
                                         "HostSystem", "vm",
                                         "visitFolders\0") < 0) {
        goto failure;
    }

    /* Recurse through all resource pools */
1294
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
                                         "resourcePoolToVm",
                                         "ResourcePool", "vm", NULL) < 0) {
        goto failure;
    }

    return 0;

  failure:
    esxVI_SelectionSpec_Free(fullTraversalSpecList);

    return -1;
}



/*
 * Can't use the SessionIsActive() function here, because at least
 * 'ESX Server 3.5.0 build-64607' returns an 'method not implemented' fault if
 * you try to call it. Query the session manager for the current session of
 * this connection instead and re-login if there is no current session for this
 * connection.
1316 1317
 *
 * Update: 'ESX 4.0.0 build-171294' doesn't implement this method.
1318 1319 1320 1321
 */
#define ESX_VI_USE_SESSION_IS_ACTIVE 0

int
1322
esxVI_EnsureSession(esxVI_Context *ctx)
1323 1324 1325 1326
{
#if ESX_VI_USE_SESSION_IS_ACTIVE
    esxVI_Boolean active = esxVI_Boolean_Undefined;
#else
1327
    int result = 0;
1328 1329 1330 1331 1332 1333 1334
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *sessionManager = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_UserSession *currentSession = NULL;
#endif

    if (ctx->session == NULL) {
1335
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid call");
1336 1337 1338 1339
        return -1;
    }

#if ESX_VI_USE_SESSION_IS_ACTIVE
1340 1341
    if (esxVI_SessionIsActive(ctx, ctx->session->key, ctx->session->userName,
                              &active) < 0) {
1342 1343 1344 1345 1346 1347
        return -1;
    }

    if (active != esxVI_Boolean_True) {
        esxVI_UserSession_Free(&ctx->session);

1348
        if (esxVI_Login(ctx, ctx->username, ctx->password,
1349 1350 1351 1352
                        &ctx->session) < 0) {
            return -1;
        }
    }
1353 1354

    return 0;
1355
#else
1356
    if (esxVI_String_AppendValueToList(&propertyNameList,
1357
                                       "currentSession") < 0 ||
1358
        esxVI_LookupObjectContentByType(ctx, ctx->service->sessionManager,
1359 1360 1361
                                        "SessionManager", propertyNameList,
                                        esxVI_Boolean_False,
                                        &sessionManager) < 0) {
1362 1363 1364 1365 1366 1367
        goto failure;
    }

    for (dynamicProperty = sessionManager->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "currentSession")) {
1368
            if (esxVI_UserSession_CastFromAnyType(dynamicProperty->val,
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381
                                                  &currentSession) < 0) {
                goto failure;
            }

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

    if (currentSession == NULL) {
        esxVI_UserSession_Free(&ctx->session);

1382
        if (esxVI_Login(ctx, ctx->username, ctx->password, &ctx->session) < 0) {
1383 1384 1385
            goto failure;
        }
    } else if (STRNEQ(ctx->session->key, currentSession->key)) {
1386
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
                     "Key of the current session differs from the key at "
                     "last login");
        goto failure;
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&sessionManager);
    esxVI_UserSession_Free(&currentSession);

    return result;

  failure:
    result = -1;

    goto cleanup;
1403
#endif
1404 1405 1406 1407 1408
}



int
1409
esxVI_LookupObjectContentByType(esxVI_Context *ctx,
1410 1411 1412 1413 1414
                                esxVI_ManagedObjectReference *root,
                                const char *type,
                                esxVI_String *propertyNameList,
                                esxVI_Boolean recurse,
                                esxVI_ObjectContent **objectContentList)
1415 1416 1417 1418 1419 1420 1421
{
    int result = 0;
    esxVI_ObjectSpec *objectSpec = NULL;
    esxVI_PropertySpec *propertySpec = NULL;
    esxVI_PropertyFilterSpec *propertyFilterSpec = NULL;

    if (ctx->fullTraversalSpecList == NULL) {
1422
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid call");
1423 1424 1425
        return -1;
    }

1426
    if (esxVI_ObjectSpec_Alloc(&objectSpec) < 0) {
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
        goto failure;
    }

    objectSpec->obj = root;
    objectSpec->skip = esxVI_Boolean_False;

    if (recurse == esxVI_Boolean_True) {
        objectSpec->selectSet = ctx->fullTraversalSpecList;
    }

1437
    if (esxVI_PropertySpec_Alloc(&propertySpec) < 0) {
1438 1439 1440 1441 1442 1443
        goto failure;
    }

    propertySpec->type = (char *)type;
    propertySpec->pathSet = propertyNameList;

1444 1445
    if (esxVI_PropertyFilterSpec_Alloc(&propertyFilterSpec) < 0 ||
        esxVI_PropertySpec_AppendToList(&propertyFilterSpec->propSet,
1446
                                        propertySpec) < 0 ||
1447
        esxVI_ObjectSpec_AppendToList(&propertyFilterSpec->objectSet,
1448 1449 1450 1451
                                      objectSpec) < 0) {
        goto failure;
    }

1452
    result = esxVI_RetrieveProperties(ctx, propertyFilterSpec,
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
                                      objectContentList);

  cleanup:
    /*
     * Remove values given by the caller from the data structures to prevent
     * them from being freed by the call to esxVI_PropertyFilterSpec_Free().
     */
    if (objectSpec != NULL) {
        objectSpec->obj = NULL;
        objectSpec->selectSet = NULL;
    }

    if (propertySpec != NULL) {
        propertySpec->type = NULL;
        propertySpec->pathSet = NULL;
    }

    esxVI_PropertyFilterSpec_Free(&propertyFilterSpec);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



1482
int
1483
esxVI_GetManagedEntityStatus(esxVI_ObjectContent *objectContent,
1484 1485 1486 1487 1488 1489 1490 1491 1492
                             const char *propertyName,
                             esxVI_ManagedEntityStatus *managedEntityStatus)
{
    esxVI_DynamicProperty *dynamicProperty;

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, propertyName)) {
            return esxVI_ManagedEntityStatus_CastFromAnyType
1493
                     (dynamicProperty->val, managedEntityStatus);
1494 1495 1496
        }
    }

1497
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
M
Matthias Bolte 已提交
1498 1499
                 "Missing '%s' property while looking for ManagedEntityStatus",
                 propertyName);
1500 1501 1502 1503 1504 1505

    return -1;
}



1506
int
1507
esxVI_GetVirtualMachinePowerState(esxVI_ObjectContent *virtualMachine,
1508 1509 1510 1511 1512 1513 1514 1515
                                  esxVI_VirtualMachinePowerState *powerState)
{
    esxVI_DynamicProperty *dynamicProperty;

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "runtime.powerState")) {
            return esxVI_VirtualMachinePowerState_CastFromAnyType
1516
                     (dynamicProperty->val, powerState);
1517 1518 1519
        }
    }

1520
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1521 1522 1523 1524 1525 1526 1527
                 "Missing 'runtime.powerState' property");

    return -1;
}



1528 1529
int
esxVI_GetVirtualMachineQuestionInfo
1530
  (esxVI_ObjectContent *virtualMachine,
1531 1532 1533 1534 1535
   esxVI_VirtualMachineQuestionInfo **questionInfo)
{
    esxVI_DynamicProperty *dynamicProperty;

    if (questionInfo == NULL || *questionInfo != NULL) {
1536
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1537 1538 1539 1540 1541 1542 1543
        return -1;
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "runtime.question")) {
            if (esxVI_VirtualMachineQuestionInfo_CastFromAnyType
1544
                  (dynamicProperty->val, questionInfo) < 0) {
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
                return -1;
            }
        }
    }

    return 0;
}



1555
int
1556
esxVI_LookupNumberOfDomainsByPowerState(esxVI_Context *ctx,
1557 1558
                                        esxVI_VirtualMachinePowerState powerState,
                                        esxVI_Boolean inverse)
1559 1560 1561 1562 1563 1564 1565 1566
{
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_VirtualMachinePowerState powerState_;
    int numberOfDomains = 0;

1567
    if (esxVI_String_AppendValueToList(&propertyNameList,
1568
                                       "runtime.powerState") < 0 ||
1569 1570
        esxVI_LookupObjectContentByType(ctx, ctx->vmFolder, "VirtualMachine",
                                        propertyNameList, esxVI_Boolean_True,
1571
                                        &virtualMachineList) < 0) {
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
        goto failure;
    }

    for (virtualMachine = virtualMachineList; virtualMachine != NULL;
         virtualMachine = virtualMachine->_next) {
        for (dynamicProperty = virtualMachine->propSet;
             dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "runtime.powerState")) {
                if (esxVI_VirtualMachinePowerState_CastFromAnyType
1582
                      (dynamicProperty->val, &powerState_) < 0) {
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
                    goto failure;
                }

                if ((inverse != esxVI_Boolean_True &&
                     powerState_ == powerState) ||
                    (inverse == esxVI_Boolean_True &&
                     powerState_ != powerState)) {
                    numberOfDomains++;
                }
            } else {
                VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
            }
        }
    }

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

    return numberOfDomains;

  failure:
    numberOfDomains = -1;

    goto cleanup;
}



int
1613
esxVI_GetVirtualMachineIdentity(esxVI_ObjectContent *virtualMachine,
1614 1615 1616 1617
                                int *id, char **name, unsigned char *uuid)
{
    const char *uuid_string = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
1618
    esxVI_ManagedEntityStatus configStatus = esxVI_ManagedEntityStatus_Undefined;
1619 1620

    if (STRNEQ(virtualMachine->obj->type, "VirtualMachine")) {
1621
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1622 1623 1624 1625 1626 1627 1628
                     "ObjectContent does not reference a virtual machine");
        return -1;
    }

    if (id != NULL) {
        if (esxUtil_ParseVirtualMachineIDString
              (virtualMachine->obj->value, id) < 0 || *id <= 0) {
1629
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1630 1631 1632 1633 1634 1635 1636 1637
                         "Could not parse positive integer from '%s'",
                         virtualMachine->obj->value);
            goto failure;
        }
    }

    if (name != NULL) {
        if (*name != NULL) {
1638
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1639 1640 1641 1642 1643 1644 1645
            goto failure;
        }

        for (dynamicProperty = virtualMachine->propSet;
             dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "name")) {
1646
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1647 1648 1649 1650 1651 1652 1653
                                             esxVI_Type_String) < 0) {
                    goto failure;
                }

                *name = strdup(dynamicProperty->val->string);

                if (*name == NULL) {
1654
                    virReportOOMError();
1655 1656 1657 1658 1659 1660 1661 1662
                    goto failure;
                }

                break;
            }
        }

        if (*name == NULL) {
1663
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1664 1665 1666 1667 1668 1669
                         "Could not get name of virtual machine");
            goto failure;
        }
    }

    if (uuid != NULL) {
1670
        if (esxVI_GetManagedEntityStatus(virtualMachine, "configStatus",
1671 1672 1673 1674 1675 1676 1677 1678 1679
                                         &configStatus) < 0) {
            goto failure;
        }

        if (configStatus == esxVI_ManagedEntityStatus_Green) {
            for (dynamicProperty = virtualMachine->propSet;
                 dynamicProperty != NULL;
                 dynamicProperty = dynamicProperty->_next) {
                if (STREQ(dynamicProperty->name, "config.uuid")) {
1680
                    if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1681 1682 1683 1684 1685 1686
                                                 esxVI_Type_String) < 0) {
                        goto failure;
                    }

                    uuid_string = dynamicProperty->val->string;
                    break;
1687
                }
1688
            }
1689

1690
            if (uuid_string == NULL) {
1691
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1692 1693
                             "Could not get UUID of virtual machine");
                goto failure;
1694 1695
            }

1696
            if (virUUIDParse(uuid_string, uuid) < 0) {
1697
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1698 1699 1700 1701 1702 1703
                             "Could not parse UUID from string '%s'",
                             uuid_string);
                goto failure;
            }
        } else {
            memset(uuid, 0, VIR_UUID_BUFLEN);
1704

1705 1706
            VIR_WARN0("Cannot access UUID, because 'configStatus' property "
                      "indicates a config problem");
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
        }
    }

    return 0;

  failure:
    if (name != NULL) {
        VIR_FREE(*name);
    }

    return -1;
}



1722 1723
int
esxVI_LookupResourcePoolByHostSystem
1724
  (esxVI_Context *ctx, esxVI_ObjectContent *hostSystem,
1725
   esxVI_ManagedObjectReference **resourcePool)
M
Matthias Bolte 已提交
1726 1727 1728 1729 1730 1731 1732 1733
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;
    esxVI_ObjectContent *computeResource = NULL;

    if (resourcePool == NULL || *resourcePool != NULL) {
1734
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
M
Matthias Bolte 已提交
1735 1736 1737 1738 1739 1740 1741
        return -1;
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "parent")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
1742
                  (dynamicProperty->val, &managedObjectReference) < 0) {
M
Matthias Bolte 已提交
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
                goto failure;
            }

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

    if (managedObjectReference == NULL) {
1753
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
M
Matthias Bolte 已提交
1754 1755 1756 1757
                     "Could not retrieve compute resource of host system");
        goto failure;
    }

1758 1759
    if (esxVI_String_AppendValueToList(&propertyNameList, "resourcePool") < 0 ||
        esxVI_LookupObjectContentByType(ctx, managedObjectReference,
1760 1761 1762
                                        "ComputeResource", propertyNameList,
                                        esxVI_Boolean_False,
                                        &computeResource) < 0) {
M
Matthias Bolte 已提交
1763 1764 1765 1766
        goto failure;
    }

    if (computeResource == NULL) {
1767
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
M
Matthias Bolte 已提交
1768 1769 1770 1771 1772 1773 1774 1775
                     "Could not retrieve compute resource of host system");
        goto failure;
    }

    for (dynamicProperty = computeResource->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "resourcePool")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
1776
                  (dynamicProperty->val, resourcePool) < 0) {
M
Matthias Bolte 已提交
1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
                goto failure;
            }

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

    if ((*resourcePool) == NULL) {
1787
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
M
Matthias Bolte 已提交
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
                     "Could not retrieve resource pool of compute resource");
        goto failure;
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&managedObjectReference);
    esxVI_ObjectContent_Free(&computeResource);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



1807
int
1808
esxVI_LookupHostSystemByIp(esxVI_Context *ctx, const char *ipAddress,
M
Matthias Bolte 已提交
1809
                           esxVI_String *propertyNameList,
1810 1811 1812 1813 1814 1815
                           esxVI_ObjectContent **hostSystem)
{
    int result = 0;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;

    if (hostSystem == NULL || *hostSystem != NULL) {
1816
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1817 1818 1819
        return -1;
    }

1820 1821
    if (esxVI_FindByIp(ctx, ctx->datacenter, ipAddress, esxVI_Boolean_False,
                       &managedObjectReference) < 0) {
1822 1823 1824
        goto failure;
    }

1825
    if (esxVI_LookupObjectContentByType(ctx, managedObjectReference,
1826 1827
                                        "HostSystem", propertyNameList,
                                        esxVI_Boolean_False, hostSystem) < 0) {
1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
        goto failure;
    }

  cleanup:
    esxVI_ManagedObjectReference_Free(&managedObjectReference);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



int
1845
esxVI_LookupVirtualMachineByUuid(esxVI_Context *ctx, const unsigned char *uuid,
1846
                                 esxVI_String *propertyNameList,
1847
                                 esxVI_ObjectContent **virtualMachine,
M
Matthias Bolte 已提交
1848
                                 esxVI_Occurrence occurrence)
1849 1850 1851
{
    int result = 0;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;
1852
    char uuid_string[VIR_UUID_STRING_BUFLEN] = "";
1853 1854

    if (virtualMachine == NULL || *virtualMachine != NULL) {
1855
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
1856 1857 1858
        return -1;
    }

1859 1860 1861
    virUUIDFormat(uuid, uuid_string);

    if (esxVI_FindByUuid(ctx, ctx->datacenter, uuid_string, esxVI_Boolean_True,
1862 1863 1864 1865
                         &managedObjectReference) < 0) {
        goto failure;
    }

1866
    if (managedObjectReference == NULL) {
M
Matthias Bolte 已提交
1867
        if (occurrence == esxVI_Occurrence_OptionalItem) {
1868 1869
            return 0;
        } else {
1870
            ESX_VI_ERROR(VIR_ERR_NO_DOMAIN,
1871 1872 1873 1874 1875
                         "Could not find domain with UUID '%s'", uuid_string);
            goto failure;
        }
    }

1876
    if (esxVI_LookupObjectContentByType(ctx, managedObjectReference,
1877 1878 1879
                                        "VirtualMachine", propertyNameList,
                                        esxVI_Boolean_False,
                                        virtualMachine) < 0) {
1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
        goto failure;
    }

  cleanup:
    esxVI_ManagedObjectReference_Free(&managedObjectReference);

    return result;

  failure:
    result = -1;
M
Matthias Bolte 已提交
1890 1891 1892 1893 1894 1895

    goto cleanup;
}



1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
int
esxVI_LookupVirtualMachineByName(esxVI_Context *ctx, const char *name,
                                 esxVI_String *propertyNameList,
                                 esxVI_ObjectContent **virtualMachine,
                                 esxVI_Occurrence occurrence)
{
    int result = 0;
    esxVI_String *completePropertyNameList = NULL;
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *candidate = NULL;
    char *name_candidate = NULL;

    if (virtualMachine == NULL || *virtualMachine != NULL) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
        return -1;
    }

    if (esxVI_String_DeepCopyList(&completePropertyNameList,
                                  propertyNameList) < 0 ||
        esxVI_String_AppendValueToList(&completePropertyNameList, "name") < 0 ||
        esxVI_LookupObjectContentByType(ctx, ctx->vmFolder, "VirtualMachine",
                                        completePropertyNameList,
                                        esxVI_Boolean_True,
                                        &virtualMachineList) < 0) {
        goto failure;
    }

    for (candidate = virtualMachineList; candidate != NULL;
         candidate = candidate->_next) {
        VIR_FREE(name_candidate);

        if (esxVI_GetVirtualMachineIdentity(candidate, NULL, &name_candidate,
                                            NULL) < 0) {
            goto failure;
        }

        if (STRNEQ(name, name_candidate)) {
            continue;
        }

        if (esxVI_ObjectContent_DeepCopy(virtualMachine, candidate) < 0) {
            goto failure;
        }

        break;
    }

    if (*virtualMachine == NULL) {
        if (occurrence == esxVI_Occurrence_OptionalItem) {
            return 0;
        } else {
            ESX_VI_ERROR(VIR_ERR_NO_DOMAIN,
                         "Could not find domain with name '%s'", name);
            goto failure;
        }
    }

  cleanup:
    esxVI_String_Free(&completePropertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);
    VIR_FREE(name_candidate);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



1968 1969
int
esxVI_LookupVirtualMachineByUuidAndPrepareForTask
1970
  (esxVI_Context *ctx, const unsigned char *uuid,
1971 1972 1973 1974 1975 1976 1977 1978
   esxVI_String *propertyNameList, esxVI_ObjectContent **virtualMachine,
   esxVI_Boolean autoAnswer)
{
    int result = 0;
    esxVI_String *completePropertyNameList = NULL;
    esxVI_VirtualMachineQuestionInfo *questionInfo = NULL;
    esxVI_TaskInfo *pendingTaskInfoList = NULL;

1979
    if (esxVI_String_DeepCopyList(&completePropertyNameList,
1980
                                  propertyNameList) < 0 ||
1981
        esxVI_String_AppendValueListToList(&completePropertyNameList,
1982 1983
                                           "runtime.question\0"
                                           "recentTask\0") < 0 ||
1984
        esxVI_LookupVirtualMachineByUuid(ctx, uuid, completePropertyNameList,
1985
                                         virtualMachine,
M
Matthias Bolte 已提交
1986
                                         esxVI_Occurrence_RequiredItem) < 0 ||
1987
        esxVI_GetVirtualMachineQuestionInfo(*virtualMachine,
1988 1989
                                            &questionInfo) < 0 ||
        esxVI_LookupPendingTaskInfoListByVirtualMachine
1990
           (ctx, *virtualMachine, &pendingTaskInfoList) < 0) {
1991 1992 1993 1994
        goto failure;
    }

    if (questionInfo != NULL &&
1995
        esxVI_HandleVirtualMachineQuestion(ctx, (*virtualMachine)->obj,
1996 1997 1998 1999 2000
                                           questionInfo, autoAnswer) < 0) {
        goto failure;
    }

    if (pendingTaskInfoList != NULL) {
2001
        ESX_VI_ERROR(VIR_ERR_OPERATION_INVALID,
2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
                     "Other tasks are pending for this domain");
        goto failure;
    }

  cleanup:
    esxVI_String_Free(&completePropertyNameList);
    esxVI_VirtualMachineQuestionInfo_Free(&questionInfo);
    esxVI_TaskInfo_Free(&pendingTaskInfoList);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



M
Matthias Bolte 已提交
2021
int
2022 2023
esxVI_LookupDatastoreByName(esxVI_Context *ctx, const char *name,
                            esxVI_String *propertyNameList,
M
Matthias Bolte 已提交
2024
                            esxVI_ObjectContent **datastore,
M
Matthias Bolte 已提交
2025
                            esxVI_Occurrence occurrence)
M
Matthias Bolte 已提交
2026 2027 2028 2029 2030 2031
{
    int result = 0;
    esxVI_String *completePropertyNameList = NULL;
    esxVI_ObjectContent *datastoreList = NULL;
    esxVI_ObjectContent *candidate = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
2032
    esxVI_Boolean accessible = esxVI_Boolean_Undefined;
M
Matthias Bolte 已提交
2033
    size_t offset = strlen("/vmfs/volumes/");
2034
    int numInaccessibleDatastores = 0;
M
Matthias Bolte 已提交
2035 2036

    if (datastore == NULL || *datastore != NULL) {
2037
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
M
Matthias Bolte 已提交
2038 2039 2040 2041
        return -1;
    }

    /* Get all datastores */
2042
    if (esxVI_String_DeepCopyList(&completePropertyNameList,
M
Matthias Bolte 已提交
2043
                                  propertyNameList) < 0 ||
2044
        esxVI_String_AppendValueListToList(&completePropertyNameList,
2045 2046 2047
                                           "summary.accessible\0"
                                           "summary.name\0"
                                           "summary.url\0") < 0) {
M
Matthias Bolte 已提交
2048 2049 2050
        goto failure;
    }

2051 2052
    if (esxVI_LookupObjectContentByType(ctx, ctx->datacenter, "Datastore",
                                        completePropertyNameList,
2053 2054
                                        esxVI_Boolean_True,
                                        &datastoreList) < 0) {
M
Matthias Bolte 已提交
2055 2056 2057 2058
        goto failure;
    }

    if (datastoreList == NULL) {
M
Matthias Bolte 已提交
2059
        if (occurrence == esxVI_Occurrence_OptionalItem) {
M
Matthias Bolte 已提交
2060 2061
            goto cleanup;
        } else {
2062
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "No datastores available");
M
Matthias Bolte 已提交
2063 2064 2065 2066 2067 2068 2069
            goto failure;
        }
    }

    /* Search for a matching datastore */
    for (candidate = datastoreList; candidate != NULL;
         candidate = candidate->_next) {
2070 2071
        accessible = esxVI_Boolean_Undefined;

M
Matthias Bolte 已提交
2072 2073
        for (dynamicProperty = candidate->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
2074
            if (STREQ(dynamicProperty->name, "summary.accessible")) {
2075
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2076 2077 2078 2079 2080 2081 2082 2083 2084 2085
                                             esxVI_Type_Boolean) < 0) {
                    goto failure;
                }

                accessible = dynamicProperty->val->boolean;
                break;
            }
        }

        if (accessible == esxVI_Boolean_Undefined) {
2086
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100
                         "Got incomplete response while querying for the "
                         "datastore 'summary.accessible' property");
            goto failure;
        }

        if (accessible == esxVI_Boolean_False) {
            ++numInaccessibleDatastores;
        }

        for (dynamicProperty = candidate->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "summary.accessible")) {
                /* Ignore it */
            } else if (STREQ(dynamicProperty->name, "summary.name")) {
2101
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
M
Matthias Bolte 已提交
2102 2103 2104 2105 2106
                                             esxVI_Type_String) < 0) {
                    goto failure;
                }

                if (STREQ(dynamicProperty->val->string, name)) {
2107
                    if (esxVI_ObjectContent_DeepCopy(datastore,
M
Matthias Bolte 已提交
2108 2109 2110 2111 2112 2113 2114
                                                     candidate) < 0) {
                        goto failure;
                    }

                    /* Found datastore with matching name */
                    goto cleanup;
                }
2115 2116 2117 2118 2119 2120 2121 2122 2123
            } else if (STREQ(dynamicProperty->name, "summary.url")) {
                if (accessible == esxVI_Boolean_False) {
                    /*
                     * The 'summary.url' property of an inaccessible datastore
                     * is invalid and cannot be used to identify the datastore.
                     */
                    continue;
                }

2124
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
M
Matthias Bolte 已提交
2125 2126 2127 2128 2129 2130
                                             esxVI_Type_String) < 0) {
                    goto failure;
                }

                if (! STRPREFIX(dynamicProperty->val->string,
                                "/vmfs/volumes/")) {
2131
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
M
Matthias Bolte 已提交
2132 2133 2134 2135 2136 2137 2138
                                 "Datastore URL '%s' has unexpected prefix, "
                                 "expecting '/vmfs/volumes/' prefix",
                                 dynamicProperty->val->string);
                    goto failure;
                }

                if (STREQ(dynamicProperty->val->string + offset, name)) {
2139
                    if (esxVI_ObjectContent_DeepCopy(datastore,
M
Matthias Bolte 已提交
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152
                                                     candidate) < 0) {
                        goto failure;
                    }

                    /* Found datastore with matching URL suffix */
                    goto cleanup;
                }
            } else {
                VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
            }
        }
    }

M
Matthias Bolte 已提交
2153
    if (occurrence != esxVI_Occurrence_OptionalItem) {
2154
        if (numInaccessibleDatastores > 0) {
2155
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2156 2157 2158
                         "Could not find datastore '%s', maybe it's "
                         "inaccessible", name);
        } else {
2159
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2160 2161 2162
                         "Could not find datastore '%s'", name);
        }

M
Matthias Bolte 已提交
2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173
        goto failure;
    }

  cleanup:
    esxVI_String_Free(&completePropertyNameList);
    esxVI_ObjectContent_Free(&datastoreList);

    return result;

  failure:
    result = -1;
2174 2175 2176 2177 2178 2179

    goto cleanup;
}



2180
int esxVI_LookupTaskInfoByTask(esxVI_Context *ctx,
2181 2182 2183 2184 2185 2186 2187 2188 2189
                               esxVI_ManagedObjectReference *task,
                               esxVI_TaskInfo **taskInfo)
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *objectContent = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;

    if (taskInfo == NULL || *taskInfo != NULL) {
2190
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
2191 2192 2193
        return -1;
    }

2194 2195 2196
    if (esxVI_String_AppendValueToList(&propertyNameList, "info") < 0 ||
        esxVI_LookupObjectContentByType(ctx, task, "Task", propertyNameList,
                                        esxVI_Boolean_False,
2197 2198 2199 2200 2201 2202 2203
                                        &objectContent) < 0) {
        goto failure;
    }

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "info")) {
2204
            if (esxVI_TaskInfo_CastFromAnyType(dynamicProperty->val,
2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230
                                               taskInfo) < 0) {
                goto failure;
            }

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

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

    return result;

  failure:
    result = -1;

    goto cleanup;
}



int
esxVI_LookupPendingTaskInfoListByVirtualMachine
2231
  (esxVI_Context *ctx, esxVI_ObjectContent *virtualMachine,
2232 2233 2234 2235 2236 2237 2238 2239 2240 2241
   esxVI_TaskInfo **pendingTaskInfoList)
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_ManagedObjectReference *recentTaskList = NULL;
    esxVI_ManagedObjectReference *recentTask = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_TaskInfo *taskInfo = NULL;

    if (pendingTaskInfoList == NULL || *pendingTaskInfoList != NULL) {
2242
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "Invalid argument");
2243 2244 2245 2246 2247 2248 2249 2250
        return -1;
    }

    /* Get list of recent tasks */
    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "recentTask")) {
            if (esxVI_ManagedObjectReference_CastListFromAnyType
2251
                  (dynamicProperty->val, &recentTaskList) < 0) {
2252 2253 2254 2255 2256 2257 2258 2259 2260 2261
                goto failure;
            }

            break;
        }
    }

    /* Lookup task info for each task */
    for (recentTask = recentTaskList; recentTask != NULL;
         recentTask = recentTask->_next) {
2262
        if (esxVI_LookupTaskInfoByTask(ctx, recentTask, &taskInfo) < 0) {
2263 2264 2265 2266 2267
            goto failure;
        }

        if (taskInfo->state == esxVI_TaskInfoState_Queued ||
            taskInfo->state == esxVI_TaskInfoState_Running) {
2268
            if (esxVI_TaskInfo_AppendToList(pendingTaskInfoList,
2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296
                                            taskInfo) < 0) {
                goto failure;
            }

            taskInfo = NULL;
        } else {
            esxVI_TaskInfo_Free(&taskInfo);
        }
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&recentTaskList);
    esxVI_TaskInfo_Free(&taskInfo);

    return result;

  failure:
    esxVI_TaskInfo_Free(pendingTaskInfoList);

    result = -1;

    goto cleanup;
}



int
2297
esxVI_LookupAndHandleVirtualMachineQuestion(esxVI_Context *ctx,
2298 2299 2300 2301 2302 2303 2304 2305
                                            const unsigned char *uuid,
                                            esxVI_Boolean autoAnswer)
{
    int result = 0;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachineQuestionInfo *questionInfo = NULL;

2306
    if (esxVI_String_AppendValueToList(&propertyNameList,
2307
                                       "runtime.question") < 0 ||
2308
        esxVI_LookupVirtualMachineByUuid(ctx, uuid, propertyNameList,
2309
                                         &virtualMachine,
M
Matthias Bolte 已提交
2310
                                         esxVI_Occurrence_RequiredItem) < 0 ||
2311
        esxVI_GetVirtualMachineQuestionInfo(virtualMachine,
2312 2313 2314 2315 2316
                                            &questionInfo) < 0) {
        goto failure;
    }

    if (questionInfo != NULL &&
2317
        esxVI_HandleVirtualMachineQuestion(ctx, virtualMachine->obj,
2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338
                                           questionInfo, autoAnswer) < 0) {
        goto failure;
    }

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

    return result;

  failure:
    result = -1;

    goto cleanup;
}



int
esxVI_HandleVirtualMachineQuestion
2339
  (esxVI_Context *ctx, esxVI_ManagedObjectReference *virtualMachine,
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369
   esxVI_VirtualMachineQuestionInfo *questionInfo,
   esxVI_Boolean autoAnswer)
{
    int result = 0;
    esxVI_ElementDescription *elementDescription = NULL;
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    esxVI_ElementDescription *answerChoice = NULL;
    int answerIndex = 0;
    char *possibleAnswers = NULL;

    if (questionInfo->choice->choiceInfo != NULL) {
        for (elementDescription = questionInfo->choice->choiceInfo;
             elementDescription != NULL;
             elementDescription = elementDescription->_next) {
            virBufferVSprintf(&buffer, "'%s'", elementDescription->label);

            if (elementDescription->_next != NULL) {
                virBufferAddLit(&buffer, ", ");
            }

            if (answerChoice == NULL &&
                questionInfo->choice->defaultIndex != NULL &&
                questionInfo->choice->defaultIndex->value == answerIndex) {
                answerChoice = elementDescription;
            }

            ++answerIndex;
        }

        if (virBufferError(&buffer)) {
2370
            virReportOOMError();
2371 2372 2373 2374 2375 2376 2377 2378
            goto failure;
        }

        possibleAnswers = virBufferContentAndReset(&buffer);
    }

    if (autoAnswer == esxVI_Boolean_True) {
        if (possibleAnswers == NULL) {
2379
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2380 2381 2382 2383 2384
                         "Pending question blocks virtual machine execution, "
                         "question is '%s', no possible answers",
                         questionInfo->text);
            goto failure;
        } else if (answerChoice == NULL) {
2385
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
                         "Pending question blocks virtual machine execution, "
                         "question is '%s', possible answers are %s, but no "
                         "default answer is specified", questionInfo->text,
                         possibleAnswers);
            goto failure;
        }

        VIR_INFO("Pending question blocks virtual machine execution, "
                 "question is '%s', possible answers are %s, responding "
                 "with default answer '%s'", questionInfo->text,
                 possibleAnswers, answerChoice->label);

2398
        if (esxVI_AnswerVM(ctx, virtualMachine, questionInfo->id,
2399 2400 2401 2402 2403
                           answerChoice->key) < 0) {
            goto failure;
        }
    } else {
        if (possibleAnswers != NULL) {
2404
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2405 2406 2407 2408
                         "Pending question blocks virtual machine execution, "
                         "question is '%s', possible answers are %s",
                         questionInfo->text, possibleAnswers);
        } else {
2409
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434
                         "Pending question blocks virtual machine execution, "
                         "question is '%s', no possible answers",
                         questionInfo->text);
        }

        goto failure;
    }

  cleanup:
    VIR_FREE(possibleAnswers);

    return result;

  failure:
    if (possibleAnswers == NULL) {
        possibleAnswers = virBufferContentAndReset(&buffer);
    }

    result = -1;

    goto cleanup;
}



2435
int
2436
esxVI_WaitForTaskCompletion(esxVI_Context *ctx,
2437
                            esxVI_ManagedObjectReference *task,
2438 2439
                            const unsigned char *virtualMachineUuid,
                            esxVI_Boolean autoAnswer,
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453
                            esxVI_TaskInfoState *finalState)
{
    int result = 0;
    esxVI_ObjectSpec *objectSpec = NULL;
    esxVI_PropertySpec *propertySpec = NULL;
    esxVI_PropertyFilterSpec *propertyFilterSpec = NULL;
    esxVI_ManagedObjectReference *propertyFilter = NULL;
    char *version = NULL;
    esxVI_UpdateSet *updateSet = NULL;
    esxVI_PropertyFilterUpdate *propertyFilterUpdate = NULL;
    esxVI_ObjectUpdate *objectUpdate = NULL;
    esxVI_PropertyChange *propertyChange = NULL;
    esxVI_AnyType *propertyValue = NULL;
    esxVI_TaskInfoState state = esxVI_TaskInfoState_Undefined;
2454
    esxVI_TaskInfo *taskInfo = NULL;
2455 2456 2457 2458

    version = strdup("");

    if (version == NULL) {
2459
        virReportOOMError();
2460 2461 2462
        goto failure;
    }

2463
    if (esxVI_ObjectSpec_Alloc(&objectSpec) < 0) {
2464 2465 2466 2467 2468 2469
        goto failure;
    }

    objectSpec->obj = task;
    objectSpec->skip = esxVI_Boolean_False;

2470
    if (esxVI_PropertySpec_Alloc(&propertySpec) < 0) {
2471 2472 2473 2474 2475
        goto failure;
    }

    propertySpec->type = task->type;

2476
    if (esxVI_String_AppendValueToList(&propertySpec->pathSet,
2477
                                       "info.state") < 0 ||
2478 2479
        esxVI_PropertyFilterSpec_Alloc(&propertyFilterSpec) < 0 ||
        esxVI_PropertySpec_AppendToList(&propertyFilterSpec->propSet,
2480
                                        propertySpec) < 0 ||
2481
        esxVI_ObjectSpec_AppendToList(&propertyFilterSpec->objectSet,
2482
                                      objectSpec) < 0 ||
2483
        esxVI_CreateFilter(ctx, propertyFilterSpec, esxVI_Boolean_True,
2484 2485 2486 2487 2488 2489 2490 2491
                           &propertyFilter) < 0) {
        goto failure;
    }

    while (state != esxVI_TaskInfoState_Success &&
           state != esxVI_TaskInfoState_Error) {
        esxVI_UpdateSet_Free(&updateSet);

2492 2493
        if (virtualMachineUuid != NULL) {
            if (esxVI_LookupAndHandleVirtualMachineQuestion
2494
                  (ctx, virtualMachineUuid, autoAnswer) < 0) {
2495 2496 2497 2498 2499
                /*
                 * FIXME: Disable error reporting here, so possible errors from
                 *        esxVI_LookupTaskInfoByTask() and esxVI_CancelTask()
                 *        don't overwrite the actual error
                 */
2500
                if (esxVI_LookupTaskInfoByTask(ctx, task, &taskInfo)) {
2501 2502 2503 2504
                    goto failure;
                }

                if (taskInfo->cancelable == esxVI_Boolean_True) {
2505
                    if (esxVI_CancelTask(ctx, task) < 0) {
2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520
                        VIR_ERROR0("Cancelable task is blocked by an "
                                   "unanswered question but cancelation "
                                   "failed");
                    }
                } else {
                    VIR_ERROR0("Non-cancelable task is blocked by an "
                               "unanswered question");
                }

                /* FIXME: Enable error reporting here again */

                goto failure;
            }
        }

2521
        if (esxVI_WaitForUpdates(ctx, version, &updateSet) < 0) {
2522 2523 2524 2525 2526 2527 2528
            goto failure;
        }

        VIR_FREE(version);
        version = strdup(updateSet->version);

        if (version == NULL) {
2529
            virReportOOMError();
2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560
            goto failure;
        }

        if (updateSet->filterSet == NULL) {
            continue;
        }

        for (propertyFilterUpdate = updateSet->filterSet;
             propertyFilterUpdate != NULL;
             propertyFilterUpdate = propertyFilterUpdate->_next) {
            for (objectUpdate = propertyFilterUpdate->objectSet;
                 objectUpdate != NULL; objectUpdate = objectUpdate->_next) {
                for (propertyChange = objectUpdate->changeSet;
                     propertyChange != NULL;
                     propertyChange = propertyChange->_next) {
                    if (STREQ(propertyChange->name, "info.state")) {
                        if (propertyChange->op == esxVI_PropertyChangeOp_Add ||
                            propertyChange->op == esxVI_PropertyChangeOp_Assign) {
                            propertyValue = propertyChange->val;
                        } else {
                            propertyValue = NULL;
                        }
                    }
                }
            }
        }

        if (propertyValue == NULL) {
            continue;
        }

2561
        if (esxVI_TaskInfoState_CastFromAnyType(propertyValue, &state) < 0) {
2562 2563 2564 2565
            goto failure;
        }
    }

2566
    if (esxVI_DestroyPropertyFilter(ctx, propertyFilter) < 0) {
2567 2568 2569
        VIR_DEBUG0("DestroyPropertyFilter failed");
    }

2570
    if (esxVI_TaskInfoState_CastFromAnyType(propertyValue, finalState) < 0) {
2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590
        goto failure;
    }

  cleanup:
    /*
     * Remove values given by the caller from the data structures to prevent
     * them from being freed by the call to esxVI_PropertyFilterSpec_Free().
     */
    if (objectSpec != NULL) {
        objectSpec->obj = NULL;
    }

    if (propertySpec != NULL) {
        propertySpec->type = NULL;
    }

    esxVI_PropertyFilterSpec_Free(&propertyFilterSpec);
    esxVI_ManagedObjectReference_Free(&propertyFilter);
    VIR_FREE(version);
    esxVI_UpdateSet_Free(&updateSet);
2591
    esxVI_TaskInfo_Free(&taskInfo);
2592 2593 2594 2595 2596 2597 2598 2599

    return result;

  failure:
    result = -1;

    goto cleanup;
}