VirtualBox

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

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

Frontends/VBoxManage+Storage/VMDK: introduce support for creating raw partition VMDK images with readonly partitions (indicated by a 'r' suffix after the partition number)

  • 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 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 pEntries 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 pEntries 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 pszFilename Name of the differencing cache file to create.
734 * @param cbSize Maximum size of the cache.
735 * @param uImageFlags Flags specifying special cache features.
736 * @param pszComment Pointer to image comment. NULL is ok.
737 * @param pUuid New UUID of the image. If NULL, a new UUID is created.
738 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
739 * @param pVDIfsCache Pointer to the per-cache VD interface list.
740 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
741 */
742VBOXDDU_DECL(int) VDCreateCache(PVBOXHDD pDisk, const char *pszBackend,
743 const char *pszFilename, uint64_t cbSize,
744 unsigned uImageFlags, const char *pszComment,
745 PCRTUUID pUuid, unsigned uOpenFlags,
746 PVDINTERFACE pVDIfsCache, PVDINTERFACE pVDIfsOperation);
747
748/**
749 * Merges two images (not necessarily with direct parent/child relationship).
750 * As a side effect the source image and potentially the other images which
751 * are also merged to the destination are deleted from both the disk and the
752 * images in the HDD container.
753 *
754 * @return VBox status code.
755 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
756 * @param pDisk Pointer to HDD container.
757 * @param nImageFrom Image number to merge from, counts from 0. 0 is always base image of container.
758 * @param nImageTo Image number to merge to, counts from 0. 0 is always base image of container.
759 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
760 */
761VBOXDDU_DECL(int) VDMerge(PVBOXHDD pDisk, unsigned nImageFrom,
762 unsigned nImageTo, PVDINTERFACE pVDIfsOperation);
763
764/**
765 * Copies an image from one HDD container to another - extended version.
766 * The copy is opened in the target HDD container.
767 * It is possible to convert between different image formats, because the
768 * backend for the destination may be different from the source.
769 * If both the source and destination reference the same HDD container,
770 * then the image is moved (by copying/deleting or renaming) to the new location.
771 * The source container is unchanged if the move operation fails, otherwise
772 * the image at the new location is opened in the same way as the old one was.
773 *
774 * @note The read/write accesses across disks are not synchronized, just the
775 * accesses to each disk. Once there is a use case which requires a defined
776 * read/write behavior in this situation this needs to be extended.
777 *
778 * @return VBox status code.
779 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
780 * @param pDiskFrom Pointer to source HDD container.
781 * @param nImage Image number, counts from 0. 0 is always base image of container.
782 * @param pDiskTo Pointer to destination HDD container.
783 * @param pszBackend Name of the image file backend to use (may be NULL to use the same as the source, case insensitive).
784 * @param pszFilename New name of the image (may be NULL to specify that the
785 * copy destination is the destination container, or
786 * if pDiskFrom == pDiskTo, i.e. when moving).
787 * @param fMoveByRename If true, attempt to perform a move by renaming (if successful the new size is ignored).
788 * @param cbSize New image size (0 means leave unchanged).
789 * @param nImageSameFrom The number of the last image in the source chain having the same content as the
790 * image in the destination chain given by nImageSameTo or
791 * VD_IMAGE_CONTENT_UNKNOWN to indicate that the content of both containers is unknown.
792 * See the notes for further information.
793 * @param nImageSameTo The number of the last image in the destination chain having the same content as the
794 * image in the source chain given by nImageSameFrom or
795 * VD_IMAGE_CONTENT_UNKNOWN to indicate that the content of both containers is unknown.
796 * See the notes for further information.
797 * @param uImageFlags Flags specifying special destination image features.
798 * @param pDstUuid New UUID of the destination image. If NULL, a new UUID is created.
799 * This parameter is used if and only if a true copy is created.
800 * In all rename/move cases or copy to existing image cases the modification UUIDs are copied over.
801 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
802 * Only used if the destination image is created.
803 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
804 * @param pDstVDIfsImage Pointer to the per-image VD interface list, for the
805 * destination image.
806 * @param pDstVDIfsOperation Pointer to the per-operation VD interface list,
807 * for the destination operation.
808 *
809 * @note Using nImageSameFrom and nImageSameTo can lead to a significant speedup
810 * when copying an image but can also lead to a corrupted copy if used incorrectly.
811 * It is mainly useful when cloning a chain of images and it is known that
812 * the virtual disk content of the two chains is exactly the same upto a certain image.
813 * Example:
814 * Imagine the chain of images which consist of a base and one diff image.
815 * Copying the chain starts with the base image. When copying the first
816 * diff image VDCopy() will read the data from the diff of the source chain
817 * and probably from the base image again in case the diff doesn't has data
818 * for the block. However the block will be optimized away because VDCopy()
819 * reads data from the base image of the destination chain compares the to
820 * and suppresses the write because the data is unchanged.
821 * For a lot of diff images this will be a huge waste of I/O bandwidth if
822 * the diff images contain only few changes.
823 * Because it is known that the base image of the source and the destination chain
824 * have the same content it is enough to check the diff image for changed data
825 * and copy it to the destination diff image which is achieved with
826 * nImageSameFrom and nImageSameTo. Setting both to 0 can suppress a lot of I/O.
827 */
828VBOXDDU_DECL(int) VDCopyEx(PVBOXHDD pDiskFrom, unsigned nImage, PVBOXHDD pDiskTo,
829 const char *pszBackend, const char *pszFilename,
830 bool fMoveByRename, uint64_t cbSize,
831 unsigned nImageFromSame, unsigned nImageToSame,
832 unsigned uImageFlags, PCRTUUID pDstUuid,
833 unsigned uOpenFlags, PVDINTERFACE pVDIfsOperation,
834 PVDINTERFACE pDstVDIfsImage,
835 PVDINTERFACE pDstVDIfsOperation);
836
837/**
838 * Copies an image from one HDD container to another.
839 * The copy is opened in the target HDD container.
840 * It is possible to convert between different image formats, because the
841 * backend for the destination may be different from the source.
842 * If both the source and destination reference the same HDD container,
843 * then the image is moved (by copying/deleting or renaming) to the new location.
844 * The source container is unchanged if the move operation fails, otherwise
845 * the image at the new location is opened in the same way as the old one was.
846 *
847 * @note The read/write accesses across disks are not synchronized, just the
848 * accesses to each disk. Once there is a use case which requires a defined
849 * read/write behavior in this situation this needs to be extended.
850 *
851 * @return VBox status code.
852 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
853 * @param pDiskFrom Pointer to source HDD container.
854 * @param nImage Image number, counts from 0. 0 is always base image of container.
855 * @param pDiskTo Pointer to destination HDD container.
856 * @param pszBackend Name of the image file backend to use (may be NULL to use the same as the source, case insensitive).
857 * @param pszFilename New name of the image (may be NULL to specify that the
858 * copy destination is the destination container, or
859 * if pDiskFrom == pDiskTo, i.e. when moving).
860 * @param fMoveByRename If true, attempt to perform a move by renaming (if successful the new size is ignored).
861 * @param cbSize New image size (0 means leave unchanged).
862 * @param uImageFlags Flags specifying special destination image features.
863 * @param pDstUuid New UUID of the destination image. If NULL, a new UUID is created.
864 * This parameter is used if and only if a true copy is created.
865 * In all rename/move cases or copy to existing image cases the modification UUIDs are copied over.
866 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
867 * Only used if the destination image is created.
868 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
869 * @param pDstVDIfsImage Pointer to the per-image VD interface list, for the
870 * destination image.
871 * @param pDstVDIfsOperation Pointer to the per-operation VD interface list,
872 * for the destination operation.
873 */
874VBOXDDU_DECL(int) VDCopy(PVBOXHDD pDiskFrom, unsigned nImage, PVBOXHDD pDiskTo,
875 const char *pszBackend, const char *pszFilename,
876 bool fMoveByRename, uint64_t cbSize,
877 unsigned uImageFlags, PCRTUUID pDstUuid,
878 unsigned uOpenFlags, PVDINTERFACE pVDIfsOperation,
879 PVDINTERFACE pDstVDIfsImage,
880 PVDINTERFACE pDstVDIfsOperation);
881
882/**
883 * Optimizes the storage consumption of an image. Typically the unused blocks
884 * have to be wiped with zeroes to achieve a substantial reduced storage use.
885 * Another optimization done is reordering the image blocks, which can provide
886 * a significant performance boost, as reads and writes tend to use less random
887 * file offsets.
888 *
889 * @note Compaction is treated as a single operation with regard to thread
890 * synchronization, which means that it potentially blocks other activities for
891 * a long time. The complexity of compaction would grow even more if concurrent
892 * accesses have to be handled.
893 *
894 * @return VBox status code.
895 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
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 * this isn't supported yet.
899 * @param pDisk Pointer to HDD container.
900 * @param nImage Image number, counts from 0. 0 is always base image of container.
901 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
902 */
903VBOXDDU_DECL(int) VDCompact(PVBOXHDD pDisk, unsigned nImage,
904 PVDINTERFACE pVDIfsOperation);
905
906/**
907 * Resizes the given disk image to the given size. It is OK if there are
908 * multiple images open in the container. In this case the last disk image
909 * will be resized.
910 *
911 * @return VBox status
912 * @return VERR_VD_IMAGE_READ_ONLY if image is not writable.
913 * @return VERR_NOT_SUPPORTED if this kind of image can't be compacted.
914 *
915 * @param pDisk Pointer to the HDD container.
916 * @param cbSize New size of the image.
917 * @param pPCHSGeometry Pointer to the new physical disk geometry <= (16383,16,63). Not NULL.
918 * @param pLCHSGeometry Pointer to the new logical disk geometry <= (x,255,63). Not NULL.
919 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
920 */
921VBOXDDU_DECL(int) VDResize(PVBOXHDD pDisk, uint64_t cbSize,
922 PCVDGEOMETRY pPCHSGeometry,
923 PCVDGEOMETRY pLCHSGeometry,
924 PVDINTERFACE pVDIfsOperation);
925
926/**
927 * Prepares the given disk for use by the added filters. This applies to all
928 * opened images in the chain which might be opened read/write temporary.
929 *
930 * @return VBox status code.
931 *
932 * @param pDisk Pointer to the HDD container.
933 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
934 */
935VBOXDDU_DECL(int) VDPrepareWithFilters(PVBOXHDD pDisk, PVDINTERFACE pVDIfsOperation);
936
937/**
938 * Closes the last opened image file in HDD container.
939 * If previous image file was opened in read-only mode (the normal case) and
940 * the last opened image is in read-write mode then the previous image will be
941 * reopened in read/write mode.
942 *
943 * @return VBox status code.
944 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
945 * @param pDisk Pointer to HDD container.
946 * @param fDelete If true, delete the image from the host disk.
947 */
948VBOXDDU_DECL(int) VDClose(PVBOXHDD pDisk, bool fDelete);
949
950/**
951 * Removes the last added filter in the HDD container from the specified chain.
952 *
953 * @return VBox status code.
954 * @retval VERR_VD_NOT_OPENED if no filter is present for the disk.
955 * @param pDisk Pointer to HDD container.
956 * @param fFlags Combination of VD_FILTER_FLAGS_* defines.
957 */
958VBOXDDU_DECL(int) VDFilterRemove(PVBOXHDD pDisk, uint32_t fFlags);
959
960/**
961 * Closes the currently opened cache image file in HDD container.
962 *
963 * @return VBox status code.
964 * @return VERR_VD_NOT_OPENED if no cache is opened in HDD container.
965 * @param pDisk Pointer to HDD container.
966 * @param fDelete If true, delete the image from the host disk.
967 */
968VBOXDDU_DECL(int) VDCacheClose(PVBOXHDD pDisk, bool fDelete);
969
970/**
971 * Closes all opened image files in HDD container.
972 *
973 * @return VBox status code.
974 * @param pDisk Pointer to HDD container.
975 */
976VBOXDDU_DECL(int) VDCloseAll(PVBOXHDD pDisk);
977
978/**
979 * Removes all filters of the given HDD container.
980 *
981 * @return VBox status code.
982 * @param pDisk Pointer to HDD container.
983 */
984VBOXDDU_DECL(int) VDFilterRemoveAll(PVBOXHDD pDisk);
985
986/**
987 * Read data from virtual HDD.
988 *
989 * @return VBox status code.
990 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
991 * @param pDisk Pointer to HDD container.
992 * @param uOffset Offset of first reading byte from start of disk.
993 * Must be aligned to a sector boundary.
994 * @param pvBuffer Pointer to buffer for reading data.
995 * @param cbBuffer Number of bytes to read.
996 * Must be aligned to a sector boundary.
997 */
998VBOXDDU_DECL(int) VDRead(PVBOXHDD pDisk, uint64_t uOffset, void *pvBuffer, size_t cbBuffer);
999
1000/**
1001 * Write data to virtual HDD.
1002 *
1003 * @return VBox status code.
1004 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1005 * @param pDisk Pointer to HDD container.
1006 * @param uOffset Offset of first writing byte from start of disk.
1007 * Must be aligned to a sector boundary.
1008 * @param pvBuffer Pointer to buffer for writing data.
1009 * @param cbBuffer Number of bytes to write.
1010 * Must be aligned to a sector boundary.
1011 */
1012VBOXDDU_DECL(int) VDWrite(PVBOXHDD pDisk, uint64_t uOffset, const void *pvBuffer, size_t cbBuffer);
1013
1014/**
1015 * Make sure the on disk representation of a virtual HDD is up to date.
1016 *
1017 * @return VBox status code.
1018 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1019 * @param pDisk Pointer to HDD container.
1020 */
1021VBOXDDU_DECL(int) VDFlush(PVBOXHDD pDisk);
1022
1023/**
1024 * Get number of opened images in HDD container.
1025 *
1026 * @return Number of opened images for HDD container. 0 if no images have been opened.
1027 * @param pDisk Pointer to HDD container.
1028 */
1029VBOXDDU_DECL(unsigned) VDGetCount(PVBOXHDD pDisk);
1030
1031/**
1032 * Get read/write mode of HDD container.
1033 *
1034 * @return Virtual disk ReadOnly status.
1035 * @return true if no image is opened in HDD container.
1036 * @param pDisk Pointer to HDD container.
1037 */
1038VBOXDDU_DECL(bool) VDIsReadOnly(PVBOXHDD pDisk);
1039
1040/**
1041 * Get sector size of an image in HDD container.
1042 *
1043 * @return Virtual disk sector size in bytes.
1044 * @return 0 if image with specified number was not opened.
1045 * @param pDisk Pointer to HDD container.
1046 * @param nImage Image number, counts from 0. 0 is always base image of container.
1047 */
1048VBOXDDU_DECL(uint32_t) VDGetSectorSize(PVBOXHDD pDisk, unsigned nImage);
1049
1050/**
1051 * Get total capacity of an image in HDD container.
1052 *
1053 * @return Virtual disk size in bytes.
1054 * @return 0 if image with specified number was not opened.
1055 * @param pDisk Pointer to HDD container.
1056 * @param nImage Image number, counts from 0. 0 is always base image of container.
1057 */
1058VBOXDDU_DECL(uint64_t) VDGetSize(PVBOXHDD pDisk, unsigned nImage);
1059
1060/**
1061 * Get total file size of an image in HDD container.
1062 *
1063 * @return Virtual disk size in bytes.
1064 * @return 0 if image with specified number was not opened.
1065 * @param pDisk Pointer to HDD container.
1066 * @param nImage Image number, counts from 0. 0 is always base image of container.
1067 */
1068VBOXDDU_DECL(uint64_t) VDGetFileSize(PVBOXHDD pDisk, unsigned nImage);
1069
1070/**
1071 * Get virtual disk PCHS geometry of an image in HDD container.
1072 *
1073 * @return VBox status code.
1074 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1075 * @return VERR_VD_GEOMETRY_NOT_SET if no geometry present in the HDD container.
1076 * @param pDisk Pointer to HDD container.
1077 * @param nImage Image number, counts from 0. 0 is always base image of container.
1078 * @param pPCHSGeometry Where to store PCHS geometry. Not NULL.
1079 */
1080VBOXDDU_DECL(int) VDGetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1081 PVDGEOMETRY pPCHSGeometry);
1082
1083/**
1084 * Store virtual disk PCHS geometry of an image in HDD container.
1085 *
1086 * @return VBox status code.
1087 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
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 load PCHS geometry from. Not NULL.
1091 */
1092VBOXDDU_DECL(int) VDSetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1093 PCVDGEOMETRY pPCHSGeometry);
1094
1095/**
1096 * Get virtual disk LCHS geometry of an image in HDD container.
1097 *
1098 * @return VBox status code.
1099 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1100 * @return VERR_VD_GEOMETRY_NOT_SET if no geometry present in the HDD container.
1101 * @param pDisk Pointer to HDD container.
1102 * @param nImage Image number, counts from 0. 0 is always base image of container.
1103 * @param pLCHSGeometry Where to store LCHS geometry. Not NULL.
1104 */
1105VBOXDDU_DECL(int) VDGetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1106 PVDGEOMETRY pLCHSGeometry);
1107
1108/**
1109 * Store virtual disk LCHS geometry of an image in HDD container.
1110 *
1111 * @return VBox status code.
1112 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1113 * @param pDisk Pointer to HDD container.
1114 * @param nImage Image number, counts from 0. 0 is always base image of container.
1115 * @param pLCHSGeometry Where to load LCHS geometry from. Not NULL.
1116 */
1117VBOXDDU_DECL(int) VDSetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1118 PCVDGEOMETRY pLCHSGeometry);
1119
1120/**
1121 * Get version of image in HDD container.
1122 *
1123 * @return VBox status code.
1124 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1125 * @param pDisk Pointer to HDD container.
1126 * @param nImage Image number, counts from 0. 0 is always base image of container.
1127 * @param puVersion Where to store the image version.
1128 */
1129VBOXDDU_DECL(int) VDGetVersion(PVBOXHDD pDisk, unsigned nImage,
1130 unsigned *puVersion);
1131
1132/**
1133 * List the capabilities of image backend in HDD container.
1134 *
1135 * @return VBox status code.
1136 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1137 * @param pDisk Pointer to the HDD container.
1138 * @param nImage Image number, counts from 0. 0 is always base image of container.
1139 * @param pbackendInfo Where to store the backend information.
1140 */
1141VBOXDDU_DECL(int) VDBackendInfoSingle(PVBOXHDD pDisk, unsigned nImage,
1142 PVDBACKENDINFO pBackendInfo);
1143
1144/**
1145 * Get flags of image in HDD container.
1146 *
1147 * @return VBox status code.
1148 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1149 * @param pDisk Pointer to HDD container.
1150 * @param nImage Image number, counts from 0. 0 is always base image of container.
1151 * @param puImageFlags Where to store the image flags.
1152 */
1153VBOXDDU_DECL(int) VDGetImageFlags(PVBOXHDD pDisk, unsigned nImage, unsigned *puImageFlags);
1154
1155/**
1156 * Get open flags of image in HDD container.
1157 *
1158 * @return VBox status code.
1159 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1160 * @param pDisk Pointer to HDD container.
1161 * @param nImage Image number, counts from 0. 0 is always base image of container.
1162 * @param puOpenFlags Where to store the image open flags.
1163 */
1164VBOXDDU_DECL(int) VDGetOpenFlags(PVBOXHDD pDisk, unsigned nImage,
1165 unsigned *puOpenFlags);
1166
1167/**
1168 * Set open flags of image in HDD container.
1169 * This operation may cause file locking changes and/or files being reopened.
1170 * Note that in case of unrecoverable error all images in HDD container will be closed.
1171 *
1172 * @return VBox status code.
1173 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1174 * @param pDisk Pointer to HDD container.
1175 * @param nImage Image number, counts from 0. 0 is always base image of container.
1176 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
1177 */
1178VBOXDDU_DECL(int) VDSetOpenFlags(PVBOXHDD pDisk, unsigned nImage,
1179 unsigned uOpenFlags);
1180
1181/**
1182 * Get base filename of image in HDD container. Some image formats use
1183 * other filenames as well, so don't use this for anything but informational
1184 * purposes.
1185 *
1186 * @return VBox status code.
1187 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1188 * @return VERR_BUFFER_OVERFLOW if pszFilename buffer too small to hold filename.
1189 * @param pDisk Pointer to HDD container.
1190 * @param nImage Image number, counts from 0. 0 is always base image of container.
1191 * @param pszFilename Where to store the image file name.
1192 * @param cbFilename Size of buffer pszFilename points to.
1193 */
1194VBOXDDU_DECL(int) VDGetFilename(PVBOXHDD pDisk, unsigned nImage,
1195 char *pszFilename, unsigned cbFilename);
1196
1197/**
1198 * Get the comment line of image in HDD container.
1199 *
1200 * @return VBox status code.
1201 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1202 * @return VERR_BUFFER_OVERFLOW if pszComment buffer too small to hold comment text.
1203 * @param pDisk Pointer to HDD container.
1204 * @param nImage Image number, counts from 0. 0 is always base image of container.
1205 * @param pszComment Where to store the comment string of image. NULL is ok.
1206 * @param cbComment The size of pszComment buffer. 0 is ok.
1207 */
1208VBOXDDU_DECL(int) VDGetComment(PVBOXHDD pDisk, unsigned nImage,
1209 char *pszComment, unsigned cbComment);
1210
1211/**
1212 * Changes the comment line of image in HDD container.
1213 *
1214 * @return VBox status code.
1215 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1216 * @param pDisk Pointer to HDD container.
1217 * @param nImage Image number, counts from 0. 0 is always base image of container.
1218 * @param pszComment New comment string (UTF-8). NULL is allowed to reset the comment.
1219 */
1220VBOXDDU_DECL(int) VDSetComment(PVBOXHDD pDisk, unsigned nImage,
1221 const char *pszComment);
1222
1223/**
1224 * Get UUID of image in HDD container.
1225 *
1226 * @return VBox status code.
1227 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1228 * @param pDisk Pointer to HDD container.
1229 * @param nImage Image number, counts from 0. 0 is always base image of container.
1230 * @param pUuid Where to store the image UUID.
1231 */
1232VBOXDDU_DECL(int) VDGetUuid(PVBOXHDD pDisk, unsigned nImage, PRTUUID pUuid);
1233
1234/**
1235 * Set the image's UUID. Should not be used by normal applications.
1236 *
1237 * @return VBox status code.
1238 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1239 * @param pDisk Pointer to HDD container.
1240 * @param nImage Image number, counts from 0. 0 is always base image of container.
1241 * @param pUuid New UUID of the image. If NULL, a new UUID is created.
1242 */
1243VBOXDDU_DECL(int) VDSetUuid(PVBOXHDD pDisk, unsigned nImage, PCRTUUID pUuid);
1244
1245/**
1246 * Get last modification UUID of image in HDD container.
1247 *
1248 * @return VBox status code.
1249 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1250 * @param pDisk Pointer to HDD container.
1251 * @param nImage Image number, counts from 0. 0 is always base image of container.
1252 * @param pUuid Where to store the image modification UUID.
1253 */
1254VBOXDDU_DECL(int) VDGetModificationUuid(PVBOXHDD pDisk, unsigned nImage,
1255 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,
1267 PCRTUUID pUuid);
1268
1269/**
1270 * Get parent UUID of image in HDD container.
1271 *
1272 * @return VBox status code.
1273 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1274 * @param pDisk Pointer to HDD container.
1275 * @param nImage Image number, counts from 0. 0 is always base image of the container.
1276 * @param pUuid Where to store the parent image UUID.
1277 */
1278VBOXDDU_DECL(int) VDGetParentUuid(PVBOXHDD pDisk, unsigned nImage,
1279 PRTUUID pUuid);
1280
1281/**
1282 * Set the image's parent UUID. Should not be used by normal applications.
1283 *
1284 * @return VBox status code.
1285 * @param pDisk Pointer to HDD container.
1286 * @param nImage Image number, counts from 0. 0 is always base image of container.
1287 * @param pUuid New parent UUID of the image. If NULL, a new UUID is created.
1288 */
1289VBOXDDU_DECL(int) VDSetParentUuid(PVBOXHDD pDisk, unsigned nImage,
1290 PCRTUUID pUuid);
1291
1292
1293/**
1294 * Debug helper - dumps all opened images in HDD container into the log file.
1295 *
1296 * @param pDisk Pointer to HDD container.
1297 */
1298VBOXDDU_DECL(void) VDDumpImages(PVBOXHDD pDisk);
1299
1300
1301/**
1302 * Discards unused ranges given as a list.
1303 *
1304 * @return VBox status code.
1305 * @param pDisk Pointer to HDD container.
1306 * @param paRanges The array of ranges to discard.
1307 * @param cRanges Number of entries in the array.
1308 *
1309 * @note In contrast to VDCompact() the ranges are always discarded even if they
1310 * appear to contain data. This method is mainly used to implement TRIM support.
1311 */
1312VBOXDDU_DECL(int) VDDiscardRanges(PVBOXHDD pDisk, PCRTRANGE paRanges, unsigned cRanges);
1313
1314
1315/**
1316 * Start an asynchronous read request.
1317 *
1318 * @return VBox status code.
1319 * @param pDisk Pointer to the HDD container.
1320 * @param uOffset The offset of the virtual disk to read from.
1321 * @param cbRead How many bytes to read.
1322 * @param pcSgBuf Pointer to the S/G buffer to read into.
1323 * @param pfnComplete Completion callback.
1324 * @param pvUser User data which is passed on completion
1325 */
1326VBOXDDU_DECL(int) VDAsyncRead(PVBOXHDD pDisk, uint64_t uOffset, size_t cbRead,
1327 PCRTSGBUF pcSgBuf,
1328 PFNVDASYNCTRANSFERCOMPLETE pfnComplete,
1329 void *pvUser1, void *pvUser2);
1330
1331
1332/**
1333 * Start an asynchronous write request.
1334 *
1335 * @return VBox status code.
1336 * @param pDisk Pointer to the HDD container.
1337 * @param uOffset The offset of the virtual disk to write to.
1338 * @param cbWrtie How many bytes to write.
1339 * @param pcSgBuf Pointer to the S/G buffer to write from.
1340 * @param pfnComplete Completion callback.
1341 * @param pvUser User data which is passed on completion.
1342 */
1343VBOXDDU_DECL(int) VDAsyncWrite(PVBOXHDD pDisk, uint64_t uOffset, size_t cbWrite,
1344 PCRTSGBUF pcSgBuf,
1345 PFNVDASYNCTRANSFERCOMPLETE pfnComplete,
1346 void *pvUser1, void *pvUser2);
1347
1348
1349/**
1350 * Start an asynchronous flush request.
1351 *
1352 * @return VBox status code.
1353 * @param pDisk Pointer to the HDD container.
1354 * @param pfnComplete Completion callback.
1355 * @param pvUser 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 *pvUser);
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 pszFormat 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,
1390 uint32_t fFlags);
1391
1392/**
1393 * Create a VFS file handle from the given HDD container.
1394 *
1395 * @return VBox status code.
1396 * @param pDisk Pointer to HDD container.
1397 * @param fFlags Combination of the VD_VFSFILE_* flags.
1398 * @param phVfsFile Where to store the handle to the VFS file on
1399 * success.
1400 */
1401VBOXDDU_DECL(int) VDCreateVfsFileFromDisk(PVBOXHDD pDisk, uint32_t fFlags,
1402 PRTVFSFILE phVfsFile);
1403
1404RT_C_DECLS_END
1405
1406/** @} */
1407
1408#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