esx_storage_driver.c 21.4 KB
Newer Older
1 2

/*
3
 * esx_storage_driver.c: storage driver functions for managing VMware ESX
4 5
 *                       host storage
 *
6
 * Copyright (C) 2010 Red Hat, Inc.
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
 * Copyright (C) 2010 Matthias Bolte <matthias.bolte@googlemail.com>
 *
 * 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 "internal.h"
#include "util.h"
#include "memory.h"
#include "logging.h"
#include "uuid.h"
32
#include "storage_conf.h"
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#include "esx_private.h"
#include "esx_storage_driver.h"
#include "esx_vi.h"
#include "esx_vi_methods.h"
#include "esx_util.h"

#define VIR_FROM_THIS VIR_FROM_ESX



static virDrvOpenStatus
esxStorageOpen(virConnectPtr conn,
               virConnectAuthPtr auth ATTRIBUTE_UNUSED,
               int flags ATTRIBUTE_UNUSED)
{
48
    if (conn->driver->no != VIR_DRV_ESX) {
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
        return VIR_DRV_OPEN_DECLINED;
    }

    conn->storagePrivateData = conn->privateData;

    return VIR_DRV_OPEN_SUCCESS;
}



static int
esxStorageClose(virConnectPtr conn)
{
    conn->storagePrivateData = NULL;

    return 0;
}



69 70 71 72 73 74 75 76
static int
esxNumberOfStoragePools(virConnectPtr conn)
{
    int count = 0;
    esxPrivate *priv = conn->storagePrivateData;
    esxVI_ObjectContent *datastoreList = NULL;
    esxVI_ObjectContent *datastore = NULL;

77
    if (esxVI_EnsureSession(priv->primary) < 0) {
78 79 80
        return -1;
    }

81
    if (esxVI_LookupDatastoreList(priv->primary, NULL, &datastoreList) < 0) {
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
        return -1;
    }

    for (datastore = datastoreList; datastore != NULL;
         datastore = datastore->_next) {
        ++count;
    }

    esxVI_ObjectContent_Free(&datastoreList);

    return count;
}



static int
esxListStoragePools(virConnectPtr conn, char **const names, int maxnames)
{
    bool success = false;
    esxPrivate *priv = conn->storagePrivateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_ObjectContent *datastoreList = NULL;
    esxVI_ObjectContent *datastore = NULL;
    int count = 0;
    int i;

    if (names == NULL || maxnames < 0) {
        ESX_ERROR(VIR_ERR_INVALID_ARG, "%s", _("Invalid argument"));
        return -1;
    }

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

118
    if (esxVI_EnsureSession(priv->primary) < 0) {
119 120 121 122 123
        return -1;
    }

    if (esxVI_String_AppendValueToList(&propertyNameList,
                                       "summary.name") < 0 ||
124 125
        esxVI_LookupDatastoreList(priv->primary, propertyNameList,
                                  &datastoreList) < 0) {
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
        goto cleanup;
    }

    for (datastore = datastoreList; datastore != NULL;
         datastore = datastore->_next) {
        for (dynamicProperty = datastore->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "summary.name")) {
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                             esxVI_Type_String) < 0) {
                    goto cleanup;
                }

                names[count] = strdup(dynamicProperty->val->string);

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

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

    success = true;

  cleanup:
    if (! success) {
        for (i = 0; i < count; ++i) {
            VIR_FREE(names[i]);
        }

        count = -1;
    }

    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&datastoreList);

    return count;
}



static int
esxNumberOfDefinedStoragePools(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* ESX storage pools are always active */
    return 0;
}



static int
esxListDefinedStoragePools(virConnectPtr conn ATTRIBUTE_UNUSED,
                           char **const names ATTRIBUTE_UNUSED,
                           int maxnames ATTRIBUTE_UNUSED)
{
    /* ESX storage pools are always active */
    return 0;
}



