esx_vi.c 90.5 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
 *
 * 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"
34
#include "xml.h"
35 36 37 38 39 40 41 42 43 44 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
#include "esx_vi.h"
#include "esx_vi_methods.h"
#include "esx_util.h"

#define VIR_FROM_THIS VIR_FROM_ESX

#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                                                                       \
76
    esxVI_##_type##_Alloc(esxVI_##_type **ptrptr)                             \
77
    {                                                                         \
78
        return esxVI_Alloc((void **)ptrptr, sizeof(esxVI_##_type));           \
79 80 81 82 83 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
    }

#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 已提交
111
    VIR_FREE(item->ipAddress);
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133

    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 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
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)
163 164 165 166 167 168 169 170 171 172 173 174 175 176
{
    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 已提交
177 178
esxVI_CURL_Debug(CURL *curl ATTRIBUTE_UNUSED, curl_infotype type,
                 char *info, size_t size, void *data ATTRIBUTE_UNUSED)
179
{
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
    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;
    }

201 202
    switch (type) {
      case CURLINFO_TEXT:
203 204 205 206 207
        if (size > 0 && buffer[size - 1] == '\n') {
            buffer[size - 1] = '\0';
        }

        VIR_DEBUG("CURLINFO_TEXT [[[[%s]]]]", buffer);
208 209 210
        break;

      case CURLINFO_HEADER_IN:
211
        VIR_DEBUG("CURLINFO_HEADER_IN [[[[%s]]]]", buffer);
212 213 214
        break;

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

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

      case CURLINFO_DATA_OUT:
223
        VIR_DEBUG("CURLINFO_DATA_OUT [[[[%s]]]]", buffer);
224 225 226 227 228 229 230
        break;

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

231 232
    VIR_FREE(buffer);

233 234 235 236
    return 0;
}
#endif

237
static int
238
esxVI_CURL_Perform(esxVI_Context *ctx, const char *url)
239 240 241 242 243 244 245 246 247 248
{
    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) {
249
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
250
                     _("curl_easy_perform() returned an error: %s (%d) : %s"),
251
                     curl_easy_strerror(errorCode), errorCode, ctx->curl_error);
252 253 254 255 256 257 258
        return -1;
    }

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

    if (errorCode != CURLE_OK) {
259
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
260 261
                     _("curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned an "
                       "error: %s (%d) : %s"), curl_easy_strerror(errorCode),
262
                     errorCode, ctx->curl_error);
263 264 265 266
        return -1;
    }

    if (responseCode < 0) {
267 268 269
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned a "
                       "negative response code"));
270 271 272 273 274 275 276 277 278
        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) {
279
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
280 281 282
                         _("curl_easy_getinfo(CURLINFO_REDIRECT_URL) returned "
                           "an error: %s (%d) : %s"),
                         curl_easy_strerror(errorCode),
283
                         errorCode, ctx->curl_error);
284
        } else {
285
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
286
                         _("The server redirects from '%s' to '%s'"), url,
287 288 289
                         redirectUrl);
        }
#else
290
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
291
                     _("The server redirects from '%s'"), url);
292 293 294 295 296 297 298 299
#endif

        return -1;
    }

    return responseCode;
}

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

M
Matthias Bolte 已提交
310 311 312
    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) {
313
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
314 315 316
        goto failure;
    }

317 318
    if (esxVI_String_DeepCopyValue(&ctx->url, url) < 0 ||
        esxVI_String_DeepCopyValue(&ctx->ipAddress, ipAddress) < 0) {
319 320 321 322 323 324
        goto failure;
    }

    ctx->curl_handle = curl_easy_init();

    if (ctx->curl_handle == NULL) {
325 326
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not initialize CURL"));
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
        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) {
345 346
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not build CURL header list"));
347 348 349 350 351 352
        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);
353
    curl_easy_setopt(ctx->curl_handle, CURLOPT_FOLLOWLOCATION, 0);
354
    curl_easy_setopt(ctx->curl_handle, CURLOPT_SSL_VERIFYPEER, noVerify ? 0 : 1);
355
    curl_easy_setopt(ctx->curl_handle, CURLOPT_SSL_VERIFYHOST, noVerify ? 0 : 2);
356 357
    curl_easy_setopt(ctx->curl_handle, CURLOPT_COOKIEFILE, "");
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HTTPHEADER, ctx->curl_headers);
M
Matthias Bolte 已提交
358 359
    curl_easy_setopt(ctx->curl_handle, CURLOPT_READFUNCTION,
                     esxVI_CURL_ReadString);
360
    curl_easy_setopt(ctx->curl_handle, CURLOPT_WRITEFUNCTION,
M
Matthias Bolte 已提交
361
                     esxVI_CURL_WriteBuffer);
