VirtualBox

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

Last change on this file since 59294 was 59294, checked in by vboxsync, 9 years ago

Another try

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