VirtualBox

source: vbox/trunk/include/VBox/vd.h@ 54540

Last change on this file since 54540 was 54340, checked in by vboxsync, 10 years ago

Storage/VD: Allow different filter chains for reads and writes (required by disk image encryption to encrypt images afterwards)

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette