esx_vi.c 93.0 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
#include "esx_vi.h"
#include "esx_vi_methods.h"
#include "esx_util.h"

#define VIR_FROM_THIS VIR_FROM_ESX



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



#define ESX_VI__TEMPLATE__ALLOC(_type)                                        \
    int                                                                       \
51
    esxVI_##_type##_Alloc(esxVI_##_type **ptrptr)                             \
52
    {                                                                         \
53
        return esxVI_Alloc((void **)ptrptr, sizeof(esxVI_##_type));           \
54 55
    }

56 57


58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
#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 已提交
88
    VIR_FREE(item->ipAddress);
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

    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 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
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)
140 141 142 143 144 145 146 147 148 149 150 151 152 153
{
    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 已提交
154 155
esxVI_CURL_Debug(CURL *curl ATTRIBUTE_UNUSED, curl_infotype type,
                 char *info, size_t size, void *data ATTRIBUTE_UNUSED)
156
{
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
    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;
    }

178 179
    switch (type) {
      case CURLINFO_TEXT:
180 181 182 183 184
        if (size > 0 && buffer[size - 1] == '\n') {
            buffer[size - 1] = '\0';
        }

        VIR_DEBUG("CURLINFO_TEXT [[[[%s]]]]", buffer);
185 186 187
        break;

      case CURLINFO_HEADER_IN:
188
        VIR_DEBUG("CURLINFO_HEADER_IN [[[[%s]]]]", buffer);
189 190 191
        break;

      case CURLINFO_HEADER_OUT:
192
        VIR_DEBUG("CURLINFO_HEADER_OUT [[[[%s]]]]", buffer);
193 194 195
        break;

      case CURLINFO_DATA_IN:
196
        VIR_DEBUG("CURLINFO_DATA_IN [[[[%s]]]]", buffer);
197 198 199
        break;

      case CURLINFO_DATA_OUT:
200
        VIR_DEBUG("CURLINFO_DATA_OUT [[[[%s]]]]", buffer);
201 202 203 204 205 206 207
        break;

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

208 209
    VIR_FREE(buffer);

210 211 212 213
    return 0;
}
#endif

214
static int
215
esxVI_CURL_Perform(esxVI_Context *ctx, const char *url)
216 217 218 219 220 221 222 223 224 225
{
    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) {
226
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
227
                     _("curl_easy_perform() returned an error: %s (%d) : %s"),
228
                     curl_easy_strerror(errorCode), errorCode, ctx->curl_error);
229 230 231 232 233 234 235
        return -1;
    }

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

    if (errorCode != CURLE_OK) {
236
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
237 238
                     _("curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned an "
                       "error: %s (%d) : %s"), curl_easy_strerror(errorCode),
239
                     errorCode, ctx->curl_error);
240 241 242 243
        return -1;
    }

    if (responseCode < 0) {
244 245 246
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned a "
                       "negative response code"));
247 248 249 250 251 252 253 254 255
        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) {
256
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
257 258 259
                         _("curl_easy_getinfo(CURLINFO_REDIRECT_URL) returned "
                           "an error: %s (%d) : %s"),
                         curl_easy_strerror(errorCode),
260
                         errorCode, ctx->curl_error);
261
        } else {
262
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
263
                         _("The server redirects from '%s' to '%s'"), url,
264 265 266
                         redirectUrl);
        }
#else
267
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
268
                     _("The server redirects from '%s'"), url);
269 270 271 272 273 274 275 276
#endif

        return -1;
    }

    return responseCode;
}

277
int
278
esxVI_Context_Connect(esxVI_Context *ctx, const char *url,
M
Matthias Bolte 已提交
279 280
                      const char *ipAddress, const char *username,
                      const char *password, int noVerify)
281
{
M
Matthias Bolte 已提交
282
    int result = -1;
283 284 285 286
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *datacenterList = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;

M
Matthias Bolte 已提交
287 288 289
    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) {
290
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
291
        return -1;
292 293
    }

294 295
    if (esxVI_String_DeepCopyValue(&ctx->url, url) < 0 ||
        esxVI_String_DeepCopyValue(&ctx->ipAddress, ipAddress) < 0) {
M
Matthias Bolte 已提交
296
        goto cleanup;
297 298 299 300 301
    }

    ctx->curl_handle = curl_easy_init();

    if (ctx->curl_handle == NULL) {
302 303
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not initialize CURL"));
M
Matthias Bolte 已提交
304
        goto cleanup;
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
    }

    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) {
322 323
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not build CURL header list"));
M
Matthias Bolte 已提交
324
        goto cleanup;
325 326 327 328 329
    }

    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);
330
    curl_easy_setopt(ctx->curl_handle, CURLOPT_FOLLOWLOCATION, 0);
331
    curl_easy_setopt(ctx->curl_handle, CURLOPT_SSL_VERIFYPEER, noVerify ? 0 : 1);
332
    curl_easy_setopt(ctx->curl_handle, CURLOPT_SSL_VERIFYHOST, noVerify ? 0 : 2);
333 334
    curl_easy_setopt(ctx->curl_handle, CURLOPT_COOKIEFILE, "");
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HTTPHEADER, ctx->curl_headers);
M
Matthias Bolte 已提交
335 336
    curl_easy_setopt(ctx->curl_handle, CURLOPT_READFUNCTION,
                     esxVI_CURL_ReadString);
337
    curl_easy_setopt(ctx->curl_handle, CURLOPT_WRITEFUNCTION,
M
Matthias Bolte 已提交
338
                     esxVI_CURL_WriteBuffer);
339 340
    curl_easy_setopt(ctx->curl_handle, CURLOPT_ERRORBUFFER,
                     ctx->curl_error);
341
#if ESX_VI__CURL__ENABLE_DEBUG_OUTPUT
342 343
    curl_easy_setopt(ctx->curl_handle, CURLOPT_DEBUGFUNCTION, esxVI_CURL_Debug);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_VERBOSE, 1);
344 345 346
#endif

    if (virMutexInit(&ctx->curl_lock) < 0) {
347 348
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not initialize CURL mutex"));
M
Matthias Bolte 已提交
349
        goto cleanup;
350 351 352 353 354 355
    }

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

    if (ctx->username == NULL || ctx->password == NULL) {
356
        virReportOOMError();
M
Matthias Bolte 已提交
357
        goto cleanup;
358 359
    }

360
    if (esxVI_RetrieveServiceContent(ctx, &ctx->service) < 0) {
M
Matthias Bolte 已提交
361
        goto cleanup;
362 363
    }

364 365 366
    if (STREQ(ctx->service->about->apiType, "HostAgent") ||
        STREQ(ctx->service->about->apiType, "VirtualCenter")) {
        if (STRPREFIX(ctx->service->about->apiVersion, "2.5")) {
367
            ctx->apiVersion = esxVI_APIVersion_25;
368
        } else if (STRPREFIX(ctx->service->about->apiVersion, "4.0")) {
369
            ctx->apiVersion = esxVI_APIVersion_40;
370
        } else {
371
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
372 373
                         _("Expecting VI API major/minor version '2.5' or '4.0' "
                           "but found '%s'"), ctx->service->about->apiVersion);
M
Matthias Bolte 已提交
374
            goto cleanup;
375
        }
376

377 378 379 380
        if (STREQ(ctx->service->about->productLineId, "gsx")) {
            if (STRPREFIX(ctx->service->about->version, "2.0")) {
                ctx->productVersion = esxVI_ProductVersion_GSX20;
            } else {
381
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
382 383
                             _("Expecting GSX major/minor version '2.0' but "
                               "found '%s'"), ctx->service->about->version);
M
Matthias Bolte 已提交
384
                goto cleanup;
385 386 387 388 389 390 391 392
            }
        } 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 {
393
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
394 395
                             _("Expecting ESX major/minor version '3.5' or "
                               "'4.0' but found '%s'"),
396
                             ctx->service->about->version);
M
Matthias Bolte 已提交
397
                goto cleanup;
398 399 400 401 402 403 404
            }
        } 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 {
405
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
406 407
                             _("Expecting VPX major/minor version '2.5' or '4.0' "
                               "but found '%s'"), ctx->service->about->version);
M
Matthias Bolte 已提交
408
                goto cleanup;
409
            }
410
        } else {
411
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
412 413
                         _("Expecting product 'gsx' or 'esx' or 'embeddedEsx' "
                           "or 'vpx' but found '%s'"),
414
                         ctx->service->about->productLineId);
M
Matthias Bolte 已提交
415
            goto cleanup;
416 417
        }
    } else {
418
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
419 420
                     _("Expecting VI API type 'HostAgent' or 'VirtualCenter' "
                       "but found '%s'"), ctx->service->about->apiType);
M
Matthias Bolte 已提交
421
        goto cleanup;
422 423
    }

424
    if (esxVI_Login(ctx, username, password, NULL, &ctx->session) < 0) {
M
Matthias Bolte 已提交
425
        goto cleanup;
426 427
    }

428
    esxVI_BuildFullTraversalSpecList(&ctx->fullTraversalSpecList);
429

430
    if (esxVI_String_AppendValueListToList(&propertyNameList,
431 432
                                           "vmFolder\0"
                                           "hostFolder\0") < 0) {
M
Matthias Bolte 已提交
433
        goto cleanup;
434 435 436
    }

    /* Get pointer to Datacenter for later use */
437
    if (esxVI_LookupObjectContentByType(ctx, ctx->service->rootFolder,
438 439 440
                                        "Datacenter", propertyNameList,
                                        esxVI_Boolean_True,
                                        &datacenterList) < 0) {
M
Matthias Bolte 已提交
441
        goto cleanup;
442 443 444
    }

    if (datacenterList == NULL) {
445 446 447
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve the 'datacenter' object from the "
                       "VI host/center"));
M
Matthias Bolte 已提交
448
        goto cleanup;
449 450 451 452 453 454 455 456 457 458
    }

    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