static virStoragePoolPtr
esxStoragePoolLookupByName(virConnectPtr conn, const char *name)
{
    esxPrivate *priv = conn->storagePrivateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *datastore = NULL;
199 200 201
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_DatastoreHostMount *datastoreHostMountList = NULL;
    esxVI_DatastoreHostMount *datastoreHostMount = NULL;
202 203 204 205 206 207
    char *suffix = NULL;
    int suffixLength;
    char uuid_string[VIR_UUID_STRING_BUFLEN] = "00000000-00000000-0000-000000000000";
    unsigned char uuid[VIR_UUID_BUFLEN];
    virStoragePoolPtr pool = NULL;

208
    if (esxVI_EnsureSession(priv->primary) < 0) {
209 210 211
        return NULL;
    }

212
    if (esxVI_String_AppendValueToList(&propertyNameList, "host") < 0 ||
213
        esxVI_LookupDatastoreByName(priv->primary, name,
214
                                    propertyNameList, &datastore,
215
                                    esxVI_Occurrence_RequiredItem) < 0) {
216 217 218 219
        goto cleanup;
    }

    /*
220 221 222
     * Datastores don't have a UUID. We can use the 'host.mountInfo.path'
     * property as source for a "UUID" on ESX, because the property value has
     * this format:
223
     *
224 225
     *   host.mountInfo.path = /vmfs/volumes/4b0beca7-7fd401f3-1d7f-000ae484a6a3
     *   host.mountInfo.path = /vmfs/volumes/b24b7a78-9d82b4f5    (short format)
226
     *
227 228
     * The 'host.mountInfo.path' property comes in two forms, with a complete
     * "UUID" and a short "UUID".
229 230 231 232 233 234
     *
     * But this trailing "UUID" is not guaranteed to be there. On the other
     * hand we already rely on another implementation detail of the ESX server:
     * The object name of virtual machine contains an integer, we use that as
     * domain ID.
     */
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
    for (dynamicProperty = datastore->propSet; dynamicProperty != NULL;
         dynamicProperty = dynamicProperty->_next) {
        if (STREQ(dynamicProperty->name, "host")) {
            if (esxVI_DatastoreHostMount_CastListFromAnyType
                  (dynamicProperty->val, &datastoreHostMountList) < 0) {
                goto cleanup;
            }

            break;
        }
    }

    for (datastoreHostMount = datastoreHostMountList; datastoreHostMount != NULL;
         datastoreHostMount = datastoreHostMount->_next) {
        if (STRNEQ(priv->primary->hostSystem->_reference->value,
                   datastoreHostMount->key->value)) {
            continue;
252 253
        }

254 255 256
        if ((suffix = STRSKIP(datastoreHostMount->mountInfo->path,
                              "/vmfs/volumes/")) == NULL) {
            break;
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
        }

        suffixLength = strlen(suffix);

        if ((suffixLength == 35 && /* = strlen("4b0beca7-7fd401f3-1d7f-000ae484a6a3") */
             suffix[8] == '-' && suffix[17] == '-' && suffix[22] == '-') ||
            (suffixLength == 17 && /* = strlen("b24b7a78-9d82b4f5") */
             suffix[8] == '-')) {
            /*
             * Intentionally use memcpy here, because we want to be able to
             * replace a prefix of the initial Zero-UUID. virStrncpy would
             * null-terminate the string in an unwanted place.
             */
            memcpy(uuid_string, suffix, suffixLength);
        } else {
272 273
            VIR_WARN("Datastore host mount path suffix '%s' has unexpected "
                     "format, cannot deduce a UUID from it", suffix);
274 275 276 277 278 279 280 281 282 283
        }
    }

    if (virUUIDParse(uuid_string, uuid) < 0) {
        ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
                  _("Could not parse UUID from string '%s'"),
                  uuid_string);
        goto cleanup;
    }

284
    pool = virGetStoragePool(conn, name, uuid);
285 286 287 288

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&datastore);
289
    esxVI_DatastoreHostMount_Free(&datastoreHostMountList);
290 291 292 293 294 295 296 297 298 299 300 301 302

    return pool;
}



static virStoragePoolPtr
esxStoragePoolLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
    esxPrivate *priv = conn->storagePrivateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *datastore = NULL;
    char uuid_string[VIR_UUID_STRING_BUFLEN] = "";
303
    char *absolutePath = NULL;
304 305 306
    char *name = NULL;
    virStoragePoolPtr pool = NULL;

