VirtualBox

source: vbox/trunk/include/VBox/vd-image-backend.h@ 66668

Last change on this file since 66668 was 66486, checked in by vboxsync, 8 years ago

Storage/VD: Convert all backends to use the region list callbacks, remove the pfnGetSize and pfnGetSectorSize callbacks because they are covered by the region lists

  • Property svn:eol-style set to native
File size: 26.5 KB
Line 
1/** @file
2 * VD: Image backend interface.
3 */
4
5/*
6 * Copyright (C) 2006-2016 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_image_backend_h
27#define ___VBox_vd_image_backend_h
28
29#include <VBox/vd.h>
30#include <VBox/vd-common.h>
31#include <VBox/vd-ifs-internal.h>
32
33
34/** @name VBox HDD backend write flags
35 * @{
36 */
37/** Do not allocate a new block on this write. This is just an advisory
38 * flag. The backend may still decide in some circumstances that it wants
39 * to ignore this flag (which may cause extra dynamic image expansion). */
40#define VD_WRITE_NO_ALLOC RT_BIT(1)
41/** @}*/
42
43/** @name VBox HDD backend discard flags
44 * @{
45 */
46/** Don't discard block but mark the given range as unused
47 * (usually by writing 0's to it).
48 * This doesn't require the range to be aligned on a block boundary but
49 * the image size might not be decreased. */
50#define VD_DISCARD_MARK_UNUSED RT_BIT(0)
51/** @}*/
52
53/** @name VBox HDD backend metadata traverse flags
54 * @{
55 */
56/** Include per block metadata while traversing the metadata.
57 * This might take much longer instead of traversing just global metadata. */
58#define VD_TRAVERSE_METADATA_INCLUDE_PER_BLOCK_METADATA RT_BIT(0)
59/** @}*/
60
61/**
62 * Image format backend interface used by VBox HDD Container implementation.
63 */
64typedef struct VDIMAGEBACKEND
65{
66 /** Structure version. VD_IMGBACKEND_VERSION defines the current version. */
67 uint32_t u32Version;
68 /** The name of the backend (constant string). */
69 const char *pszBackendName;
70 /** The capabilities of the backend. */
71 uint64_t uBackendCaps;
72
73 /**
74 * Pointer to a NULL-terminated array, containing the supported
75 * file extensions. Note that some backends do not work on files, so this
76 * pointer may just contain NULL.
77 */
78 PCVDFILEEXTENSION paFileExtensions;
79
80 /**
81 * Pointer to an array of structs describing each supported config key.
82 * Terminated by a NULL config key. Note that some backends do not support
83 * the configuration interface, so this pointer may just contain NULL.
84 * Mandatory if the backend sets VD_CAP_CONFIG.
85 */
86 PCVDCONFIGINFO paConfigInfo;
87
88 /**
89 * Check whether the file is supported by the backend.
90 *
91 * @returns VBox status code.
92 * @param pszFilename Name of the image file.
93 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
94 * @param pVDIfsImage Pointer to the per-image VD interface list.
95 * @param penmType Returns the supported device type on success.
96 */
97 DECLR3CALLBACKMEMBER(int, pfnProbe, (const char *pszFilename, PVDINTERFACE pVDIfsDisk,
98 PVDINTERFACE pVDIfsImage, VDTYPE *penmType));
99
100 /**
101 * Open a disk image.
102 *
103 * @returns VBox status code.
104 * @param pszFilename Name of the image file to open. Guaranteed to be available and
105 * unchanged during the lifetime of this image.
106 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
107 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
108 * @param pVDIfsImage Pointer to the per-image VD interface list.
109 * @param enmType Requested type of the image.
110 * @param ppBackendData Opaque state data for this image.
111 */
112 DECLR3CALLBACKMEMBER(int, pfnOpen, (const char *pszFilename, unsigned uOpenFlags,
113 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
114 VDTYPE enmType, void **ppBackendData));
115
116 /**
117 * Create a disk image.
118 *
119 * @returns VBox status code.
120 * @param pszFilename Name of the image file to create. Guaranteed to be available and
121 * unchanged during the lifetime of this image.
122 * @param cbSize Image size in bytes.
123 * @param uImageFlags Flags specifying special image features.
124 * @param pszComment Pointer to image comment. NULL is ok.
125 * @param pPCHSGeometry Physical drive geometry CHS <= (16383,16,255).
126 * @param pLCHSGeometry Logical drive geometry CHS <= (1024,255,63).
127 * @param pUuid New UUID of the image. Not NULL.
128 * @param uOpenFlags Image file open mode, see VD_OPEN_FLAGS_* constants.
129 * @param uPercentStart Starting value for progress percentage.
130 * @param uPercentSpan Span for varying progress percentage.
131 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
132 * @param pVDIfsImage Pointer to the per-image VD interface list.
133 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
134 * @param enmType Requested type of the image.
135 * @param ppBackendData Opaque state data for this image.
136 */
137 DECLR3CALLBACKMEMBER(int, pfnCreate, (const char *pszFilename, uint64_t cbSize,
138 unsigned uImageFlags, const char *pszComment,
139 PCVDGEOMETRY pPCHSGeometry,
140 PCVDGEOMETRY pLCHSGeometry,
141 PCRTUUID pUuid, unsigned uOpenFlags,
142 unsigned uPercentStart, unsigned uPercentSpan,
143 PVDINTERFACE pVDIfsDisk,
144 PVDINTERFACE pVDIfsImage,
145 PVDINTERFACE pVDIfsOperation,
146 VDTYPE enmType,
147 void **ppBackendData));
148
149 /**
150 * Rename a disk image. Only needs to work as long as the operating
151 * system's rename file functionality is usable. If an attempt is made to
152 * rename an image to a location on another disk/filesystem, this function
153 * may just fail with an appropriate error code (not changing the opened
154 * image data at all). Also works only on images which actually refer to
155 * regular files. May be NULL.
156 *
157 * @returns VBox status code.
158 * @param pBackendData Opaque state data for this image.
159 * @param pszFilename New name of the image file. Guaranteed to be available and
160 * unchanged during the lifetime of this image.
161 */
162 DECLR3CALLBACKMEMBER(int, pfnRename, (void *pBackendData, const char *pszFilename));
163
164 /**
165 * Close a disk image.
166 *
167 * @returns VBox status code.
168 * @param pBackendData Opaque state data for this image.
169 * @param fDelete If true, delete the image from the host disk.
170 */
171 DECLR3CALLBACKMEMBER(int, pfnClose, (void *pBackendData, bool fDelete));
172
173 /**
174 * Start a read request.
175 *
176 * @returns VBox status code.
177 * @param pBackendData Opaque state data for this image.
178 * @param uOffset The offset of the virtual disk to read from.
179 * @param cbToRead How many bytes to read.
180 * @param pIoCtx I/O context associated with this request.
181 * @param pcbActuallyRead Pointer to returned number of bytes read.
182 */
183 DECLR3CALLBACKMEMBER(int, pfnRead, (void *pBackendData, uint64_t uOffset, size_t cbToRead,
184 PVDIOCTX pIoCtx, size_t *pcbActuallyRead));
185
186 /**
187 * Start a write request.
188 *
189 * @returns VBox status code.
190 * @param pBackendData Opaque state data for this image.
191 * @param uOffset The offset of the virtual disk to write to.
192 * @param cbToWrite How many bytes to write.
193 * @param pIoCtx I/O context associated with this request.
194 * @param pcbWriteProcess Pointer to returned number of bytes that could
195 * be processed. In case the function returned
196 * VERR_VD_BLOCK_FREE this is the number of bytes
197 * that could be written in a full block write,
198 * when prefixed/postfixed by the appropriate
199 * amount of (previously read) padding data.
200 * @param pcbPreRead Pointer to the returned amount of data that must
201 * be prefixed to perform a full block write.
202 * @param pcbPostRead Pointer to the returned amount of data that must
203 * be postfixed to perform a full block write.
204 * @param fWrite Flags which affect write behavior. Combination
205 * of the VD_WRITE_* flags.
206 */
207 DECLR3CALLBACKMEMBER(int, pfnWrite, (void *pBackendData, uint64_t uOffset, size_t cbToWrite,
208 PVDIOCTX pIoCtx,
209 size_t *pcbWriteProcess, size_t *pcbPreRead,
210 size_t *pcbPostRead, unsigned fWrite));
211
212 /**
213 * Flush data to disk.
214 *
215 * @returns VBox status code.
216 * @param pBackendData Opaque state data for this image.
217 * @param pIoCtx I/O context associated with this request.
218 */
219 DECLR3CALLBACKMEMBER(int, pfnFlush, (void *pBackendData, PVDIOCTX pIoCtx));
220
221 /**
222 * Discards the given amount of bytes decreasing the size of the image if possible
223 *
224 * @returns VBox status code.
225 * @retval VERR_VD_DISCARD_ALIGNMENT_NOT_MET if the range doesn't meet the required alignment
226 * for the discard.
227 * @param pBackendData Opaque state data for this image.
228 * @param pIoCtx I/O context associated with this request.
229 * @param uOffset The offset of the first byte to discard.
230 * @param cbDiscard How many bytes to discard.
231 * @param pcbPreAllocated Pointer to the returned amount of bytes that must
232 * be discarded before the range to perform a full
233 * block discard.
234 * @param pcbPostAllocated Pointer to the returned amount of bytes that must
235 * be discarded after the range to perform a full
236 * block discard.
237 * @param pcbActuallyDiscarded Pointer to the returned amount of bytes which
238 * could be actually discarded.
239 * @param ppbmAllocationBitmap Where to store the pointer to the allocation bitmap
240 * if VERR_VD_DISCARD_ALIGNMENT_NOT_MET is returned or NULL
241 * if the allocation bitmap should be returned.
242 * @param fDiscard Flags which affect discard behavior. Combination
243 * of the VD_DISCARD_* flags.
244 */
245 DECLR3CALLBACKMEMBER(int, pfnDiscard, (void *pBackendData, PVDIOCTX pIoCtx,
246 uint64_t uOffset, size_t cbDiscard,
247 size_t *pcbPreAllocated,
248 size_t *pcbPostAllocated,
249 size_t *pcbActuallyDiscarded,
250 void **ppbmAllocationBitmap,
251 unsigned fDiscard));
252
253 /**
254 * Get the version of a disk image.
255 *
256 * @returns version of disk image.
257 * @param pBackendData Opaque state data for this image.
258 */
259 DECLR3CALLBACKMEMBER(unsigned, pfnGetVersion, (void *pBackendData));
260
261 /**
262 * Get the file size of a disk image.
263 *
264 * @returns size of disk image in bytes.
265 * @param pBackendData Opaque state data for this image.
266 */
267 DECLR3CALLBACKMEMBER(uint64_t, pfnGetFileSize, (void *pBackendData));
268
269 /**
270 * Get virtual disk PCHS geometry stored in a disk image.
271 *
272 * @returns VBox status code.
273 * @returns VERR_VD_GEOMETRY_NOT_SET if no geometry present in the image.
274 * @param pBackendData Opaque state data for this image.
275 * @param pPCHSGeometry Where to store the geometry. Not NULL.
276 */
277 DECLR3CALLBACKMEMBER(int, pfnGetPCHSGeometry, (void *pBackendData, PVDGEOMETRY pPCHSGeometry));
278
279 /**
280 * Set virtual disk PCHS geometry stored in a disk image.
281 * Only called if geometry is different than before.
282 *
283 * @returns VBox status code.
284 * @param pBackendData Opaque state data for this image.
285 * @param pPCHSGeometry Where to load the geometry from. Not NULL.
286 */
287 DECLR3CALLBACKMEMBER(int, pfnSetPCHSGeometry, (void *pBackendData, PCVDGEOMETRY pPCHSGeometry));
288
289 /**
290 * Get virtual disk LCHS geometry stored in a disk image.
291 *
292 * @returns VBox status code.
293 * @returns VERR_VD_GEOMETRY_NOT_SET if no geometry present in the image.
294 * @param pBackendData Opaque state data for this image.
295 * @param pLCHSGeometry Where to store the geometry. Not NULL.
296 */
297 DECLR3CALLBACKMEMBER(int, pfnGetLCHSGeometry, (void *pBackendData, PVDGEOMETRY pLCHSGeometry));
298
299 /**
300 * Set virtual disk LCHS geometry stored in a disk image.
301 * Only called if geometry is different than before.
302 *
303 * @returns VBox status code.
304 * @param pBackendData Opaque state data for this image.
305 * @param pLCHSGeometry Where to load the geometry from. Not NULL.
306 */
307 DECLR3CALLBACKMEMBER(int, pfnSetLCHSGeometry, (void *pBackendData, PCVDGEOMETRY pLCHSGeometry));
308
309 /**
310 * Returns a region list for the disk image if supported, optional.
311 *
312 * @returns VBox status code.
313 * @retval VERR_NOT_SUPPORTED if region lists are not supported for this kind of image.
314 * @param pBackendData Opaque state data for this image.
315 * @param ppRegionList Where to store the pointer to the region list on success.
316 */
317 DECLR3CALLBACKMEMBER(int, pfnQueryRegions, (void *pBackendData, PCVDREGIONLIST *ppRegionList));
318
319 /**
320 * Releases the region list acquired with VDIMAGEBACKEND::pfnQueryRegions() before.
321 *
322 * @returns nothing.
323 * @param pBackendData Opaque state data for this image.
324 * @param pRegionList The region list to release.
325 */
326 DECLR3CALLBACKMEMBER(void, pfnRegionListRelease, (void *pBackendData, PCVDREGIONLIST pRegionList));
327
328 /**
329 * Get the image flags of a disk image.
330 *
331 * @returns image flags of disk image.
332 * @param pBackendData Opaque state data for this image.
333 */
334 DECLR3CALLBACKMEMBER(unsigned, pfnGetImageFlags, (void *pBackendData));
335
336 /**
337 * Get the open flags of a disk image.
338 *
339 * @returns open flags of disk image.
340 * @param pBackendData Opaque state data for this image.
341 */
342 DECLR3CALLBACKMEMBER(unsigned, pfnGetOpenFlags, (void *pBackendData));
343
344 /**
345 * Set the open flags of a disk image. May cause the image to be locked
346 * in a different mode or be reopened (which can fail).
347 *
348 * @returns VBox status code.
349 * @param pBackendData Opaque state data for this image.
350 * @param uOpenFlags New open flags for this image.
351 */
352 DECLR3CALLBACKMEMBER(int, pfnSetOpenFlags, (void *pBackendData, unsigned uOpenFlags));
353
354 /**
355 * Get comment of a disk image.
356 *
357 * @returns VBox status code.
358 * @param pBackendData Opaque state data for this image.
359 * @param pszComment Where to store the comment.
360 * @param cbComment Size of the comment buffer.
361 */
362 DECLR3CALLBACKMEMBER(int, pfnGetComment, (void *pBackendData, char *pszComment, size_t cbComment));
363
364 /**
365 * Set comment of a disk image.
366 *
367 * @returns VBox status code.
368 * @param pBackendData Opaque state data for this image.
369 * @param pszComment Where to get the comment from. NULL resets comment.
370 * The comment is silently truncated if the image format
371 * limit is exceeded.
372 */
373 DECLR3CALLBACKMEMBER(int, pfnSetComment, (void *pBackendData, const char *pszComment));
374
375 /**
376 * Get UUID of a disk image.
377 *
378 * @returns VBox status code.
379 * @param pBackendData Opaque state data for this image.
380 * @param pUuid Where to store the image UUID.
381 */
382 DECLR3CALLBACKMEMBER(int, pfnGetUuid, (void *pBackendData, PRTUUID pUuid));
383
384 /**
385 * Set UUID of a disk image.
386 *
387 * @returns VBox status code.
388 * @param pBackendData Opaque state data for this image.
389 * @param pUuid Where to get the image UUID from.
390 */
391 DECLR3CALLBACKMEMBER(int, pfnSetUuid, (void *pBackendData, PCRTUUID pUuid));
392
393 /**
394 * Get last modification UUID of a disk image.
395 *
396 * @returns VBox status code.
397 * @param pBackendData Opaque state data for this image.
398 * @param pUuid Where to store the image modification UUID.
399 */
400 DECLR3CALLBACKMEMBER(int, pfnGetModificationUuid, (void *pBackendData, PRTUUID pUuid));
401
402 /**
403 * Set last modification UUID of a disk image.
404 *
405 * @returns VBox status code.
406 * @param pBackendData Opaque state data for this image.
407 * @param pUuid Where to get the image modification UUID from.
408 */
409 DECLR3CALLBACKMEMBER(int, pfnSetModificationUuid, (void *pBackendData, PCRTUUID pUuid));
410
411 /**
412 * Get parent UUID of a disk image.
413 *
414 * @returns VBox status code.
415 * @param pBackendData Opaque state data for this image.
416 * @param pUuid Where to store the parent image UUID.
417 */
418 DECLR3CALLBACKMEMBER(int, pfnGetParentUuid, (void *pBackendData, PRTUUID pUuid));
419
420 /**
421 * Set parent UUID of a disk image.
422 *
423 * @returns VBox status code.
424 * @param pBackendData Opaque state data for this image.
425 * @param pUuid Where to get the parent image UUID from.
426 */
427 DECLR3CALLBACKMEMBER(int, pfnSetParentUuid, (void *pBackendData, PCRTUUID pUuid));
428
429 /**
430 * Get parent modification UUID of a disk image.
431 *
432 * @returns VBox status code.
433 * @param pBackendData Opaque state data for this image.
434 * @param pUuid Where to store the parent image modification UUID.
435 */
436 DECLR3CALLBACKMEMBER(int, pfnGetParentModificationUuid, (void *pBackendData, PRTUUID pUuid));
437
438 /**
439 * Set parent modification UUID of a disk image.
440 *
441 * @returns VBox status code.
442 * @param pBackendData Opaque state data for this image.
443 * @param pUuid Where to get the parent image modification UUID from.
444 */
445 DECLR3CALLBACKMEMBER(int, pfnSetParentModificationUuid, (void *pBackendData, PCRTUUID pUuid));
446
447 /**
448 * Dump information about a disk image.
449 *
450 * @param pBackendData Opaque state data for this image.
451 */
452 DECLR3CALLBACKMEMBER(void, pfnDump, (void *pBackendData));
453
454 /**
455 * Get a time stamp of a disk image. May be NULL.
456 *
457 * @returns VBox status code.
458 * @param pBackendData Opaque state data for this image.
459 * @param pTimestamp Where to store the time stamp.
460 */
461 DECLR3CALLBACKMEMBER(int, pfnGetTimestamp, (void *pBackendData, PRTTIMESPEC pTimestamp));
462
463 /**
464 * Get the parent time stamp of a disk image. May be NULL.
465 *
466 * @returns VBox status code.
467 * @param pBackendData Opaque state data for this image.
468 * @param pTimestamp Where to store the time stamp.
469 */
470 DECLR3CALLBACKMEMBER(int, pfnGetParentTimestamp, (void *pBackendData, PRTTIMESPEC pTimestamp));
471
472 /**
473 * Set the parent time stamp of a disk image. May be NULL.
474 *
475 * @returns VBox status code.
476 * @param pBackendData Opaque state data for this image.
477 * @param pTimestamp Where to get the time stamp from.
478 */
479 DECLR3CALLBACKMEMBER(int, pfnSetParentTimestamp, (void *pBackendData, PCRTTIMESPEC pTimestamp));
480
481 /**
482 * Get the relative path to parent image. May be NULL.
483 *
484 * @returns VBox status code.
485 * @param pBackendData Opaque state data for this image.
486 * @param ppszParentFilename Where to store the path.
487 */
488 DECLR3CALLBACKMEMBER(int, pfnGetParentFilename, (void *pBackendData, char **ppszParentFilename));
489
490 /**
491 * Set the relative path to parent image. May be NULL.
492 *
493 * @returns VBox status code.
494 * @param pBackendData Opaque state data for this image.
495 * @param pszParentFilename Where to get the path from.
496 */
497 DECLR3CALLBACKMEMBER(int, pfnSetParentFilename, (void *pBackendData, const char *pszParentFilename));
498
499 /** Returns a human readable hard disk location string given a
500 * set of hard disk configuration keys. The returned string is an
501 * equivalent of the full file path for image-based hard disks.
502 * Mandatory for backends with no VD_CAP_FILE and NULL otherwise. */
503 DECLR3CALLBACKMEMBER(int, pfnComposeLocation, (PVDINTERFACE pConfig, char **pszLocation));
504
505 /** Returns a human readable hard disk name string given a
506 * set of hard disk configuration keys. The returned string is an
507 * equivalent of the file name part in the full file path for
508 * image-based hard disks. Mandatory for backends with no
509 * VD_CAP_FILE and NULL otherwise. */
510 DECLR3CALLBACKMEMBER(int, pfnComposeName, (PVDINTERFACE pConfig, char **pszName));
511
512 /**
513 * Compact the image. The pointer may be NULL, indicating that this
514 * isn't supported yet (for file-based images) or not necessary.
515 *
516 * @returns VBox status code.
517 * @returns VERR_NOT_SUPPORTED if this image cannot be compacted yet.
518 * @param pBackendData Opaque state data for this image.
519 * @param uPercentStart Starting value for progress percentage.
520 * @param uPercentSpan Span for varying progress percentage.
521 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
522 * @param pVDIfsImage Pointer to the per-image VD interface list.
523 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
524 */
525 DECLR3CALLBACKMEMBER(int, pfnCompact, (void *pBackendData,
526 unsigned uPercentStart, unsigned uPercentSpan,
527 PVDINTERFACE pVDIfsDisk,
528 PVDINTERFACE pVDIfsImage,
529 PVDINTERFACE pVDIfsOperation));
530
531 /**
532 * Resize the image. The pointer may be NULL, indicating that this
533 * isn't supported yet (for file-based images) or not necessary.
534 *
535 * @returns VBox status code.
536 * @returns VERR_NOT_SUPPORTED if this image cannot be resized yet.
537 * @param pBackendData Opaque state data for this image.
538 * @param cbSize New size of the image.
539 * @param pPCHSGeometry Pointer to the new physical disk geometry <= (16383,16,63). Not NULL.
540 * @param pLCHSGeometry Pointer to the new logical disk geometry <= (x,255,63). Not NULL.
541 * @param uPercentStart Starting value for progress percentage.
542 * @param uPercentSpan Span for varying progress percentage.
543 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
544 * @param pVDIfsImage Pointer to the per-image VD interface list.
545 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
546 */
547 DECLR3CALLBACKMEMBER(int, pfnResize, (void *pBackendData,
548 uint64_t cbSize,
549 PCVDGEOMETRY pPCHSGeometry,
550 PCVDGEOMETRY pLCHSGeometry,
551 unsigned uPercentStart, unsigned uPercentSpan,
552 PVDINTERFACE pVDIfsDisk,
553 PVDINTERFACE pVDIfsImage,
554 PVDINTERFACE pVDIfsOperation));
555
556 /**
557 * Try to repair the given image.
558 *
559 * @returns VBox status code.
560 * @param pszFilename Name of the image file.
561 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
562 * @param pVDIfsImage Pointer to the per-image VD interface list.
563 * @param fFlags Combination of the VD_REPAIR_* flags.
564 */
565 DECLR3CALLBACKMEMBER(int, pfnRepair, (const char *pszFilename, PVDINTERFACE pVDIfsDisk,
566 PVDINTERFACE pVDIfsImage, uint32_t fFlags));
567
568 /**
569 * Traverse all metadata of the opened image.
570 *
571 * @returns VBox status code.
572 * @param pBackendData Opaque state data for this image.
573 * @param fFlags Traverse flags, combination of VD_TRAVERSE_METDATA_* defines.
574 * @param pVDIfsDisk Pointer to the per-disk VD interface list.
575 * @param pVDIfsImage Pointer to the per-image VD interface list.
576 * @param pVDIfsOperation Pointer to the per-operation VD interface list.
577 */
578 DECLR3CALLBACKMEMBER(int, pfnTraverseMetadata, (void *pBackendData, uint32_t fFlags,
579 PVDINTERFACE pVDIfsDisk,
580 PVDINTERFACE pVDIfsImage,
581 PVDINTERFACE pVDIfsOperation));
582
583 /** Initialization safty marker. */
584 uint32_t u32VersionEnd;
585
586} VDIMAGEBACKEND;
587
588/** Pointer to VD backend. */
589typedef VDIMAGEBACKEND *PVDIMAGEBACKEND;
590/** Constant pointer to VD backend. */
591typedef const VDIMAGEBACKEND *PCVDIMAGEBACKEND;
592
593/** The current version of the VDIMAGEBACKEND structure. */
594#define VD_IMGBACKEND_VERSION VD_VERSION_MAKE(0xff01, 3, 0)
595
596/** @copydoc VDIMAGEBACKEND::pfnComposeLocation */
597DECLCALLBACK(int) genericFileComposeLocation(PVDINTERFACE pConfig, char **pszLocation);
598/** @copydoc VDIMAGEBACKEND::pfnComposeName */
599DECLCALLBACK(int) genericFileComposeName(PVDINTERFACE pConfig, char **pszName);
600
601#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