362 363
    curl_easy_setopt(ctx->curl_handle, CURLOPT_ERRORBUFFER,
                     ctx->curl_error);
364
#if ESX_VI__CURL__ENABLE_DEBUG_OUTPUT
365 366
    curl_easy_setopt(ctx->curl_handle, CURLOPT_DEBUGFUNCTION, esxVI_CURL_Debug);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_VERBOSE, 1);
367 368 369
#endif

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

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

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

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

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

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

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

451
    esxVI_BuildFullTraversalSpecList(&ctx->fullTraversalSpecList);
452

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

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

    if (datacenterList == NULL) {
468 469 470
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve the 'datacenter' object from the "
                       "VI host/center"));
471 472 473 474 475 476 477 478 479 480 481
        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
482
                  (dynamicProperty->val, &ctx->vmFolder)) {
483 484 485 486
                goto failure;
            }
        } else if (STREQ(dynamicProperty->name, "hostFolder")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
487
                  (dynamicProperty->val, &ctx->hostFolder)) {
488 489 490 491 492 493 494 495
                goto failure;
            }
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

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

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

    return result;

  failure:
    result = -1;

    goto cleanup;
}

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

    if (content == NULL || *content != NULL) {
521
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
522 523 524 525 526 527 528
        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 已提交
529
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 0);
530 531
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HTTPGET, 1);

532
    responseCode = esxVI_CURL_Perform(ctx, url);
533

534
    virMutexUnlock(&ctx->curl_lock);
535

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

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

    *content = virBufferContentAndReset(&buffer);

    return 0;

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

    return -1;
}

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

    if (content == NULL) {
567
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
568 569 570 571 572 573 574 575 576 577
        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));

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

    virMutexUnlock(&ctx->curl_lock);

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

    return 0;
}

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

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

611
    if (esxVI_Response_Alloc(response) < 0) {
612 613 614 615 616 617 618
        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 已提交
619
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 0);
620 621
    curl_easy_setopt(ctx->curl_handle, CURLOPT_POSTFIELDS, request);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_POSTFIELDSIZE, strlen(request));
622

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

625
    virMutexUnlock(&ctx->curl_lock);
626

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

708
            responseNode = virXPathNode(xpathExpression, xpathContext);
709

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

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

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

                break;

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

                break;

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

                break;

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

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

                break;

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

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

    return result;
789 790

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

795 796 797
    result = -1;

    goto cleanup;
798 799 800 801 802
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
803
 * Response
804 805
 */

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

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

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



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

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

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

    *value = 0; /* undefined */

838
    if (anyType->type != enumeration->type) {
839
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
840
                     _("Expecting type '%s' but found '%s'"),
841 842
                     esxVI_Type_ToString(enumeration->type),
                     esxVI_Type_ToString(anyType->type));
843 844 845 846 847 848 849 850 851 852
        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;
        }
    }

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

    return -1;
}

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

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

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

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

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

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

    virBufferAdd(output, name, -1);

    ESV_VI__XML_TAG__CLOSE(output, element);

    return 0;
}

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

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

    *value = 0; /* undefined */

913
    if (esxVI_String_DeserializeValue(node, &name) < 0) {
914 915 916 917 918 919 920 921 922 923
        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;
        }
    }

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

  cleanup:
    VIR_FREE(name);

    return result;

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

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



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

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

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

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

    next = *list;

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

    next->_next = item;

    return 0;
}

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

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

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

        dest = NULL;
    }

    return 0;

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

    return -1;
}

1001
int
1002
esxVI_List_CastFromAnyType(esxVI_AnyType *anyType, esxVI_List **list,
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
                           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) {
1013
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1014
        return -1;
1015 1016 1017 1018 1019 1020 1021
    }

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

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

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

        esxVI_AnyType_Free(&childAnyType);

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

        item = NULL;
    }

  cleanup:
    esxVI_AnyType_Free(&childAnyType);

    return result;

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

    result = -1;

    goto cleanup;
}

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

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

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

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

    return 0;
}

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

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

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

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

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

1115
        item = NULL;
1116 1117 1118 1119 1120
    }

    return 0;

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

    return -1;
}



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

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

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

    return 0;
}

1153 1154


1155
int
1156
esxVI_BuildFullTraversalSpecItem(esxVI_SelectionSpec **fullTraversalSpecList,
1157 1158 1159 1160 1161 1162 1163 1164
                                 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) {
1165
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1166 1167 1168
        return -1;
    }

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

    traversalSpec->skip = esxVI_Boolean_False;

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

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

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

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

    return 0;

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

    return -1;
}



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

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

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

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

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

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

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

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

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

    /* Recurse through all resource pools */