459
                  (dynamicProperty->val, &ctx->vmFolder)) {
M
Matthias Bolte 已提交
460
                goto cleanup;
461 462 463
            }
        } else if (STREQ(dynamicProperty->name, "hostFolder")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
464
                  (dynamicProperty->val, &ctx->hostFolder)) {
M
Matthias Bolte 已提交
465
                goto cleanup;
466 467 468 469 470 471 472
            }
        } else {
            VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
        }
    }

    if (ctx->vmFolder == NULL || ctx->hostFolder == NULL) {
473 474 475
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("The 'datacenter' object is missing the "
                       "'vmFolder'/'hostFolder' property"));
M
Matthias Bolte 已提交
476
        goto cleanup;
477 478
    }

M
Matthias Bolte 已提交
479 480
    result = 0;

481 482 483 484 485 486 487 488
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&datacenterList);

    return result;
}

int
489
esxVI_Context_DownloadFile(esxVI_Context *ctx, const char *url, char **content)
490 491
{
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
492
    int responseCode = 0;
493 494

    if (content == NULL || *content != NULL) {
495
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
496
        return -1;
497 498 499 500 501 502
    }

    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 已提交
503
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 0);
504 505
    curl_easy_setopt(ctx->curl_handle, CURLOPT_HTTPGET, 1);

506
    responseCode = esxVI_CURL_Perform(ctx, url);
507

508
    virMutexUnlock(&ctx->curl_lock);
509

510
    if (responseCode < 0) {
M
Matthias Bolte 已提交
511
        goto cleanup;
512
    } else if (responseCode != 200) {
513
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
514
                     _("HTTP response code %d for download from '%s'"),
515
                     responseCode, url);
M
Matthias Bolte 已提交
516
        goto cleanup;
517 518 519
    }

    if (virBufferError(&buffer)) {
520
        virReportOOMError();
M
Matthias Bolte 已提交
521
        goto cleanup;
522 523 524 525
    }

    *content = virBufferContentAndReset(&buffer);

M
Matthias Bolte 已提交
526 527 528 529 530
  cleanup:
    if (*content == NULL) {
        virBufferFreeAndReset(&buffer);
        return -1;
    }
531

M
Matthias Bolte 已提交
532
    return 0;
533 534
}

M
Matthias Bolte 已提交
535
int
536 537
esxVI_Context_UploadFile(esxVI_Context *ctx, const char *url,
                         const char *content)
M
Matthias Bolte 已提交
538
{
539
    int responseCode = 0;
M
Matthias Bolte 已提交
540 541

    if (content == NULL) {
542
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
543 544 545 546 547 548 549 550 551 552
        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));

553
    responseCode = esxVI_CURL_Perform(ctx, url);
M
Matthias Bolte 已提交
554 555 556

    virMutexUnlock(&ctx->curl_lock);

557 558 559
    if (responseCode < 0) {
        return -1;
    } else if (responseCode != 200 && responseCode != 201) {
560
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
561
                     _("HTTP response code %d for upload to '%s'"),
562
                     responseCode, url);
M
Matthias Bolte 已提交
563 564 565 566 567 568
        return -1;
    }

    return 0;
}

569
int
570 571 572
esxVI_Context_Execute(esxVI_Context *ctx, const char *methodName,
                      const char *request, esxVI_Response **response,
                      esxVI_Occurrence occurrence)
573
{
M
Matthias Bolte 已提交
574
    int result = -1;
575 576
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
    esxVI_Fault *fault = NULL;
577 578 579
    char *xpathExpression = NULL;
    xmlXPathContextPtr xpathContext = NULL;
    xmlNodePtr responseNode = NULL;
580

581
    if (request == NULL || response == NULL || *response != NULL) {
582
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
583
        return -1;
584 585
    }

586
    if (esxVI_Response_Alloc(response) < 0) {
M
Matthias Bolte 已提交
587
        return -1;
588 589 590 591 592 593
    }

    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 已提交
594
    curl_easy_setopt(ctx->curl_handle, CURLOPT_UPLOAD, 0);
595 596
    curl_easy_setopt(ctx->curl_handle, CURLOPT_POSTFIELDS, request);
    curl_easy_setopt(ctx->curl_handle, CURLOPT_POSTFIELDSIZE, strlen(request));
597

598
    (*response)->responseCode = esxVI_CURL_Perform(ctx, ctx->url);
599

600
    virMutexUnlock(&ctx->curl_lock);
601

602
    if ((*response)->responseCode < 0) {
M
Matthias Bolte 已提交
603
        goto cleanup;
604 605 606
    }

    if (virBufferError(&buffer)) {
607
        virReportOOMError();
M
Matthias Bolte 已提交
608
        goto cleanup;
609 610
    }

611
    (*response)->content = virBufferContentAndReset(&buffer);
612

613
    if ((*response)->responseCode == 500 || (*response)->responseCode == 200) {
614 615
        (*response)->document = xmlReadDoc(BAD_CAST (*response)->content, "",
                                           NULL, XML_PARSE_NONET);
616

617
        if ((*response)->document == NULL) {
618
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
619
                         _("Response for call to '%s' could not be parsed"),
620
                         methodName);
M
Matthias Bolte 已提交
621
            goto cleanup;
622 623
        }

624
        if (xmlDocGetRootElement((*response)->document) == NULL) {
625
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
626
                         _("Response for call to '%s' is an empty XML document"),
627
                         methodName);
M
Matthias Bolte 已提交
628
            goto cleanup;
629 630
        }

631
        xpathContext = xmlXPathNewContext((*response)->document);
632

633
        if (xpathContext == NULL) {
634 635
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("Could not create XPath context"));
M
Matthias Bolte 已提交
636
            goto cleanup;
637 638
        }

639
        xmlXPathRegisterNs(xpathContext, BAD_CAST "soapenv",
640
                           BAD_CAST "http://schemas.xmlsoap.org/soap/envelope/");
641
        xmlXPathRegisterNs(xpathContext, BAD_CAST "vim", BAD_CAST "urn:vim25");
642

643 644
        if ((*response)->responseCode == 500) {
            (*response)->node =
645
              virXPathNode("/soapenv:Envelope/soapenv:Body/soapenv:Fault",
646
                           xpathContext);
647

648
            if ((*response)->node == NULL) {
649
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
650 651
                             _("HTTP response code %d for call to '%s'. "
                               "Fault is unknown, XPath evaluation failed"),
652
                             (*response)->responseCode, methodName);
M
Matthias Bolte 已提交
653
                goto cleanup;
654 655
            }

656 657
            if (esxVI_Fault_Deserialize((*response)->node, &fault) < 0) {
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
658 659
                             _("HTTP response code %d for call to '%s'. "
                               "Fault is unknown, deserialization failed"),
660
                             (*response)->responseCode, methodName);
M
Matthias Bolte 已提交
661
                goto cleanup;
662 663
            }

664
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
665 666
                         _("HTTP response code %d for call to '%s'. "
                           "Fault: %s - %s"), (*response)->responseCode,
667
                         methodName, fault->faultcode, fault->faultstring);
668 669 670 671 672 673

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

M
Matthias Bolte 已提交
674
            goto cleanup;
675 676 677 678
        } else {
            if (virAsprintf(&xpathExpression,
                            "/soapenv:Envelope/soapenv:Body/vim:%sResponse",
                            methodName) < 0) {
679
                virReportOOMError();
M
Matthias Bolte 已提交
680
                goto cleanup;
681
            }
682

683
            responseNode = virXPathNode(xpathExpression, xpathContext);
684

685
            if (responseNode == NULL) {
686
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
687 688
                             _("XPath evaluation of response for call to '%s' "
                               "failed"), methodName);
M
Matthias Bolte 已提交
689
                goto cleanup;
690 691
            }

692
            xpathContext->node = responseNode;
693
            (*response)->node = virXPathNode("./vim:returnval", xpathContext);
694

695 696
            switch (occurrence) {
              case esxVI_Occurrence_RequiredItem:
697 698
                if ((*response)->node == NULL) {
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
699 700
                                 _("Call to '%s' returned an empty result, "
                                   "expecting a non-empty result"), methodName);
M
Matthias Bolte 已提交
701
                    goto cleanup;
702 703
                } else if ((*response)->node->next != NULL) {
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
704 705
                                 _("Call to '%s' returned a list, expecting "
                                   "exactly one item"), methodName);
M
Matthias Bolte 已提交
706
                    goto cleanup;
707 708 709 710 711
                }

                break;

              case esxVI_Occurrence_RequiredList:
712
                if ((*response)->node == NULL) {
713
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
714 715
                                 _("Call to '%s' returned an empty result, "
                                   "expecting a non-empty result"), methodName);
M
Matthias Bolte 已提交
716
                    goto cleanup;
717 718 719 720 721 722 723
                }

                break;

              case esxVI_Occurrence_OptionalItem:
                if ((*response)->node != NULL &&
                    (*response)->node->next != NULL) {
724
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
725 726
                                 _("Call to '%s' returned a list, expecting "
                                   "exactly one item"), methodName);
M
Matthias Bolte 已提交
727
                    goto cleanup;
728 729 730 731
                }

                break;

732
              case esxVI_Occurrence_OptionalList:
733 734 735 736 737
                /* Any amount of items is valid */
                break;

              case esxVI_Occurrence_None:
                if ((*response)->node != NULL) {
738
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
739 740
                                 _("Call to '%s' returned something, expecting "
                                   "an empty result"), methodName);
M
Matthias Bolte 已提交
741
                    goto cleanup;
742 743 744 745 746
                }

                break;

              default:
747 748
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                             _("Invalid argument (occurrence)"));
M
Matthias Bolte 已提交
749
                goto cleanup;
750
            }
751
        }
752
    } else {
753
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
754
                     _("HTTP response code %d for call to '%s'"),
755
                     (*response)->responseCode, methodName);
M
Matthias Bolte 已提交
756
        goto cleanup;
757 758
    }

M
Matthias Bolte 已提交
759 760
    result = 0;

761
  cleanup:
M
Matthias Bolte 已提交
762 763 764 765 766 767
    if (result < 0) {
        virBufferFreeAndReset(&buffer);
        esxVI_Response_Free(response);
        esxVI_Fault_Free(&fault);
    }

768 769 770 771
    VIR_FREE(xpathExpression);
    xmlXPathFreeContext(xpathContext);

    return result;
