VirtualBox

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

Last change on this file since 73768 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 62.1 KB
Line 
1/** @file
2 * VD Container API - interfaces.
3 */
4
5/*
6 * Copyright (C) 2011-2017 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_ifs_h
27#define ___VBox_vd_ifs_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 /** Interface for the metadata traverse callback. Per-operation. */
71 VDINTERFACETYPE_TRAVERSEMETADATA,
72 /** Interface for crypto operations. Per-filter. */
73 VDINTERFACETYPE_CRYPTO,
74 /** invalid interface. */
75 VDINTERFACETYPE_INVALID
76} VDINTERFACETYPE;
77
78/**
79 * Common structure for all interfaces and at the beginning of all types.
80 */
81typedef struct VDINTERFACE
82{
83 uint32_t u32Magic;
84 /** Human readable interface name. */
85 const char *pszInterfaceName;
86 /** Pointer to the next common interface structure. */
87 struct VDINTERFACE *pNext;
88 /** Interface type. */
89 VDINTERFACETYPE enmInterface;
90 /** Size of the interface. */
91 size_t cbSize;
92 /** Opaque user data which is passed on every call. */
93 void *pvUser;
94} VDINTERFACE;
95/** Pointer to a VDINTERFACE. */
96typedef VDINTERFACE *PVDINTERFACE;
97/** Pointer to a const VDINTERFACE. */
98typedef const VDINTERFACE *PCVDINTERFACE;
99
100/**
101 * Helper functions to handle interface lists.
102 *
103 * @note These interface lists are used consistently to pass per-disk,
104 * per-image and/or per-operation callbacks. Those three purposes are strictly
105 * separate. See the individual interface declarations for what context they
106 * apply to. The caller is responsible for ensuring that the lifetime of the
107 * interface descriptors is appropriate for the category of interface.
108 */
109
110/**
111 * Get a specific interface from a list of interfaces specified by the type.
112 *
113 * @return Pointer to the matching interface or NULL if none was found.
114 * @param pVDIfs Pointer to the VD interface list.
115 * @param enmInterface Interface to search for.
116 */
117DECLINLINE(PVDINTERFACE) VDInterfaceGet(PVDINTERFACE pVDIfs, VDINTERFACETYPE enmInterface)
118{
119 AssertMsgReturn( enmInterface >= VDINTERFACETYPE_FIRST
120 && enmInterface < VDINTERFACETYPE_INVALID,
121 ("enmInterface=%u", enmInterface), NULL);
122
123 while (pVDIfs)
124 {
125 AssertMsgBreak(pVDIfs->u32Magic == VDINTERFACE_MAGIC,
126 ("u32Magic=%#x\n", pVDIfs->u32Magic));
127
128 if (pVDIfs->enmInterface == enmInterface)
129 return pVDIfs;
130 pVDIfs = pVDIfs->pNext;
131 }
132
133 /* No matching interface was found. */
134 return NULL;
135}
136
137/**
138 * Add an interface to a list of interfaces.
139 *
140 * @return VBox status code.
141 * @param pInterface Pointer to an unitialized common interface structure.
142 * @param pszName Name of the interface.
143 * @param enmInterface Type of the interface.
144 * @param pvUser Opaque user data passed on every function call.
145 * @param cbInterface The interface size.
146 * @param ppVDIfs Pointer to the VD interface list.
147 */
148DECLINLINE(int) VDInterfaceAdd(PVDINTERFACE pInterface, const char *pszName, VDINTERFACETYPE enmInterface, void *pvUser,
149 size_t cbInterface, PVDINTERFACE *ppVDIfs)
150{
151 /* Argument checks. */
152 AssertMsgReturn( enmInterface >= VDINTERFACETYPE_FIRST
153 && enmInterface < VDINTERFACETYPE_INVALID,
154 ("enmInterface=%u", enmInterface), VERR_INVALID_PARAMETER);
155
156 AssertMsgReturn(VALID_PTR(ppVDIfs),
157 ("pInterfaceList=%#p", ppVDIfs),
158 VERR_INVALID_PARAMETER);
159
160 /* Fill out interface descriptor. */
161 pInterface->u32Magic = VDINTERFACE_MAGIC;
162 pInterface->cbSize = cbInterface;
163 pInterface->pszInterfaceName = pszName;
164 pInterface->enmInterface = enmInterface;
165 pInterface->pvUser = pvUser;
166 pInterface->pNext = *ppVDIfs;
167
168 /* Remember the new start of the list. */
169 *ppVDIfs = pInterface;
170
171 return VINF_SUCCESS;
172}
173
174/**
175 * Removes an interface from a list of interfaces.
176 *
177 * @return VBox status code
178 * @param pInterface Pointer to an initialized common interface structure to remove.
179 * @param ppVDIfs Pointer to the VD interface list to remove from.
180 */
181DECLINLINE(int) VDInterfaceRemove(PVDINTERFACE pInterface, PVDINTERFACE *ppVDIfs)
182{
183 int rc = VERR_NOT_FOUND;
184
185 /* Argument checks. */
186 AssertMsgReturn(VALID_PTR(pInterface),
187 ("pInterface=%#p", pInterface),
188 VERR_INVALID_PARAMETER);
189
190 AssertMsgReturn(VALID_PTR(ppVDIfs),
191 ("pInterfaceList=%#p", ppVDIfs),
192 VERR_INVALID_PARAMETER);
193
194 if (*ppVDIfs)
195 {
196 PVDINTERFACE pPrev = NULL;
197 PVDINTERFACE pCurr = *ppVDIfs;
198
199 while ( pCurr
200 && (pCurr != pInterface))
201 {
202 pPrev = pCurr;
203 pCurr = pCurr->pNext;
204 }
205
206 /* First interface */
207 if (!pPrev)
208 {
209 *ppVDIfs = pCurr->pNext;
210 rc = VINF_SUCCESS;
211 }
212 else if (pCurr)
213 {
214 pPrev = pCurr->pNext;
215 rc = VINF_SUCCESS;
216 }
217 }
218
219 return rc;
220}
221
222/**
223 * Interface to deliver error messages (and also informational messages)
224 * to upper layers.
225 *
226 * Per-disk interface. Optional, but think twice if you want to miss the
227 * opportunity of reporting better human-readable error messages.
228 */
229typedef struct VDINTERFACEERROR
230{
231 /**
232 * Common interface header.
233 */
234 VDINTERFACE Core;
235
236 /**
237 * Error message callback. Must be able to accept special IPRT format
238 * strings.
239 *
240 * @param pvUser The opaque data passed on container creation.
241 * @param rc The VBox error code.
242 * @param SRC_POS Use RT_SRC_POS.
243 * @param pszFormat Error message format string.
244 * @param va Error message arguments.
245 */
246 DECLR3CALLBACKMEMBER(void, pfnError, (void *pvUser, int rc, RT_SRC_POS_DECL,
247 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0));
248
249 /**
250 * Informational message callback. May be NULL. Used e.g. in
251 * VDDumpImages(). Must be able to accept special IPRT format strings.
252 *
253 * @return VBox status code.
254 * @param pvUser The opaque data passed on container creation.
255 * @param pszFormat Message format string.
256 * @param va Message arguments.
257 */
258 DECLR3CALLBACKMEMBER(int, pfnMessage, (void *pvUser, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(2, 0));
259
260} VDINTERFACEERROR, *PVDINTERFACEERROR;
261
262/**
263 * Get error interface from interface list.
264 *
265 * @return Pointer to the first error interface in the list.
266 * @param pVDIfs Pointer to the interface list.
267 */
268DECLINLINE(PVDINTERFACEERROR) VDIfErrorGet(PVDINTERFACE pVDIfs)
269{
270 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_ERROR);
271
272 /* Check that the interface descriptor is a progress interface. */
273 AssertMsgReturn( !pIf
274 || ( (pIf->enmInterface == VDINTERFACETYPE_ERROR)
275 && (pIf->cbSize == sizeof(VDINTERFACEERROR))),
276 ("Not an error interface\n"), NULL);
277
278 return (PVDINTERFACEERROR)pIf;
279}
280
281/**
282 * Signal an error to the frontend.
283 *
284 * @returns VBox status code.
285 * @param pIfError The error interface.
286 * @param rc The status code.
287 * @param SRC_POS The position in the source code.
288 * @param pszFormat The format string to pass.
289 * @param ... Arguments to the format string.
290 */
291DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) vdIfError(PVDINTERFACEERROR pIfError, int rc, RT_SRC_POS_DECL,
292 const char *pszFormat, ...)
293{
294 va_list va;
295 va_start(va, pszFormat);
296 if (pIfError)
297 pIfError->pfnError(pIfError->Core.pvUser, rc, RT_SRC_POS_ARGS, pszFormat, va);
298 va_end(va);
299 return rc;
300}
301
302/**
303 * Signal an informational message to the frontend.
304 *
305 * @returns VBox status code.
306 * @param pIfError The error interface.
307 * @param pszFormat The format string to pass.
308 * @param ... Arguments to the format string.
309 */
310DECLINLINE(int) RT_IPRT_FORMAT_ATTR(2, 3) vdIfErrorMessage(PVDINTERFACEERROR pIfError, const char *pszFormat, ...)
311{
312 int rc = VINF_SUCCESS;
313 va_list va;
314 va_start(va, pszFormat);
315 if (pIfError && pIfError->pfnMessage)
316 rc = pIfError->pfnMessage(pIfError->Core.pvUser, pszFormat, va);
317 va_end(va);
318 return rc;
319}
320
321/**
322 * Completion callback which is called by the interface owner
323 * to inform the backend that a task finished.
324 *
325 * @return VBox status code.
326 * @param pvUser Opaque user data which is passed on request submission.
327 * @param rcReq Status code of the completed request.
328 */
329typedef DECLCALLBACK(int) FNVDCOMPLETED(void *pvUser, int rcReq);
330/** Pointer to FNVDCOMPLETED() */
331typedef FNVDCOMPLETED *PFNVDCOMPLETED;
332
333/**
334 * Support interface for I/O
335 *
336 * Per-image. Optional as input.
337 */
338typedef struct VDINTERFACEIO
339{
340 /**
341 * Common interface header.
342 */
343 VDINTERFACE Core;
344
345 /**
346 * Open callback
347 *
348 * @return VBox status code.
349 * @param pvUser The opaque data passed on container creation.
350 * @param pszLocation Name of the location to open.
351 * @param fOpen Flags for opening the backend.
352 * See RTFILE_O_* \#defines, inventing another set
353 * of open flags is not worth the mapping effort.
354 * @param pfnCompleted The callback which is called whenever a task
355 * completed. The backend has to pass the user data
356 * of the request initiator (ie the one who calls
357 * VDAsyncRead or VDAsyncWrite) in pvCompletion
358 * if this is NULL.
359 * @param ppvStorage Where to store the opaque storage handle.
360 */
361 DECLR3CALLBACKMEMBER(int, pfnOpen, (void *pvUser, const char *pszLocation,
362 uint32_t fOpen,
363 PFNVDCOMPLETED pfnCompleted,
364 void **ppvStorage));
365
366 /**
367 * Close callback.
368 *
369 * @return VBox status code.
370 * @param pvUser The opaque data passed on container creation.
371 * @param pvStorage The opaque storage handle to close.
372 */
373 DECLR3CALLBACKMEMBER(int, pfnClose, (void *pvUser, void *pvStorage));
374
375 /**
376 * Delete callback.
377 *
378 * @return VBox status code.
379 * @param pvUser The opaque data passed on container creation.
380 * @param pcszFilename Name of the file to delete.
381 */
382 DECLR3CALLBACKMEMBER(int, pfnDelete, (void *pvUser, const char *pcszFilename));
383
384 /**
385 * Move callback.
386 *
387 * @return VBox status code.
388 * @param pvUser The opaque data passed on container creation.
389 * @param pcszSrc The path to the source file.
390 * @param pcszDst The path to the destination file.
391 * This file will be created.
392 * @param fMove A combination of the RTFILEMOVE_* flags.
393 */
394 DECLR3CALLBACKMEMBER(int, pfnMove, (void *pvUser, const char *pcszSrc, const char *pcszDst, unsigned fMove));
395
396 /**
397 * Returns the free space on a disk.
398 *
399 * @return VBox status code.
400 * @param pvUser The opaque data passed on container creation.
401 * @param pcszFilename Name of a file to identify the disk.
402 * @param pcbFreeSpace Where to store the free space of the disk.
403 */
404 DECLR3CALLBACKMEMBER(int, pfnGetFreeSpace, (void *pvUser, const char *pcszFilename, int64_t *pcbFreeSpace));
405
406 /**
407 * Returns the last modification timestamp of a file.
408 *
409 * @return VBox status code.
410 * @param pvUser The opaque data passed on container creation.
411 * @param pcszFilename Name of a file to identify the disk.
412 * @param pModificationTime Where to store the timestamp of the file.
413 */
414 DECLR3CALLBACKMEMBER(int, pfnGetModificationTime, (void *pvUser, const char *pcszFilename, PRTTIMESPEC pModificationTime));
415
416 /**
417 * Returns the size of the opened storage backend.
418 *
419 * @return VBox status code.
420 * @param pvUser The opaque data passed on container creation.
421 * @param pvStorage The opaque storage handle to get the size from.
422 * @param pcb Where to store the size of the storage backend.
423 */
424 DECLR3CALLBACKMEMBER(int, pfnGetSize, (void *pvUser, void *pvStorage, uint64_t *pcb));
425
426 /**
427 * Sets the size of the opened storage backend if possible.
428 *
429 * @return VBox status code.
430 * @retval VERR_NOT_SUPPORTED if the backend does not support this operation.
431 * @param pvUser The opaque data passed on container creation.
432 * @param pvStorage The opaque storage handle to set the size for.
433 * @param cb The new size of the image.
434 *
435 * @note Depending on the host the underlying storage (backing file, etc.)
436 * might not have all required storage allocated (sparse file) which
437 * can delay writes or fail with a not enough free space error if there
438 * is not enough space on the storage medium when writing to the range for
439 * the first time.
440 * Use VDINTERFACEIO::pfnSetAllocationSize to make sure the storage is
441 * really alloacted.
442 */
443 DECLR3CALLBACKMEMBER(int, pfnSetSize, (void *pvUser, void *pvStorage, uint64_t cb));
444
445 /**
446 * Sets the size of the opened storage backend making sure the given size
447 * is really allocated.
448 *
449 * @return VBox status code.
450 * @retval VERR_NOT_SUPPORTED if the implementer of the interface doesn't support
451 * this method.
452 * @param pvUser The opaque data passed on container creation.
453 * @param pvStorage The storage handle.
454 * @param cbSize The new size of the image.
455 * @param fFlags Flags for controlling the allocation strategy.
456 * Reserved for future use, MBZ.
457 */
458 DECLR3CALLBACKMEMBER(int, pfnSetAllocationSize, (void *pvUser, void *pvStorage,
459 uint64_t cbSize, uint32_t fFlags));
460
461 /**
462 * Synchronous write callback.
463 *
464 * @return VBox status code.
465 * @param pvUser The opaque data passed on container creation.
466 * @param pvStorage The storage handle to use.
467 * @param off The offset to start from.
468 * @param pvBuf Pointer to the bits need to be written.
469 * @param cbToWrite How many bytes to write.
470 * @param pcbWritten Where to store how many bytes were actually written.
471 */
472 DECLR3CALLBACKMEMBER(int, pfnWriteSync, (void *pvUser, void *pvStorage, uint64_t off,
473 const void *pvBuf, size_t cbToWrite, size_t *pcbWritten));
474
475 /**
476 * Synchronous read callback.
477 *
478 * @return VBox status code.
479 * @param pvUser The opaque data passed on container creation.
480 * @param pvStorage The storage handle to use.
481 * @param off The offset to start from.
482 * @param pvBuf Where to store the read bits.
483 * @param cbToRead How many bytes to read.
484 * @param pcbRead Where to store how many bytes were actually read.
485 */
486 DECLR3CALLBACKMEMBER(int, pfnReadSync, (void *pvUser, void *pvStorage, uint64_t off,
487 void *pvBuf, size_t cbToRead, size_t *pcbRead));
488
489 /**
490 * Flush data to the storage backend.
491 *
492 * @return VBox status code.
493 * @param pvUser The opaque data passed on container creation.
494 * @param pvStorage The storage handle to flush.
495 */
496 DECLR3CALLBACKMEMBER(int, pfnFlushSync, (void *pvUser, void *pvStorage));
497
498 /**
499 * Initiate an asynchronous read request.
500 *
501 * @return VBox status code.
502 * @param pvUser The opaque user data passed on container creation.
503 * @param pvStorage The storage handle.
504 * @param uOffset The offset to start reading from.
505 * @param paSegments Scatter gather list to store the data in.
506 * @param cSegments Number of segments in the list.
507 * @param cbRead How many bytes to read.
508 * @param pvCompletion The opaque user data which is returned upon completion.
509 * @param ppTask Where to store the opaque task handle.
510 */
511 DECLR3CALLBACKMEMBER(int, pfnReadAsync, (void *pvUser, void *pvStorage, uint64_t uOffset,
512 PCRTSGSEG paSegments, size_t cSegments,
513 size_t cbRead, void *pvCompletion,
514 void **ppTask));
515
516 /**
517 * Initiate an asynchronous write request.
518 *
519 * @return VBox status code.
520 * @param pvUser The opaque user data passed on conatiner creation.
521 * @param pvStorage The storage handle.
522 * @param uOffset The offset to start writing to.
523 * @param paSegments Scatter gather list of the data to write
524 * @param cSegments Number of segments in the list.
525 * @param cbWrite How many bytes to write.
526 * @param pvCompletion The opaque user data which is returned upon completion.
527 * @param ppTask Where to store the opaque task handle.
528 */
529 DECLR3CALLBACKMEMBER(int, pfnWriteAsync, (void *pvUser, void *pvStorage, uint64_t uOffset,
530 PCRTSGSEG paSegments, size_t cSegments,
531 size_t cbWrite, void *pvCompletion,
532 void **ppTask));
533
534 /**
535 * Initiates an async flush request.
536 *
537 * @return VBox status code.
538 * @param pvUser The opaque data passed on container creation.
539 * @param pvStorage The storage handle to flush.
540 * @param pvCompletion The opaque user data which is returned upon completion.
541 * @param ppTask Where to store the opaque task handle.
542 */
543 DECLR3CALLBACKMEMBER(int, pfnFlushAsync, (void *pvUser, void *pvStorage,
544 void *pvCompletion, void **ppTask));
545
546} VDINTERFACEIO, *PVDINTERFACEIO;
547
548/**
549 * Get I/O interface from interface list.
550 *
551 * @return Pointer to the first I/O interface in the list.
552 * @param pVDIfs Pointer to the interface list.
553 */
554DECLINLINE(PVDINTERFACEIO) VDIfIoGet(PVDINTERFACE pVDIfs)
555{
556 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_IO);
557
558 /* Check that the interface descriptor is a progress interface. */
559 AssertMsgReturn( !pIf
560 || ( (pIf->enmInterface == VDINTERFACETYPE_IO)
561 && (pIf->cbSize == sizeof(VDINTERFACEIO))),
562 ("Not a I/O interface"), NULL);
563
564 return (PVDINTERFACEIO)pIf;
565}
566
567DECLINLINE(int) vdIfIoFileOpen(PVDINTERFACEIO pIfIo, const char *pszFilename,
568 uint32_t fOpen, PFNVDCOMPLETED pfnCompleted,
569 void **ppStorage)
570{
571 return pIfIo->pfnOpen(pIfIo->Core.pvUser, pszFilename, fOpen, pfnCompleted, ppStorage);
572}
573
574DECLINLINE(int) vdIfIoFileClose(PVDINTERFACEIO pIfIo, void *pStorage)
575{
576 return pIfIo->pfnClose(pIfIo->Core.pvUser, pStorage);
577}
578
579DECLINLINE(int) vdIfIoFileDelete(PVDINTERFACEIO pIfIo, const char *pszFilename)
580{
581 return pIfIo->pfnDelete(pIfIo->Core.pvUser, pszFilename);
582}
583
584DECLINLINE(int) vdIfIoFileMove(PVDINTERFACEIO pIfIo, const char *pszSrc,
585 const char *pszDst, unsigned fMove)
586{
587 return pIfIo->pfnMove(pIfIo->Core.pvUser, pszSrc, pszDst, fMove);
588}
589
590DECLINLINE(int) vdIfIoFileGetFreeSpace(PVDINTERFACEIO pIfIo, const char *pszFilename,
591 int64_t *pcbFree)
592{
593 return pIfIo->pfnGetFreeSpace(pIfIo->Core.pvUser, pszFilename, pcbFree);
594}
595
596DECLINLINE(int) vdIfIoFileGetModificationTime(PVDINTERFACEIO pIfIo, const char *pcszFilename,
597 PRTTIMESPEC pModificationTime)
598{
599 return pIfIo->pfnGetModificationTime(pIfIo->Core.pvUser, pcszFilename,
600 pModificationTime);
601}
602
603DECLINLINE(int) vdIfIoFileGetSize(PVDINTERFACEIO pIfIo, void *pStorage,
604 uint64_t *pcbSize)
605{
606 return pIfIo->pfnGetSize(pIfIo->Core.pvUser, pStorage, pcbSize);
607}
608
609DECLINLINE(int) vdIfIoFileSetSize(PVDINTERFACEIO pIfIo, void *pStorage,
610 uint64_t cbSize)
611{
612 return pIfIo->pfnSetSize(pIfIo->Core.pvUser, pStorage, cbSize);
613}
614
615DECLINLINE(int) vdIfIoFileWriteSync(PVDINTERFACEIO pIfIo, void *pStorage,
616 uint64_t uOffset, const void *pvBuffer, size_t cbBuffer,
617 size_t *pcbWritten)
618{
619 return pIfIo->pfnWriteSync(pIfIo->Core.pvUser, pStorage, uOffset,
620 pvBuffer, cbBuffer, pcbWritten);
621}
622
623DECLINLINE(int) vdIfIoFileReadSync(PVDINTERFACEIO pIfIo, void *pStorage,
624 uint64_t uOffset, void *pvBuffer, size_t cbBuffer,
625 size_t *pcbRead)
626{
627 return pIfIo->pfnReadSync(pIfIo->Core.pvUser, pStorage, uOffset,
628 pvBuffer, cbBuffer, pcbRead);
629}
630
631DECLINLINE(int) vdIfIoFileFlushSync(PVDINTERFACEIO pIfIo, void *pStorage)
632{
633 return pIfIo->pfnFlushSync(pIfIo->Core.pvUser, pStorage);
634}
635
636/**
637 * Create a VFS stream handle around a VD I/O interface.
638 *
639 * The I/O interface will not be closed or free by the stream, the caller will
640 * do so after it is done with the stream and has released the instances of the
641 * I/O stream object returned by this API.
642 *
643 * @return VBox status code.
644 * @param pVDIfsIo Pointer to the VD I/O interface.
645 * @param pvStorage The storage argument to pass to the interface
646 * methods.
647 * @param fFlags RTFILE_O_XXX, access mask requied.
648 * @param phVfsIos Where to return the VFS I/O stream handle on
649 * success.
650 */
651VBOXDDU_DECL(int) VDIfCreateVfsStream(PVDINTERFACEIO pVDIfsIo, void *pvStorage, uint32_t fFlags, PRTVFSIOSTREAM phVfsIos);
652
653struct VDINTERFACEIOINT;
654
655/**
656 * Create a VFS file handle around a VD I/O interface.
657 *
658 * The I/O interface will not be closed or free by the VFS file, the caller will
659 * do so after it is done with the VFS file and has released the instances of
660 * the VFS object returned by this API.
661 *
662 * @return VBox status code.
663 * @param pVDIfs Pointer to the VD I/O interface. If NULL, then @a
664 * pVDIfsInt must be specified.
665 * @param pVDIfsInt Pointer to the internal VD I/O interface. If NULL,
666 * then @ pVDIfs must be specified.
667 * @param pvStorage The storage argument to pass to the interface
668 * methods.
669 * @param fFlags RTFILE_O_XXX, access mask requied.
670 * @param phVfsFile Where to return the VFS file handle on success.
671 */
672VBOXDDU_DECL(int) VDIfCreateVfsFile(PVDINTERFACEIO pVDIfs, struct VDINTERFACEIOINT *pVDIfsInt, void *pvStorage,
673 uint32_t fFlags, PRTVFSFILE phVfsFile);
674
675/**
676 * Creates an VD I/O interface wrapper around an IPRT VFS I/O stream.
677 *
678 * @return VBox status code.
679 * @param hVfsIos The IPRT VFS I/O stream handle. The handle will be
680 * retained by the returned I/O interface (released on
681 * close or destruction).
682 * @param fAccessMode The access mode (RTFILE_O_ACCESS_MASK) to accept.
683 * @param ppIoIf Where to return the pointer to the VD I/O interface.
684 * This must be passed to VDIfDestroyFromVfsStream().
685 */
686VBOXDDU_DECL(int) VDIfCreateFromVfsStream(RTVFSIOSTREAM hVfsIos, uint32_t fAccessMode, PVDINTERFACEIO *ppIoIf);
687
688/**
689 * Destroys the VD I/O interface returned by VDIfCreateFromVfsStream.
690 *
691 * @returns VBox status code.
692 * @param pIoIf The I/O interface pointer returned by
693 * VDIfCreateFromVfsStream. NULL will be quietly
694 * ignored.
695 */
696VBOXDDU_DECL(int) VDIfDestroyFromVfsStream(PVDINTERFACEIO pIoIf);
697
698
699/**
700 * Callback which provides progress information about a currently running
701 * lengthy operation.
702 *
703 * @return VBox status code.
704 * @param pvUser The opaque user data associated with this interface.
705 * @param uPercentage Completion percentage.
706 */
707typedef DECLCALLBACK(int) FNVDPROGRESS(void *pvUser, unsigned uPercentage);
708/** Pointer to FNVDPROGRESS() */
709typedef FNVDPROGRESS *PFNVDPROGRESS;
710
711/**
712 * Progress notification interface
713 *
714 * Per-operation. Optional.
715 */
716typedef struct VDINTERFACEPROGRESS
717{
718 /**
719 * Common interface header.
720 */
721 VDINTERFACE Core;
722
723 /**
724 * Progress notification callbacks.
725 */
726 PFNVDPROGRESS pfnProgress;
727
728} VDINTERFACEPROGRESS, *PVDINTERFACEPROGRESS;
729
730/** Initializer for VDINTERFACEPROGRESS. */
731#define VDINTERFACEPROGRESS_INITALIZER(a_pfnProgress) { { 0, NULL, NULL, VDINTERFACETYPE_INVALID, 0, NULL }, a_pfnProgress }
732
733/**
734 * Get progress interface from interface list.
735 *
736 * @return Pointer to the first progress interface in the list.
737 * @param pVDIfs Pointer to the interface list.
738 */
739DECLINLINE(PVDINTERFACEPROGRESS) VDIfProgressGet(PVDINTERFACE pVDIfs)
740{
741 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_PROGRESS);
742
743 /* Check that the interface descriptor is a progress interface. */
744 AssertMsgReturn( !pIf
745 || ( (pIf->enmInterface == VDINTERFACETYPE_PROGRESS)
746 && (pIf->cbSize == sizeof(VDINTERFACEPROGRESS))),
747 ("Not a progress interface"), NULL);
748
749 return (PVDINTERFACEPROGRESS)pIf;
750}
751
752/**
753 * Signal new progress information to the frontend.
754 *
755 * @returns VBox status code.
756 * @param pIfProgress The progress interface.
757 * @param uPercentage Completion percentage.
758 */
759DECLINLINE(int) vdIfProgress(PVDINTERFACEPROGRESS pIfProgress, unsigned uPercentage)
760{
761 if (pIfProgress)
762 return pIfProgress->pfnProgress(pIfProgress->Core.pvUser, uPercentage);
763 return VINF_SUCCESS;
764}
765
766/**
767 * Configuration information interface
768 *
769 * Per-image. Optional for most backends, but mandatory for images which do
770 * not operate on files (including standard block or character devices).
771 */
772typedef struct VDINTERFACECONFIG
773{
774 /**
775 * Common interface header.
776 */
777 VDINTERFACE Core;
778
779 /**
780 * Validates that the keys are within a set of valid names.
781 *
782 * @return true if all key names are found in pszzAllowed.
783 * @return false if not.
784 * @param pvUser The opaque user data associated with this interface.
785 * @param pszzValid List of valid key names separated by '\\0' and ending with
786 * a double '\\0'.
787 */
788 DECLR3CALLBACKMEMBER(bool, pfnAreKeysValid, (void *pvUser, const char *pszzValid));
789
790 /**
791 * Retrieves the length of the string value associated with a key (including
792 * the terminator, for compatibility with CFGMR3QuerySize).
793 *
794 * @return VBox status code.
795 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
796 * @param pvUser The opaque user data associated with this interface.
797 * @param pszName Name of the key to query.
798 * @param pcbValue Where to store the value length. Non-NULL.
799 */
800 DECLR3CALLBACKMEMBER(int, pfnQuerySize, (void *pvUser, const char *pszName, size_t *pcbValue));
801
802 /**
803 * Query the string value associated with a key.
804 *
805 * @return VBox status code.
806 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
807 * VERR_CFGM_NOT_ENOUGH_SPACE means that the buffer is not big enough.
808 * @param pvUser The opaque user data associated with this interface.
809 * @param pszName Name of the key to query.
810 * @param pszValue Pointer to buffer where to store value.
811 * @param cchValue Length of value buffer.
812 */
813 DECLR3CALLBACKMEMBER(int, pfnQuery, (void *pvUser, const char *pszName, char *pszValue, size_t cchValue));
814
815 /**
816 * Query the bytes value associated with a key.
817 *
818 * @return VBox status code.
819 * VERR_CFGM_VALUE_NOT_FOUND means that the key is not known.
820 * VERR_CFGM_NOT_ENOUGH_SPACE means that the buffer is not big enough.
821 * @param pvUser The opaque user data associated with this interface.
822 * @param pszName Name of the key to query.
823 * @param ppvData Pointer to buffer where to store the data.
824 * @param cbData Length of data buffer.
825 */
826 DECLR3CALLBACKMEMBER(int, pfnQueryBytes, (void *pvUser, const char *pszName, void *ppvData, size_t cbData));
827
828} VDINTERFACECONFIG, *PVDINTERFACECONFIG;
829
830/**
831 * Get configuration information interface from interface list.
832 *
833 * @return Pointer to the first configuration information interface in the list.
834 * @param pVDIfs Pointer to the interface list.
835 */
836DECLINLINE(PVDINTERFACECONFIG) VDIfConfigGet(PVDINTERFACE pVDIfs)
837{
838 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_CONFIG);
839
840 /* Check that the interface descriptor is a progress interface. */
841 AssertMsgReturn( !pIf
842 || ( (pIf->enmInterface == VDINTERFACETYPE_CONFIG)
843 && (pIf->cbSize == sizeof(VDINTERFACECONFIG))),
844 ("Not a config interface"), NULL);
845
846 return (PVDINTERFACECONFIG)pIf;
847}
848
849/**
850 * Query configuration, validates that the keys are within a set of valid names.
851 *
852 * @return true if all key names are found in pszzAllowed.
853 * @return false if not.
854 * @param pCfgIf Pointer to configuration callback table.
855 * @param pszzValid List of valid names separated by '\\0' and ending with
856 * a double '\\0'.
857 */
858DECLINLINE(bool) VDCFGAreKeysValid(PVDINTERFACECONFIG pCfgIf, const char *pszzValid)
859{
860 return pCfgIf->pfnAreKeysValid(pCfgIf->Core.pvUser, pszzValid);
861}
862
863/**
864 * Checks whether a given key is existing.
865 *
866 * @return true if the key exists.
867 * @return false if the key does not exist.
868 * @param pCfgIf Pointer to configuration callback table.
869 * @param pszName Name of the key.
870 */
871DECLINLINE(bool) VDCFGIsKeyExisting(PVDINTERFACECONFIG pCfgIf, const char *pszName)
872{
873 size_t cb = 0;
874 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
875 return rc == VERR_CFGM_VALUE_NOT_FOUND ? false : true;
876}
877
878/**
879 * Query configuration, unsigned 64-bit integer value with default.
880 *
881 * @return VBox status code.
882 * @param pCfgIf Pointer to configuration callback table.
883 * @param pszName Name of an integer value
884 * @param pu64 Where to store the value. Set to default on failure.
885 * @param u64Def The default value.
886 */
887DECLINLINE(int) VDCFGQueryU64Def(PVDINTERFACECONFIG pCfgIf,
888 const char *pszName, uint64_t *pu64,
889 uint64_t u64Def)
890{
891 char aszBuf[32];
892 int rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, aszBuf, sizeof(aszBuf));
893 if (RT_SUCCESS(rc))
894 {
895 rc = RTStrToUInt64Full(aszBuf, 0, pu64);
896 }
897 else if (rc == VERR_CFGM_VALUE_NOT_FOUND)
898 {
899 rc = VINF_SUCCESS;
900 *pu64 = u64Def;
901 }
902 return rc;
903}
904
905/**
906 * Query configuration, unsigned 64-bit integer value.
907 *
908 * @return VBox status code.
909 * @param pCfgIf Pointer to configuration callback table.
910 * @param pszName Name of an integer value
911 * @param pu64 Where to store the value.
912 */
913DECLINLINE(int) VDCFGQueryU64(PVDINTERFACECONFIG pCfgIf, const char *pszName,
914 uint64_t *pu64)
915{
916 char aszBuf[32];
917 int rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, aszBuf, sizeof(aszBuf));
918 if (RT_SUCCESS(rc))
919 {
920 rc = RTStrToUInt64Full(aszBuf, 0, pu64);
921 }
922
923 return rc;
924}
925
926/**
927 * Query configuration, unsigned 32-bit integer value with default.
928 *
929 * @return VBox status code.
930 * @param pCfgIf Pointer to configuration callback table.
931 * @param pszName Name of an integer value
932 * @param pu32 Where to store the value. Set to default on failure.
933 * @param u32Def The default value.
934 */
935DECLINLINE(int) VDCFGQueryU32Def(PVDINTERFACECONFIG pCfgIf,
936 const char *pszName, uint32_t *pu32,
937 uint32_t u32Def)
938{
939 uint64_t u64;
940 int rc = VDCFGQueryU64Def(pCfgIf, pszName, &u64, u32Def);
941 if (RT_SUCCESS(rc))
942 {
943 if (!(u64 & UINT64_C(0xffffffff00000000)))
944 *pu32 = (uint32_t)u64;
945 else
946 rc = VERR_CFGM_INTEGER_TOO_BIG;
947 }
948 return rc;
949}
950
951/**
952 * Query configuration, bool value with default.
953 *
954 * @return VBox status code.
955 * @param pCfgIf Pointer to configuration callback table.
956 * @param pszName Name of an integer value
957 * @param pf Where to store the value. Set to default on failure.
958 * @param fDef The default value.
959 */
960DECLINLINE(int) VDCFGQueryBoolDef(PVDINTERFACECONFIG pCfgIf,
961 const char *pszName, bool *pf,
962 bool fDef)
963{
964 uint64_t u64;
965 int rc = VDCFGQueryU64Def(pCfgIf, pszName, &u64, fDef);
966 if (RT_SUCCESS(rc))
967 *pf = u64 ? true : false;
968 return rc;
969}
970
971/**
972 * Query configuration, bool value.
973 *
974 * @return VBox status code.
975 * @param pCfgIf Pointer to configuration callback table.
976 * @param pszName Name of an integer value
977 * @param pf Where to store the value.
978 */
979DECLINLINE(int) VDCFGQueryBool(PVDINTERFACECONFIG pCfgIf, const char *pszName,
980 bool *pf)
981{
982 uint64_t u64;
983 int rc = VDCFGQueryU64(pCfgIf, pszName, &u64);
984 if (RT_SUCCESS(rc))
985 *pf = u64 ? true : false;
986 return rc;
987}
988
989/**
990 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated
991 * character value.
992 *
993 * @return VBox status code.
994 * @param pCfgIf Pointer to configuration callback table.
995 * @param pszName Name of an zero terminated character value
996 * @param ppszString Where to store the string pointer. Not set on failure.
997 * Free this using RTMemFree().
998 */
999DECLINLINE(int) VDCFGQueryStringAlloc(PVDINTERFACECONFIG pCfgIf,
1000 const char *pszName, char **ppszString)
1001{
1002 size_t cb;
1003 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
1004 if (RT_SUCCESS(rc))
1005 {
1006 char *pszString = (char *)RTMemAlloc(cb);
1007 if (pszString)
1008 {
1009 rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, pszString, cb);
1010 if (RT_SUCCESS(rc))
1011 *ppszString = pszString;
1012 else
1013 RTMemFree(pszString);
1014 }
1015 else
1016 rc = VERR_NO_MEMORY;
1017 }
1018 return rc;
1019}
1020
1021/**
1022 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated
1023 * character value with default.
1024 *
1025 * @return VBox status code.
1026 * @param pCfgIf Pointer to configuration callback table.
1027 * @param pszName Name of an zero terminated character value
1028 * @param ppszString Where to store the string pointer. Not set on failure.
1029 * Free this using RTMemFree().
1030 * @param pszDef The default value.
1031 */
1032DECLINLINE(int) VDCFGQueryStringAllocDef(PVDINTERFACECONFIG pCfgIf,
1033 const char *pszName,
1034 char **ppszString,
1035 const char *pszDef)
1036{
1037 size_t cb;
1038 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
1039 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
1040 {
1041 cb = strlen(pszDef) + 1;
1042 rc = VINF_SUCCESS;
1043 }
1044 if (RT_SUCCESS(rc))
1045 {
1046 char *pszString = (char *)RTMemAlloc(cb);
1047 if (pszString)
1048 {
1049 rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, pszString, cb);
1050 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
1051 {
1052 memcpy(pszString, pszDef, cb);
1053 rc = VINF_SUCCESS;
1054 }
1055 if (RT_SUCCESS(rc))
1056 *ppszString = pszString;
1057 else
1058 RTMemFree(pszString);
1059 }
1060 else
1061 rc = VERR_NO_MEMORY;
1062 }
1063 return rc;
1064}
1065
1066/**
1067 * Query configuration, dynamically allocated (RTMemAlloc) byte string value.
1068 *
1069 * @return VBox status code.
1070 * @param pCfgIf Pointer to configuration callback table.
1071 * @param pszName Name of an zero terminated character value
1072 * @param ppvData Where to store the byte string pointer. Not set on failure.
1073 * Free this using RTMemFree().
1074 * @param pcbData Where to store the byte string length.
1075 */
1076DECLINLINE(int) VDCFGQueryBytesAlloc(PVDINTERFACECONFIG pCfgIf,
1077 const char *pszName, void **ppvData, size_t *pcbData)
1078{
1079 size_t cb;
1080 int rc = pCfgIf->pfnQuerySize(pCfgIf->Core.pvUser, pszName, &cb);
1081 if (RT_SUCCESS(rc))
1082 {
1083 char *pbData;
1084 Assert(cb);
1085
1086 pbData = (char *)RTMemAlloc(cb);
1087 if (pbData)
1088 {
1089 if(pCfgIf->pfnQueryBytes)
1090 rc = pCfgIf->pfnQueryBytes(pCfgIf->Core.pvUser, pszName, pbData, cb);
1091 else
1092 rc = pCfgIf->pfnQuery(pCfgIf->Core.pvUser, pszName, pbData, cb);
1093
1094 if (RT_SUCCESS(rc))
1095 {
1096 *ppvData = pbData;
1097 /* Exclude terminator if the byte data was obtained using the string query callback. */
1098 *pcbData = cb;
1099 if (!pCfgIf->pfnQueryBytes)
1100 (*pcbData)--;
1101 }
1102 else
1103 RTMemFree(pbData);
1104 }
1105 else
1106 rc = VERR_NO_MEMORY;
1107 }
1108 return rc;
1109}
1110
1111/** Forward declaration of a VD socket. */
1112typedef struct VDSOCKETINT *VDSOCKET;
1113/** Pointer to a VD socket. */
1114typedef VDSOCKET *PVDSOCKET;
1115/** Nil socket handle. */
1116#define NIL_VDSOCKET ((VDSOCKET)0)
1117
1118/** Connect flag to indicate that the backend wants to use the extended
1119 * socket I/O multiplexing call. This might not be supported on all configurations
1120 * (internal networking and iSCSI)
1121 * and the backend needs to take appropriate action.
1122 */
1123#define VD_INTERFACETCPNET_CONNECT_EXTENDED_SELECT RT_BIT_32(0)
1124
1125/** @name Select events
1126 * @{ */
1127/** Readable without blocking. */
1128#define VD_INTERFACETCPNET_EVT_READ RT_BIT_32(0)
1129/** Writable without blocking. */
1130#define VD_INTERFACETCPNET_EVT_WRITE RT_BIT_32(1)
1131/** Error condition, hangup, exception or similar. */
1132#define VD_INTERFACETCPNET_EVT_ERROR RT_BIT_32(2)
1133/** Hint for the select that getting interrupted while waiting is more likely.
1134 * The interface implementation can optimize the waiting strategy based on this.
1135 * It is assumed that it is more likely to get one of the above socket events
1136 * instead of being interrupted if the flag is not set. */
1137#define VD_INTERFACETCPNET_HINT_INTERRUPT RT_BIT_32(3)
1138/** Mask of the valid bits. */
1139#define VD_INTERFACETCPNET_EVT_VALID_MASK UINT32_C(0x0000000f)
1140/** @} */
1141
1142/**
1143 * TCP network stack interface
1144 *
1145 * Per-image. Mandatory for backends which have the VD_CAP_TCPNET bit set.
1146 */
1147typedef struct VDINTERFACETCPNET
1148{
1149 /**
1150 * Common interface header.
1151 */
1152 VDINTERFACE Core;
1153
1154 /**
1155 * Creates a socket. The socket is not connected if this succeeds.
1156 *
1157 * @return iprt status code.
1158 * @retval VERR_NOT_SUPPORTED if the combination of flags is not supported.
1159 * @param fFlags Combination of the VD_INTERFACETCPNET_CONNECT_* \#defines.
1160 * @param phVdSock Where to store the handle.
1161 */
1162 DECLR3CALLBACKMEMBER(int, pfnSocketCreate, (uint32_t fFlags, PVDSOCKET phVdSock));
1163
1164 /**
1165 * Destroys the socket.
1166 *
1167 * @return iprt status code.
1168 * @param hVdSock Socket handle (/ pointer).
1169 */
1170 DECLR3CALLBACKMEMBER(int, pfnSocketDestroy, (VDSOCKET hVdSock));
1171
1172 /**
1173 * Connect as a client to a TCP port.
1174 *
1175 * @return iprt status code.
1176 * @param hVdSock Socket handle (/ pointer)..
1177 * @param pszAddress The address to connect to.
1178 * @param uPort The port to connect to.
1179 * @param cMillies Number of milliseconds to wait for the connect attempt to complete.
1180 * Use RT_INDEFINITE_WAIT to wait for ever.
1181 * Use RT_SOCKETCONNECT_DEFAULT_WAIT to wait for the default time
1182 * configured on the running system.
1183 */
1184 DECLR3CALLBACKMEMBER(int, pfnClientConnect, (VDSOCKET hVdSock, const char *pszAddress, uint32_t uPort,
1185 RTMSINTERVAL cMillies));
1186
1187 /**
1188 * Close a TCP connection.
1189 *
1190 * @return iprt status code.
1191 * @param hVdSock Socket handle (/ pointer).
1192 */
1193 DECLR3CALLBACKMEMBER(int, pfnClientClose, (VDSOCKET hVdSock));
1194
1195 /**
1196 * Returns whether the socket is currently connected to the client.
1197 *
1198 * @returns true if the socket is connected.
1199 * false otherwise.
1200 * @param hVdSock Socket handle (/ pointer).
1201 */
1202 DECLR3CALLBACKMEMBER(bool, pfnIsClientConnected, (VDSOCKET hVdSock));
1203
1204 /**
1205 * Socket I/O multiplexing.
1206 * Checks if the socket is ready for reading.
1207 *
1208 * @return iprt status code.
1209 * @param hVdSock Socket handle (/ pointer).
1210 * @param cMillies Number of milliseconds to wait for the socket.
1211 * Use RT_INDEFINITE_WAIT to wait for ever.
1212 */
1213 DECLR3CALLBACKMEMBER(int, pfnSelectOne, (VDSOCKET hVdSock, RTMSINTERVAL cMillies));
1214
1215 /**
1216 * Receive data from a socket.
1217 *
1218 * @return iprt status code.
1219 * @param hVdSock Socket handle (/ pointer).
1220 * @param pvBuffer Where to put the data we read.
1221 * @param cbBuffer Read buffer size.
1222 * @param pcbRead Number of bytes read.
1223 * If NULL the entire buffer will be filled upon successful return.
1224 * If not NULL a partial read can be done successfully.
1225 */
1226 DECLR3CALLBACKMEMBER(int, pfnRead, (VDSOCKET hVdSock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead));
1227
1228 /**
1229 * Send data to a socket.
1230 *
1231 * @return iprt status code.
1232 * @param hVdSock Socket handle (/ pointer).
1233 * @param pvBuffer Buffer to write data to socket.
1234 * @param cbBuffer How much to write.
1235 */
1236 DECLR3CALLBACKMEMBER(int, pfnWrite, (VDSOCKET hVdSock, const void *pvBuffer, size_t cbBuffer));
1237
1238 /**
1239 * Send data from scatter/gather buffer to a socket.
1240 *
1241 * @return iprt status code.
1242 * @param hVdSock Socket handle (/ pointer).
1243 * @param pSgBuf Scatter/gather buffer to write data to socket.
1244 */
1245 DECLR3CALLBACKMEMBER(int, pfnSgWrite, (VDSOCKET hVdSock, PCRTSGBUF pSgBuf));
1246
1247 /**
1248 * Receive data from a socket - not blocking.
1249 *
1250 * @return iprt status code.
1251 * @param hVdSock Socket handle (/ pointer).
1252 * @param pvBuffer Where to put the data we read.
1253 * @param cbBuffer Read buffer size.
1254 * @param pcbRead Number of bytes read.
1255 */
1256 DECLR3CALLBACKMEMBER(int, pfnReadNB, (VDSOCKET hVdSock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead));
1257
1258 /**
1259 * Send data to a socket - not blocking.
1260 *
1261 * @return iprt status code.
1262 * @param hVdSock Socket handle (/ pointer).
1263 * @param pvBuffer Buffer to write data to socket.
1264 * @param cbBuffer How much to write.
1265 * @param pcbWritten Number of bytes written.
1266 */
1267 DECLR3CALLBACKMEMBER(int, pfnWriteNB, (VDSOCKET hVdSock, const void *pvBuffer, size_t cbBuffer, size_t *pcbWritten));
1268
1269 /**
1270 * Send data from scatter/gather buffer to a socket - not blocking.
1271 *
1272 * @return iprt status code.
1273 * @param hVdSock Socket handle (/ pointer).
1274 * @param pSgBuf Scatter/gather buffer to write data to socket.
1275 * @param pcbWritten Number of bytes written.
1276 */
1277 DECLR3CALLBACKMEMBER(int, pfnSgWriteNB, (VDSOCKET hVdSock, PRTSGBUF pSgBuf, size_t *pcbWritten));
1278
1279 /**
1280 * Flush socket write buffers.
1281 *
1282 * @return iprt status code.
1283 * @param hVdSock Socket handle (/ pointer).
1284 */
1285 DECLR3CALLBACKMEMBER(int, pfnFlush, (VDSOCKET hVdSock));
1286
1287 /**
1288 * Enables or disables delaying sends to coalesce packets.
1289 *
1290 * @return iprt status code.
1291 * @param hVdSock Socket handle (/ pointer).
1292 * @param fEnable When set to true enables coalescing.
1293 */
1294 DECLR3CALLBACKMEMBER(int, pfnSetSendCoalescing, (VDSOCKET hVdSock, bool fEnable));
1295
1296 /**
1297 * Gets the address of the local side.
1298 *
1299 * @return iprt status code.
1300 * @param hVdSock Socket handle (/ pointer).
1301 * @param pAddr Where to store the local address on success.
1302 */
1303 DECLR3CALLBACKMEMBER(int, pfnGetLocalAddress, (VDSOCKET hVdSock, PRTNETADDR pAddr));
1304
1305 /**
1306 * Gets the address of the other party.
1307 *
1308 * @return iprt status code.
1309 * @param hVdSock Socket handle (/ pointer).
1310 * @param pAddr Where to store the peer address on success.
1311 */
1312 DECLR3CALLBACKMEMBER(int, pfnGetPeerAddress, (VDSOCKET hVdSock, PRTNETADDR pAddr));
1313
1314 /**
1315 * Socket I/O multiplexing - extended version which can be woken up.
1316 * Checks if the socket is ready for reading or writing.
1317 *
1318 * @return iprt status code.
1319 * @retval VERR_INTERRUPTED if the thread was woken up by a pfnPoke call.
1320 * @param hVdSock VD Socket handle(/pointer).
1321 * @param fEvents Mask of events to wait for.
1322 * @param pfEvents Where to store the received events.
1323 * @param cMillies Number of milliseconds to wait for the socket.
1324 * Use RT_INDEFINITE_WAIT to wait for ever.
1325 */
1326 DECLR3CALLBACKMEMBER(int, pfnSelectOneEx, (VDSOCKET hVdSock, uint32_t fEvents,
1327 uint32_t *pfEvents, RTMSINTERVAL cMillies));
1328
1329 /**
1330 * Wakes up the thread waiting in pfnSelectOneEx.
1331 *
1332 * @return iprt status code.
1333 * @param hVdSock VD Socket handle(/pointer).
1334 */
1335 DECLR3CALLBACKMEMBER(int, pfnPoke, (VDSOCKET hVdSock));
1336
1337} VDINTERFACETCPNET, *PVDINTERFACETCPNET;
1338
1339/**
1340 * Get TCP network stack interface from interface list.
1341 *
1342 * @return Pointer to the first TCP network stack interface in the list.
1343 * @param pVDIfs Pointer to the interface list.
1344 */
1345DECLINLINE(PVDINTERFACETCPNET) VDIfTcpNetGet(PVDINTERFACE pVDIfs)
1346{
1347 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_TCPNET);
1348
1349 /* Check that the interface descriptor is a progress interface. */
1350 AssertMsgReturn( !pIf
1351 || ( (pIf->enmInterface == VDINTERFACETYPE_TCPNET)
1352 && (pIf->cbSize == sizeof(VDINTERFACETCPNET))),
1353 ("Not a TCP net interface"), NULL);
1354
1355 return (PVDINTERFACETCPNET)pIf;
1356}
1357
1358
1359/**
1360 * Interface to synchronize concurrent accesses by several threads.
1361 *
1362 * @note The scope of this interface is to manage concurrent accesses after
1363 * the HDD container has been created, and they must stop before destroying the
1364 * container. Opening or closing images is covered by the synchronization, but
1365 * that does not mean it is safe to close images while a thread executes
1366 * #VDMerge or #VDCopy operating on these images. Making them safe would require
1367 * the lock to be held during the entire operation, which prevents other
1368 * concurrent acitivities.
1369 *
1370 * @note Right now this is kept as simple as possible, and does not even
1371 * attempt to provide enough information to allow e.g. concurrent write
1372 * accesses to different areas of the disk. The reason is that it is very
1373 * difficult to predict which area of a disk is affected by a write,
1374 * especially when different image formats are mixed. Maybe later a more
1375 * sophisticated interface will be provided which has the necessary information
1376 * about worst case affected areas.
1377 *
1378 * Per-disk interface. Optional, needed if the disk is accessed concurrently
1379 * by several threads, e.g. when merging diff images while a VM is running.
1380 */
1381typedef struct VDINTERFACETHREADSYNC
1382{
1383 /**
1384 * Common interface header.
1385 */
1386 VDINTERFACE Core;
1387
1388 /**
1389 * Start a read operation.
1390 */
1391 DECLR3CALLBACKMEMBER(int, pfnStartRead, (void *pvUser));
1392
1393 /**
1394 * Finish a read operation.
1395 */
1396 DECLR3CALLBACKMEMBER(int, pfnFinishRead, (void *pvUser));
1397
1398 /**
1399 * Start a write operation.
1400 */
1401 DECLR3CALLBACKMEMBER(int, pfnStartWrite, (void *pvUser));
1402
1403 /**
1404 * Finish a write operation.
1405 */
1406 DECLR3CALLBACKMEMBER(int, pfnFinishWrite, (void *pvUser));
1407
1408} VDINTERFACETHREADSYNC, *PVDINTERFACETHREADSYNC;
1409
1410/**
1411 * Get thread synchronization interface from interface list.
1412 *
1413 * @return Pointer to the first thread synchronization interface in the list.
1414 * @param pVDIfs Pointer to the interface list.
1415 */
1416DECLINLINE(PVDINTERFACETHREADSYNC) VDIfThreadSyncGet(PVDINTERFACE pVDIfs)
1417{
1418 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_THREADSYNC);
1419
1420 /* Check that the interface descriptor is a progress interface. */
1421 AssertMsgReturn( !pIf
1422 || ( (pIf->enmInterface == VDINTERFACETYPE_THREADSYNC)
1423 && (pIf->cbSize == sizeof(VDINTERFACETHREADSYNC))),
1424 ("Not a thread synchronization interface"), NULL);
1425
1426 return (PVDINTERFACETHREADSYNC)pIf;
1427}
1428
1429/**
1430 * Interface to query usage of disk ranges.
1431 *
1432 * Per-operation interface. Optional.
1433 */
1434typedef struct VDINTERFACEQUERYRANGEUSE
1435{
1436 /**
1437 * Common interface header.
1438 */
1439 VDINTERFACE Core;
1440
1441 /**
1442 * Query use of a disk range.
1443 */
1444 DECLR3CALLBACKMEMBER(int, pfnQueryRangeUse, (void *pvUser, uint64_t off, uint64_t cb,
1445 bool *pfUsed));
1446
1447} VDINTERFACEQUERYRANGEUSE, *PVDINTERFACEQUERYRANGEUSE;
1448
1449/**
1450 * Get query range use interface from interface list.
1451 *
1452 * @return Pointer to the first thread synchronization interface in the list.
1453 * @param pVDIfs Pointer to the interface list.
1454 */
1455DECLINLINE(PVDINTERFACEQUERYRANGEUSE) VDIfQueryRangeUseGet(PVDINTERFACE pVDIfs)
1456{
1457 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_QUERYRANGEUSE);
1458
1459 /* Check that the interface descriptor is a progress interface. */
1460 AssertMsgReturn( !pIf
1461 || ( (pIf->enmInterface == VDINTERFACETYPE_QUERYRANGEUSE)
1462 && (pIf->cbSize == sizeof(VDINTERFACEQUERYRANGEUSE))),
1463 ("Not a query range use interface"), NULL);
1464
1465 return (PVDINTERFACEQUERYRANGEUSE)pIf;
1466}
1467
1468DECLINLINE(int) vdIfQueryRangeUse(PVDINTERFACEQUERYRANGEUSE pIfQueryRangeUse, uint64_t off, uint64_t cb,
1469 bool *pfUsed)
1470{
1471 return pIfQueryRangeUse->pfnQueryRangeUse(pIfQueryRangeUse->Core.pvUser, off, cb, pfUsed);
1472}
1473
1474
1475/**
1476 * Interface used to retrieve keys for cryptographic operations.
1477 *
1478 * Per-module interface. Optional but cryptographic modules might fail and
1479 * return an error if this is not present.
1480 */
1481typedef struct VDINTERFACECRYPTO
1482{
1483 /**
1484 * Common interface header.
1485 */
1486 VDINTERFACE Core;
1487
1488 /**
1489 * Retains a key identified by the ID. The caller will only hold a reference
1490 * to the key and must not modify the key buffer in any way.
1491 *
1492 * @returns VBox status code.
1493 * @param pvUser The opaque user data associated with this interface.
1494 * @param pszId The alias/id for the key to retrieve.
1495 * @param ppbKey Where to store the pointer to the key buffer on success.
1496 * @param pcbKey Where to store the size of the key in bytes on success.
1497 */
1498 DECLR3CALLBACKMEMBER(int, pfnKeyRetain, (void *pvUser, const char *pszId, const uint8_t **ppbKey, size_t *pcbKey));
1499
1500 /**
1501 * Releases one reference of the key identified by the given identifier.
1502 * The caller must not access the key buffer after calling this operation.
1503 *
1504 * @returns VBox status code.
1505 * @param pvUser The opaque user data associated with this interface.
1506 * @param pszId The alias/id for the key to release.
1507 *
1508 * @note It is advised to release the key whenever it is not used anymore so
1509 * the entity storing the key can do anything to make retrieving the key
1510 * from memory more difficult like scrambling the memory buffer for
1511 * instance.
1512 */
1513 DECLR3CALLBACKMEMBER(int, pfnKeyRelease, (void *pvUser, const char *pszId));
1514
1515 /**
1516 * Gets a reference to the password identified by the given ID to open a key store supplied through the config interface.
1517 *
1518 * @returns VBox status code.
1519 * @param pvUser The opaque user data associated with this interface.
1520 * @param pszId The alias/id for the password to retain.
1521 * @param ppszPassword Where to store the password to unlock the key store on success.
1522 */
1523 DECLR3CALLBACKMEMBER(int, pfnKeyStorePasswordRetain, (void *pvUser, const char *pszId, const char **ppszPassword));
1524
1525 /**
1526 * Releases a reference of the password previously acquired with VDINTERFACECRYPTO::pfnKeyStorePasswordRetain()
1527 * identified by the given ID.
1528 *
1529 * @returns VBox status code.
1530 * @param pvUser The opaque user data associated with this interface.
1531 * @param pszId The alias/id for the password to release.
1532 */
1533 DECLR3CALLBACKMEMBER(int, pfnKeyStorePasswordRelease, (void *pvUser, const char *pszId));
1534
1535 /**
1536 * Saves a key store.
1537 *
1538 * @returns VBox status code.
1539 * @param pvUser The opaque user data associated with this interface.
1540 * @param pvKeyStore The key store to save.
1541 * @param cbKeyStore Size of the key store in bytes.
1542 *
1543 * @note The format is filter specific and should be treated as binary data.
1544 */
1545 DECLR3CALLBACKMEMBER(int, pfnKeyStoreSave, (void *pvUser, const void *pvKeyStore, size_t cbKeyStore));
1546
1547 /**
1548 * Returns the parameters after the key store was loaded successfully.
1549 *
1550 * @returns VBox status code.
1551 * @param pvUser The opaque user data associated with this interface.
1552 * @param pszCipher The cipher identifier the DEK is used for.
1553 * @param pbDek The raw DEK which was contained in the key store loaded by
1554 * VDINTERFACECRYPTO::pfnKeyStoreLoad().
1555 * @param cbDek The size of the DEK.
1556 *
1557 * @note The provided pointer to the DEK is only valid until this call returns.
1558 * The content might change afterwards with out notice (when scrambling the key
1559 * for further protection for example) or might be even freed.
1560 *
1561 * @note This method is optional and can be NULL if the caller does not require the
1562 * parameters.
1563 */
1564 DECLR3CALLBACKMEMBER(int, pfnKeyStoreReturnParameters, (void *pvUser, const char *pszCipher,
1565 const uint8_t *pbDek, size_t cbDek));
1566
1567} VDINTERFACECRYPTO, *PVDINTERFACECRYPTO;
1568
1569
1570/**
1571 * Get error interface from interface list.
1572 *
1573 * @return Pointer to the first error interface in the list.
1574 * @param pVDIfs Pointer to the interface list.
1575 */
1576DECLINLINE(PVDINTERFACECRYPTO) VDIfCryptoGet(PVDINTERFACE pVDIfs)
1577{
1578 PVDINTERFACE pIf = VDInterfaceGet(pVDIfs, VDINTERFACETYPE_CRYPTO);
1579
1580 /* Check that the interface descriptor is a crypto interface. */
1581 AssertMsgReturn( !pIf
1582 || ( (pIf->enmInterface == VDINTERFACETYPE_CRYPTO)
1583 && (pIf->cbSize == sizeof(VDINTERFACECRYPTO))),
1584 ("Not an crypto interface\n"), NULL);
1585
1586 return (PVDINTERFACECRYPTO)pIf;
1587}
1588
1589/**
1590 * Retains a key identified by the ID. The caller will only hold a reference
1591 * to the key and must not modify the key buffer in any way.
1592 *
1593 * @returns VBox status code.
1594 * @param pIfCrypto Pointer to the crypto interface.
1595 * @param pszId The alias/id for the key to retrieve.
1596 * @param ppbKey Where to store the pointer to the key buffer on success.
1597 * @param pcbKey Where to store the size of the key in bytes on success.
1598 */
1599DECLINLINE(int) vdIfCryptoKeyRetain(PVDINTERFACECRYPTO pIfCrypto, const char *pszId, const uint8_t **ppbKey, size_t *pcbKey)
1600{
1601 return pIfCrypto->pfnKeyRetain(pIfCrypto->Core.pvUser, pszId, ppbKey, pcbKey);
1602}
1603
1604/**
1605 * Releases one reference of the key identified by the given identifier.
1606 * The caller must not access the key buffer after calling this operation.
1607 *
1608 * @returns VBox status code.
1609 * @param pIfCrypto Pointer to the crypto interface.
1610 * @param pszId The alias/id for the key to release.
1611 *
1612 * @note It is advised to release the key whenever it is not used anymore so
1613 * the entity storing the key can do anything to make retrieving the key
1614 * from memory more difficult like scrambling the memory buffer for
1615 * instance.
1616 */
1617DECLINLINE(int) vdIfCryptoKeyRelease(PVDINTERFACECRYPTO pIfCrypto, const char *pszId)
1618{
1619 return pIfCrypto->pfnKeyRelease(pIfCrypto->Core.pvUser, pszId);
1620}
1621
1622/**
1623 * Gets a reference to the password identified by the given ID to open a key store supplied through the config interface.
1624 *
1625 * @returns VBox status code.
1626 * @param pIfCrypto Pointer to the crypto interface.
1627 * @param pszId The alias/id for the password to retain.
1628 * @param ppszPassword Where to store the password to unlock the key store on success.
1629 */
1630DECLINLINE(int) vdIfCryptoKeyStorePasswordRetain(PVDINTERFACECRYPTO pIfCrypto, const char *pszId, const char **ppszPassword)
1631{
1632 return pIfCrypto->pfnKeyStorePasswordRetain(pIfCrypto->Core.pvUser, pszId, ppszPassword);
1633}
1634
1635/**
1636 * Releases a reference of the password previously acquired with VDINTERFACECRYPTO::pfnKeyStorePasswordRetain()
1637 * identified by the given ID.
1638 *
1639 * @returns VBox status code.
1640 * @param pIfCrypto Pointer to the crypto interface.
1641 * @param pszId The alias/id for the password to release.
1642 */
1643DECLINLINE(int) vdIfCryptoKeyStorePasswordRelease(PVDINTERFACECRYPTO pIfCrypto, const char *pszId)
1644{
1645 return pIfCrypto->pfnKeyStorePasswordRelease(pIfCrypto->Core.pvUser, pszId);
1646}
1647
1648/**
1649 * Saves a key store.
1650 *
1651 * @returns VBox status code.
1652 * @param pIfCrypto Pointer to the crypto interface.
1653 * @param pvKeyStore The key store to save.
1654 * @param cbKeyStore Size of the key store in bytes.
1655 *
1656 * @note The format is filter specific and should be treated as binary data.
1657 */
1658DECLINLINE(int) vdIfCryptoKeyStoreSave(PVDINTERFACECRYPTO pIfCrypto, const void *pvKeyStore, size_t cbKeyStore)
1659{
1660 return pIfCrypto->pfnKeyStoreSave(pIfCrypto->Core.pvUser, pvKeyStore, cbKeyStore);
1661}
1662
1663/**
1664 * Returns the parameters after the key store was loaded successfully.
1665 *
1666 * @returns VBox status code.
1667 * @param pIfCrypto Pointer to the crypto interface.
1668 * @param pszCipher The cipher identifier the DEK is used for.
1669 * @param pbDek The raw DEK which was contained in the key store loaded by
1670 * VDINTERFACECRYPTO::pfnKeyStoreLoad().
1671 * @param cbDek The size of the DEK.
1672 *
1673 * @note The provided pointer to the DEK is only valid until this call returns.
1674 * The content might change afterwards with out notice (when scrambling the key
1675 * for further protection for example) or might be even freed.
1676 *
1677 * @note This method is optional and can be NULL if the caller does not require the
1678 * parameters.
1679 */
1680DECLINLINE(int) vdIfCryptoKeyStoreReturnParameters(PVDINTERFACECRYPTO pIfCrypto, const char *pszCipher,
1681 const uint8_t *pbDek, size_t cbDek)
1682{
1683 if (pIfCrypto->pfnKeyStoreReturnParameters)
1684 return pIfCrypto->pfnKeyStoreReturnParameters(pIfCrypto->Core.pvUser, pszCipher, pbDek, cbDek);
1685
1686 return VINF_SUCCESS;
1687}
1688
1689
1690RT_C_DECLS_END
1691
1692/** @} */
1693
1694#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use