VirtualBox

source: vbox/trunk/include/VBox/VBoxHDD.h@ 19449

Last change on this file since 19449 was 19176, checked in by vboxsync, 15 years ago

VBoxHDD/generic+VDI: implemented and documented

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 66.8 KB
Line 
1/** @file
2 * VBox HDD Container API.
3 */
4
5/*
6 * Copyright (C) 2006-2008 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_VD_h
31#define ___VBox_VD_h
32
33#include <iprt/assert.h>
34#include <iprt/string.h>
35#include <iprt/mem.h>
36#include <VBox/cdefs.h>
37#include <VBox/types.h>
38#include <VBox/err.h>
39#include <VBox/pdmifs.h>
40/** @todo remove this dependency, using PFNVMPROGRESS outside VMM is *WRONG*. */
41#include <VBox/vmapi.h>
42
43__BEGIN_DECLS
44
45#ifdef IN_RING0
46# error "There are no VBox HDD Container APIs available in Ring-0 Host Context!"
47#endif
48
49/** @defgroup grp_vd VBox HDD Container
50 * @{
51 */
52
53/** Current VMDK image version. */
54#define VMDK_IMAGE_VERSION (0x0001)
55
56/** Current VDI image major version. */
57#define VDI_IMAGE_VERSION_MAJOR (0x0001)
58/** Current VDI image minor version. */
59#define VDI_IMAGE_VERSION_MINOR (0x0001)
60/** Current VDI image version. */
61#define VDI_IMAGE_VERSION ((VDI_IMAGE_VERSION_MAJOR << 16) | VDI_IMAGE_VERSION_MINOR)
62
63/** Get VDI major version from combined version. */
64#define VDI_GET_VERSION_MAJOR(uVer) ((uVer) >> 16)
65/** Get VDI minor version from combined version. */
66#define VDI_GET_VERSION_MINOR(uVer) ((uVer) & 0xffff)
67
68/** Placeholder for specifying the last opened image. */
69#define VD_LAST_IMAGE 0xffffffffU
70
71/** @name VBox HDD container image flags
72 * @{
73 */
74/** No flags. */
75#define VD_IMAGE_FLAGS_NONE (0)
76/** Fixed image. */
77#define VD_IMAGE_FLAGS_FIXED (0x10000)
78/** Diff image. Mutually exclusive with fixed image. */
79#define VD_IMAGE_FLAGS_DIFF (0x20000)
80/** VMDK: Split image into 2GB extents. */
81#define VD_VMDK_IMAGE_FLAGS_SPLIT_2G (0x0001)
82/** VMDK: Raw disk image (giving access to a number of host partitions). */
83#define VD_VMDK_IMAGE_FLAGS_RAWDISK (0x0002)
84/** VMDK: stream optimized image, read only. */
85#define VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED (0x0004)
86/** VMDK: ESX variant, use in addition to other flags. */
87#define VD_VMDK_IMAGE_FLAGS_ESX (0x0008)
88/** VDI: Fill new blocks with zeroes while expanding image file. Only valid
89 * for newly created images, never set for opened existing images. */
90#define VD_VDI_IMAGE_FLAGS_ZERO_EXPAND (0x0100)
91
92/** Mask of valid image flags for VMDK. */
93#define VD_VMDK_IMAGE_FLAGS_MASK ( VD_IMAGE_FLAGS_FIXED | VD_IMAGE_FLAGS_DIFF | VD_IMAGE_FLAGS_NONE \
94 | VD_VMDK_IMAGE_FLAGS_SPLIT_2G | VD_VMDK_IMAGE_FLAGS_RAWDISK \
95 | VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED | VD_VMDK_IMAGE_FLAGS_ESX)
96
97/** Mask of valid image flags for VDI. */
98#define VD_VDI_IMAGE_FLAGS_MASK (VD_IMAGE_FLAGS_FIXED | VD_IMAGE_FLAGS_DIFF | VD_IMAGE_FLAGS_NONE | VD_VDI_IMAGE_FLAGS_ZERO_EXPAND)
99
100/** Mask of all valid image flags for all formats. */
101#define VD_IMAGE_FLAGS_MASK (VD_VMDK_IMAGE_FLAGS_MASK | VD_VDI_IMAGE_FLAGS_MASK)
102
103/** Default image flags. */
104#define VD_IMAGE_FLAGS_DEFAULT (VD_IMAGE_FLAGS_NONE)
105/** @} */
106
107
108/**
109 * Auxiliary type for describing partitions on raw disks.
110 */
111typedef struct VBOXHDDRAWPART
112{
113 /** Device to use for this partition. Can be the disk device if the offset
114 * field is set appropriately. If this is NULL, then this partition will
115 * not be accessible to the guest. The size of the partition must still
116 * be set correctly. */
117 const char *pszRawDevice;
118 /** Offset where the partition data starts in this device. */
119 uint64_t uPartitionStartOffset;
120 /** Offset where the partition data starts in the disk. */
121 uint64_t uPartitionStart;
122 /** Size of the partition. */
123 uint64_t cbPartition;
124 /** Size of the partitioning info to prepend. */
125 uint64_t cbPartitionData;
126 /** Offset where the partitioning info starts in the disk. */
127 uint64_t uPartitionDataStart;
128 /** Pointer to the partitioning info to prepend. */
129 const void *pvPartitionData;
130} VBOXHDDRAWPART, *PVBOXHDDRAWPART;
131
132/**
133 * Auxiliary data structure for creating raw disks.
134 */
135typedef struct VBOXHDDRAW
136{
137 /** Signature for structure. Must be 'R', 'A', 'W', '\0'. Actually a trick
138 * to make logging of the comment string produce sensible results. */
139 char szSignature[4];
140 /** Flag whether access to full disk should be given (ignoring the
141 * partition information below). */
142 bool fRawDisk;
143 /** Filename for the raw disk. Ignored for partitioned raw disks.
144 * For Linux e.g. /dev/sda, and for Windows e.g. \\.\PhysicalDisk0. */
145 const char *pszRawDisk;
146 /** Number of entries in the partitions array. */
147 unsigned cPartitions;
148 /** Pointer to the partitions array. */
149 PVBOXHDDRAWPART pPartitions;
150} VBOXHDDRAW, *PVBOXHDDRAW;
151
152/** @name VBox HDD container image open mode flags
153 * @{
154 */
155/** Try to open image in read/write exclusive access mode if possible, or in read-only elsewhere. */
156#define VD_OPEN_FLAGS_NORMAL 0
157/** Open image in read-only mode with sharing access with others. */
158#define VD_OPEN_FLAGS_READONLY RT_BIT(0)
159/** Honor zero block writes instead of ignoring them whenever possible.
160 * This is not supported by all formats. It is silently ignored in this case. */
161#define VD_OPEN_FLAGS_HONOR_ZEROES RT_BIT(1)
162/** Honor writes of the same data instead of ignoring whenever possible.
163 * This is handled generically, and is only meaningful for differential image
164 * formats. It is silently ignored otherwise. */
165#define VD_OPEN_FLAGS_HONOR_SAME RT_BIT(2)
166/** Do not perform the base/diff image check on open. This does NOT imply
167 * opening the image as readonly (would break e.g. adding UUIDs to VMDK files
168 * created by other products). Images opened with this flag should only be
169 * used for querying information, and nothing else. */
170#define VD_OPEN_FLAGS_INFO RT_BIT(3)
171/** Open image for asynchronous access.
172 * Only available if VD_CAP_ASYNC_IO is set
173 * Check with VDIsAsynchonousIoSupported wether
174 * asynchronous I/O is really supported for this file.
175 */
176#define VD_OPEN_FLAGS_ASYNC_IO RT_BIT(4)
177/** Mask of valid flags. */
178#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)
179/** @}*/
180
181
182/** @name VBox HDD container backend capability flags
183 * @{
184 */
185/** Supports UUIDs as expected by VirtualBox code. */
186#define VD_CAP_UUID RT_BIT(0)
187/** Supports creating fixed size images, allocating all space instantly. */
188#define VD_CAP_CREATE_FIXED RT_BIT(1)
189/** Supports creating dynamically growing images, allocating space on demand. */
190#define VD_CAP_CREATE_DYNAMIC RT_BIT(2)
191/** Supports creating images split in chunks of a bit less than 2GBytes. */
192#define VD_CAP_CREATE_SPLIT_2G RT_BIT(3)
193/** Supports being used as differencing image format backend. */
194#define VD_CAP_DIFF RT_BIT(4)
195/** Supports asynchronous I/O operations for at least some configurations. */
196#define VD_CAP_ASYNC RT_BIT(5)
197/** The backend operates on files. The caller needs to know to handle the
198 * location appropriately. */
199#define VD_CAP_FILE RT_BIT(6)
200/** The backend uses the config interface. The caller needs to know how to
201 * provide the mandatory configuration parts this way. */
202#define VD_CAP_CONFIG RT_BIT(7)
203/** The backend uses the network stack interface. The caller has to provide
204 * the appropriate interface. */
205#define VD_CAP_TCPNET RT_BIT(8)
206/** @}*/
207
208/**
209 * Supported interface types.
210 */
211typedef enum VDINTERFACETYPE
212{
213 /** First valid interface. */
214 VDINTERFACETYPE_FIRST = 0,
215 /** Interface to pass error message to upper layers. Per-disk. */
216 VDINTERFACETYPE_ERROR = VDINTERFACETYPE_FIRST,
217 /** Interface for asynchronous I/O operations. Per-disk. */
218 VDINTERFACETYPE_ASYNCIO,
219 /** Interface for progress notification. Per-operation. */
220 VDINTERFACETYPE_PROGRESS,
221 /** Interface for configuration information. Per-image. */
222 VDINTERFACETYPE_CONFIG,
223 /** Interface for TCP network stack. Per-disk. */
224 VDINTERFACETYPE_TCPNET,
225 /** Interface for getting parent image state. Per-operation. */
226 VDINTERFACETYPE_PARENTSTATE,
227 /** invalid interface. */
228 VDINTERFACETYPE_INVALID
229} VDINTERFACETYPE;
230
231/**
232 * Common structure for all interfaces.
233 */
234typedef struct VDINTERFACE
235{
236 /** Human readable interface name. */
237 const char *pszInterfaceName;
238 /** The size of the struct. */
239 uint32_t cbSize;
240 /** Pointer to the next common interface structure. */
241 struct VDINTERFACE *pNext;
242 /** Interface type. */
243 VDINTERFACETYPE enmInterface;
244 /** Opaque user data which is passed on every call. */
245 void *pvUser;
246 /** Pointer to the function call table of the interface.
247 * As this is opaque this must be casted to the right interface
248 * struct defined below based on the interface type in enmInterface. */
249 void *pCallbacks;
250} VDINTERFACE;
251/** Pointer to a VDINTERFACE. */
252typedef VDINTERFACE *PVDINTERFACE;
253/** Pointer to a const VDINTERFACE. */
254typedef const VDINTERFACE *PCVDINTERFACE;
255
256/**
257 * Helper functions to handle interface lists.
258 *
259 * @note These interface lists are used consistently to pass per-disk,
260 * per-image and/or per-operation callbacks. Those three purposes are strictly
261 * separate. See the individual interface declarations for what context they
262 * apply to. The caller is responsible for ensuring that the lifetime of the
263 * interface descriptors is appropriate for the category of interface.
264 */
265
266/**
267 * Get a specific interface from a list of interfaces specified by the type.
268 *
269 * @return Pointer to the matching interface or NULL if none was found.
270 * @param pVDIfs Pointer to the VD interface list.
271 * @param enmInterface Interface to search for.
272 */
273DECLINLINE(PVDINTERFACE) VDInterfaceGet(PVDINTERFACE pVDIfs, VDINTERFACETYPE enmInterface)
274{
275 AssertMsgReturn( (enmInterface >= VDINTERFACETYPE_FIRST)
276 && (enmInterface < VDINTERFACETYPE_INVALID),
277 ("enmInterface=%u", enmInterface), NULL);
278
279 while (pVDIfs)
280 {
281 /* Sanity checks. */
282 AssertMsgBreak(pVDIfs->cbSize == sizeof(VDINTERFACE),
283 ("cbSize=%u\n", pVDIfs->cbSize));
284
285 if (pVDIfs->enmInterface == enmInterface)
286 return pVDIfs;
287 pVDIfs = pVDIfs->pNext;
288 }
289
290 /* No matching interface was found. */
291 return NULL;
292}
293
294/**
295 * Add an interface to a list of interfaces.
296 *
297 * @return VBox status code.
298 * @param pInterface Pointer to an unitialized common interface structure.
299 * @param pszName Name of the interface.
300 * @param enmInterface Type of the interface.
301 * @param pCallbacks The callback table of the interface.
302 * @param pvUser Opaque user data passed on every function call.
303 * @param ppVDIfs Pointer to the VD interface list.
304 */
305DECLINLINE(int) VDInterfaceAdd(PVDINTERFACE pInterface, const char *pszName,
306 VDINTERFACETYPE enmInterface, void *pCallbacks,
307 void *pvUser, PVDINTERFACE *ppVDIfs)
308{
309
310 /** Argument checks. */
311 AssertMsgReturn( (enmInterface >= VDINTERFACETYPE_FIRST)
312 && (enmInterface < VDINTERFACETYPE_INVALID),
313 ("enmInterface=%u", enmInterface), VERR_INVALID_PARAMETER);
314
315 AssertMsgReturn(VALID_PTR(pCallbacks),
316 ("pCallbacks=%#p", pCallbacks),
317 VERR_INVALID_PARAMETER);
318
319 AssertMsgReturn(VALID_PTR(ppVDIfs),
320 ("pInterfaceList=%#p", ppVDIfs),
321 VERR_INVALID_PARAMETER);
322
323 /* Fill out interface descriptor. */
324 pInterface->cbSize = sizeof(VDINTERFACE);
325 pInterface->pszInterfaceName = pszName;
326 pInterface->enmInterface = enmInterface;
327 pInterface->pCallbacks = pCallbacks;
328 pInterface->pvUser = pvUser;
329 pInterface->pNext = *ppVDIfs;
330
331 /* Remember the new start of the list. */
332 *ppVDIfs = pInterface;
333
334 return VINF_SUCCESS;
335}
336
337/**
338 * Interface to deliver error messages to upper layers.
339 *
340 * Per disk interface. Optional, but think twice if you want to miss the
341 * opportunity of reporting better human-readable error messages.
342 */
343typedef struct VDINTERFACEERROR
344{
345 /**
346 * Size of the error interface.
347 */
348 uint32_t cbSize;
349
350 /**
351 * Interface type.
352 */
353 VDINTERFACETYPE enmInterface;
354
355 /**
356 * Error message callback.
357 *
358 * @param pvUser The opaque data passed on container creation.
359 * @param rc The VBox error code.
360 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
361 * @param pszFormat Error message format string.
362 * @param va Error message arguments.
363 */
364 DECLR3CALLBACKMEMBER(void, pfnError, (void *pvUser, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va));
365
366} VDINTERFACEERROR, *PVDINTERFACEERROR;
367
368/**
369 * Get error interface from opaque callback table.
370 *
371 * @return Pointer to the callback table.
372 * @param pInterface Pointer to the interface descriptor.
373 */
374DECLINLINE(PVDINTERFACEERROR) VDGetInterfaceError(PVDINTERFACE pInterface)
375{
376 /* Check that the interface descriptor is a error interface. */
377 AssertMsgReturn( (pInterface->enmInterface == VDINTERFACETYPE_ERROR)
378 && (pInterface->cbSize == sizeof(VDINTERFACE)),
379 ("Not an error interface"), NULL);
380
381 PVDINTERFACEERROR pInterfaceError = (PVDINTERFACEERROR)pInterface->pCallbacks;
382
383 /* Do basic checks. */
384 AssertMsgReturn( (pInterfaceError->cbSize == sizeof(VDINTERFACEERROR))
385 && (pInterfaceError->enmInterface == VDINTERFACETYPE_ERROR),
386 ("A non error callback table attached to a error interface descriptor\n"), NULL);
387
388 return pInterfaceError;
389}
390
391/**
392 * Completion callback which is called by the interface owner
393 * to inform the backend that a task finished.
394 *
395 * @return VBox status code.
396 * @param pvUser Opaque user data which is passed on request submission.
397 */
398typedef DECLCALLBACK(int) FNVDCOMPLETED(void *pvUser);
399/** Pointer to FNVDCOMPLETED() */
400typedef FNVDCOMPLETED *PFNVDCOMPLETED;
401
402
403/**
404 * Support interface for asynchronous I/O
405 *
406 * Per-disk. Optional.
407 */
408typedef struct VDINTERFACEASYNCIO
409{
410 /**
411 * Size of the async interface.
412 */
413 uint32_t cbSize;
414
415 /**
416 * Interface type.
417 */
418 VDINTERFACETYPE enmInterface;
419
420 /**
421 * Open callback
422 *
423 * @return VBox status code.
424 * @param pvUser The opaque data passed on container creation.
425 * @param pszLocation Name of the location to open.
426 * @param fReadonly Whether to open the storage medium read only.
427 * @param ppStorage Where to store the opaque storage handle.
428 */
429 DECLR3CALLBACKMEMBER(int, pfnOpen, (void *pvUser, const char *pszLocation, bool fReadonly, void **ppStorage));
430
431 /**
432 * Close callback.
433 *
434 * @return VBox status code.
435 * @param pvUser The opaque data passed on container creation.
436 * @param pStorage The opaque storage handle to close.
437 */
438 DECLR3CALLBACKMEMBER(int, pfnClose, (void *pvUser, void *pStorage));
439
440 /**
441 * Synchronous write callback.
442 *
443 * @return VBox status code.
444 * @param pvUser The opaque data passed on container creation.
445 * @param pStorage The storage handle to use.
446 * @param uOffset The offset to start from.
447 * @param cbWrite How many bytes to write.
448 * @param pvBuf Pointer to the bits need to be written.
449 * @param pcbWritten Where to store how many bytes where actually written.
450 */
451 DECLR3CALLBACKMEMBER(int, pfnWrite, (void *pvUser, void *pStorage, uint64_t uOffset,
452 size_t cbWrite, const void *pvBuf, size_t *pcbWritten));
453
454 /**
455 * Synchronous read callback.
456 *
457 * @return VBox status code.
458 * @param pvUser The opaque data passed on container creation.
459 * @param pStorage The storage handle to use.
460 * @param uOffset The offset to start from.
461 * @param cbRead How many bytes to read.
462 * @param pvBuf Where to store the read bits.
463 * @param pcbRead Where to store how many bytes where actually read.
464 */
465 DECLR3CALLBACKMEMBER(int, pfnRead, (void *pvUser, void *pStorage, uint64_t uOffset,
466 size_t cbRead, void *pvBuf, size_t *pcbRead));
467
468 /**
469 * Flush data to the storage backend.
470 *
471 * @return VBox statis code.
472 * @param pvUser The opaque data passed on container creation.
473 * @param pStorage The storage handle to flush.
474 */
475 DECLR3CALLBACKMEMBER(int, pfnFlush, (void *pvUser, void *pStorage));
476
477 /**
478 * Prepare an asynchronous read task.
479 *
480 * @return VBox status code.
481 * @param pvUser The opqaue user data passed on container creation.
482 * @param pStorage The storage handle.
483 * @param uOffset The offset to start reading from.
484 * @param pvBuf Where to store read bits.
485 * @param cbRead How many bytes to read.
486 * @param ppTask Where to store the opaque task handle.
487 */
488 DECLR3CALLBACKMEMBER(int, pfnPrepareRead, (void *pvUser, void *pStorage, uint64_t uOffset,
489 void *pvBuf, size_t cbRead, void **ppTask));
490
491 /**
492 * Prepare an asynchronous write task.
493 *
494 * @return VBox status code.
495 * @param pvUser The opaque user data passed on conatiner creation.
496 * @param pStorage The storage handle.
497 * @param uOffset The offset to start writing to.
498 * @param pvBuf Where to read the data from.
499 * @param cbWrite How many bytes to write.
500 * @param ppTask Where to store the opaque task handle.
501 */
502 DECLR3CALLBACKMEMBER(int, pfnPrepareWrite, (void *pvUser, void *pStorage, uint64_t uOffset,
503 void *pvBuf, size_t cbWrite, void **ppTask));
504
505 /**
506 * Submit an array of tasks for processing
507 *
508 * @return VBox status code.
509 * @param pvUser The opaque user data passed on container creation.
510 * @param apTasks Array of task handles to submit.
511 * @param cTasks How many tasks to submit.
512 * @param pvUser2 User data which is passed on completion.
513 * @param pvUserCaller Opaque user data the caller of VDAsyncWrite/Read passed.
514 * @param pfnTasksCompleted Pointer to callback which is called on request completion.
515 */
516 DECLR3CALLBACKMEMBER(int, pfnTasksSubmit, (void *pvUser, void *apTasks[], unsigned cTasks, void *pvUser2,
517 void *pvUserCaller, PFNVDCOMPLETED pfnTasksCompleted));
518
519} VDINTERFACEASYNCIO, *PVDINTERFACEASYNCIO;
520
521/**
522 * Get async I/O interface from opaque callback table.
523 *
524 * @return Pointer to the callback table.
525 * @param pInterface Pointer to the interface descriptor.
526 */
527DECLINLINE(PVDINTERFACEASYNCIO) VDGetInterfaceAsyncIO(PVDINTERFACE pInterface)
528{
529 /* Check that the interface descriptor is a async I/O interface. */
530 AssertMsgReturn( (pInterface->enmInterface == VDINTERFACETYPE_ASYNCIO)
531 && (pInterface->cbSize == sizeof(VDINTERFACE)),
532 ("Not an async I/O interface"), NULL);
533
534 PVDINTERFACEASYNCIO pInterfaceAsyncIO = (PVDINTERFACEASYNCIO)pInterface->pCallbacks;
535
536 /* Do basic checks. */
537 AssertMsgReturn( (pInterfaceAsyncIO->cbSize == sizeof(VDINTERFACEASYNCIO))
538 && (pInterfaceAsyncIO->enmInterface == VDINTERFACETYPE_ASYNCIO),
539 ("A non async I/O callback table attached to a async I/O interface descriptor\n"), NULL);
540
541 return pInterfaceAsyncIO;
542}
543
544/**
545 * Progress notification interface
546 *
547 * Per-operation. Optional.
548 */
549typedef struct VDINTERFACEPROGRESS
550{
551 /**
552 * Size of the progress interface.
553 */
554 uint32_t cbSize;
555
556 /**
557 * Interface type.
558 */
559 VDINTERFACETYPE enmInterface;
560
561 /**
562 * Progress notification callbacks.
563 * @todo r=bird: Why the heck are we using PFNVMPROGRESS here?
564 */
565 PFNVMPROGRESS pfnProgress;
566} VDINTERFACEPROGRESS, *PVDINTERFACEPROGRESS;
567
568/**
569 * Get progress interface from opaque callback table.
570 *
571 * @return Pointer to the callback table.
572 * @param pInterface Pointer to the interface descriptor.
573 */
574DECLINLINE(PVDINTERFACEPROGRESS) VDGetInterfaceProgress(PVDINTERFACE pInterface)
575{
576 /* Check that the interface descriptor is a progress interface. */
577 AssertMsgReturn( (pInterface->enmInterface == VDINTERFACETYPE_PROGRESS)
578 && (pInterface->cbSize == sizeof(VDINTERFACE)),
579 ("Not a progress interface"), NULL);
580
581
582 PVDINTERFACEPROGRESS pInterfaceProgress = (PVDINTERFACEPROGRESS)pInterface->pCallbacks;
583
584 /* Do basic checks. */
585 AssertMsgReturn( (pInterfaceProgress->cbSize == sizeof(VDINTERFACEPROGRESS))
586 && (pInterfaceProgress->enmInterface == VDINTERFACETYPE_PROGRESS),
587 ("A non progress callback table attached to a progress interface descriptor\n"), NULL);
588
589 return pInterfaceProgress;
590}
591
592
593/**
594 * Configuration information interface
595 *
596 * Per-image. Optional for most backends, but mandatory for images which do
597 * not operate on files (including standard block or character devices).
598 */
599typedef struct VDINTERFACECONFIG
600{
601 /**
602 * Size of the configuration interface.
603 */
604 uint32_t cbSize;
605
606 /**
607 * Interface type.
608 */
609 VDINTERFACETYPE enmInterface;
610
611 /**
612 * Validates that the keys are within a set of valid names.
613 *
614 * @return true if all key names are found in pszzAllowed.
615 * @return false if not.
616 * @param pvUser The opaque user data associated with this interface.
617 * @param pszzValid List of valid key names separated by '\\0' and ending with
618 * a double '\\0'.
619 */
620 DECLR3CALLBACKMEMBER(bool, pfnAreKeysValid, (void *pvUser, const char *pszzValid));
621
622 /**
623 * Retrieves the length of the string value associated with a key (including
624 * the terminator, for compatibility with CFGMR3QuerySize).
625 *
626 * @return VBox status code.
627 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
628 * @param pvUser The opaque user data associated with this interface.
629 * @param pszName Name of the key to query.
630 * @param pcbValue Where to store the value length. Non-NULL.
631 */
632 DECLR3CALLBACKMEMBER(int, pfnQuerySize, (void *pvUser, const char *pszName, size_t *pcbValue));
633
634 /**
635 * Query the string value associated with a key.
636 *
637 * @return VBox status code.
638 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
639 * VERR_CFGM_NOT_ENOUGH_SPACE means that the buffer is not big enough.
640 * @param pvUser The opaque user data associated with this interface.
641 * @param pszName Name of the key to query.
642 * @param pszValue Pointer to buffer where to store value.
643 * @param cchValue Length of value buffer.
644 */
645 DECLR3CALLBACKMEMBER(int, pfnQuery, (void *pvUser, const char *pszName, char *pszValue, size_t cchValue));
646} VDINTERFACECONFIG, *PVDINTERFACECONFIG;
647
648/**
649 * Get configuration information interface from opaque callback table.
650 *
651 * @return Pointer to the callback table.
652 * @param pInterface Pointer to the interface descriptor.
653 */
654DECLINLINE(PVDINTERFACECONFIG) VDGetInterfaceConfig(PVDINTERFACE pInterface)
655{
656 /* Check that the interface descriptor is a config interface. */
657 AssertMsgReturn( (pInterface->enmInterface == VDINTERFACETYPE_CONFIG)
658 && (pInterface->cbSize == sizeof(VDINTERFACE)),
659 ("Not a config interface"), NULL);
660
661 PVDINTERFACECONFIG pInterfaceConfig = (PVDINTERFACECONFIG)pInterface->pCallbacks;
662
663 /* Do basic checks. */
664 AssertMsgReturn( (pInterfaceConfig->cbSize == sizeof(VDINTERFACECONFIG))
665 && (pInterfaceConfig->enmInterface == VDINTERFACETYPE_CONFIG),
666 ("A non config callback table attached to a config interface descriptor\n"), NULL);
667
668 return pInterfaceConfig;
669}
670
671/**
672 * Query configuration, validates that the keys are within a set of valid names.
673 *
674 * @return true if all key names are found in pszzAllowed.
675 * @return false if not.
676 * @param pCfgIf Pointer to configuration callback table.
677 * @param pvUser The opaque user data associated with this interface.
678 * @param pszzValid List of valid names separated by '\\0' and ending with
679 * a double '\\0'.
680 */
681DECLINLINE(bool) VDCFGAreKeysValid(PVDINTERFACECONFIG pCfgIf, void *pvUser,
682 const char *pszzValid)
683{
684 return pCfgIf->pfnAreKeysValid(pvUser, pszzValid);
685}
686
687/**
688 * Query configuration, unsigned 64-bit integer value with default.
689 *
690 * @return VBox status code.
691 * @param pCfgIf Pointer to configuration callback table.
692 * @param pvUser The opaque user data associated with this interface.
693 * @param pszName Name of an integer value
694 * @param pu64 Where to store the value. Set to default on failure.
695 * @param u64Def The default value.
696 */
697DECLINLINE(int) VDCFGQueryU64Def(PVDINTERFACECONFIG pCfgIf, void *pvUser,
698 const char *pszName, uint64_t *pu64,
699 uint64_t u64Def)
700{
701 char aszBuf[32];
702 int rc = pCfgIf->pfnQuery(pvUser, pszName, aszBuf, sizeof(aszBuf));
703 if (RT_SUCCESS(rc))
704 {
705 rc = RTStrToUInt64Full(aszBuf, 0, pu64);
706 }
707 else if (rc == VERR_CFGM_VALUE_NOT_FOUND)
708 {
709 rc = VINF_SUCCESS;
710 *pu64 = u64Def;
711 }
712 return rc;
713}
714
715/**
716 * Query configuration, unsigned 32-bit integer value with default.
717 *
718 * @return VBox status code.
719 * @param pCfgIf Pointer to configuration callback table.
720 * @param pvUser The opaque user data associated with this interface.
721 * @param pszName Name of an integer value
722 * @param pu32 Where to store the value. Set to default on failure.
723 * @param u32Def The default value.
724 */
725DECLINLINE(int) VDCFGQueryU32Def(PVDINTERFACECONFIG pCfgIf, void *pvUser,
726 const char *pszName, uint32_t *pu32,
727 uint32_t u32Def)
728{
729 uint64_t u64;
730 int rc = VDCFGQueryU64Def(pCfgIf, pvUser, pszName, &u64, u32Def);
731 if (RT_SUCCESS(rc))
732 {
733 if (!(u64 & UINT64_C(0xffffffff00000000)))
734 *pu32 = (uint32_t)u64;
735 else
736 rc = VERR_CFGM_INTEGER_TOO_BIG;
737 }
738 return rc;
739}
740
741/**
742 * Query configuration, bool value with default.
743 *
744 * @return VBox status code.
745 * @param pCfgIf Pointer to configuration callback table.
746 * @param pvUser The opaque user data associated with this interface.
747 * @param pszName Name of an integer value
748 * @param pf Where to store the value. Set to default on failure.
749 * @param fDef The default value.
750 */
751DECLINLINE(int) VDCFGQueryBoolDef(PVDINTERFACECONFIG pCfgIf, void *pvUser,
752 const char *pszName, bool *pf,
753 bool fDef)
754{
755 uint64_t u64;
756 int rc = VDCFGQueryU64Def(pCfgIf, pvUser, pszName, &u64, fDef);
757 if (RT_SUCCESS(rc))
758 *pf = u64 ? true : false;
759 return rc;
760}
761
762/**
763 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated
764 * character value.
765 *
766 * @return VBox status code.
767 * @param pCfgIf Pointer to configuration callback table.
768 * @param pvUser The opaque user data associated with this interface.
769 * @param pszName Name of an zero terminated character value
770 * @param ppszString Where to store the string pointer. Not set on failure.
771 * Free this using RTMemFree().
772 */
773DECLINLINE(int) VDCFGQueryStringAlloc(PVDINTERFACECONFIG pCfgIf,
774 void *pvUser, const char *pszName,
775 char **ppszString)
776{
777 size_t cb;
778 int rc = pCfgIf->pfnQuerySize(pvUser, pszName, &cb);
779 if (RT_SUCCESS(rc))
780 {
781 char *pszString = (char *)RTMemAlloc(cb);
782 if (pszString)
783 {
784 rc = pCfgIf->pfnQuery(pvUser, pszName, pszString, cb);
785 if (RT_SUCCESS(rc))
786 *ppszString = pszString;
787 else
788 RTMemFree(pszString);
789 }
790 else
791 rc = VERR_NO_MEMORY;
792 }
793 return rc;
794}
795
796/**
797 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated
798 * character value with default.
799 *
800 * @return VBox status code.
801 * @param pCfgIf Pointer to configuration callback table.
802 * @param pvUser The opaque user data associated with this interface.
803 * @param pszName Name of an zero terminated character value
804 * @param ppszString Where to store the string pointer. Not set on failure.
805 * Free this using RTMemFree().
806 * @param pszDef The default value.
807 */
808DECLINLINE(int) VDCFGQueryStringAllocDef(PVDINTERFACECONFIG pCfgIf,
809 void *pvUser, const char *pszName,
810 char **ppszString,
811 const char *pszDef)
812{
813 size_t cb;
814 int rc = pCfgIf->pfnQuerySize(pvUser, pszName, &cb);
815 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
816 {
817 cb = strlen(pszDef) + 1;
818 rc = VINF_SUCCESS;
819 }
820 if (RT_SUCCESS(rc))
821 {
822 char *pszString = (char *)RTMemAlloc(cb);
823 if (pszString)
824 {
825 rc = pCfgIf->pfnQuery(pvUser, pszName, pszString, cb);
826 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
827 {
828 memcpy(pszString, pszDef, cb);
829 rc = VINF_SUCCESS;
830 }
831 if (RT_SUCCESS(rc))
832 *ppszString = pszString;
833 else
834 RTMemFree(pszString);
835 }
836 else
837 rc = VERR_NO_MEMORY;
838 }
839 return rc;
840}
841
842/**
843 * Query configuration, dynamically allocated (RTMemAlloc) byte string value.
844 *
845 * @return VBox status code.
846 * @param pCfgIf Pointer to configuration callback table.
847 * @param pvUser The opaque user data associated with this interface.
848 * @param pszName Name of an zero terminated character value
849 * @param ppvData Where to store the byte string pointer. Not set on failure.
850 * Free this using RTMemFree().
851 * @param pcbData Where to store the byte string length.
852 */
853DECLINLINE(int) VDCFGQueryBytesAlloc(PVDINTERFACECONFIG pCfgIf,
854 void *pvUser, const char *pszName,
855 void **ppvData, size_t *pcbData)
856{
857 size_t cb;
858 int rc = pCfgIf->pfnQuerySize(pvUser, pszName, &cb);
859 if (RT_SUCCESS(rc))
860 {
861 char *pvData = (char *)RTMemAlloc(cb);
862 if (pvData)
863 {
864 rc = pCfgIf->pfnQuery(pvUser, pszName, pvData, cb);
865 if (RT_SUCCESS(rc))
866 {
867 *ppvData = pvData;
868 *pcbData = cb;
869 }
870 else
871 RTMemFree(pvData);
872 }
873 else
874 rc = VERR_NO_MEMORY;
875 }
876 return rc;
877}
878
879
880/**
881 * TCP network stack interface
882 *
883 * Per-disk. Mandatory for backends which have the VD_CAP_TCPNET bit set.
884 */
885typedef struct VDINTERFACETCPNET
886{
887 /**
888 * Size of the configuration interface.
889 */
890 uint32_t cbSize;
891
892 /**
893 * Interface type.
894 */
895 VDINTERFACETYPE enmInterface;
896
897 /**
898 * Connect as a client to a TCP port.
899 *
900 * @return iprt status code.
901 * @param pszAddress The address to connect to.
902 * @param uPort The port to connect to.
903 * @param pSock Where to store the handle to the established connect
904ion.
905 */
906 DECLR3CALLBACKMEMBER(int, pfnClientConnect, (const char *pszAddress, uint32_t uPort, PRTSOCKET pSock));
907
908 /**
909 * Close a TCP connection.
910 *
911 * @return iprt status code.
912 * @param Sock Socket descriptor.
913ion.
914 */
915 DECLR3CALLBACKMEMBER(int, pfnClientClose, (RTSOCKET Sock));
916
917 /**
918 * Socket I/O multiplexing.
919 * Checks if the socket is ready for reading.
920 *
921 * @return iprt status code.
922 * @param Sock Socket descriptor.
923 * @param cMillies Number of milliseconds to wait for the socket.
924 * Use RT_INDEFINITE_WAIT to wait for ever.
925 */
926 DECLR3CALLBACKMEMBER(int, pfnSelectOne, (RTSOCKET Sock, unsigned cMillies));
927
928 /**
929 * Receive data from a socket.
930 *
931 * @return iprt status code.
932 * @param Sock Socket descriptor.
933 * @param pvBuffer Where to put the data we read.
934 * @param cbBuffer Read buffer size.
935 * @param pcbRead Number of bytes read.
936 * If NULL the entire buffer will be filled upon successful return.
937 * If not NULL a partial read can be done successfully.
938 */
939 DECLR3CALLBACKMEMBER(int, pfnRead, (RTSOCKET Sock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead));
940
941 /**
942 * Send data from a socket.
943 *
944 * @return iprt status code.
945 * @param Sock Socket descriptor.
946 * @param pvBuffer Buffer to write data to socket.
947 * @param cbBuffer How much to write.
948 * @param pcbRead Number of bytes read.
949 */
950 DECLR3CALLBACKMEMBER(int, pfnWrite, (RTSOCKET Sock, const void *pvBuffer, size_t cbBuffer));
951
952 /**
953 * Flush socket write buffers.
954 *
955 * @return iprt status code.
956 * @param Sock Socket descriptor.
957 */
958 DECLR3CALLBACKMEMBER(int, pfnFlush, (RTSOCKET Sock));
959
960} VDINTERFACETCPNET, *PVDINTERFACETCPNET;
961
962/**
963 * Get TCP network stack interface from opaque callback table.
964 *
965 * @return Pointer to the callback table.
966 * @param pInterface Pointer to the interface descriptor.
967 */
968DECLINLINE(PVDINTERFACETCPNET) VDGetInterfaceTcpNet(PVDINTERFACE pInterface)
969{
970 /* Check that the interface descriptor is a TCP network stack interface. */
971 AssertMsgReturn( (pInterface->enmInterface == VDINTERFACETYPE_TCPNET)
972 && (pInterface->cbSize == sizeof(VDINTERFACE)),
973 ("Not a TCP network stack interface"), NULL);
974
975 PVDINTERFACETCPNET pInterfaceTcpNet = (PVDINTERFACETCPNET)pInterface->pCallbacks;
976
977 /* Do basic checks. */
978 AssertMsgReturn( (pInterfaceTcpNet->cbSize == sizeof(VDINTERFACETCPNET))
979 && (pInterfaceTcpNet->enmInterface == VDINTERFACETYPE_TCPNET),
980 ("A non TCP network stack callback table attached to a TCP network stack interface descriptor\n"), NULL);
981
982 return pInterfaceTcpNet;
983}
984
985/**
986 * Interface to get the parent state.
987 *
988 * Per operation interface. Optional, present only if there is a parent, and
989 * used only internally for compacting.
990 */
991typedef struct VDINTERFACEPARENTSTATE
992{
993 /**
994 * Size of the parent state interface.
995 */
996 uint32_t cbSize;
997
998 /**
999 * Interface type.
1000 */
1001 VDINTERFACETYPE enmInterface;
1002
1003 /**
1004 * Read data callback.
1005 *
1006 * @return VBox status code.
1007 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1008 * @param pvUser The opaque data passed for the operation.
1009 * @param uOffset Offset of first reading byte from start of disk.
1010 * Must be aligned to a sector boundary.
1011 * @param pvBuf Pointer to buffer for reading data.
1012 * @param cbRead Number of bytes to read.
1013 * Must be aligned to a sector boundary.
1014 */
1015 DECLR3CALLBACKMEMBER(int, pfnParentRead, (void *pvUser, uint64_t uOffset, void *pvBuf, size_t cbRead));
1016
1017} VDINTERFACEPARENTSTATE, *PVDINTERFACEPARENTSTATE;
1018
1019
1020/**
1021 * Get parent state interface from opaque callback table.
1022 *
1023 * @return Pointer to the callback table.
1024 * @param pInterface Pointer to the interface descriptor.
1025 */
1026DECLINLINE(PVDINTERFACEPARENTSTATE) VDGetInterfaceParentState(PVDINTERFACE pInterface)
1027{
1028 /* Check that the interface descriptor is a parent state interface. */
1029 AssertMsgReturn( (pInterface->enmInterface == VDINTERFACETYPE_PARENTSTATE)
1030 && (pInterface->cbSize == sizeof(VDINTERFACE)),
1031 ("Not a parent state interface"), NULL);
1032
1033 PVDINTERFACEPARENTSTATE pInterfaceParentState = (PVDINTERFACEPARENTSTATE)pInterface->pCallbacks;
1034
1035 /* Do basic checks. */
1036 AssertMsgReturn( (pInterfaceParentState->cbSize == sizeof(VDINTERFACEPARENTSTATE))
1037 && (pInterfaceParentState->enmInterface == VDINTERFACETYPE_PARENTSTATE),
1038 ("A non parent state callback table attached to a parent state interface descriptor\n"), NULL);
1039
1040 return pInterfaceParentState;
1041}
1042
1043
1044/** @name Configuration interface key handling flags.
1045 * @{
1046 */
1047/** Mandatory config key. Not providing a value for this key will cause
1048 * the backend to fail. */
1049#define VD_CFGKEY_MANDATORY RT_BIT(0)
1050/** Expert config key. Not showing it by default in the GUI is is probably
1051 * a good idea, as the average user won't understand it easily. */
1052#define VD_CFGKEY_EXPERT RT_BIT(1)
1053/** @}*/
1054
1055
1056/**
1057 * Configuration value type for configuration information interface.
1058 */
1059typedef enum VDCFGVALUETYPE
1060{
1061 /** Integer value. */
1062 VDCFGVALUETYPE_INTEGER = 1,
1063 /** String value. */
1064 VDCFGVALUETYPE_STRING,
1065 /** Bytestring value. */
1066 VDCFGVALUETYPE_BYTES
1067} VDCFGVALUETYPE;
1068
1069
1070/**
1071 * Structure describing configuration keys required/supported by a backend
1072 * through the config interface.
1073 */
1074typedef struct VDCONFIGINFO
1075{
1076 /** Key name of the configuration. */
1077 const char *pszKey;
1078 /** Pointer to default value (descriptor). NULL if no useful default value
1079 * can be specified. */
1080 const char *pszDefaultValue;
1081 /** Value type for this key. */
1082 VDCFGVALUETYPE enmValueType;
1083 /** Key handling flags (a combination of VD_CFGKEY_* flags). */
1084 uint64_t uKeyFlags;
1085} VDCONFIGINFO;
1086
1087/** Pointer to structure describing configuration keys. */
1088typedef VDCONFIGINFO *PVDCONFIGINFO;
1089
1090/** Pointer to const structure describing configuration keys. */
1091typedef const VDCONFIGINFO *PCVDCONFIGINFO;
1092
1093/**
1094 * Data structure for returning a list of backend capabilities.
1095 */
1096typedef struct VDBACKENDINFO
1097{
1098 /** Name of the backend. Must be unique even with case insensitive comparison. */
1099 const char *pszBackend;
1100 /** Capabilities of the backend (a combination of the VD_CAP_* flags). */
1101 uint64_t uBackendCaps;
1102 /** Pointer to a NULL-terminated array of strings, containing the supported
1103 * file extensions. Note that some backends do not work on files, so this
1104 * pointer may just contain NULL. */
1105 const char * const *papszFileExtensions;
1106 /** Pointer to an array of structs describing each supported config key.
1107 * Terminated by a NULL config key. Note that some backends do not support
1108 * the configuration interface, so this pointer may just contain NULL.
1109 * Mandatory if the backend sets VD_CAP_CONFIG. */
1110 PCVDCONFIGINFO paConfigInfo;
1111 /** Returns a human readable hard disk location string given a
1112 * set of hard disk configuration keys. The returned string is an
1113 * equivalent of the full file path for image-based hard disks.
1114 * Mandatory for backends with no VD_CAP_FILE and NULL otherwise. */
1115 DECLR3CALLBACKMEMBER(int, pfnComposeLocation, (PVDINTERFACE pConfig, char **pszLocation));
1116 /** Returns a human readable hard disk name string given a
1117 * set of hard disk configuration keys. The returned string is an
1118 * equivalent of the file name part in the full file path for
1119 * image-based hard disks. Mandatory for backends with no
1120 * VD_CAP_FILE and NULL otherwise. */
1121 DECLR3CALLBACKMEMBER(int, pfnComposeName, (PVDINTERFACE pConfig, char **pszName));
1122} VDBACKENDINFO, *PVDBACKENDINFO;
1123
1124
1125/**
1126 * VBox HDD Container main structure.
1127 */
1128/* Forward declaration, VBOXHDD structure is visible only inside VBox HDD module. */
1129struct VBOXHDD;
1130typedef struct VBOXHDD VBOXHDD;
1131typedef VBOXHDD *PVBOXHDD;
1132
1133/**
1134 * Initializes HDD backends.
1135 *
1136 * @returns VBox status code.
1137 */
1138VBOXDDU_DECL(int) VDInit(void);
1139
1140/**
1141 * Destroys loaded HDD backends.
1142 *
1143 * @returns VBox status code.
1144 */
1145VBOXDDU_DECL(int) VDShutdown(void);
1146
1147/**
1148 * Lists all HDD backends and their capabilities in a caller-provided buffer.
1149 * Free all returned names with RTStrFree() when you no longer need them.
1150 *
1151 * @return VBox status code.
1152 * VERR_BUFFER_OVERFLOW if not enough space is passed.
1153 * @param cEntriesAlloc Number of list entries available.
1154 * @param pEntries Pointer to array for the entries.
1155 * @param pcEntriesUsed Number of entries returned.
1156 */
1157VBOXDDU_DECL(int) VDBackendInfo(unsigned cEntriesAlloc, PVDBACKENDINFO pEntries,
1158 unsigned *pcEntriesUsed);
1159
1160/**
1161 * Lists the capablities of a backend indentified by its name.
1162 * Free all returned names with RTStrFree() when you no longer need them.
1163 *
1164 * @return VBox status code.
1165 * @param pszBackend The backend name (case insensitive).
1166 * @param pEntries Pointer to an entry.
1167 */
1168VBOXDDU_DECL(int) VDBackendInfoOne(const char *pszBackend, PVDBACKENDINFO pEntry);
1169
1170/**
1171 * Allocates and initializes an empty HDD container.
1172 * No image files are opened.
1173 *
1174 * @return VBox status code.
1175 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
1176 * @param ppDisk Where to store the reference to HDD container.
1177 */
1178VBOXDDU_DECL(int) VDCreate(PVDINTERFACE pVDIfsDisk, PVBOXHDD *ppDisk);
1179
1180/**
1181 * Destroys HDD container.
1182 * If container has opened image files they will be closed.
1183 *
1184 * @param pDisk Pointer to HDD container.
1185 */
1186VBOXDDU_DECL(void) VDDestroy(PVBOXHDD pDisk);
1187
1188/**
1189 * Try to get the backend name which can use this image.
1190 *
1191 * @return VBox status code.
1192 * @param pszFilename Name of the image file for which the backend is queried.
1193 * @param ppszFormat Receives pointer of the UTF-8 string which contains the format name.
1194 * The returned pointer must be freed using RTStrFree().
1195 */
1196VBOXDDU_DECL(int) VDGetFormat(const char *pszFilename, char **ppszFormat);
1197
1198/**
1199 * Opens an image file.
1200 *
1201 * The first opened image file in HDD container must have a base image type,
1202 * others (next opened images) must be differencing or undo images.
1203 * Linkage is checked for differencing image to be consistent with the previously opened image.
1204 * When another differencing image is opened and the last image was opened in read/write access
1205 * mode, then the last image is reopened in read-only with deny write sharing mode. This allows
1206 * other processes to use images in read-only mode too.
1207 *
1208 * Note that the image is opened in read-only mode if a read/write open is not possible.
1209 * Use VDIsReadOnly to check open mode.
1210 *
1211 * @return VBox status code.
1212 * @param pDisk Pointer to HDD container.
1213 * @param pszBackend Name of the image file backend to use (case insensitive).
1214 * @param pszFilename Name of the image file to open.
1215 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
1216 * @param pVDIfsImage Pointer to the per-image VD interface list.
1217 */
1218VBOXDDU_DECL(int) VDOpen(PVBOXHDD pDisk, const char *pszBackend,
1219 const char *pszFilename, unsigned uOpenFlags,
1220 PVDINTERFACE pVDIfsImage);
1221
1222/**
1223 * Creates and opens a new base image file.
1224 *
1225 * @return VBox status code.
1226 * @param pDisk Pointer to HDD container.
1227 * @param pszBackend Name of the image file backend to use (case insensitive).
1228 * @param pszFilename Name of the image file to create.
1229 * @param cbSize Image size in bytes.
1230 * @param uImageFlags Flags specifying special image features.
1231 * @param pszComment Pointer to image comment. NULL is ok.
1232 * @param pPCHSGeometry Pointer to physical disk geometry <= (16383,16,63). Not NULL.
1233 * @param pLCHSGeometry Pointer to logical disk geometry <= (x,255,63). Not NULL.
1234 * @param pUuid New UUID of the image. If NULL, a new UUID is created.
1235 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
1236 * @param pVDIfsImage Pointer to the per-image VD interface list.
1237 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
1238 */
1239VBOXDDU_DECL(int) VDCreateBase(PVBOXHDD pDisk, const char *pszBackend,
1240 const char *pszFilename, uint64_t cbSize,
1241 unsigned uImageFlags, const char *pszComment,
1242 PCPDMMEDIAGEOMETRY pPCHSGeometry,
1243 PCPDMMEDIAGEOMETRY pLCHSGeometry,
1244 PCRTUUID pUuid, unsigned uOpenFlags,
1245 PVDINTERFACE pVDIfsImage,
1246 PVDINTERFACE pVDIfsOperation);
1247
1248/**
1249 * Creates and opens a new differencing image file in HDD container.
1250 * See comments for VDOpen function about differencing images.
1251 *
1252 * @return VBox status code.
1253 * @param pDisk Pointer to HDD container.
1254 * @param pszBackend Name of the image file backend to use (case insensitive).
1255 * @param pszFilename Name of the differencing image file to create.
1256 * @param uImageFlags Flags specifying special image features.
1257 * @param pszComment Pointer to image comment. NULL is ok.
1258 * @param pUuid New UUID of the image. If NULL, a new UUID is created.
1259 * @param pParentUuid New parent UUID of the image. If NULL, the UUID is queried automatically.
1260 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
1261 * @param pVDIfsImage Pointer to the per-image VD interface list.
1262 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
1263 */
1264VBOXDDU_DECL(int) VDCreateDiff(PVBOXHDD pDisk, const char *pszBackend,
1265 const char *pszFilename, unsigned uImageFlags,
1266 const char *pszComment, PCRTUUID pUuid,
1267 PCRTUUID pParentUuid, unsigned uOpenFlags,
1268 PVDINTERFACE pVDIfsImage,
1269 PVDINTERFACE pVDIfsOperation);
1270
1271/**
1272 * Merges two images (not necessarily with direct parent/child relationship).
1273 * As a side effect the source image and potentially the other images which
1274 * are also merged to the destination are deleted from both the disk and the
1275 * images in the HDD container.
1276 *
1277 * @return VBox status code.
1278 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1279 * @param pDisk Pointer to HDD container.
1280 * @param nImageFrom Image number to merge from, counts from 0. 0 is always base image of container.
1281 * @param nImageTo Image number to merge to, counts from 0. 0 is always base image of container.
1282 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
1283 */
1284VBOXDDU_DECL(int) VDMerge(PVBOXHDD pDisk, unsigned nImageFrom,
1285 unsigned nImageTo, PVDINTERFACE pVDIfsOperation);
1286
1287/**
1288 * Copies an image from one HDD container to another.
1289 * The copy is opened in the target HDD container.
1290 * It is possible to convert between different image formats, because the
1291 * backend for the destination may be different from the source.
1292 * If both the source and destination reference the same HDD container,
1293 * then the image is moved (by copying/deleting or renaming) to the new location.
1294 * The source container is unchanged if the move operation fails, otherwise
1295 * the image at the new location is opened in the same way as the old one was.
1296 *
1297 * @return VBox status code.
1298 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1299 * @param pDiskFrom Pointer to source HDD container.
1300 * @param nImage Image number, counts from 0. 0 is always base image of container.
1301 * @param pDiskTo Pointer to destination HDD container.
1302 * @param pszBackend Name of the image file backend to use (may be NULL to use the same as the source, case insensitive).
1303 * @param pszFilename New name of the image (may be NULL if pDiskFrom == pDiskTo).
1304 * @param fMoveByRename If true, attempt to perform a move by renaming (if successful the new size is ignored).
1305 * @param cbSize New image size (0 means leave unchanged).
1306 * @param uImageFlags Flags specifying special destination image features.
1307 * @param pDstUuid New UUID of the destination image. If NULL, a new UUID is created.
1308 * This parameter is used if and only if a true copy is created.
1309 * In all rename/move cases the UUIDs are copied over.
1310 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
1311 * @param pDstVDIfsImage Pointer to the per-image VD interface list, for the
1312 * destination image.
1313 * @param pDstVDIfsOperation Pointer to the per-operation VD interface list,
1314 * for the destination operation.
1315 */
1316VBOXDDU_DECL(int) VDCopy(PVBOXHDD pDiskFrom, unsigned nImage, PVBOXHDD pDiskTo,
1317 const char *pszBackend, const char *pszFilename,
1318 bool fMoveByRename, uint64_t cbSize,
1319 unsigned uImageFlags, PCRTUUID pDstUuid,
1320 PVDINTERFACE pVDIfsOperation,
1321 PVDINTERFACE pDstVDIfsImage,
1322 PVDINTERFACE pDstVDIfsOperation);
1323
1324/**
1325 * Optimizes the storage consumption of an image. Typically the unused blocks
1326 * have to be wiped with zeroes to achieve a substantial reduced storage use.
1327 * Another optimization done is reordering the image blocks, which can provide
1328 * a significant performance boost, as reads and writes tend to use less random
1329 * file offsets.
1330 *
1331 * @return VBox status code.
1332 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1333 * @return VERR_VD_IMAGE_READ_ONLY if image is not writable.
1334 * @return VERR_NOT_SUPPORTED if this kind of image can be compacted, but
1335 * this isn't supported yet.
1336 * @param pDisk Pointer to HDD container.
1337 * @param nImage Image number, counts from 0. 0 is always base image of container.
1338 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
1339 */
1340VBOXDDU_DECL(int) VDCompact(PVBOXHDD pDisk, unsigned nImage,
1341 PVDINTERFACE pVDIfsOperation);
1342
1343/**
1344 * Closes the last opened image file in HDD container.
1345 * If previous image file was opened in read-only mode (that is normal) and closing image
1346 * was opened in read-write mode (the whole disk was in read-write mode) - the previous image
1347 * will be reopened in read/write mode.
1348 *
1349 * @return VBox status code.
1350 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1351 * @param pDisk Pointer to HDD container.
1352 * @param fDelete If true, delete the image from the host disk.
1353 */
1354VBOXDDU_DECL(int) VDClose(PVBOXHDD pDisk, bool fDelete);
1355
1356/**
1357 * Closes all opened image files in HDD container.
1358 *
1359 * @return VBox status code.
1360 * @param pDisk Pointer to HDD container.
1361 */
1362VBOXDDU_DECL(int) VDCloseAll(PVBOXHDD pDisk);
1363
1364/**
1365 * Read data from virtual HDD.
1366 *
1367 * @return VBox status code.
1368 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1369 * @param pDisk Pointer to HDD container.
1370 * @param uOffset Offset of first reading byte from start of disk.
1371 * Must be aligned to a sector boundary.
1372 * @param pvBuf Pointer to buffer for reading data.
1373 * @param cbRead Number of bytes to read.
1374 * Must be aligned to a sector boundary.
1375 */
1376VBOXDDU_DECL(int) VDRead(PVBOXHDD pDisk, uint64_t uOffset, void *pvBuf, size_t cbRead);
1377
1378/**
1379 * Write data to virtual HDD.
1380 *
1381 * @return VBox status code.
1382 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1383 * @param pDisk Pointer to HDD container.
1384 * @param uOffset Offset of first writing byte from start of disk.
1385 * Must be aligned to a sector boundary.
1386 * @param pvBuf Pointer to buffer for writing data.
1387 * @param cbWrite Number of bytes to write.
1388 * Must be aligned to a sector boundary.
1389 */
1390VBOXDDU_DECL(int) VDWrite(PVBOXHDD pDisk, uint64_t uOffset, const void *pvBuf, size_t cbWrite);
1391
1392/**
1393 * Make sure the on disk representation of a virtual HDD is up to date.
1394 *
1395 * @return VBox status code.
1396 * @return VERR_VD_NOT_OPENED if no image is opened in HDD container.
1397 * @param pDisk Pointer to HDD container.
1398 */
1399VBOXDDU_DECL(int) VDFlush(PVBOXHDD pDisk);
1400
1401/**
1402 * Get number of opened images in HDD container.
1403 *
1404 * @return Number of opened images for HDD container. 0 if no images have been opened.
1405 * @param pDisk Pointer to HDD container.
1406 */
1407VBOXDDU_DECL(unsigned) VDGetCount(PVBOXHDD pDisk);
1408
1409/**
1410 * Get read/write mode of HDD container.
1411 *
1412 * @return Virtual disk ReadOnly status.
1413 * @return true if no image is opened in HDD container.
1414 * @param pDisk Pointer to HDD container.
1415 */
1416VBOXDDU_DECL(bool) VDIsReadOnly(PVBOXHDD pDisk);
1417
1418/**
1419 * Get total capacity of an image in HDD container.
1420 *
1421 * @return Virtual disk size in bytes.
1422 * @return 0 if image with specified number was not opened.
1423 * @param pDisk Pointer to HDD container.
1424 * @param nImage Image number, counts from 0. 0 is always base image of container.
1425 */
1426VBOXDDU_DECL(uint64_t) VDGetSize(PVBOXHDD pDisk, unsigned nImage);
1427
1428/**
1429 * Get total file size of an image in HDD container.
1430 *
1431 * @return Virtual disk size in bytes.
1432 * @return 0 if image with specified number was not opened.
1433 * @param pDisk Pointer to HDD container.
1434 * @param nImage Image number, counts from 0. 0 is always base image of container.
1435 */
1436VBOXDDU_DECL(uint64_t) VDGetFileSize(PVBOXHDD pDisk, unsigned nImage);
1437
1438/**
1439 * Get virtual disk PCHS geometry of an image in HDD container.
1440 *
1441 * @return VBox status code.
1442 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1443 * @return VERR_VD_GEOMETRY_NOT_SET if no geometry present in the HDD container.
1444 * @param pDisk Pointer to HDD container.
1445 * @param nImage Image number, counts from 0. 0 is always base image of container.
1446 * @param pPCHSGeometry Where to store PCHS geometry. Not NULL.
1447 */
1448VBOXDDU_DECL(int) VDGetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1449 PPDMMEDIAGEOMETRY pPCHSGeometry);
1450
1451/**
1452 * Store virtual disk PCHS geometry of an image in HDD container.
1453 *
1454 * @return VBox status code.
1455 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1456 * @param pDisk Pointer to HDD container.
1457 * @param nImage Image number, counts from 0. 0 is always base image of container.
1458 * @param pPCHSGeometry Where to load PCHS geometry from. Not NULL.
1459 */
1460VBOXDDU_DECL(int) VDSetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1461 PCPDMMEDIAGEOMETRY pPCHSGeometry);
1462
1463/**
1464 * Get virtual disk LCHS geometry of an image in HDD container.
1465 *
1466 * @return VBox status code.
1467 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1468 * @return VERR_VD_GEOMETRY_NOT_SET if no geometry present in the HDD container.
1469 * @param pDisk Pointer to HDD container.
1470 * @param nImage Image number, counts from 0. 0 is always base image of container.
1471 * @param pLCHSGeometry Where to store LCHS geometry. Not NULL.
1472 */
1473VBOXDDU_DECL(int) VDGetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1474 PPDMMEDIAGEOMETRY pLCHSGeometry);
1475
1476/**
1477 * Store virtual disk LCHS geometry of an image in HDD container.
1478 *
1479 * @return VBox status code.
1480 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1481 * @param pDisk Pointer to HDD container.
1482 * @param nImage Image number, counts from 0. 0 is always base image of container.
1483 * @param pLCHSGeometry Where to load LCHS geometry from. Not NULL.
1484 */
1485VBOXDDU_DECL(int) VDSetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage,
1486 PCPDMMEDIAGEOMETRY pLCHSGeometry);
1487
1488/**
1489 * Get version of image in HDD container.
1490 *
1491 * @return VBox status code.
1492 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1493 * @param pDisk Pointer to HDD container.
1494 * @param nImage Image number, counts from 0. 0 is always base image of container.
1495 * @param puVersion Where to store the image version.
1496 */
1497VBOXDDU_DECL(int) VDGetVersion(PVBOXHDD pDisk, unsigned nImage,
1498 unsigned *puVersion);
1499
1500/**
1501 * List the capabilities of image backend in HDD container.
1502 *
1503 * @return VBox status code.
1504 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1505 * @param pDisk Pointer to the HDD container.
1506 * @param nImage Image number, counts from 0. 0 is always base image of container.
1507 * @param pbackendInfo Where to store the backend information.
1508 */
1509VBOXDDU_DECL(int) VDBackendInfoSingle(PVBOXHDD pDisk, unsigned nImage,
1510 PVDBACKENDINFO pBackendInfo);
1511
1512/**
1513 * Get flags of image in HDD container.
1514 *
1515 * @return VBox status code.
1516 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1517 * @param pDisk Pointer to HDD container.
1518 * @param nImage Image number, counts from 0. 0 is always base image of container.
1519 * @param puImageFlags Where to store the image flags.
1520 */
1521VBOXDDU_DECL(int) VDGetImageFlags(PVBOXHDD pDisk, unsigned nImage, unsigned *puImageFlags);
1522
1523/**
1524 * Get open flags of image in HDD container.
1525 *
1526 * @return VBox status code.
1527 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1528 * @param pDisk Pointer to HDD container.
1529 * @param nImage Image number, counts from 0. 0 is always base image of container.
1530 * @param puOpenFlags Where to store the image open flags.
1531 */
1532VBOXDDU_DECL(int) VDGetOpenFlags(PVBOXHDD pDisk, unsigned nImage,
1533 unsigned *puOpenFlags);
1534
1535/**
1536 * Set open flags of image in HDD container.
1537 * This operation may cause file locking changes and/or files being reopened.
1538 * Note that in case of unrecoverable error all images in HDD container will be closed.
1539 *
1540 * @return VBox status code.
1541 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1542 * @param pDisk Pointer to HDD container.
1543 * @param nImage Image number, counts from 0. 0 is always base image of container.
1544 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
1545 */
1546VBOXDDU_DECL(int) VDSetOpenFlags(PVBOXHDD pDisk, unsigned nImage,
1547 unsigned uOpenFlags);
1548
1549/**
1550 * Get base filename of image in HDD container. Some image formats use
1551 * other filenames as well, so don't use this for anything but informational
1552 * purposes.
1553 *
1554 * @return VBox status code.
1555 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1556 * @return VERR_BUFFER_OVERFLOW if pszFilename buffer too small to hold filename.
1557 * @param pDisk Pointer to HDD container.
1558 * @param nImage Image number, counts from 0. 0 is always base image of container.
1559 * @param pszFilename Where to store the image file name.
1560 * @param cbFilename Size of buffer pszFilename points to.
1561 */
1562VBOXDDU_DECL(int) VDGetFilename(PVBOXHDD pDisk, unsigned nImage,
1563 char *pszFilename, unsigned cbFilename);
1564
1565/**
1566 * Get the comment line of image in HDD container.
1567 *
1568 * @return VBox status code.
1569 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1570 * @return VERR_BUFFER_OVERFLOW if pszComment buffer too small to hold comment text.
1571 * @param pDisk Pointer to HDD container.
1572 * @param nImage Image number, counts from 0. 0 is always base image of container.
1573 * @param pszComment Where to store the comment string of image. NULL is ok.
1574 * @param cbComment The size of pszComment buffer. 0 is ok.
1575 */
1576VBOXDDU_DECL(int) VDGetComment(PVBOXHDD pDisk, unsigned nImage,
1577 char *pszComment, unsigned cbComment);
1578
1579/**
1580 * Changes the comment line of image in HDD container.
1581 *
1582 * @return VBox status code.
1583 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1584 * @param pDisk Pointer to HDD container.
1585 * @param nImage Image number, counts from 0. 0 is always base image of container.
1586 * @param pszComment New comment string (UTF-8). NULL is allowed to reset the comment.
1587 */
1588VBOXDDU_DECL(int) VDSetComment(PVBOXHDD pDisk, unsigned nImage,
1589 const char *pszComment);
1590
1591/**
1592 * Get UUID of image in HDD container.
1593 *
1594 * @return VBox status code.
1595 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1596 * @param pDisk Pointer to HDD container.
1597 * @param nImage Image number, counts from 0. 0 is always base image of container.
1598 * @param pUuid Where to store the image UUID.
1599 */
1600VBOXDDU_DECL(int) VDGetUuid(PVBOXHDD pDisk, unsigned nImage, PRTUUID pUuid);
1601
1602/**
1603 * Set the image's UUID. Should not be used by normal applications.
1604 *
1605 * @return VBox status code.
1606 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1607 * @param pDisk Pointer to HDD container.
1608 * @param nImage Image number, counts from 0. 0 is always base image of container.
1609 * @param pUuid New UUID of the image. If NULL, a new UUID is created.
1610 */
1611VBOXDDU_DECL(int) VDSetUuid(PVBOXHDD pDisk, unsigned nImage, PCRTUUID pUuid);
1612
1613/**
1614 * Get last modification UUID of image in HDD container.
1615 *
1616 * @return VBox status code.
1617 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1618 * @param pDisk Pointer to HDD container.
1619 * @param nImage Image number, counts from 0. 0 is always base image of container.
1620 * @param pUuid Where to store the image modification UUID.
1621 */
1622VBOXDDU_DECL(int) VDGetModificationUuid(PVBOXHDD pDisk, unsigned nImage,
1623 PRTUUID pUuid);
1624
1625/**
1626 * Set the image's last modification UUID. Should not be used by normal applications.
1627 *
1628 * @return VBox status code.
1629 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1630 * @param pDisk Pointer to HDD container.
1631 * @param nImage Image number, counts from 0. 0 is always base image of container.
1632 * @param pUuid New modification UUID of the image. If NULL, a new UUID is created.
1633 */
1634VBOXDDU_DECL(int) VDSetModificationUuid(PVBOXHDD pDisk, unsigned nImage,
1635 PCRTUUID pUuid);
1636
1637/**
1638 * Get parent UUID of image in HDD container.
1639 *
1640 * @return VBox status code.
1641 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1642 * @param pDisk Pointer to HDD container.
1643 * @param nImage Image number, counts from 0. 0 is always base image of the container.
1644 * @param pUuid Where to store the parent image UUID.
1645 */
1646VBOXDDU_DECL(int) VDGetParentUuid(PVBOXHDD pDisk, unsigned nImage,
1647 PRTUUID pUuid);
1648
1649/**
1650 * Set the image's parent UUID. Should not be used by normal applications.
1651 *
1652 * @return VBox status code.
1653 * @param pDisk Pointer to HDD container.
1654 * @param nImage Image number, counts from 0. 0 is always base image of container.
1655 * @param pUuid New parent UUID of the image. If NULL, a new UUID is created.
1656 */
1657VBOXDDU_DECL(int) VDSetParentUuid(PVBOXHDD pDisk, unsigned nImage,
1658 PCRTUUID pUuid);
1659
1660
1661/**
1662 * Debug helper - dumps all opened images in HDD container into the log file.
1663 *
1664 * @param pDisk Pointer to HDD container.
1665 */
1666VBOXDDU_DECL(void) VDDumpImages(PVBOXHDD pDisk);
1667
1668
1669/**
1670 * Query if asynchronous operations are supported for this disk.
1671 *
1672 * @return VBox status code.
1673 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.
1674 * @param pDisk Pointer to the HDD container.
1675 * @param nImage Image number, counts from 0. 0 is always base image of container.
1676 * @param pfAIOSupported Where to store if async IO is supported.
1677 */
1678VBOXDDU_DECL(int) VDImageIsAsyncIOSupported(PVBOXHDD pDisk, unsigned nImage, bool *pfAIOSupported);
1679
1680
1681/**
1682 * Start a asynchronous read request.
1683 *
1684 * @return VBox status code.
1685 * @param pDisk Pointer to the HDD container.
1686 * @param uOffset The offset of the virtual disk to read from.
1687 * @param cbRead How many bytes to read.
1688 * @param paSeg Pointer to an array of segments.
1689 * @param cSeg Number of segments in the array.
1690 * @param pvUser User data which is passed on completion
1691 */
1692VBOXDDU_DECL(int) VDAsyncRead(PVBOXHDD pDisk, uint64_t uOffset, size_t cbRead,
1693 PPDMDATASEG paSeg, unsigned cSeg,
1694 void *pvUser);
1695
1696
1697/**
1698 * Start a asynchronous write request.
1699 *
1700 * @return VBox status code.
1701 * @param pDisk Pointer to the HDD container.
1702 * @param uOffset The offset of the virtual disk to write to.
1703 * @param cbWrtie How many bytes to write.
1704 * @param paSeg Pointer to an array of segments.
1705 * @param cSeg Number of segments in the array.
1706 * @param pvUser User data which is passed on completion.
1707 */
1708VBOXDDU_DECL(int) VDAsyncWrite(PVBOXHDD pDisk, uint64_t uOffset, size_t cbWrite,
1709 PPDMDATASEG paSeg, unsigned cSeg,
1710 void *pvUser);
1711
1712
1713__END_DECLS
1714
1715/** @} */
1716
1717#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