1293
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
                                         "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.
1315 1316
 *
 * Update: 'ESX 4.0.0 build-171294' doesn't implement this method.
1317 1318 1319 1320
 */
#define ESX_VI_USE_SESSION_IS_ACTIVE 0

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

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

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

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

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

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

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

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

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

1381 1382
        if (esxVI_Login(ctx, ctx->username, ctx->password, NULL,
                        &ctx->session) < 0) {
1383 1384 1385
            goto failure;
        }
    } else if (STRNEQ(ctx->session->key, currentSession->key)) {
1386 1387 1388
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Key of the current session differs from the key at "
                       "last login"));
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
        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, "%s", _("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,
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 1521
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Missing 'runtime.powerState' property"));
1522 1523 1524 1525 1526 1527

    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, "%s", _("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 1622
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("ObjectContent does not reference a virtual machine"));
1623 1624 1625 1626 1627 1628
        return -1;
    }

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

    if (name != NULL) {
        if (*name != NULL) {
1638
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("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 1664
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("Could not get name of virtual machine"));
1665 1666 1667 1668 1669
            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 1692
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                             _("Could not get UUID of virtual machine"));
1693
                goto failure;
1694 1695
            }

1696
            if (virUUIDParse(uuid_string, uuid) < 0) {
1697
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1698
                             _("Could not parse UUID from string '%s'"),
1699 1700 1701 1702 1703
                             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 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
int
esxVI_GetNumberOfSnapshotTrees
  (esxVI_VirtualMachineSnapshotTree *snapshotTreeList)
{
    int count = 0;
    esxVI_VirtualMachineSnapshotTree *snapshotTree;

    for (snapshotTree = snapshotTreeList; snapshotTree != NULL;
         snapshotTree = snapshotTree->_next) {
        count += 1 + esxVI_GetNumberOfSnapshotTrees
                       (snapshotTree->childSnapshotList);
    }

    return count;
}



int
esxVI_GetSnapshotTreeNames(esxVI_VirtualMachineSnapshotTree *snapshotTreeList,
                           char **names, int nameslen)
{
    int count = 0;
    int result;
    int i;
    esxVI_VirtualMachineSnapshotTree *snapshotTree;

    for (snapshotTree = snapshotTreeList;
         snapshotTree != NULL && count < nameslen;
         snapshotTree = snapshotTree->_next) {
        names[count] = strdup(snapshotTree->name);

        if (names[count] == NULL) {
            virReportOOMError();
            goto failure;
        }

        count++;

        if (count >= nameslen) {
            break;
        }

        result = esxVI_GetSnapshotTreeNames(snapshotTree->childSnapshotList,
                                            names + count, nameslen - count);

        if (result < 0) {
            goto failure;
        }

        count += result;
    }

    return count;

  failure:
    for (i = 0; i < count; ++i) {
        VIR_FREE(names[i]);
    }

    return -1;
}



int
esxVI_GetSnapshotTreeByName
  (esxVI_VirtualMachineSnapshotTree *snapshotTreeList, const char *name,
   esxVI_VirtualMachineSnapshotTree **snapshotTree,
   esxVI_VirtualMachineSnapshotTree **snapshotTreeParent,
   esxVI_Occurrence occurrence)
{
    esxVI_VirtualMachineSnapshotTree *candidate;

    if (snapshotTree == NULL || *snapshotTree != NULL ||
        snapshotTreeParent == NULL || *snapshotTreeParent != NULL) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
        return -1;
    }

    for (candidate = snapshotTreeList; candidate != NULL;
         candidate = candidate->_next) {
        if (STREQ(candidate->name, name)) {
            *snapshotTree = candidate;
            *snapshotTreeParent = NULL;
            return 1;
        }

        if (esxVI_GetSnapshotTreeByName(candidate->childSnapshotList, name,
                                        snapshotTree, snapshotTreeParent,
                                        occurrence) > 0) {
            if (*snapshotTreeParent == NULL) {
                *snapshotTreeParent = candidate;
            }

            return 1;
        }
    }

    if (occurrence == esxVI_Occurrence_OptionalItem) {
        return 0;
    } else {
        ESX_VI_ERROR(VIR_ERR_NO_DOMAIN_SNAPSHOT,
                     _("Could not find snapshot with name '%s'"), name);

        return -1;
    }
}