772 773 774 775 776
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
777
 * Response
778 779
 */

780 781
/* esxVI_Response_Alloc */
ESX_VI__TEMPLATE__ALLOC(Response);
782

783 784
/* esxVI_Response_Free */
ESX_VI__TEMPLATE__FREE(Response,
785
{
786
    VIR_FREE(item->content);
787 788 789 790 791 792 793 794 795 796 797 798 799

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



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

int
800
esxVI_Enumeration_CastFromAnyType(const esxVI_Enumeration *enumeration,
801 802 803 804 805
                                  esxVI_AnyType *anyType, int *value)
{
    int i;

    if (anyType == NULL || value == NULL) {
806
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
807 808 809 810 811
        return -1;
    }

    *value = 0; /* undefined */

812
    if (anyType->type != enumeration->type) {
813
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
814
                     _("Expecting type '%s' but found '%s'"),
815 816
                     esxVI_Type_ToString(enumeration->type),
                     esxVI_Type_ToString(anyType->type));
817 818 819 820 821 822 823 824 825 826
        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;
        }
    }

827
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
828
                 _("Unknown value '%s' for %s"), anyType->value,
829
                 esxVI_Type_ToString(enumeration->type));
830 831 832 833 834

    return -1;
}

int
835
esxVI_Enumeration_Serialize(const esxVI_Enumeration *enumeration,
836
                            int value, const char *element, virBufferPtr output)
837 838 839 840 841
{
    int i;
    const char *name = NULL;

    if (element == NULL || output == NULL) {
842
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
843 844 845 846
        return -1;
    }

    if (value == 0) { /* undefined */
847
        return 0;
848 849 850 851 852 853 854 855 856 857
    }

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

    if (name == NULL) {
858
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
859 860 861
        return -1;
    }

862 863
    ESV_VI__XML_TAG__OPEN(output, element,
                          esxVI_Type_ToString(enumeration->type));
864 865 866 867 868 869 870 871 872

    virBufferAdd(output, name, -1);

    ESV_VI__XML_TAG__CLOSE(output, element);

    return 0;
}

int
873
esxVI_Enumeration_Deserialize(const esxVI_Enumeration *enumeration,
874 875 876
                              xmlNodePtr node, int *value)
{
    int i;
M
Matthias Bolte 已提交
877
    int result = -1;
878 879 880
    char *name = NULL;

    if (value == NULL) {
881
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
882
        return -1;
883 884 885 886
    }

    *value = 0; /* undefined */

887
    if (esxVI_String_DeserializeValue(node, &name) < 0) {
M
Matthias Bolte 已提交
888
        return -1;
889 890 891 892 893
    }

    for (i = 0; enumeration->values[i].name != NULL; ++i) {
        if (STREQ(name, enumeration->values[i].name)) {
            *value = enumeration->values[i].value;
M
Matthias Bolte 已提交
894 895
            result = 0;
            break;
896 897 898
        }
    }

M
Matthias Bolte 已提交
899 900 901 902
    if (result < 0) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, _("Unknown value '%s' for %s"),
                     name, esxVI_Type_ToString(enumeration->type));
    }
903 904 905 906 907 908 909 910 911 912 913 914 915

    VIR_FREE(name);

    return result;
}



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

int
916
esxVI_List_Append(esxVI_List **list, esxVI_List *item)
917 918 919 920
{
    esxVI_List *next = NULL;

    if (list == NULL || item == NULL) {
921
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
        return -1;
    }

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

    next = *list;

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

    next->_next = item;

    return 0;
}

int
942
esxVI_List_DeepCopy(esxVI_List **destList, esxVI_List *srcList,
943 944 945 946 947 948 949
                    esxVI_List_DeepCopyFunc deepCopyFunc,
                    esxVI_List_FreeFunc freeFunc)
{
    esxVI_List *dest = NULL;
    esxVI_List *src = NULL;

    if (destList == NULL || *destList != NULL) {
950
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
951
        return -1;
952 953 954
    }

    for (src = srcList; src != NULL; src = src->_next) {
955 956
        if (deepCopyFunc(&dest, src) < 0 ||
            esxVI_List_Append(destList, dest) < 0) {
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
            goto failure;
        }

        dest = NULL;
    }

    return 0;

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

    return -1;
}

972
int
973
esxVI_List_CastFromAnyType(esxVI_AnyType *anyType, esxVI_List **list,
974 975 976
                           esxVI_List_CastFromAnyTypeFunc castFromAnyTypeFunc,
                           esxVI_List_FreeFunc freeFunc)
{
M
Matthias Bolte 已提交
977
    int result = -1;
978 979 980 981 982 983
    xmlNodePtr childNode = NULL;
    esxVI_AnyType *childAnyType = NULL;
    esxVI_List *item = NULL;

    if (list == NULL || *list != NULL ||
        castFromAnyTypeFunc == NULL || freeFunc == NULL) {
984
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
985
        return -1;
986 987 988 989 990 991 992
    }

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

    if (! STRPREFIX(anyType->other, "ArrayOf")) {
993
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
994
                     _("Expecting type to begin with 'ArrayOf' but found '%s'"),
995
                     anyType->other);
996
        return -1;
997 998
    }

999
    for (childNode = anyType->node->children; childNode != NULL;
1000 1001
         childNode = childNode->next) {
        if (childNode->type != XML_ELEMENT_NODE) {
1002
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1003
                         _("Wrong XML element type %d"), childNode->type);
M
Matthias Bolte 已提交
1004
            goto cleanup;
1005 1006 1007 1008
        }

        esxVI_AnyType_Free(&childAnyType);

1009 1010 1011
        if (esxVI_AnyType_Deserialize(childNode, &childAnyType) < 0 ||
            castFromAnyTypeFunc(childAnyType, &item) < 0 ||
            esxVI_List_Append(list, item) < 0) {
M
Matthias Bolte 已提交
1012
            goto cleanup;
1013 1014 1015 1016 1017
        }

        item = NULL;
    }

M
Matthias Bolte 已提交
1018 1019
    result = 0;

1020
  cleanup:
M
Matthias Bolte 已提交
1021 1022 1023 1024 1025
    if (result < 0) {
        freeFunc(&item);
        freeFunc(list);
    }

1026 1027 1028 1029 1030
    esxVI_AnyType_Free(&childAnyType);

    return result;
}

1031
int
1032
esxVI_List_Serialize(esxVI_List *list, const char *element,
1033
                     virBufferPtr output,
1034 1035 1036 1037 1038
                     esxVI_List_SerializeFunc serializeFunc)
{
    esxVI_List *item = NULL;

    if (element == NULL || output == NULL || serializeFunc == NULL) {
1039
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1040 1041 1042 1043
        return -1;
    }

    if (list == NULL) {
1044
        return 0;
1045 1046 1047
    }

    for (item = list; item != NULL; item = item->_next) {
1048
        if (serializeFunc(item, element, output) < 0) {
1049 1050 1051 1052 1053 1054 1055 1056
            return -1;
        }
    }

    return 0;
}

int
1057
esxVI_List_Deserialize(xmlNodePtr node, esxVI_List **list,
1058 1059 1060 1061 1062 1063 1064
                       esxVI_List_DeserializeFunc deserializeFunc,
                       esxVI_List_FreeFunc freeFunc)
{
    esxVI_List *item = NULL;

    if (list == NULL || *list != NULL ||
        deserializeFunc == NULL || freeFunc == NULL) {
1065
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1066 1067 1068 1069 1070 1071 1072 1073 1074
        return -1;
    }

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

    for (; node != NULL; node = node->next) {
        if (node->type != XML_ELEMENT_NODE) {
1075
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1076
                         _("Wrong XML element type %d"), node->type);
1077 1078 1079
            goto failure;
        }

1080 1081
        if (deserializeFunc(node, &item) < 0 ||
            esxVI_List_Append(list, item) < 0) {
1082 1083 1084
            goto failure;
        }

1085
        item = NULL;
1086 1087 1088 1089 1090
    }

    return 0;

  failure:
1091
    freeFunc(&item);
1092 1093 1094 1095 1096 1097 1098 1099 1100
    freeFunc(list);

    return -1;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Utility and Convenience Functions
1101 1102 1103 1104
 *
 * Function naming scheme:
 *  - 'lookup' functions query the ESX or vCenter for information
 *  - 'get' functions get information from a local object
1105 1106 1107
 */

int
1108
esxVI_Alloc(void **ptrptr, size_t size)
1109 1110
{
    if (ptrptr == NULL || *ptrptr != NULL) {
1111
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1112 1113 1114 1115
        return -1;
    }

    if (virAllocN(ptrptr, size, 1) < 0) {
1116
        virReportOOMError();
1117 1118 1119 1120 1121 1122
        return -1;
    }

    return 0;
}

1123 1124


1125
int
1126
esxVI_BuildFullTraversalSpecItem(esxVI_SelectionSpec **fullTraversalSpecList,
1127 1128 1129 1130 1131 1132 1133 1134
                                 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) {
1135
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1136 1137 1138
        return -1;
    }

1139
    if (esxVI_TraversalSpec_Alloc(&traversalSpec) < 0 ||
1140
        esxVI_String_DeepCopyValue(&traversalSpec->name, name) < 0 ||
1141 1142
        esxVI_String_DeepCopyValue(&traversalSpec->type, type) < 0 ||
        esxVI_String_DeepCopyValue(&traversalSpec->path, path) < 0) {
1143 1144 1145 1146 1147 1148 1149 1150 1151
        goto failure;
    }

    traversalSpec->skip = esxVI_Boolean_False;

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

        while (currentSelectSetName != NULL && *currentSelectSetName != '\0') {
1152 1153
            if (esxVI_SelectionSpec_Alloc(&selectionSpec) < 0 ||
                esxVI_String_DeepCopyValue(&selectionSpec->name,
1154
                                           currentSelectSetName) < 0 ||
1155
                esxVI_SelectionSpec_AppendToList(&traversalSpec->selectSet,
1156 1157 1158 1159
                                                 selectionSpec) < 0) {
                goto failure;
            }

1160
            selectionSpec = NULL;
1161 1162 1163 1164
            currentSelectSetName += strlen(currentSelectSetName) + 1;
        }
    }