307
    if (esxVI_EnsureSession(priv->primary) < 0) {
308 309 310 311
        return NULL;
    }

    /*
312
     * Convert UUID to 'host.mountInfo.path' form by stripping the second '-':
313 314 315 316 317 318 319
     *
     * <---- 14 ----><-------- 22 -------->    <---- 13 ---><-------- 22 -------->
     * 4b0beca7-7fd4-01f3-1d7f-000ae484a6a3 -> 4b0beca7-7fd401f3-1d7f-000ae484a6a3
     */
    virUUIDFormat(uuid, uuid_string);
    memmove(uuid_string + 13, uuid_string + 14, 22 + 1);

320 321 322 323 324
    if (virAsprintf(&absolutePath, "/vmfs/volumes/%s", uuid_string) < 0) {
        virReportOOMError();
        goto cleanup;
    }

325
    if (esxVI_String_AppendValueToList(&propertyNameList, "summary.name") < 0 ||
326 327 328
        esxVI_LookupDatastoreByAbsolutePath(priv->primary, absolutePath,
                                            propertyNameList, &datastore,
                                            esxVI_Occurrence_OptionalItem) < 0) {
329 330 331 332 333 334 335 336 337 338 339 340 341
        goto cleanup;
    }

    /*
     * If the first try didn't succeed and the trailing 16 digits are zero then
     * the "UUID" could be a short one. Strip the 16 zeros and try again:
     *
     * <------ 17 ----->                      <------ 17 ----->
     * b24b7a78-9d82b4f5-0000-000000000000 -> b24b7a78-9d82b4f5
     */
    if (datastore == NULL && STREQ(uuid_string + 17, "-0000-000000000000")) {
        uuid_string[17] = '\0';

342 343 344 345 346 347 348 349 350 351
        VIR_FREE(absolutePath);

        if (virAsprintf(&absolutePath, "/vmfs/volumes/%s", uuid_string) < 0) {
            virReportOOMError();
            goto cleanup;
        }

        if (esxVI_LookupDatastoreByAbsolutePath(priv->primary, absolutePath,
                                                propertyNameList, &datastore,
                                                esxVI_Occurrence_RequiredItem) < 0) {
352 353 354 355 356 357 358
            goto cleanup;
        }
    }

    if (datastore == NULL) {
        virUUIDFormat(uuid, uuid_string);

359
        ESX_VI_ERROR(VIR_ERR_NO_STORAGE_POOL,
360 361 362 363 364 365 366 367 368 369 370 371 372 373
                     _("Could not find datastore with UUID '%s'"),
                     uuid_string);

        goto cleanup;
    }

    if (esxVI_GetStringValue(datastore, "summary.name", &name,
                             esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    pool = virGetStoragePool(conn, name, uuid);

  cleanup:
374
    VIR_FREE(absolutePath);
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&datastore);

    return pool;
}



static int
esxStoragePoolRefresh(virStoragePoolPtr pool, unsigned int flags)
{
    int result = -1;
    esxPrivate *priv = pool->conn->storagePrivateData;
    esxVI_ObjectContent *datastore = NULL;

    virCheckFlags(0, -1);

392
    if (esxVI_EnsureSession(priv->primary) < 0) {
393 394 395
        return -1;
    }

396
    if (esxVI_LookupDatastoreByName(priv->primary, pool->name, NULL, &datastore,
397
                                    esxVI_Occurrence_RequiredItem) < 0 ||
398
        esxVI_RefreshDatastore(priv->primary, datastore->obj) < 0) {
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
        goto cleanup;
    }

    result = 0;

  cleanup:
    esxVI_ObjectContent_Free(&datastore);

    return result;
}