int
esxVI_GetSnapshotTreeBySnapshot
  (esxVI_VirtualMachineSnapshotTree *snapshotTreeList,
   esxVI_ManagedObjectReference *snapshot,
   esxVI_VirtualMachineSnapshotTree **snapshotTree)
{
    esxVI_VirtualMachineSnapshotTree *candidate;

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

    for (candidate = snapshotTreeList; candidate != NULL;
         candidate = candidate->_next) {
        if (STREQ(candidate->snapshot->value, snapshot->value)) {
            *snapshotTree = candidate;
            return 0;
        }

        if (esxVI_GetSnapshotTreeBySnapshot(candidate->childSnapshotList,
                                            snapshot, snapshotTree) >= 0) {
            return 0;
        }
    }

    ESX_VI_ERROR(VIR_ERR_NO_DOMAIN_SNAPSHOT,
                 _("Could not find domain snapshot with internal name '%s'"),
                 snapshot->value);

    return -1;
}



1868 1869
int
esxVI_LookupResourcePoolByHostSystem
1870
  (esxVI_Context *ctx, esxVI_ObjectContent *hostSystem,
1871
   esxVI_ManagedObjectReference **resourcePool)
M
Matthias Bolte 已提交
1872 1873 1874 1875 1876 1877 1878 1879
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;
    esxVI_ObjectContent *computeResource = NULL;

    if (resourcePool == NULL || *resourcePool != NULL) {
1880
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
1881 1882 1883 1884 1885 1886 1887
        return -1;
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "parent")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
1888
                  (dynamicProperty->val, &managedObjectReference) < 0) {
M
Matthias Bolte 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
                goto failure;
            }

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

    if (managedObjectReference == NULL) {
1899 1900
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve compute resource of host system"));
M
Matthias Bolte 已提交
1901 1902 1903
        goto failure;
    }

1904 1905
    if (esxVI_String_AppendValueToList(&propertyNameList, "resourcePool") < 0 ||
        esxVI_LookupObjectContentByType(ctx, managedObjectReference,
1906 1907 1908
                                        "ComputeResource", propertyNameList,
                                        esxVI_Boolean_False,
                                        &computeResource) < 0) {
M
Matthias Bolte 已提交
1909 1910 1911 1912
        goto failure;
    }

    if (computeResource == NULL) {
1913 1914
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve compute resource of host system"));
M
Matthias Bolte 已提交
1915 1916 1917 1918 1919 1920 1921
        goto failure;
    }

    for (dynamicProperty = computeResource->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "resourcePool")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
1922
                  (dynamicProperty->val, resourcePool) < 0) {
M
Matthias Bolte 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932
                goto failure;
            }

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

    if ((*resourcePool) == NULL) {
1933 1934
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve resource pool of compute resource"));
M
Matthias Bolte 已提交
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
        goto failure;
    }

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

    return result;

  failure:
    result = -1;

    goto cleanup;
}



1953
int
1954
esxVI_LookupHostSystemByIp(esxVI_Context *ctx, const char *ipAddress,
M
Matthias Bolte 已提交
1955
                           esxVI_String *propertyNameList,
1956 1957 1958 1959 1960 1961
                           esxVI_ObjectContent **hostSystem)
{
    int result = 0;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;

    if (hostSystem == NULL || *hostSystem != NULL) {
1962
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1963 1964 1965
        return -1;
    }

1966 1967
    if (esxVI_FindByIp(ctx, ctx->datacenter, ipAddress, esxVI_Boolean_False,
                       &managedObjectReference) < 0) {
1968 1969 1970
        goto failure;
    }

1971
    if (esxVI_LookupObjectContentByType(ctx, managedObjectReference,
1972 1973
                                        "HostSystem", propertyNameList,
                                        esxVI_Boolean_False, hostSystem) < 0) {
1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
        goto failure;
    }

  cleanup:
    esxVI_ManagedObjectReference_Free(&managedObjectReference);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



int
1991
esxVI_LookupVirtualMachineByUuid(esxVI_Context *ctx, const unsigned char *uuid,
1992
                                 esxVI_String *propertyNameList,
1993
                                 esxVI_ObjectContent **virtualMachine,
M
Matthias Bolte 已提交
1994
                                 esxVI_Occurrence occurrence)
1995 1996 1997
{
    int result = 0;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;
1998
    char uuid_string[VIR_UUID_STRING_BUFLEN] = "";
1999 2000

    if (virtualMachine == NULL || *virtualMachine != NULL) {
2001
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2002 2003 2004
        return -1;
    }

2005 2006 2007
    virUUIDFormat(uuid, uuid_string);

    if (esxVI_FindByUuid(ctx, ctx->datacenter, uuid_string, esxVI_Boolean_True,
2008 2009 2010 2011
                         &managedObjectReference) < 0) {
        goto failure;
    }

2012
    if (managedObjectReference == NULL) {
M
Matthias Bolte 已提交
2013
        if (occurrence == esxVI_Occurrence_OptionalItem) {
2014 2015
            return 0;
        } else {
2016
            ESX_VI_ERROR(VIR_ERR_NO_DOMAIN,
2017 2018
                         _("Could not find domain with UUID '%s'"),
                         uuid_string);
2019 2020 2021 2022
            goto failure;
        }
    }

2023
    if (esxVI_LookupObjectContentByType(ctx, managedObjectReference,
2024 2025 2026
                                        "VirtualMachine", propertyNameList,
                                        esxVI_Boolean_False,
                                        virtualMachine) < 0) {
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
        goto failure;
    }

  cleanup:
    esxVI_ManagedObjectReference_Free(&managedObjectReference);

    return result;

  failure:
    result = -1;
M
Matthias Bolte 已提交
2037 2038 2039 2040 2041 2042

    goto cleanup;
}



2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055
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) {
2056
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
        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,
2095
                         _("Could not find domain with name '%s'"), name);