1165
    if (esxVI_SelectionSpec_AppendToList(fullTraversalSpecList,
1166 1167
                                         esxVI_SelectionSpec_DynamicCast
                                           (traversalSpec)) < 0) {
1168 1169 1170 1171 1172 1173 1174
        goto failure;
    }

    return 0;

  failure:
    esxVI_TraversalSpec_Free(&traversalSpec);
1175
    esxVI_SelectionSpec_Free(&selectionSpec);
1176 1177 1178 1179 1180 1181 1182

    return -1;
}



int
1183
esxVI_BuildFullTraversalSpecList(esxVI_SelectionSpec **fullTraversalSpecList)
1184 1185
{
    if (fullTraversalSpecList == NULL || *fullTraversalSpecList != NULL) {
1186
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1187 1188 1189
        return -1;
    }

1190
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1191 1192 1193
                                         "visitFolders",
                                         "Folder", "childEntity",
                                         "visitFolders\0"
M
Matthias Bolte 已提交
1194
                                         "datacenterToDatastore\0"
1195 1196 1197 1198
                                         "datacenterToVmFolder\0"
                                         "datacenterToHostFolder\0"
                                         "computeResourceToHost\0"
                                         "computeResourceToResourcePool\0"
M
Matthias Bolte 已提交
1199
                                         "hostSystemToVm\0"
1200 1201 1202 1203
                                         "resourcePoolToVm\0") < 0) {
        goto failure;
    }

M
Matthias Bolte 已提交
1204
    /* Traversal through datastore branch */
1205
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
M
Matthias Bolte 已提交
1206 1207 1208 1209 1210 1211
                                         "datacenterToDatastore",
                                         "Datacenter", "datastore",
                                         NULL) < 0) {
        goto failure;
    }

1212
    /* Traversal through vmFolder branch */
1213
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1214 1215 1216 1217 1218 1219 1220
                                         "datacenterToVmFolder",
                                         "Datacenter", "vmFolder",
                                         "visitFolders\0") < 0) {
        goto failure;
    }

    /* Traversal through hostFolder branch  */
1221
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1222 1223 1224 1225 1226 1227 1228
                                         "datacenterToHostFolder",
                                         "Datacenter", "hostFolder",
                                         "visitFolders\0") < 0) {
        goto failure;
    }

    /* Traversal through host branch  */
1229
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1230 1231 1232 1233 1234 1235 1236
                                         "computeResourceToHost",
                                         "ComputeResource", "host",
                                         NULL) < 0) {
        goto failure;
    }

    /* Traversal through resourcePool branch */
1237
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1238 1239 1240 1241 1242 1243 1244 1245
                                         "computeResourceToResourcePool",
                                         "ComputeResource", "resourcePool",
                                         "resourcePoolToResourcePool\0"
                                         "resourcePoolToVm\0") < 0) {
        goto failure;
    }

    /* Recurse through all resource pools */
1246
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1247 1248 1249 1250 1251 1252 1253 1254
                                         "resourcePoolToResourcePool",
                                         "ResourcePool", "resourcePool",
                                         "resourcePoolToResourcePool\0"
                                         "resourcePoolToVm\0") < 0) {
        goto failure;
    }

    /* Recurse through all hosts */
1255
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
M
Matthias Bolte 已提交
1256
                                         "hostSystemToVm",
1257 1258 1259 1260 1261 1262
                                         "HostSystem", "vm",
                                         "visitFolders\0") < 0) {
        goto failure;
    }

    /* Recurse through all resource pools */
1263
    if (esxVI_BuildFullTraversalSpecItem(fullTraversalSpecList,
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
                                         "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.
1285 1286
 *
 * Update: 'ESX 4.0.0 build-171294' doesn't implement this method.
1287 1288 1289 1290
 */
#define ESX_VI_USE_SESSION_IS_ACTIVE 0

int
1291
esxVI_EnsureSession(esxVI_Context *ctx)
1292 1293 1294 1295
{
#if ESX_VI_USE_SESSION_IS_ACTIVE
    esxVI_Boolean active = esxVI_Boolean_Undefined;
#else
M
Matthias Bolte 已提交
1296
    int result = -1;
1297 1298 1299 1300 1301 1302 1303
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *sessionManager = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_UserSession *currentSession = NULL;
#endif

    if (ctx->session == NULL) {
1304
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid call"));
1305 1306 1307 1308
        return -1;
    }

#if ESX_VI_USE_SESSION_IS_ACTIVE
1309 1310
    if (esxVI_SessionIsActive(ctx, ctx->session->key, ctx->session->userName,
                              &active) < 0) {
1311 1312 1313 1314 1315 1316
        return -1;
    }

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

1317
        if (esxVI_Login(ctx, ctx->username, ctx->password, NULL,
1318 1319 1320 1321
                        &ctx->session) < 0) {
            return -1;
        }
    }
1322 1323

    return 0;
1324
#else
1325
    if (esxVI_String_AppendValueToList(&propertyNameList,
1326
                                       "currentSession") < 0 ||
1327
        esxVI_LookupObjectContentByType(ctx, ctx->service->sessionManager,
1328 1329 1330
                                        "SessionManager", propertyNameList,
                                        esxVI_Boolean_False,
                                        &sessionManager) < 0) {
M
Matthias Bolte 已提交
1331
        goto cleanup;
1332 1333 1334 1335 1336
    }

    for (dynamicProperty = sessionManager->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "currentSession")) {
1337
            if (esxVI_UserSession_CastFromAnyType(dynamicProperty->val,
1338
                                                  &currentSession) < 0) {
M
Matthias Bolte 已提交
1339
                goto cleanup;
1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
            }

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

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

1351 1352
        if (esxVI_Login(ctx, ctx->username, ctx->password, NULL,
                        &ctx->session) < 0) {
M
Matthias Bolte 已提交
1353
            goto cleanup;
1354 1355
        }
    } else if (STRNEQ(ctx->session->key, currentSession->key)) {
1356 1357 1358
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Key of the current session differs from the key at "
                       "last login"));
M
Matthias Bolte 已提交
1359
        goto cleanup;
1360 1361
    }

M
Matthias Bolte 已提交
1362 1363
    result = 0;

1364 1365 1366 1367 1368 1369
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&sessionManager);
    esxVI_UserSession_Free(&currentSession);

    return result;
1370
#endif
1371 1372 1373 1374 1375
}



int
1376
esxVI_LookupObjectContentByType(esxVI_Context *ctx,
1377 1378 1379 1380 1381
                                esxVI_ManagedObjectReference *root,
                                const char *type,
                                esxVI_String *propertyNameList,
                                esxVI_Boolean recurse,
                                esxVI_ObjectContent **objectContentList)
1382
{
M
Matthias Bolte 已提交
1383
    int result = -1;
1384 1385 1386 1387 1388
    esxVI_ObjectSpec *objectSpec = NULL;
    esxVI_PropertySpec *propertySpec = NULL;
    esxVI_PropertyFilterSpec *propertyFilterSpec = NULL;

    if (ctx->fullTraversalSpecList == NULL) {
1389
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid call"));
1390 1391 1392
        return -1;
    }

1393
    if (esxVI_ObjectSpec_Alloc(&objectSpec) < 0) {
M
Matthias Bolte 已提交
1394
        return -1;
1395 1396 1397 1398 1399 1400 1401 1402 1403
    }

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

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

1404
    if (esxVI_PropertySpec_Alloc(&propertySpec) < 0) {
M
Matthias Bolte 已提交
1405
        goto cleanup;
1406 1407 1408 1409 1410
    }

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

1411 1412
    if (esxVI_PropertyFilterSpec_Alloc(&propertyFilterSpec) < 0 ||
        esxVI_PropertySpec_AppendToList(&propertyFilterSpec->propSet,
1413
                                        propertySpec) < 0 ||
1414
        esxVI_ObjectSpec_AppendToList(&propertyFilterSpec->objectSet,
1415
                                      objectSpec) < 0) {
M
Matthias Bolte 已提交
1416
        goto cleanup;
1417 1418
    }

1419
    result = esxVI_RetrieveProperties(ctx, propertyFilterSpec,
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
                                      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;
}



1444
int
1445
esxVI_GetManagedEntityStatus(esxVI_ObjectContent *objectContent,
1446 1447 1448 1449 1450 1451 1452 1453 1454
                             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
1455
                     (dynamicProperty->val, managedEntityStatus);
1456 1457 1458
        }
    }

1459
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1460 1461
                 _("Missing '%s' property while looking for "
                   "ManagedEntityStatus"), propertyName);
1462 1463 1464 1465 1466 1467

    return -1;
}



1468
int
1469
esxVI_GetVirtualMachinePowerState(esxVI_ObjectContent *virtualMachine,
1470 1471 1472 1473 1474 1475 1476 1477
                                  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
1478
                     (dynamicProperty->val, powerState);
1479 1480 1481
        }
    }

1482 1483
    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Missing 'runtime.powerState' property"));
1484 1485 1486 1487 1488 1489

    return -1;
}



1490 1491
int
esxVI_GetVirtualMachineQuestionInfo
1492
  (esxVI_ObjectContent *virtualMachine,
1493 1494 1495 1496 1497
   esxVI_VirtualMachineQuestionInfo **questionInfo)
{
    esxVI_DynamicProperty *dynamicProperty;

    if (questionInfo == NULL || *questionInfo != NULL) {
1498
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1499 1500 1501 1502 1503 1504 1505
        return -1;
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "runtime.question")) {
            if (esxVI_VirtualMachineQuestionInfo_CastFromAnyType
1506
                  (dynamicProperty->val, questionInfo) < 0) {
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
                return -1;
            }
        }
    }

    return 0;
}



1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 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 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
int
esxVI_GetBoolean(esxVI_ObjectContent *objectContent, const char *propertyName,
                 esxVI_Boolean *value, esxVI_Occurrence occurence)
{
    esxVI_DynamicProperty *dynamicProperty;

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

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, propertyName)) {
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                         esxVI_Type_Boolean) < 0) {
                return -1;
            }

            *value = dynamicProperty->val->boolean;
            break;
        }
    }

    if (*value == esxVI_Boolean_Undefined &&
        occurence == esxVI_Occurrence_RequiredItem) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                     _("Missing '%s' property"), propertyName);
        return -1;
    }

    return 0;
}



