]> xenbits.xensource.com Git - libvirt.git/commitdiff
esx: Add support for storage volume wiping
authorMatthias Bolte <matthias.bolte@googlemail.com>
Wed, 22 Dec 2010 16:24:45 +0000 (17:24 +0100)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Wed, 22 Dec 2010 18:48:54 +0000 (19:48 +0100)
src/esx/esx_storage_driver.c
src/esx/esx_vi_generator.input

index 544551cd9f24ac0caa1f5ca91796d9890098889e..12c8f5eab9e614683a4efa78c0c0817e46593c6e 100644 (file)
@@ -1424,6 +1424,54 @@ esxStorageVolumeDelete(virStorageVolPtr volume, unsigned int flags)
 
 
 
+static int
+esxStorageVolumeWipe(virStorageVolPtr volume, unsigned int flags)
+{
+    int result = -1;
+    esxPrivate *priv = volume->conn->storagePrivateData;
+    char *datastorePath = NULL;
+    esxVI_ManagedObjectReference *task = NULL;
+    esxVI_TaskInfoState taskInfoState;
+    char *taskInfoErrorMessage = NULL;
+
+    virCheckFlags(0, -1);
+
+    if (esxVI_EnsureSession(priv->primary) < 0) {
+        return -1;
+    }
+
+    if (virAsprintf(&datastorePath, "[%s] %s", volume->pool, volume->name) < 0) {
+        virReportOOMError();
+        goto cleanup;
+    }
+
+    if (esxVI_ZeroFillVirtualDisk_Task(priv->primary, datastorePath,
+                                       priv->primary->datacenter->_reference,
+                                       &task) < 0 ||
+        esxVI_WaitForTaskCompletion(priv->primary, task, NULL,
+                                    esxVI_Occurrence_None, priv->autoAnswer,
+                                    &taskInfoState, &taskInfoErrorMessage) < 0) {
+        goto cleanup;
+    }
+
+    if (taskInfoState != esxVI_TaskInfoState_Success) {
+        ESX_ERROR(VIR_ERR_INTERNAL_ERROR, _("Could not wipe volume: %s"),
+                  taskInfoErrorMessage);
+        goto cleanup;
+    }
+
+    result = 0;
+
+  cleanup:
+    VIR_FREE(datastorePath);
+    esxVI_ManagedObjectReference_Free(&task);
+    VIR_FREE(taskInfoErrorMessage);
+
+    return result;
+}
+
+
+
 static int
 esxStorageVolumeGetInfo(virStorageVolPtr volume, virStorageVolInfoPtr info)
 {
@@ -1623,7 +1671,7 @@ static virStorageDriver esxStorageDriver = {
     esxStorageVolumeCreateXML,             /* volCreateXML */
     esxStorageVolumeCreateXMLFrom,         /* volCreateXMLFrom */
     esxStorageVolumeDelete,                /* volDelete */
-    NULL,                                  /* volWipe */
+    esxStorageVolumeWipe,                  /* volWipe */
     esxStorageVolumeGetInfo,               /* volGetInfo */
     esxStorageVolumeDumpXML,               /* volGetXMLDesc */
     esxStorageVolumeGetPath,               /* volGetPath */
index bd2da111985f5f1eb2638e6b0c6efe671b85f4b8..2d903e4f0529ddf5fb7ca6d45fb162eb903d6740 100644 (file)
@@ -916,3 +916,10 @@ method WaitForUpdates returns UpdateSet r
     ManagedObjectReference                   _this:PropertyCollector        r
     String                                   version                        o
 end
+
+
+method ZeroFillVirtualDisk_Task returns ManagedObjectReference r
+    ManagedObjectReference                   _this:VirtualDiskManager       r
+    String                                   name                           r
+    ManagedObjectReference                   datacenter                     o
+end