2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
            goto failure;
        }
    }

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

    return result;

  failure:
    result = -1;

    goto cleanup;
}



2115 2116
int
esxVI_LookupVirtualMachineByUuidAndPrepareForTask
2117
  (esxVI_Context *ctx, const unsigned char *uuid,
2118 2119 2120 2121 2122 2123 2124 2125
   esxVI_String *propertyNameList, esxVI_ObjectContent **virtualMachine,
   esxVI_Boolean autoAnswer)
{
    int result = 0;
    esxVI_String *completePropertyNameList = NULL;
    esxVI_VirtualMachineQuestionInfo *questionInfo = NULL;
    esxVI_TaskInfo *pendingTaskInfoList = NULL;

2126
    if (esxVI_String_DeepCopyList(&completePropertyNameList,
2127
                                  propertyNameList) < 0 ||
2128
        esxVI_String_AppendValueListToList(&completePropertyNameList,
2129 2130
                                           "runtime.question\0"
                                           "recentTask\0") < 0 ||
2131
        esxVI_LookupVirtualMachineByUuid(ctx, uuid, completePropertyNameList,
2132
                                         virtualMachine,
M
Matthias Bolte 已提交
2133
                                         esxVI_Occurrence_RequiredItem) < 0 ||
2134
        esxVI_GetVirtualMachineQuestionInfo(*virtualMachine,
2135 2136
                                            &questionInfo) < 0 ||
        esxVI_LookupPendingTaskInfoListByVirtualMachine
2137
           (ctx, *virtualMachine, &pendingTaskInfoList) < 0) {
2138 2139 2140 2141
        goto failure;
    }

    if (questionInfo != NULL &&
2142
        esxVI_HandleVirtualMachineQuestion(ctx, (*virtualMachine)->obj,
2143 2144 2145 2146 2147
                                           questionInfo, autoAnswer) < 0) {
        goto failure;
    }

    if (pendingTaskInfoList != NULL) {
2148 2149
        ESX_VI_ERROR(VIR_ERR_OPERATION_INVALID, "%s",
                     _("Other tasks are pending for this domain"));
2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167
        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 已提交
2168
int
2169 2170
esxVI_LookupDatastoreByName(esxVI_Context *ctx, const char *name,
                            esxVI_String *propertyNameList,
M
Matthias Bolte 已提交
2171
                            esxVI_ObjectContent **datastore,
M
Matthias Bolte 已提交
2172
                            esxVI_Occurrence occurrence)
M
Matthias Bolte 已提交
2173 2174 2175 2176 2177 2178
{
    int result = 0;
    esxVI_String *completePropertyNameList = NULL;
    esxVI_ObjectContent *datastoreList = NULL;
    esxVI_ObjectContent *candidate = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
2179
    esxVI_Boolean accessible = esxVI_Boolean_Undefined;
M
Matthias Bolte 已提交
2180
    size_t offset = strlen("/vmfs/volumes/");
2181
    int numInaccessibleDatastores = 0;
M
Matthias Bolte 已提交
2182 2183

    if (datastore == NULL || *datastore != NULL) {
2184
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
2185 2186 2187 2188
        return -1;
    }

    /* Get all datastores */
2189
    if (esxVI_String_DeepCopyList(&completePropertyNameList,
M
Matthias Bolte 已提交
2190
                                  propertyNameList) < 0 ||
2191
        esxVI_String_AppendValueListToList(&completePropertyNameList,
2192 2193 2194
                                           "summary.accessible\0"
                                           "summary.name\0"
                                           "summary.url\0") < 0) {
M
Matthias Bolte 已提交
2195 2196 2197
        goto failure;
    }

2198 2199
    if (esxVI_LookupObjectContentByType(ctx, ctx->datacenter, "Datastore",
                                        completePropertyNameList,
2200 2201
                                        esxVI_Boolean_True,
                                        &datastoreList) < 0) {
M
Matthias Bolte 已提交
2202 2203 2204 2205
        goto failure;
    }

    if (datastoreList == NULL) {
M
Matthias Bolte 已提交
2206
        if (occurrence == esxVI_Occurrence_OptionalItem) {
M
Matthias Bolte 已提交
2207 2208
            goto cleanup;
        } else {
2209 2210
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("No datastores available"));
M
Matthias Bolte 已提交
2211 2212 2213 2214 2215 2216 2217
            goto failure;
        }
    }

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

M
Matthias Bolte 已提交
2220 2221
        for (dynamicProperty = candidate->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
2222
            if (STREQ(dynamicProperty->name, "summary.accessible")) {
2223
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
                                             esxVI_Type_Boolean) < 0) {
                    goto failure;
                }

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

        if (accessible == esxVI_Boolean_Undefined) {
2234 2235 2236
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("Got incomplete response while querying for the "
                           "datastore 'summary.accessible' property"));
2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248
            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")) {
2249
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
M
Matthias Bolte 已提交
2250 2251 2252 2253 2254
                                             esxVI_Type_String) < 0) {
                    goto failure;
                }

                if (STREQ(dynamicProperty->val->string, name)) {
2255
                    if (esxVI_ObjectContent_DeepCopy(datastore,
M
Matthias Bolte 已提交
2256 2257 2258 2259 2260 2261 2262
                                                     candidate) < 0) {
                        goto failure;
                    }

                    /* Found datastore with matching name */
                    goto cleanup;
                }