int
esxVI_GetStringValue(esxVI_ObjectContent *objectContent,
                     const char *propertyName,
                     char **value, esxVI_Occurrence occurence)
{
    esxVI_DynamicProperty *dynamicProperty;

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

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, propertyName)) {
            if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                         esxVI_Type_String) < 0) {
                return -1;
            }

            *value = dynamicProperty->val->string;
            break;
        }
    }

    if (*value == NULL && occurence == esxVI_Occurrence_RequiredItem) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                     _("Missing '%s' property"), propertyName);
        return -1;
    }

    return 0;
}



int
esxVI_GetManagedObjectReference(esxVI_ObjectContent *objectContent,
                                const char *propertyName,
                                esxVI_ManagedObjectReference **value,
                                esxVI_Occurrence occurence)
{
    esxVI_DynamicProperty *dynamicProperty;

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

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, propertyName)) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
                  (dynamicProperty->val, value) < 0) {
                return -1;
            }

            break;
        }
    }

    if (*value == NULL && occurence == esxVI_Occurrence_RequiredItem) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                     _("Missing '%s' property"), propertyName);
        return -1;
    }

    return 0;
}



1625
int
1626
esxVI_LookupNumberOfDomainsByPowerState(esxVI_Context *ctx,
1627 1628
                                        esxVI_VirtualMachinePowerState powerState,
                                        esxVI_Boolean inverse)
1629
{
M
Matthias Bolte 已提交
1630
    bool success = false;
1631 1632 1633 1634 1635
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_VirtualMachinePowerState powerState_;
M
Matthias Bolte 已提交
1636
    int count = 0;
1637

1638
    if (esxVI_String_AppendValueToList(&propertyNameList,
1639
                                       "runtime.powerState") < 0 ||
1640 1641
        esxVI_LookupObjectContentByType(ctx, ctx->vmFolder, "VirtualMachine",
                                        propertyNameList, esxVI_Boolean_True,
1642
                                        &virtualMachineList) < 0) {
M
Matthias Bolte 已提交
1643
        goto cleanup;
1644 1645 1646 1647 1648 1649 1650 1651 1652
    }

    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
1653
                      (dynamicProperty->val, &powerState_) < 0) {
M
Matthias Bolte 已提交
1654
                    goto cleanup;
1655 1656 1657 1658 1659 1660
                }

                if ((inverse != esxVI_Boolean_True &&
                     powerState_ == powerState) ||
                    (inverse == esxVI_Boolean_True &&
                     powerState_ != powerState)) {
M
Matthias Bolte 已提交
1661
                    count++;
1662 1663 1664 1665 1666 1667 1668
                }
            } else {
                VIR_WARN("Unexpected '%s' property", dynamicProperty->name);
            }
        }
    }

M
Matthias Bolte 已提交
1669 1670
    success = true;

1671 1672 1673 1674
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);

M
Matthias Bolte 已提交
1675
    return success ? count : -1;
1676 1677 1678 1679 1680
}



int
1681
esxVI_GetVirtualMachineIdentity(esxVI_ObjectContent *virtualMachine,
1682 1683 1684 1685
                                int *id, char **name, unsigned char *uuid)
{
    const char *uuid_string = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
1686
    esxVI_ManagedEntityStatus configStatus = esxVI_ManagedEntityStatus_Undefined;
1687 1688

    if (STRNEQ(virtualMachine->obj->type, "VirtualMachine")) {
1689 1690
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("ObjectContent does not reference a virtual machine"));
1691 1692 1693 1694 1695 1696
        return -1;
    }

    if (id != NULL) {
        if (esxUtil_ParseVirtualMachineIDString
              (virtualMachine->obj->value, id) < 0 || *id <= 0) {
1697
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1698
                         _("Could not parse positive integer from '%s'"),
1699 1700 1701 1702 1703 1704 1705
                         virtualMachine->obj->value);
            goto failure;
        }
    }

    if (name != NULL) {
        if (*name != NULL) {
1706
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1707 1708 1709 1710 1711 1712 1713
            goto failure;
        }

        for (dynamicProperty = virtualMachine->propSet;
             dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "name")) {
1714
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1715 1716 1717 1718 1719 1720 1721
                                             esxVI_Type_String) < 0) {
                    goto failure;
                }

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

                if (*name == NULL) {
1722
                    virReportOOMError();
1723 1724 1725 1726 1727 1728 1729 1730
                    goto failure;
                }

                break;
            }
        }

        if (*name == NULL) {
1731 1732
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("Could not get name of virtual machine"));
1733 1734 1735 1736 1737
            goto failure;
        }
    }

    if (uuid != NULL) {
1738
        if (esxVI_GetManagedEntityStatus(virtualMachine, "configStatus",
1739 1740 1741 1742 1743 1744 1745 1746 1747
                                         &configStatus) < 0) {
            goto failure;
        }

        if (configStatus == esxVI_ManagedEntityStatus_Green) {
            for (dynamicProperty = virtualMachine->propSet;
                 dynamicProperty != NULL;
                 dynamicProperty = dynamicProperty->_next) {
                if (STREQ(dynamicProperty->name, "config.uuid")) {
1748
                    if (esxVI_AnyType_ExpectType(dynamicProperty->val,
1749 1750 1751 1752 1753 1754
                                                 esxVI_Type_String) < 0) {
                        goto failure;
                    }

                    uuid_string = dynamicProperty->val->string;
                    break;
1755
                }
1756
            }
1757

1758
            if (uuid_string == NULL) {
1759 1760
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                             _("Could not get UUID of virtual machine"));
1761
                goto failure;
1762 1763
            }

1764
            if (virUUIDParse(uuid_string, uuid) < 0) {
1765
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
1766
                             _("Could not parse UUID from string '%s'"),
1767 1768 1769 1770 1771
                             uuid_string);
                goto failure;
            }
        } else {
            memset(uuid, 0, VIR_UUID_BUFLEN);
1772

1773 1774
            VIR_WARN0("Cannot access UUID, because 'configStatus' property "
                      "indicates a config problem");
1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
        }
    }

    return 0;

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

    return -1;
}



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 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
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;
}



1936 1937
int
esxVI_LookupResourcePoolByHostSystem
1938
  (esxVI_Context *ctx, esxVI_ObjectContent *hostSystem,
1939
   esxVI_ManagedObjectReference **resourcePool)
M
Matthias Bolte 已提交
1940
{
M
Matthias Bolte 已提交
1941
    int result = -1;
M
Matthias Bolte 已提交
1942 1943 1944 1945 1946 1947
    esxVI_String *propertyNameList = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_ManagedObjectReference *managedObjectReference = NULL;
    esxVI_ObjectContent *computeResource = NULL;

    if (resourcePool == NULL || *resourcePool != NULL) {
1948
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
1949 1950 1951 1952 1953 1954 1955
        return -1;
    }

    for (dynamicProperty = hostSystem->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "parent")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
1956
                  (dynamicProperty->val, &managedObjectReference) < 0) {
M
Matthias Bolte 已提交
1957
                goto cleanup;
M
Matthias Bolte 已提交
1958 1959 1960 1961 1962 1963 1964 1965 1966
            }

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

    if (managedObjectReference == NULL) {
1967 1968
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve compute resource of host system"));
M
Matthias Bolte 已提交
1969
        goto cleanup;
M
Matthias Bolte 已提交
1970 1971
    }

1972 1973
    if (esxVI_String_AppendValueToList(&propertyNameList, "resourcePool") < 0 ||
        esxVI_LookupObjectContentByType(ctx, managedObjectReference,
1974 1975 1976
                                        "ComputeResource", propertyNameList,
                                        esxVI_Boolean_False,
                                        &computeResource) < 0) {
M
Matthias Bolte 已提交
1977
        goto cleanup;
M
Matthias Bolte 已提交
1978 1979 1980
    }

    if (computeResource == NULL) {
1981 1982
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve compute resource of host system"));
M
Matthias Bolte 已提交
1983
        goto cleanup;
M
Matthias Bolte 已提交
1984 1985 1986 1987 1988 1989
    }

    for (dynamicProperty = computeResource->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "resourcePool")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
1990
                  (dynamicProperty->val, resourcePool) < 0) {
M
Matthias Bolte 已提交
1991
                goto cleanup;
M
Matthias Bolte 已提交
1992 1993 1994 1995 1996 1997 1998 1999 2000
            }

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

    if ((*resourcePool) == NULL) {
2001 2002
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not retrieve resource pool of compute resource"));
M
Matthias Bolte 已提交
2003
        goto cleanup;
M
Matthias Bolte 已提交
2004 2005
    }

M
Matthias Bolte 已提交
2006 2007
    result = 0;

M
Matthias Bolte 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&managedObjectReference);
    esxVI_ObjectContent_Free(&computeResource);

    return result;
}



2018
int
2019
esxVI_LookupHostSystemByIp(esxVI_Context *ctx, const char *ipAddress,
M
Matthias Bolte 已提交
2020
                           esxVI_String *propertyNameList,
2021 2022
                           esxVI_ObjectContent **hostSystem)
{
M
Matthias Bolte 已提交
2023
    int result = -1;
2024 2025 2026
    esxVI_ManagedObjectReference *managedObjectReference = NULL;

    if (hostSystem == NULL || *hostSystem != NULL) {
2027
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2028 2029 2030
        return -1;
    }

2031 2032
    if (esxVI_FindByIp(ctx, ctx->datacenter, ipAddress, esxVI_Boolean_False,
                       &managedObjectReference) < 0) {
M
Matthias Bolte 已提交
2033
        return -1;
2034 2035
    }

2036 2037 2038 2039
    if (managedObjectReference == NULL) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                     _("Could not find host system with IP address '%s'"),
                     ipAddress);
M
Matthias Bolte 已提交
2040
        goto cleanup;
2041 2042
    }