static int
esxStoragePoolGetInfo(virStoragePoolPtr pool, virStoragePoolInfoPtr info)
{
    int result = -1;
    esxPrivate *priv = pool->conn->storagePrivateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *datastore = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_Boolean accessible = esxVI_Boolean_Undefined;

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

424
    if (esxVI_EnsureSession(priv->primary) < 0) {
425 426 427 428 429 430 431
        return -1;
    }

    if (esxVI_String_AppendValueListToList(&propertyNameList,
                                           "summary.accessible\0"
                                           "summary.capacity\0"
                                           "summary.freeSpace\0") < 0 ||
432
        esxVI_LookupDatastoreByName(priv->primary, pool->name,
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
                                    propertyNameList, &datastore,
                                    esxVI_Occurrence_RequiredItem) < 0 ||
        esxVI_GetBoolean(datastore, "summary.accessible",
                         &accessible, esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    if (accessible == esxVI_Boolean_True) {
        info->state = VIR_STORAGE_POOL_RUNNING;

        for (dynamicProperty = datastore->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "summary.capacity")) {
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                             esxVI_Type_Long) < 0) {
                    goto cleanup;
                }

                info->capacity = dynamicProperty->val->int64;
            } else if (STREQ(dynamicProperty->name, "summary.freeSpace")) {
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                             esxVI_Type_Long) < 0) {
                    goto cleanup;
                }

                info->available = dynamicProperty->val->int64;
            }
        }

        info->allocation = info->capacity - info->available;
    } else {
        info->state = VIR_STORAGE_POOL_INACCESSIBLE;
    }

    result = 0;

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

    return result;
}



static char *
esxStoragePoolGetXMLDesc(virStoragePoolPtr pool, unsigned int flags)
{
    esxPrivate *priv = pool->conn->storagePrivateData;
    esxVI_String *propertyNameList = NULL;
    esxVI_ObjectContent *datastore = NULL;
    esxVI_DynamicProperty *dynamicProperty = NULL;
    esxVI_Boolean accessible = esxVI_Boolean_Undefined;
    virStoragePoolDef def;
    esxVI_DatastoreInfo *info = NULL;
    esxVI_LocalDatastoreInfo *localInfo = NULL;
    esxVI_NasDatastoreInfo *nasInfo = NULL;
    esxVI_VmfsDatastoreInfo *vmfsInfo = NULL;
    char *xml = NULL;

    virCheckFlags(0, NULL);

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

497
    if (esxVI_EnsureSession(priv->primary) < 0) {
498 499 500 501 502 503 504 505
        return NULL;
    }

    if (esxVI_String_AppendValueListToList(&propertyNameList,
                                           "summary.accessible\0"
                                           "summary.capacity\0"
                                           "summary.freeSpace\0"
                                           "info\0") < 0 ||
506
        esxVI_LookupDatastoreByName(priv->primary, pool->name,
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
                                    propertyNameList, &datastore,
                                    esxVI_Occurrence_RequiredItem) < 0 ||
        esxVI_GetBoolean(datastore, "summary.accessible",
                         &accessible, esxVI_Occurrence_RequiredItem) < 0) {
        goto cleanup;
    }

    def.name = pool->name;
    memcpy(def.uuid, pool->uuid, VIR_UUID_BUFLEN);

    if (accessible == esxVI_Boolean_True) {
        for (dynamicProperty = datastore->propSet; dynamicProperty != NULL;
             dynamicProperty = dynamicProperty->_next) {
            if (STREQ(dynamicProperty->name, "summary.capacity")) {
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                             esxVI_Type_Long) < 0) {
                    goto cleanup;
                }

                def.capacity = dynamicProperty->val->int64;
            } else if (STREQ(dynamicProperty->name, "summary.freeSpace")) {
                if (esxVI_AnyType_ExpectType(dynamicProperty->val,
                                             esxVI_Type_Long) < 0) {
                    goto cleanup;
                }

                def.available = dynamicProperty->val->int64;
            } else if (STREQ(dynamicProperty->name, "info")) {
                if (esxVI_DatastoreInfo_CastFromAnyType(dynamicProperty->val,
                                                        &info) < 0) {
                    goto cleanup;
                }
            }
        }

        def.allocation = def.capacity - def.available;

        /* See vSphere API documentation about HostDatastoreSystem for details */
        if ((localInfo = esxVI_LocalDatastoreInfo_DynamicCast(info)) != NULL) {
            def.type = VIR_STORAGE_POOL_DIR;
            def.target.path = localInfo->path;
        } else if ((nasInfo = esxVI_NasDatastoreInfo_DynamicCast(info)) != NULL) {
            def.type = VIR_STORAGE_POOL_NETFS;
            def.source.host.name = nasInfo->nas->remoteHost;
            def.source.dir = nasInfo->nas->remotePath;

            if (STRCASEEQ(nasInfo->nas->type, "NFS")) {
                def.source.format = VIR_STORAGE_POOL_NETFS_NFS;
            } else  if (STRCASEEQ(nasInfo->nas->type, "CIFS")) {
                def.source.format = VIR_STORAGE_POOL_NETFS_CIFS;
            } else {
                ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
                          _("Datastore has unexpected type '%s'"),
                          nasInfo->nas->type);
                goto cleanup;
            }
        } else if ((vmfsInfo = esxVI_VmfsDatastoreInfo_DynamicCast(info)) != NULL) {
            def.type = VIR_STORAGE_POOL_FS;
            /*
             * FIXME: I'm not sure how to represent the source and target of a
             * VMFS based datastore in libvirt terms
             */
        } else {
            ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                      _("DatastoreInfo has unexpected type"));
            goto cleanup;
        }
    }

    xml = virStoragePoolDefFormat(&def);

  cleanup:
    esxVI_String_Free(&propertyNameList);
    esxVI_ObjectContent_Free(&datastore);
    esxVI_DatastoreInfo_Free(&info);

    return xml;
}