2263 2264 2265 2266 2267 2268 2269 2270 2271
            } 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;
                }

2272
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
M
Matthias Bolte 已提交
2273 2274 2275 2276 2277 2278
                                             esxVI_Type_String) < 0) {
                    goto failure;
                }

                if (! STRPREFIX(dynamicProperty->val->string,
                                "/vmfs/volumes/")) {
2279
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2280 2281
                                 _("Datastore URL '%s' has unexpected prefix, "
                                   "expecting '/vmfs/volumes/' prefix"),
M
Matthias Bolte 已提交
2282 2283 2284 2285 2286
                                 dynamicProperty->val->string);
                    goto failure;
                }

                if (STREQ(dynamicProperty->val->string + offset, name)) {
2287
                    if (esxVI_ObjectContent_DeepCopy(datastore,
M
Matthias Bolte 已提交
2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
                                                     candidate) < 0) {
                        goto failure;
                    }

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

M
Matthias Bolte 已提交
2301
    if (occurrence != esxVI_Occurrence_OptionalItem) {
2302
        if (numInaccessibleDatastores > 0) {
2303
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2304 2305
                         _("Could not find datastore '%s', maybe it's "
                           "inaccessible"), name);
2306
        } else {
2307
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2308
                         _("Could not find datastore '%s'"), name);
2309 2310
        }

M
Matthias Bolte 已提交
2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
        goto failure;
    }

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

    return result;

  failure:
    result = -1;
2322 2323 2324 2325 2326 2327

    goto cleanup;
}



2328
int esxVI_LookupTaskInfoByTask(esxVI_Context *ctx,
2329 2330 2331 2332 2333 2334 2335 2336 2337
                               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) {
2338
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2339 2340 2341
        return -1;
    }