2043
    if (esxVI_LookupObjectContentByType(ctx, managedObjectReference,
2044 2045
                                        "HostSystem", propertyNameList,
                                        esxVI_Boolean_False, hostSystem) < 0) {
M
Matthias Bolte 已提交
2046
        goto cleanup;
2047 2048
    }

M
Matthias Bolte 已提交
2049 2050
    result = 0;

2051 2052 2053 2054 2055 2056 2057 2058 2059
  cleanup:
    esxVI_ManagedObjectReference_Free(&managedObjectReference);

    return result;
}



int
2060
esxVI_LookupVirtualMachineByUuid(esxVI_Context *ctx, const unsigned char *uuid,
2061
                                 esxVI_String *propertyNameList,
2062
                                 esxVI_ObjectContent **virtualMachine,
M
Matthias Bolte 已提交
2063
                                 esxVI_Occurrence occurrence)
2064
{
M
Matthias Bolte 已提交
2065
    int result = -1;
2066
    esxVI_ManagedObjectReference *managedObjectReference = NULL;
2067
    char uuid_string[VIR_UUID_STRING_BUFLEN] = "";
2068 2069

    if (virtualMachine == NULL || *virtualMachine != NULL) {
2070
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2071 2072 2073
        return -1;
    }

2074 2075 2076
    virUUIDFormat(uuid, uuid_string);

    if (esxVI_FindByUuid(ctx, ctx->datacenter, uuid_string, esxVI_Boolean_True,
2077
                         &managedObjectReference) < 0) {
M
Matthias Bolte 已提交
2078
        return -1;
2079 2080
    }

2081
    if (managedObjectReference == NULL) {
M
Matthias Bolte 已提交
2082
        if (occurrence == esxVI_Occurrence_OptionalItem) {
2083 2084
            return 0;
        } else {
2085
            ESX_VI_ERROR(VIR_ERR_NO_DOMAIN,
2086 2087
                         _("Could not find domain with UUID '%s'"),
                         uuid_string);
M
Matthias Bolte 已提交
2088
            goto cleanup;
2089 2090 2091
        }
    }

2092
    if (esxVI_LookupObjectContentByType(ctx, managedObjectReference,
2093 2094 2095
                                        "VirtualMachine", propertyNameList,
                                        esxVI_Boolean_False,
                                        virtualMachine) < 0) {
M
Matthias Bolte 已提交
2096
        goto cleanup;
2097 2098
    }

M
Matthias Bolte 已提交
2099 2100
    result = 0;

2101 2102 2103 2104
  cleanup:
    esxVI_ManagedObjectReference_Free(&managedObjectReference);

    return result;
M
Matthias Bolte 已提交
2105 2106 2107 2108
}



2109 2110 2111 2112 2113 2114
int
esxVI_LookupVirtualMachineByName(esxVI_Context *ctx, const char *name,
                                 esxVI_String *propertyNameList,
                                 esxVI_ObjectContent **virtualMachine,
                                 esxVI_Occurrence occurrence)
{
M
Matthias Bolte 已提交
2115
    int result = -1;
2116 2117 2118 2119 2120 2121
    esxVI_String *completePropertyNameList = NULL;
    esxVI_ObjectContent *virtualMachineList = NULL;
    esxVI_ObjectContent *candidate = NULL;
    char *name_candidate = NULL;

    if (virtualMachine == NULL || *virtualMachine != NULL) {
2122
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
        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) {
M
Matthias Bolte 已提交
2133
        goto cleanup;
2134 2135 2136 2137 2138 2139 2140 2141
    }

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

        if (esxVI_GetVirtualMachineIdentity(candidate, NULL, &name_candidate,
                                            NULL) < 0) {
M
Matthias Bolte 已提交
2142
            goto cleanup;
2143 2144 2145 2146 2147 2148 2149
        }

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

        if (esxVI_ObjectContent_DeepCopy(virtualMachine, candidate) < 0) {
M
Matthias Bolte 已提交
2150
            goto cleanup;
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160
        }

        break;
    }

    if (*virtualMachine == NULL) {
        if (occurrence == esxVI_Occurrence_OptionalItem) {
            return 0;
        } else {
            ESX_VI_ERROR(VIR_ERR_NO_DOMAIN,
2161
                         _("Could not find domain with name '%s'"), name);
M
Matthias Bolte 已提交
2162
            goto cleanup;
2163 2164 2165
        }
    }

M
Matthias Bolte 已提交
2166 2167
    result = 0;

2168 2169 2170 2171 2172 2173 2174 2175 2176 2177
  cleanup:
    esxVI_String_Free(&completePropertyNameList);
    esxVI_ObjectContent_Free(&virtualMachineList);
    VIR_FREE(name_candidate);

    return result;
}



2178 2179
int
esxVI_LookupVirtualMachineByUuidAndPrepareForTask
2180
  (esxVI_Context *ctx, const unsigned char *uuid,
2181 2182 2183
   esxVI_String *propertyNameList, esxVI_ObjectContent **virtualMachine,
   esxVI_Boolean autoAnswer)
{
M
Matthias Bolte 已提交
2184
    int result = -1;
2185 2186 2187 2188
    esxVI_String *completePropertyNameList = NULL;
    esxVI_VirtualMachineQuestionInfo *questionInfo = NULL;
    esxVI_TaskInfo *pendingTaskInfoList = NULL;

2189
    if (esxVI_String_DeepCopyList(&completePropertyNameList,
2190
                                  propertyNameList) < 0 ||
2191
        esxVI_String_AppendValueListToList(&completePropertyNameList,
2192 2193
                                           "runtime.question\0"
                                           "recentTask\0") < 0 ||
2194
        esxVI_LookupVirtualMachineByUuid(ctx, uuid, completePropertyNameList,
2195
                                         virtualMachine,
M
Matthias Bolte 已提交
2196
                                         esxVI_Occurrence_RequiredItem) < 0 ||
2197
        esxVI_GetVirtualMachineQuestionInfo(*virtualMachine,
2198 2199
                                            &questionInfo) < 0 ||
        esxVI_LookupPendingTaskInfoListByVirtualMachine
2200
           (ctx, *virtualMachine, &pendingTaskInfoList) < 0) {
M
Matthias Bolte 已提交
2201
        goto cleanup;
2202 2203 2204
    }

    if (questionInfo != NULL &&
2205
        esxVI_HandleVirtualMachineQuestion(ctx, (*virtualMachine)->obj,
2206
                                           questionInfo, autoAnswer) < 0) {
M
Matthias Bolte 已提交
2207
        goto cleanup;
2208 2209 2210
    }

    if (pendingTaskInfoList != NULL) {
2211 2212
        ESX_VI_ERROR(VIR_ERR_OPERATION_INVALID, "%s",
                     _("Other tasks are pending for this domain"));
M
Matthias Bolte 已提交
2213
        goto cleanup;
2214 2215
    }

M
Matthias Bolte 已提交
2216 2217
    result = 0;

2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
  cleanup:
    esxVI_String_Free(&completePropertyNameList);
    esxVI_VirtualMachineQuestionInfo_Free(&questionInfo);
    esxVI_TaskInfo_Free(&pendingTaskInfoList);

    return result;
}



M
Matthias Bolte 已提交
2228
int
2229 2230
esxVI_LookupDatastoreByName(esxVI_Context *ctx, const char *name,
                            esxVI_String *propertyNameList,
M
Matthias Bolte 已提交
2231
                            esxVI_ObjectContent **datastore,
M
Matthias Bolte 已提交
2232
                            esxVI_Occurrence occurrence)
M
Matthias Bolte 已提交
2233
{
M
Matthias Bolte 已提交
2234
    int result = -1;
M
Matthias Bolte 已提交
2235 2236 2237 2238
    esxVI_String *completePropertyNameList = NULL;
    esxVI_ObjectContent *datastoreList = NULL;
    esxVI_ObjectContent *candidate = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
2239
    esxVI_Boolean accessible = esxVI_Boolean_Undefined;
2240
    size_t offset = 14; /* = strlen("/vmfs/volumes/") */
2241
    int numInaccessibleDatastores = 0;
M
Matthias Bolte 已提交
2242 2243

    if (datastore == NULL || *datastore != NULL) {
2244
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
2245 2246 2247 2248
        return -1;
    }

    /* Get all datastores */
2249
    if (esxVI_String_DeepCopyList(&completePropertyNameList,
M
Matthias Bolte 已提交
2250
                                  propertyNameList) < 0 ||
2251
        esxVI_String_AppendValueListToList(&completePropertyNameList,
2252 2253 2254
                                           "summary.accessible\0"
                                           "summary.name\0"
                                           "summary.url\0") < 0) {
M
Matthias Bolte 已提交
2255
        goto cleanup;
M
Matthias Bolte 已提交
2256 2257
    }

2258 2259
    if (esxVI_LookupObjectContentByType(ctx, ctx->datacenter, "Datastore",
                                        completePropertyNameList,
2260 2261
                                        esxVI_Boolean_True,
                                        &datastoreList) < 0) {
M
Matthias Bolte 已提交
2262
        goto cleanup;
M
Matthias Bolte 已提交
2263 2264 2265
    }

    if (datastoreList == NULL) {
M
Matthias Bolte 已提交
2266
        if (occurrence == esxVI_Occurrence_OptionalItem) {
M
Matthias Bolte 已提交
2267
            goto success;
M
Matthias Bolte 已提交
2268
        } else {
2269 2270
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("No datastores available"));
M
Matthias Bolte 已提交
2271
            goto cleanup;
M
Matthias Bolte 已提交
2272 2273 2274 2275 2276 2277
        }
    }

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

M
Matthias Bolte 已提交
2280 2281
        for (dynamicProperty = candidate->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
2282
            if (STREQ(dynamicProperty->name, "summary.accessible")) {
2283
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
2284
                                             esxVI_Type_Boolean) < 0) {
M
Matthias Bolte 已提交
2285
                    goto cleanup;
2286 2287 2288 2289 2290 2291 2292 2293
                }

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

        if (accessible == esxVI_Boolean_Undefined) {
2294 2295 2296
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("Got incomplete response while querying for the "
                           "datastore 'summary.accessible' property"));
