VirtualBox

source: vbox/trunk/include/VBox/vd-ifs.h@ 48871

Last change on this file since 48871 was 48871, checked in by vboxsync, 11 years ago

DMG: Fixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 46.9 KB
Line 
1/** @file
2 * VD Container API - interfaces.
3 */
4
5/*
6 * Copyright (C) 2011-2012 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_Interfaces_h
27#define ___VBox_VD_Interfaces_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 <VBox/cdefs.h>
36#include <VBox/types.h>
37#include <VBox/err.h>
38
39RT_C_DECLS_BEGIN
40
41/** Interface header magic. */
42#define VDINTERFACE_MAGIC UINT32_C(0x19701015)
43
44/**
45 * Supported interface types.
46 */
47typedef enum VDINTERFACETYPE
48{
49 /** First valid interface. */
50 VDINTERFACETYPE_FIRST = 0,
51 /** Interface to pass error message to upper layers. Per-disk. */
52 VDINTERFACETYPE_ERROR = VDINTERFACETYPE_FIRST,
53 /** Interface for I/O operations. Per-image. */
54 VDINTERFACETYPE_IO,
55 /** Interface for progress notification. Per-operation. */
56 VDINTERFACETYPE_PROGRESS,
57 /** Interface for configuration information. Per-image. */
58 VDINTERFACETYPE_CONFIG,
59 /** Interface for TCP network stack. Per-image. */
60 VDINTERFACETYPE_TCPNET,
61 /** Interface for getting parent image state. Per-operation. */
62 VDINTERFACETYPE_PARENTSTATE,
63 /** Interface for synchronizing accesses from several threads. Per-disk. */
64 VDINTERFACETYPE_THREADSYNC,
65 /** Interface for I/O between the generic VBoxHDD code and the backend. Per-image (internal).
66 * This interface is completely internal and must not be used elsewhere. */
67 VDINTERFACETYPE_IOINT,
68 /** Interface to query the use of block ranges on the disk. Per-operation. */
69 VDINTERFACETYPE_QUERYRANGEUSE,
70 /** invalid interface. */
71 VDINTERFACETYPE_INVALID
72} VDINTERFACETYPE;
73
74/**
75 * Common structure for all interfaces and at the beginning of all types.
76 */
77typedef struct VDINTERFACE
78{
79 uint32_t u32Magic;
80 /** Human readable interface name. */
81 const char *pszInterfaceName;
82 /** Pointer to the next common interface structure. */
83 struct VDINTERFACE *pNext;
84 /** Interface type. */
85 VDINTERFACETYPE enmInterface;
86 /** Size of the interface. */
87 size_t cbSize;
88 /** Opaque user data which is passed on every call. */
89 void *pvUser;
90} VDINTERFACE;
91/** Pointer to a VDINTERFACE. */
92typedef VDINTERFACE *PVDINTERFACE;
93/** Pointer to a const VDINTERFACE. */
94typedef const VDINTERFACE *PCVDINTERFACE;
95
96/**
97 * Helper functions to handle interface lists.
98 *
99 * @note These interface lists are used consistently to pass per-disk,
100 * per-image and/or per-operation callbacks. Those three purposes are strictly
101 * separate. See the individual interface declarations for what context they
102 * apply to. The caller is responsible for ensuring that the lifetime of the
103 * interface descriptors is appropriate for the category of interface.
104 */
105
106/**
107 * Get a specific interface from a list of interfaces specified by the type.
108 *
109 * @return Pointer to the matching interface or NULL if none was found.
110 * @param pVDIfs Pointer to the VD interface list.
111 * @param enmInterface Interface to search for.
112 */
113DECLINLINE(PVDINTERFACE) VDInterfaceGet(PVDINTERFACE pVDIfs, VDINTERFACETYPE enmInterface)
114{
115 AssertMsgReturn( enmInterface >= VDINTERFACETYPE_FIRST
116 && enmInterface < VDINTERFACETYPE_INVALID,
117 ("enmInterface=%u", enmInterface), NULL);
118
119 while (pVDIfs)
120 {
121 AssertMsgBreak(pVDIfs->u32Magic == VDINTERFACE_MAGIC,
122 ("u32Magic=%#x\n", pVDIfs->u32Magic));
123
124 if (pVDIfs->enmInterface == enmInterface)
125 return pVDIfs;
126 pVDIfs = pVDIfs->pNext;
127 }
128
129 /* No matching interface was found. */
130 return NULL;
131}
132
133/**
134 * Add an interface to a list of interfaces.
135 *
136 * @return VBox status code.
137 * @param pInterface Pointer to an unitialized common interface structure.
138 * @param pszName Name of the interface.
139 * @param enmInterface Type of the interface.
140 * @param pvUser Opaque user data passed on every function call.
141 * @param ppVDIfs Pointer to the VD interface list.
142 */
143DECLINLINE(int) VDInterfaceAdd(PVDINTERFACE pInterface, const char *pszName,
144 VDINTERFACETYPE enmInterface, void *pvUser,
145 size_t cbInterface, PVDINTERFACE *ppVDIfs)
146{
147 /* Argument checks. */
148 AssertMsgReturn( enmInterface >= VDINTERFACETYPE_FIRST
149 && enmInterface < VDINTERFACETYPE_INVALID,
150 ("enmInterface=%u", enmInterface), VERR_INVALID_PARAMETER);
151
152 AssertMsgReturn(VALID_PTR(ppVDIfs),
153 ("pInterfaceList=%#p", ppVDIfs),
154 VERR_INVALID_PARAMETER);
155
156 /* Fill out interface descriptor. */
157 pInterface->u32Magic = VDINTERFACE_MAGIC;
158 pInterface->cbSize = cbInterface;
159 pInterface->pszInterfaceName = pszName;
160 pInterface->enmInterface = enmInterface;
161 pInterface->pvUser = pvUser;
162 pInterface->pNext = *ppVDIfs;
163
164 /* Remember the new start of the list. */
165 *ppVDIfs = pInterface;
166
167 return VINF_SUCCESS;
168}
169
170/**
171 * Removes an interface from a list of interfaces.
172 *
173 * @return VBox status code
174 * @param pInterface Pointer to an initialized common interface structure to remove.
175 * @param ppVDIfs Pointer to the VD interface list to remove from.
176 */
177DECLINLINE(int) VDInterfaceRemove(PVDINTERFACE pInterface, PVDINTERFACE *ppVDIfs)
178{
179 int rc = VERR_NOT_FOUND;
180
181 /* Argument checks. */
182 AssertMsgReturn(VALID_PTR(pInterface),
183 ("pInterface=%#p", pInterface),
184 VERR_INVALID_PARAMETER);
185
186 AssertMsgReturn(VALID_PTR(ppVDIfs),
187 ("pInterfaceList=%#p", ppVDIfs),
188 VERR_INVALID_PARAMETER);
189
190 if (*ppVDIfs)
191 {
192 PVDINTERFACE pPrev = NULL;
193 PVDINTERFACE pCurr = *ppVDIfs;
194
195 while ( pCurr
196 && (pCurr != pInterface))
197 {
198 pPrev = pCurr;
199 pCurr = pCurr->pNext;
200 }
201
202 /* First interface */
203 if (!pPrev)
204 {
205 *ppVDIfs = pCurr->pNext;
206 rc = VINF_SUCCESS;
207 }
208 else if (pCurr)
209 {
210 pPrev = pCurr->pNext;
211 rc = VINF_SUCCESS;
212 }
213 }
214
215 return rc;
216}
217
218/**
219 * Interface to deliver error messages (and also informational messages)
220 * to upper layers.
221 *
222 * Per-disk interface. Optional, but think twice if you want to miss the
223 * opportunity of reporting better human-readable error messages.
224 */
225typedef struct VDINTERFACEERROR
226{
227 /**
228 * Common interface header.
229 */
230 VDINTERFACE Core;
231
232 /**
233 * Error message callback. Must be able to accept special IPRT format
234 * strings.
235 *
236 * @param pvUser The opaque data passed on container creation.
237 * @param rc The VBox error code.
238 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
239 * @param pszFormat Error message format string.
240 * @param va Error message arguments.
241 */
242 DECLR3CALLBACKMEMBER(void, pfnError, (void *pvUser, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va));
243
244 /**
245 * Informational message callback. May be NULL. Used e.g. in
246 * VDDumpImages(). Must be able to accept special IPRT format strings.
247 *
248 * @return VBox status code.
249 * @param pvUser The opaque data passed on container creation.
250 * @param pszFormat Message format string.
251 * @param va Message arguments.
252 */
253 DECLR3CALLBACKMEMBER(int, pfnMessage, (void *pvUser, const char *pszFormat, va_list va));
254
255} VDINTERFACEERROR, *PVDINTERFACEERROR;
256
257/**
258 * Get error interface from interface list.
259 *
260 * @return Pointer to the first error interface in the list.
261 * @param pVDIfs Pointer to the interface list.
262 */
263DECLINLINE(PVDINTERFACEERROR) VDIfErrorGet(PVDINTERFACE pVDIfs)
264{
265 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_ERROR);
266
267 /* Check that the interface descriptor is a progress interface. */
268 AssertMsgReturn( !pIf
269 || ( (pIf->enmInterface == VDINTERFACETYPE_ERROR)
270 && (pIf->cbSize == sizeof(VDINTERFACEERROR))),
271 ("Not an error interface\n"), NULL);
272
273 return (PVDINTERFACEERROR)pIf;
274}
275
276/**
277 * Signal an error to the frontend.
278 *
279 * @returns VBox status code.
280 * @param pIfError The error interface.
281 * @param rc The status code.
282 * @param RT_SRC_POS_DECL The position in the source code.
283 * @param pszFormat The format string to pass.
284 * @param ... Arguments to the format string.
285 */
286DECLINLINE(int) vdIfError(PVDINTERFACEERROR pIfError, int rc, RT_SRC_POS_DECL,
287 const char *pszFormat, ...)
288{
289 va_list va;
290 va_start(va, pszFormat);
291 if (pIfError)
292 pIfError->pfnError(pIfError->Core.pvUser, rc, RT_SRC_POS_ARGS, pszFormat, va);
293 va_end(va);
294 return rc;
295}
296
297/**
298 * Signal an informational message to the frontend.
299 *
300 * @returns VBox status code.
301 * @param pIfError The error interface.
302 * @param pszFormat The format string to pass.
303 * @param ... Arguments to the format string.
304 */
305DECLINLINE(int) vdIfErrorMessage(PVDINTERFACEERROR pIfError, const char *pszFormat, ...)
306{
307 int rc = VINF_SUCCESS;
308 va_list va;
309 va_start(va, pszFormat);
310 if (pIfError && pIfError->pfnMessage)
311 rc = pIfError->pfnMessage(pIfError->Core.pvUser, pszFormat, va);
312 va_end(va);
313 return rc;
314}
315
316/**
317 * Completion callback which is called by the interface owner
318 * to inform the backend that a task finished.
319 *
320 * @return VBox status code.
321 * @param pvUser Opaque user data which is passed on request submission.
322 * @param rcReq Status code of the completed request.
323 */
324typedef DECLCALLBACK(int) FNVDCOMPLETED(void *pvUser, int rcReq);
325/** Pointer to FNVDCOMPLETED() */
326typedef FNVDCOMPLETED *PFNVDCOMPLETED;
327
328/**
329 * Support interface for I/O
330 *
331 * Per-image. Optional as input.
332 */
333typedef struct VDINTERFACEIO
334{
335 /**
336 * Common interface header.
337 */
338 VDINTERFACE Core;
339
340 /**
341 * Open callback
342 *
343 * @return VBox status code.
344 * @param pvUser The opaque data passed on container creation.
345 * @param pszLocation Name of the location to open.
346 * @param fOpen Flags for opening the backend.
347 * See RTFILE_O_* #defines, inventing another set
348 * of open flags is not worth the mapping effort.
349 * @param pfnCompleted The callback which is called whenever a task
350 * completed. The backend has to pass the user data
351 * of the request initiator (ie the one who calls
352 * VDAsyncRead or VDAsyncWrite) in pvCompletion
353 * if this is NULL.
354 * @param ppStorage Where to store the opaque storage handle.
355 */
356 DECLR3CALLBACKMEMBER(int, pfnOpen, (void *pvUser, const char *pszLocation,
357 uint32_t fOpen,
358 PFNVDCOMPLETED pfnCompleted,
359 void **ppStorage));
360
361 /**
362 * Close callback.
363 *
364 * @return VBox status code.
365 * @param pvUser The opaque data passed on container creation.
366 * @param pStorage The opaque storage handle to close.
367 */
368 DECLR3CALLBACKMEMBER(int, pfnClose, (void *pvUser, void *pStorage));
369
370 /**
371 * Delete callback.
372 *
373 * @return VBox status code.
374 * @param pvUser The opaque data passed on container creation.
375 * @param pcszFilename Name of the file to delete.
376 */
377 DECLR3CALLBACKMEMBER(int, pfnDelete, (void *pvUser, const char *pcszFilename));
378
379 /**
380 * Move callback.
381 *
382 * @return VBox status code.
383 * @param pvUser The opaque data passed on container creation.
384 * @param pcszSrc The path to the source file.
385 * @param pcszDst The path to the destination file.
386 * This file will be created.
387 * @param fMove A combination of the RTFILEMOVE_* flags.
388 */
389 DECLR3CALLBACKMEMBER(int, pfnMove, (void *pvUser, const char *pcszSrc, const char *pcszDst, unsigned fMove));
390
391 /**
392 * Returns the free space on a disk.
393 *
394 * @return VBox status code.
395 * @param pvUser The opaque data passed on container creation.
396 * @param pcszFilename Name of a file to identify the disk.
397 * @param pcbFreeSpace Where to store the free space of the disk.
398 */
399 DECLR3CALLBACKMEMBER(int, pfnGetFreeSpace, (void *pvUser, const char *pcszFilename, int64_t *pcbFreeSpace));
400
401 /**
402 * Returns the last modification timestamp of a file.
403 *
404 * @return VBox status code.
405 * @param pvUser The opaque data passed on container creation.
406 * @param pcszFilename Name of a file to identify the disk.
407 * @param pModificationTime Where to store the timestamp of the file.
408 */
409 DECLR3CALLBACKMEMBER(int, pfnGetModificationTime, (void *pvUser, const char *pcszFilename, PRTTIMESPEC pModificationTime));
410
411 /**
412 * Returns the size of the opened storage backend.
413 *
414 * @return VBox status code.
415 * @param pvUser The opaque data passed on container creation.
416 * @param pStorage The opaque storage handle to close.
417 * @param pcbSize Where to store the size of the storage backend.
418 */
419 DECLR3CALLBACKMEMBER(int, pfnGetSize, (void *pvUser, void *pStorage, uint64_t *pcbSize));
420
421 /**
422 * Sets the size of the opened storage backend if possible.
423 *
424 * @return VBox status code.
425 * @retval VERR_NOT_SUPPORTED if the backend does not support this operation.
426 * @param pvUser The opaque data passed on container creation.
427 * @param pStorage The opaque storage handle to close.
428 * @param cbSize The new size of the image.
429 */
430 DECLR3CALLBACKMEMBER(int, pfnSetSize, (void *pvUser, void *pStorage, uint64_t cbSize));
431
432 /**
433 * Synchronous write callback.
434 *
435 * @return VBox status code.
436 * @param pvUser The opaque data passed on container creation.
437 * @param pStorage The storage handle to use.
438 * @param uOffset The offset to start from.
439 * @param pvBuffer Pointer to the bits need to be written.
440 * @param cbBuffer How many bytes to write.
441 * @param pcbWritten Where to store how many bytes were actually written.
442 */
443 DECLR3CALLBACKMEMBER(int, pfnWriteSync, (void *pvUser, void *pStorage, uint64_t uOffset,
444 const void *pvBuffer, size_t cbBuffer, size_t *pcbWritten));
445
446 /**
447 * Synchronous read callback.
448 *
449 * @return VBox status code.
450 * @param pvUser The opaque data passed on container creation.
451 * @param pStorage The storage handle to use.
452 * @param uOffset The offset to start from.
453 * @param pvBuffer Where to store the read bits.
454 * @param cbBuffer How many bytes to read.
455 * @param pcbRead Where to store how many bytes were actually read.
456 */
457 DECLR3CALLBACKMEMBER(int, pfnReadSync, (void *pvUser, void *pStorage, uint64_t uOffset,
458 void *pvBuffer, size_t cbBuffer, size_t *pcbRead));
459
460 /**
461 * Flush data to the storage backend.
462 *
463 * @return VBox status code.
464 * @param pvUser The opaque data passed on container creation.
465 * @param pStorage The storage handle to flush.
466 */
467 DECLR3CALLBACKMEMBER(int, pfnFlushSync, (void *pvUser, void *pStorage));
468
469 /**
470 * Initiate an asynchronous read request.
471 *
472 * @return VBox status code.
473 * @param pvUser The opaque user data passed on container creation.
474 * @param pStorage The storage handle.
475 * @param uOffset The offset to start reading from.
476 * @param paSegments Scatter gather list to store the data in.
477 * @param cSegments Number of segments in the list.
478 * @param cbRead How many bytes to read.
479 * @param pvCompletion The opaque user data which is returned upon completion.
480 * @param ppTask Where to store the opaque task handle.
481 */
482 DECLR3CALLBACKMEMBER(int, pfnReadAsync, (void *pvUser, void *pStorage, uint64_t uOffset,
483 PCRTSGSEG paSegments, size_t cSegments,
484 size_t cbRead, void *pvCompletion,
485 void **ppTask));
486
487 /**
488 * Initiate an asynchronous write request.
489 *
490 * @return VBox status code.
491 * @param pvUser The opaque user data passed on conatiner creation.
492 * @param pStorage The storage handle.
493 * @param uOffset The offset to start writing to.
494 * @param paSegments Scatter gather list of the data to write
495 * @param cSegments Number of segments in the list.
496 * @param cbWrite How many bytes to write.
497 * @param pvCompletion The opaque user data which is returned upon completion.
498 * @param ppTask Where to store the opaque task handle.
499 */
500 DECLR3CALLBACKMEMBER(int, pfnWriteAsync, (void *pvUser, void *pStorage, uint64_t uOffset,
501 PCRTSGSEG paSegments, size_t cSegments,
502 size_t cbWrite, void *pvCompletion,
503 void **ppTask));
504
505 /**
506 * Initiates an async flush request.
507 *
508 * @return VBox status code.
509 * @param pvUser The opaque data passed on container creation.
510 * @param pStorage The storage handle to flush.
511 * @param pvCompletion The opaque user data which is returned upon completion.
512 * @param ppTask Where to store the opaque task handle.
513 */
514 DECLR3CALLBACKMEMBER(int, pfnFlushAsync, (void *pvUser, void *pStorage,
515 void *pvCompletion, void **ppTask));
516
517} VDINTERFACEIO, *PVDINTERFACEIO;
518
519/**
520 * Get I/O interface from interface list.
521 *
522 * @return Pointer to the first I/O interface in the list.
523 * @param pVDIfs Pointer to the interface list.
524 */
525DECLINLINE(PVDINTERFACEIO) VDIfIoGet(PVDINTERFACE pVDIfs)
526{
527 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_IO);
528
529 /* Check that the interface descriptor is a progress interface. */
530 AssertMsgReturn( !pIf
531 || ( (pIf->enmInterface == VDINTERFACETYPE_IO)
532 && (pIf->cbSize == sizeof(VDINTERFACEIO))),
533 ("Not a I/O interface"), NULL);
534
535 return (PVDINTERFACEIO)pIf;
536}
537
538DECLINLINE(int) vdIfIoFileOpen(PVDINTERFACEIO pIfIo, const char *pszFilename,
539 uint32_t fOpen, PFNVDCOMPLETED pfnCompleted,
540 void **ppStorage)
541{
542 return pIfIo->pfnOpen(pIfIo->Core.pvUser, pszFilename, fOpen, pfnCompleted, ppStorage);
543}
544
545DECLINLINE(int) vdIfIoFileClose(PVDINTERFACEIO pIfIo, void *pStorage)
546{
547 return pIfIo->pfnClose(pIfIo->Core.pvUser, pStorage);
548}
549
550DECLINLINE(int) vdIfIoFileDelete(PVDINTERFACEIO pIfIo, const char *pszFilename)
551{
552 return pIfIo->pfnDelete(pIfIo->Core.pvUser, pszFilename);
553}
554
555DECLINLINE(int) vdIfIoFileMove(PVDINTERFACEIO pIfIo, const char *pszSrc,
556 const char *pszDst, unsigned fMove)
557{
558 return pIfIo->pfnMove(pIfIo->Core.pvUser, pszSrc, pszDst, fMove);
559}
560
561DECLINLINE(int) vdIfIoFileGetFreeSpace(PVDINTERFACEIO pIfIo, const char *pszFilename,
562 int64_t *pcbFree)
563{
564 return pIfIo->pfnGetFreeSpace(pIfIo->Core.pvUser, pszFilename, pcbFree);
565}
566
567DECLINLINE(int) vdIfIoFileGetModificationTime(PVDINTERFACEIO pIfIo, const char *pcszFilename,
568 PRTTIMESPEC pModificationTime)
569{
570 return pIfIo->pfnGetModificationTime(pIfIo->Core.pvUser, pcszFilename,
571 pModificationTime);
572}
573
574DECLINLINE(int) vdIfIoFileGetSize(PVDINTERFACEIO pIfIo, void *pStorage,
575 uint64_t *pcbSize)
576{
577 return pIfIo->pfnGetSize(pIfIo->Core.pvUser, pStorage, pcbSize);
578}
579
580DECLINLINE(int) vdIfIoFileSetSize(PVDINTERFACEIO pIfIo, void *pStorage,
581 uint64_t cbSize)
582{
583 return pIfIo->pfnSetSize(pIfIo->Core.pvUser, pStorage, cbSize);
584}
585
586DECLINLINE(int) vdIfIoFileWriteSync(PVDINTERFACEIO pIfIo, void *pStorage,
587 uint64_t uOffset, const void *pvBuffer, size_t cbBuffer,
588 size_t *pcbWritten)
589{
590 return pIfIo->pfnWriteSync(pIfIo->Core.pvUser, pStorage, uOffset,
591 pvBuffer, cbBuffer, pcbWritten);
592}
593
594DECLINLINE(int) vdIfIoFileReadSync(PVDINTERFACEIO pIfIo, void *pStorage,
595 uint64_t uOffset, void *pvBuffer, size_t cbBuffer,
596 size_t *pcbRead)
597{
598 return pIfIo->pfnReadSync(pIfIo->Core.pvUser, pStorage, uOffset,
599 pvBuffer, cbBuffer, pcbRead);
600}
601
602DECLINLINE(int) vdIfIoFileFlushSync(PVDINTERFACEIO pIfIo, void *pStorage)
603{
604 return pIfIo->pfnFlushSync(pIfIo->Core.pvUser, pStorage);
605}
606
607/**
608 * Create a VFS stream handle around a VD I/O interface.
609 *
610 * The I/O interface will not be closed or free by the stream, the caller will
611 * do so after it is done with the stream and has released the instances of the
612 * I/O stream object returned by this API.
613 *
614 * @return VBox status code.
615 * @param pVDIfsIo Pointer to the VD I/O interface.
616 * @param pvStorage The storage argument to pass to the interface
617 * methods.
618 * @param fFlags RTFILE_O_XXX, access mask requied.
619 * @param phVfsIos Where to return the VFS I/O stream handle on
620 * success.
621 */
622VBOXDDU_DECL(int) VDIfCreateVfsStream(PVDINTERFACEIO pVDIfsIo, void *pvStorage, uint32_t fFlags, PRTVFSIOSTREAM phVfsIos);
623
624/**
625 * Create a VFS file handle around a VD I/O interface.
626 *
627 * The I/O interface will not be closed or free by the VFS file, the caller will
628 * do so after it is done with the VFS file and has released the instances of
629 * the VFS object returned by this API.
630 *
631 * @return VBox status code.
632 * @param pVDIfs Pointer to the VD I/O interface. If NULL, then @a
633 * pVDIfsInt must be specified.
634 * @param pVDIfsInt Pointer to the internal VD I/O interface. If NULL,
635 * then @ pVDIfs must be specified.
636 * @param pvStorage The storage argument to pass to the interface
637 * methods.
638 * @param fFlags RTFILE_O_XXX, access mask requied.
639 * @param phVfsFile Where to return the VFS file handle on success.
640 */
641VBOXDDU_DECL(int) VDIfCreateVfsFile(PVDINTERFACEIO pVDIfs, struct VDINTERFACEIOINT *pVDIfsInt, void *pvStorage, uint32_t fFlags, PRTVFSFILE phVfsFile);
642
643
644/**
645 * Callback which provides progress information about a currently running
646 * lengthy operation.
647 *
648 * @return VBox status code.
649 * @param pvUser The opaque user data associated with this interface.
650 * @param uPercent Completion percentage.
651 */
652typedef DECLCALLBACK(int) FNVDPROGRESS(void *pvUser, unsigned uPercentage);
653/** Pointer to FNVDPROGRESS() */
654typedef FNVDPROGRESS *PFNVDPROGRESS;
655
656/**
657 * Progress notification interface
658 *
659 * Per-operation. Optional.
660 */
661typedef struct VDINTERFACEPROGRESS
662{
663 /**
664 * Common interface header.
665 */
666 VDINTERFACE Core;
667
668 /**
669 * Progress notification callbacks.
670 */
671 PFNVDPROGRESS pfnProgress;
672
673} VDINTERFACEPROGRESS, *PVDINTERFACEPROGRESS;
674
675/**
676 * Get progress interface from interface list.
677 *
678 * @return Pointer to the first progress interface in the list.
679 * @param pVDIfs Pointer to the interface list.
680 */
681DECLINLINE(PVDINTERFACEPROGRESS) VDIfProgressGet(PVDINTERFACE pVDIfs)
682{
683 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_PROGRESS);
684
685 /* Check that the interface descriptor is a progress interface. */
686 AssertMsgReturn( !pIf
687 || ( (pIf->enmInterface == VDINTERFACETYPE_PROGRESS)
688 && (pIf->cbSize == sizeof(VDINTERFACEPROGRESS))),
689 ("Not a progress interface"), NULL);
690
691 return (PVDINTERFACEPROGRESS)pIf;
692}
693
694
695/**
696 * Configuration information interface
697 *
698 * Per-image. Optional for most backends, but mandatory for images which do
699 * not operate on files (including standard block or character devices).
700 */
701typedef struct VDINTERFACECONFIG
702{
703 /**
704 * Common interface header.
705 */
706 VDINTERFACE Core;
707
708 /**
709 * Validates that the keys are within a set of valid names.
710 *
711 * @return true if all key names are found in pszzAllowed.
712 * @return false if not.
713 * @param pvUser The opaque user data associated with this interface.
714 * @param pszzValid List of valid key names separated by '\\0' and ending with
715 * a double '\\0'.
716 */
717 DECLR3CALLBACKMEMBER(bool, pfnAreKeysValid, (void *pvUser, const char *pszzValid));
718
719 /**
720 * Retrieves the length of the string value associated with a key (including
721 * the terminator, for compatibility with CFGMR3QuerySize).
722 *
723 * @return VBox status code.
724 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
725 * @param pvUser The opaque user data associated with this interface.
726 * @param pszName Name of the key to query.
727 * @param pcbValue Where to store the value length. Non-NULL.
728 */
729 DECLR3CALLBACKMEMBER(int, pfnQuerySize, (void *pvUser, const char *pszName, size_t *pcbValue));
730
731 /**
732 * Query the string value associated with a key.
733 *
734 * @return VBox status code.
735 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
736 * VERR_CFGM_NOT_ENOUGH_SPACE means that the buffer is not big enough.
737 * @param pvUser The opaque user data associated with this interface.
738 * @param pszName Name of the key to query.
739 * @param pszValue Pointer to buffer where to store value.
740 * @param cchValue Length of value buffer.
741 */
742 DECLR3CALLBACKMEMBER(int, pfnQuery, (void *pvUser, const char *pszName, char *pszValue, size_t cchValue));
743
744} VDINTERFACECONFIG, *PVDINTERFACECONFIG;
745
746/**
747 * Get configuration information interface from interface list.
748 *
749 * @return Pointer to the first configuration information interface in the list.
750 * @param pVDIfs Pointer to the interface list.
751 */
752DECLINLINE(PVDINTERFACECONFIG) VDIfConfigGet(PVDINTERFACE pVDIfs)
753{
754 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_CONFIG);
755
756 /* Check that the interface descriptor is a progress interface. */
757 AssertMsgReturn( !pIf
758 || ( (pIf->enmInterface == VDINTERFACETYPE_CONFIG)
759 && (pIf->cbSize == sizeof(VDINTERFACECONFIG))),
760 ("Not a config interface"), NULL);
761
762 return (PVDINTERFACECONFIG)pIf;
763}
764
765/**
766 * Query configuration, validates that the keys are within a set of valid names.
767 *
768 * @return true if all key names are found in pszzAllowed.
769 * @return false if not.
770 * @param pCfgIf Pointer to configuration callback table.
771 * @param pszzValid List of valid names separated by '\\0' and ending with
772 * a double '\\0'.
773 */
774DECLINLINE(bool) VDCFGAreKeysValid(PVDINTERFACECONFIG pCfgIf, const char *pszzValid)
775{
776 return pCfgIf->pfnAreKeysValid(pCfgIf->Core.pvUser, pszzValid);
777}
778
779/**
780 * Query configuration, unsigned 64-bit integer value with default.
781 *
782 * @return VBox status code.
783 * @param pCfgIf Pointer to configuration callback table.
784 * @param pszName Name of an integer value
785 * @param pu64 Where to store the value. Set to default on failure.
786 * @param u64Def The default value.
787 */
788DECLINLINE(int) VDCFGQueryU64Def(PVDINTERFACECONFIG pCfgIf,
789 const char *pszName, uint64_t *pu64,
790 uint64_t u64Def)
791{
792 char aszBuf[32];
793 int rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, aszBuf, sizeof(aszBuf));
794 if (RT_SUCCESS(rc))
795 {
796 rc = RTStrToUInt64Full(aszBuf, 0, pu64);
797 }
798 else if (rc == VERR_CFGM_VALUE_NOT_FOUND)
799 {
800 rc = VINF_SUCCESS;
801 *pu64 = u64Def;
802 }
803 return rc;
804}
805
806/**
807 * Query configuration, unsigned 32-bit integer value with default.
808 *
809 * @return VBox status code.
810 * @param pCfgIf Pointer to configuration callback table.
811 * @param pszName Name of an integer value
812 * @param pu32 Where to store the value. Set to default on failure.
813 * @param u32Def The default value.
814 */
815DECLINLINE(int) VDCFGQueryU32Def(PVDINTERFACECONFIG pCfgIf,
816 const char *pszName, uint32_t *pu32,
817 uint32_t u32Def)
818{
819 uint64_t u64;
820 int rc = VDCFGQueryU64Def(pCfgIf, pszName, &u64, u32Def);
821 if (RT_SUCCESS(rc))
822 {
823 if (!(u64 & UINT64_C(0xffffffff00000000)))
824 *pu32 = (uint32_t)u64;
825 else
826 rc = VERR_CFGM_INTEGER_TOO_BIG;
827 }
828 return rc;
829}
830
831/**
832 * Query configuration, bool value with default.
833 *
834 * @return VBox status code.
835 * @param pCfgIf Pointer to configuration callback table.
836 * @param pszName Name of an integer value
837 * @param pf Where to store the value. Set to default on failure.
838 * @param fDef The default value.
839 */
840DECLINLINE(int) VDCFGQueryBoolDef(PVDINTERFACECONFIG pCfgIf,
841 const char *pszName, bool *pf,
842 bool fDef)
843{
844 uint64_t u64;
845 int rc = VDCFGQueryU64Def(pCfgIf, pszName, &u64, fDef);
846 if (RT_SUCCESS(rc))
847 *pf = u64 ? true : false;
848 return rc;
849}
850
851/**
852 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated
853 * character value.
854 *
855 * @return VBox status code.
856 * @param pCfgIf Pointer to configuration callback table.
857 * @param pszName Name of an zero terminated character value
858 * @param ppszString Where to store the string pointer. Not set on failure.
859 * Free this using RTMemFree().
860 */
861DECLINLINE(int) VDCFGQueryStringAlloc(PVDINTERFACECONFIG pCfgIf,
862 const char *pszName, char **ppszString)
863{
864 size_t cb;
865 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
866 if (RT_SUCCESS(rc))
867 {
868 char *pszString = (char *)RTMemAlloc(cb);
869 if (pszString)
870 {
871 rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, pszString, cb);
872 if (RT_SUCCESS(rc))
873 *ppszString = pszString;
874 else
875 RTMemFree(pszString);
876 }
877 else
878 rc = VERR_NO_MEMORY;
879 }
880 return rc;
881}
882
883/**
884 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated
885 * character value with default.
886 *
887 * @return VBox status code.
888 * @param pCfgIf Pointer to configuration callback table.
889 * @param pszName Name of an zero terminated character value
890 * @param ppszString Where to store the string pointer. Not set on failure.
891 * Free this using RTMemFree().
892 * @param pszDef The default value.
893 */
894DECLINLINE(int) VDCFGQueryStringAllocDef(PVDINTERFACECONFIG pCfgIf,
895 const char *pszName,
896 char **ppszString,
897 const char *pszDef)
898{
899 size_t cb;
900 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
901 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
902 {
903 cb = strlen(pszDef) + 1;
904 rc = VINF_SUCCESS;
905 }
906 if (RT_SUCCESS(rc))
907 {
908 char *pszString = (char *)RTMemAlloc(cb);
909 if (pszString)
910 {
911 rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, pszString, cb);
912 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
913 {
914 memcpy(pszString, pszDef, cb);
915 rc = VINF_SUCCESS;
916 }
917 if (RT_SUCCESS(rc))
918 *ppszString = pszString;
919 else
920 RTMemFree(pszString);
921 }
922 else
923 rc = VERR_NO_MEMORY;
924 }
925 return rc;
926}
927
928/**
929 * Query configuration, dynamically allocated (RTMemAlloc) byte string value.
930 *
931 * @return VBox status code.
932 * @param pCfgIf Pointer to configuration callback table.
933 * @param pszName Name of an zero terminated character value
934 * @param ppvData Where to store the byte string pointer. Not set on failure.
935 * Free this using RTMemFree().
936 * @param pcbData Where to store the byte string length.
937 */
938DECLINLINE(int) VDCFGQueryBytesAlloc(PVDINTERFACECONFIG pCfgIf,
939 const char *pszName, void **ppvData, size_t *pcbData)
940{
941 size_t cb;
942 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
943 if (RT_SUCCESS(rc))
944 {
945 char *pbData;
946 Assert(cb);
947
948 pbData = (char *)RTMemAlloc(cb);
949 if (pbData)
950 {
951 rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, pbData, cb);
952 if (RT_SUCCESS(rc))
953 {
954 *ppvData = pbData;
955 *pcbData = cb - 1; /* Exclude terminator of the queried string. */
956 }
957 else
958 RTMemFree(pbData);
959 }
960 else
961 rc = VERR_NO_MEMORY;
962 }
963 return rc;
964}
965
966/** Forward declaration of a VD socket. */
967typedef struct VDSOCKETINT *VDSOCKET;
968/** Pointer to a VD socket. */
969typedef VDSOCKET *PVDSOCKET;
970/** Nil socket handle. */
971#define NIL_VDSOCKET ((VDSOCKET)0)
972
973/** Connect flag to indicate that the backend wants to use the extended
974 * socket I/O multiplexing call. This might not be supported on all configurations
975 * (internal networking and iSCSI)
976 * and the backend needs to take appropriate action.
977 */
978#define VD_INTERFACETCPNET_CONNECT_EXTENDED_SELECT RT_BIT_32(0)
979
980/** @name Select events
981 * @{ */
982/** Readable without blocking. */
983#define VD_INTERFACETCPNET_EVT_READ RT_BIT_32(0)
984/** Writable without blocking. */
985#define VD_INTERFACETCPNET_EVT_WRITE RT_BIT_32(1)
986/** Error condition, hangup, exception or similar. */
987#define VD_INTERFACETCPNET_EVT_ERROR RT_BIT_32(2)
988/** Hint for the select that getting interrupted while waiting is more likely.
989 * The interface implementation can optimize the waiting strategy based on this.
990 * It is assumed that it is more likely to get one of the above socket events
991 * instead of being interrupted if the flag is not set. */
992#define VD_INTERFACETCPNET_HINT_INTERRUPT RT_BIT_32(3)
993/** Mask of the valid bits. */
994#define VD_INTERFACETCPNET_EVT_VALID_MASK UINT32_C(0x0000000f)
995/** @} */
996
997/**
998 * TCP network stack interface
999 *
1000 * Per-image. Mandatory for backends which have the VD_CAP_TCPNET bit set.
1001 */
1002typedef struct VDINTERFACETCPNET
1003{
1004 /**
1005 * Common interface header.
1006 */
1007 VDINTERFACE Core;
1008
1009 /**
1010 * Creates a socket. The socket is not connected if this succeeds.
1011 *
1012 * @return iprt status code.
1013 * @retval VERR_NOT_SUPPORTED if the combination of flags is not supported.
1014 * @param fFlags Combination of the VD_INTERFACETCPNET_CONNECT_* #defines.
1015 * @param pSock Where to store the handle.
1016 */
1017 DECLR3CALLBACKMEMBER(int, pfnSocketCreate, (uint32_t fFlags, PVDSOCKET pSock));
1018
1019 /**
1020 * Destroys the socket.
1021 *
1022 * @return iprt status code.
1023 * @param Sock Socket descriptor.
1024 */
1025 DECLR3CALLBACKMEMBER(int, pfnSocketDestroy, (VDSOCKET Sock));
1026
1027 /**
1028 * Connect as a client to a TCP port.
1029 *
1030 * @return iprt status code.
1031 * @param Sock Socket descriptor.
1032 * @param pszAddress The address to connect to.
1033 * @param uPort The port to connect to.
1034 */
1035 DECLR3CALLBACKMEMBER(int, pfnClientConnect, (VDSOCKET Sock, const char *pszAddress, uint32_t uPort));
1036
1037 /**
1038 * Close a TCP connection.
1039 *
1040 * @return iprt status code.
1041 * @param Sock Socket descriptor.
1042 */
1043 DECLR3CALLBACKMEMBER(int, pfnClientClose, (VDSOCKET Sock));
1044
1045 /**
1046 * Returns whether the socket is currently connected to the client.
1047 *
1048 * @returns true if the socket is connected.
1049 * false otherwise.
1050 * @param Sock Socket descriptor.
1051 */
1052 DECLR3CALLBACKMEMBER(bool, pfnIsClientConnected, (VDSOCKET Sock));
1053
1054 /**
1055 * Socket I/O multiplexing.
1056 * Checks if the socket is ready for reading.
1057 *
1058 * @return iprt status code.
1059 * @param Sock Socket descriptor.
1060 * @param cMillies Number of milliseconds to wait for the socket.
1061 * Use RT_INDEFINITE_WAIT to wait for ever.
1062 */
1063 DECLR3CALLBACKMEMBER(int, pfnSelectOne, (VDSOCKET Sock, RTMSINTERVAL cMillies));
1064
1065 /**
1066 * Receive data from a socket.
1067 *
1068 * @return iprt status code.
1069 * @param Sock Socket descriptor.
1070 * @param pvBuffer Where to put the data we read.
1071 * @param cbBuffer Read buffer size.
1072 * @param pcbRead Number of bytes read.
1073 * If NULL the entire buffer will be filled upon successful return.
1074 * If not NULL a partial read can be done successfully.
1075 */
1076 DECLR3CALLBACKMEMBER(int, pfnRead, (VDSOCKET Sock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead));
1077
1078 /**
1079 * Send data to a socket.
1080 *
1081 * @return iprt status code.
1082 * @param Sock Socket descriptor.
1083 * @param pvBuffer Buffer to write data to socket.
1084 * @param cbBuffer How much to write.
1085 */
1086 DECLR3CALLBACKMEMBER(int, pfnWrite, (VDSOCKET Sock, const void *pvBuffer, size_t cbBuffer));
1087
1088 /**
1089 * Send data from scatter/gather buffer to a socket.
1090 *
1091 * @return iprt status code.
1092 * @param Sock Socket descriptor.
1093 * @param pSgBuffer Scatter/gather buffer to write data to socket.
1094 */
1095 DECLR3CALLBACKMEMBER(int, pfnSgWrite, (VDSOCKET Sock, PCRTSGBUF pSgBuffer));
1096
1097 /**
1098 * Receive data from a socket - not blocking.
1099 *
1100 * @return iprt status code.
1101 * @param Sock Socket descriptor.
1102 * @param pvBuffer Where to put the data we read.
1103 * @param cbBuffer Read buffer size.
1104 * @param pcbRead Number of bytes read.
1105 */
1106 DECLR3CALLBACKMEMBER(int, pfnReadNB, (VDSOCKET Sock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead));
1107
1108 /**
1109 * Send data to a socket - not blocking.
1110 *
1111 * @return iprt status code.
1112 * @param Sock Socket descriptor.
1113 * @param pvBuffer Buffer to write data to socket.
1114 * @param cbBuffer How much to write.
1115 * @param pcbWritten Number of bytes written.
1116 */
1117 DECLR3CALLBACKMEMBER(int, pfnWriteNB, (VDSOCKET Sock, const void *pvBuffer, size_t cbBuffer, size_t *pcbWritten));
1118
1119 /**
1120 * Send data from scatter/gather buffer to a socket - not blocking.
1121 *
1122 * @return iprt status code.
1123 * @param Sock Socket descriptor.
1124 * @param pSgBuffer Scatter/gather buffer to write data to socket.
1125 * @param pcbWritten Number of bytes written.
1126 */
1127 DECLR3CALLBACKMEMBER(int, pfnSgWriteNB, (VDSOCKET Sock, PRTSGBUF pSgBuffer, size_t *pcbWritten));
1128
1129 /**
1130 * Flush socket write buffers.
1131 *
1132 * @return iprt status code.
1133 * @param Sock Socket descriptor.
1134 */
1135 DECLR3CALLBACKMEMBER(int, pfnFlush, (VDSOCKET Sock));
1136
1137 /**
1138 * Enables or disables delaying sends to coalesce packets.
1139 *
1140 * @return iprt status code.
1141 * @param Sock Socket descriptor.
1142 * @param fEnable When set to true enables coalescing.
1143 */
1144 DECLR3CALLBACKMEMBER(int, pfnSetSendCoalescing, (VDSOCKET Sock, bool fEnable));
1145
1146 /**
1147 * Gets the address of the local side.
1148 *
1149 * @return iprt status code.
1150 * @param Sock Socket descriptor.
1151 * @param pAddr Where to store the local address on success.
1152 */
1153 DECLR3CALLBACKMEMBER(int, pfnGetLocalAddress, (VDSOCKET Sock, PRTNETADDR pAddr));
1154
1155 /**
1156 * Gets the address of the other party.
1157 *
1158 * @return iprt status code.
1159 * @param Sock Socket descriptor.
1160 * @param pAddr Where to store the peer address on success.
1161 */
1162 DECLR3CALLBACKMEMBER(int, pfnGetPeerAddress, (VDSOCKET Sock, PRTNETADDR pAddr));
1163
1164 /**
1165 * Socket I/O multiplexing - extended version which can be woken up.
1166 * Checks if the socket is ready for reading or writing.
1167 *
1168 * @return iprt status code.
1169 * @retval VERR_INTERRUPTED if the thread was woken up by a pfnPoke call.
1170 * @param Sock Socket descriptor.
1171 * @param fEvents Mask of events to wait for.
1172 * @param pfEvents Where to store the received events.
1173 * @param cMillies Number of milliseconds to wait for the socket.
1174 * Use RT_INDEFINITE_WAIT to wait for ever.
1175 */
1176 DECLR3CALLBACKMEMBER(int, pfnSelectOneEx, (VDSOCKET Sock, uint32_t fEvents,
1177 uint32_t *pfEvents, RTMSINTERVAL cMillies));
1178
1179 /**
1180 * Wakes up the thread waiting in pfnSelectOneEx.
1181 *
1182 * @return iprt status code.
1183 * @param Sock Socket descriptor.
1184 */
1185 DECLR3CALLBACKMEMBER(int, pfnPoke, (VDSOCKET Sock));
1186
1187} VDINTERFACETCPNET, *PVDINTERFACETCPNET;
1188
1189/**
1190 * Get TCP network stack interface from interface list.
1191 *
1192 * @return Pointer to the first TCP network stack interface in the list.
1193 * @param pVDIfs Pointer to the interface list.
1194 */
1195DECLINLINE(PVDINTERFACETCPNET) VDIfTcpNetGet(PVDINTERFACE pVDIfs)
1196{
1197 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_TCPNET);
1198
1199 /* Check that the interface descriptor is a progress interface. */
1200 AssertMsgReturn( !pIf
1201 || ( (pIf->enmInterface == VDINTERFACETYPE_TCPNET)
1202 && (pIf->cbSize == sizeof(VDINTERFACETCPNET))),
1203 ("Not a TCP net interface"), NULL);
1204
1205 return (PVDINTERFACETCPNET)pIf;
1206}
1207
1208
1209/**
1210 * Interface to synchronize concurrent accesses by several threads.
1211 *
1212 * @note The scope of this interface is to manage concurrent accesses after
1213 * the HDD container has been created, and they must stop before destroying the
1214 * container. Opening or closing images is covered by the synchronization, but
1215 * that does not mean it is safe to close images while a thread executes
1216 * <link to="VDMerge"/> or <link to="VDCopy"/> operating on these images.
1217 * Making them safe would require the lock to be held during the entire
1218 * operation, which prevents other concurrent acitivities.
1219 *
1220 * @note Right now this is kept as simple as possible, and does not even
1221 * attempt to provide enough information to allow e.g. concurrent write
1222 * accesses to different areas of the disk. The reason is that it is very
1223 * difficult to predict which area of a disk is affected by a write,
1224 * especially when different image formats are mixed. Maybe later a more
1225 * sophisticated interface will be provided which has the necessary information
1226 * about worst case affected areas.
1227 *
1228 * Per-disk interface. Optional, needed if the disk is accessed concurrently
1229 * by several threads, e.g. when merging diff images while a VM is running.
1230 */
1231typedef struct VDINTERFACETHREADSYNC
1232{
1233 /**
1234 * Common interface header.
1235 */
1236 VDINTERFACE Core;
1237
1238 /**
1239 * Start a read operation.
1240 */
1241 DECLR3CALLBACKMEMBER(int, pfnStartRead, (void *pvUser));
1242
1243 /**
1244 * Finish a read operation.
1245 */
1246 DECLR3CALLBACKMEMBER(int, pfnFinishRead, (void *pvUser));
1247
1248 /**
1249 * Start a write operation.
1250 */
1251 DECLR3CALLBACKMEMBER(int, pfnStartWrite, (void *pvUser));
1252
1253 /**
1254 * Finish a write operation.
1255 */
1256 DECLR3CALLBACKMEMBER(int, pfnFinishWrite, (void *pvUser));
1257
1258} VDINTERFACETHREADSYNC, *PVDINTERFACETHREADSYNC;
1259
1260/**
1261 * Get thread synchronization interface from interface list.
1262 *
1263 * @return Pointer to the first thread synchronization interface in the list.
1264 * @param pVDIfs Pointer to the interface list.
1265 */
1266DECLINLINE(PVDINTERFACETHREADSYNC) VDIfThreadSyncGet(PVDINTERFACE pVDIfs)
1267{
1268 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_THREADSYNC);
1269
1270 /* Check that the interface descriptor is a progress interface. */
1271 AssertMsgReturn( !pIf
1272 || ( (pIf->enmInterface == VDINTERFACETYPE_THREADSYNC)
1273 && (pIf->cbSize == sizeof(VDINTERFACETHREADSYNC))),
1274 ("Not a thread synchronization interface"), NULL);
1275
1276 return (PVDINTERFACETHREADSYNC)pIf;
1277}
1278
1279/**
1280 * Interface to query usage of disk ranges.
1281 *
1282 * Per-operation interface. Optional.
1283 */
1284typedef struct VDINTERFACEQUERYRANGEUSE
1285{
1286 /**
1287 * Common interface header.
1288 */
1289 VDINTERFACE Core;
1290
1291 /**
1292 * Query use of a disk range.
1293 */
1294 DECLR3CALLBACKMEMBER(int, pfnQueryRangeUse, (void *pvUser, uint64_t off, uint64_t cb,
1295 bool *pfUsed));
1296
1297} VDINTERFACEQUERYRANGEUSE, *PVDINTERFACEQUERYRANGEUSE;
1298
1299/**
1300 * Get query range use interface from interface list.
1301 *
1302 * @return Pointer to the first thread synchronization interface in the list.
1303 * @param pVDIfs Pointer to the interface list.
1304 */
1305DECLINLINE(PVDINTERFACEQUERYRANGEUSE) VDIfQueryRangeUseGet(PVDINTERFACE pVDIfs)
1306{
1307 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_QUERYRANGEUSE);
1308
1309 /* Check that the interface descriptor is a progress interface. */
1310 AssertMsgReturn( !pIf
1311 || ( (pIf->enmInterface == VDINTERFACETYPE_QUERYRANGEUSE)
1312 && (pIf->cbSize == sizeof(VDINTERFACEQUERYRANGEUSE))),
1313 ("Not a query range use interface"), NULL);
1314
1315 return (PVDINTERFACEQUERYRANGEUSE)pIf;
1316}
1317
1318DECLINLINE(int) vdIfQueryRangeUse(PVDINTERFACEQUERYRANGEUSE pIfQueryRangeUse, uint64_t off, uint64_t cb,
1319 bool *pfUsed)
1320{
1321 return pIfQueryRangeUse->pfnQueryRangeUse(pIfQueryRangeUse->Core.pvUser, off, cb, pfUsed);
1322}
1323
1324RT_C_DECLS_END
1325
1326/** @} */
1327
1328#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