2342 2343 2344
    if (esxVI_String_AppendValueToList(&propertyNameList, "info") < 0 ||
        esxVI_LookupObjectContentByType(ctx, task, "Task", propertyNameList,
                                        esxVI_Boolean_False,
2345 2346 2347 2348 2349 2350 2351
                                        &objectContent) < 0) {
        goto failure;
    }

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "info")) {
2352
            if (esxVI_TaskInfo_CastFromAnyType(dynamicProperty->val,
2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378
                                               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
2379
  (esxVI_Context *ctx, esxVI_ObjectContent *virtualMachine,
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389
   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) {
2390
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2391 2392 2393 2394 2395 2396 2397 2398
        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
2399
                  (dynamicProperty->val, &recentTaskList) < 0) {
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
                goto failure;
            }

            break;
        }
    }

    /* Lookup task info for each task */
    for (recentTask = recentTaskList; recentTask != NULL;
         recentTask = recentTask->_next) {
2410
        if (esxVI_LookupTaskInfoByTask(ctx, recentTask, &taskInfo) < 0) {
2411 2412 2413 2414 2415
            goto failure;
        }

        if (taskInfo->state == esxVI_TaskInfoState_Queued ||
            taskInfo->state == esxVI_TaskInfoState_Running) {
2416
            if (esxVI_TaskInfo_AppendToList(pendingTaskInfoList,
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
                                            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
2445
esxVI_LookupAndHandleVirtualMachineQuestion(esxVI_Context *ctx,
2446 2447 2448 2449 2450 2451 2452 2453
                                            const unsigned char *uuid,
                                            esxVI_Boolean autoAnswer)
{
    int result = 0;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachineQuestionInfo *questionInfo = NULL;

2454
    if (esxVI_String_AppendValueToList(&propertyNameList,
2455
                                       "runtime.question") < 0 ||
2456
        esxVI_LookupVirtualMachineByUuid(ctx, uuid, propertyNameList,
2457
                                         &virtualMachine,
M
Matthias Bolte 已提交
2458
                                         esxVI_Occurrence_RequiredItem) < 0 ||
2459
        esxVI_GetVirtualMachineQuestionInfo(virtualMachine,
2460 2461 2462 2463 2464
                                            &questionInfo) < 0) {
        goto failure;
    }

    if (questionInfo != NULL &&
2465
        esxVI_HandleVirtualMachineQuestion(ctx, virtualMachine->obj,
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484
                                           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;
}



2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627
int
esxVI_LookupRootSnapshotTreeList
  (esxVI_Context *ctx, const unsigned char *virtualMachineUuid,
   esxVI_VirtualMachineSnapshotTree **rootSnapshotTreeList)
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;

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

    if (esxVI_String_AppendValueToList(&propertyNameList,
                                       "snapshot.rootSnapshotList") < 0 ||
        esxVI_LookupVirtualMachineByUuid(ctx, virtualMachineUuid,
                                         propertyNameList, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0) {
        goto failure;
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "snapshot.rootSnapshotList")) {
            if (esxVI_VirtualMachineSnapshotTree_CastListFromAnyType
                  (dynamicProperty->val, rootSnapshotTreeList) < 0) {
                goto failure;
            }

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

    if (*rootSnapshotTreeList == NULL) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not lookup root snapshot list"));
        goto failure;
    }

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

    return result;

  failure:
    esxVI_VirtualMachineSnapshotTree_Free(rootSnapshotTreeList);

    result = -1;

    goto cleanup;
}



int
esxVI_LookupCurrentSnapshotTree
  (esxVI_Context *ctx, const unsigned char *virtualMachineUuid,
   esxVI_VirtualMachineSnapshotTree **currentSnapshotTree,
   esxVI_Occurrence occurrence)
{
    int result = 0;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_ManagedObjectReference *currentSnapshot = NULL;
    esxVI_VirtualMachineSnapshotTree *rootSnapshotTreeList = NULL;
    esxVI_VirtualMachineSnapshotTree *snapshotTree = NULL;

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

    if (esxVI_String_AppendValueListToList(&propertyNameList,
                                           "snapshot.currentSnapshot\0"
                                           "snapshot.rootSnapshotList\0") < 0 ||
        esxVI_LookupVirtualMachineByUuid(ctx, virtualMachineUuid,
                                         propertyNameList, &virtualMachine,
                                         esxVI_Occurrence_RequiredItem) < 0) {
        goto failure;
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "snapshot.currentSnapshot")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
                  (dynamicProperty->val, &currentSnapshot) < 0) {
                goto failure;
            }
        } else if (STREQ(dynamicProperty->name, "snapshot.rootSnapshotList")) {
            if (esxVI_VirtualMachineSnapshotTree_CastListFromAnyType
                  (dynamicProperty->val, &rootSnapshotTreeList) < 0) {
                goto failure;
            }
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    if (currentSnapshot == NULL) {
        if (occurrence == esxVI_Occurrence_OptionalItem) {
            return 0;
        } else {
            ESX_VI_ERROR(VIR_ERR_NO_DOMAIN_SNAPSHOT, "%s",
                         _("Domain has no current snapshot"));
            goto failure;
        }
    }

    if (rootSnapshotTreeList == NULL) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not lookup root snapshot list"));
        goto failure;
    }

    if (esxVI_GetSnapshotTreeBySnapshot(rootSnapshotTreeList, currentSnapshot,
                                        &snapshotTree) < 0 ||
        esxVI_VirtualMachineSnapshotTree_DeepCopy(currentSnapshotTree,
                                                  snapshotTree) < 0) {
        goto failure;
    }

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_ManagedObjectReference_Free(&currentSnapshot);
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

    return result;

  failure:
    result = -1;

    goto cleanup;
}



2628 2629
int
esxVI_HandleVirtualMachineQuestion
2630
  (esxVI_Context *ctx, esxVI_ManagedObjectReference *virtualMachine,
2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660
   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)) {
2661
            virReportOOMError();
2662 2663 2664 2665 2666 2667 2668 2669
            goto failure;
        }

        possibleAnswers = virBufferContentAndReset(&buffer);
    }

    if (autoAnswer == esxVI_Boolean_True) {
        if (possibleAnswers == NULL) {
2670
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2671 2672
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', no possible answers"),
2673 2674 2675
                         questionInfo->text);
            goto failure;
        } else if (answerChoice == NULL) {
2676
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2677 2678 2679
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', possible answers are %s, but no "
                           "default answer is specified"), questionInfo->text,
2680 2681 2682 2683 2684 2685 2686 2687 2688
                         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);

2689
        if (esxVI_AnswerVM(ctx, virtualMachine, questionInfo->id,
2690 2691 2692 2693 2694
                           answerChoice->key) < 0) {
            goto failure;
        }
    } else {
        if (possibleAnswers != NULL) {
2695
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2696 2697
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', possible answers are %s"),
2698 2699
                         questionInfo->text, possibleAnswers);
        } else {
2700
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2701 2702
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', no possible answers"),
2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714
                         questionInfo->text);
        }

        goto failure;
    }

  cleanup:
    VIR_FREE(possibleAnswers);

    return result;

  failure:
2715
    virBufferFreeAndReset(&buffer);
2716 2717 2718 2719 2720 2721 2722 2723

    result = -1;

    goto cleanup;
}



2724
int
2725
esxVI_WaitForTaskCompletion(esxVI_Context *ctx,
2726
                            esxVI_ManagedObjectReference *task,
2727 2728
                            const unsigned char *virtualMachineUuid,
                            esxVI_Boolean autoAnswer,
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742
                            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;
2743
    esxVI_TaskInfo *taskInfo = NULL;
2744 2745 2746 2747

    version = strdup("");

    if (version == NULL) {
2748
        virReportOOMError();
2749 2750 2751
        goto failure;
    }

2752
    if (esxVI_ObjectSpec_Alloc(&objectSpec) < 0) {
2753 2754 2755 2756 2757 2758
        goto failure;
    }

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

2759
    if (esxVI_PropertySpec_Alloc(&propertySpec) < 0) {
2760 2761 2762 2763 2764
        goto failure;
    }

    propertySpec->type = task->type;

2765
    if (esxVI_String_AppendValueToList(&propertySpec->pathSet,
2766
                                       "info.state") < 0 ||
2767 2768
        esxVI_PropertyFilterSpec_Alloc(&propertyFilterSpec) < 0 ||
        esxVI_PropertySpec_AppendToList(&propertyFilterSpec->propSet,
2769
                                        propertySpec) < 0 ||
2770
        esxVI_ObjectSpec_AppendToList(&propertyFilterSpec->objectSet,
2771
                                      objectSpec) < 0 ||
2772
        esxVI_CreateFilter(ctx, propertyFilterSpec, esxVI_Boolean_True,
2773 2774 2775 2776 2777 2778 2779 2780
                           &propertyFilter) < 0) {
        goto failure;
    }

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

2781 2782
        if (virtualMachineUuid != NULL) {
            if (esxVI_LookupAndHandleVirtualMachineQuestion
2783
                  (ctx, virtualMachineUuid, autoAnswer) < 0) {
2784 2785 2786 2787 2788
                /*
                 * FIXME: Disable error reporting here, so possible errors from
                 *        esxVI_LookupTaskInfoByTask() and esxVI_CancelTask()
                 *        don't overwrite the actual error
                 */
2789
                if (esxVI_LookupTaskInfoByTask(ctx, task, &taskInfo)) {
2790 2791 2792 2793
                    goto failure;
                }

                if (taskInfo->cancelable == esxVI_Boolean_True) {
2794
                    if (esxVI_CancelTask(ctx, task) < 0) {
2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809
                        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;
            }
        }

2810
        if (esxVI_WaitForUpdates(ctx, version, &updateSet) < 0) {
2811 2812 2813 2814 2815 2816 2817
            goto failure;
        }

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

        if (version == NULL) {
2818
            virReportOOMError();
2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849
            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;
        }

2850
        if (esxVI_TaskInfoState_CastFromAnyType(propertyValue, &state) < 0) {
2851 2852 2853 2854
            goto failure;
        }
    }

2855
    if (esxVI_DestroyPropertyFilter(ctx, propertyFilter) < 0) {
2856 2857 2858
        VIR_DEBUG0("DestroyPropertyFilter failed");
    }

2859
    if (esxVI_TaskInfoState_CastFromAnyType(propertyValue, finalState) < 0) {
2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879
        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);
2880
    esxVI_TaskInfo_Free(&taskInfo);
2881 2882 2883 2884 2885 2886 2887 2888

    return result;

  failure:
    result = -1;

    goto cleanup;
}