M
Matthias Bolte 已提交
2297
            goto cleanup;
2298 2299 2300 2301 2302 2303 2304 2305
        }

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

        for (dynamicProperty = candidate->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
2306
            if (STREQ(dynamicProperty->name, "summary.name")) {
2307
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
M
Matthias Bolte 已提交
2308
                                             esxVI_Type_String) < 0) {
M
Matthias Bolte 已提交
2309
                    goto cleanup;
M
Matthias Bolte 已提交
2310 2311 2312
                }

                if (STREQ(dynamicProperty->val->string, name)) {
2313
                    if (esxVI_ObjectContent_DeepCopy(datastore,
M
Matthias Bolte 已提交
2314
                                                     candidate) < 0) {
M
Matthias Bolte 已提交
2315
                        goto cleanup;
M
Matthias Bolte 已提交
2316 2317 2318
                    }

                    /* Found datastore with matching name */
M
Matthias Bolte 已提交
2319
                    goto success;
M
Matthias Bolte 已提交
2320
                }
2321 2322
            } else if (STREQ(dynamicProperty->name, "summary.url") &&
                       ctx->productVersion & esxVI_ProductVersion_ESX) {
2323 2324 2325 2326 2327 2328 2329 2330
                if (accessible == esxVI_Boolean_False) {
                    /*
                     * The 'summary.url' property of an inaccessible datastore
                     * is invalid and cannot be used to identify the datastore.
                     */
                    continue;
                }

2331
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
M
Matthias Bolte 已提交
2332
                                             esxVI_Type_String) < 0) {
M
Matthias Bolte 已提交
2333
                    goto cleanup;
M
Matthias Bolte 已提交
2334 2335 2336 2337
                }

                if (! STRPREFIX(dynamicProperty->val->string,
                                "/vmfs/volumes/")) {
2338
                    ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2339 2340
                                 _("Datastore URL '%s' has unexpected prefix, "
                                   "expecting '/vmfs/volumes/' prefix"),
M
Matthias Bolte 已提交
2341
                                 dynamicProperty->val->string);
M
Matthias Bolte 已提交
2342
                    goto cleanup;
M
Matthias Bolte 已提交
2343 2344 2345
                }

                if (STREQ(dynamicProperty->val->string + offset, name)) {
2346
                    if (esxVI_ObjectContent_DeepCopy(datastore,
M
Matthias Bolte 已提交
2347
                                                     candidate) < 0) {
M
Matthias Bolte 已提交
2348
                        goto cleanup;
M
Matthias Bolte 已提交
2349 2350 2351
                    }

                    /* Found datastore with matching URL suffix */
M
Matthias Bolte 已提交
2352
                    goto success;
M
Matthias Bolte 已提交
2353 2354 2355 2356 2357
                }
            }
        }
    }

M
Matthias Bolte 已提交
2358
    if (occurrence != esxVI_Occurrence_OptionalItem) {
2359
        if (numInaccessibleDatastores > 0) {
2360
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2361 2362
                         _("Could not find datastore '%s', maybe it's "
                           "inaccessible"), name);
2363
        } else {
2364
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2365
                         _("Could not find datastore '%s'"), name);
2366 2367
        }

M
Matthias Bolte 已提交
2368
        goto cleanup;
M
Matthias Bolte 已提交
2369 2370
    }

M
Matthias Bolte 已提交
2371 2372 2373
  success:
    result = 0;

M
Matthias Bolte 已提交
2374 2375 2376 2377 2378
  cleanup:
    esxVI_String_Free(&completePropertyNameList);
    esxVI_ObjectContent_Free(&datastoreList);

    return result;
2379 2380 2381 2382
}



2383 2384 2385 2386
int
esxVI_LookupTaskInfoByTask(esxVI_Context *ctx,
                           esxVI_ManagedObjectReference *task,
                           esxVI_TaskInfo **taskInfo)
2387
{
M
Matthias Bolte 已提交
2388
    int result = -1;
2389 2390 2391 2392 2393
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *objectContent = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;

    if (taskInfo == NULL || *taskInfo != NULL) {
2394
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2395 2396 2397
        return -1;
    }

2398 2399 2400
    if (esxVI_String_AppendValueToList(&propertyNameList, "info") < 0 ||
        esxVI_LookupObjectContentByType(ctx, task, "Task", propertyNameList,
                                        esxVI_Boolean_False,
2401
                                        &objectContent) < 0) {
M
Matthias Bolte 已提交
2402
        goto cleanup;
2403 2404 2405 2406 2407
    }

    for (dynamicProperty = objectContent->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "info")) {
2408
            if (esxVI_TaskInfo_CastFromAnyType(dynamicProperty->val,
2409
                                               taskInfo) < 0) {
M
Matthias Bolte 已提交
2410
                goto cleanup;
2411 2412 2413 2414 2415 2416 2417 2418
            }

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

M
Matthias Bolte 已提交
2419 2420
    result = 0;

2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&objectContent);

    return result;
}



int
esxVI_LookupPendingTaskInfoListByVirtualMachine
2432
  (esxVI_Context *ctx, esxVI_ObjectContent *virtualMachine,
2433 2434
   esxVI_TaskInfo **pendingTaskInfoList)
{
M
Matthias Bolte 已提交
2435
    int result = -1;
2436 2437 2438 2439 2440 2441 2442
    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) {
2443
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2444 2445 2446 2447 2448 2449 2450 2451
        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
2452
                  (dynamicProperty->val, &recentTaskList) < 0) {
M
Matthias Bolte 已提交
2453
                goto cleanup;
2454 2455 2456 2457 2458 2459 2460 2461 2462
            }

            break;
        }
    }

    /* Lookup task info for each task */
    for (recentTask = recentTaskList; recentTask != NULL;
         recentTask = recentTask->_next) {
2463
        if (esxVI_LookupTaskInfoByTask(ctx, recentTask, &taskInfo) < 0) {
M
Matthias Bolte 已提交
2464
            goto cleanup;
2465 2466 2467 2468
        }

        if (taskInfo->state == esxVI_TaskInfoState_Queued ||
            taskInfo->state == esxVI_TaskInfoState_Running) {
2469
            if (esxVI_TaskInfo_AppendToList(pendingTaskInfoList,
2470
                                            taskInfo) < 0) {
M
Matthias Bolte 已提交
2471
                goto cleanup;
2472 2473 2474 2475 2476 2477 2478 2479
            }

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

M
Matthias Bolte 已提交
2480 2481
    result = 0;

2482
  cleanup:
M
Matthias Bolte 已提交
2483 2484 2485 2486
    if (result < 0) {
        esxVI_TaskInfo_Free(pendingTaskInfoList);
    }

2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
    esxVI_String_Free(&propertyNameList);
    esxVI_ManagedObjectReference_Free(&recentTaskList);
    esxVI_TaskInfo_Free(&taskInfo);

    return result;
}



int
2497
esxVI_LookupAndHandleVirtualMachineQuestion(esxVI_Context *ctx,
2498 2499 2500
                                            const unsigned char *uuid,
                                            esxVI_Boolean autoAnswer)
{
M
Matthias Bolte 已提交
2501
    int result = -1;
2502 2503 2504 2505
    esxVI_ObjectContent *virtualMachine = NULL;
    esxVI_String *propertyNameList = NULL;
    esxVI_VirtualMachineQuestionInfo *questionInfo = NULL;

2506
    if (esxVI_String_AppendValueToList(&propertyNameList,
2507
                                       "runtime.question") < 0 ||
2508
        esxVI_LookupVirtualMachineByUuid(ctx, uuid, propertyNameList,
2509
                                         &virtualMachine,
M
Matthias Bolte 已提交
2510
                                         esxVI_Occurrence_RequiredItem) < 0 ||
2511
        esxVI_GetVirtualMachineQuestionInfo(virtualMachine,
2512
                                            &questionInfo) < 0) {
M
Matthias Bolte 已提交
2513
        goto cleanup;
2514 2515 2516
    }

    if (questionInfo != NULL &&
2517
        esxVI_HandleVirtualMachineQuestion(ctx, virtualMachine->obj,
2518
                                           questionInfo, autoAnswer) < 0) {
M
Matthias Bolte 已提交
2519
        goto cleanup;
2520 2521
    }

M
Matthias Bolte 已提交
2522 2523
    result = 0;

2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
  cleanup:
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_String_Free(&propertyNameList);
    esxVI_VirtualMachineQuestionInfo_Free(&questionInfo);

    return result;
}



2534 2535 2536 2537 2538
int
esxVI_LookupRootSnapshotTreeList
  (esxVI_Context *ctx, const unsigned char *virtualMachineUuid,
   esxVI_VirtualMachineSnapshotTree **rootSnapshotTreeList)
{
M
Matthias Bolte 已提交
2539
    int result = -1;
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553
    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) {
M
Matthias Bolte 已提交
2554
        goto cleanup;
2555 2556 2557 2558 2559 2560 2561
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "snapshot.rootSnapshotList")) {
            if (esxVI_VirtualMachineSnapshotTree_CastListFromAnyType
                  (dynamicProperty->val, rootSnapshotTreeList) < 0) {
M
Matthias Bolte 已提交
2562
                goto cleanup;
2563 2564 2565 2566 2567 2568 2569 2570
            }

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

M
Matthias Bolte 已提交
2571 2572
    result = 0;

2573
  cleanup:
M
Matthias Bolte 已提交
2574 2575 2576 2577
    if (result < 0) {
        esxVI_VirtualMachineSnapshotTree_Free(rootSnapshotTreeList);
    }

2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);

    return result;
}



int
esxVI_LookupCurrentSnapshotTree
  (esxVI_Context *ctx, const unsigned char *virtualMachineUuid,
   esxVI_VirtualMachineSnapshotTree **currentSnapshotTree,
   esxVI_Occurrence occurrence)
{
M
Matthias Bolte 已提交
2592
    int result = -1;
2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610
    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) {
M
Matthias Bolte 已提交
2611
        goto cleanup;
2612 2613 2614 2615 2616 2617 2618
    }

    for (dynamicProperty = virtualMachine->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "snapshot.currentSnapshot")) {
            if (esxVI_ManagedObjectReference_CastFromAnyType
                  (dynamicProperty->val, &currentSnapshot) < 0) {
M
Matthias Bolte 已提交
2619
                goto cleanup;
2620 2621 2622 2623
            }
        } else if (STREQ(dynamicProperty->name, "snapshot.rootSnapshotList")) {
            if (esxVI_VirtualMachineSnapshotTree_CastListFromAnyType
                  (dynamicProperty->val, &rootSnapshotTreeList) < 0) {
M
Matthias Bolte 已提交
2624
                goto cleanup;
2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636
            }
        } 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"));
