1 | /** @file
|
---|
2 | * VBox HDD Container API.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2011 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_VD_h
|
---|
27 | #define ___VBox_VD_h
|
---|
28 |
|
---|
29 | #include <iprt/assert.h>
|
---|
30 | #include <iprt/string.h>
|
---|
31 | #include <iprt/mem.h>
|
---|
32 | #include <iprt/file.h>
|
---|
33 | #include <iprt/net.h>
|
---|
34 | #include <iprt/sg.h>
|
---|
35 | #include <iprt/vfs.h>
|
---|
36 | #include <VBox/cdefs.h>
|
---|
37 | #include <VBox/types.h>
|
---|
38 | #include <VBox/err.h>
|
---|
39 | #include <VBox/vd-ifs.h>
|
---|
40 |
|
---|
41 | RT_C_DECLS_BEGIN
|
---|
42 |
|
---|
43 | #ifdef IN_RING0
|
---|
44 | # error "There are no VBox HDD Container APIs available in Ring-0 Host Context!"
|
---|
45 | #endif
|
---|
46 |
|
---|
47 | /** @defgroup grp_vd VBox HDD Container
|
---|
48 | * @{
|
---|
49 | */
|
---|
50 |
|
---|
51 | /** Current VMDK image version. */
|
---|
52 | #define VMDK_IMAGE_VERSION (0x0001)
|
---|
53 |
|
---|
54 | /** Current VDI image major version. */
|
---|
55 | #define VDI_IMAGE_VERSION_MAJOR (0x0001)
|
---|
56 | /** Current VDI image minor version. */
|
---|
57 | #define VDI_IMAGE_VERSION_MINOR (0x0001)
|
---|
58 | /** Current VDI image version. */
|
---|
59 | #define VDI_IMAGE_VERSION ((VDI_IMAGE_VERSION_MAJOR << 16) | VDI_IMAGE_VERSION_MINOR)
|
---|
60 |
|
---|
61 | /** Get VDI major version from combined version. */
|
---|
62 | #define VDI_GET_VERSION_MAJOR(uVer) ((uVer) >> 16)
|
---|
63 | /** Get VDI minor version from combined version. */
|
---|
64 | #define VDI_GET_VERSION_MINOR(uVer) ((uVer) & 0xffff)
|
---|
65 |
|
---|
66 | /** Placeholder for specifying the last opened image. */
|
---|
67 | #define VD_LAST_IMAGE 0xffffffffU
|
---|
68 |
|
---|
69 | /** Placeholder for VDCopyEx to indicate that the image content is unknown. */
|
---|
70 | #define VD_IMAGE_CONTENT_UNKNOWN 0xffffffffU
|
---|
71 |
|
---|
72 | /** @name VBox HDD container image flags
|
---|
73 | * @{
|
---|
74 | */
|
---|
75 | /** No flags. */
|
---|
76 | #define VD_IMAGE_FLAGS_NONE (0)
|
---|
77 | /** Fixed image. */
|
---|
78 | #define VD_IMAGE_FLAGS_FIXED (0x10000)
|
---|
79 | /** Diff image. Mutually exclusive with fixed image. */
|
---|
80 | #define VD_IMAGE_FLAGS_DIFF (0x20000)
|
---|
81 | /** VMDK: Split image into 2GB extents. */
|
---|
82 | #define VD_VMDK_IMAGE_FLAGS_SPLIT_2G (0x0001)
|
---|
83 | /** VMDK: Raw disk image (giving access to a number of host partitions). */
|
---|
84 | #define VD_VMDK_IMAGE_FLAGS_RAWDISK (0x0002)
|
---|
85 | /** VMDK: stream optimized image, read only. */
|
---|
86 | #define VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED (0x0004)
|
---|
87 | /** VMDK: ESX variant, use in addition to other flags. */
|
---|
88 | #define VD_VMDK_IMAGE_FLAGS_ESX (0x0008)
|
---|
89 | /** VDI: Fill new blocks with zeroes while expanding image file. Only valid
|
---|
90 | * for newly created images, never set for opened existing images. */
|
---|
91 | #define VD_VDI_IMAGE_FLAGS_ZERO_EXPAND (0x0100)
|
---|
92 |
|
---|
93 | /** Mask of valid image flags for VMDK. */
|
---|
94 | #define VD_VMDK_IMAGE_FLAGS_MASK ( VD_IMAGE_FLAGS_FIXED | VD_IMAGE_FLAGS_DIFF | VD_IMAGE_FLAGS_NONE \
|
---|
95 | | VD_VMDK_IMAGE_FLAGS_SPLIT_2G | VD_VMDK_IMAGE_FLAGS_RAWDISK \
|
---|
96 | | VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED | VD_VMDK_IMAGE_FLAGS_ESX)
|
---|
97 |
|
---|
98 | /** Mask of valid image flags for VDI. */
|
---|
99 | #define VD_VDI_IMAGE_FLAGS_MASK (VD_IMAGE_FLAGS_FIXED | VD_IMAGE_FLAGS_DIFF | VD_IMAGE_FLAGS_NONE | VD_VDI_IMAGE_FLAGS_ZERO_EXPAND)
|
---|
100 |
|
---|
101 | /** Mask of all valid image flags for all formats. */
|
---|
102 | #define VD_IMAGE_FLAGS_MASK (VD_VMDK_IMAGE_FLAGS_MASK | VD_VDI_IMAGE_FLAGS_MASK)
|
---|
103 |
|
---|
104 | /** Default image flags. */
|
---|
105 | #define VD_IMAGE_FLAGS_DEFAULT (VD_IMAGE_FLAGS_NONE)
|
---|
106 | /** @} */
|
---|
107 |
|
---|
108 | /** @name VD image repair flags
|
---|
109 | * @{
|
---|
110 | */
|
---|
111 | /** Don't repair the image but check what needs to be done. */
|
---|
112 | #define VD_REPAIR_DRY_RUN RT_BIT_32(0)
|
---|
113 |
|
---|
114 | /** Mask of all valid repair flags. */
|
---|
115 | #define VD_REPAIR_FLAGS_MASK (VD_REPAIR_DRY_RUN)
|
---|
116 | /** @} */
|
---|
117 |
|
---|
118 | /** @name VD image VFS file flags
|
---|
119 | * @{
|
---|
120 | */
|
---|
121 | /** Destroy the VD disk container when the VFS file is released. */
|
---|
122 | #define VD_VFSFILE_DESTROY_ON_RELEASE RT_BIT_32(0)
|
---|
123 |
|
---|
124 | /** Mask of all valid repair flags. */
|
---|
125 | #define VD_VFSFILE_FLAGS_MASK (VD_VFSFILE_DESTROY_ON_RELEASE)
|
---|
126 | /** @} */
|
---|
127 |
|
---|
128 | /**
|
---|
129 | * Auxiliary type for describing partitions on raw disks. The entries must be
|
---|
130 | * in ascending order (as far as uStart is concerned), and must not overlap.
|
---|
131 | * Note that this does not correspond 1:1 to partitions, it is describing the
|
---|
132 | * general meaning of contiguous areas on the disk.
|
---|
133 | */
|
---|
134 | typedef struct VBOXHDDRAWPARTDESC
|
---|
135 | {
|
---|
136 | /** Device to use for this partition/data area. Can be the disk device if
|
---|
137 | * the offset field is set appropriately. If this is NULL, then this
|
---|
138 | * partition will not be accessible to the guest. The size of the data area
|
---|
139 | * must still be set correctly. */
|
---|
140 | const char *pszRawDevice;
|
---|
141 | /** Pointer to the partitioning info. NULL means this is a regular data
|
---|
142 | * area on disk, non-NULL denotes data which should be copied to the
|
---|
143 | * partition data overlay. */
|
---|
144 | const void *pvPartitionData;
|
---|
145 | /** Offset where the data starts in this device. */
|
---|
146 | uint64_t uStartOffset;
|
---|
147 | /** Offset where the data starts in the disk. */
|
---|
148 | uint64_t uStart;
|
---|
149 | /** Size of the data area. */
|
---|
150 | uint64_t cbData;
|
---|
151 | } VBOXHDDRAWPARTDESC, *PVBOXHDDRAWPARTDESC;
|
---|
152 |
|
---|
153 | /**
|
---|
154 | * Auxiliary data structure for difference between GPT and MBR
|
---|
155 | * disks.
|
---|
156 | */
|
---|
157 | enum PARTITIONING_TYPE
|
---|
158 | {
|
---|
159 | MBR,
|
---|
160 | GPT
|
---|
161 | };
|
---|
162 |
|
---|
163 | /**
|
---|
164 | * Auxiliary data structure for creating raw disks.
|
---|
165 | */
|
---|
166 | typedef struct VBOXHDDRAW
|
---|
167 | {
|
---|
168 | /** Signature for structure. Must be 'R', 'A', 'W', '\\0'. Actually a trick
|
---|
169 | * to make logging of the comment string produce sensible results. */
|
---|
170 | char szSignature[4];
|
---|
171 | /** Flag whether access to full disk should be given (ignoring the
|
---|
172 | * partition information below). */
|
---|
173 | bool fRawDisk;
|
---|
174 | /** Filename for the raw disk. Ignored for partitioned raw disks.
|
---|
175 | * For Linux e.g. /dev/sda, and for Windows e.g. \\\\.\\PhysicalDisk0. */
|
---|
176 | const char *pszRawDisk;
|
---|
177 | /** Number of entries in the partition descriptor array. */
|
---|
178 | unsigned cPartDescs;
|
---|
179 | /** Pointer to the partition descriptor array. */
|
---|
180 | PVBOXHDDRAWPARTDESC pPartDescs;
|
---|
181 | /**partitioning type of the disk */
|
---|
182 | PARTITIONING_TYPE uPartitioningType;
|
---|
183 |
|
---|
184 | } VBOXHDDRAW, *PVBOXHDDRAW;
|
---|
185 |
|
---|
186 |
|
---|
187 | /** @name VBox HDD container image open mode flags
|
---|
188 | * @{
|
---|
189 | */
|
---|
190 | /** Try to open image in read/write exclusive access mode if possible, or in read-only elsewhere. */
|
---|
191 | #define VD_OPEN_FLAGS_NORMAL 0
|
---|
192 | /** Open image in read-only mode with sharing access with others. */
|
---|
193 | #define VD_OPEN_FLAGS_READONLY RT_BIT(0)
|
---|
194 | /** Honor zero block writes instead of ignoring them whenever possible.
|
---|
195 | * This is not supported by all formats. It is silently ignored in this case. */
|
---|
196 | #define VD_OPEN_FLAGS_HONOR_ZEROES RT_BIT(1)
|
---|
197 | /** Honor writes of the same data instead of ignoring whenever possible.
|
---|
198 | * This is handled generically, and is only meaningful for differential image
|
---|
199 | * formats. It is silently ignored otherwise. */
|
---|
200 | #define VD_OPEN_FLAGS_HONOR_SAME RT_BIT(2)
|
---|
201 | /** Do not perform the base/diff image check on open. This does NOT imply
|
---|
202 | * opening the image as readonly (would break e.g. adding UUIDs to VMDK files
|
---|
203 | * created by other products). Images opened with this flag should only be
|
---|
204 | * used for querying information, and nothing else. */
|
---|
205 | #define VD_OPEN_FLAGS_INFO RT_BIT(3)
|
---|
206 | /** Open image for asynchronous access. Only available if VD_CAP_ASYNC_IO is
|
---|
207 | * set. VDOpen fails with VERR_NOT_SUPPORTED if this operation is not supported for
|
---|
208 | * this kind of image. */
|
---|
209 | #define VD_OPEN_FLAGS_ASYNC_IO RT_BIT(4)
|
---|
210 | /** Allow sharing of the image for writable images. May be ignored if the
|
---|
211 | * format backend doesn't support this type of concurrent access. */
|
---|
212 | #define VD_OPEN_FLAGS_SHAREABLE RT_BIT(5)
|
---|
213 | /** Ask the backend to switch to sequential accesses if possible. Opening
|
---|
214 | * will not fail if it cannot do this, the flag will be simply ignored. */
|
---|
215 | #define VD_OPEN_FLAGS_SEQUENTIAL RT_BIT(6)
|
---|
216 | /** Allow the discard operation if supported. Only available if VD_CAP_DISCARD
|
---|
217 | * is set. VDOpen fails with VERR_VD_DISCARD_NOT_SUPPORTED if discarding is not
|
---|
218 | * supported. */
|
---|
219 | #define VD_OPEN_FLAGS_DISCARD RT_BIT(7)
|
---|
220 | /** Ignore all flush requests to workaround certain filesystems which are slow
|
---|
221 | * when writing a lot of cached data to the medium.
|
---|
222 | * Use with extreme care as a host crash can result in completely corrupted and
|
---|
223 | * unusable images.
|
---|
224 | */
|
---|
225 | #define VD_OPEN_FLAGS_IGNORE_FLUSH RT_BIT(8)
|
---|
226 | /**
|
---|
227 | * Return VINF_VD_NEW_ZEROED_BLOCK for reads from unallocated blocks.
|
---|
228 | * The caller who uses the flag has to make sure that the read doesn't cross
|
---|
229 | * a block boundary. Because the block size can differ between images reading one
|
---|
230 | * sector at a time is the safest solution.
|
---|
231 | */
|
---|
232 | #define VD_OPEN_FLAGS_INFORM_ABOUT_ZERO_BLOCKS RT_BIT(9)
|
---|
233 | /** Mask of valid flags. */
|
---|
234 | #define VD_OPEN_FLAGS_MASK (VD_OPEN_FLAGS_NORMAL | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_HONOR_ZEROES | VD_OPEN_FLAGS_HONOR_SAME | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO | VD_OPEN_FLAGS_SHAREABLE | VD_OPEN_FLAGS_SEQUENTIAL | VD_OPEN_FLAGS_DISCARD | VD_OPEN_FLAGS_IGNORE_FLUSH | VD_OPEN_FLAGS_INFORM_ABOUT_ZERO_BLOCKS)
|
---|
235 | /** @}*/
|
---|
236 |
|
---|
237 | /**
|
---|
238 | * Helper functions to handle open flags.
|
---|
239 | */
|
---|
240 |
|
---|
241 | /**
|
---|
242 | * Translate VD_OPEN_FLAGS_* to RTFile open flags.
|
---|
243 | *
|
---|
244 | * @return RTFile open flags.
|
---|
245 | * @param uOpenFlags VD_OPEN_FLAGS_* open flags.
|
---|
246 | * @param fCreate Flag that the file should be created.
|
---|
247 | */
|
---|
248 | DECLINLINE(uint32_t) VDOpenFlagsToFileOpenFlags(unsigned uOpenFlags, bool fCreate)
|
---|
249 | {
|
---|
250 | AssertMsg(!((uOpenFlags & VD_OPEN_FLAGS_READONLY) && fCreate), ("Image can't be opened readonly while being created\n"));
|
---|
251 |
|
---|
252 | uint32_t fOpen = 0;
|
---|
253 |
|
---|
254 | if (RT_UNLIKELY(uOpenFlags & VD_OPEN_FLAGS_READONLY))
|
---|
255 | fOpen |= RTFILE_O_READ | RTFILE_O_DENY_NONE;
|
---|
256 | else
|
---|
257 | {
|
---|
258 | fOpen |= RTFILE_O_READWRITE;
|
---|
259 |
|
---|
260 | if (RT_UNLIKELY(uOpenFlags & VD_OPEN_FLAGS_SHAREABLE))
|
---|
261 | fOpen |= RTFILE_O_DENY_NONE;
|
---|
262 | else
|
---|
263 | fOpen |= RTFILE_O_DENY_WRITE;
|
---|
264 | }
|
---|
265 |
|
---|
266 | if (RT_UNLIKELY(fCreate))
|
---|
267 | fOpen |= RTFILE_O_CREATE | RTFILE_O_NOT_CONTENT_INDEXED;
|
---|
268 | else
|
---|
269 | fOpen |= RTFILE_O_OPEN;
|
---|
270 |
|
---|
271 | return fOpen;
|
---|
272 | }
|
---|
273 |
|
---|
274 |
|
---|
275 | /** @name VBox HDD container backend capability flags
|
---|
276 | * @{
|
---|
277 | */
|
---|
278 | /** Supports UUIDs as expected by VirtualBox code. */
|
---|
279 | #define VD_CAP_UUID RT_BIT(0)
|
---|
280 | /** Supports creating fixed size images, allocating all space instantly. */
|
---|
281 | #define VD_CAP_CREATE_FIXED RT_BIT(1)
|
---|
282 | /** Supports creating dynamically growing images, allocating space on demand. */
|
---|
283 | #define VD_CAP_CREATE_DYNAMIC RT_BIT(2)
|
---|
284 | /** Supports creating images split in chunks of a bit less than 2GBytes. */
|
---|
285 | #define VD_CAP_CREATE_SPLIT_2G RT_BIT(3)
|
---|
286 | /** Supports being used as differencing image format backend. */
|
---|
287 | #define VD_CAP_DIFF RT_BIT(4)
|
---|
288 | /** Supports asynchronous I/O operations for at least some configurations. */
|
---|
289 | #define VD_CAP_ASYNC RT_BIT(5)
|
---|
290 | /** The backend operates on files. The caller needs to know to handle the
|
---|
291 | * location appropriately. */
|
---|
292 | #define VD_CAP_FILE RT_BIT(6)
|
---|
293 | /** The backend uses the config interface. The caller needs to know how to
|
---|
294 | * provide the mandatory configuration parts this way. */
|
---|
295 | #define VD_CAP_CONFIG RT_BIT(7)
|
---|
296 | /** The backend uses the network stack interface. The caller has to provide
|
---|
297 | * the appropriate interface. */
|
---|
298 | #define VD_CAP_TCPNET RT_BIT(8)
|
---|
299 | /** The backend supports VFS (virtual filesystem) functionality since it uses
|
---|
300 | * VDINTERFACEIO exclusively for all file operations. */
|
---|
301 | #define VD_CAP_VFS RT_BIT(9)
|
---|
302 | /** The backend supports the discard operation. */
|
---|
303 | #define VD_CAP_DISCARD RT_BIT(10)
|
---|
304 | /** @}*/
|
---|
305 |
|
---|
306 | /** @name VBox HDD container type.
|
---|
307 | * @{
|
---|
308 | */
|
---|
309 | typedef enum VDTYPE
|
---|
310 | {
|
---|
311 | /** Invalid. */
|
---|
312 | VDTYPE_INVALID = 0,
|
---|
313 | /** HardDisk */
|
---|
314 | VDTYPE_HDD,
|
---|
315 | /** CD/DVD */
|
---|
316 | VDTYPE_DVD,
|
---|
317 | /** Floppy. */
|
---|
318 | VDTYPE_FLOPPY
|
---|
319 | } VDTYPE;
|
---|
320 | /** @}*/
|
---|
321 |
|
---|
322 |
|
---|
323 | /** @name Configuration interface key handling flags.
|
---|
324 | * @{
|
---|
325 | */
|
---|
326 | /** Mandatory config key. Not providing a value for this key will cause
|
---|
327 | * the backend to fail. */
|
---|
328 | #define VD_CFGKEY_MANDATORY RT_BIT(0)
|
---|
329 | /** Expert config key. Not showing it by default in the GUI is is probably
|
---|
330 | * a good idea, as the average user won't understand it easily. */
|
---|
331 | #define VD_CFGKEY_EXPERT RT_BIT(1)
|
---|
332 | /** @}*/
|
---|
333 |
|
---|
334 |
|
---|
335 | /**
|
---|
336 | * Configuration value type for configuration information interface.
|
---|
337 | */
|
---|
338 | typedef enum VDCFGVALUETYPE
|
---|
339 | {
|
---|
340 | /** Integer value. */
|
---|
341 | VDCFGVALUETYPE_INTEGER = 1,
|
---|
342 | /** String value. */
|
---|
343 | VDCFGVALUETYPE_STRING,
|
---|
344 | /** Bytestring value. */
|
---|
345 | VDCFGVALUETYPE_BYTES
|
---|
346 | } VDCFGVALUETYPE;
|
---|
347 |
|
---|
348 |
|
---|
349 | /**
|
---|
350 | * Structure describing configuration keys required/supported by a backend
|
---|
351 | * through the config interface.
|
---|
352 | */
|
---|
353 | typedef struct VDCONFIGINFO
|
---|
354 | {
|
---|
355 | /** Key name of the configuration. */
|
---|
356 | const char *pszKey;
|
---|
357 | /** Pointer to default value (descriptor). NULL if no useful default value
|
---|
358 | * can be specified. */
|
---|
359 | const char *pszDefaultValue;
|
---|
360 | /** Value type for this key. */
|
---|
361 | VDCFGVALUETYPE enmValueType;
|
---|
362 | /** Key handling flags (a combination of VD_CFGKEY_* flags). */
|
---|
363 | uint64_t uKeyFlags;
|
---|
364 | } VDCONFIGINFO;
|
---|
365 |
|
---|
366 | /** Pointer to structure describing configuration keys. */
|
---|
367 | typedef VDCONFIGINFO *PVDCONFIGINFO;
|
---|
368 |
|
---|
369 | /** Pointer to const structure describing configuration keys. */
|
---|
370 | typedef const VDCONFIGINFO *PCVDCONFIGINFO;
|
---|
371 |
|
---|
372 | /**
|
---|
373 | * Structure describing a file extension.
|
---|
374 | */
|
---|
375 | typedef struct VDFILEEXTENSION
|
---|
376 | {
|
---|
377 | /** Pointer to the NULL-terminated string containing the extension. */
|
---|
378 | const char *pszExtension;
|
---|
379 | /** The device type the extension supports. */
|
---|
380 | VDTYPE enmType;
|
---|
381 | } VDFILEEXTENSION;
|
---|
382 |
|
---|
383 | /** Pointer to a structure describing a file extension. */
|
---|
384 | typedef VDFILEEXTENSION *PVDFILEEXTENSION;
|
---|
385 |
|
---|
386 | /** Pointer to a const structure describing a file extension. */
|
---|
387 | typedef const VDFILEEXTENSION *PCVDFILEEXTENSION;
|
---|
388 |
|
---|
389 | /**
|
---|
390 | * Data structure for returning a list of backend capabilities.
|
---|
391 | */
|
---|
392 | typedef struct VDBACKENDINFO
|
---|
393 | {
|
---|
394 | /** Name of the backend. Must be unique even with case insensitive comparison. */
|
---|
395 | const char *pszBackend;
|
---|
396 | /** Capabilities of the backend (a combination of the VD_CAP_* flags). */
|
---|
397 | uint64_t uBackendCaps;
|
---|
398 | /** Pointer to a NULL-terminated array of strings, containing the supported
|
---|
399 | * file extensions. Note that some backends do not work on files, so this
|
---|
400 | * pointer may just contain NULL. */
|
---|
401 | PCVDFILEEXTENSION paFileExtensions;
|
---|
402 | /** Pointer to an array of structs describing each supported config key.
|
---|
403 | * Terminated by a NULL config key. Note that some backends do not support
|
---|
404 | * the configuration interface, so this pointer may just contain NULL.
|
---|
405 | * Mandatory if the backend sets VD_CAP_CONFIG. */
|
---|
406 | PCVDCONFIGINFO paConfigInfo;
|
---|
407 | /** Returns a human readable hard disk location string given a
|
---|
408 | * set of hard disk configuration keys. The returned string is an
|
---|
409 | * equivalent of the full file path for image-based hard disks.
|
---|
410 | * Mandatory for backends with no VD_CAP_FILE and NULL otherwise. */
|
---|
411 | DECLR3CALLBACKMEMBER(int, pfnComposeLocation, (PVDINTERFACE pConfig, char **pszLocation));
|
---|
412 | /** Returns a human readable hard disk name string given a
|
---|
413 | * set of hard disk configuration keys. The returned string is an
|
---|
414 | * equivalent of the file name part in the full file path for
|
---|
415 | * image-based hard disks. Mandatory for backends with no
|
---|
416 | * VD_CAP_FILE and NULL otherwise. */
|
---|
417 | DECLR3CALLBACKMEMBER(int, pfnComposeName, (PVDINTERFACE pConfig, char **pszName));
|
---|
418 | } VDBACKENDINFO, *PVDBACKENDINFO;
|
---|
419 |
|
---|
420 |
|
---|
421 | /**
|
---|
422 | * Request completion callback for the async read/write API.
|
---|
423 | */
|
---|
424 | typedef void (FNVDASYNCTRANSFERCOMPLETE) (void *pvUser1, void *pvUser2, int rcReq);
|
---|
425 | /** Pointer to a transfer compelte callback. */
|
---|
426 | typedef FNVDASYNCTRANSFERCOMPLETE *PFNVDASYNCTRANSFERCOMPLETE;
|
---|
427 |
|
---|
428 | /**
|
---|
429 | * Disk geometry.
|
---|
430 | */
|
---|
431 | typedef struct VDGEOMETRY
|
---|
432 | {
|
---|
433 | /** Number of cylinders. */
|
---|
434 | uint32_t cCylinders;
|
---|
435 | /** Number of heads. */
|
---|
436 | uint32_t cHeads;
|
---|
437 | /** Number of sectors. */
|
---|
438 | uint32_t cSectors;
|
---|
439 | } VDGEOMETRY;
|
---|
440 |
|
---|
441 | /** Pointer to disk geometry. */
|
---|
442 | typedef VDGEOMETRY *PVDGEOMETRY;
|
---|
443 | /** Pointer to constant disk geometry. */
|
---|
444 | typedef const VDGEOMETRY *PCVDGEOMETRY;
|
---|
445 |
|
---|
446 | /**
|
---|
447 | * VBox HDD Container main structure.
|
---|
448 | */
|
---|
449 | /* Forward declaration, VBOXHDD structure is visible only inside VBox HDD module. */
|
---|
450 | struct VBOXHDD;
|
---|
451 | typedef struct VBOXHDD VBOXHDD;
|
---|
452 | typedef VBOXHDD *PVBOXHDD;
|
---|
453 |
|
---|
454 | /**
|
---|
455 | * Initializes HDD backends.
|
---|
456 | *
|
---|
457 | * @returns VBox status code.
|
---|
458 | */
|
---|
459 | VBOXDDU_DECL(int) VDInit(void);
|
---|
460 |
|
---|
461 | /**
|
---|
462 | * Destroys loaded HDD backends.
|
---|
463 | *
|
---|
464 | * @returns VBox status code.
|
---|
465 | */
|
---|
466 | VBOXDDU_DECL(int) VDShutdown(void);
|
---|
467 |
|
---|
468 | /**
|
---|
469 | * Lists all HDD backends and their capabilities in a caller-provided buffer.
|
---|
470 | *
|
---|
471 | * @return VBox status code.
|
---|
472 | * VERR_BUFFER_OVERFLOW if not enough space is passed.
|
---|
473 | * @param cEntriesAlloc Number of list entries available.
|
---|
474 | * @param pEntries Pointer to array for the entries.
|
---|
475 | * @param pcEntriesUsed Number of entries returned.
|
---|
476 | */
|
---|
477 | VBOXDDU_DECL(int) VDBackendInfo(unsigned cEntriesAlloc, PVDBACKENDINFO pEntries,
|
---|
478 | unsigned *pcEntriesUsed);
|
---|
479 |
|
---|
480 | /**
|
---|
481 | * Lists the capabilities of a backend identified by its name.
|
---|
482 | *
|
---|
483 | * @return VBox status code.
|
---|
484 | * @param pszBackend The backend name (case insensitive).
|
---|
485 | * @param pEntries Pointer to an entry.
|
---|
486 | */
|
---|
487 | VBOXDDU_DECL(int) VDBackendInfoOne(const char *pszBackend, PVDBACKENDINFO pEntry);
|
---|
488 |
|
---|
489 | /**
|
---|
490 | * Allocates and initializes an empty HDD container.
|
---|
491 | * No image files are opened.
|
---|
492 | *
|
---|
493 | * @return VBox status code.
|
---|
494 | * @param pVDIfsDisk Pointer to the per-disk VD interface list.
|
---|
495 | * @param enmType Type of the image container.
|
---|
496 | * @param ppDisk Where to store the reference to HDD container.
|
---|
497 | */
|
---|
498 | VBOXDDU_DECL(int) VDCreate(PVDINTERFACE pVDIfsDisk, VDTYPE enmType, PVBOXHDD *ppDisk);
|
---|
499 |
|
---|
500 | /**
|
---|
501 | * Destroys HDD container.
|
---|
502 | * If container has opened image files they will be closed.
|
---|
503 | *
|
---|
504 | * @return VBox status code.
|
---|
505 | * @param pDisk Pointer to HDD container.
|
---|
506 | */
|
---|
507 | VBOXDDU_DECL(int) VDDestroy(PVBOXHDD pDisk);
|
---|
508 |
|
---|
509 | /**
|
---|
510 | * Try to get the backend name which can use this image.
|
---|
511 | *
|
---|
512 | * @return VBox status code.
|
---|
513 | * VINF_SUCCESS if a plugin was found.
|
---|
514 | * ppszFormat contains the string which can be used as backend name.
|
---|
515 | * VERR_NOT_SUPPORTED if no backend was found.
|
---|
516 | * @param pVDIfsDisk Pointer to the per-disk VD interface list.
|
---|
517 | * @param pVDIfsImage Pointer to the per-image VD interface list.
|
---|
518 | * @param pszFilename Name of the image file for which the backend is queried.
|
---|
519 | * @param ppszFormat Receives pointer of the UTF-8 string which contains the format name.
|
---|
520 | * The returned pointer must be freed using RTStrFree().
|
---|
521 | * @param penmType Where to store the type of the image.
|
---|
522 | */
|
---|
523 | VBOXDDU_DECL(int) VDGetFormat(PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
|
---|
524 | const char *pszFilename, char **ppszFormat, VDTYPE *penmType);
|
---|
525 |
|
---|
526 | /**
|
---|
527 | * Opens an image file.
|
---|
528 | *
|
---|
529 | * The first opened image file in HDD container must have a base image type,
|
---|
530 | * others (next opened images) must be differencing or undo images.
|
---|
531 | * Linkage is checked for differencing image to be consistent with the previously opened image.
|
---|
532 | * When another differencing image is opened and the last image was opened in read/write access
|
---|
533 | * mode, then the last image is reopened in read-only with deny write sharing mode. This allows
|
---|
534 | * other processes to use images in read-only mode too.
|
---|
535 | *
|
---|
536 | * Note that the image is opened in read-only mode if a read/write open is not possible.
|
---|
537 | * Use VDIsReadOnly to check open mode.
|
---|
538 | *
|
---|
539 | * @return VBox status code.
|
---|
540 | * @param pDisk Pointer to HDD container.
|
---|
541 | * @param pszBackend Name of the image file backend to use (case insensitive).
|
---|
542 | * @param pszFilename Name of the image file to open.
|
---|
543 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
544 | * @param pVDIfsImage Pointer to the per-image VD interface list.
|
---|
545 | */
|
---|
546 | VBOXDDU_DECL(int) VDOpen(PVBOXHDD pDisk, const char *pszBackend,
|
---|
547 | const char *pszFilename, unsigned uOpenFlags,
|
---|
548 | PVDINTERFACE pVDIfsImage);
|
---|
549 |
|
---|
550 | /**
|
---|
551 | * Opens a cache image.
|
---|
552 | *
|
---|
553 | * @return VBox status code.
|
---|
554 | * @param pDisk Pointer to the HDD container which should use the cache image.
|
---|
555 | * @param pszBackend Name of the cache file backend to use (case insensitive).
|
---|
556 | * @param pszFilename Name of the cache image to open.
|
---|
557 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
558 | * @param pVDIfsCache Pointer to the per-cache VD interface list.
|
---|
559 | */
|
---|
560 | VBOXDDU_DECL(int) VDCacheOpen(PVBOXHDD pDisk, const char *pszBackend,
|
---|
561 | const char *pszFilename, unsigned uOpenFlags,
|
---|
562 | PVDINTERFACE pVDIfsCache);
|
---|
563 |
|
---|
564 | /**
|
---|
565 | * Creates and opens a new base image file.
|
---|
566 | *
|
---|
567 | * @return VBox status code.
|
---|
568 | * @param pDisk Pointer to HDD container.
|
---|
569 | * @param pszBackend Name of the image file backend to use (case insensitive).
|
---|
570 | * @param pszFilename Name of the image file to create.
|
---|
571 | * @param cbSize Image size in bytes.
|
---|
572 | * @param uImageFlags Flags specifying special image features.
|
---|
573 | * @param pszComment Pointer to image comment. NULL is ok.
|
---|
574 | * @param pPCHSGeometry Pointer to physical disk geometry <= (16383,16,63). Not NULL.
|
---|
575 | * @param pLCHSGeometry Pointer to logical disk geometry <= (x,255,63). Not NULL.
|
---|
576 | * @param pUuid New UUID of the image. If NULL, a new UUID is created.
|
---|
577 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
578 | * @param pVDIfsImage Pointer to the per-image VD interface list.
|
---|
579 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
580 | */
|
---|
581 | VBOXDDU_DECL(int) VDCreateBase(PVBOXHDD pDisk, const char *pszBackend,
|
---|
582 | const char *pszFilename, uint64_t cbSize,
|
---|
583 | unsigned uImageFlags, const char *pszComment,
|
---|
584 | PCVDGEOMETRY pPCHSGeometry,
|
---|
585 | PCVDGEOMETRY pLCHSGeometry,
|
---|
586 | PCRTUUID pUuid, unsigned uOpenFlags,
|
---|
587 | PVDINTERFACE pVDIfsImage,
|
---|
588 | PVDINTERFACE pVDIfsOperation);
|
---|
589 |
|
---|
590 | /**
|
---|
591 | * Creates and opens a new differencing image file in HDD container.
|
---|
592 | * See comments for VDOpen function about differencing images.
|
---|
593 | *
|
---|
594 | * @return VBox status code.
|
---|
595 | * @param pDisk Pointer to HDD container.
|
---|
596 | * @param pszBackend Name of the image file backend to use (case insensitive).
|
---|
597 | * @param pszFilename Name of the differencing image file to create.
|
---|
598 | * @param uImageFlags Flags specifying special image features.
|
---|
599 | * @param pszComment Pointer to image comment. NULL is ok.
|
---|
600 | * @param pUuid New UUID of the image. If NULL, a new UUID is created.
|
---|
601 | * @param pParentUuid New parent UUID of the image. If NULL, the UUID is queried automatically.
|
---|
602 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
603 | * @param pVDIfsImage Pointer to the per-image VD interface list.
|
---|
604 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
605 | */
|
---|
606 | VBOXDDU_DECL(int) VDCreateDiff(PVBOXHDD pDisk, const char *pszBackend,
|
---|
607 | const char *pszFilename, unsigned uImageFlags,
|
---|
608 | const char *pszComment, PCRTUUID pUuid,
|
---|
609 | PCRTUUID pParentUuid, unsigned uOpenFlags,
|
---|
610 | PVDINTERFACE pVDIfsImage,
|
---|
611 | PVDINTERFACE pVDIfsOperation);
|
---|
612 |
|
---|
613 | /**
|
---|
614 | * Creates and opens new cache image file in HDD container.
|
---|
615 | *
|
---|
616 | * @return VBox status code.
|
---|
617 | * @param pDisk Name of the cache file backend to use (case insensitive).
|
---|
618 | * @param pszFilename Name of the differencing cache file to create.
|
---|
619 | * @param cbSize Maximum size of the cache.
|
---|
620 | * @param uImageFlags Flags specifying special cache features.
|
---|
621 | * @param pszComment Pointer to image comment. NULL is ok.
|
---|
622 | * @param pUuid New UUID of the image. If NULL, a new UUID is created.
|
---|
623 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
624 | * @param pVDIfsCache Pointer to the per-cache VD interface list.
|
---|
625 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
626 | */
|
---|
627 | VBOXDDU_DECL(int) VDCreateCache(PVBOXHDD pDisk, const char *pszBackend,
|
---|
628 | const char *pszFilename, uint64_t cbSize,
|
---|
629 | unsigned uImageFlags, const char *pszComment,
|
---|
630 | PCRTUUID pUuid, unsigned uOpenFlags,
|
---|
631 | PVDINTERFACE pVDIfsCache, PVDINTERFACE pVDIfsOperation);
|
---|
632 |
|
---|
633 | /**
|
---|
634 | * Merges two images (not necessarily with direct parent/child relationship).
|
---|
635 | * As a side effect the source image and potentially the other images which
|
---|
636 | * are also merged to the destination are deleted from both the disk and the
|
---|
637 | * images in the HDD container.
|
---|
638 | *
|
---|
639 | * @return VBox status code.
|
---|
640 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
641 | * @param pDisk Pointer to HDD container.
|
---|
642 | * @param nImageFrom Image number to merge from, counts from 0. 0 is always base image of container.
|
---|
643 | * @param nImageTo Image number to merge to, counts from 0. 0 is always base image of container.
|
---|
644 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
645 | */
|
---|
646 | VBOXDDU_DECL(int) VDMerge(PVBOXHDD pDisk, unsigned nImageFrom,
|
---|
647 | unsigned nImageTo, PVDINTERFACE pVDIfsOperation);
|
---|
648 |
|
---|
649 | /**
|
---|
650 | * Copies an image from one HDD container to another - extended version.
|
---|
651 | * The copy is opened in the target HDD container.
|
---|
652 | * It is possible to convert between different image formats, because the
|
---|
653 | * backend for the destination may be different from the source.
|
---|
654 | * If both the source and destination reference the same HDD container,
|
---|
655 | * then the image is moved (by copying/deleting or renaming) to the new location.
|
---|
656 | * The source container is unchanged if the move operation fails, otherwise
|
---|
657 | * the image at the new location is opened in the same way as the old one was.
|
---|
658 | *
|
---|
659 | * @note The read/write accesses across disks are not synchronized, just the
|
---|
660 | * accesses to each disk. Once there is a use case which requires a defined
|
---|
661 | * read/write behavior in this situation this needs to be extended.
|
---|
662 | *
|
---|
663 | * @return VBox status code.
|
---|
664 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
665 | * @param pDiskFrom Pointer to source HDD container.
|
---|
666 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
667 | * @param pDiskTo Pointer to destination HDD container.
|
---|
668 | * @param pszBackend Name of the image file backend to use (may be NULL to use the same as the source, case insensitive).
|
---|
669 | * @param pszFilename New name of the image (may be NULL to specify that the
|
---|
670 | * copy destination is the destination container, or
|
---|
671 | * if pDiskFrom == pDiskTo, i.e. when moving).
|
---|
672 | * @param fMoveByRename If true, attempt to perform a move by renaming (if successful the new size is ignored).
|
---|
673 | * @param cbSize New image size (0 means leave unchanged).
|
---|
674 | * @param nImageSameFrom The number of the last image in the source chain having the same content as the
|
---|
675 | * image in the destination chain given by nImageSameTo or
|
---|
676 | * VD_IMAGE_CONTENT_UNKNOWN to indicate that the content of both containers is unknown.
|
---|
677 | * See the notes for further information.
|
---|
678 | * @param nImageSameTo The number of the last image in the destination chain having the same content as the
|
---|
679 | * image in the source chain given by nImageSameFrom or
|
---|
680 | * VD_IMAGE_CONTENT_UNKNOWN to indicate that the content of both containers is unknown.
|
---|
681 | * See the notes for further information.
|
---|
682 | * @param uImageFlags Flags specifying special destination image features.
|
---|
683 | * @param pDstUuid New UUID of the destination image. If NULL, a new UUID is created.
|
---|
684 | * This parameter is used if and only if a true copy is created.
|
---|
685 | * In all rename/move cases or copy to existing image cases the modification UUIDs are copied over.
|
---|
686 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
687 | * Only used if the destination image is created.
|
---|
688 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
689 | * @param pDstVDIfsImage Pointer to the per-image VD interface list, for the
|
---|
690 | * destination image.
|
---|
691 | * @param pDstVDIfsOperation Pointer to the per-operation VD interface list,
|
---|
692 | * for the destination operation.
|
---|
693 | *
|
---|
694 | * @note Using nImageSameFrom and nImageSameTo can lead to a significant speedup
|
---|
695 | * when copying an image but can also lead to a corrupted copy if used incorrectly.
|
---|
696 | * It is mainly useful when cloning a chain of images and it is known that
|
---|
697 | * the virtual disk content of the two chains is exactly the same upto a certain image.
|
---|
698 | * Example:
|
---|
699 | * Imagine the chain of images which consist of a base and one diff image.
|
---|
700 | * Copying the chain starts with the base image. When copying the first
|
---|
701 | * diff image VDCopy() will read the data from the diff of the source chain
|
---|
702 | * and probably from the base image again in case the diff doesn't has data
|
---|
703 | * for the block. However the block will be optimized away because VDCopy()
|
---|
704 | * reads data from the base image of the destination chain compares the to
|
---|
705 | * and suppresses the write because the data is unchanged.
|
---|
706 | * For a lot of diff images this will be a huge waste of I/O bandwidth if
|
---|
707 | * the diff images contain only few changes.
|
---|
708 | * Because it is known that the base image of the source and the destination chain
|
---|
709 | * have the same content it is enough to check the diff image for changed data
|
---|
710 | * and copy it to the destination diff image which is achieved with
|
---|
711 | * nImageSameFrom and nImageSameTo. Setting both to 0 can suppress a lot of I/O.
|
---|
712 | */
|
---|
713 | VBOXDDU_DECL(int) VDCopyEx(PVBOXHDD pDiskFrom, unsigned nImage, PVBOXHDD pDiskTo,
|
---|
714 | const char *pszBackend, const char *pszFilename,
|
---|
715 | bool fMoveByRename, uint64_t cbSize,
|
---|
716 | unsigned nImageFromSame, unsigned nImageToSame,
|
---|
717 | unsigned uImageFlags, PCRTUUID pDstUuid,
|
---|
718 | unsigned uOpenFlags, PVDINTERFACE pVDIfsOperation,
|
---|
719 | PVDINTERFACE pDstVDIfsImage,
|
---|
720 | PVDINTERFACE pDstVDIfsOperation);
|
---|
721 |
|
---|
722 | /**
|
---|
723 | * Copies an image from one HDD container to another.
|
---|
724 | * The copy is opened in the target HDD container.
|
---|
725 | * It is possible to convert between different image formats, because the
|
---|
726 | * backend for the destination may be different from the source.
|
---|
727 | * If both the source and destination reference the same HDD container,
|
---|
728 | * then the image is moved (by copying/deleting or renaming) to the new location.
|
---|
729 | * The source container is unchanged if the move operation fails, otherwise
|
---|
730 | * the image at the new location is opened in the same way as the old one was.
|
---|
731 | *
|
---|
732 | * @note The read/write accesses across disks are not synchronized, just the
|
---|
733 | * accesses to each disk. Once there is a use case which requires a defined
|
---|
734 | * read/write behavior in this situation this needs to be extended.
|
---|
735 | *
|
---|
736 | * @return VBox status code.
|
---|
737 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
738 | * @param pDiskFrom Pointer to source HDD container.
|
---|
739 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
740 | * @param pDiskTo Pointer to destination HDD container.
|
---|
741 | * @param pszBackend Name of the image file backend to use (may be NULL to use the same as the source, case insensitive).
|
---|
742 | * @param pszFilename New name of the image (may be NULL to specify that the
|
---|
743 | * copy destination is the destination container, or
|
---|
744 | * if pDiskFrom == pDiskTo, i.e. when moving).
|
---|
745 | * @param fMoveByRename If true, attempt to perform a move by renaming (if successful the new size is ignored).
|
---|
746 | * @param cbSize New image size (0 means leave unchanged).
|
---|
747 | * @param uImageFlags Flags specifying special destination image features.
|
---|
748 | * @param pDstUuid New UUID of the destination image. If NULL, a new UUID is created.
|
---|
749 | * This parameter is used if and only if a true copy is created.
|
---|
750 | * In all rename/move cases or copy to existing image cases the modification UUIDs are copied over.
|
---|
751 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
752 | * Only used if the destination image is created.
|
---|
753 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
754 | * @param pDstVDIfsImage Pointer to the per-image VD interface list, for the
|
---|
755 | * destination image.
|
---|
756 | * @param pDstVDIfsOperation Pointer to the per-operation VD interface list,
|
---|
757 | * for the destination operation.
|
---|
758 | */
|
---|
759 | VBOXDDU_DECL(int) VDCopy(PVBOXHDD pDiskFrom, unsigned nImage, PVBOXHDD pDiskTo,
|
---|
760 | const char *pszBackend, const char *pszFilename,
|
---|
761 | bool fMoveByRename, uint64_t cbSize,
|
---|
762 | unsigned uImageFlags, PCRTUUID pDstUuid,
|
---|
763 | unsigned uOpenFlags, PVDINTERFACE pVDIfsOperation,
|
---|
764 | PVDINTERFACE pDstVDIfsImage,
|
---|
765 | PVDINTERFACE pDstVDIfsOperation);
|
---|
766 |
|
---|
767 | /**
|
---|
768 | * Optimizes the storage consumption of an image. Typically the unused blocks
|
---|
769 | * have to be wiped with zeroes to achieve a substantial reduced storage use.
|
---|
770 | * Another optimization done is reordering the image blocks, which can provide
|
---|
771 | * a significant performance boost, as reads and writes tend to use less random
|
---|
772 | * file offsets.
|
---|
773 | *
|
---|
774 | * @note Compaction is treated as a single operation with regard to thread
|
---|
775 | * synchronization, which means that it potentially blocks other activities for
|
---|
776 | * a long time. The complexity of compaction would grow even more if concurrent
|
---|
777 | * accesses have to be handled.
|
---|
778 | *
|
---|
779 | * @return VBox status code.
|
---|
780 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
781 | * @return VERR_VD_IMAGE_READ_ONLY if image is not writable.
|
---|
782 | * @return VERR_NOT_SUPPORTED if this kind of image can be compacted, but
|
---|
783 | * this isn't supported yet.
|
---|
784 | * @param pDisk Pointer to HDD container.
|
---|
785 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
786 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
787 | */
|
---|
788 | VBOXDDU_DECL(int) VDCompact(PVBOXHDD pDisk, unsigned nImage,
|
---|
789 | PVDINTERFACE pVDIfsOperation);
|
---|
790 |
|
---|
791 | /**
|
---|
792 | * Resizes the given disk image to the given size.
|
---|
793 | *
|
---|
794 | * @return VBox status
|
---|
795 | * @return VERR_VD_IMAGE_READ_ONLY if image is not writable.
|
---|
796 | * @return VERR_NOT_SUPPORTED if this kind of image can be compacted, but
|
---|
797 | *
|
---|
798 | * @param pDisk Pointer to the HDD container.
|
---|
799 | * @param cbSize New size of the image.
|
---|
800 | * @param pPCHSGeometry Pointer to the new physical disk geometry <= (16383,16,63). Not NULL.
|
---|
801 | * @param pLCHSGeometry Pointer to the new logical disk geometry <= (x,255,63). Not NULL.
|
---|
802 | * @param pVDIfsOperation Pointer to the per-operation VD interface list.
|
---|
803 | */
|
---|
804 | VBOXDDU_DECL(int) VDResize(PVBOXHDD pDisk, uint64_t cbSize,
|
---|
805 | PCVDGEOMETRY pPCHSGeometry,
|
---|
806 | PCVDGEOMETRY pLCHSGeometry,
|
---|
807 | PVDINTERFACE pVDIfsOperation);
|
---|
808 |
|
---|
809 | /**
|
---|
810 | * Closes the last opened image file in HDD container.
|
---|
811 | * If previous image file was opened in read-only mode (the normal case) and
|
---|
812 | * the last opened image is in read-write mode then the previous image will be
|
---|
813 | * reopened in read/write mode.
|
---|
814 | *
|
---|
815 | * @return VBox status code.
|
---|
816 | * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
|
---|
817 | * @param pDisk Pointer to HDD container.
|
---|
818 | * @param fDelete If true, delete the image from the host disk.
|
---|
819 | */
|
---|
820 | VBOXDDU_DECL(int) VDClose(PVBOXHDD pDisk, bool fDelete);
|
---|
821 |
|
---|
822 | /**
|
---|
823 | * Closes the currently opened cache image file in HDD container.
|
---|
824 | *
|
---|
825 | * @return VBox status code.
|
---|
826 | * @return VERR_VD_NOT_OPENED if no cache is opened in HDD container.
|
---|
827 | * @param pDisk Pointer to HDD container.
|
---|
828 | * @param fDelete If true, delete the image from the host disk.
|
---|
829 | */
|
---|
830 | VBOXDDU_DECL(int) VDCacheClose(PVBOXHDD pDisk, bool fDelete);
|
---|
831 |
|
---|
832 | /**
|
---|
833 | * Closes all opened image files in HDD container.
|
---|
834 | *
|
---|
835 | * @return VBox status code.
|
---|
836 | * @param pDisk Pointer to HDD container.
|
---|
837 | */
|
---|
838 | VBOXDDU_DECL(int) VDCloseAll(PVBOXHDD pDisk);
|
---|
839 |
|
---|
840 | /**
|
---|
841 | * Read data from virtual HDD.
|
---|
842 | *
|
---|
843 | * @return VBox status code.
|
---|
844 | * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
|
---|
845 | * @param pDisk Pointer to HDD container.
|
---|
846 | * @param uOffset Offset of first reading byte from start of disk.
|
---|
847 | * Must be aligned to a sector boundary.
|
---|
848 | * @param pvBuffer Pointer to buffer for reading data.
|
---|
849 | * @param cbBuffer Number of bytes to read.
|
---|
850 | * Must be aligned to a sector boundary.
|
---|
851 | */
|
---|
852 | VBOXDDU_DECL(int) VDRead(PVBOXHDD pDisk, uint64_t uOffset, void *pvBuffer, size_t cbBuffer);
|
---|
853 |
|
---|
854 | /**
|
---|
855 | * Write data to virtual HDD.
|
---|
856 | *
|
---|
857 | * @return VBox status code.
|
---|
858 | * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
|
---|
859 | * @param pDisk Pointer to HDD container.
|
---|
860 | * @param uOffset Offset of first writing byte from start of disk.
|
---|
861 | * Must be aligned to a sector boundary.
|
---|
862 | * @param pvBuffer Pointer to buffer for writing data.
|
---|
863 | * @param cbBuffer Number of bytes to write.
|
---|
864 | * Must be aligned to a sector boundary.
|
---|
865 | */
|
---|
866 | VBOXDDU_DECL(int) VDWrite(PVBOXHDD pDisk, uint64_t uOffset, const void *pvBuffer, size_t cbBuffer);
|
---|
867 |
|
---|
868 | /**
|
---|
869 | * Make sure the on disk representation of a virtual HDD is up to date.
|
---|
870 | *
|
---|
871 | * @return VBox status code.
|
---|
872 | * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
|
---|
873 | * @param pDisk Pointer to HDD container.
|
---|
874 | */
|
---|
875 | VBOXDDU_DECL(int) VDFlush(PVBOXHDD pDisk);
|
---|
876 |
|
---|
877 | /**
|
---|
878 | * Get number of opened images in HDD container.
|
---|
879 | *
|
---|
880 | * @return Number of opened images for HDD container. 0 if no images have been opened.
|
---|
881 | * @param pDisk Pointer to HDD container.
|
---|
882 | */
|
---|
883 | VBOXDDU_DECL(unsigned) VDGetCount(PVBOXHDD pDisk);
|
---|
884 |
|
---|
885 | /**
|
---|
886 | * Get read/write mode of HDD container.
|
---|
887 | *
|
---|
888 | * @return Virtual disk ReadOnly status.
|
---|
889 | * @return true if no image is opened in HDD container.
|
---|
890 | * @param pDisk Pointer to HDD container.
|
---|
891 | */
|
---|
892 | VBOXDDU_DECL(bool) VDIsReadOnly(PVBOXHDD pDisk);
|
---|
893 |
|
---|
894 | /**
|
---|
895 | * Get total capacity of an image in HDD container.
|
---|
896 | *
|
---|
897 | * @return Virtual disk size in bytes.
|
---|
898 | * @return 0 if image with specified number was not opened.
|
---|
899 | * @param pDisk Pointer to HDD container.
|
---|
900 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
901 | */
|
---|
902 | VBOXDDU_DECL(uint64_t) VDGetSize(PVBOXHDD pDisk, unsigned nImage);
|
---|
903 |
|
---|
904 | /**
|
---|
905 | * Get total file size of an image in HDD container.
|
---|
906 | *
|
---|
907 | * @return Virtual disk size in bytes.
|
---|
908 | * @return 0 if image with specified number was not opened.
|
---|
909 | * @param pDisk Pointer to HDD container.
|
---|
910 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
911 | */
|
---|
912 | VBOXDDU_DECL(uint64_t) VDGetFileSize(PVBOXHDD pDisk, unsigned nImage);
|
---|
913 |
|
---|
914 | /**
|
---|
915 | * Get virtual disk PCHS geometry of an image in HDD container.
|
---|
916 | *
|
---|
917 | * @return VBox status code.
|
---|
918 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
919 | * @return VERR_VD_GEOMETRY_NOT_SET if no geometry present in the HDD container.
|
---|
920 | * @param pDisk Pointer to HDD container.
|
---|
921 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
922 | * @param pPCHSGeometry Where to store PCHS geometry. Not NULL.
|
---|
923 | */
|
---|
924 | VBOXDDU_DECL(int) VDGetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
|
---|
925 | PVDGEOMETRY pPCHSGeometry);
|
---|
926 |
|
---|
927 | /**
|
---|
928 | * Store virtual disk PCHS geometry of an image in HDD container.
|
---|
929 | *
|
---|
930 | * @return VBox status code.
|
---|
931 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
932 | * @param pDisk Pointer to HDD container.
|
---|
933 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
934 | * @param pPCHSGeometry Where to load PCHS geometry from. Not NULL.
|
---|
935 | */
|
---|
936 | VBOXDDU_DECL(int) VDSetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
|
---|
937 | PCVDGEOMETRY pPCHSGeometry);
|
---|
938 |
|
---|
939 | /**
|
---|
940 | * Get virtual disk LCHS geometry of an image in HDD container.
|
---|
941 | *
|
---|
942 | * @return VBox status code.
|
---|
943 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
944 | * @return VERR_VD_GEOMETRY_NOT_SET if no geometry present in the HDD container.
|
---|
945 | * @param pDisk Pointer to HDD container.
|
---|
946 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
947 | * @param pLCHSGeometry Where to store LCHS geometry. Not NULL.
|
---|
948 | */
|
---|
949 | VBOXDDU_DECL(int) VDGetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
|
---|
950 | PVDGEOMETRY pLCHSGeometry);
|
---|
951 |
|
---|
952 | /**
|
---|
953 | * Store virtual disk LCHS geometry of an image in HDD container.
|
---|
954 | *
|
---|
955 | * @return VBox status code.
|
---|
956 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
957 | * @param pDisk Pointer to HDD container.
|
---|
958 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
959 | * @param pLCHSGeometry Where to load LCHS geometry from. Not NULL.
|
---|
960 | */
|
---|
961 | VBOXDDU_DECL(int) VDSetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
|
---|
962 | PCVDGEOMETRY pLCHSGeometry);
|
---|
963 |
|
---|
964 | /**
|
---|
965 | * Get version of image in HDD container.
|
---|
966 | *
|
---|
967 | * @return VBox status code.
|
---|
968 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
969 | * @param pDisk Pointer to HDD container.
|
---|
970 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
971 | * @param puVersion Where to store the image version.
|
---|
972 | */
|
---|
973 | VBOXDDU_DECL(int) VDGetVersion(PVBOXHDD pDisk, unsigned nImage,
|
---|
974 | unsigned *puVersion);
|
---|
975 |
|
---|
976 | /**
|
---|
977 | * List the capabilities of image backend in HDD container.
|
---|
978 | *
|
---|
979 | * @return VBox status code.
|
---|
980 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
981 | * @param pDisk Pointer to the HDD container.
|
---|
982 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
983 | * @param pbackendInfo Where to store the backend information.
|
---|
984 | */
|
---|
985 | VBOXDDU_DECL(int) VDBackendInfoSingle(PVBOXHDD pDisk, unsigned nImage,
|
---|
986 | PVDBACKENDINFO pBackendInfo);
|
---|
987 |
|
---|
988 | /**
|
---|
989 | * Get flags of image in HDD container.
|
---|
990 | *
|
---|
991 | * @return VBox status code.
|
---|
992 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
993 | * @param pDisk Pointer to HDD container.
|
---|
994 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
995 | * @param puImageFlags Where to store the image flags.
|
---|
996 | */
|
---|
997 | VBOXDDU_DECL(int) VDGetImageFlags(PVBOXHDD pDisk, unsigned nImage, unsigned *puImageFlags);
|
---|
998 |
|
---|
999 | /**
|
---|
1000 | * Get open flags of image in HDD container.
|
---|
1001 | *
|
---|
1002 | * @return VBox status code.
|
---|
1003 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1004 | * @param pDisk Pointer to HDD container.
|
---|
1005 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1006 | * @param puOpenFlags Where to store the image open flags.
|
---|
1007 | */
|
---|
1008 | VBOXDDU_DECL(int) VDGetOpenFlags(PVBOXHDD pDisk, unsigned nImage,
|
---|
1009 | unsigned *puOpenFlags);
|
---|
1010 |
|
---|
1011 | /**
|
---|
1012 | * Set open flags of image in HDD container.
|
---|
1013 | * This operation may cause file locking changes and/or files being reopened.
|
---|
1014 | * Note that in case of unrecoverable error all images in HDD container will be closed.
|
---|
1015 | *
|
---|
1016 | * @return VBox status code.
|
---|
1017 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1018 | * @param pDisk Pointer to HDD container.
|
---|
1019 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1020 | * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
|
---|
1021 | */
|
---|
1022 | VBOXDDU_DECL(int) VDSetOpenFlags(PVBOXHDD pDisk, unsigned nImage,
|
---|
1023 | unsigned uOpenFlags);
|
---|
1024 |
|
---|
1025 | /**
|
---|
1026 | * Get base filename of image in HDD container. Some image formats use
|
---|
1027 | * other filenames as well, so don't use this for anything but informational
|
---|
1028 | * purposes.
|
---|
1029 | *
|
---|
1030 | * @return VBox status code.
|
---|
1031 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1032 | * @return VERR_BUFFER_OVERFLOW if pszFilename buffer too small to hold filename.
|
---|
1033 | * @param pDisk Pointer to HDD container.
|
---|
1034 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1035 | * @param pszFilename Where to store the image file name.
|
---|
1036 | * @param cbFilename Size of buffer pszFilename points to.
|
---|
1037 | */
|
---|
1038 | VBOXDDU_DECL(int) VDGetFilename(PVBOXHDD pDisk, unsigned nImage,
|
---|
1039 | char *pszFilename, unsigned cbFilename);
|
---|
1040 |
|
---|
1041 | /**
|
---|
1042 | * Get the comment line of image in HDD container.
|
---|
1043 | *
|
---|
1044 | * @return VBox status code.
|
---|
1045 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1046 | * @return VERR_BUFFER_OVERFLOW if pszComment buffer too small to hold comment text.
|
---|
1047 | * @param pDisk Pointer to HDD container.
|
---|
1048 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1049 | * @param pszComment Where to store the comment string of image. NULL is ok.
|
---|
1050 | * @param cbComment The size of pszComment buffer. 0 is ok.
|
---|
1051 | */
|
---|
1052 | VBOXDDU_DECL(int) VDGetComment(PVBOXHDD pDisk, unsigned nImage,
|
---|
1053 | char *pszComment, unsigned cbComment);
|
---|
1054 |
|
---|
1055 | /**
|
---|
1056 | * Changes the comment line of image in HDD container.
|
---|
1057 | *
|
---|
1058 | * @return VBox status code.
|
---|
1059 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1060 | * @param pDisk Pointer to HDD container.
|
---|
1061 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1062 | * @param pszComment New comment string (UTF-8). NULL is allowed to reset the comment.
|
---|
1063 | */
|
---|
1064 | VBOXDDU_DECL(int) VDSetComment(PVBOXHDD pDisk, unsigned nImage,
|
---|
1065 | const char *pszComment);
|
---|
1066 |
|
---|
1067 | /**
|
---|
1068 | * Get UUID of image in HDD container.
|
---|
1069 | *
|
---|
1070 | * @return VBox status code.
|
---|
1071 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1072 | * @param pDisk Pointer to HDD container.
|
---|
1073 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1074 | * @param pUuid Where to store the image UUID.
|
---|
1075 | */
|
---|
1076 | VBOXDDU_DECL(int) VDGetUuid(PVBOXHDD pDisk, unsigned nImage, PRTUUID pUuid);
|
---|
1077 |
|
---|
1078 | /**
|
---|
1079 | * Set the image's UUID. Should not be used by normal applications.
|
---|
1080 | *
|
---|
1081 | * @return VBox status code.
|
---|
1082 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1083 | * @param pDisk Pointer to HDD container.
|
---|
1084 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1085 | * @param pUuid New UUID of the image. If NULL, a new UUID is created.
|
---|
1086 | */
|
---|
1087 | VBOXDDU_DECL(int) VDSetUuid(PVBOXHDD pDisk, unsigned nImage, PCRTUUID pUuid);
|
---|
1088 |
|
---|
1089 | /**
|
---|
1090 | * Get last modification UUID of image in HDD container.
|
---|
1091 | *
|
---|
1092 | * @return VBox status code.
|
---|
1093 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1094 | * @param pDisk Pointer to HDD container.
|
---|
1095 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1096 | * @param pUuid Where to store the image modification UUID.
|
---|
1097 | */
|
---|
1098 | VBOXDDU_DECL(int) VDGetModificationUuid(PVBOXHDD pDisk, unsigned nImage,
|
---|
1099 | PRTUUID pUuid);
|
---|
1100 |
|
---|
1101 | /**
|
---|
1102 | * Set the image's last modification UUID. Should not be used by normal applications.
|
---|
1103 | *
|
---|
1104 | * @return VBox status code.
|
---|
1105 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1106 | * @param pDisk Pointer to HDD container.
|
---|
1107 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1108 | * @param pUuid New modification UUID of the image. If NULL, a new UUID is created.
|
---|
1109 | */
|
---|
1110 | VBOXDDU_DECL(int) VDSetModificationUuid(PVBOXHDD pDisk, unsigned nImage,
|
---|
1111 | PCRTUUID pUuid);
|
---|
1112 |
|
---|
1113 | /**
|
---|
1114 | * Get parent UUID of image in HDD container.
|
---|
1115 | *
|
---|
1116 | * @return VBox status code.
|
---|
1117 | * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
|
---|
1118 | * @param pDisk Pointer to HDD container.
|
---|
1119 | * @param nImage Image number, counts from 0. 0 is always base image of the container.
|
---|
1120 | * @param pUuid Where to store the parent image UUID.
|
---|
1121 | */
|
---|
1122 | VBOXDDU_DECL(int) VDGetParentUuid(PVBOXHDD pDisk, unsigned nImage,
|
---|
1123 | PRTUUID pUuid);
|
---|
1124 |
|
---|
1125 | /**
|
---|
1126 | * Set the image's parent UUID. Should not be used by normal applications.
|
---|
1127 | *
|
---|
1128 | * @return VBox status code.
|
---|
1129 | * @param pDisk Pointer to HDD container.
|
---|
1130 | * @param nImage Image number, counts from 0. 0 is always base image of container.
|
---|
1131 | * @param pUuid New parent UUID of the image. If NULL, a new UUID is created.
|
---|
1132 | */
|
---|
1133 | VBOXDDU_DECL(int) VDSetParentUuid(PVBOXHDD pDisk, unsigned nImage,
|
---|
1134 | PCRTUUID pUuid);
|
---|
1135 |
|
---|
1136 |
|
---|
1137 | /**
|
---|
1138 | * Debug helper - dumps all opened images in HDD container into the log file.
|
---|
1139 | *
|
---|
1140 | * @param pDisk Pointer to HDD container.
|
---|
1141 | */
|
---|
1142 | VBOXDDU_DECL(void) VDDumpImages(PVBOXHDD pDisk);
|
---|
1143 |
|
---|
1144 |
|
---|
1145 | /**
|
---|
1146 | * Discards unused ranges given as a list.
|
---|
1147 | *
|
---|
1148 | * @return VBox status code.
|
---|
1149 | * @param pDisk Pointer to HDD container.
|
---|
1150 | * @param paRanges The array of ranges to discard.
|
---|
1151 | * @param cRanges Number of entries in the array.
|
---|
1152 | *
|
---|
1153 | * @note In contrast to VDCompact() the ranges are always discarded even if they
|
---|
1154 | * appear to contain data. This method is mainly used to implement TRIM support.
|
---|
1155 | */
|
---|
1156 | VBOXDDU_DECL(int) VDDiscardRanges(PVBOXHDD pDisk, PCRTRANGE paRanges, unsigned cRanges);
|
---|
1157 |
|
---|
1158 |
|
---|
1159 | /**
|
---|
1160 | * Start an asynchronous read request.
|
---|
1161 | *
|
---|
1162 | * @return VBox status code.
|
---|
1163 | * @param pDisk Pointer to the HDD container.
|
---|
1164 | * @param uOffset The offset of the virtual disk to read from.
|
---|
1165 | * @param cbRead How many bytes to read.
|
---|
1166 | * @param pcSgBuf Pointer to the S/G buffer to read into.
|
---|
1167 | * @param pfnComplete Completion callback.
|
---|
1168 | * @param pvUser User data which is passed on completion
|
---|
1169 | */
|
---|
1170 | VBOXDDU_DECL(int) VDAsyncRead(PVBOXHDD pDisk, uint64_t uOffset, size_t cbRead,
|
---|
1171 | PCRTSGBUF pcSgBuf,
|
---|
1172 | PFNVDASYNCTRANSFERCOMPLETE pfnComplete,
|
---|
1173 | void *pvUser1, void *pvUser2);
|
---|
1174 |
|
---|
1175 |
|
---|
1176 | /**
|
---|
1177 | * Start an asynchronous write request.
|
---|
1178 | *
|
---|
1179 | * @return VBox status code.
|
---|
1180 | * @param pDisk Pointer to the HDD container.
|
---|
1181 | * @param uOffset The offset of the virtual disk to write to.
|
---|
1182 | * @param cbWrtie How many bytes to write.
|
---|
1183 | * @param pcSgBuf Pointer to the S/G buffer to write from.
|
---|
1184 | * @param pfnComplete Completion callback.
|
---|
1185 | * @param pvUser User data which is passed on completion.
|
---|
1186 | */
|
---|
1187 | VBOXDDU_DECL(int) VDAsyncWrite(PVBOXHDD pDisk, uint64_t uOffset, size_t cbWrite,
|
---|
1188 | PCRTSGBUF pcSgBuf,
|
---|
1189 | PFNVDASYNCTRANSFERCOMPLETE pfnComplete,
|
---|
1190 | void *pvUser1, void *pvUser2);
|
---|
1191 |
|
---|
1192 |
|
---|
1193 | /**
|
---|
1194 | * Start an asynchronous flush request.
|
---|
1195 | *
|
---|
1196 | * @return VBox status code.
|
---|
1197 | * @param pDisk Pointer to the HDD container.
|
---|
1198 | * @param pfnComplete Completion callback.
|
---|
1199 | * @param pvUser User data which is passed on completion.
|
---|
1200 | */
|
---|
1201 | VBOXDDU_DECL(int) VDAsyncFlush(PVBOXHDD pDisk,
|
---|
1202 | PFNVDASYNCTRANSFERCOMPLETE pfnComplete,
|
---|
1203 | void *pvUser1, void *pvUser2);
|
---|
1204 |
|
---|
1205 | /**
|
---|
1206 | * Start an asynchronous discard request.
|
---|
1207 | *
|
---|
1208 | * @return VBox status code.
|
---|
1209 | * @param pDisk Pointer to HDD container.
|
---|
1210 | * @param paRanges The array of ranges to discard.
|
---|
1211 | * @param cRanges Number of entries in the array.
|
---|
1212 | * @param pfnComplete Completion callback.
|
---|
1213 | * @param pvUser1 User data which is passed on completion.
|
---|
1214 | * @param pvUser2 User data which is passed on completion.
|
---|
1215 | */
|
---|
1216 | VBOXDDU_DECL(int) VDAsyncDiscardRanges(PVBOXHDD pDisk, PCRTRANGE paRanges, unsigned cRanges,
|
---|
1217 | PFNVDASYNCTRANSFERCOMPLETE pfnComplete,
|
---|
1218 | void *pvUser1, void *pvUser);
|
---|
1219 |
|
---|
1220 | /**
|
---|
1221 | * Tries to repair a corrupted image.
|
---|
1222 | *
|
---|
1223 | * @return VBox status code.
|
---|
1224 | * @retval VERR_VD_IMAGE_REPAIR_NOT_SUPPORTED if the backend does not support repairing the image.
|
---|
1225 | * @retval VERR_VD_IMAGE_REPAIR_IMPOSSIBLE if the corruption is to severe to repair the image.
|
---|
1226 | * @param pVDIfsDisk Pointer to the per-disk VD interface list.
|
---|
1227 | * @param pVDIfsImage Pointer to the per-image VD interface list.
|
---|
1228 | * @param pszFilename Name of the image file to repair.
|
---|
1229 | * @param pszFormat The backend to use.
|
---|
1230 | * @param fFlags Combination of the VD_REPAIR_* flags.
|
---|
1231 | */
|
---|
1232 | VBOXDDU_DECL(int) VDRepair(PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
|
---|
1233 | const char *pszFilename, const char *pszBackend,
|
---|
1234 | uint32_t fFlags);
|
---|
1235 |
|
---|
1236 | /**
|
---|
1237 | * Create a VFS file handle from the given HDD container.
|
---|
1238 | *
|
---|
1239 | * @return VBox status code.
|
---|
1240 | * @param pDisk Pointer to HDD container.
|
---|
1241 | * @param fFlags Combination of the VD_VFSFILE_* flags.
|
---|
1242 | * @param phVfsFile Where to stoer the handle to the VFS file on success.
|
---|
1243 | */
|
---|
1244 | VBOXDDU_DECL(int) VDCreateVfsFileFromDisk(PVBOXHDD pDisk, uint32_t fFlags,
|
---|
1245 | PRTVFSFILE phVfsFile);
|
---|
1246 |
|
---|
1247 | RT_C_DECLS_END
|
---|
1248 |
|
---|
1249 | /** @} */
|
---|
1250 |
|
---|
1251 | #endif
|
---|