static int
esxStoragePoolGetAutostart(virStoragePoolPtr pool ATTRIBUTE_UNUSED,
                           int *autostart)
{
    /* ESX storage pools are always active */
    *autostart = 1;

    return 0;
}



static int
esxStoragePoolSetAutostart(virStoragePoolPtr pool ATTRIBUTE_UNUSED,
                           int autostart)
{
    /* Just accept autostart activation, but fail on autostart deactivation */
    autostart = (autostart != 0);

    if (! autostart) {
        ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
                  _("Cannot deactivate storage pool autostart"));
        return -1;
    }

    return 0;
}



static int
esxStoragePoolIsActive(virStoragePoolPtr pool ATTRIBUTE_UNUSED)
{
    /* ESX storage pools are always active */
    return 1;
}



static int
esxStoragePoolIsPersistent(virStoragePoolPtr pool ATTRIBUTE_UNUSED)
{
    /* ESX has no concept of transient pools, so all of them are persistent */
    return 1;
}


635 636 637 638
static virStorageDriver esxStorageDriver = {
    "ESX",                                 /* name */
    esxStorageOpen,                        /* open */
    esxStorageClose,                       /* close */
639 640 641 642
    esxNumberOfStoragePools,               /* numOfPools */
    esxListStoragePools,                   /* listPools */
    esxNumberOfDefinedStoragePools,        /* numOfDefinedPools */
    esxListDefinedStoragePools,            /* listDefinedPools */
643
    NULL,                                  /* findPoolSources */
644 645
    esxStoragePoolLookupByName,            /* poolLookupByName */
    esxStoragePoolLookupByUUID,            /* poolLookupByUUID */
646 647 648 649 650 651 652 653
    NULL,                                  /* poolLookupByVolume */
    NULL,                                  /* poolCreateXML */
    NULL,                                  /* poolDefineXML */
    NULL,                                  /* poolBuild */
    NULL,                                  /* poolUndefine */
    NULL,                                  /* poolCreate */
    NULL,                                  /* poolDestroy */
    NULL,                                  /* poolDelete */
654 655 656 657 658
    esxStoragePoolRefresh,                 /* poolRefresh */
    esxStoragePoolGetInfo,                 /* poolGetInfo */
    esxStoragePoolGetXMLDesc,              /* poolGetXMLDesc */
    esxStoragePoolGetAutostart,            /* poolGetAutostart */
    esxStoragePoolSetAutostart,            /* poolSetAutostart */
659 660 661 662 663 664 665 666
    NULL,                                  /* poolNumOfVolumes */
    NULL,                                  /* poolListVolumes */
    NULL,                                  /* volLookupByName */
    NULL,                                  /* volLookupByKey */
    NULL,                                  /* volLookupByPath */
    NULL,                                  /* volCreateXML */
    NULL,                                  /* volCreateXMLFrom */
    NULL,                                  /* volDelete */
667
    NULL,                                  /* volWipe */
668 669 670
    NULL,                                  /* volGetInfo */
    NULL,                                  /* volGetXMLDesc */
    NULL,                                  /* volGetPath */
671 672
    esxStoragePoolIsActive,                /* poolIsActive */
    esxStoragePoolIsPersistent,            /* poolIsPersistent */
673 674 675 676 677 678 679 680 681
};



int
esxStorageRegister(void)
{
    return virRegisterStorageDriver(&esxStorageDriver);
}