M
Matthias Bolte 已提交
2637
            goto cleanup;
2638 2639 2640 2641 2642 2643
        }
    }

    if (rootSnapshotTreeList == NULL) {
        ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Could not lookup root snapshot list"));
M
Matthias Bolte 已提交
2644
        goto cleanup;
2645 2646 2647 2648 2649 2650
    }

    if (esxVI_GetSnapshotTreeBySnapshot(rootSnapshotTreeList, currentSnapshot,
                                        &snapshotTree) < 0 ||
        esxVI_VirtualMachineSnapshotTree_DeepCopy(currentSnapshotTree,
                                                  snapshotTree) < 0) {
M
Matthias Bolte 已提交
2651
        goto cleanup;
2652 2653
    }

M
Matthias Bolte 已提交
2654 2655
    result = 0;

2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666
  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&virtualMachine);
    esxVI_ManagedObjectReference_Free(&currentSnapshot);
    esxVI_VirtualMachineSnapshotTree_Free(&rootSnapshotTreeList);

    return result;
}



2667 2668
int
esxVI_HandleVirtualMachineQuestion
2669
  (esxVI_Context *ctx, esxVI_ManagedObjectReference *virtualMachine,
2670 2671 2672
   esxVI_VirtualMachineQuestionInfo *questionInfo,
   esxVI_Boolean autoAnswer)
{
M
Matthias Bolte 已提交
2673
    int result = -1;
2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699
    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)) {
2700
            virReportOOMError();
M
Matthias Bolte 已提交
2701
            goto cleanup;
2702 2703 2704 2705 2706 2707 2708
        }

        possibleAnswers = virBufferContentAndReset(&buffer);
    }

    if (autoAnswer == esxVI_Boolean_True) {
        if (possibleAnswers == NULL) {
2709
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2710 2711
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', no possible answers"),
2712
                         questionInfo->text);
M
Matthias Bolte 已提交
2713
            goto cleanup;
2714
        } else if (answerChoice == NULL) {
2715
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2716 2717 2718
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', possible answers are %s, but no "
                           "default answer is specified"), questionInfo->text,
2719
                         possibleAnswers);
M
Matthias Bolte 已提交
2720
            goto cleanup;
2721 2722 2723 2724 2725 2726 2727
        }

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

2728
        if (esxVI_AnswerVM(ctx, virtualMachine, questionInfo->id,
2729
                           answerChoice->key) < 0) {
M
Matthias Bolte 已提交
2730
            goto cleanup;
2731 2732 2733
        }
    } else {
        if (possibleAnswers != NULL) {
2734
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2735 2736
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', possible answers are %s"),
2737 2738
                         questionInfo->text, possibleAnswers);
        } else {
2739
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
2740 2741
                         _("Pending question blocks virtual machine execution, "
                           "question is '%s', no possible answers"),
2742 2743 2744
                         questionInfo->text);
        }

M
Matthias Bolte 已提交
2745
        goto cleanup;
2746 2747
    }

M
Matthias Bolte 已提交
2748 2749
    result = 0;

2750
  cleanup:
M
Matthias Bolte 已提交
2751 2752 2753 2754
    if (result < 0) {
        virBufferFreeAndReset(&buffer);
    }

2755 2756 2757 2758 2759 2760 2761
    VIR_FREE(possibleAnswers);

    return result;
}



2762
int
2763
esxVI_WaitForTaskCompletion(esxVI_Context *ctx,
2764
                            esxVI_ManagedObjectReference *task,
2765 2766
                            const unsigned char *virtualMachineUuid,
                            esxVI_Boolean autoAnswer,
2767 2768
                            esxVI_TaskInfoState *finalState)
{
M
Matthias Bolte 已提交
2769
    int result = -1;
2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780
    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;
2781
    esxVI_TaskInfo *taskInfo = NULL;
2782 2783 2784 2785

    version = strdup("");

    if (version == NULL) {
2786
        virReportOOMError();
M
Matthias Bolte 已提交
2787
        return -1;
2788 2789
    }

2790
    if (esxVI_ObjectSpec_Alloc(&objectSpec) < 0) {
M
Matthias Bolte 已提交
2791
        goto cleanup;
2792 2793 2794 2795 2796
    }

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

2797
    if (esxVI_PropertySpec_Alloc(&propertySpec) < 0) {
M
Matthias Bolte 已提交
2798
        goto cleanup;
2799 2800 2801 2802
    }

    propertySpec->type = task->type;

2803
    if (esxVI_String_AppendValueToList(&propertySpec->pathSet,
2804
                                       "info.state") < 0 ||
2805 2806
        esxVI_PropertyFilterSpec_Alloc(&propertyFilterSpec) < 0 ||
        esxVI_PropertySpec_AppendToList(&propertyFilterSpec->propSet,
2807
                                        propertySpec) < 0 ||
2808
        esxVI_ObjectSpec_AppendToList(&propertyFilterSpec->objectSet,
2809
                                      objectSpec) < 0 ||
2810
        esxVI_CreateFilter(ctx, propertyFilterSpec, esxVI_Boolean_True,
2811
                           &propertyFilter) < 0) {
M
Matthias Bolte 已提交
2812
        goto cleanup;
2813 2814 2815 2816 2817 2818
    }

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

2819 2820
        if (virtualMachineUuid != NULL) {
            if (esxVI_LookupAndHandleVirtualMachineQuestion
2821
                  (ctx, virtualMachineUuid, autoAnswer) < 0) {
2822 2823 2824 2825 2826
                /*
                 * FIXME: Disable error reporting here, so possible errors from
                 *        esxVI_LookupTaskInfoByTask() and esxVI_CancelTask()
                 *        don't overwrite the actual error
                 */
2827
                if (esxVI_LookupTaskInfoByTask(ctx, task, &taskInfo)) {
M
Matthias Bolte 已提交
2828
                    goto cleanup;
2829 2830 2831
                }

                if (taskInfo->cancelable == esxVI_Boolean_True) {
2832
                    if (esxVI_CancelTask(ctx, task) < 0) {
2833 2834 2835
                        VIR_ERROR0(_("Cancelable task is blocked by an "
                                     "unanswered question but cancelation "
                                     "failed"));
2836 2837
                    }
                } else {
2838 2839
                    VIR_ERROR0(_("Non-cancelable task is blocked by an "
                                 "unanswered question"));
2840 2841 2842 2843
                }

                /* FIXME: Enable error reporting here again */

M
Matthias Bolte 已提交
2844
                goto cleanup;
2845 2846 2847
            }
        }

2848
        if (esxVI_WaitForUpdates(ctx, version, &updateSet) < 0) {
M
Matthias Bolte 已提交
2849
            goto cleanup;
2850 2851 2852 2853 2854 2855
        }

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

        if (version == NULL) {
2856
            virReportOOMError();
M
Matthias Bolte 已提交
2857
            goto cleanup;
2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887
        }

        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;
        }

2888
        if (esxVI_TaskInfoState_CastFromAnyType(propertyValue, &state) < 0) {
M
Matthias Bolte 已提交
2889
            goto cleanup;
2890 2891 2892
        }
    }

2893
    if (esxVI_DestroyPropertyFilter(ctx, propertyFilter) < 0) {
2894 2895 2896
        VIR_DEBUG0("DestroyPropertyFilter failed");
    }

2897
    if (esxVI_TaskInfoState_CastFromAnyType(propertyValue, finalState) < 0) {
M
Matthias Bolte 已提交
2898
        goto cleanup;
2899 2900
    }

M
Matthias Bolte 已提交
2901 2902
    result = 0;

2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919
  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);
2920
    esxVI_TaskInfo_Free(&taskInfo);
2921 2922 2923

    return result;
}
2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947



int
esxVI_ParseHostCpuIdInfo(esxVI_ParsedHostCpuIdInfo *parsedHostCpuIdInfo,
                         esxVI_HostCpuIdInfo *hostCpuIdInfo)
{
    int expectedLength = 39; /* = strlen("----:----:----:----:----:----:----:----"); */
    char *input[4] = { hostCpuIdInfo->eax, hostCpuIdInfo->ebx,
                       hostCpuIdInfo->ecx, hostCpuIdInfo->edx };
    char *output[4] = { parsedHostCpuIdInfo->eax, parsedHostCpuIdInfo->ebx,
                        parsedHostCpuIdInfo->ecx, parsedHostCpuIdInfo->edx };
    const char *name[4] = { "eax", "ebx", "ecx", "edx" };
    int r, i, o;

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

    parsedHostCpuIdInfo->level = hostCpuIdInfo->level->value;

    for (r = 0; r < 4; ++r) {
        if (strlen(input[r]) != expectedLength) {
            ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                         _("HostCpuIdInfo register '%s' has an unexpected length"),
                         name[r]);
M
Matthias Bolte 已提交
2948
            return -1;
2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961
        }

        /* Strip the ':' and invert the "bit" order from 31..0 to 0..31 */
        for (i = 0, o = 31; i < expectedLength; i += 5, o -= 4) {
            output[r][o] = input[r][i];
            output[r][o - 1] = input[r][i + 1];
            output[r][o - 2] = input[r][i + 2];
            output[r][o - 3] = input[r][i + 3];

            if (i + 4 < expectedLength && input[r][i + 4] != ':') {
                ESX_VI_ERROR(VIR_ERR_INTERNAL_ERROR,
                             _("HostCpuIdInfo register '%s' has an unexpected format"),
                             name[r]);
M
Matthias Bolte 已提交
2962
                return -1;
2963 2964 2965 2966 2967 2968
            }
        }
    }

    return 0;
}