VirtualBox

source: vbox/trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp@ 33182

Last change on this file since 33182 was 33182, checked in by vboxsync, 14 years ago

Devices/Storage: implement sequential reading of streamOptimized VMDK images

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 270.8 KB
Line 
1/* $Id: VmdkHDDCore.cpp 33182 2010-10-18 08:30:05Z vboxsync $ */
2/** @file
3 * VMDK disk image, core code.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#define LOG_GROUP LOG_GROUP_VD_VMDK
22#include <VBox/VBoxHDD-Plugin.h>
23#include <VBox/err.h>
24
25#include <VBox/log.h>
26#include <iprt/assert.h>
27#include <iprt/alloc.h>
28#include <iprt/uuid.h>
29#include <iprt/path.h>
30#include <iprt/string.h>
31#include <iprt/rand.h>
32#include <iprt/zip.h>
33#include <iprt/asm.h>
34
35
36/*******************************************************************************
37* Constants And Macros, Structures and Typedefs *
38*******************************************************************************/
39
40/** Maximum encoded string size (including NUL) we allow for VMDK images.
41 * Deliberately not set high to avoid running out of descriptor space. */
42#define VMDK_ENCODED_COMMENT_MAX 1024
43
44/** VMDK descriptor DDB entry for PCHS cylinders. */
45#define VMDK_DDB_GEO_PCHS_CYLINDERS "ddb.geometry.cylinders"
46
47/** VMDK descriptor DDB entry for PCHS heads. */
48#define VMDK_DDB_GEO_PCHS_HEADS "ddb.geometry.heads"
49
50/** VMDK descriptor DDB entry for PCHS sectors. */
51#define VMDK_DDB_GEO_PCHS_SECTORS "ddb.geometry.sectors"
52
53/** VMDK descriptor DDB entry for LCHS cylinders. */
54#define VMDK_DDB_GEO_LCHS_CYLINDERS "ddb.geometry.biosCylinders"
55
56/** VMDK descriptor DDB entry for LCHS heads. */
57#define VMDK_DDB_GEO_LCHS_HEADS "ddb.geometry.biosHeads"
58
59/** VMDK descriptor DDB entry for LCHS sectors. */
60#define VMDK_DDB_GEO_LCHS_SECTORS "ddb.geometry.biosSectors"
61
62/** VMDK descriptor DDB entry for image UUID. */
63#define VMDK_DDB_IMAGE_UUID "ddb.uuid.image"
64
65/** VMDK descriptor DDB entry for image modification UUID. */
66#define VMDK_DDB_MODIFICATION_UUID "ddb.uuid.modification"
67
68/** VMDK descriptor DDB entry for parent image UUID. */
69#define VMDK_DDB_PARENT_UUID "ddb.uuid.parent"
70
71/** VMDK descriptor DDB entry for parent image modification UUID. */
72#define VMDK_DDB_PARENT_MODIFICATION_UUID "ddb.uuid.parentmodification"
73
74/** No compression for streamOptimized files. */
75#define VMDK_COMPRESSION_NONE 0
76
77/** Deflate compression for streamOptimized files. */
78#define VMDK_COMPRESSION_DEFLATE 1
79
80/** Marker that the actual GD value is stored in the footer. */
81#define VMDK_GD_AT_END 0xffffffffffffffffULL
82
83/** Marker for end-of-stream in streamOptimized images. */
84#define VMDK_MARKER_EOS 0
85
86/** Marker for grain table block in streamOptimized images. */
87#define VMDK_MARKER_GT 1
88
89/** Marker for grain directory block in streamOptimized images. */
90#define VMDK_MARKER_GD 2
91
92/** Marker for footer in streamOptimized images. */
93#define VMDK_MARKER_FOOTER 3
94
95/** Dummy marker for "don't check the marker value". */
96#define VMDK_MARKER_IGNORE 0xffffffffU
97
98/**
99 * Magic number for hosted images created by VMware Workstation 4, VMware
100 * Workstation 5, VMware Server or VMware Player. Not necessarily sparse.
101 */
102#define VMDK_SPARSE_MAGICNUMBER 0x564d444b /* 'V' 'M' 'D' 'K' */
103
104/**
105 * VMDK hosted binary extent header. The "Sparse" is a total misnomer, as
106 * this header is also used for monolithic flat images.
107 */
108#pragma pack(1)
109typedef struct SparseExtentHeader
110{
111 uint32_t magicNumber;
112 uint32_t version;
113 uint32_t flags;
114 uint64_t capacity;
115 uint64_t grainSize;
116 uint64_t descriptorOffset;
117 uint64_t descriptorSize;
118 uint32_t numGTEsPerGT;
119 uint64_t rgdOffset;
120 uint64_t gdOffset;
121 uint64_t overHead;
122 bool uncleanShutdown;
123 char singleEndLineChar;
124 char nonEndLineChar;
125 char doubleEndLineChar1;
126 char doubleEndLineChar2;
127 uint16_t compressAlgorithm;
128 uint8_t pad[433];
129} SparseExtentHeader;
130#pragma pack()
131
132/** VMDK capacity for a single chunk when 2G splitting is turned on. Should be
133 * divisible by the default grain size (64K) */
134#define VMDK_2G_SPLIT_SIZE (2047 * 1024 * 1024)
135
136/** VMDK streamOptimized file format marker. The type field may or may not
137 * be actually valid, but there's always data to read there. */
138#pragma pack(1)
139typedef struct VMDKMARKER
140{
141 uint64_t uSector;
142 uint32_t cbSize;
143 uint32_t uType;
144} VMDKMARKER, *PVMDKMARKER;
145#pragma pack()
146
147
148#ifdef VBOX_WITH_VMDK_ESX
149
150/** @todo the ESX code is not tested, not used, and lacks error messages. */
151
152/**
153 * Magic number for images created by VMware GSX Server 3 or ESX Server 3.
154 */
155#define VMDK_ESX_SPARSE_MAGICNUMBER 0x44574f43 /* 'C' 'O' 'W' 'D' */
156
157#pragma pack(1)
158typedef struct COWDisk_Header
159{
160 uint32_t magicNumber;
161 uint32_t version;
162 uint32_t flags;
163 uint32_t numSectors;
164 uint32_t grainSize;
165 uint32_t gdOffset;
166 uint32_t numGDEntries;
167 uint32_t freeSector;
168 /* The spec incompletely documents quite a few further fields, but states
169 * that they are unused by the current format. Replace them by padding. */
170 char reserved1[1604];
171 uint32_t savedGeneration;
172 char reserved2[8];
173 uint32_t uncleanShutdown;
174 char padding[396];
175} COWDisk_Header;
176#pragma pack()
177#endif /* VBOX_WITH_VMDK_ESX */
178
179
180/** Convert sector number/size to byte offset/size. */
181#define VMDK_SECTOR2BYTE(u) ((uint64_t)(u) << 9)
182
183/** Convert byte offset/size to sector number/size. */
184#define VMDK_BYTE2SECTOR(u) ((u) >> 9)
185
186/**
187 * VMDK extent type.
188 */
189typedef enum VMDKETYPE
190{
191 /** Hosted sparse extent. */
192 VMDKETYPE_HOSTED_SPARSE = 1,
193 /** Flat extent. */
194 VMDKETYPE_FLAT,
195 /** Zero extent. */
196 VMDKETYPE_ZERO,
197 /** VMFS extent, used by ESX. */
198 VMDKETYPE_VMFS
199#ifdef VBOX_WITH_VMDK_ESX
200 ,
201 /** ESX sparse extent. */
202 VMDKETYPE_ESX_SPARSE
203#endif /* VBOX_WITH_VMDK_ESX */
204} VMDKETYPE, *PVMDKETYPE;
205
206/**
207 * VMDK access type for a extent.
208 */
209typedef enum VMDKACCESS
210{
211 /** No access allowed. */
212 VMDKACCESS_NOACCESS = 0,
213 /** Read-only access. */
214 VMDKACCESS_READONLY,
215 /** Read-write access. */
216 VMDKACCESS_READWRITE
217} VMDKACCESS, *PVMDKACCESS;
218
219/** Forward declaration for PVMDKIMAGE. */
220typedef struct VMDKIMAGE *PVMDKIMAGE;
221
222/**
223 * Extents files entry. Used for opening a particular file only once.
224 */
225typedef struct VMDKFILE
226{
227 /** Pointer to filename. Local copy. */
228 const char *pszFilename;
229 /** File open flags for consistency checking. */
230 unsigned fOpen;
231 /** Flag whether this file has been opened for async I/O. */
232 bool fAsyncIO;
233 /** Handle for sync/async file abstraction.*/
234 PVDIOSTORAGE pStorage;
235 /** Reference counter. */
236 unsigned uReferences;
237 /** Flag whether the file should be deleted on last close. */
238 bool fDelete;
239 /** Pointer to the image we belong to (for debugging purposes). */
240 PVMDKIMAGE pImage;
241 /** Pointer to next file descriptor. */
242 struct VMDKFILE *pNext;
243 /** Pointer to the previous file descriptor. */
244 struct VMDKFILE *pPrev;
245} VMDKFILE, *PVMDKFILE;
246
247/**
248 * VMDK extent data structure.
249 */
250typedef struct VMDKEXTENT
251{
252 /** File handle. */
253 PVMDKFILE pFile;
254 /** Base name of the image extent. */
255 const char *pszBasename;
256 /** Full name of the image extent. */
257 const char *pszFullname;
258 /** Number of sectors in this extent. */
259 uint64_t cSectors;
260 /** Number of sectors per block (grain in VMDK speak). */
261 uint64_t cSectorsPerGrain;
262 /** Starting sector number of descriptor. */
263 uint64_t uDescriptorSector;
264 /** Size of descriptor in sectors. */
265 uint64_t cDescriptorSectors;
266 /** Starting sector number of grain directory. */
267 uint64_t uSectorGD;
268 /** Starting sector number of redundant grain directory. */
269 uint64_t uSectorRGD;
270 /** Total number of metadata sectors. */
271 uint64_t cOverheadSectors;
272 /** Nominal size (i.e. as described by the descriptor) of this extent. */
273 uint64_t cNominalSectors;
274 /** Sector offset (i.e. as described by the descriptor) of this extent. */
275 uint64_t uSectorOffset;
276 /** Number of entries in a grain table. */
277 uint32_t cGTEntries;
278 /** Number of sectors reachable via a grain directory entry. */
279 uint32_t cSectorsPerGDE;
280 /** Number of entries in the grain directory. */
281 uint32_t cGDEntries;
282 /** Pointer to the next free sector. Legacy information. Do not use. */
283 uint32_t uFreeSector;
284 /** Number of this extent in the list of images. */
285 uint32_t uExtent;
286 /** Pointer to the descriptor (NULL if no descriptor in this extent). */
287 char *pDescData;
288 /** Pointer to the grain directory. */
289 uint32_t *pGD;
290 /** Pointer to the redundant grain directory. */
291 uint32_t *pRGD;
292 /** VMDK version of this extent. 1=1.0/1.1 */
293 uint32_t uVersion;
294 /** Type of this extent. */
295 VMDKETYPE enmType;
296 /** Access to this extent. */
297 VMDKACCESS enmAccess;
298 /** Flag whether this extent is marked as unclean. */
299 bool fUncleanShutdown;
300 /** Flag whether the metadata in the extent header needs to be updated. */
301 bool fMetaDirty;
302 /** Flag whether there is a footer in this extent. */
303 bool fFooter;
304 /** Compression type for this extent. */
305 uint16_t uCompression;
306 /** Append position for writing new grain. Only for sparse extents. */
307 uint64_t uAppendPosition;
308 /** Last grain which was accessed. Only for streamOptimized extents. */
309 uint32_t uLastGrainAccess;
310 /** Starting sector corresponding to the grain buffer. */
311 uint32_t uGrainSectorAbs;
312 /** Grain number corresponding to the grain buffer. */
313 uint32_t uGrain;
314 /** Actual size of the compressed data, only valid for reading. */
315 uint32_t cbGrainStreamRead;
316 /** Size of compressed grain buffer for streamOptimized extents. */
317 size_t cbCompGrain;
318 /** Compressed grain buffer for streamOptimized extents, with marker. */
319 void *pvCompGrain;
320 /** Decompressed grain buffer for streamOptimized extents. */
321 void *pvGrain;
322 /** Reference to the image in which this extent is used. Do not use this
323 * on a regular basis to avoid passing pImage references to functions
324 * explicitly. */
325 struct VMDKIMAGE *pImage;
326} VMDKEXTENT, *PVMDKEXTENT;
327
328/**
329 * Grain table cache size. Allocated per image.
330 */
331#define VMDK_GT_CACHE_SIZE 256
332
333/**
334 * Grain table block size. Smaller than an actual grain table block to allow
335 * more grain table blocks to be cached without having to allocate excessive
336 * amounts of memory for the cache.
337 */
338#define VMDK_GT_CACHELINE_SIZE 128
339
340
341/**
342 * Maximum number of lines in a descriptor file. Not worth the effort of
343 * making it variable. Descriptor files are generally very short (~20 lines),
344 * with the exception of sparse files split in 2G chunks, which need for the
345 * maximum size (almost 2T) exactly 1025 lines for the disk database.
346 */
347#define VMDK_DESCRIPTOR_LINES_MAX 1100U
348
349/**
350 * Parsed descriptor information. Allows easy access and update of the
351 * descriptor (whether separate file or not). Free form text files suck.
352 */
353typedef struct VMDKDESCRIPTOR
354{
355 /** Line number of first entry of the disk descriptor. */
356 unsigned uFirstDesc;
357 /** Line number of first entry in the extent description. */
358 unsigned uFirstExtent;
359 /** Line number of first disk database entry. */
360 unsigned uFirstDDB;
361 /** Total number of lines. */
362 unsigned cLines;
363 /** Total amount of memory available for the descriptor. */
364 size_t cbDescAlloc;
365 /** Set if descriptor has been changed and not yet written to disk. */
366 bool fDirty;
367 /** Array of pointers to the data in the descriptor. */
368 char *aLines[VMDK_DESCRIPTOR_LINES_MAX];
369 /** Array of line indices pointing to the next non-comment line. */
370 unsigned aNextLines[VMDK_DESCRIPTOR_LINES_MAX];
371} VMDKDESCRIPTOR, *PVMDKDESCRIPTOR;
372
373
374/**
375 * Cache entry for translating extent/sector to a sector number in that
376 * extent.
377 */
378typedef struct VMDKGTCACHEENTRY
379{
380 /** Extent number for which this entry is valid. */
381 uint32_t uExtent;
382 /** GT data block number. */
383 uint64_t uGTBlock;
384 /** Data part of the cache entry. */
385 uint32_t aGTData[VMDK_GT_CACHELINE_SIZE];
386} VMDKGTCACHEENTRY, *PVMDKGTCACHEENTRY;
387
388/**
389 * Cache data structure for blocks of grain table entries. For now this is a
390 * fixed size direct mapping cache, but this should be adapted to the size of
391 * the sparse image and maybe converted to a set-associative cache. The
392 * implementation below implements a write-through cache with write allocate.
393 */
394typedef struct VMDKGTCACHE
395{
396 /** Cache entries. */
397 VMDKGTCACHEENTRY aGTCache[VMDK_GT_CACHE_SIZE];
398 /** Number of cache entries (currently unused). */
399 unsigned cEntries;
400} VMDKGTCACHE, *PVMDKGTCACHE;
401
402/**
403 * Complete VMDK image data structure. Mainly a collection of extents and a few
404 * extra global data fields.
405 */
406typedef struct VMDKIMAGE
407{
408 /** Image name. */
409 const char *pszFilename;
410 /** Descriptor file if applicable. */
411 PVMDKFILE pFile;
412 /** I/O interface. */
413 PVDINTERFACE pInterfaceIO;
414 /** I/O interface callbacks. */
415 PVDINTERFACEIOINT pInterfaceIOCallbacks;
416
417 /** Pointer to the per-disk VD interface list. */
418 PVDINTERFACE pVDIfsDisk;
419 /** Pointer to the per-image VD interface list. */
420 PVDINTERFACE pVDIfsImage;
421
422 /** Error interface. */
423 PVDINTERFACE pInterfaceError;
424 /** Error interface callbacks. */
425 PVDINTERFACEERROR pInterfaceErrorCallbacks;
426
427 /** Pointer to the image extents. */
428 PVMDKEXTENT pExtents;
429 /** Number of image extents. */
430 unsigned cExtents;
431 /** Pointer to the files list, for opening a file referenced multiple
432 * times only once (happens mainly with raw partition access). */
433 PVMDKFILE pFiles;
434
435 /**
436 * Pointer to an array of segment entries for async I/O.
437 * This is an optimization because the task number to submit is not known
438 * and allocating/freeing an array in the read/write functions every time
439 * is too expensive.
440 */
441 PPDMDATASEG paSegments;
442 /** Entries available in the segments array. */
443 unsigned cSegments;
444
445 /** Open flags passed by VBoxHD layer. */
446 unsigned uOpenFlags;
447 /** Image flags defined during creation or determined during open. */
448 unsigned uImageFlags;
449 /** Total size of the image. */
450 uint64_t cbSize;
451 /** Physical geometry of this image. */
452 VDGEOMETRY PCHSGeometry;
453 /** Logical geometry of this image. */
454 VDGEOMETRY LCHSGeometry;
455 /** Image UUID. */
456 RTUUID ImageUuid;
457 /** Image modification UUID. */
458 RTUUID ModificationUuid;
459 /** Parent image UUID. */
460 RTUUID ParentUuid;
461 /** Parent image modification UUID. */
462 RTUUID ParentModificationUuid;
463
464 /** Pointer to grain table cache, if this image contains sparse extents. */
465 PVMDKGTCACHE pGTCache;
466 /** Pointer to the descriptor (NULL if no separate descriptor file). */
467 char *pDescData;
468 /** Allocation size of the descriptor file. */
469 size_t cbDescAlloc;
470 /** Parsed descriptor file content. */
471 VMDKDESCRIPTOR Descriptor;
472} VMDKIMAGE;
473
474
475/** State for the input/output callout of the inflate reader/deflate writer. */
476typedef struct VMDKCOMPRESSIO
477{
478 /* Image this operation relates to. */
479 PVMDKIMAGE pImage;
480 /* Current read position. */
481 ssize_t iOffset;
482 /* Size of the compressed grain buffer (available data). */
483 size_t cbCompGrain;
484 /* Pointer to the compressed grain buffer. */
485 void *pvCompGrain;
486} VMDKCOMPRESSIO;
487
488
489/** Tracks async grain allocation. */
490typedef struct VMDKGRAINALLOCASYNC
491{
492 /** Flag whether the allocation failed. */
493 bool fIoErr;
494 /** Current number of transfers pending.
495 * If reached 0 and there is an error the old state is restored. */
496 unsigned cIoXfersPending;
497 /** Sector number */
498 uint64_t uSector;
499 /** Flag whether the grain table needs to be updated. */
500 bool fGTUpdateNeeded;
501 /** Extent the allocation happens. */
502 PVMDKEXTENT pExtent;
503 /** Position of the new grain, required for the grain table update. */
504 uint64_t uGrainOffset;
505 /** Grain table sector. */
506 uint64_t uGTSector;
507 /** Backup grain table sector. */
508 uint64_t uRGTSector;
509} VMDKGRAINALLOCASYNC, *PVMDKGRAINALLOCASYNC;
510
511/*******************************************************************************
512* Static Variables *
513*******************************************************************************/
514
515/** NULL-terminated array of supported file extensions. */
516static const char *const s_apszVmdkFileExtensions[] =
517{
518 "vmdk",
519 NULL
520};
521
522/*******************************************************************************
523* Internal Functions *
524*******************************************************************************/
525
526static void vmdkFreeStreamBuffers(PVMDKEXTENT pExtent);
527static void vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
528 bool fDelete);
529
530static int vmdkCreateExtents(PVMDKIMAGE pImage, unsigned cExtents);
531static int vmdkFlushImage(PVMDKIMAGE pImage);
532static int vmdkSetImageComment(PVMDKIMAGE pImage, const char *pszComment);
533static int vmdkFreeImage(PVMDKIMAGE pImage, bool fDelete);
534
535static int vmdkAllocGrainAsyncComplete(void *pBackendData, PVDIOCTX pIoCtx, void *pvUser, int rcReq);
536
537/**
538 * Internal: signal an error to the frontend.
539 */
540DECLINLINE(int) vmdkError(PVMDKIMAGE pImage, int rc, RT_SRC_POS_DECL,
541 const char *pszFormat, ...)
542{
543 va_list va;
544 va_start(va, pszFormat);
545 if (pImage->pInterfaceError && pImage->pInterfaceErrorCallbacks)
546 pImage->pInterfaceErrorCallbacks->pfnError(pImage->pInterfaceError->pvUser, rc, RT_SRC_POS_ARGS,
547 pszFormat, va);
548 va_end(va);
549 return rc;
550}
551
552/**
553 * Internal: signal an informational message to the frontend.
554 */
555DECLINLINE(int) vmdkMessage(PVMDKIMAGE pImage, const char *pszFormat, ...)
556{
557 int rc = VINF_SUCCESS;
558 va_list va;
559 va_start(va, pszFormat);
560 if (pImage->pInterfaceError && pImage->pInterfaceErrorCallbacks)
561 rc = pImage->pInterfaceErrorCallbacks->pfnMessage(pImage->pInterfaceError->pvUser,
562 pszFormat, va);
563 va_end(va);
564 return rc;
565}
566
567/**
568 * Internal: open a file (using a file descriptor cache to ensure each file
569 * is only opened once - anything else can cause locking problems).
570 */
571static int vmdkFileOpen(PVMDKIMAGE pImage, PVMDKFILE *ppVmdkFile,
572 const char *pszFilename, uint32_t fOpen, bool fAsyncIO)
573{
574 int rc = VINF_SUCCESS;
575 PVMDKFILE pVmdkFile;
576
577 for (pVmdkFile = pImage->pFiles;
578 pVmdkFile != NULL;
579 pVmdkFile = pVmdkFile->pNext)
580 {
581 if (!strcmp(pszFilename, pVmdkFile->pszFilename))
582 {
583 Assert(fOpen == pVmdkFile->fOpen);
584 pVmdkFile->uReferences++;
585
586 *ppVmdkFile = pVmdkFile;
587
588 return rc;
589 }
590 }
591
592 /* If we get here, there's no matching entry in the cache. */
593 pVmdkFile = (PVMDKFILE)RTMemAllocZ(sizeof(VMDKFILE));
594 if (!VALID_PTR(pVmdkFile))
595 {
596 *ppVmdkFile = NULL;
597 return VERR_NO_MEMORY;
598 }
599
600 pVmdkFile->pszFilename = RTStrDup(pszFilename);
601 if (!VALID_PTR(pVmdkFile->pszFilename))
602 {
603 RTMemFree(pVmdkFile);
604 *ppVmdkFile = NULL;
605 return VERR_NO_MEMORY;
606 }
607 pVmdkFile->fOpen = fOpen;
608 pVmdkFile->fAsyncIO = fAsyncIO;
609
610 rc = pImage->pInterfaceIOCallbacks->pfnOpen(pImage->pInterfaceIO->pvUser,
611 pszFilename, fOpen,
612 &pVmdkFile->pStorage);
613 if (RT_SUCCESS(rc))
614 {
615 pVmdkFile->uReferences = 1;
616 pVmdkFile->pImage = pImage;
617 pVmdkFile->pNext = pImage->pFiles;
618 if (pImage->pFiles)
619 pImage->pFiles->pPrev = pVmdkFile;
620 pImage->pFiles = pVmdkFile;
621 *ppVmdkFile = pVmdkFile;
622 }
623 else
624 {
625 RTStrFree((char *)(void *)pVmdkFile->pszFilename);
626 RTMemFree(pVmdkFile);
627 *ppVmdkFile = NULL;
628 }
629
630 return rc;
631}
632
633/**
634 * Internal: close a file, updating the file descriptor cache.
635 */
636static int vmdkFileClose(PVMDKIMAGE pImage, PVMDKFILE *ppVmdkFile, bool fDelete)
637{
638 int rc = VINF_SUCCESS;
639 PVMDKFILE pVmdkFile = *ppVmdkFile;
640
641 AssertPtr(pVmdkFile);
642
643 pVmdkFile->fDelete |= fDelete;
644 Assert(pVmdkFile->uReferences);
645 pVmdkFile->uReferences--;
646 if (pVmdkFile->uReferences == 0)
647 {
648 PVMDKFILE pPrev;
649 PVMDKFILE pNext;
650
651 /* Unchain the element from the list. */
652 pPrev = pVmdkFile->pPrev;
653 pNext = pVmdkFile->pNext;
654
655 if (pNext)
656 pNext->pPrev = pPrev;
657 if (pPrev)
658 pPrev->pNext = pNext;
659 else
660 pImage->pFiles = pNext;
661
662 rc = pImage->pInterfaceIOCallbacks->pfnClose(pImage->pInterfaceIO->pvUser,
663 pVmdkFile->pStorage);
664 if (RT_SUCCESS(rc) && pVmdkFile->fDelete)
665 rc = pImage->pInterfaceIOCallbacks->pfnDelete(pImage->pInterfaceIO->pvUser,
666 pVmdkFile->pszFilename);
667 RTStrFree((char *)(void *)pVmdkFile->pszFilename);
668 RTMemFree(pVmdkFile);
669 }
670
671 *ppVmdkFile = NULL;
672 return rc;
673}
674
675/**
676 * Internal: rename a file (sync)
677 */
678DECLINLINE(int) vmdkFileMove(PVMDKIMAGE pImage, const char *pszSrc,
679 const char *pszDst, unsigned fMove)
680{
681 return pImage->pInterfaceIOCallbacks->pfnMove(pImage->pInterfaceIO->pvUser,
682 pszSrc, pszDst, fMove);
683}
684
685/**
686 * Internal: get the size of a file (sync/async)
687 */
688DECLINLINE(int) vmdkFileGetSize(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
689 uint64_t *pcbSize)
690{
691 return pImage->pInterfaceIOCallbacks->pfnGetSize(pImage->pInterfaceIO->pvUser,
692 pVmdkFile->pStorage,
693 pcbSize);
694}
695
696/**
697 * Internal: set the size of a file (sync/async)
698 */
699DECLINLINE(int) vmdkFileSetSize(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
700 uint64_t cbSize)
701{
702 return pImage->pInterfaceIOCallbacks->pfnSetSize(pImage->pInterfaceIO->pvUser,
703 pVmdkFile->pStorage,
704 cbSize);
705}
706
707/**
708 * Internal: read from a file (sync)
709 */
710DECLINLINE(int) vmdkFileReadSync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
711 uint64_t uOffset, void *pvBuf,
712 size_t cbToRead, size_t *pcbRead)
713{
714 return pImage->pInterfaceIOCallbacks->pfnReadSync(pImage->pInterfaceIO->pvUser,
715 pVmdkFile->pStorage, uOffset,
716 pvBuf, cbToRead, pcbRead);
717}
718
719/**
720 * Internal: write to a file (sync)
721 */
722DECLINLINE(int) vmdkFileWriteSync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
723 uint64_t uOffset, const void *pvBuf,
724 size_t cbToWrite, size_t *pcbWritten)
725{
726 return pImage->pInterfaceIOCallbacks->pfnWriteSync(pImage->pInterfaceIO->pvUser,
727 pVmdkFile->pStorage, uOffset,
728 pvBuf, cbToWrite, pcbWritten);
729}
730
731/**
732 * Internal: flush a file (sync)
733 */
734DECLINLINE(int) vmdkFileFlush(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile)
735{
736 return pImage->pInterfaceIOCallbacks->pfnFlushSync(pImage->pInterfaceIO->pvUser,
737 pVmdkFile->pStorage);
738}
739
740/**
741 * Internal: read user data (async)
742 */
743DECLINLINE(int) vmdkFileReadUserAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
744 uint64_t uOffset, PVDIOCTX pIoCtx,
745 size_t cbRead)
746{
747 return pImage->pInterfaceIOCallbacks->pfnReadUserAsync(pImage->pInterfaceIO->pvUser,
748 pVmdkFile->pStorage,
749 uOffset, pIoCtx,
750 cbRead);
751}
752
753/**
754 * Internal: write user data (async)
755 */
756DECLINLINE(int) vmdkFileWriteUserAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
757 uint64_t uOffset, PVDIOCTX pIoCtx,
758 size_t cbWrite,
759 PFNVDXFERCOMPLETED pfnComplete,
760 void *pvCompleteUser)
761{
762 return pImage->pInterfaceIOCallbacks->pfnWriteUserAsync(pImage->pInterfaceIO->pvUser,
763 pVmdkFile->pStorage,
764 uOffset, pIoCtx,
765 cbWrite,
766 pfnComplete,
767 pvCompleteUser);
768}
769
770/**
771 * Internal: read metadata (async)
772 */
773DECLINLINE(int) vmdkFileReadMetaAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
774 uint64_t uOffset, void *pvBuffer,
775 size_t cbBuffer, PVDIOCTX pIoCtx,
776 PPVDMETAXFER ppMetaXfer,
777 PFNVDXFERCOMPLETED pfnComplete,
778 void *pvCompleteUser)
779{
780 return pImage->pInterfaceIOCallbacks->pfnReadMetaAsync(pImage->pInterfaceIO->pvUser,
781 pVmdkFile->pStorage,
782 uOffset, pvBuffer,
783 cbBuffer, pIoCtx,
784 ppMetaXfer,
785 pfnComplete,
786 pvCompleteUser);
787}
788
789/**
790 * Internal: write metadata (async)
791 */
792DECLINLINE(int) vmdkFileWriteMetaAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
793 uint64_t uOffset, void *pvBuffer,
794 size_t cbBuffer, PVDIOCTX pIoCtx,
795 PFNVDXFERCOMPLETED pfnComplete,
796 void *pvCompleteUser)
797{
798 return pImage->pInterfaceIOCallbacks->pfnWriteMetaAsync(pImage->pInterfaceIO->pvUser,
799 pVmdkFile->pStorage,
800 uOffset, pvBuffer,
801 cbBuffer, pIoCtx,
802 pfnComplete,
803 pvCompleteUser);
804}
805
806/**
807 * Internal: releases a metadata transfer handle (async)
808 */
809DECLINLINE(void) vmdkFileMetaXferRelease(PVMDKIMAGE pImage, PVDMETAXFER pMetaXfer)
810{
811 pImage->pInterfaceIOCallbacks->pfnMetaXferRelease(pImage->pInterfaceIO->pvUser,
812 pMetaXfer);
813}
814
815/**
816 * Internal: flush a file (async)
817 */
818DECLINLINE(int) vmdkFileFlushAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
819 PVDIOCTX pIoCtx)
820{
821 return pImage->pInterfaceIOCallbacks->pfnFlushAsync(pImage->pInterfaceIO->pvUser,
822 pVmdkFile->pStorage, pIoCtx,
823 NULL, NULL);
824}
825
826/**
827 * Internal: sets the buffer to a specific byte (async)
828 */
829DECLINLINE(int) vmdkFileIoCtxSet(PVMDKIMAGE pImage, PVDIOCTX pIoCtx,
830 int ch, size_t cbSet)
831{
832 return pImage->pInterfaceIOCallbacks->pfnIoCtxSet(pImage->pInterfaceIO->pvUser,
833 pIoCtx, ch, cbSet);
834}
835
836
837static DECLCALLBACK(int) vmdkFileInflateHelper(void *pvUser, void *pvBuf, size_t cbBuf, size_t *pcbBuf)
838{
839 VMDKCOMPRESSIO *pInflateState = (VMDKCOMPRESSIO *)pvUser;
840 size_t cbInjected = 0;
841
842 Assert(cbBuf);
843 if (pInflateState->iOffset < 0)
844 {
845 *(uint8_t *)pvBuf = RTZIPTYPE_ZLIB;
846 pvBuf = (uint8_t *)pvBuf + 1;
847 cbBuf--;
848 cbInjected = 1;
849 pInflateState->iOffset = RT_OFFSETOF(VMDKMARKER, uType);
850 }
851 if (!cbBuf)
852 {
853 if (pcbBuf)
854 *pcbBuf = cbInjected;
855 return VINF_SUCCESS;
856 }
857 cbBuf = RT_MIN(cbBuf, pInflateState->cbCompGrain - pInflateState->iOffset);
858 memcpy(pvBuf,
859 (uint8_t *)pInflateState->pvCompGrain + pInflateState->iOffset,
860 cbBuf);
861 pInflateState->iOffset += cbBuf;
862 Assert(pcbBuf);
863 *pcbBuf = cbBuf + cbInjected;
864 return VINF_SUCCESS;
865}
866
867/**
868 * Internal: read from a file and inflate the compressed data,
869 * distinguishing between async and normal operation
870 */
871DECLINLINE(int) vmdkFileInflateSync(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
872 uint64_t uOffset, void *pvBuf,
873 size_t cbToRead, const void *pcvMarker,
874 uint64_t *puLBA, uint32_t *pcbMarkerData)
875{
876 if (pExtent->pFile->fAsyncIO)
877 {
878 AssertMsgFailed(("TODO\n"));
879 return VERR_NOT_SUPPORTED;
880 }
881 else
882 {
883 int rc;
884 PRTZIPDECOMP pZip = NULL;
885 VMDKMARKER *pMarker = (VMDKMARKER *)pExtent->pvCompGrain;
886 size_t cbCompSize, cbActuallyRead;
887
888 if (!pcvMarker)
889 {
890 rc = vmdkFileReadSync(pImage, pExtent->pFile, uOffset, pMarker,
891 RT_OFFSETOF(VMDKMARKER, uType), NULL);
892 if (RT_FAILURE(rc))
893 return rc;
894 }
895 else
896 memcpy(pMarker, pcvMarker, RT_OFFSETOF(VMDKMARKER, uType));
897
898 cbCompSize = RT_LE2H_U32(pMarker->cbSize);
899 if (cbCompSize == 0)
900 {
901 AssertMsgFailed(("VMDK: corrupted marker\n"));
902 return VERR_VD_VMDK_INVALID_FORMAT;
903 }
904
905 /* Sanity check - the expansion ratio should be much less than 2. */
906 Assert(cbCompSize < 2 * cbToRead);
907 if (cbCompSize >= 2 * cbToRead)
908 return VERR_VD_VMDK_INVALID_FORMAT;
909
910 /* Compressed grain marker. Data follows immediately. */
911 rc = vmdkFileReadSync(pImage, pExtent->pFile,
912 uOffset + RT_OFFSETOF(VMDKMARKER, uType),
913 (uint8_t *)pExtent->pvCompGrain
914 + RT_OFFSETOF(VMDKMARKER, uType),
915 RT_ALIGN_Z( cbCompSize
916 + RT_OFFSETOF(VMDKMARKER, uType),
917 512)
918 - RT_OFFSETOF(VMDKMARKER, uType), NULL);
919
920 if (puLBA)
921 *puLBA = RT_LE2H_U64(pMarker->uSector);
922 if (pcbMarkerData)
923 *pcbMarkerData = RT_ALIGN( cbCompSize
924 + RT_OFFSETOF(VMDKMARKER, uType),
925 512);
926
927 VMDKCOMPRESSIO InflateState;
928 InflateState.pImage = pImage;
929 InflateState.iOffset = -1;
930 InflateState.cbCompGrain = cbCompSize + RT_OFFSETOF(VMDKMARKER, uType);
931 InflateState.pvCompGrain = pExtent->pvCompGrain;
932
933 rc = RTZipDecompCreate(&pZip, &InflateState, vmdkFileInflateHelper);
934 if (RT_FAILURE(rc))
935 return rc;
936 rc = RTZipDecompress(pZip, pvBuf, cbToRead, &cbActuallyRead);
937 RTZipDecompDestroy(pZip);
938 if (RT_FAILURE(rc))
939 return rc;
940 if (cbActuallyRead != cbToRead)
941 rc = VERR_VD_VMDK_INVALID_FORMAT;
942 return rc;
943 }
944}
945
946static DECLCALLBACK(int) vmdkFileDeflateHelper(void *pvUser, const void *pvBuf, size_t cbBuf)
947{
948 VMDKCOMPRESSIO *pDeflateState = (VMDKCOMPRESSIO *)pvUser;
949
950 Assert(cbBuf);
951 if (pDeflateState->iOffset < 0)
952 {
953 pvBuf = (const uint8_t *)pvBuf + 1;
954 cbBuf--;
955 pDeflateState->iOffset = RT_OFFSETOF(VMDKMARKER, uType);
956 }
957 if (!cbBuf)
958 return VINF_SUCCESS;
959 if (pDeflateState->iOffset + cbBuf > pDeflateState->cbCompGrain)
960 return VERR_BUFFER_OVERFLOW;
961 memcpy((uint8_t *)pDeflateState->pvCompGrain + pDeflateState->iOffset,
962 pvBuf, cbBuf);
963 pDeflateState->iOffset += cbBuf;
964 return VINF_SUCCESS;
965}
966
967/**
968 * Internal: deflate the uncompressed data and write to a file,
969 * distinguishing between async and normal operation
970 */
971DECLINLINE(int) vmdkFileDeflateSync(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
972 uint64_t uOffset, const void *pvBuf,
973 size_t cbToWrite, uint64_t uLBA,
974 uint32_t *pcbMarkerData)
975{
976 if (pExtent->pFile->fAsyncIO)
977 {
978 AssertMsgFailed(("TODO\n"));
979 return VERR_NOT_SUPPORTED;
980 }
981 else
982 {
983 int rc;
984 PRTZIPCOMP pZip = NULL;
985 VMDKCOMPRESSIO DeflateState;
986
987 DeflateState.pImage = pImage;
988 DeflateState.iOffset = -1;
989 DeflateState.cbCompGrain = pExtent->cbCompGrain;
990 DeflateState.pvCompGrain = pExtent->pvCompGrain;
991
992 rc = RTZipCompCreate(&pZip, &DeflateState, vmdkFileDeflateHelper,
993 RTZIPTYPE_ZLIB, RTZIPLEVEL_DEFAULT);
994 if (RT_FAILURE(rc))
995 return rc;
996 rc = RTZipCompress(pZip, pvBuf, cbToWrite);
997 if (RT_SUCCESS(rc))
998 rc = RTZipCompFinish(pZip);
999 RTZipCompDestroy(pZip);
1000 if (RT_SUCCESS(rc))
1001 {
1002 Assert( DeflateState.iOffset > 0
1003 && (size_t)DeflateState.iOffset <= DeflateState.cbCompGrain);
1004
1005 /* pad with zeroes to get to a full sector size */
1006 uint32_t uSize = DeflateState.iOffset;
1007 if (uSize % 512)
1008 {
1009 uint32_t uSizeAlign = RT_ALIGN(uSize, 512);
1010 memset((uint8_t *)pExtent->pvCompGrain + uSize, '\0',
1011 uSizeAlign - uSize);
1012 uSize = uSizeAlign;
1013 }
1014
1015 if (pcbMarkerData)
1016 *pcbMarkerData = uSize;
1017
1018 /* Compressed grain marker. Data follows immediately. */
1019 VMDKMARKER *pMarker = (VMDKMARKER *)pExtent->pvCompGrain;
1020 pMarker->uSector = RT_H2LE_U64(uLBA);
1021 pMarker->cbSize = RT_H2LE_U32( DeflateState.iOffset
1022 - RT_OFFSETOF(VMDKMARKER, uType));
1023 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOffset, pMarker,
1024 uSize, NULL);
1025 if (RT_FAILURE(rc))
1026 return rc;
1027 }
1028 return rc;
1029 }
1030}
1031
1032
1033/**
1034 * Internal: check if all files are closed, prevent leaking resources.
1035 */
1036static int vmdkFileCheckAllClose(PVMDKIMAGE pImage)
1037{
1038 int rc = VINF_SUCCESS, rc2;
1039 PVMDKFILE pVmdkFile;
1040
1041 Assert(pImage->pFiles == NULL);
1042 for (pVmdkFile = pImage->pFiles;
1043 pVmdkFile != NULL;
1044 pVmdkFile = pVmdkFile->pNext)
1045 {
1046 LogRel(("VMDK: leaking reference to file \"%s\"\n",
1047 pVmdkFile->pszFilename));
1048 pImage->pFiles = pVmdkFile->pNext;
1049
1050 rc2 = vmdkFileClose(pImage, &pVmdkFile, pVmdkFile->fDelete);
1051
1052 if (RT_SUCCESS(rc))
1053 rc = rc2;
1054 }
1055 return rc;
1056}
1057
1058/**
1059 * Internal: truncate a string (at a UTF8 code point boundary) and encode the
1060 * critical non-ASCII characters.
1061 */
1062static char *vmdkEncodeString(const char *psz)
1063{
1064 char szEnc[VMDK_ENCODED_COMMENT_MAX + 3];
1065 char *pszDst = szEnc;
1066
1067 AssertPtr(psz);
1068
1069 for (; *psz; psz = RTStrNextCp(psz))
1070 {
1071 char *pszDstPrev = pszDst;
1072 RTUNICP Cp = RTStrGetCp(psz);
1073 if (Cp == '\\')
1074 {
1075 pszDst = RTStrPutCp(pszDst, Cp);
1076 pszDst = RTStrPutCp(pszDst, Cp);
1077 }
1078 else if (Cp == '\n')
1079 {
1080 pszDst = RTStrPutCp(pszDst, '\\');
1081 pszDst = RTStrPutCp(pszDst, 'n');
1082 }
1083 else if (Cp == '\r')
1084 {
1085 pszDst = RTStrPutCp(pszDst, '\\');
1086 pszDst = RTStrPutCp(pszDst, 'r');
1087 }
1088 else
1089 pszDst = RTStrPutCp(pszDst, Cp);
1090 if (pszDst - szEnc >= VMDK_ENCODED_COMMENT_MAX - 1)
1091 {
1092 pszDst = pszDstPrev;
1093 break;
1094 }
1095 }
1096 *pszDst = '\0';
1097 return RTStrDup(szEnc);
1098}
1099
1100/**
1101 * Internal: decode a string and store it into the specified string.
1102 */
1103static int vmdkDecodeString(const char *pszEncoded, char *psz, size_t cb)
1104{
1105 int rc = VINF_SUCCESS;
1106 char szBuf[4];
1107
1108 if (!cb)
1109 return VERR_BUFFER_OVERFLOW;
1110
1111 AssertPtr(psz);
1112
1113 for (; *pszEncoded; pszEncoded = RTStrNextCp(pszEncoded))
1114 {
1115 char *pszDst = szBuf;
1116 RTUNICP Cp = RTStrGetCp(pszEncoded);
1117 if (Cp == '\\')
1118 {
1119 pszEncoded = RTStrNextCp(pszEncoded);
1120 RTUNICP CpQ = RTStrGetCp(pszEncoded);
1121 if (CpQ == 'n')
1122 RTStrPutCp(pszDst, '\n');
1123 else if (CpQ == 'r')
1124 RTStrPutCp(pszDst, '\r');
1125 else if (CpQ == '\0')
1126 {
1127 rc = VERR_VD_VMDK_INVALID_HEADER;
1128 break;
1129 }
1130 else
1131 RTStrPutCp(pszDst, CpQ);
1132 }
1133 else
1134 pszDst = RTStrPutCp(pszDst, Cp);
1135
1136 /* Need to leave space for terminating NUL. */
1137 if ((size_t)(pszDst - szBuf) + 1 >= cb)
1138 {
1139 rc = VERR_BUFFER_OVERFLOW;
1140 break;
1141 }
1142 memcpy(psz, szBuf, pszDst - szBuf);
1143 psz += pszDst - szBuf;
1144 }
1145 *psz = '\0';
1146 return rc;
1147}
1148
1149/**
1150 * Internal: free all buffers associated with grain directories.
1151 */
1152static void vmdkFreeGrainDirectory(PVMDKEXTENT pExtent)
1153{
1154 if (pExtent->pGD)
1155 {
1156 RTMemFree(pExtent->pGD);
1157 pExtent->pGD = NULL;
1158 }
1159 if (pExtent->pRGD)
1160 {
1161 RTMemFree(pExtent->pRGD);
1162 pExtent->pRGD = NULL;
1163 }
1164}
1165
1166/**
1167 * Internal: allocate the compressed/uncompressed buffers for streamOptimized
1168 * images.
1169 */
1170static int vmdkAllocStreamBuffers(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
1171{
1172 int rc = VINF_SUCCESS;
1173
1174 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
1175 {
1176 /* streamOptimized extents need a compressed grain buffer, which must
1177 * be big enough to hold uncompressible data (which needs ~8 bytes
1178 * more than the uncompressed data), the marker and padding. */
1179 pExtent->cbCompGrain = RT_ALIGN_Z( VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain)
1180 + 8 + sizeof(VMDKMARKER), 512);
1181 pExtent->pvCompGrain = RTMemAlloc(pExtent->cbCompGrain);
1182 if (!pExtent->pvCompGrain)
1183 {
1184 rc = VERR_NO_MEMORY;
1185 goto out;
1186 }
1187
1188 /* streamOptimized extents need a decompressed grain buffer. */
1189 pExtent->pvGrain = RTMemAlloc(VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain));
1190 if (!pExtent->pvGrain)
1191 {
1192 rc = VERR_NO_MEMORY;
1193 goto out;
1194 }
1195 }
1196
1197out:
1198 if (RT_FAILURE(rc))
1199 vmdkFreeStreamBuffers(pExtent);
1200 return rc;
1201}
1202
1203/**
1204 * Internal: allocate all buffers associated with grain directories.
1205 */
1206static int vmdkAllocGrainDirectory(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
1207{
1208 int rc = VINF_SUCCESS;
1209 size_t cbGD = pExtent->cGDEntries * sizeof(uint32_t);
1210 uint32_t *pGD = NULL, *pRGD = NULL;
1211
1212 pGD = (uint32_t *)RTMemAllocZ(cbGD);
1213 if (!pGD)
1214 {
1215 rc = VERR_NO_MEMORY;
1216 goto out;
1217 }
1218 pExtent->pGD = pGD;
1219
1220 if (pExtent->uSectorRGD)
1221 {
1222 pRGD = (uint32_t *)RTMemAllocZ(cbGD);
1223 if (!pRGD)
1224 {
1225 rc = VERR_NO_MEMORY;
1226 goto out;
1227 }
1228 pExtent->pRGD = pRGD;
1229 }
1230
1231out:
1232 if (RT_FAILURE(rc))
1233 vmdkFreeGrainDirectory(pExtent);
1234 return rc;
1235}
1236
1237static int vmdkReadGrainDirectory(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
1238{
1239 int rc = VINF_SUCCESS;
1240 unsigned i;
1241 uint32_t *pGDTmp, *pRGDTmp;
1242 size_t cbGD = pExtent->cGDEntries * sizeof(uint32_t);
1243
1244 if (pExtent->enmType != VMDKETYPE_HOSTED_SPARSE)
1245 goto out;
1246
1247 if ( pExtent->uSectorGD == VMDK_GD_AT_END
1248 || pExtent->uSectorRGD == VMDK_GD_AT_END)
1249 {
1250 rc = VERR_INTERNAL_ERROR;
1251 goto out;
1252 }
1253
1254 rc = vmdkAllocGrainDirectory(pImage, pExtent);
1255 if (RT_FAILURE(rc))
1256 goto out;
1257
1258 /* The VMDK 1.1 spec seems to talk about compressed grain directories,
1259 * but in reality they are not compressed. */
1260 rc = vmdkFileReadSync(pImage, pExtent->pFile,
1261 VMDK_SECTOR2BYTE(pExtent->uSectorGD),
1262 pExtent->pGD, cbGD, NULL);
1263 AssertRC(rc);
1264 if (RT_FAILURE(rc))
1265 {
1266 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not read grain directory in '%s': %Rrc"), pExtent->pszFullname);
1267 goto out;
1268 }
1269 for (i = 0, pGDTmp = pExtent->pGD; i < pExtent->cGDEntries; i++, pGDTmp++)
1270 *pGDTmp = RT_LE2H_U32(*pGDTmp);
1271
1272 if (pExtent->uSectorRGD)
1273 {
1274 /* The VMDK 1.1 spec seems to talk about compressed grain directories,
1275 * but in reality they are not compressed. */
1276 rc = vmdkFileReadSync(pImage, pExtent->pFile,
1277 VMDK_SECTOR2BYTE(pExtent->uSectorRGD),
1278 pExtent->pRGD, cbGD, NULL);
1279 AssertRC(rc);
1280 if (RT_FAILURE(rc))
1281 {
1282 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not read redundant grain directory in '%s'"), pExtent->pszFullname);
1283 goto out;
1284 }
1285 for (i = 0, pRGDTmp = pExtent->pRGD; i < pExtent->cGDEntries; i++, pRGDTmp++)
1286 *pRGDTmp = RT_LE2H_U32(*pRGDTmp);
1287
1288 /* Check grain table and redundant grain table for consistency. */
1289 size_t cbGT = pExtent->cGTEntries * sizeof(uint32_t);
1290 uint32_t *pTmpGT1 = (uint32_t *)RTMemTmpAlloc(cbGT);
1291 if (!pTmpGT1)
1292 {
1293 rc = VERR_NO_MEMORY;
1294 goto out;
1295 }
1296 uint32_t *pTmpGT2 = (uint32_t *)RTMemTmpAlloc(cbGT);
1297 if (!pTmpGT2)
1298 {
1299 RTMemTmpFree(pTmpGT1);
1300 rc = VERR_NO_MEMORY;
1301 goto out;
1302 }
1303
1304 for (i = 0, pGDTmp = pExtent->pGD, pRGDTmp = pExtent->pRGD;
1305 i < pExtent->cGDEntries;
1306 i++, pGDTmp++, pRGDTmp++)
1307 {
1308 /* If no grain table is allocated skip the entry. */
1309 if (*pGDTmp == 0 && *pRGDTmp == 0)
1310 continue;
1311
1312 if (*pGDTmp == 0 || *pRGDTmp == 0 || *pGDTmp == *pRGDTmp)
1313 {
1314 /* Just one grain directory entry refers to a not yet allocated
1315 * grain table or both grain directory copies refer to the same
1316 * grain table. Not allowed. */
1317 RTMemTmpFree(pTmpGT1);
1318 RTMemTmpFree(pTmpGT2);
1319 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent references to grain directory in '%s'"), pExtent->pszFullname);
1320 goto out;
1321 }
1322 /* The VMDK 1.1 spec seems to talk about compressed grain tables,
1323 * but in reality they are not compressed. */
1324 rc = vmdkFileReadSync(pImage, pExtent->pFile,
1325 VMDK_SECTOR2BYTE(*pGDTmp),
1326 pTmpGT1, cbGT, NULL);
1327 if (RT_FAILURE(rc))
1328 {
1329 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading grain table in '%s'"), pExtent->pszFullname);
1330 RTMemTmpFree(pTmpGT1);
1331 RTMemTmpFree(pTmpGT2);
1332 goto out;
1333 }
1334 /* The VMDK 1.1 spec seems to talk about compressed grain tables,
1335 * but in reality they are not compressed. */
1336 rc = vmdkFileReadSync(pImage, pExtent->pFile,
1337 VMDK_SECTOR2BYTE(*pRGDTmp),
1338 pTmpGT2, cbGT, NULL);
1339 if (RT_FAILURE(rc))
1340 {
1341 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading backup grain table in '%s'"), pExtent->pszFullname);
1342 RTMemTmpFree(pTmpGT1);
1343 RTMemTmpFree(pTmpGT2);
1344 goto out;
1345 }
1346 if (memcmp(pTmpGT1, pTmpGT2, cbGT))
1347 {
1348 RTMemTmpFree(pTmpGT1);
1349 RTMemTmpFree(pTmpGT2);
1350 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistency between grain table and backup grain table in '%s'"), pExtent->pszFullname);
1351 goto out;
1352 }
1353 }
1354
1355 /** @todo figure out what to do for unclean VMDKs. */
1356 RTMemTmpFree(pTmpGT1);
1357 RTMemTmpFree(pTmpGT2);
1358 }
1359
1360out:
1361 if (RT_FAILURE(rc))
1362 vmdkFreeGrainDirectory(pExtent);
1363 return rc;
1364}
1365
1366static int vmdkCreateGrainDirectory(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
1367 uint64_t uStartSector, bool fPreAlloc)
1368{
1369 int rc = VINF_SUCCESS;
1370 unsigned i;
1371 size_t cbGD = pExtent->cGDEntries * sizeof(uint32_t);
1372 size_t cbGDRounded = RT_ALIGN_64(pExtent->cGDEntries * sizeof(uint32_t), 512);
1373 size_t cbGTRounded;
1374 uint64_t cbOverhead;
1375
1376 if (fPreAlloc)
1377 {
1378 cbGTRounded = RT_ALIGN_64(pExtent->cGDEntries * pExtent->cGTEntries * sizeof(uint32_t), 512);
1379 cbOverhead = VMDK_SECTOR2BYTE(uStartSector) + cbGDRounded
1380 + cbGTRounded;
1381 }
1382 else
1383 {
1384 /* Use a dummy start sector for layout computation. */
1385 if (uStartSector == VMDK_GD_AT_END)
1386 uStartSector = 1;
1387 cbGTRounded = 0;
1388 cbOverhead = VMDK_SECTOR2BYTE(uStartSector) + cbGDRounded;
1389 }
1390
1391 /* For streamOptimized extents there is only one grain directory,
1392 * and for all others take redundant grain directory into account. */
1393 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
1394 {
1395 cbOverhead = RT_ALIGN_64(cbOverhead,
1396 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain));
1397 }
1398 else
1399 {
1400 cbOverhead += cbGDRounded + cbGTRounded;
1401 cbOverhead = RT_ALIGN_64(cbOverhead,
1402 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain));
1403 rc = vmdkFileSetSize(pImage, pExtent->pFile, cbOverhead);
1404 }
1405 if (RT_FAILURE(rc))
1406 goto out;
1407 pExtent->uAppendPosition = cbOverhead;
1408 pExtent->cOverheadSectors = VMDK_BYTE2SECTOR(cbOverhead);
1409
1410 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
1411 {
1412 pExtent->uSectorRGD = 0;
1413 pExtent->uSectorGD = uStartSector;
1414 }
1415 else
1416 {
1417 pExtent->uSectorRGD = uStartSector;
1418 pExtent->uSectorGD = uStartSector + VMDK_BYTE2SECTOR(cbGDRounded + cbGTRounded);
1419 }
1420
1421 rc = vmdkAllocStreamBuffers(pImage, pExtent);
1422 if (RT_FAILURE(rc))
1423 goto out;
1424
1425 rc = vmdkAllocGrainDirectory(pImage, pExtent);
1426 if (RT_FAILURE(rc))
1427 goto out;
1428
1429 if (fPreAlloc)
1430 {
1431 uint32_t uGTSectorLE;
1432 uint64_t uOffsetSectors;
1433
1434 if (pExtent->pRGD)
1435 {
1436 uOffsetSectors = pExtent->uSectorRGD + VMDK_BYTE2SECTOR(cbGDRounded);
1437 for (i = 0; i < pExtent->cGDEntries; i++)
1438 {
1439 pExtent->pRGD[i] = uOffsetSectors;
1440 uGTSectorLE = RT_H2LE_U64(uOffsetSectors);
1441 /* Write the redundant grain directory entry to disk. */
1442 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
1443 VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + i * sizeof(uGTSectorLE),
1444 &uGTSectorLE, sizeof(uGTSectorLE), NULL);
1445 if (RT_FAILURE(rc))
1446 {
1447 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write new redundant grain directory entry in '%s'"), pExtent->pszFullname);
1448 goto out;
1449 }
1450 uOffsetSectors += VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t));
1451 }
1452 }
1453
1454 uOffsetSectors = pExtent->uSectorGD + VMDK_BYTE2SECTOR(cbGDRounded);
1455 for (i = 0; i < pExtent->cGDEntries; i++)
1456 {
1457 pExtent->pGD[i] = uOffsetSectors;
1458 uGTSectorLE = RT_H2LE_U64(uOffsetSectors);
1459 /* Write the grain directory entry to disk. */
1460 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
1461 VMDK_SECTOR2BYTE(pExtent->uSectorGD) + i * sizeof(uGTSectorLE),
1462 &uGTSectorLE, sizeof(uGTSectorLE), NULL);
1463 if (RT_FAILURE(rc))
1464 {
1465 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write new grain directory entry in '%s'"), pExtent->pszFullname);
1466 goto out;
1467 }
1468 uOffsetSectors += VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t));
1469 }
1470 }
1471
1472out:
1473 if (RT_FAILURE(rc))
1474 vmdkFreeGrainDirectory(pExtent);
1475 return rc;
1476}
1477
1478static int vmdkStringUnquote(PVMDKIMAGE pImage, const char *pszStr,
1479 char **ppszUnquoted, char **ppszNext)
1480{
1481 char *pszQ;
1482 char *pszUnquoted;
1483
1484 /* Skip over whitespace. */
1485 while (*pszStr == ' ' || *pszStr == '\t')
1486 pszStr++;
1487
1488 if (*pszStr != '"')
1489 {
1490 pszQ = (char *)pszStr;
1491 while (*pszQ && *pszQ != ' ' && *pszQ != '\t')
1492 pszQ++;
1493 }
1494 else
1495 {
1496 pszStr++;
1497 pszQ = (char *)strchr(pszStr, '"');
1498 if (pszQ == NULL)
1499 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrectly quoted value in descriptor in '%s'"), pImage->pszFilename);
1500 }
1501
1502 pszUnquoted = (char *)RTMemTmpAlloc(pszQ - pszStr + 1);
1503 if (!pszUnquoted)
1504 return VERR_NO_MEMORY;
1505 memcpy(pszUnquoted, pszStr, pszQ - pszStr);
1506 pszUnquoted[pszQ - pszStr] = '\0';
1507 *ppszUnquoted = pszUnquoted;
1508 if (ppszNext)
1509 *ppszNext = pszQ + 1;
1510 return VINF_SUCCESS;
1511}
1512
1513static int vmdkDescInitStr(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1514 const char *pszLine)
1515{
1516 char *pEnd = pDescriptor->aLines[pDescriptor->cLines];
1517 ssize_t cbDiff = strlen(pszLine) + 1;
1518
1519 if ( pDescriptor->cLines >= VMDK_DESCRIPTOR_LINES_MAX - 1
1520 && pEnd - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff)
1521 return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
1522
1523 memcpy(pEnd, pszLine, cbDiff);
1524 pDescriptor->cLines++;
1525 pDescriptor->aLines[pDescriptor->cLines] = pEnd + cbDiff;
1526 pDescriptor->fDirty = true;
1527
1528 return VINF_SUCCESS;
1529}
1530
1531static bool vmdkDescGetStr(PVMDKDESCRIPTOR pDescriptor, unsigned uStart,
1532 const char *pszKey, const char **ppszValue)
1533{
1534 size_t cbKey = strlen(pszKey);
1535 const char *pszValue;
1536
1537 while (uStart != 0)
1538 {
1539 if (!strncmp(pDescriptor->aLines[uStart], pszKey, cbKey))
1540 {
1541 /* Key matches, check for a '=' (preceded by whitespace). */
1542 pszValue = pDescriptor->aLines[uStart] + cbKey;
1543 while (*pszValue == ' ' || *pszValue == '\t')
1544 pszValue++;
1545 if (*pszValue == '=')
1546 {
1547 *ppszValue = pszValue + 1;
1548 break;
1549 }
1550 }
1551 uStart = pDescriptor->aNextLines[uStart];
1552 }
1553 return !!uStart;
1554}
1555
1556static int vmdkDescSetStr(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1557 unsigned uStart,
1558 const char *pszKey, const char *pszValue)
1559{
1560 char *pszTmp;
1561 size_t cbKey = strlen(pszKey);
1562 unsigned uLast = 0;
1563
1564 while (uStart != 0)
1565 {
1566 if (!strncmp(pDescriptor->aLines[uStart], pszKey, cbKey))
1567 {
1568 /* Key matches, check for a '=' (preceded by whitespace). */
1569 pszTmp = pDescriptor->aLines[uStart] + cbKey;
1570 while (*pszTmp == ' ' || *pszTmp == '\t')
1571 pszTmp++;
1572 if (*pszTmp == '=')
1573 {
1574 pszTmp++;
1575 while (*pszTmp == ' ' || *pszTmp == '\t')
1576 pszTmp++;
1577 break;
1578 }
1579 }
1580 if (!pDescriptor->aNextLines[uStart])
1581 uLast = uStart;
1582 uStart = pDescriptor->aNextLines[uStart];
1583 }
1584 if (uStart)
1585 {
1586 if (pszValue)
1587 {
1588 /* Key already exists, replace existing value. */
1589 size_t cbOldVal = strlen(pszTmp);
1590 size_t cbNewVal = strlen(pszValue);
1591 ssize_t cbDiff = cbNewVal - cbOldVal;
1592 /* Check for buffer overflow. */
1593 if ( pDescriptor->aLines[pDescriptor->cLines]
1594 - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff)
1595 return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
1596
1597 memmove(pszTmp + cbNewVal, pszTmp + cbOldVal,
1598 pDescriptor->aLines[pDescriptor->cLines] - pszTmp - cbOldVal);
1599 memcpy(pszTmp, pszValue, cbNewVal + 1);
1600 for (unsigned i = uStart + 1; i <= pDescriptor->cLines; i++)
1601 pDescriptor->aLines[i] += cbDiff;
1602 }
1603 else
1604 {
1605 memmove(pDescriptor->aLines[uStart], pDescriptor->aLines[uStart+1],
1606 pDescriptor->aLines[pDescriptor->cLines] - pDescriptor->aLines[uStart+1] + 1);
1607 for (unsigned i = uStart + 1; i <= pDescriptor->cLines; i++)
1608 {
1609 pDescriptor->aLines[i-1] = pDescriptor->aLines[i];
1610 if (pDescriptor->aNextLines[i])
1611 pDescriptor->aNextLines[i-1] = pDescriptor->aNextLines[i] - 1;
1612 else
1613 pDescriptor->aNextLines[i-1] = 0;
1614 }
1615 pDescriptor->cLines--;
1616 /* Adjust starting line numbers of following descriptor sections. */
1617 if (uStart < pDescriptor->uFirstExtent)
1618 pDescriptor->uFirstExtent--;
1619 if (uStart < pDescriptor->uFirstDDB)
1620 pDescriptor->uFirstDDB--;
1621 }
1622 }
1623 else
1624 {
1625 /* Key doesn't exist, append after the last entry in this category. */
1626 if (!pszValue)
1627 {
1628 /* Key doesn't exist, and it should be removed. Simply a no-op. */
1629 return VINF_SUCCESS;
1630 }
1631 cbKey = strlen(pszKey);
1632 size_t cbValue = strlen(pszValue);
1633 ssize_t cbDiff = cbKey + 1 + cbValue + 1;
1634 /* Check for buffer overflow. */
1635 if ( (pDescriptor->cLines >= VMDK_DESCRIPTOR_LINES_MAX - 1)
1636 || ( pDescriptor->aLines[pDescriptor->cLines]
1637 - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff))
1638 return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
1639 for (unsigned i = pDescriptor->cLines + 1; i > uLast + 1; i--)
1640 {
1641 pDescriptor->aLines[i] = pDescriptor->aLines[i - 1];
1642 if (pDescriptor->aNextLines[i - 1])
1643 pDescriptor->aNextLines[i] = pDescriptor->aNextLines[i - 1] + 1;
1644 else
1645 pDescriptor->aNextLines[i] = 0;
1646 }
1647 uStart = uLast + 1;
1648 pDescriptor->aNextLines[uLast] = uStart;
1649 pDescriptor->aNextLines[uStart] = 0;
1650 pDescriptor->cLines++;
1651 pszTmp = pDescriptor->aLines[uStart];
1652 memmove(pszTmp + cbDiff, pszTmp,
1653 pDescriptor->aLines[pDescriptor->cLines] - pszTmp);
1654 memcpy(pDescriptor->aLines[uStart], pszKey, cbKey);
1655 pDescriptor->aLines[uStart][cbKey] = '=';
1656 memcpy(pDescriptor->aLines[uStart] + cbKey + 1, pszValue, cbValue + 1);
1657 for (unsigned i = uStart + 1; i <= pDescriptor->cLines; i++)
1658 pDescriptor->aLines[i] += cbDiff;
1659
1660 /* Adjust starting line numbers of following descriptor sections. */
1661 if (uStart <= pDescriptor->uFirstExtent)
1662 pDescriptor->uFirstExtent++;
1663 if (uStart <= pDescriptor->uFirstDDB)
1664 pDescriptor->uFirstDDB++;
1665 }
1666 pDescriptor->fDirty = true;
1667 return VINF_SUCCESS;
1668}
1669
1670static int vmdkDescBaseGetU32(PVMDKDESCRIPTOR pDescriptor, const char *pszKey,
1671 uint32_t *puValue)
1672{
1673 const char *pszValue;
1674
1675 if (!vmdkDescGetStr(pDescriptor, pDescriptor->uFirstDesc, pszKey,
1676 &pszValue))
1677 return VERR_VD_VMDK_VALUE_NOT_FOUND;
1678 return RTStrToUInt32Ex(pszValue, NULL, 10, puValue);
1679}
1680
1681static int vmdkDescBaseGetStr(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1682 const char *pszKey, const char **ppszValue)
1683{
1684 const char *pszValue;
1685 char *pszValueUnquoted;
1686
1687 if (!vmdkDescGetStr(pDescriptor, pDescriptor->uFirstDesc, pszKey,
1688 &pszValue))
1689 return VERR_VD_VMDK_VALUE_NOT_FOUND;
1690 int rc = vmdkStringUnquote(pImage, pszValue, &pszValueUnquoted, NULL);
1691 if (RT_FAILURE(rc))
1692 return rc;
1693 *ppszValue = pszValueUnquoted;
1694 return rc;
1695}
1696
1697static int vmdkDescBaseSetStr(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1698 const char *pszKey, const char *pszValue)
1699{
1700 char *pszValueQuoted;
1701
1702 int rc = RTStrAPrintf(&pszValueQuoted, "\"%s\"", pszValue);
1703 if (RT_FAILURE(rc))
1704 return rc;
1705 rc = vmdkDescSetStr(pImage, pDescriptor, pDescriptor->uFirstDesc, pszKey,
1706 pszValueQuoted);
1707 RTStrFree(pszValueQuoted);
1708 return rc;
1709}
1710
1711static void vmdkDescExtRemoveDummy(PVMDKIMAGE pImage,
1712 PVMDKDESCRIPTOR pDescriptor)
1713{
1714 unsigned uEntry = pDescriptor->uFirstExtent;
1715 ssize_t cbDiff;
1716
1717 if (!uEntry)
1718 return;
1719
1720 cbDiff = strlen(pDescriptor->aLines[uEntry]) + 1;
1721 /* Move everything including \0 in the entry marking the end of buffer. */
1722 memmove(pDescriptor->aLines[uEntry], pDescriptor->aLines[uEntry + 1],
1723 pDescriptor->aLines[pDescriptor->cLines] - pDescriptor->aLines[uEntry + 1] + 1);
1724 for (unsigned i = uEntry + 1; i <= pDescriptor->cLines; i++)
1725 {
1726 pDescriptor->aLines[i - 1] = pDescriptor->aLines[i] - cbDiff;
1727 if (pDescriptor->aNextLines[i])
1728 pDescriptor->aNextLines[i - 1] = pDescriptor->aNextLines[i] - 1;
1729 else
1730 pDescriptor->aNextLines[i - 1] = 0;
1731 }
1732 pDescriptor->cLines--;
1733 if (pDescriptor->uFirstDDB)
1734 pDescriptor->uFirstDDB--;
1735
1736 return;
1737}
1738
1739static int vmdkDescExtInsert(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1740 VMDKACCESS enmAccess, uint64_t cNominalSectors,
1741 VMDKETYPE enmType, const char *pszBasename,
1742 uint64_t uSectorOffset)
1743{
1744 static const char *apszAccess[] = { "NOACCESS", "RDONLY", "RW" };
1745 static const char *apszType[] = { "", "SPARSE", "FLAT", "ZERO", "VMFS" };
1746 char *pszTmp;
1747 unsigned uStart = pDescriptor->uFirstExtent, uLast = 0;
1748 char szExt[1024];
1749 ssize_t cbDiff;
1750
1751 Assert((unsigned)enmAccess < RT_ELEMENTS(apszAccess));
1752 Assert((unsigned)enmType < RT_ELEMENTS(apszType));
1753
1754 /* Find last entry in extent description. */
1755 while (uStart)
1756 {
1757 if (!pDescriptor->aNextLines[uStart])
1758 uLast = uStart;
1759 uStart = pDescriptor->aNextLines[uStart];
1760 }
1761
1762 if (enmType == VMDKETYPE_ZERO)
1763 {
1764 RTStrPrintf(szExt, sizeof(szExt), "%s %llu %s ", apszAccess[enmAccess],
1765 cNominalSectors, apszType[enmType]);
1766 }
1767 else if (enmType == VMDKETYPE_FLAT)
1768 {
1769 RTStrPrintf(szExt, sizeof(szExt), "%s %llu %s \"%s\" %llu",
1770 apszAccess[enmAccess], cNominalSectors,
1771 apszType[enmType], pszBasename, uSectorOffset);
1772 }
1773 else
1774 {
1775 RTStrPrintf(szExt, sizeof(szExt), "%s %llu %s \"%s\"",
1776 apszAccess[enmAccess], cNominalSectors,
1777 apszType[enmType], pszBasename);
1778 }
1779 cbDiff = strlen(szExt) + 1;
1780
1781 /* Check for buffer overflow. */
1782 if ( (pDescriptor->cLines >= VMDK_DESCRIPTOR_LINES_MAX - 1)
1783 || ( pDescriptor->aLines[pDescriptor->cLines]
1784 - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff))
1785 return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
1786
1787 for (unsigned i = pDescriptor->cLines + 1; i > uLast + 1; i--)
1788 {
1789 pDescriptor->aLines[i] = pDescriptor->aLines[i - 1];
1790 if (pDescriptor->aNextLines[i - 1])
1791 pDescriptor->aNextLines[i] = pDescriptor->aNextLines[i - 1] + 1;
1792 else
1793 pDescriptor->aNextLines[i] = 0;
1794 }
1795 uStart = uLast + 1;
1796 pDescriptor->aNextLines[uLast] = uStart;
1797 pDescriptor->aNextLines[uStart] = 0;
1798 pDescriptor->cLines++;
1799 pszTmp = pDescriptor->aLines[uStart];
1800 memmove(pszTmp + cbDiff, pszTmp,
1801 pDescriptor->aLines[pDescriptor->cLines] - pszTmp);
1802 memcpy(pDescriptor->aLines[uStart], szExt, cbDiff);
1803 for (unsigned i = uStart + 1; i <= pDescriptor->cLines; i++)
1804 pDescriptor->aLines[i] += cbDiff;
1805
1806 /* Adjust starting line numbers of following descriptor sections. */
1807 if (uStart <= pDescriptor->uFirstDDB)
1808 pDescriptor->uFirstDDB++;
1809
1810 pDescriptor->fDirty = true;
1811 return VINF_SUCCESS;
1812}
1813
1814static int vmdkDescDDBGetStr(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1815 const char *pszKey, const char **ppszValue)
1816{
1817 const char *pszValue;
1818 char *pszValueUnquoted;
1819
1820 if (!vmdkDescGetStr(pDescriptor, pDescriptor->uFirstDDB, pszKey,
1821 &pszValue))
1822 return VERR_VD_VMDK_VALUE_NOT_FOUND;
1823 int rc = vmdkStringUnquote(pImage, pszValue, &pszValueUnquoted, NULL);
1824 if (RT_FAILURE(rc))
1825 return rc;
1826 *ppszValue = pszValueUnquoted;
1827 return rc;
1828}
1829
1830static int vmdkDescDDBGetU32(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1831 const char *pszKey, uint32_t *puValue)
1832{
1833 const char *pszValue;
1834 char *pszValueUnquoted;
1835
1836 if (!vmdkDescGetStr(pDescriptor, pDescriptor->uFirstDDB, pszKey,
1837 &pszValue))
1838 return VERR_VD_VMDK_VALUE_NOT_FOUND;
1839 int rc = vmdkStringUnquote(pImage, pszValue, &pszValueUnquoted, NULL);
1840 if (RT_FAILURE(rc))
1841 return rc;
1842 rc = RTStrToUInt32Ex(pszValueUnquoted, NULL, 10, puValue);
1843 RTMemTmpFree(pszValueUnquoted);
1844 return rc;
1845}
1846
1847static int vmdkDescDDBGetUuid(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1848 const char *pszKey, PRTUUID pUuid)
1849{
1850 const char *pszValue;
1851 char *pszValueUnquoted;
1852
1853 if (!vmdkDescGetStr(pDescriptor, pDescriptor->uFirstDDB, pszKey,
1854 &pszValue))
1855 return VERR_VD_VMDK_VALUE_NOT_FOUND;
1856 int rc = vmdkStringUnquote(pImage, pszValue, &pszValueUnquoted, NULL);
1857 if (RT_FAILURE(rc))
1858 return rc;
1859 rc = RTUuidFromStr(pUuid, pszValueUnquoted);
1860 RTMemTmpFree(pszValueUnquoted);
1861 return rc;
1862}
1863
1864static int vmdkDescDDBSetStr(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1865 const char *pszKey, const char *pszVal)
1866{
1867 int rc;
1868 char *pszValQuoted;
1869
1870 if (pszVal)
1871 {
1872 rc = RTStrAPrintf(&pszValQuoted, "\"%s\"", pszVal);
1873 if (RT_FAILURE(rc))
1874 return rc;
1875 }
1876 else
1877 pszValQuoted = NULL;
1878 rc = vmdkDescSetStr(pImage, pDescriptor, pDescriptor->uFirstDDB, pszKey,
1879 pszValQuoted);
1880 if (pszValQuoted)
1881 RTStrFree(pszValQuoted);
1882 return rc;
1883}
1884
1885static int vmdkDescDDBSetUuid(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1886 const char *pszKey, PCRTUUID pUuid)
1887{
1888 char *pszUuid;
1889
1890 int rc = RTStrAPrintf(&pszUuid, "\"%RTuuid\"", pUuid);
1891 if (RT_FAILURE(rc))
1892 return rc;
1893 rc = vmdkDescSetStr(pImage, pDescriptor, pDescriptor->uFirstDDB, pszKey,
1894 pszUuid);
1895 RTStrFree(pszUuid);
1896 return rc;
1897}
1898
1899static int vmdkDescDDBSetU32(PVMDKIMAGE pImage, PVMDKDESCRIPTOR pDescriptor,
1900 const char *pszKey, uint32_t uValue)
1901{
1902 char *pszValue;
1903
1904 int rc = RTStrAPrintf(&pszValue, "\"%d\"", uValue);
1905 if (RT_FAILURE(rc))
1906 return rc;
1907 rc = vmdkDescSetStr(pImage, pDescriptor, pDescriptor->uFirstDDB, pszKey,
1908 pszValue);
1909 RTStrFree(pszValue);
1910 return rc;
1911}
1912
1913static int vmdkPreprocessDescriptor(PVMDKIMAGE pImage, char *pDescData,
1914 size_t cbDescData,
1915 PVMDKDESCRIPTOR pDescriptor)
1916{
1917 int rc = VINF_SUCCESS;
1918 unsigned cLine = 0, uLastNonEmptyLine = 0;
1919 char *pTmp = pDescData;
1920
1921 pDescriptor->cbDescAlloc = cbDescData;
1922 while (*pTmp != '\0')
1923 {
1924 pDescriptor->aLines[cLine++] = pTmp;
1925 if (cLine >= VMDK_DESCRIPTOR_LINES_MAX)
1926 {
1927 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
1928 goto out;
1929 }
1930
1931 while (*pTmp != '\0' && *pTmp != '\n')
1932 {
1933 if (*pTmp == '\r')
1934 {
1935 if (*(pTmp + 1) != '\n')
1936 {
1937 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: unsupported end of line in descriptor in '%s'"), pImage->pszFilename);
1938 goto out;
1939 }
1940 else
1941 {
1942 /* Get rid of CR character. */
1943 *pTmp = '\0';
1944 }
1945 }
1946 pTmp++;
1947 }
1948 /* Get rid of LF character. */
1949 if (*pTmp == '\n')
1950 {
1951 *pTmp = '\0';
1952 pTmp++;
1953 }
1954 }
1955 pDescriptor->cLines = cLine;
1956 /* Pointer right after the end of the used part of the buffer. */
1957 pDescriptor->aLines[cLine] = pTmp;
1958
1959 if ( strcmp(pDescriptor->aLines[0], "# Disk DescriptorFile")
1960 && strcmp(pDescriptor->aLines[0], "# Disk Descriptor File"))
1961 {
1962 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor does not start as expected in '%s'"), pImage->pszFilename);
1963 goto out;
1964 }
1965
1966 /* Initialize those, because we need to be able to reopen an image. */
1967 pDescriptor->uFirstDesc = 0;
1968 pDescriptor->uFirstExtent = 0;
1969 pDescriptor->uFirstDDB = 0;
1970 for (unsigned i = 0; i < cLine; i++)
1971 {
1972 if (*pDescriptor->aLines[i] != '#' && *pDescriptor->aLines[i] != '\0')
1973 {
1974 if ( !strncmp(pDescriptor->aLines[i], "RW", 2)
1975 || !strncmp(pDescriptor->aLines[i], "RDONLY", 6)
1976 || !strncmp(pDescriptor->aLines[i], "NOACCESS", 8) )
1977 {
1978 /* An extent descriptor. */
1979 if (!pDescriptor->uFirstDesc || pDescriptor->uFirstDDB)
1980 {
1981 /* Incorrect ordering of entries. */
1982 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
1983 goto out;
1984 }
1985 if (!pDescriptor->uFirstExtent)
1986 {
1987 pDescriptor->uFirstExtent = i;
1988 uLastNonEmptyLine = 0;
1989 }
1990 }
1991 else if (!strncmp(pDescriptor->aLines[i], "ddb.", 4))
1992 {
1993 /* A disk database entry. */
1994 if (!pDescriptor->uFirstDesc || !pDescriptor->uFirstExtent)
1995 {
1996 /* Incorrect ordering of entries. */
1997 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
1998 goto out;
1999 }
2000 if (!pDescriptor->uFirstDDB)
2001 {
2002 pDescriptor->uFirstDDB = i;
2003 uLastNonEmptyLine = 0;
2004 }
2005 }
2006 else
2007 {
2008 /* A normal entry. */
2009 if (pDescriptor->uFirstExtent || pDescriptor->uFirstDDB)
2010 {
2011 /* Incorrect ordering of entries. */
2012 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
2013 goto out;
2014 }
2015 if (!pDescriptor->uFirstDesc)
2016 {
2017 pDescriptor->uFirstDesc = i;
2018 uLastNonEmptyLine = 0;
2019 }
2020 }
2021 if (uLastNonEmptyLine)
2022 pDescriptor->aNextLines[uLastNonEmptyLine] = i;
2023 uLastNonEmptyLine = i;
2024 }
2025 }
2026
2027out:
2028 return rc;
2029}
2030
2031static int vmdkDescSetPCHSGeometry(PVMDKIMAGE pImage,
2032 PCVDGEOMETRY pPCHSGeometry)
2033{
2034 int rc = vmdkDescDDBSetU32(pImage, &pImage->Descriptor,
2035 VMDK_DDB_GEO_PCHS_CYLINDERS,
2036 pPCHSGeometry->cCylinders);
2037 if (RT_FAILURE(rc))
2038 return rc;
2039 rc = vmdkDescDDBSetU32(pImage, &pImage->Descriptor,
2040 VMDK_DDB_GEO_PCHS_HEADS,
2041 pPCHSGeometry->cHeads);
2042 if (RT_FAILURE(rc))
2043 return rc;
2044 rc = vmdkDescDDBSetU32(pImage, &pImage->Descriptor,
2045 VMDK_DDB_GEO_PCHS_SECTORS,
2046 pPCHSGeometry->cSectors);
2047 return rc;
2048}
2049
2050static int vmdkDescSetLCHSGeometry(PVMDKIMAGE pImage,
2051 PCVDGEOMETRY pLCHSGeometry)
2052{
2053 int rc = vmdkDescDDBSetU32(pImage, &pImage->Descriptor,
2054 VMDK_DDB_GEO_LCHS_CYLINDERS,
2055 pLCHSGeometry->cCylinders);
2056 if (RT_FAILURE(rc))
2057 return rc;
2058 rc = vmdkDescDDBSetU32(pImage, &pImage->Descriptor,
2059 VMDK_DDB_GEO_LCHS_HEADS,
2060
2061 pLCHSGeometry->cHeads);
2062 if (RT_FAILURE(rc))
2063 return rc;
2064 rc = vmdkDescDDBSetU32(pImage, &pImage->Descriptor,
2065 VMDK_DDB_GEO_LCHS_SECTORS,
2066 pLCHSGeometry->cSectors);
2067 return rc;
2068}
2069
2070static int vmdkCreateDescriptor(PVMDKIMAGE pImage, char *pDescData,
2071 size_t cbDescData, PVMDKDESCRIPTOR pDescriptor)
2072{
2073 int rc;
2074
2075 pDescriptor->uFirstDesc = 0;
2076 pDescriptor->uFirstExtent = 0;
2077 pDescriptor->uFirstDDB = 0;
2078 pDescriptor->cLines = 0;
2079 pDescriptor->cbDescAlloc = cbDescData;
2080 pDescriptor->fDirty = false;
2081 pDescriptor->aLines[pDescriptor->cLines] = pDescData;
2082 memset(pDescriptor->aNextLines, '\0', sizeof(pDescriptor->aNextLines));
2083
2084 rc = vmdkDescInitStr(pImage, pDescriptor, "# Disk DescriptorFile");
2085 if (RT_FAILURE(rc))
2086 goto out;
2087 rc = vmdkDescInitStr(pImage, pDescriptor, "version=1");
2088 if (RT_FAILURE(rc))
2089 goto out;
2090 pDescriptor->uFirstDesc = pDescriptor->cLines - 1;
2091 rc = vmdkDescInitStr(pImage, pDescriptor, "");
2092 if (RT_FAILURE(rc))
2093 goto out;
2094 rc = vmdkDescInitStr(pImage, pDescriptor, "# Extent description");
2095 if (RT_FAILURE(rc))
2096 goto out;
2097 rc = vmdkDescInitStr(pImage, pDescriptor, "NOACCESS 0 ZERO ");
2098 if (RT_FAILURE(rc))
2099 goto out;
2100 pDescriptor->uFirstExtent = pDescriptor->cLines - 1;
2101 rc = vmdkDescInitStr(pImage, pDescriptor, "");
2102 if (RT_FAILURE(rc))
2103 goto out;
2104 /* The trailing space is created by VMware, too. */
2105 rc = vmdkDescInitStr(pImage, pDescriptor, "# The disk Data Base ");
2106 if (RT_FAILURE(rc))
2107 goto out;
2108 rc = vmdkDescInitStr(pImage, pDescriptor, "#DDB");
2109 if (RT_FAILURE(rc))
2110 goto out;
2111 rc = vmdkDescInitStr(pImage, pDescriptor, "");
2112 if (RT_FAILURE(rc))
2113 goto out;
2114 rc = vmdkDescInitStr(pImage, pDescriptor, "ddb.virtualHWVersion = \"4\"");
2115 if (RT_FAILURE(rc))
2116 goto out;
2117 pDescriptor->uFirstDDB = pDescriptor->cLines - 1;
2118
2119 /* Now that the framework is in place, use the normal functions to insert
2120 * the remaining keys. */
2121 char szBuf[9];
2122 RTStrPrintf(szBuf, sizeof(szBuf), "%08x", RTRandU32());
2123 rc = vmdkDescSetStr(pImage, pDescriptor, pDescriptor->uFirstDesc,
2124 "CID", szBuf);
2125 if (RT_FAILURE(rc))
2126 goto out;
2127 rc = vmdkDescSetStr(pImage, pDescriptor, pDescriptor->uFirstDesc,
2128 "parentCID", "ffffffff");
2129 if (RT_FAILURE(rc))
2130 goto out;
2131
2132 rc = vmdkDescDDBSetStr(pImage, pDescriptor, "ddb.adapterType", "ide");
2133 if (RT_FAILURE(rc))
2134 goto out;
2135
2136out:
2137 return rc;
2138}
2139
2140static int vmdkParseDescriptor(PVMDKIMAGE pImage, char *pDescData,
2141 size_t cbDescData)
2142{
2143 int rc;
2144 unsigned cExtents;
2145 unsigned uLine;
2146 unsigned i;
2147
2148 rc = vmdkPreprocessDescriptor(pImage, pDescData, cbDescData,
2149 &pImage->Descriptor);
2150 if (RT_FAILURE(rc))
2151 return rc;
2152
2153 /* Check version, must be 1. */
2154 uint32_t uVersion;
2155 rc = vmdkDescBaseGetU32(&pImage->Descriptor, "version", &uVersion);
2156 if (RT_FAILURE(rc))
2157 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error finding key 'version' in descriptor in '%s'"), pImage->pszFilename);
2158 if (uVersion != 1)
2159 return vmdkError(pImage, VERR_VD_VMDK_UNSUPPORTED_VERSION, RT_SRC_POS, N_("VMDK: unsupported format version in descriptor in '%s'"), pImage->pszFilename);
2160
2161 /* Get image creation type and determine image flags. */
2162 const char *pszCreateType = NULL; /* initialized to make gcc shut up */
2163 rc = vmdkDescBaseGetStr(pImage, &pImage->Descriptor, "createType",
2164 &pszCreateType);
2165 if (RT_FAILURE(rc))
2166 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot get image type from descriptor in '%s'"), pImage->pszFilename);
2167 if ( !strcmp(pszCreateType, "twoGbMaxExtentSparse")
2168 || !strcmp(pszCreateType, "twoGbMaxExtentFlat"))
2169 pImage->uImageFlags |= VD_VMDK_IMAGE_FLAGS_SPLIT_2G;
2170 else if ( !strcmp(pszCreateType, "partitionedDevice")
2171 || !strcmp(pszCreateType, "fullDevice"))
2172 pImage->uImageFlags |= VD_VMDK_IMAGE_FLAGS_RAWDISK;
2173 else if (!strcmp(pszCreateType, "streamOptimized"))
2174 pImage->uImageFlags |= VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED;
2175 else if (!strcmp(pszCreateType, "vmfs"))
2176 pImage->uImageFlags |= VD_IMAGE_FLAGS_FIXED | VD_VMDK_IMAGE_FLAGS_ESX;
2177 RTStrFree((char *)(void *)pszCreateType);
2178
2179 /* Count the number of extent config entries. */
2180 for (uLine = pImage->Descriptor.uFirstExtent, cExtents = 0;
2181 uLine != 0;
2182 uLine = pImage->Descriptor.aNextLines[uLine], cExtents++)
2183 /* nothing */;
2184
2185 if (!pImage->pDescData && cExtents != 1)
2186 {
2187 /* Monolithic image, must have only one extent (already opened). */
2188 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image may only have one extent in '%s'"), pImage->pszFilename);
2189 }
2190
2191 if (pImage->pDescData)
2192 {
2193 /* Non-monolithic image, extents need to be allocated. */
2194 rc = vmdkCreateExtents(pImage, cExtents);
2195 if (RT_FAILURE(rc))
2196 return rc;
2197 }
2198
2199 for (i = 0, uLine = pImage->Descriptor.uFirstExtent;
2200 i < cExtents; i++, uLine = pImage->Descriptor.aNextLines[uLine])
2201 {
2202 char *pszLine = pImage->Descriptor.aLines[uLine];
2203
2204 /* Access type of the extent. */
2205 if (!strncmp(pszLine, "RW", 2))
2206 {
2207 pImage->pExtents[i].enmAccess = VMDKACCESS_READWRITE;
2208 pszLine += 2;
2209 }
2210 else if (!strncmp(pszLine, "RDONLY", 6))
2211 {
2212 pImage->pExtents[i].enmAccess = VMDKACCESS_READONLY;
2213 pszLine += 6;
2214 }
2215 else if (!strncmp(pszLine, "NOACCESS", 8))
2216 {
2217 pImage->pExtents[i].enmAccess = VMDKACCESS_NOACCESS;
2218 pszLine += 8;
2219 }
2220 else
2221 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2222 if (*pszLine++ != ' ')
2223 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2224
2225 /* Nominal size of the extent. */
2226 rc = RTStrToUInt64Ex(pszLine, &pszLine, 10,
2227 &pImage->pExtents[i].cNominalSectors);
2228 if (RT_FAILURE(rc))
2229 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2230 if (*pszLine++ != ' ')
2231 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2232
2233 /* Type of the extent. */
2234#ifdef VBOX_WITH_VMDK_ESX
2235 /** @todo Add the ESX extent types. Not necessary for now because
2236 * the ESX extent types are only used inside an ESX server. They are
2237 * automatically converted if the VMDK is exported. */
2238#endif /* VBOX_WITH_VMDK_ESX */
2239 if (!strncmp(pszLine, "SPARSE", 6))
2240 {
2241 pImage->pExtents[i].enmType = VMDKETYPE_HOSTED_SPARSE;
2242 pszLine += 6;
2243 }
2244 else if (!strncmp(pszLine, "FLAT", 4))
2245 {
2246 pImage->pExtents[i].enmType = VMDKETYPE_FLAT;
2247 pszLine += 4;
2248 }
2249 else if (!strncmp(pszLine, "ZERO", 4))
2250 {
2251 pImage->pExtents[i].enmType = VMDKETYPE_ZERO;
2252 pszLine += 4;
2253 }
2254 else if (!strncmp(pszLine, "VMFS", 4))
2255 {
2256 pImage->pExtents[i].enmType = VMDKETYPE_VMFS;
2257 pszLine += 4;
2258 }
2259 else
2260 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2261
2262 if (pImage->pExtents[i].enmType == VMDKETYPE_ZERO)
2263 {
2264 /* This one has no basename or offset. */
2265 if (*pszLine == ' ')
2266 pszLine++;
2267 if (*pszLine != '\0')
2268 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2269 pImage->pExtents[i].pszBasename = NULL;
2270 }
2271 else
2272 {
2273 /* All other extent types have basename and optional offset. */
2274 if (*pszLine++ != ' ')
2275 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2276
2277 /* Basename of the image. Surrounded by quotes. */
2278 char *pszBasename;
2279 rc = vmdkStringUnquote(pImage, pszLine, &pszBasename, &pszLine);
2280 if (RT_FAILURE(rc))
2281 return rc;
2282 pImage->pExtents[i].pszBasename = pszBasename;
2283 if (*pszLine == ' ')
2284 {
2285 pszLine++;
2286 if (*pszLine != '\0')
2287 {
2288 /* Optional offset in extent specified. */
2289 rc = RTStrToUInt64Ex(pszLine, &pszLine, 10,
2290 &pImage->pExtents[i].uSectorOffset);
2291 if (RT_FAILURE(rc))
2292 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2293 }
2294 }
2295
2296 if (*pszLine != '\0')
2297 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
2298 }
2299 }
2300
2301 /* Determine PCHS geometry (autogenerate if necessary). */
2302 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
2303 VMDK_DDB_GEO_PCHS_CYLINDERS,
2304 &pImage->PCHSGeometry.cCylinders);
2305 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2306 pImage->PCHSGeometry.cCylinders = 0;
2307 else if (RT_FAILURE(rc))
2308 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
2309 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
2310 VMDK_DDB_GEO_PCHS_HEADS,
2311 &pImage->PCHSGeometry.cHeads);
2312 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2313 pImage->PCHSGeometry.cHeads = 0;
2314 else if (RT_FAILURE(rc))
2315 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
2316 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
2317 VMDK_DDB_GEO_PCHS_SECTORS,
2318 &pImage->PCHSGeometry.cSectors);
2319 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2320 pImage->PCHSGeometry.cSectors = 0;
2321 else if (RT_FAILURE(rc))
2322 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
2323 if ( pImage->PCHSGeometry.cCylinders == 0
2324 || pImage->PCHSGeometry.cHeads == 0
2325 || pImage->PCHSGeometry.cHeads > 16
2326 || pImage->PCHSGeometry.cSectors == 0
2327 || pImage->PCHSGeometry.cSectors > 63)
2328 {
2329 /* Mark PCHS geometry as not yet valid (can't do the calculation here
2330 * as the total image size isn't known yet). */
2331 pImage->PCHSGeometry.cCylinders = 0;
2332 pImage->PCHSGeometry.cHeads = 16;
2333 pImage->PCHSGeometry.cSectors = 63;
2334 }
2335
2336 /* Determine LCHS geometry (set to 0 if not specified). */
2337 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
2338 VMDK_DDB_GEO_LCHS_CYLINDERS,
2339 &pImage->LCHSGeometry.cCylinders);
2340 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2341 pImage->LCHSGeometry.cCylinders = 0;
2342 else if (RT_FAILURE(rc))
2343 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
2344 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
2345 VMDK_DDB_GEO_LCHS_HEADS,
2346 &pImage->LCHSGeometry.cHeads);
2347 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2348 pImage->LCHSGeometry.cHeads = 0;
2349 else if (RT_FAILURE(rc))
2350 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
2351 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
2352 VMDK_DDB_GEO_LCHS_SECTORS,
2353 &pImage->LCHSGeometry.cSectors);
2354 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2355 pImage->LCHSGeometry.cSectors = 0;
2356 else if (RT_FAILURE(rc))
2357 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
2358 if ( pImage->LCHSGeometry.cCylinders == 0
2359 || pImage->LCHSGeometry.cHeads == 0
2360 || pImage->LCHSGeometry.cSectors == 0)
2361 {
2362 pImage->LCHSGeometry.cCylinders = 0;
2363 pImage->LCHSGeometry.cHeads = 0;
2364 pImage->LCHSGeometry.cSectors = 0;
2365 }
2366
2367 /* Get image UUID. */
2368 rc = vmdkDescDDBGetUuid(pImage, &pImage->Descriptor, VMDK_DDB_IMAGE_UUID,
2369 &pImage->ImageUuid);
2370 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2371 {
2372 /* Image without UUID. Probably created by VMware and not yet used
2373 * by VirtualBox. Can only be added for images opened in read/write
2374 * mode, so don't bother producing a sensible UUID otherwise. */
2375 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2376 RTUuidClear(&pImage->ImageUuid);
2377 else
2378 {
2379 rc = RTUuidCreate(&pImage->ImageUuid);
2380 if (RT_FAILURE(rc))
2381 return rc;
2382 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
2383 VMDK_DDB_IMAGE_UUID, &pImage->ImageUuid);
2384 if (RT_FAILURE(rc))
2385 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
2386 }
2387 }
2388 else if (RT_FAILURE(rc))
2389 return rc;
2390
2391 /* Get image modification UUID. */
2392 rc = vmdkDescDDBGetUuid(pImage, &pImage->Descriptor,
2393 VMDK_DDB_MODIFICATION_UUID,
2394 &pImage->ModificationUuid);
2395 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2396 {
2397 /* Image without UUID. Probably created by VMware and not yet used
2398 * by VirtualBox. Can only be added for images opened in read/write
2399 * mode, so don't bother producing a sensible UUID otherwise. */
2400 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2401 RTUuidClear(&pImage->ModificationUuid);
2402 else
2403 {
2404 rc = RTUuidCreate(&pImage->ModificationUuid);
2405 if (RT_FAILURE(rc))
2406 return rc;
2407 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
2408 VMDK_DDB_MODIFICATION_UUID,
2409 &pImage->ModificationUuid);
2410 if (RT_FAILURE(rc))
2411 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image modification UUID in descriptor in '%s'"), pImage->pszFilename);
2412 }
2413 }
2414 else if (RT_FAILURE(rc))
2415 return rc;
2416
2417 /* Get UUID of parent image. */
2418 rc = vmdkDescDDBGetUuid(pImage, &pImage->Descriptor, VMDK_DDB_PARENT_UUID,
2419 &pImage->ParentUuid);
2420 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2421 {
2422 /* Image without UUID. Probably created by VMware and not yet used
2423 * by VirtualBox. Can only be added for images opened in read/write
2424 * mode, so don't bother producing a sensible UUID otherwise. */
2425 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2426 RTUuidClear(&pImage->ParentUuid);
2427 else
2428 {
2429 rc = RTUuidClear(&pImage->ParentUuid);
2430 if (RT_FAILURE(rc))
2431 return rc;
2432 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
2433 VMDK_DDB_PARENT_UUID, &pImage->ParentUuid);
2434 if (RT_FAILURE(rc))
2435 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent UUID in descriptor in '%s'"), pImage->pszFilename);
2436 }
2437 }
2438 else if (RT_FAILURE(rc))
2439 return rc;
2440
2441 /* Get parent image modification UUID. */
2442 rc = vmdkDescDDBGetUuid(pImage, &pImage->Descriptor,
2443 VMDK_DDB_PARENT_MODIFICATION_UUID,
2444 &pImage->ParentModificationUuid);
2445 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
2446 {
2447 /* Image without UUID. Probably created by VMware and not yet used
2448 * by VirtualBox. Can only be added for images opened in read/write
2449 * mode, so don't bother producing a sensible UUID otherwise. */
2450 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2451 RTUuidClear(&pImage->ParentModificationUuid);
2452 else
2453 {
2454 rc = RTUuidCreate(&pImage->ParentModificationUuid);
2455 if (RT_FAILURE(rc))
2456 return rc;
2457 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
2458 VMDK_DDB_PARENT_MODIFICATION_UUID,
2459 &pImage->ParentModificationUuid);
2460 if (RT_FAILURE(rc))
2461 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in descriptor in '%s'"), pImage->pszFilename);
2462 }
2463 }
2464 else if (RT_FAILURE(rc))
2465 return rc;
2466
2467 return VINF_SUCCESS;
2468}
2469
2470/**
2471 * Internal: write/update the descriptor part of the image.
2472 */
2473static int vmdkWriteDescriptor(PVMDKIMAGE pImage)
2474{
2475 int rc = VINF_SUCCESS;
2476 uint64_t cbLimit;
2477 uint64_t uOffset;
2478 PVMDKFILE pDescFile;
2479
2480 if (pImage->pDescData)
2481 {
2482 /* Separate descriptor file. */
2483 uOffset = 0;
2484 cbLimit = 0;
2485 pDescFile = pImage->pFile;
2486 }
2487 else
2488 {
2489 /* Embedded descriptor file. */
2490 uOffset = VMDK_SECTOR2BYTE(pImage->pExtents[0].uDescriptorSector);
2491 cbLimit = VMDK_SECTOR2BYTE(pImage->pExtents[0].cDescriptorSectors);
2492 pDescFile = pImage->pExtents[0].pFile;
2493 }
2494 /* Bail out if there is no file to write to. */
2495 if (pDescFile == NULL)
2496 return VERR_INVALID_PARAMETER;
2497
2498 /*
2499 * Allocate temporary descriptor buffer.
2500 * In case there is no limit allocate a default
2501 * and increase if required.
2502 */
2503 size_t cbDescriptor = cbLimit ? cbLimit : 4 * _1K;
2504 char *pszDescriptor = (char *)RTMemAllocZ(cbDescriptor);
2505 unsigned offDescriptor = 0;
2506
2507 if (!pszDescriptor)
2508 return VERR_NO_MEMORY;
2509
2510 for (unsigned i = 0; i < pImage->Descriptor.cLines; i++)
2511 {
2512 const char *psz = pImage->Descriptor.aLines[i];
2513 size_t cb = strlen(psz);
2514
2515 /*
2516 * Increase the descriptor if there is no limit and
2517 * there is not enough room left for this line.
2518 */
2519 if (offDescriptor + cb + 1 > cbDescriptor)
2520 {
2521 if (cbLimit)
2522 {
2523 rc = vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too long in '%s'"), pImage->pszFilename);
2524 break;
2525 }
2526 else
2527 {
2528 char *pszDescriptorNew = NULL;
2529 LogFlow(("Increasing descriptor cache\n"));
2530
2531 pszDescriptorNew = (char *)RTMemRealloc(pszDescriptor, cbDescriptor + cb + 4 * _1K);
2532 if (!pszDescriptorNew)
2533 {
2534 rc = VERR_NO_MEMORY;
2535 break;
2536 }
2537 pszDescriptorNew = pszDescriptor;
2538 cbDescriptor += cb + 4 * _1K;
2539 }
2540 }
2541
2542 if (cb > 0)
2543 {
2544 memcpy(pszDescriptor + offDescriptor, psz, cb);
2545 offDescriptor += cb;
2546 }
2547
2548 memcpy(pszDescriptor + offDescriptor, "\n", 1);
2549 offDescriptor++;
2550 }
2551
2552 if (RT_SUCCESS(rc))
2553 {
2554 rc = vmdkFileWriteSync(pImage, pDescFile, uOffset, pszDescriptor, cbLimit ? cbLimit : offDescriptor, NULL);
2555 if (RT_FAILURE(rc))
2556 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
2557 }
2558
2559 if (RT_SUCCESS(rc) && !cbLimit)
2560 {
2561 rc = vmdkFileSetSize(pImage, pDescFile, offDescriptor);
2562 if (RT_FAILURE(rc))
2563 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
2564 }
2565
2566 if (RT_SUCCESS(rc))
2567 pImage->Descriptor.fDirty = false;
2568
2569 RTMemFree(pszDescriptor);
2570 return rc;
2571}
2572
2573/**
2574 * Internal: write/update the descriptor part of the image - async version.
2575 */
2576static int vmdkWriteDescriptorAsync(PVMDKIMAGE pImage, PVDIOCTX pIoCtx)
2577{
2578 int rc = VINF_SUCCESS;
2579 uint64_t cbLimit;
2580 uint64_t uOffset;
2581 PVMDKFILE pDescFile;
2582
2583 if (pImage->pDescData)
2584 {
2585 /* Separate descriptor file. */
2586 uOffset = 0;
2587 cbLimit = 0;
2588 pDescFile = pImage->pFile;
2589 }
2590 else
2591 {
2592 /* Embedded descriptor file. */
2593 uOffset = VMDK_SECTOR2BYTE(pImage->pExtents[0].uDescriptorSector);
2594 cbLimit = VMDK_SECTOR2BYTE(pImage->pExtents[0].cDescriptorSectors);
2595 pDescFile = pImage->pExtents[0].pFile;
2596 }
2597 /* Bail out if there is no file to write to. */
2598 if (pDescFile == NULL)
2599 return VERR_INVALID_PARAMETER;
2600
2601 /*
2602 * Allocate temporary descriptor buffer.
2603 * In case there is no limit allocate a default
2604 * and increase if required.
2605 */
2606 size_t cbDescriptor = cbLimit ? cbLimit : 4 * _1K;
2607 char *pszDescriptor = (char *)RTMemAllocZ(cbDescriptor);
2608 unsigned offDescriptor = 0;
2609
2610 if (!pszDescriptor)
2611 return VERR_NO_MEMORY;
2612
2613 for (unsigned i = 0; i < pImage->Descriptor.cLines; i++)
2614 {
2615 const char *psz = pImage->Descriptor.aLines[i];
2616 size_t cb = strlen(psz);
2617
2618 /*
2619 * Increase the descriptor if there is no limit and
2620 * there is not enough room left for this line.
2621 */
2622 if (offDescriptor + cb + 1 > cbDescriptor)
2623 {
2624 if (cbLimit)
2625 {
2626 rc = vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too long in '%s'"), pImage->pszFilename);
2627 break;
2628 }
2629 else
2630 {
2631 char *pszDescriptorNew = NULL;
2632 LogFlow(("Increasing descriptor cache\n"));
2633
2634 pszDescriptorNew = (char *)RTMemRealloc(pszDescriptor, cbDescriptor + cb + 4 * _1K);
2635 if (!pszDescriptorNew)
2636 {
2637 rc = VERR_NO_MEMORY;
2638 break;
2639 }
2640 pszDescriptorNew = pszDescriptor;
2641 cbDescriptor += cb + 4 * _1K;
2642 }
2643 }
2644
2645 if (cb > 0)
2646 {
2647 memcpy(pszDescriptor + offDescriptor, psz, cb);
2648 offDescriptor += cb;
2649 }
2650
2651 memcpy(pszDescriptor + offDescriptor, "\n", 1);
2652 offDescriptor++;
2653 }
2654
2655 if (RT_SUCCESS(rc))
2656 {
2657 rc = vmdkFileWriteMetaAsync(pImage, pDescFile, uOffset, pszDescriptor, cbLimit ? cbLimit : offDescriptor, pIoCtx, NULL, NULL);
2658 if ( RT_FAILURE(rc)
2659 && rc != VERR_VD_ASYNC_IO_IN_PROGRESS)
2660 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
2661 }
2662
2663 if (RT_SUCCESS(rc) && !cbLimit)
2664 {
2665 rc = vmdkFileSetSize(pImage, pDescFile, offDescriptor);
2666 if (RT_FAILURE(rc))
2667 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
2668 }
2669
2670 if (RT_SUCCESS(rc))
2671 pImage->Descriptor.fDirty = false;
2672
2673 RTMemFree(pszDescriptor);
2674 return rc;
2675
2676}
2677
2678/**
2679 * Internal: validate the consistency check values in a binary header.
2680 */
2681static int vmdkValidateHeader(PVMDKIMAGE pImage, PVMDKEXTENT pExtent, const SparseExtentHeader *pHeader)
2682{
2683 int rc = VINF_SUCCESS;
2684 if (RT_LE2H_U32(pHeader->magicNumber) != VMDK_SPARSE_MAGICNUMBER)
2685 {
2686 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect magic in sparse extent header in '%s'"), pExtent->pszFullname);
2687 return rc;
2688 }
2689 if (RT_LE2H_U32(pHeader->version) != 1 && RT_LE2H_U32(pHeader->version) != 3)
2690 {
2691 rc = vmdkError(pImage, VERR_VD_VMDK_UNSUPPORTED_VERSION, RT_SRC_POS, N_("VMDK: incorrect version in sparse extent header in '%s', not a VMDK 1.0/1.1 conforming file"), pExtent->pszFullname);
2692 return rc;
2693 }
2694 if ( (RT_LE2H_U32(pHeader->flags) & 1)
2695 && ( pHeader->singleEndLineChar != '\n'
2696 || pHeader->nonEndLineChar != ' '
2697 || pHeader->doubleEndLineChar1 != '\r'
2698 || pHeader->doubleEndLineChar2 != '\n') )
2699 {
2700 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: corrupted by CR/LF translation in '%s'"), pExtent->pszFullname);
2701 return rc;
2702 }
2703 return rc;
2704}
2705
2706/**
2707 * Internal: read metadata belonging to an extent with binary header, i.e.
2708 * as found in monolithic files.
2709 */
2710static int vmdkReadBinaryMetaExtent(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
2711 bool fMagicAlreadyRead)
2712{
2713 SparseExtentHeader Header;
2714 uint64_t cSectorsPerGDE;
2715 uint64_t cbFile = 0;
2716 int rc;
2717
2718 if (fMagicAlreadyRead)
2719 rc = vmdkFileReadSync(pImage, pExtent->pFile, 0, &Header,
2720 sizeof(Header), NULL);
2721 else
2722 {
2723 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
2724 rc = vmdkFileReadSync(pImage, pExtent->pFile,
2725 RT_OFFSETOF(SparseExtentHeader, version),
2726 &Header.version,
2727 sizeof(Header)
2728 - RT_OFFSETOF(SparseExtentHeader, version),
2729 NULL);
2730 }
2731 AssertRC(rc);
2732 if (RT_FAILURE(rc))
2733 {
2734 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading extent header in '%s'"), pExtent->pszFullname);
2735 goto out;
2736 }
2737 rc = vmdkValidateHeader(pImage, pExtent, &Header);
2738 if (RT_FAILURE(rc))
2739 goto out;
2740
2741 if ( RT_LE2H_U32(Header.flags & RT_BIT(17))
2742 && RT_LE2H_U64(Header.gdOffset) == VMDK_GD_AT_END)
2743 pExtent->fFooter = true;
2744
2745 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2746 || ( pExtent->fFooter
2747 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
2748 {
2749 rc = vmdkFileGetSize(pImage, pExtent->pFile, &cbFile);
2750 AssertRC(rc);
2751 if (RT_FAILURE(rc))
2752 {
2753 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot get size of '%s'"), pExtent->pszFullname);
2754 goto out;
2755 }
2756 }
2757
2758 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
2759 pExtent->uAppendPosition = RT_ALIGN_64(cbFile, 512);
2760
2761 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2762 || ( pExtent->fFooter
2763 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
2764 {
2765 /* Read the footer, which comes before the end-of-stream marker. */
2766 rc = vmdkFileReadSync(pImage, pExtent->pFile,
2767 cbFile - 2*512, &Header,
2768 sizeof(Header), NULL);
2769 AssertRC(rc);
2770 if (RT_FAILURE(rc))
2771 {
2772 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading extent footer in '%s'"), pExtent->pszFullname);
2773 goto out;
2774 }
2775 rc = vmdkValidateHeader(pImage, pExtent, &Header);
2776 if (RT_FAILURE(rc))
2777 goto out;
2778 /* Prohibit any writes to this extent. */
2779 pExtent->uAppendPosition = 0;
2780 }
2781
2782 pExtent->uVersion = RT_LE2H_U32(Header.version);
2783 pExtent->enmType = VMDKETYPE_HOSTED_SPARSE; /* Just dummy value, changed later. */
2784 pExtent->cSectors = RT_LE2H_U64(Header.capacity);
2785 pExtent->cSectorsPerGrain = RT_LE2H_U64(Header.grainSize);
2786 pExtent->uDescriptorSector = RT_LE2H_U64(Header.descriptorOffset);
2787 pExtent->cDescriptorSectors = RT_LE2H_U64(Header.descriptorSize);
2788 if (pExtent->uDescriptorSector && !pExtent->cDescriptorSectors)
2789 {
2790 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent embedded descriptor config in '%s'"), pExtent->pszFullname);
2791 goto out;
2792 }
2793 pExtent->cGTEntries = RT_LE2H_U32(Header.numGTEsPerGT);
2794 if (RT_LE2H_U32(Header.flags) & RT_BIT(1))
2795 {
2796 pExtent->uSectorRGD = RT_LE2H_U64(Header.rgdOffset);
2797 pExtent->uSectorGD = RT_LE2H_U64(Header.gdOffset);
2798 }
2799 else
2800 {
2801 pExtent->uSectorGD = RT_LE2H_U64(Header.gdOffset);
2802 pExtent->uSectorRGD = 0;
2803 }
2804 if ( ( pExtent->uSectorGD == VMDK_GD_AT_END
2805 || pExtent->uSectorRGD == VMDK_GD_AT_END)
2806 && ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2807 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
2808 {
2809 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot resolve grain directory offset in '%s'"), pExtent->pszFullname);
2810 goto out;
2811 }
2812 pExtent->cOverheadSectors = RT_LE2H_U64(Header.overHead);
2813 pExtent->fUncleanShutdown = !!Header.uncleanShutdown;
2814 pExtent->uCompression = RT_LE2H_U16(Header.compressAlgorithm);
2815 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
2816 if (!cSectorsPerGDE || cSectorsPerGDE > UINT32_MAX)
2817 {
2818 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect grain directory size in '%s'"), pExtent->pszFullname);
2819 goto out;
2820 }
2821 pExtent->cSectorsPerGDE = cSectorsPerGDE;
2822 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
2823
2824 /* Fix up the number of descriptor sectors, as some flat images have
2825 * really just one, and this causes failures when inserting the UUID
2826 * values and other extra information. */
2827 if (pExtent->cDescriptorSectors != 0 && pExtent->cDescriptorSectors < 4)
2828 {
2829 /* Do it the easy way - just fix it for flat images which have no
2830 * other complicated metadata which needs space too. */
2831 if ( pExtent->uDescriptorSector + 4 < pExtent->cOverheadSectors
2832 && pExtent->cGTEntries * pExtent->cGDEntries == 0)
2833 pExtent->cDescriptorSectors = 4;
2834 }
2835
2836out:
2837 if (RT_FAILURE(rc))
2838 vmdkFreeExtentData(pImage, pExtent, false);
2839
2840 return rc;
2841}
2842
2843/**
2844 * Internal: read additional metadata belonging to an extent. For those
2845 * extents which have no additional metadata just verify the information.
2846 */
2847static int vmdkReadMetaExtent(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
2848{
2849 int rc = VINF_SUCCESS;
2850
2851/* disabled the check as there are too many truncated vmdk images out there */
2852#ifdef VBOX_WITH_VMDK_STRICT_SIZE_CHECK
2853 uint64_t cbExtentSize;
2854 /* The image must be a multiple of a sector in size and contain the data
2855 * area (flat images only). If not, it means the image is at least
2856 * truncated, or even seriously garbled. */
2857 rc = vmdkFileGetSize(pImage, pExtent->pFile, &cbExtentSize);
2858 if (RT_FAILURE(rc))
2859 {
2860 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting size in '%s'"), pExtent->pszFullname);
2861 goto out;
2862 }
2863 if ( cbExtentSize != RT_ALIGN_64(cbExtentSize, 512)
2864 && (pExtent->enmType != VMDKETYPE_FLAT || pExtent->cNominalSectors + pExtent->uSectorOffset > VMDK_BYTE2SECTOR(cbExtentSize)))
2865 {
2866 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: file size is not a multiple of 512 in '%s', file is truncated or otherwise garbled"), pExtent->pszFullname);
2867 goto out;
2868 }
2869#endif /* VBOX_WITH_VMDK_STRICT_SIZE_CHECK */
2870 if (pExtent->enmType != VMDKETYPE_HOSTED_SPARSE)
2871 goto out;
2872
2873 /* The spec says that this must be a power of two and greater than 8,
2874 * but probably they meant not less than 8. */
2875 if ( (pExtent->cSectorsPerGrain & (pExtent->cSectorsPerGrain - 1))
2876 || pExtent->cSectorsPerGrain < 8)
2877 {
2878 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: invalid extent grain size %u in '%s'"), pExtent->cSectorsPerGrain, pExtent->pszFullname);
2879 goto out;
2880 }
2881
2882 /* This code requires that a grain table must hold a power of two multiple
2883 * of the number of entries per GT cache entry. */
2884 if ( (pExtent->cGTEntries & (pExtent->cGTEntries - 1))
2885 || pExtent->cGTEntries < VMDK_GT_CACHELINE_SIZE)
2886 {
2887 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: grain table cache size problem in '%s'"), pExtent->pszFullname);
2888 goto out;
2889 }
2890
2891 rc = vmdkAllocStreamBuffers(pImage, pExtent);
2892 if (RT_FAILURE(rc))
2893 goto out;
2894
2895 /* Prohibit any writes to this streamOptimized extent. */
2896 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2897 pExtent->uAppendPosition = 0;
2898
2899 if ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2900 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2901 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
2902 rc = vmdkReadGrainDirectory(pImage, pExtent);
2903 else
2904 {
2905 pExtent->uGrainSectorAbs = pExtent->cOverheadSectors;
2906 pExtent->cbGrainStreamRead = 0;
2907 }
2908
2909out:
2910 if (RT_FAILURE(rc))
2911 vmdkFreeExtentData(pImage, pExtent, false);
2912
2913 return rc;
2914}
2915
2916/**
2917 * Internal: write/update the metadata for a sparse extent.
2918 */
2919static int vmdkWriteMetaSparseExtent(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
2920 uint64_t uOffset)
2921{
2922 SparseExtentHeader Header;
2923
2924 memset(&Header, '\0', sizeof(Header));
2925 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
2926 Header.version = RT_H2LE_U32(pExtent->uVersion);
2927 Header.flags = RT_H2LE_U32(RT_BIT(0));
2928 if (pExtent->pRGD)
2929 Header.flags |= RT_H2LE_U32(RT_BIT(1));
2930 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2931 Header.flags |= RT_H2LE_U32(RT_BIT(16) | RT_BIT(17));
2932 Header.capacity = RT_H2LE_U64(pExtent->cSectors);
2933 Header.grainSize = RT_H2LE_U64(pExtent->cSectorsPerGrain);
2934 Header.descriptorOffset = RT_H2LE_U64(pExtent->uDescriptorSector);
2935 Header.descriptorSize = RT_H2LE_U64(pExtent->cDescriptorSectors);
2936 Header.numGTEsPerGT = RT_H2LE_U32(pExtent->cGTEntries);
2937 if (pExtent->fFooter && uOffset == 0)
2938 {
2939 if (pExtent->pRGD)
2940 {
2941 Assert(pExtent->uSectorRGD);
2942 Header.rgdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2943 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2944 }
2945 else
2946 {
2947 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2948 }
2949 }
2950 else
2951 {
2952 if (pExtent->pRGD)
2953 {
2954 Assert(pExtent->uSectorRGD);
2955 Header.rgdOffset = RT_H2LE_U64(pExtent->uSectorRGD);
2956 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
2957 }
2958 else
2959 {
2960 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
2961 }
2962 }
2963 Header.overHead = RT_H2LE_U64(pExtent->cOverheadSectors);
2964 Header.uncleanShutdown = pExtent->fUncleanShutdown;
2965 Header.singleEndLineChar = '\n';
2966 Header.nonEndLineChar = ' ';
2967 Header.doubleEndLineChar1 = '\r';
2968 Header.doubleEndLineChar2 = '\n';
2969 Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression);
2970
2971 int rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOffset, &Header, sizeof(Header), NULL);
2972 AssertRC(rc);
2973 if (RT_FAILURE(rc))
2974 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
2975 return rc;
2976}
2977
2978/**
2979 * Internal: write/update the metadata for a sparse extent - async version.
2980 */
2981static int vmdkWriteMetaSparseExtentAsync(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
2982 uint64_t uOffset, PVDIOCTX pIoCtx)
2983{
2984 SparseExtentHeader Header;
2985
2986 memset(&Header, '\0', sizeof(Header));
2987 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
2988 Header.version = RT_H2LE_U32(pExtent->uVersion);
2989 Header.flags = RT_H2LE_U32(RT_BIT(0));
2990 if (pExtent->pRGD)
2991 Header.flags |= RT_H2LE_U32(RT_BIT(1));
2992 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2993 Header.flags |= RT_H2LE_U32(RT_BIT(16) | RT_BIT(17));
2994 Header.capacity = RT_H2LE_U64(pExtent->cSectors);
2995 Header.grainSize = RT_H2LE_U64(pExtent->cSectorsPerGrain);
2996 Header.descriptorOffset = RT_H2LE_U64(pExtent->uDescriptorSector);
2997 Header.descriptorSize = RT_H2LE_U64(pExtent->cDescriptorSectors);
2998 Header.numGTEsPerGT = RT_H2LE_U32(pExtent->cGTEntries);
2999 if (pExtent->fFooter && uOffset == 0)
3000 {
3001 if (pExtent->pRGD)
3002 {
3003 Assert(pExtent->uSectorRGD);
3004 Header.rgdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
3005 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
3006 }
3007 else
3008 {
3009 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
3010 }
3011 }
3012 else
3013 {
3014 if (pExtent->pRGD)
3015 {
3016 Assert(pExtent->uSectorRGD);
3017 Header.rgdOffset = RT_H2LE_U64(pExtent->uSectorRGD);
3018 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
3019 }
3020 else
3021 {
3022 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
3023 }
3024 }
3025 Header.overHead = RT_H2LE_U64(pExtent->cOverheadSectors);
3026 Header.uncleanShutdown = pExtent->fUncleanShutdown;
3027 Header.singleEndLineChar = '\n';
3028 Header.nonEndLineChar = ' ';
3029 Header.doubleEndLineChar1 = '\r';
3030 Header.doubleEndLineChar2 = '\n';
3031 Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression);
3032
3033 int rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
3034 uOffset, &Header, sizeof(Header),
3035 pIoCtx, NULL, NULL);
3036 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
3037 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
3038 return rc;
3039}
3040
3041#ifdef VBOX_WITH_VMDK_ESX
3042/**
3043 * Internal: unused code to read the metadata of a sparse ESX extent.
3044 *
3045 * Such extents never leave ESX server, so this isn't ever used.
3046 */
3047static int vmdkReadMetaESXSparseExtent(PVMDKEXTENT pExtent)
3048{
3049 COWDisk_Header Header;
3050 uint64_t cSectorsPerGDE;
3051
3052 int rc = vmdkFileReadSync(pImage, pExtent->pFile, 0, &Header, sizeof(Header), NULL);
3053 AssertRC(rc);
3054 if (RT_FAILURE(rc))
3055 goto out;
3056 if ( RT_LE2H_U32(Header.magicNumber) != VMDK_ESX_SPARSE_MAGICNUMBER
3057 || RT_LE2H_U32(Header.version) != 1
3058 || RT_LE2H_U32(Header.flags) != 3)
3059 {
3060 rc = VERR_VD_VMDK_INVALID_HEADER;
3061 goto out;
3062 }
3063 pExtent->enmType = VMDKETYPE_ESX_SPARSE;
3064 pExtent->cSectors = RT_LE2H_U32(Header.numSectors);
3065 pExtent->cSectorsPerGrain = RT_LE2H_U32(Header.grainSize);
3066 /* The spec says that this must be between 1 sector and 1MB. This code
3067 * assumes it's a power of two, so check that requirement, too. */
3068 if ( (pExtent->cSectorsPerGrain & (pExtent->cSectorsPerGrain - 1))
3069 || pExtent->cSectorsPerGrain == 0
3070 || pExtent->cSectorsPerGrain > 2048)
3071 {
3072 rc = VERR_VD_VMDK_INVALID_HEADER;
3073 goto out;
3074 }
3075 pExtent->uDescriptorSector = 0;
3076 pExtent->cDescriptorSectors = 0;
3077 pExtent->uSectorGD = RT_LE2H_U32(Header.gdOffset);
3078 pExtent->uSectorRGD = 0;
3079 pExtent->cOverheadSectors = 0;
3080 pExtent->cGTEntries = 4096;
3081 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
3082 if (!cSectorsPerGDE || cSectorsPerGDE > UINT32_MAX)
3083 {
3084 rc = VERR_VD_VMDK_INVALID_HEADER;
3085 goto out;
3086 }
3087 pExtent->cSectorsPerGDE = cSectorsPerGDE;
3088 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
3089 if (pExtent->cGDEntries != RT_LE2H_U32(Header.numGDEntries))
3090 {
3091 /* Inconsistency detected. Computed number of GD entries doesn't match
3092 * stored value. Better be safe than sorry. */
3093 rc = VERR_VD_VMDK_INVALID_HEADER;
3094 goto out;
3095 }
3096 pExtent->uFreeSector = RT_LE2H_U32(Header.freeSector);
3097 pExtent->fUncleanShutdown = !!Header.uncleanShutdown;
3098
3099 rc = vmdkReadGrainDirectory(pImage, pExtent);
3100
3101out:
3102 if (RT_FAILURE(rc))
3103 vmdkFreeExtentData(pImage, pExtent, false);
3104
3105 return rc;
3106}
3107#endif /* VBOX_WITH_VMDK_ESX */
3108
3109/**
3110 * Internal: free the buffers used for streamOptimized images.
3111 */
3112static void vmdkFreeStreamBuffers(PVMDKEXTENT pExtent)
3113{
3114 if (pExtent->pvCompGrain)
3115 {
3116 RTMemFree(pExtent->pvCompGrain);
3117 pExtent->pvCompGrain = NULL;
3118 }
3119 if (pExtent->pvGrain)
3120 {
3121 RTMemFree(pExtent->pvGrain);
3122 pExtent->pvGrain = NULL;
3123 }
3124}
3125
3126/**
3127 * Internal: free the memory used by the extent data structure, optionally
3128 * deleting the referenced files.
3129 */
3130static void vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
3131 bool fDelete)
3132{
3133 vmdkFreeGrainDirectory(pExtent);
3134 if (pExtent->pDescData)
3135 {
3136 RTMemFree(pExtent->pDescData);
3137 pExtent->pDescData = NULL;
3138 }
3139 if (pExtent->pFile != NULL)
3140 {
3141 /* Do not delete raw extents, these have full and base names equal. */
3142 vmdkFileClose(pImage, &pExtent->pFile,
3143 fDelete
3144 && pExtent->pszFullname
3145 && strcmp(pExtent->pszFullname, pExtent->pszBasename));
3146 }
3147 if (pExtent->pszBasename)
3148 {
3149 RTMemTmpFree((void *)pExtent->pszBasename);
3150 pExtent->pszBasename = NULL;
3151 }
3152 if (pExtent->pszFullname)
3153 {
3154 RTStrFree((char *)(void *)pExtent->pszFullname);
3155 pExtent->pszFullname = NULL;
3156 }
3157 vmdkFreeStreamBuffers(pExtent);
3158}
3159
3160/**
3161 * Internal: allocate grain table cache if necessary for this image.
3162 */
3163static int vmdkAllocateGrainTableCache(PVMDKIMAGE pImage)
3164{
3165 PVMDKEXTENT pExtent;
3166
3167 /* Allocate grain table cache if any sparse extent is present. */
3168 for (unsigned i = 0; i < pImage->cExtents; i++)
3169 {
3170 pExtent = &pImage->pExtents[i];
3171 if ( pExtent->enmType == VMDKETYPE_HOSTED_SPARSE
3172#ifdef VBOX_WITH_VMDK_ESX
3173 || pExtent->enmType == VMDKETYPE_ESX_SPARSE
3174#endif /* VBOX_WITH_VMDK_ESX */
3175 )
3176 {
3177 /* Allocate grain table cache. */
3178 pImage->pGTCache = (PVMDKGTCACHE)RTMemAllocZ(sizeof(VMDKGTCACHE));
3179 if (!pImage->pGTCache)
3180 return VERR_NO_MEMORY;
3181 for (unsigned j = 0; j < VMDK_GT_CACHE_SIZE; j++)
3182 {
3183 PVMDKGTCACHEENTRY pGCE = &pImage->pGTCache->aGTCache[j];
3184 pGCE->uExtent = UINT32_MAX;
3185 }
3186 pImage->pGTCache->cEntries = VMDK_GT_CACHE_SIZE;
3187 break;
3188 }
3189 }
3190
3191 return VINF_SUCCESS;
3192}
3193
3194/**
3195 * Internal: allocate the given number of extents.
3196 */
3197static int vmdkCreateExtents(PVMDKIMAGE pImage, unsigned cExtents)
3198{
3199 int rc = VINF_SUCCESS;
3200 PVMDKEXTENT pExtents = (PVMDKEXTENT)RTMemAllocZ(cExtents * sizeof(VMDKEXTENT));
3201 if (pImage)
3202 {
3203 for (unsigned i = 0; i < cExtents; i++)
3204 {
3205 pExtents[i].pFile = NULL;
3206 pExtents[i].pszBasename = NULL;
3207 pExtents[i].pszFullname = NULL;
3208 pExtents[i].pGD = NULL;
3209 pExtents[i].pRGD = NULL;
3210 pExtents[i].pDescData = NULL;
3211 pExtents[i].uVersion = 1;
3212 pExtents[i].uCompression = VMDK_COMPRESSION_NONE;
3213 pExtents[i].uExtent = i;
3214 pExtents[i].pImage = pImage;
3215 }
3216 pImage->pExtents = pExtents;
3217 pImage->cExtents = cExtents;
3218 }
3219 else
3220 rc = VERR_NO_MEMORY;
3221
3222 return rc;
3223}
3224
3225/**
3226 * Internal: Open an image, constructing all necessary data structures.
3227 */
3228static int vmdkOpenImage(PVMDKIMAGE pImage, unsigned uOpenFlags)
3229{
3230 int rc;
3231 uint32_t u32Magic;
3232 PVMDKFILE pFile;
3233 PVMDKEXTENT pExtent;
3234
3235 pImage->uOpenFlags = uOpenFlags;
3236
3237 /* Try to get error interface. */
3238 pImage->pInterfaceError = VDInterfaceGet(pImage->pVDIfsDisk, VDINTERFACETYPE_ERROR);
3239 if (pImage->pInterfaceError)
3240 pImage->pInterfaceErrorCallbacks = VDGetInterfaceError(pImage->pInterfaceError);
3241
3242 /* Get I/O interface. */
3243 pImage->pInterfaceIO = VDInterfaceGet(pImage->pVDIfsImage, VDINTERFACETYPE_IOINT);
3244 AssertPtrReturn(pImage->pInterfaceIO, VERR_INVALID_PARAMETER);
3245 pImage->pInterfaceIOCallbacks = VDGetInterfaceIOInt(pImage->pInterfaceIO);
3246 AssertPtrReturn(pImage->pInterfaceIOCallbacks, VERR_INVALID_PARAMETER);
3247
3248 /*
3249 * Open the image.
3250 * We don't have to check for asynchronous access because
3251 * we only support raw access and the opened file is a description
3252 * file were no data is stored.
3253 */
3254
3255 rc = vmdkFileOpen(pImage, &pFile, pImage->pszFilename,
3256 VDOpenFlagsToFileOpenFlags(uOpenFlags, false /* fCreate */),
3257 false /* fAsyncIO */);
3258 if (RT_FAILURE(rc))
3259 {
3260 /* Do NOT signal an appropriate error here, as the VD layer has the
3261 * choice of retrying the open if it failed. */
3262 goto out;
3263 }
3264 pImage->pFile = pFile;
3265
3266 /* Read magic (if present). */
3267 rc = vmdkFileReadSync(pImage, pFile, 0, &u32Magic, sizeof(u32Magic), NULL);
3268 if (RT_FAILURE(rc))
3269 {
3270 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading the magic number in '%s'"), pImage->pszFilename);
3271 goto out;
3272 }
3273
3274 /* Handle the file according to its magic number. */
3275 if (RT_LE2H_U32(u32Magic) == VMDK_SPARSE_MAGICNUMBER)
3276 {
3277 /* It's a hosted single-extent image. */
3278 rc = vmdkCreateExtents(pImage, 1);
3279 if (RT_FAILURE(rc))
3280 goto out;
3281 /* The opened file is passed to the extent. No separate descriptor
3282 * file, so no need to keep anything open for the image. */
3283 pExtent = &pImage->pExtents[0];
3284 pExtent->pFile = pFile;
3285 pImage->pFile = NULL;
3286 pExtent->pszFullname = RTPathAbsDup(pImage->pszFilename);
3287 if (!pExtent->pszFullname)
3288 {
3289 rc = VERR_NO_MEMORY;
3290 goto out;
3291 }
3292 rc = vmdkReadBinaryMetaExtent(pImage, pExtent, false /* fMagicAlreadyRead */);
3293 if (RT_FAILURE(rc))
3294 goto out;
3295
3296 /* As we're dealing with a monolithic image here, there must
3297 * be a descriptor embedded in the image file. */
3298 if (!pExtent->uDescriptorSector || !pExtent->cDescriptorSectors)
3299 {
3300 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image without descriptor in '%s'"), pImage->pszFilename);
3301 goto out;
3302 }
3303 /* HACK: extend the descriptor if it is unusually small and it fits in
3304 * the unused space after the image header. Allows opening VMDK files
3305 * with extremely small descriptor in read/write mode. */
3306 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
3307 && pExtent->cDescriptorSectors < 3
3308 && (int64_t)pExtent->uSectorGD - pExtent->uDescriptorSector >= 4
3309 && (!pExtent->uSectorRGD || (int64_t)pExtent->uSectorRGD - pExtent->uDescriptorSector >= 4))
3310 {
3311 pExtent->cDescriptorSectors = 4;
3312 pExtent->fMetaDirty = true;
3313 }
3314 /* Read the descriptor from the extent. */
3315 pExtent->pDescData = (char *)RTMemAllocZ(VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors));
3316 if (!pExtent->pDescData)
3317 {
3318 rc = VERR_NO_MEMORY;
3319 goto out;
3320 }
3321 rc = vmdkFileReadSync(pImage, pExtent->pFile,
3322 VMDK_SECTOR2BYTE(pExtent->uDescriptorSector),
3323 pExtent->pDescData,
3324 VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors), NULL);
3325 AssertRC(rc);
3326 if (RT_FAILURE(rc))
3327 {
3328 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pExtent->pszFullname);
3329 goto out;
3330 }
3331
3332 rc = vmdkParseDescriptor(pImage, pExtent->pDescData,
3333 VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors));
3334 if (RT_FAILURE(rc))
3335 goto out;
3336
3337 rc = vmdkReadMetaExtent(pImage, pExtent);
3338 if (RT_FAILURE(rc))
3339 goto out;
3340
3341 /* Mark the extent as unclean if opened in read-write mode. */
3342 if ( !(uOpenFlags & VD_OPEN_FLAGS_READONLY)
3343 && !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
3344 {
3345 pExtent->fUncleanShutdown = true;
3346 pExtent->fMetaDirty = true;
3347 }
3348 }
3349 else
3350 {
3351 /* Allocate at least 10K, and make sure that there is 5K free space
3352 * in case new entries need to be added to the descriptor. Never
3353 * allocate more than 128K, because that's no valid descriptor file
3354 * and will result in the correct "truncated read" error handling. */
3355 uint64_t cbFileSize;
3356 rc = vmdkFileGetSize(pImage, pFile, &cbFileSize);
3357 if (RT_FAILURE(rc))
3358 goto out;
3359
3360 uint64_t cbSize = cbFileSize;
3361 if (cbSize % VMDK_SECTOR2BYTE(10))
3362 cbSize += VMDK_SECTOR2BYTE(20) - cbSize % VMDK_SECTOR2BYTE(10);
3363 else
3364 cbSize += VMDK_SECTOR2BYTE(10);
3365 cbSize = RT_MIN(cbSize, _128K);
3366 pImage->cbDescAlloc = RT_MAX(VMDK_SECTOR2BYTE(20), cbSize);
3367 pImage->pDescData = (char *)RTMemAllocZ(pImage->cbDescAlloc);
3368 if (!pImage->pDescData)
3369 {
3370 rc = VERR_NO_MEMORY;
3371 goto out;
3372 }
3373
3374 size_t cbRead;
3375 rc = vmdkFileReadSync(pImage, pImage->pFile, 0, pImage->pDescData,
3376 RT_MIN(pImage->cbDescAlloc, cbFileSize),
3377 &cbRead);
3378 if (RT_FAILURE(rc))
3379 {
3380 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pImage->pszFilename);
3381 goto out;
3382 }
3383 if (cbRead == pImage->cbDescAlloc)
3384 {
3385 /* Likely the read is truncated. Better fail a bit too early
3386 * (normally the descriptor is much smaller than our buffer). */
3387 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot read descriptor in '%s'"), pImage->pszFilename);
3388 goto out;
3389 }
3390
3391 rc = vmdkParseDescriptor(pImage, pImage->pDescData,
3392 pImage->cbDescAlloc);
3393 if (RT_FAILURE(rc))
3394 goto out;
3395
3396 /*
3397 * We have to check for the asynchronous open flag. The
3398 * extents are parsed and the type of all are known now.
3399 * Check if every extent is either FLAT or ZERO.
3400 */
3401 if (uOpenFlags & VD_OPEN_FLAGS_ASYNC_IO)
3402 {
3403 unsigned cFlatExtents = 0;
3404
3405 for (unsigned i = 0; i < pImage->cExtents; i++)
3406 {
3407 pExtent = &pImage->pExtents[i];
3408
3409 if (( pExtent->enmType != VMDKETYPE_FLAT
3410 && pExtent->enmType != VMDKETYPE_ZERO
3411 && pExtent->enmType != VMDKETYPE_VMFS)
3412 || ((pImage->pExtents[i].enmType == VMDKETYPE_FLAT) && (cFlatExtents > 0)))
3413 {
3414 /*
3415 * Opened image contains at least one none flat or zero extent.
3416 * Return error but don't set error message as the caller
3417 * has the chance to open in non async I/O mode.
3418 */
3419 rc = VERR_NOT_SUPPORTED;
3420 goto out;
3421 }
3422 if (pExtent->enmType == VMDKETYPE_FLAT)
3423 cFlatExtents++;
3424 }
3425 }
3426
3427 for (unsigned i = 0; i < pImage->cExtents; i++)
3428 {
3429 pExtent = &pImage->pExtents[i];
3430
3431 if (pExtent->pszBasename)
3432 {
3433 /* Hack to figure out whether the specified name in the
3434 * extent descriptor is absolute. Doesn't always work, but
3435 * should be good enough for now. */
3436 char *pszFullname;
3437 /** @todo implement proper path absolute check. */
3438 if (pExtent->pszBasename[0] == RTPATH_SLASH)
3439 {
3440 pszFullname = RTStrDup(pExtent->pszBasename);
3441 if (!pszFullname)
3442 {
3443 rc = VERR_NO_MEMORY;
3444 goto out;
3445 }
3446 }
3447 else
3448 {
3449 size_t cbDirname;
3450 char *pszDirname = RTStrDup(pImage->pszFilename);
3451 if (!pszDirname)
3452 {
3453 rc = VERR_NO_MEMORY;
3454 goto out;
3455 }
3456 RTPathStripFilename(pszDirname);
3457 cbDirname = strlen(pszDirname);
3458 rc = RTStrAPrintf(&pszFullname, "%s%c%s", pszDirname,
3459 RTPATH_SLASH, pExtent->pszBasename);
3460 RTStrFree(pszDirname);
3461 if (RT_FAILURE(rc))
3462 goto out;
3463 }
3464 pExtent->pszFullname = pszFullname;
3465 }
3466 else
3467 pExtent->pszFullname = NULL;
3468
3469 switch (pExtent->enmType)
3470 {
3471 case VMDKETYPE_HOSTED_SPARSE:
3472 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3473 VDOpenFlagsToFileOpenFlags(uOpenFlags,
3474 false /* fCreate */),
3475 false /* fAsyncIO */);
3476 if (RT_FAILURE(rc))
3477 {
3478 /* Do NOT signal an appropriate error here, as the VD
3479 * layer has the choice of retrying the open if it
3480 * failed. */
3481 goto out;
3482 }
3483 rc = vmdkReadBinaryMetaExtent(pImage, pExtent,
3484 true /* fMagicAlreadyRead */);
3485 if (RT_FAILURE(rc))
3486 goto out;
3487 rc = vmdkReadMetaExtent(pImage, pExtent);
3488 if (RT_FAILURE(rc))
3489 goto out;
3490
3491 /* Mark extent as unclean if opened in read-write mode. */
3492 if (!(uOpenFlags & VD_OPEN_FLAGS_READONLY))
3493 {
3494 pExtent->fUncleanShutdown = true;
3495 pExtent->fMetaDirty = true;
3496 }
3497 break;
3498 case VMDKETYPE_VMFS:
3499 case VMDKETYPE_FLAT:
3500 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3501 VDOpenFlagsToFileOpenFlags(uOpenFlags,
3502 false /* fCreate */),
3503 true /* fAsyncIO */);
3504 if (RT_FAILURE(rc))
3505 {
3506 /* Do NOT signal an appropriate error here, as the VD
3507 * layer has the choice of retrying the open if it
3508 * failed. */
3509 goto out;
3510 }
3511 break;
3512 case VMDKETYPE_ZERO:
3513 /* Nothing to do. */
3514 break;
3515 default:
3516 AssertMsgFailed(("unknown vmdk extent type %d\n", pExtent->enmType));
3517 }
3518 }
3519 }
3520
3521 /* Make sure this is not reached accidentally with an error status. */
3522 AssertRC(rc);
3523
3524 /* Determine PCHS geometry if not set. */
3525 if (pImage->PCHSGeometry.cCylinders == 0)
3526 {
3527 uint64_t cCylinders = VMDK_BYTE2SECTOR(pImage->cbSize)
3528 / pImage->PCHSGeometry.cHeads
3529 / pImage->PCHSGeometry.cSectors;
3530 pImage->PCHSGeometry.cCylinders = (unsigned)RT_MIN(cCylinders, 16383);
3531 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
3532 && !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
3533 {
3534 rc = vmdkDescSetPCHSGeometry(pImage, &pImage->PCHSGeometry);
3535 AssertRC(rc);
3536 }
3537 }
3538
3539 /* Update the image metadata now in case has changed. */
3540 rc = vmdkFlushImage(pImage);
3541 if (RT_FAILURE(rc))
3542 goto out;
3543
3544 /* Figure out a few per-image constants from the extents. */
3545 pImage->cbSize = 0;
3546 for (unsigned i = 0; i < pImage->cExtents; i++)
3547 {
3548 pExtent = &pImage->pExtents[i];
3549 if ( pExtent->enmType == VMDKETYPE_HOSTED_SPARSE
3550#ifdef VBOX_WITH_VMDK_ESX
3551 || pExtent->enmType == VMDKETYPE_ESX_SPARSE
3552#endif /* VBOX_WITH_VMDK_ESX */
3553 )
3554 {
3555 /* Here used to be a check whether the nominal size of an extent
3556 * is a multiple of the grain size. The spec says that this is
3557 * always the case, but unfortunately some files out there in the
3558 * wild violate the spec (e.g. ReactOS 0.3.1). */
3559 }
3560 pImage->cbSize += VMDK_SECTOR2BYTE(pExtent->cNominalSectors);
3561 }
3562
3563 for (unsigned i = 0; i < pImage->cExtents; i++)
3564 {
3565 pExtent = &pImage->pExtents[i];
3566 if ( pImage->pExtents[i].enmType == VMDKETYPE_FLAT
3567 || pImage->pExtents[i].enmType == VMDKETYPE_ZERO)
3568 {
3569 pImage->uImageFlags |= VD_IMAGE_FLAGS_FIXED;
3570 break;
3571 }
3572 }
3573
3574 if ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
3575 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
3576 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
3577 rc = vmdkAllocateGrainTableCache(pImage);
3578
3579out:
3580 if (RT_FAILURE(rc))
3581 vmdkFreeImage(pImage, false);
3582 return rc;
3583}
3584
3585/**
3586 * Internal: create VMDK images for raw disk/partition access.
3587 */
3588static int vmdkCreateRawImage(PVMDKIMAGE pImage, const PVBOXHDDRAW pRaw,
3589 uint64_t cbSize)
3590{
3591 int rc = VINF_SUCCESS;
3592 PVMDKEXTENT pExtent;
3593
3594 if (pRaw->fRawDisk)
3595 {
3596 /* Full raw disk access. This requires setting up a descriptor
3597 * file and open the (flat) raw disk. */
3598 rc = vmdkCreateExtents(pImage, 1);
3599 if (RT_FAILURE(rc))
3600 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
3601 pExtent = &pImage->pExtents[0];
3602 /* Create raw disk descriptor file. */
3603 rc = vmdkFileOpen(pImage, &pImage->pFile, pImage->pszFilename,
3604 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3605 true /* fCreate */),
3606 false /* fAsyncIO */);
3607 if (RT_FAILURE(rc))
3608 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
3609
3610 /* Set up basename for extent description. Cannot use StrDup. */
3611 size_t cbBasename = strlen(pRaw->pszRawDisk) + 1;
3612 char *pszBasename = (char *)RTMemTmpAlloc(cbBasename);
3613 if (!pszBasename)
3614 return VERR_NO_MEMORY;
3615 memcpy(pszBasename, pRaw->pszRawDisk, cbBasename);
3616 pExtent->pszBasename = pszBasename;
3617 /* For raw disks the full name is identical to the base name. */
3618 pExtent->pszFullname = RTStrDup(pszBasename);
3619 if (!pExtent->pszFullname)
3620 return VERR_NO_MEMORY;
3621 pExtent->enmType = VMDKETYPE_FLAT;
3622 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbSize);
3623 pExtent->uSectorOffset = 0;
3624 pExtent->enmAccess = VMDKACCESS_READWRITE;
3625 pExtent->fMetaDirty = false;
3626
3627 /* Open flat image, the raw disk. */
3628 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3629 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags & ~VD_OPEN_FLAGS_READONLY,
3630 false /* fCreate */),
3631 false /* fAsyncIO */);
3632 if (RT_FAILURE(rc))
3633 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not open raw disk file '%s'"), pExtent->pszFullname);
3634 }
3635 else
3636 {
3637 /* Raw partition access. This requires setting up a descriptor
3638 * file, write the partition information to a flat extent and
3639 * open all the (flat) raw disk partitions. */
3640
3641 /* First pass over the partition data areas to determine how many
3642 * extents we need. One data area can require up to 2 extents, as
3643 * it might be necessary to skip over unpartitioned space. */
3644 unsigned cExtents = 0;
3645 uint64_t uStart = 0;
3646 for (unsigned i = 0; i < pRaw->cPartDescs; i++)
3647 {
3648 PVBOXHDDRAWPARTDESC pPart = &pRaw->pPartDescs[i];
3649 if (uStart > pPart->uStart)
3650 return vmdkError(pImage, VERR_INVALID_PARAMETER, RT_SRC_POS, N_("VMDK: incorrect partition data area ordering set up by the caller in '%s'"), pImage->pszFilename);
3651
3652 if (uStart < pPart->uStart)
3653 cExtents++;
3654 uStart = pPart->uStart + pPart->cbData;
3655 cExtents++;
3656 }
3657 /* Another extent for filling up the rest of the image. */
3658 if (uStart != cbSize)
3659 cExtents++;
3660
3661 rc = vmdkCreateExtents(pImage, cExtents);
3662 if (RT_FAILURE(rc))
3663 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
3664
3665 /* Create raw partition descriptor file. */
3666 rc = vmdkFileOpen(pImage, &pImage->pFile, pImage->pszFilename,
3667 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3668 true /* fCreate */),
3669 false /* fAsyncIO */);
3670 if (RT_FAILURE(rc))
3671 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
3672
3673 /* Create base filename for the partition table extent. */
3674 /** @todo remove fixed buffer without creating memory leaks. */
3675 char pszPartition[1024];
3676 const char *pszBase = RTPathFilename(pImage->pszFilename);
3677 const char *pszExt = RTPathExt(pszBase);
3678 if (pszExt == NULL)
3679 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: invalid filename '%s'"), pImage->pszFilename);
3680 char *pszBaseBase = RTStrDup(pszBase);
3681 if (!pszBaseBase)
3682 return VERR_NO_MEMORY;
3683 RTPathStripExt(pszBaseBase);
3684 RTStrPrintf(pszPartition, sizeof(pszPartition), "%s-pt%s",
3685 pszBaseBase, pszExt);
3686 RTStrFree(pszBaseBase);
3687
3688 /* Second pass over the partitions, now define all extents. */
3689 uint64_t uPartOffset = 0;
3690 cExtents = 0;
3691 uStart = 0;
3692 for (unsigned i = 0; i < pRaw->cPartDescs; i++)
3693 {
3694 PVBOXHDDRAWPARTDESC pPart = &pRaw->pPartDescs[i];
3695 pExtent = &pImage->pExtents[cExtents++];
3696
3697 if (uStart < pPart->uStart)
3698 {
3699 pExtent->pszBasename = NULL;
3700 pExtent->pszFullname = NULL;
3701 pExtent->enmType = VMDKETYPE_ZERO;
3702 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->uStart - uStart);
3703 pExtent->uSectorOffset = 0;
3704 pExtent->enmAccess = VMDKACCESS_READWRITE;
3705 pExtent->fMetaDirty = false;
3706 /* go to next extent */
3707 pExtent = &pImage->pExtents[cExtents++];
3708 }
3709 uStart = pPart->uStart + pPart->cbData;
3710
3711 if (pPart->pvPartitionData)
3712 {
3713 /* Set up basename for extent description. Can't use StrDup. */
3714 size_t cbBasename = strlen(pszPartition) + 1;
3715 char *pszBasename = (char *)RTMemTmpAlloc(cbBasename);
3716 if (!pszBasename)
3717 return VERR_NO_MEMORY;
3718 memcpy(pszBasename, pszPartition, cbBasename);
3719 pExtent->pszBasename = pszBasename;
3720
3721 /* Set up full name for partition extent. */
3722 size_t cbDirname;
3723 char *pszDirname = RTStrDup(pImage->pszFilename);
3724 if (!pszDirname)
3725 return VERR_NO_MEMORY;
3726 RTPathStripFilename(pszDirname);
3727 cbDirname = strlen(pszDirname);
3728 char *pszFullname;
3729 rc = RTStrAPrintf(&pszFullname, "%s%c%s", pszDirname,
3730 RTPATH_SLASH, pExtent->pszBasename);
3731 RTStrFree(pszDirname);
3732 if (RT_FAILURE(rc))
3733 return rc;
3734 pExtent->pszFullname = pszFullname;
3735 pExtent->enmType = VMDKETYPE_FLAT;
3736 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->cbData);
3737 pExtent->uSectorOffset = uPartOffset;
3738 pExtent->enmAccess = VMDKACCESS_READWRITE;
3739 pExtent->fMetaDirty = false;
3740
3741 /* Create partition table flat image. */
3742 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3743 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3744 true /* fCreate */),
3745 false /* fAsyncIO */);
3746 if (RT_FAILURE(rc))
3747 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new partition data file '%s'"), pExtent->pszFullname);
3748 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
3749 VMDK_SECTOR2BYTE(uPartOffset),
3750 pPart->pvPartitionData,
3751 pPart->cbData, NULL);
3752 if (RT_FAILURE(rc))
3753 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not write partition data to '%s'"), pExtent->pszFullname);
3754 uPartOffset += VMDK_BYTE2SECTOR(pPart->cbData);
3755 }
3756 else
3757 {
3758 if (pPart->pszRawDevice)
3759 {
3760 /* Set up basename for extent descr. Can't use StrDup. */
3761 size_t cbBasename = strlen(pPart->pszRawDevice) + 1;
3762 char *pszBasename = (char *)RTMemTmpAlloc(cbBasename);
3763 if (!pszBasename)
3764 return VERR_NO_MEMORY;
3765 memcpy(pszBasename, pPart->pszRawDevice, cbBasename);
3766 pExtent->pszBasename = pszBasename;
3767 /* For raw disks full name is identical to base name. */
3768 pExtent->pszFullname = RTStrDup(pszBasename);
3769 if (!pExtent->pszFullname)
3770 return VERR_NO_MEMORY;
3771 pExtent->enmType = VMDKETYPE_FLAT;
3772 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->cbData);
3773 pExtent->uSectorOffset = VMDK_BYTE2SECTOR(pPart->uStartOffset);
3774 pExtent->enmAccess = VMDKACCESS_READWRITE;
3775 pExtent->fMetaDirty = false;
3776
3777 /* Open flat image, the raw partition. */
3778 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3779 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags & ~VD_OPEN_FLAGS_READONLY,
3780 false /* fCreate */),
3781 false /* fAsyncIO */);
3782 if (RT_FAILURE(rc))
3783 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not open raw partition file '%s'"), pExtent->pszFullname);
3784 }
3785 else
3786 {
3787 pExtent->pszBasename = NULL;
3788 pExtent->pszFullname = NULL;
3789 pExtent->enmType = VMDKETYPE_ZERO;
3790 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->cbData);
3791 pExtent->uSectorOffset = 0;
3792 pExtent->enmAccess = VMDKACCESS_READWRITE;
3793 pExtent->fMetaDirty = false;
3794 }
3795 }
3796 }
3797 /* Another extent for filling up the rest of the image. */
3798 if (uStart != cbSize)
3799 {
3800 pExtent = &pImage->pExtents[cExtents++];
3801 pExtent->pszBasename = NULL;
3802 pExtent->pszFullname = NULL;
3803 pExtent->enmType = VMDKETYPE_ZERO;
3804 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbSize - uStart);
3805 pExtent->uSectorOffset = 0;
3806 pExtent->enmAccess = VMDKACCESS_READWRITE;
3807 pExtent->fMetaDirty = false;
3808 }
3809 }
3810
3811 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
3812 pRaw->fRawDisk ?
3813 "fullDevice" : "partitionedDevice");
3814 if (RT_FAILURE(rc))
3815 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
3816 return rc;
3817}
3818
3819/**
3820 * Internal: create a regular (i.e. file-backed) VMDK image.
3821 */
3822static int vmdkCreateRegularImage(PVMDKIMAGE pImage, uint64_t cbSize,
3823 unsigned uImageFlags,
3824 PFNVDPROGRESS pfnProgress, void *pvUser,
3825 unsigned uPercentStart, unsigned uPercentSpan)
3826{
3827 int rc = VINF_SUCCESS;
3828 unsigned cExtents = 1;
3829 uint64_t cbOffset = 0;
3830 uint64_t cbRemaining = cbSize;
3831
3832 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_SPLIT_2G)
3833 {
3834 cExtents = cbSize / VMDK_2G_SPLIT_SIZE;
3835 /* Do proper extent computation: need one smaller extent if the total
3836 * size isn't evenly divisible by the split size. */
3837 if (cbSize % VMDK_2G_SPLIT_SIZE)
3838 cExtents++;
3839 }
3840 rc = vmdkCreateExtents(pImage, cExtents);
3841 if (RT_FAILURE(rc))
3842 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
3843
3844 /* Basename strings needed for constructing the extent names. */
3845 char *pszBasenameSubstr = RTPathFilename(pImage->pszFilename);
3846 AssertPtr(pszBasenameSubstr);
3847 size_t cbBasenameSubstr = strlen(pszBasenameSubstr) + 1;
3848
3849 /* Create searate descriptor file if necessary. */
3850 if (cExtents != 1 || (uImageFlags & VD_IMAGE_FLAGS_FIXED))
3851 {
3852 rc = vmdkFileOpen(pImage, &pImage->pFile, pImage->pszFilename,
3853 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3854 true /* fCreate */),
3855 false /* fAsyncIO */);
3856 if (RT_FAILURE(rc))
3857 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new sparse descriptor file '%s'"), pImage->pszFilename);
3858 }
3859 else
3860 pImage->pFile = NULL;
3861
3862 /* Set up all extents. */
3863 for (unsigned i = 0; i < cExtents; i++)
3864 {
3865 PVMDKEXTENT pExtent = &pImage->pExtents[i];
3866 uint64_t cbExtent = cbRemaining;
3867
3868 /* Set up fullname/basename for extent description. Cannot use StrDup
3869 * for basename, as it is not guaranteed that the memory can be freed
3870 * with RTMemTmpFree, which must be used as in other code paths
3871 * StrDup is not usable. */
3872 if (cExtents == 1 && !(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3873 {
3874 char *pszBasename = (char *)RTMemTmpAlloc(cbBasenameSubstr);
3875 if (!pszBasename)
3876 return VERR_NO_MEMORY;
3877 memcpy(pszBasename, pszBasenameSubstr, cbBasenameSubstr);
3878 pExtent->pszBasename = pszBasename;
3879 }
3880 else
3881 {
3882 char *pszBasenameExt = RTPathExt(pszBasenameSubstr);
3883 char *pszBasenameBase = RTStrDup(pszBasenameSubstr);
3884 RTPathStripExt(pszBasenameBase);
3885 char *pszTmp;
3886 size_t cbTmp;
3887 if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
3888 {
3889 if (cExtents == 1)
3890 rc = RTStrAPrintf(&pszTmp, "%s-flat%s", pszBasenameBase,
3891 pszBasenameExt);
3892 else
3893 rc = RTStrAPrintf(&pszTmp, "%s-f%03d%s", pszBasenameBase,
3894 i+1, pszBasenameExt);
3895 }
3896 else
3897 rc = RTStrAPrintf(&pszTmp, "%s-s%03d%s", pszBasenameBase, i+1,
3898 pszBasenameExt);
3899 RTStrFree(pszBasenameBase);
3900 if (RT_FAILURE(rc))
3901 return rc;
3902 cbTmp = strlen(pszTmp) + 1;
3903 char *pszBasename = (char *)RTMemTmpAlloc(cbTmp);
3904 if (!pszBasename)
3905 return VERR_NO_MEMORY;
3906 memcpy(pszBasename, pszTmp, cbTmp);
3907 RTStrFree(pszTmp);
3908 pExtent->pszBasename = pszBasename;
3909 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_SPLIT_2G)
3910 cbExtent = RT_MIN(cbRemaining, VMDK_2G_SPLIT_SIZE);
3911 }
3912 char *pszBasedirectory = RTStrDup(pImage->pszFilename);
3913 RTPathStripFilename(pszBasedirectory);
3914 char *pszFullname;
3915 rc = RTStrAPrintf(&pszFullname, "%s%c%s", pszBasedirectory,
3916 RTPATH_SLASH, pExtent->pszBasename);
3917 RTStrFree(pszBasedirectory);
3918 if (RT_FAILURE(rc))
3919 return rc;
3920 pExtent->pszFullname = pszFullname;
3921
3922 /* Create file for extent. */
3923 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3924 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3925 true /* fCreate */),
3926 false /* fAsyncIO */);
3927 if (RT_FAILURE(rc))
3928 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
3929 if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
3930 {
3931 rc = vmdkFileSetSize(pImage, pExtent->pFile, cbExtent);
3932 if (RT_FAILURE(rc))
3933 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set size of new file '%s'"), pExtent->pszFullname);
3934
3935 /* Fill image with zeroes. We do this for every fixed-size image since on some systems
3936 * (for example Windows Vista), it takes ages to write a block near the end of a sparse
3937 * file and the guest could complain about an ATA timeout. */
3938
3939 /** @todo Starting with Linux 2.6.23, there is an fallocate() system call.
3940 * Currently supported file systems are ext4 and ocfs2. */
3941
3942 /* Allocate a temporary zero-filled buffer. Use a bigger block size to optimize writing */
3943 const size_t cbBuf = 128 * _1K;
3944 void *pvBuf = RTMemTmpAllocZ(cbBuf);
3945 if (!pvBuf)
3946 return VERR_NO_MEMORY;
3947
3948 uint64_t uOff = 0;
3949 /* Write data to all image blocks. */
3950 while (uOff < cbExtent)
3951 {
3952 unsigned cbChunk = (unsigned)RT_MIN(cbExtent, cbBuf);
3953
3954 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOff, pvBuf, cbChunk, NULL);
3955 if (RT_FAILURE(rc))
3956 {
3957 RTMemFree(pvBuf);
3958 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: writing block failed for '%s'"), pImage->pszFilename);
3959 }
3960
3961 uOff += cbChunk;
3962
3963 if (pfnProgress)
3964 {
3965 rc = pfnProgress(pvUser,
3966 uPercentStart + uOff * uPercentSpan / cbExtent);
3967 if (RT_FAILURE(rc))
3968 {
3969 RTMemFree(pvBuf);
3970 return rc;
3971 }
3972 }
3973 }
3974 RTMemTmpFree(pvBuf);
3975 }
3976
3977 /* Place descriptor file information (where integrated). */
3978 if (cExtents == 1 && !(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3979 {
3980 pExtent->uDescriptorSector = 1;
3981 pExtent->cDescriptorSectors = VMDK_BYTE2SECTOR(pImage->cbDescAlloc);
3982 /* The descriptor is part of the (only) extent. */
3983 pExtent->pDescData = pImage->pDescData;
3984 pImage->pDescData = NULL;
3985 }
3986
3987 if (!(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3988 {
3989 uint64_t cSectorsPerGDE, cSectorsPerGD;
3990 pExtent->enmType = VMDKETYPE_HOSTED_SPARSE;
3991 pExtent->cSectors = VMDK_BYTE2SECTOR(RT_ALIGN_64(cbExtent, _64K));
3992 pExtent->cSectorsPerGrain = VMDK_BYTE2SECTOR(_64K);
3993 pExtent->cGTEntries = 512;
3994 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
3995 pExtent->cSectorsPerGDE = cSectorsPerGDE;
3996 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
3997 cSectorsPerGD = (pExtent->cGDEntries + (512 / sizeof(uint32_t) - 1)) / (512 / sizeof(uint32_t));
3998 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
3999 {
4000 /* The spec says version is 1 for all VMDKs, but the vast
4001 * majority of streamOptimized VMDKs actually contain
4002 * version 3 - so go with the majority. Both are acepted. */
4003 pExtent->uVersion = 3;
4004 pExtent->uCompression = VMDK_COMPRESSION_DEFLATE;
4005 }
4006 }
4007 else
4008 {
4009 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX)
4010 pExtent->enmType = VMDKETYPE_VMFS;
4011 else
4012 pExtent->enmType = VMDKETYPE_FLAT;
4013 }
4014
4015 pExtent->enmAccess = VMDKACCESS_READWRITE;
4016 pExtent->fUncleanShutdown = true;
4017 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbExtent);
4018 pExtent->uSectorOffset = 0;
4019 pExtent->fMetaDirty = true;
4020
4021 if (!(uImageFlags & VD_IMAGE_FLAGS_FIXED))
4022 {
4023 /* fPreAlloc should never be false because VMware can't use such images. */
4024 rc = vmdkCreateGrainDirectory(pImage, pExtent,
4025 RT_MAX( pExtent->uDescriptorSector
4026 + pExtent->cDescriptorSectors,
4027 1),
4028 true /* fPreAlloc */);
4029 if (RT_FAILURE(rc))
4030 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
4031 }
4032
4033 if (RT_SUCCESS(rc) && pfnProgress)
4034 pfnProgress(pvUser, uPercentStart + i * uPercentSpan / cExtents);
4035
4036 cbRemaining -= cbExtent;
4037 cbOffset += cbExtent;
4038 }
4039
4040 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX)
4041 {
4042 /* VirtualBox doesn't care, but VMWare ESX freaks out if the wrong
4043 * controller type is set in an image. */
4044 rc = vmdkDescDDBSetStr(pImage, &pImage->Descriptor, "ddb.adapterType", "lsilogic");
4045 if (RT_FAILURE(rc))
4046 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set controller type to lsilogic in '%s'"), pImage->pszFilename);
4047 }
4048
4049 const char *pszDescType = NULL;
4050 if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
4051 {
4052 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX)
4053 pszDescType = "vmfs";
4054 else
4055 pszDescType = (cExtents == 1)
4056 ? "monolithicFlat" : "twoGbMaxExtentFlat";
4057 }
4058 else
4059 {
4060 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4061 pszDescType = "streamOptimized";
4062 else
4063 {
4064 pszDescType = (cExtents == 1)
4065 ? "monolithicSparse" : "twoGbMaxExtentSparse";
4066 }
4067 }
4068 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
4069 pszDescType);
4070 if (RT_FAILURE(rc))
4071 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
4072 return rc;
4073}
4074
4075/**
4076 * Internal: Create a real stream optimized VMDK using only linear writes.
4077 */
4078static int vmdkCreateStreamImage(PVMDKIMAGE pImage, uint64_t cbSize,
4079 unsigned uImageFlags,
4080 PFNVDPROGRESS pfnProgress, void *pvUser,
4081 unsigned uPercentStart, unsigned uPercentSpan)
4082{
4083 int rc;
4084
4085 rc = vmdkCreateExtents(pImage, 1);
4086 if (RT_FAILURE(rc))
4087 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
4088
4089 /* Basename strings needed for constructing the extent names. */
4090 const char *pszBasenameSubstr = RTPathFilename(pImage->pszFilename);
4091 AssertPtr(pszBasenameSubstr);
4092 size_t cbBasenameSubstr = strlen(pszBasenameSubstr) + 1;
4093
4094 /* No separate descriptor file. */
4095 pImage->pFile = NULL;
4096
4097 /* Set up all extents. */
4098 PVMDKEXTENT pExtent = &pImage->pExtents[0];
4099
4100 /* Set up fullname/basename for extent description. Cannot use StrDup
4101 * for basename, as it is not guaranteed that the memory can be freed
4102 * with RTMemTmpFree, which must be used as in other code paths
4103 * StrDup is not usable. */
4104 char *pszBasename = (char *)RTMemTmpAlloc(cbBasenameSubstr);
4105 if (!pszBasename)
4106 return VERR_NO_MEMORY;
4107 memcpy(pszBasename, pszBasenameSubstr, cbBasenameSubstr);
4108 pExtent->pszBasename = pszBasename;
4109
4110 char *pszBasedirectory = RTStrDup(pImage->pszFilename);
4111 RTPathStripFilename(pszBasedirectory);
4112 char *pszFullname;
4113 rc = RTStrAPrintf(&pszFullname, "%s%c%s", pszBasedirectory,
4114 RTPATH_SLASH, pExtent->pszBasename);
4115 RTStrFree(pszBasedirectory);
4116 if (RT_FAILURE(rc))
4117 return rc;
4118 pExtent->pszFullname = pszFullname;
4119
4120 /* Create file for extent. */
4121 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
4122 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
4123 true /* fCreate */),
4124 false /* fAsyncIO */);
4125 if (RT_FAILURE(rc))
4126 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
4127
4128 /* Place descriptor file information. */
4129 pExtent->uDescriptorSector = 1;
4130 pExtent->cDescriptorSectors = VMDK_BYTE2SECTOR(pImage->cbDescAlloc);
4131 /* The descriptor is part of the (only) extent. */
4132 pExtent->pDescData = pImage->pDescData;
4133 pImage->pDescData = NULL;
4134
4135 uint64_t cSectorsPerGDE, cSectorsPerGD;
4136 pExtent->enmType = VMDKETYPE_HOSTED_SPARSE;
4137 pExtent->cSectors = VMDK_BYTE2SECTOR(RT_ALIGN_64(cbSize, _64K));
4138 pExtent->cSectorsPerGrain = VMDK_BYTE2SECTOR(_64K);
4139 pExtent->cGTEntries = 512;
4140 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
4141 pExtent->cSectorsPerGDE = cSectorsPerGDE;
4142 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
4143 cSectorsPerGD = (pExtent->cGDEntries + (512 / sizeof(uint32_t) - 1)) / (512 / sizeof(uint32_t));
4144
4145 /* The spec says version is 1 for all VMDKs, but the vast
4146 * majority of streamOptimized VMDKs actually contain
4147 * version 3 - so go with the majority. Both are acepted. */
4148 pExtent->uVersion = 3;
4149 pExtent->uCompression = VMDK_COMPRESSION_DEFLATE;
4150 pExtent->fFooter = true;
4151
4152 pExtent->enmAccess = VMDKACCESS_READONLY;
4153 pExtent->fUncleanShutdown = false;
4154 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbSize);
4155 pExtent->uSectorOffset = 0;
4156 pExtent->fMetaDirty = true;
4157
4158 /* Create grain directory, without preallocating it straight away. It will
4159 * be constructed on the fly when writing out the data and written when
4160 * closing the image. The end effect is that the full grain directory is
4161 * allocated, which is a requirement of the VMDK specs. */
4162 rc = vmdkCreateGrainDirectory(pImage, pExtent, VMDK_GD_AT_END,
4163 false /* fPreAlloc */);
4164 if (RT_FAILURE(rc))
4165 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
4166
4167 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
4168 "streamOptimized");
4169 if (RT_FAILURE(rc))
4170 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
4171
4172 return rc;
4173}
4174
4175/**
4176 * Internal: The actual code for creating any VMDK variant currently in
4177 * existence on hosted environments.
4178 */
4179static int vmdkCreateImage(PVMDKIMAGE pImage, uint64_t cbSize,
4180 unsigned uImageFlags, const char *pszComment,
4181 PCVDGEOMETRY pPCHSGeometry,
4182 PCVDGEOMETRY pLCHSGeometry, PCRTUUID pUuid,
4183 PFNVDPROGRESS pfnProgress, void *pvUser,
4184 unsigned uPercentStart, unsigned uPercentSpan)
4185{
4186 int rc;
4187
4188 pImage->uImageFlags = uImageFlags;
4189
4190 /* Try to get error interface. */
4191 pImage->pInterfaceError = VDInterfaceGet(pImage->pVDIfsDisk, VDINTERFACETYPE_ERROR);
4192 if (pImage->pInterfaceError)
4193 pImage->pInterfaceErrorCallbacks = VDGetInterfaceError(pImage->pInterfaceError);
4194
4195 /* Get I/O interface. */
4196 pImage->pInterfaceIO = VDInterfaceGet(pImage->pVDIfsImage, VDINTERFACETYPE_IOINT);
4197 AssertPtrReturn(pImage->pInterfaceIO, VERR_INVALID_PARAMETER);
4198 pImage->pInterfaceIOCallbacks = VDGetInterfaceIOInt(pImage->pInterfaceIO);
4199 AssertPtrReturn(pImage->pInterfaceIOCallbacks, VERR_INVALID_PARAMETER);
4200
4201 rc = vmdkCreateDescriptor(pImage, pImage->pDescData, pImage->cbDescAlloc,
4202 &pImage->Descriptor);
4203 if (RT_FAILURE(rc))
4204 {
4205 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new descriptor in '%s'"), pImage->pszFilename);
4206 goto out;
4207 }
4208
4209 if ( (uImageFlags & VD_IMAGE_FLAGS_FIXED)
4210 && (uImageFlags & VD_VMDK_IMAGE_FLAGS_RAWDISK))
4211 {
4212 /* Raw disk image (includes raw partition). */
4213 const PVBOXHDDRAW pRaw = (const PVBOXHDDRAW)pszComment;
4214 /* As the comment is misused, zap it so that no garbage comment
4215 * is set below. */
4216 pszComment = NULL;
4217 rc = vmdkCreateRawImage(pImage, pRaw, cbSize);
4218 }
4219 else
4220 {
4221 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4222 {
4223 /* Stream optimized sparse image (monolithic). */
4224 rc = vmdkCreateStreamImage(pImage, cbSize, uImageFlags,
4225 pfnProgress, pvUser, uPercentStart,
4226 uPercentSpan * 95 / 100);
4227 }
4228 else
4229 {
4230 /* Regular fixed or sparse image (monolithic or split). */
4231 rc = vmdkCreateRegularImage(pImage, cbSize, uImageFlags,
4232 pfnProgress, pvUser, uPercentStart,
4233 uPercentSpan * 95 / 100);
4234 }
4235 }
4236
4237 if (RT_FAILURE(rc))
4238 goto out;
4239
4240 if (RT_SUCCESS(rc) && pfnProgress)
4241 pfnProgress(pvUser, uPercentStart + uPercentSpan * 98 / 100);
4242
4243 pImage->cbSize = cbSize;
4244
4245 for (unsigned i = 0; i < pImage->cExtents; i++)
4246 {
4247 PVMDKEXTENT pExtent = &pImage->pExtents[i];
4248
4249 rc = vmdkDescExtInsert(pImage, &pImage->Descriptor, pExtent->enmAccess,
4250 pExtent->cNominalSectors, pExtent->enmType,
4251 pExtent->pszBasename, pExtent->uSectorOffset);
4252 if (RT_FAILURE(rc))
4253 {
4254 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not insert the extent list into descriptor in '%s'"), pImage->pszFilename);
4255 goto out;
4256 }
4257 }
4258 vmdkDescExtRemoveDummy(pImage, &pImage->Descriptor);
4259
4260 if ( pPCHSGeometry->cCylinders != 0
4261 && pPCHSGeometry->cHeads != 0
4262 && pPCHSGeometry->cSectors != 0)
4263 {
4264 rc = vmdkDescSetPCHSGeometry(pImage, pPCHSGeometry);
4265 if (RT_FAILURE(rc))
4266 goto out;
4267 }
4268 if ( pLCHSGeometry->cCylinders != 0
4269 && pLCHSGeometry->cHeads != 0
4270 && pLCHSGeometry->cSectors != 0)
4271 {
4272 rc = vmdkDescSetLCHSGeometry(pImage, pLCHSGeometry);
4273 if (RT_FAILURE(rc))
4274 goto out;
4275 }
4276
4277 pImage->LCHSGeometry = *pLCHSGeometry;
4278 pImage->PCHSGeometry = *pPCHSGeometry;
4279
4280 pImage->ImageUuid = *pUuid;
4281 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4282 VMDK_DDB_IMAGE_UUID, &pImage->ImageUuid);
4283 if (RT_FAILURE(rc))
4284 {
4285 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in new descriptor in '%s'"), pImage->pszFilename);
4286 goto out;
4287 }
4288 RTUuidClear(&pImage->ParentUuid);
4289 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4290 VMDK_DDB_PARENT_UUID, &pImage->ParentUuid);
4291 if (RT_FAILURE(rc))
4292 {
4293 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in new descriptor in '%s'"), pImage->pszFilename);
4294 goto out;
4295 }
4296 RTUuidClear(&pImage->ModificationUuid);
4297 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4298 VMDK_DDB_MODIFICATION_UUID,
4299 &pImage->ModificationUuid);
4300 if (RT_FAILURE(rc))
4301 {
4302 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in new descriptor in '%s'"), pImage->pszFilename);
4303 goto out;
4304 }
4305 RTUuidClear(&pImage->ParentModificationUuid);
4306 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4307 VMDK_DDB_PARENT_MODIFICATION_UUID,
4308 &pImage->ParentModificationUuid);
4309 if (RT_FAILURE(rc))
4310 {
4311 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in new descriptor in '%s'"), pImage->pszFilename);
4312 goto out;
4313 }
4314
4315 rc = vmdkAllocateGrainTableCache(pImage);
4316 if (RT_FAILURE(rc))
4317 goto out;
4318
4319 rc = vmdkSetImageComment(pImage, pszComment);
4320 if (RT_FAILURE(rc))
4321 {
4322 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot set image comment in '%s'"), pImage->pszFilename);
4323 goto out;
4324 }
4325
4326 if (RT_SUCCESS(rc) && pfnProgress)
4327 pfnProgress(pvUser, uPercentStart + uPercentSpan * 99 / 100);
4328
4329 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4330 {
4331 /* streamOptimized is a bit special, we cannot trigger the flush
4332 * until all data has been written. So we write the necessary
4333 * information explicitly. */
4334 pImage->pExtents[0].cDescriptorSectors = VMDK_BYTE2SECTOR(RT_ALIGN_64( pImage->Descriptor.aLines[pImage->Descriptor.cLines]
4335 - pImage->Descriptor.aLines[0], 512));
4336 rc = vmdkWriteMetaSparseExtent(pImage, &pImage->pExtents[0], 0);
4337 if (RT_FAILURE(rc))
4338 {
4339 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK header in '%s'"), pImage->pszFilename);
4340 goto out;
4341 }
4342
4343 rc = vmdkWriteDescriptor(pImage);
4344 if (RT_FAILURE(rc))
4345 {
4346 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK descriptor in '%s'"), pImage->pszFilename);
4347 goto out;
4348 }
4349 }
4350 else
4351 rc = vmdkFlushImage(pImage);
4352
4353out:
4354 if (RT_SUCCESS(rc) && pfnProgress)
4355 pfnProgress(pvUser, uPercentStart + uPercentSpan);
4356
4357 if (RT_FAILURE(rc))
4358 vmdkFreeImage(pImage, rc != VERR_ALREADY_EXISTS);
4359 return rc;
4360}
4361
4362/**
4363 * Internal: Update image comment.
4364 */
4365static int vmdkSetImageComment(PVMDKIMAGE pImage, const char *pszComment)
4366{
4367 char *pszCommentEncoded;
4368 if (pszComment)
4369 {
4370 pszCommentEncoded = vmdkEncodeString(pszComment);
4371 if (!pszCommentEncoded)
4372 return VERR_NO_MEMORY;
4373 }
4374 else
4375 pszCommentEncoded = NULL;
4376 int rc = vmdkDescDDBSetStr(pImage, &pImage->Descriptor,
4377 "ddb.comment", pszCommentEncoded);
4378 if (pszComment)
4379 RTStrFree(pszCommentEncoded);
4380 if (RT_FAILURE(rc))
4381 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image comment in descriptor in '%s'"), pImage->pszFilename);
4382 return VINF_SUCCESS;
4383}
4384
4385/**
4386 * Internal. Clear the grain table buffer for real stream optimized writing.
4387 */
4388static void vmdkStreamClearGT(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
4389{
4390 uint32_t cCacheLines = RT_ALIGN(pExtent->cGTEntries, VMDK_GT_CACHELINE_SIZE) / VMDK_GT_CACHELINE_SIZE;
4391 for (uint32_t i = 0; i < cCacheLines; i++)
4392 memset(&pImage->pGTCache->aGTCache[i].aGTData[0], '\0',
4393 VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t));
4394}
4395
4396/**
4397 * Internal. Flush the grain table buffer for real stream optimized writing.
4398 */
4399static int vmdkStreamFlushGT(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
4400 uint32_t uGDEntry)
4401{
4402 int rc = VINF_SUCCESS;
4403 uint32_t cCacheLines = RT_ALIGN(pExtent->cGTEntries, VMDK_GT_CACHELINE_SIZE) / VMDK_GT_CACHELINE_SIZE;
4404
4405 /* VMware does not write out completely empty grain tables in the case
4406 * of streamOptimized images, which according to my interpretation of
4407 * the VMDK 1.1 spec is bending the rules. Since they do it and we can
4408 * handle it without problems do it the same way and save some bytes. */
4409 bool fAllZero = true;
4410 for (uint32_t i = 0; i < cCacheLines; i++)
4411 {
4412 /* Convert the grain table to little endian in place, as it will not
4413 * be used at all after this function has been called. */
4414 uint32_t *pGTTmp = &pImage->pGTCache->aGTCache[i].aGTData[0];
4415 for (uint32_t j = 0; j < VMDK_GT_CACHELINE_SIZE; j++, pGTTmp++)
4416 if (*pGTTmp)
4417 {
4418 fAllZero = false;
4419 break;
4420 }
4421 if (!fAllZero)
4422 break;
4423 }
4424 if (fAllZero)
4425 return VINF_SUCCESS;
4426
4427 uint64_t uFileOffset = pExtent->uAppendPosition;
4428 if (!uFileOffset)
4429 return VERR_INTERNAL_ERROR;
4430 /* Align to sector, as the previous write could have been any size. */
4431 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4432
4433 /* Grain table marker. */
4434 uint8_t aMarker[512];
4435 PVMDKMARKER pMarker = (PVMDKMARKER)&aMarker[0];
4436 memset(pMarker, '\0', sizeof(aMarker));
4437 pMarker->uSector = RT_H2LE_U64(VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t)));
4438 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GT);
4439 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4440 aMarker, sizeof(aMarker), NULL);
4441 AssertRC(rc);
4442 uFileOffset += 512;
4443
4444 if (!pExtent->pGD || pExtent->pGD[uGDEntry])
4445 return VERR_INTERNAL_ERROR;
4446
4447 pExtent->pGD[uGDEntry] = VMDK_BYTE2SECTOR(uFileOffset);
4448
4449 for (uint32_t i = 0; i < cCacheLines; i++)
4450 {
4451 /* Convert the grain table to little endian in place, as it will not
4452 * be used at all after this function has been called. */
4453 uint32_t *pGTTmp = &pImage->pGTCache->aGTCache[i].aGTData[0];
4454 for (uint32_t j = 0; j < VMDK_GT_CACHELINE_SIZE; j++, pGTTmp++)
4455 *pGTTmp = RT_H2LE_U32(*pGTTmp);
4456
4457 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4458 &pImage->pGTCache->aGTCache[i].aGTData[0],
4459 VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t),
4460 NULL);
4461 uFileOffset += VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t);
4462 if (RT_FAILURE(rc))
4463 break;
4464 }
4465 Assert(!(uFileOffset % 512));
4466 pExtent->uAppendPosition = RT_ALIGN_64(uFileOffset, 512);
4467 return rc;
4468}
4469
4470/**
4471 * Internal. Free all allocated space for representing an image, and optionally
4472 * delete the image from disk.
4473 */
4474static int vmdkFreeImage(PVMDKIMAGE pImage, bool fDelete)
4475{
4476 int rc = VINF_SUCCESS;
4477
4478 /* Freeing a never allocated image (e.g. because the open failed) is
4479 * not signalled as an error. After all nothing bad happens. */
4480 if (pImage)
4481 {
4482 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
4483 {
4484 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4485 {
4486 /* Check if all extents are clean. */
4487 for (unsigned i = 0; i < pImage->cExtents; i++)
4488 {
4489 Assert(!pImage->pExtents[i].fUncleanShutdown);
4490 }
4491 }
4492 else
4493 {
4494 /* Mark all extents as clean. */
4495 for (unsigned i = 0; i < pImage->cExtents; i++)
4496 {
4497 if ( ( pImage->pExtents[i].enmType == VMDKETYPE_HOSTED_SPARSE
4498#ifdef VBOX_WITH_VMDK_ESX
4499 || pImage->pExtents[i].enmType == VMDKETYPE_ESX_SPARSE
4500#endif /* VBOX_WITH_VMDK_ESX */
4501 )
4502 && pImage->pExtents[i].fUncleanShutdown)
4503 {
4504 pImage->pExtents[i].fUncleanShutdown = false;
4505 pImage->pExtents[i].fMetaDirty = true;
4506 }
4507
4508 /* From now on it's not safe to append any more data. */
4509 pImage->pExtents[i].uAppendPosition = 0;
4510 }
4511 }
4512 }
4513
4514 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4515 {
4516 /* No need to write any pending data if the file will be deleted
4517 * or if the new file wasn't successfully created. */
4518 if ( !fDelete && pImage->pExtents
4519 && pImage->pExtents[0].cGTEntries
4520 && pImage->pExtents[0].uAppendPosition)
4521 {
4522 PVMDKEXTENT pExtent = &pImage->pExtents[0];
4523 uint32_t uLastGDEntry = pExtent->uLastGrainAccess / pExtent->cGTEntries;
4524 if (uLastGDEntry != pExtent->cGDEntries - 1)
4525 {
4526 rc = vmdkStreamFlushGT(pImage, pExtent, uLastGDEntry);
4527 AssertRC(rc);
4528 vmdkStreamClearGT(pImage, pExtent);
4529 for (uint32_t i = uLastGDEntry + 1; i < pExtent->cGDEntries; i++)
4530 {
4531 rc = vmdkStreamFlushGT(pImage, pExtent, i);
4532 AssertRC(rc);
4533 }
4534 }
4535
4536 uint64_t uFileOffset = pExtent->uAppendPosition;
4537 if (!uFileOffset)
4538 return VERR_INTERNAL_ERROR;
4539 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4540
4541 /* From now on it's not safe to append any more data. */
4542 pExtent->uAppendPosition = 0;
4543
4544 /* Grain directory marker. */
4545 uint8_t aMarker[512];
4546 PVMDKMARKER pMarker = (PVMDKMARKER)&aMarker[0];
4547 memset(pMarker, '\0', sizeof(aMarker));
4548 pMarker->uSector = VMDK_BYTE2SECTOR(RT_ALIGN_64(RT_H2LE_U64(pExtent->cGDEntries * sizeof(uint32_t)), 512));
4549 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GD);
4550 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4551 aMarker, sizeof(aMarker), NULL);
4552 AssertRC(rc);
4553 uFileOffset += 512;
4554
4555 /* Write grain directory in little endian style. The array will
4556 * not be used after this, so convert in place. */
4557 uint32_t *pGDTmp = pExtent->pGD;
4558 for (uint32_t i = 0; i < pExtent->cGDEntries; i++, pGDTmp++)
4559 *pGDTmp = RT_H2LE_U32(*pGDTmp);
4560 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4561 pExtent->pGD,
4562 pExtent->cGDEntries * sizeof(uint32_t),
4563 NULL);
4564 AssertRC(rc);
4565
4566 pExtent->uSectorGD = VMDK_BYTE2SECTOR(uFileOffset);
4567 pExtent->uSectorRGD = VMDK_BYTE2SECTOR(uFileOffset);
4568 uFileOffset = RT_ALIGN_64( uFileOffset
4569 + pExtent->cGDEntries * sizeof(uint32_t),
4570 512);
4571
4572 /* Footer marker. */
4573 memset(pMarker, '\0', sizeof(aMarker));
4574 pMarker->uSector = VMDK_BYTE2SECTOR(512);
4575 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_FOOTER);
4576 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4577 aMarker, sizeof(aMarker), NULL);
4578 AssertRC(rc);
4579
4580 uFileOffset += 512;
4581 rc = vmdkWriteMetaSparseExtent(pImage, pExtent, uFileOffset);
4582 AssertRC(rc);
4583
4584 uFileOffset += 512;
4585 /* End-of-stream marker. */
4586 memset(pMarker, '\0', sizeof(aMarker));
4587 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4588 aMarker, sizeof(aMarker), NULL);
4589 AssertRC(rc);
4590 }
4591 }
4592 else
4593 vmdkFlushImage(pImage);
4594
4595 if (pImage->pExtents != NULL)
4596 {
4597 for (unsigned i = 0 ; i < pImage->cExtents; i++)
4598 vmdkFreeExtentData(pImage, &pImage->pExtents[i], fDelete);
4599 RTMemFree(pImage->pExtents);
4600 pImage->pExtents = NULL;
4601 }
4602 pImage->cExtents = 0;
4603 if (pImage->pFile != NULL)
4604 vmdkFileClose(pImage, &pImage->pFile, fDelete);
4605 vmdkFileCheckAllClose(pImage);
4606
4607 if (pImage->pGTCache)
4608 {
4609 RTMemFree(pImage->pGTCache);
4610 pImage->pGTCache = NULL;
4611 }
4612 if (pImage->pDescData)
4613 {
4614 RTMemFree(pImage->pDescData);
4615 pImage->pDescData = NULL;
4616 }
4617 }
4618
4619 LogFlowFunc(("returns %Rrc\n", rc));
4620 return rc;
4621}
4622
4623/**
4624 * Internal. Flush image data (and metadata) to disk.
4625 */
4626static int vmdkFlushImage(PVMDKIMAGE pImage)
4627{
4628 PVMDKEXTENT pExtent;
4629 int rc = VINF_SUCCESS;
4630
4631 /* Update descriptor if changed. */
4632 if (pImage->Descriptor.fDirty)
4633 {
4634 rc = vmdkWriteDescriptor(pImage);
4635 if (RT_FAILURE(rc))
4636 goto out;
4637 }
4638
4639 for (unsigned i = 0; i < pImage->cExtents; i++)
4640 {
4641 pExtent = &pImage->pExtents[i];
4642 if (pExtent->pFile != NULL && pExtent->fMetaDirty)
4643 {
4644 switch (pExtent->enmType)
4645 {
4646 case VMDKETYPE_HOSTED_SPARSE:
4647 if (!pExtent->fFooter)
4648 {
4649 rc = vmdkWriteMetaSparseExtent(pImage, pExtent, 0);
4650 if (RT_FAILURE(rc))
4651 goto out;
4652 }
4653 else
4654 {
4655 uint64_t uFileOffset = pExtent->uAppendPosition;
4656 /* Simply skip writing anything if the streamOptimized
4657 * image hasn't been just created. */
4658 if (!uFileOffset)
4659 break;
4660 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4661 rc = vmdkWriteMetaSparseExtent(pImage, pExtent,
4662 uFileOffset);
4663 if (RT_FAILURE(rc))
4664 goto out;
4665 }
4666 break;
4667#ifdef VBOX_WITH_VMDK_ESX
4668 case VMDKETYPE_ESX_SPARSE:
4669 /** @todo update the header. */
4670 break;
4671#endif /* VBOX_WITH_VMDK_ESX */
4672 case VMDKETYPE_VMFS:
4673 case VMDKETYPE_FLAT:
4674 /* Nothing to do. */
4675 break;
4676 case VMDKETYPE_ZERO:
4677 default:
4678 AssertMsgFailed(("extent with type %d marked as dirty\n",
4679 pExtent->enmType));
4680 break;
4681 }
4682 }
4683 switch (pExtent->enmType)
4684 {
4685 case VMDKETYPE_HOSTED_SPARSE:
4686#ifdef VBOX_WITH_VMDK_ESX
4687 case VMDKETYPE_ESX_SPARSE:
4688#endif /* VBOX_WITH_VMDK_ESX */
4689 case VMDKETYPE_VMFS:
4690 case VMDKETYPE_FLAT:
4691 /** @todo implement proper path absolute check. */
4692 if ( pExtent->pFile != NULL
4693 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
4694 && !(pExtent->pszBasename[0] == RTPATH_SLASH))
4695 rc = vmdkFileFlush(pImage, pExtent->pFile);
4696 break;
4697 case VMDKETYPE_ZERO:
4698 /* No need to do anything for this extent. */
4699 break;
4700 default:
4701 AssertMsgFailed(("unknown extent type %d\n", pExtent->enmType));
4702 break;
4703 }
4704 }
4705
4706out:
4707 return rc;
4708}
4709
4710/**
4711 * Internal. Flush image data (and metadata) to disk - async version.
4712 */
4713static int vmdkFlushImageAsync(PVMDKIMAGE pImage, PVDIOCTX pIoCtx)
4714{
4715 PVMDKEXTENT pExtent;
4716 int rc = VINF_SUCCESS;
4717
4718 /* Update descriptor if changed. */
4719 if (pImage->Descriptor.fDirty)
4720 {
4721 rc = vmdkWriteDescriptorAsync(pImage, pIoCtx);
4722 if ( RT_FAILURE(rc)
4723 && rc != VERR_VD_ASYNC_IO_IN_PROGRESS)
4724 goto out;
4725 }
4726
4727 for (unsigned i = 0; i < pImage->cExtents; i++)
4728 {
4729 pExtent = &pImage->pExtents[i];
4730 if (pExtent->pFile != NULL && pExtent->fMetaDirty)
4731 {
4732 switch (pExtent->enmType)
4733 {
4734 case VMDKETYPE_HOSTED_SPARSE:
4735 AssertMsgFailed(("Async I/O not supported for sparse images\n"));
4736 break;
4737#ifdef VBOX_WITH_VMDK_ESX
4738 case VMDKETYPE_ESX_SPARSE:
4739 /** @todo update the header. */
4740 break;
4741#endif /* VBOX_WITH_VMDK_ESX */
4742 case VMDKETYPE_VMFS:
4743 case VMDKETYPE_FLAT:
4744 /* Nothing to do. */
4745 break;
4746 case VMDKETYPE_ZERO:
4747 default:
4748 AssertMsgFailed(("extent with type %d marked as dirty\n",
4749 pExtent->enmType));
4750 break;
4751 }
4752 }
4753 switch (pExtent->enmType)
4754 {
4755 case VMDKETYPE_HOSTED_SPARSE:
4756#ifdef VBOX_WITH_VMDK_ESX
4757 case VMDKETYPE_ESX_SPARSE:
4758#endif /* VBOX_WITH_VMDK_ESX */
4759 case VMDKETYPE_VMFS:
4760 case VMDKETYPE_FLAT:
4761 /** @todo implement proper path absolute check. */
4762 if ( pExtent->pFile != NULL
4763 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
4764 && !(pExtent->pszBasename[0] == RTPATH_SLASH))
4765 rc = vmdkFileFlushAsync(pImage, pExtent->pFile, pIoCtx);
4766 break;
4767 case VMDKETYPE_ZERO:
4768 /* No need to do anything for this extent. */
4769 break;
4770 default:
4771 AssertMsgFailed(("unknown extent type %d\n", pExtent->enmType));
4772 break;
4773 }
4774 }
4775
4776out:
4777 return rc;
4778}
4779
4780/**
4781 * Internal. Find extent corresponding to the sector number in the disk.
4782 */
4783static int vmdkFindExtent(PVMDKIMAGE pImage, uint64_t offSector,
4784 PVMDKEXTENT *ppExtent, uint64_t *puSectorInExtent)
4785{
4786 PVMDKEXTENT pExtent = NULL;
4787 int rc = VINF_SUCCESS;
4788
4789 for (unsigned i = 0; i < pImage->cExtents; i++)
4790 {
4791 if (offSector < pImage->pExtents[i].cNominalSectors)
4792 {
4793 pExtent = &pImage->pExtents[i];
4794 *puSectorInExtent = offSector + pImage->pExtents[i].uSectorOffset;
4795 break;
4796 }
4797 offSector -= pImage->pExtents[i].cNominalSectors;
4798 }
4799
4800 if (pExtent)
4801 *ppExtent = pExtent;
4802 else
4803 rc = VERR_IO_SECTOR_NOT_FOUND;
4804
4805 return rc;
4806}
4807
4808/**
4809 * Internal. Hash function for placing the grain table hash entries.
4810 */
4811static uint32_t vmdkGTCacheHash(PVMDKGTCACHE pCache, uint64_t uSector,
4812 unsigned uExtent)
4813{
4814 /** @todo this hash function is quite simple, maybe use a better one which
4815 * scrambles the bits better. */
4816 return (uSector + uExtent) % pCache->cEntries;
4817}
4818
4819/**
4820 * Internal. Get sector number in the extent file from the relative sector
4821 * number in the extent.
4822 */
4823static int vmdkGetSector(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
4824 uint64_t uSector, uint64_t *puExtentSector)
4825{
4826 PVMDKGTCACHE pCache = pImage->pGTCache;
4827 uint64_t uGDIndex, uGTSector, uGTBlock;
4828 uint32_t uGTHash, uGTBlockIndex;
4829 PVMDKGTCACHEENTRY pGTCacheEntry;
4830 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
4831 int rc;
4832
4833 /* For newly created and readonly/sequentially opened streamOptimized
4834 * images this must be a no-op, as the grain directory is not there. */
4835 if ( ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
4836 && pExtent->uAppendPosition)
4837 || ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
4838 && pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY
4839 && pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
4840 {
4841 *puExtentSector = 0;
4842 return VINF_SUCCESS;
4843 }
4844
4845 uGDIndex = uSector / pExtent->cSectorsPerGDE;
4846 if (uGDIndex >= pExtent->cGDEntries)
4847 return VERR_OUT_OF_RANGE;
4848 uGTSector = pExtent->pGD[uGDIndex];
4849 if (!uGTSector)
4850 {
4851 /* There is no grain table referenced by this grain directory
4852 * entry. So there is absolutely no data in this area. */
4853 *puExtentSector = 0;
4854 return VINF_SUCCESS;
4855 }
4856
4857 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
4858 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
4859 pGTCacheEntry = &pCache->aGTCache[uGTHash];
4860 if ( pGTCacheEntry->uExtent != pExtent->uExtent
4861 || pGTCacheEntry->uGTBlock != uGTBlock)
4862 {
4863 /* Cache miss, fetch data from disk. */
4864 rc = vmdkFileReadSync(pImage, pExtent->pFile,
4865 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
4866 aGTDataTmp, sizeof(aGTDataTmp), NULL);
4867 if (RT_FAILURE(rc))
4868 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read grain table entry in '%s'"), pExtent->pszFullname);
4869 pGTCacheEntry->uExtent = pExtent->uExtent;
4870 pGTCacheEntry->uGTBlock = uGTBlock;
4871 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
4872 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
4873 }
4874 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
4875 uint32_t uGrainSector = pGTCacheEntry->aGTData[uGTBlockIndex];
4876 if (uGrainSector)
4877 *puExtentSector = uGrainSector + uSector % pExtent->cSectorsPerGrain;
4878 else
4879 *puExtentSector = 0;
4880 return VINF_SUCCESS;
4881}
4882
4883/**
4884 * Internal. Get sector number in the extent file from the relative sector
4885 * number in the extent - version for async access.
4886 */
4887static int vmdkGetSectorAsync(PVMDKIMAGE pImage, PVDIOCTX pIoCtx,
4888 PVMDKEXTENT pExtent, uint64_t uSector,
4889 uint64_t *puExtentSector)
4890{
4891 PVMDKGTCACHE pCache = pImage->pGTCache;
4892 uint64_t uGDIndex, uGTSector, uGTBlock;
4893 uint32_t uGTHash, uGTBlockIndex;
4894 PVMDKGTCACHEENTRY pGTCacheEntry;
4895 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
4896 int rc;
4897
4898 uGDIndex = uSector / pExtent->cSectorsPerGDE;
4899 if (uGDIndex >= pExtent->cGDEntries)
4900 return VERR_OUT_OF_RANGE;
4901 uGTSector = pExtent->pGD[uGDIndex];
4902 if (!uGTSector)
4903 {
4904 /* There is no grain table referenced by this grain directory
4905 * entry. So there is absolutely no data in this area. */
4906 *puExtentSector = 0;
4907 return VINF_SUCCESS;
4908 }
4909
4910 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
4911 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
4912 pGTCacheEntry = &pCache->aGTCache[uGTHash];
4913 if ( pGTCacheEntry->uExtent != pExtent->uExtent
4914 || pGTCacheEntry->uGTBlock != uGTBlock)
4915 {
4916 /* Cache miss, fetch data from disk. */
4917 PVDMETAXFER pMetaXfer;
4918 rc = vmdkFileReadMetaAsync(pImage, pExtent->pFile,
4919 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
4920 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx, &pMetaXfer, NULL, NULL);
4921 if (RT_FAILURE(rc))
4922 return rc;
4923 /* We can release the metadata transfer immediately. */
4924 vmdkFileMetaXferRelease(pImage, pMetaXfer);
4925 pGTCacheEntry->uExtent = pExtent->uExtent;
4926 pGTCacheEntry->uGTBlock = uGTBlock;
4927 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
4928 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
4929 }
4930 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
4931 uint32_t uGrainSector = pGTCacheEntry->aGTData[uGTBlockIndex];
4932 if (uGrainSector)
4933 *puExtentSector = uGrainSector + uSector % pExtent->cSectorsPerGrain;
4934 else
4935 *puExtentSector = 0;
4936 return VINF_SUCCESS;
4937}
4938
4939/**
4940 * Internal. Allocates a new grain table (if necessary), writes the grain
4941 * and updates the grain table. The cache is also updated by this operation.
4942 * This is separate from vmdkGetSector, because that should be as fast as
4943 * possible. Most code from vmdkGetSector also appears here.
4944 */
4945static int vmdkAllocGrain(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
4946 uint64_t uSector, const void *pvBuf,
4947 uint64_t cbWrite)
4948{
4949 PVMDKGTCACHE pCache = pImage->pGTCache;
4950 uint64_t uGDIndex, uGTSector, uRGTSector, uGTBlock;
4951 uint64_t uFileOffset;
4952 uint32_t uGTHash, uGTBlockIndex;
4953 PVMDKGTCACHEENTRY pGTCacheEntry;
4954 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
4955 int rc;
4956
4957 uGDIndex = uSector / pExtent->cSectorsPerGDE;
4958 if (uGDIndex >= pExtent->cGDEntries)
4959 return VERR_OUT_OF_RANGE;
4960 uGTSector = pExtent->pGD[uGDIndex];
4961 if (pExtent->pRGD)
4962 uRGTSector = pExtent->pRGD[uGDIndex];
4963 else
4964 uRGTSector = 0; /**< avoid compiler warning */
4965 if (!uGTSector)
4966 {
4967 /* There is no grain table referenced by this grain directory
4968 * entry. So there is absolutely no data in this area. Allocate
4969 * a new grain table and put the reference to it in the GDs. */
4970 uFileOffset = pExtent->uAppendPosition;
4971 if (!uFileOffset)
4972 return VERR_INTERNAL_ERROR;
4973 Assert(!(uFileOffset % 512));
4974 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4975 uGTSector = VMDK_BYTE2SECTOR(uFileOffset);
4976
4977 pExtent->uAppendPosition += pExtent->cGTEntries * sizeof(uint32_t);
4978
4979 /* Normally the grain table is preallocated for hosted sparse extents
4980 * that support more than 32 bit sector numbers. So this shouldn't
4981 * ever happen on a valid extent. */
4982 if (uGTSector > UINT32_MAX)
4983 return VERR_VD_VMDK_INVALID_HEADER;
4984
4985 /* Write grain table by writing the required number of grain table
4986 * cache chunks. Avoids dynamic memory allocation, but is a bit
4987 * slower. But as this is a pretty infrequently occurring case it
4988 * should be acceptable. */
4989 memset(aGTDataTmp, '\0', sizeof(aGTDataTmp));
4990 for (unsigned i = 0;
4991 i < pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE;
4992 i++)
4993 {
4994 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
4995 VMDK_SECTOR2BYTE(uGTSector) + i * sizeof(aGTDataTmp),
4996 aGTDataTmp, sizeof(aGTDataTmp), NULL);
4997 if (RT_FAILURE(rc))
4998 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
4999 }
5000 pExtent->uAppendPosition = RT_ALIGN_64( pExtent->uAppendPosition
5001 + pExtent->cGTEntries * sizeof(uint32_t),
5002 512);
5003
5004 if (pExtent->pRGD)
5005 {
5006 AssertReturn(!uRGTSector, VERR_VD_VMDK_INVALID_HEADER);
5007 uFileOffset = pExtent->uAppendPosition;
5008 if (!uFileOffset)
5009 return VERR_INTERNAL_ERROR;
5010 Assert(!(uFileOffset % 512));
5011 uRGTSector = VMDK_BYTE2SECTOR(uFileOffset);
5012
5013 pExtent->uAppendPosition += pExtent->cGTEntries * sizeof(uint32_t);
5014
5015 /* Normally the redundant grain table is preallocated for hosted
5016 * sparse extents that support more than 32 bit sector numbers. So
5017 * this shouldn't ever happen on a valid extent. */
5018 if (uRGTSector > UINT32_MAX)
5019 return VERR_VD_VMDK_INVALID_HEADER;
5020
5021 /* Write backup grain table by writing the required number of grain
5022 * table cache chunks. Avoids dynamic memory allocation, but is a
5023 * bit slower. But as this is a pretty infrequently occurring case
5024 * it should be acceptable. */
5025 for (unsigned i = 0;
5026 i < pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE;
5027 i++)
5028 {
5029 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5030 VMDK_SECTOR2BYTE(uRGTSector) + i * sizeof(aGTDataTmp),
5031 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5032 if (RT_FAILURE(rc))
5033 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
5034 }
5035
5036 pExtent->uAppendPosition = pExtent->uAppendPosition
5037 + pExtent->cGTEntries * sizeof(uint32_t);
5038 }
5039
5040 /* Update the grain directory on disk (doing it before writing the
5041 * grain table will result in a garbled extent if the operation is
5042 * aborted for some reason. Otherwise the worst that can happen is
5043 * some unused sectors in the extent. */
5044 uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector);
5045 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5046 VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
5047 &uGTSectorLE, sizeof(uGTSectorLE), NULL);
5048 if (RT_FAILURE(rc))
5049 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
5050 if (pExtent->pRGD)
5051 {
5052 uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector);
5053 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5054 VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uRGTSectorLE),
5055 &uRGTSectorLE, sizeof(uRGTSectorLE), NULL);
5056 if (RT_FAILURE(rc))
5057 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
5058 }
5059
5060 /* As the final step update the in-memory copy of the GDs. */
5061 pExtent->pGD[uGDIndex] = uGTSector;
5062 if (pExtent->pRGD)
5063 pExtent->pRGD[uGDIndex] = uRGTSector;
5064 }
5065
5066 uFileOffset = pExtent->uAppendPosition;
5067 if (!uFileOffset)
5068 return VERR_INTERNAL_ERROR;
5069 Assert(!(uFileOffset % 512));
5070
5071 /* Write the data. Always a full grain, or we're in big trouble. */
5072 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
5073 {
5074 if (cbWrite != VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
5075 return vmdkError(pImage, VERR_INTERNAL_ERROR, RT_SRC_POS, N_("VMDK: not enough data for a compressed data block in '%s'"), pExtent->pszFullname);
5076
5077 /* Invalidate cache, just in case some code incorrectly allows mixing
5078 * of reads and writes. Normally shouldn't be needed. */
5079 pExtent->uGrainSectorAbs = 0;
5080
5081 /* Write compressed data block and the markers. */
5082 uint32_t cbGrain = 0;
5083 rc = vmdkFileDeflateSync(pImage, pExtent, uFileOffset,
5084 pvBuf, cbWrite, uSector, &cbGrain);
5085 if (RT_FAILURE(rc))
5086 {
5087 AssertRC(rc);
5088 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated compressed data block in '%s'"), pExtent->pszFullname);
5089 }
5090 pExtent->uLastGrainAccess = uSector / pExtent->cSectorsPerGrain;
5091 pExtent->uAppendPosition += cbGrain;
5092 }
5093 else
5094 {
5095 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
5096 pvBuf, cbWrite, NULL);
5097 if (RT_FAILURE(rc))
5098 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
5099 pExtent->uAppendPosition += cbWrite;
5100 }
5101
5102 /* Update the grain table (and the cache). */
5103 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
5104 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
5105 pGTCacheEntry = &pCache->aGTCache[uGTHash];
5106 if ( pGTCacheEntry->uExtent != pExtent->uExtent
5107 || pGTCacheEntry->uGTBlock != uGTBlock)
5108 {
5109 /* Cache miss, fetch data from disk. */
5110 rc = vmdkFileReadSync(pImage, pExtent->pFile,
5111 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5112 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5113 if (RT_FAILURE(rc))
5114 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
5115 pGTCacheEntry->uExtent = pExtent->uExtent;
5116 pGTCacheEntry->uGTBlock = uGTBlock;
5117 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5118 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
5119 }
5120 else
5121 {
5122 /* Cache hit. Convert grain table block back to disk format, otherwise
5123 * the code below will write garbage for all but the updated entry. */
5124 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5125 aGTDataTmp[i] = RT_H2LE_U32(pGTCacheEntry->aGTData[i]);
5126 }
5127 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
5128 aGTDataTmp[uGTBlockIndex] = RT_H2LE_U32(VMDK_BYTE2SECTOR(uFileOffset));
5129 pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(uFileOffset);
5130 /* Update grain table on disk. */
5131 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5132 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5133 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5134 if (RT_FAILURE(rc))
5135 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
5136 if (pExtent->pRGD)
5137 {
5138 /* Update backup grain table on disk. */
5139 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5140 VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5141 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5142 if (RT_FAILURE(rc))
5143 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
5144 }
5145#ifdef VBOX_WITH_VMDK_ESX
5146 if (RT_SUCCESS(rc) && pExtent->enmType == VMDKETYPE_ESX_SPARSE)
5147 {
5148 pExtent->uFreeSector = uGTSector + VMDK_BYTE2SECTOR(cbWrite);
5149 pExtent->fMetaDirty = true;
5150 }
5151#endif /* VBOX_WITH_VMDK_ESX */
5152 return rc;
5153}
5154
5155/**
5156 * Internal. Writes the grain and also if necessary the grain tables.
5157 * Uses the grain table cache as a true grain table.
5158 */
5159static int vmdkStreamAllocGrain(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5160 uint64_t uSector, const void *pvBuf,
5161 uint64_t cbWrite)
5162{
5163 uint32_t uGrain;
5164 uint32_t uGDEntry, uLastGDEntry;
5165 uint32_t cbGrain = 0;
5166 uint32_t uCacheLine, uCacheEntry;
5167 const void *pData = pvBuf;
5168 int rc;
5169
5170 /* Very strict requirements: always write at least one full grain, with
5171 * proper alignment. Everything else would require reading of already
5172 * written data, which we don't support for obvious reasons. The only
5173 * exception is the last grain, and only if the image size specifies
5174 * that only some portion holds data. In any case the write must be
5175 * within the image limits, no "overshoot" allowed. */
5176 if ( cbWrite == 0
5177 || ( cbWrite < VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain)
5178 && pExtent->cNominalSectors - uSector >= pExtent->cSectorsPerGrain)
5179 || uSector % pExtent->cSectorsPerGrain
5180 || uSector + VMDK_BYTE2SECTOR(cbWrite) > pExtent->cNominalSectors)
5181 return VERR_INVALID_PARAMETER;
5182
5183 /* Clip write range to at most the rest of the grain. */
5184 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSector % pExtent->cSectorsPerGrain));
5185
5186 /* Do not allow to go back. */
5187 uGrain = uSector / pExtent->cSectorsPerGrain;
5188 uCacheLine = uGrain % pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE;
5189 uCacheEntry = uGrain % VMDK_GT_CACHELINE_SIZE;
5190 uGDEntry = uGrain / pExtent->cGTEntries;
5191 uLastGDEntry = pExtent->uLastGrainAccess / pExtent->cGTEntries;
5192 if (uGrain < pExtent->uLastGrainAccess)
5193 return VERR_VD_VMDK_INVALID_WRITE;
5194
5195 /* Zero byte write optimization. Since we don't tell VBoxHDD that we need
5196 * to allocate something, we also need to detect the situation ourself. */
5197 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_HONOR_ZEROES)
5198 && ASMBitFirstSet((volatile void *)pvBuf, (uint32_t)cbWrite * 8) == -1)
5199 return VINF_SUCCESS;
5200
5201 if (uGDEntry != uLastGDEntry)
5202 {
5203 rc = vmdkStreamFlushGT(pImage, pExtent, uLastGDEntry);
5204 if (RT_FAILURE(rc))
5205 return rc;
5206 vmdkStreamClearGT(pImage, pExtent);
5207 for (uint32_t i = uLastGDEntry + 1; i < uGDEntry; i++)
5208 {
5209 rc = vmdkStreamFlushGT(pImage, pExtent, i);
5210 if (RT_FAILURE(rc))
5211 return rc;
5212 }
5213 }
5214
5215 uint64_t uFileOffset;
5216 uFileOffset = pExtent->uAppendPosition;
5217 if (!uFileOffset)
5218 return VERR_INTERNAL_ERROR;
5219 /* Align to sector, as the previous write could have been any size. */
5220 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
5221
5222 /* Paranoia check: extent type, grain table buffer presence and
5223 * grain table buffer space. Also grain table entry must be clear. */
5224 if ( pExtent->enmType != VMDKETYPE_HOSTED_SPARSE
5225 || !pImage->pGTCache
5226 || pExtent->cGTEntries > VMDK_GT_CACHE_SIZE * VMDK_GT_CACHELINE_SIZE
5227 || pImage->pGTCache->aGTCache[uCacheLine].aGTData[uCacheEntry])
5228 return VERR_INTERNAL_ERROR;
5229
5230 /* Update grain table entry. */
5231 pImage->pGTCache->aGTCache[uCacheLine].aGTData[uCacheEntry] = VMDK_BYTE2SECTOR(uFileOffset);
5232
5233 if (cbWrite != VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
5234 {
5235 memcpy(pExtent->pvGrain, pvBuf, cbWrite);
5236 memset((char *)pExtent->pvGrain + cbWrite, '\0',
5237 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain) - cbWrite);
5238 pData = pExtent->pvGrain;
5239 }
5240 rc = vmdkFileDeflateSync(pImage, pExtent, uFileOffset, pData,
5241 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain),
5242 uSector, &cbGrain);
5243 if (RT_FAILURE(rc))
5244 {
5245 pExtent->uGrainSectorAbs = 0;
5246 AssertRC(rc);
5247 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write compressed data block in '%s'"), pExtent->pszFullname);
5248 }
5249 pExtent->uLastGrainAccess = uGrain;
5250 pExtent->uAppendPosition += cbGrain;
5251
5252 return rc;
5253}
5254
5255/**
5256 * Internal: Updates the grain table during a async grain allocation.
5257 */
5258static int vmdkAllocGrainAsyncGTUpdate(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5259 PVDIOCTX pIoCtx,
5260 PVMDKGRAINALLOCASYNC pGrainAlloc)
5261{
5262 int rc = VINF_SUCCESS;
5263 PVMDKGTCACHE pCache = pImage->pGTCache;
5264 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
5265 uint32_t uGTHash, uGTBlockIndex;
5266 uint64_t uGTSector, uRGTSector, uGTBlock;
5267 uint64_t uSector = pGrainAlloc->uSector;
5268 PVMDKGTCACHEENTRY pGTCacheEntry;
5269
5270 LogFlowFunc(("pImage=%#p pExtent=%#p pCache=%#p pIoCtx=%#p pGrainAlloc=%#p\n",
5271 pImage, pExtent, pCache, pIoCtx, pGrainAlloc));
5272
5273 uGTSector = pGrainAlloc->uGTSector;
5274 uRGTSector = pGrainAlloc->uRGTSector;
5275 LogFlow(("uGTSector=%llu uRGTSector=%llu\n", uGTSector, uRGTSector));
5276
5277 /* Update the grain table (and the cache). */
5278 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
5279 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
5280 pGTCacheEntry = &pCache->aGTCache[uGTHash];
5281 if ( pGTCacheEntry->uExtent != pExtent->uExtent
5282 || pGTCacheEntry->uGTBlock != uGTBlock)
5283 {
5284 /* Cache miss, fetch data from disk. */
5285 LogFlow(("Cache miss, fetch data from disk\n"));
5286 PVDMETAXFER pMetaXfer = NULL;
5287 rc = vmdkFileReadMetaAsync(pImage, pExtent->pFile,
5288 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5289 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
5290 &pMetaXfer, vmdkAllocGrainAsyncComplete, pGrainAlloc);
5291 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5292 {
5293 pGrainAlloc->cIoXfersPending++;
5294 pGrainAlloc->fGTUpdateNeeded = true;
5295 /* Leave early, we will be called again after the read completed. */
5296 LogFlowFunc(("Metadata read in progress, leaving\n"));
5297 return rc;
5298 }
5299 else if (RT_FAILURE(rc))
5300 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
5301 vmdkFileMetaXferRelease(pImage, pMetaXfer);
5302 pGTCacheEntry->uExtent = pExtent->uExtent;
5303 pGTCacheEntry->uGTBlock = uGTBlock;
5304 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5305 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
5306 }
5307 else
5308 {
5309 /* Cache hit. Convert grain table block back to disk format, otherwise
5310 * the code below will write garbage for all but the updated entry. */
5311 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5312 aGTDataTmp[i] = RT_H2LE_U32(pGTCacheEntry->aGTData[i]);
5313 }
5314 pGrainAlloc->fGTUpdateNeeded = false;
5315 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
5316 aGTDataTmp[uGTBlockIndex] = RT_H2LE_U32(VMDK_BYTE2SECTOR(pGrainAlloc->uGrainOffset));
5317 pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(pGrainAlloc->uGrainOffset);
5318 /* Update grain table on disk. */
5319 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5320 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5321 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
5322 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5323 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5324 pGrainAlloc->cIoXfersPending++;
5325 else if (RT_FAILURE(rc))
5326 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
5327 if (pExtent->pRGD)
5328 {
5329 /* Update backup grain table on disk. */
5330 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5331 VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5332 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
5333 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5334 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5335 pGrainAlloc->cIoXfersPending++;
5336 else if (RT_FAILURE(rc))
5337 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
5338 }
5339#ifdef VBOX_WITH_VMDK_ESX
5340 if (RT_SUCCESS(rc) && pExtent->enmType == VMDKETYPE_ESX_SPARSE)
5341 {
5342 pExtent->uFreeSector = uGTSector + VMDK_BYTE2SECTOR(cbWrite);
5343 pExtent->fMetaDirty = true;
5344 }
5345#endif /* VBOX_WITH_VMDK_ESX */
5346
5347 LogFlowFunc(("leaving rc=%Rrc\n", rc));
5348
5349 return rc;
5350}
5351
5352/**
5353 * Internal - complete the grain allocation by updating disk grain table if required.
5354 */
5355static int vmdkAllocGrainAsyncComplete(void *pBackendData, PVDIOCTX pIoCtx, void *pvUser, int rcReq)
5356{
5357 int rc = VINF_SUCCESS;
5358 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
5359 PVMDKGRAINALLOCASYNC pGrainAlloc = (PVMDKGRAINALLOCASYNC)pvUser;
5360 PVMDKEXTENT pExtent = pGrainAlloc->pExtent;
5361
5362 LogFlowFunc(("pBackendData=%#p pIoCtx=%#p pvUser=%#p rcReq=%Rrc\n",
5363 pBackendData, pIoCtx, pvUser, rcReq));
5364
5365 pGrainAlloc->cIoXfersPending--;
5366 if (!pGrainAlloc->cIoXfersPending && pGrainAlloc->fGTUpdateNeeded)
5367 rc = vmdkAllocGrainAsyncGTUpdate(pImage, pGrainAlloc->pExtent,
5368 pIoCtx, pGrainAlloc);
5369
5370 if (!pGrainAlloc->cIoXfersPending)
5371 {
5372 /* Grain allocation completed. */
5373 RTMemFree(pGrainAlloc);
5374 }
5375
5376 LogFlowFunc(("Leaving rc=%Rrc\n", rc));
5377 return rc;
5378}
5379
5380/**
5381 * Internal. Allocates a new grain table (if necessary) - async version.
5382 */
5383static int vmdkAllocGrainAsync(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5384 PVDIOCTX pIoCtx, uint64_t uSector,
5385 uint64_t cbWrite)
5386{
5387 PVMDKGTCACHE pCache = pImage->pGTCache;
5388 uint64_t uGDIndex, uGTSector, uRGTSector;
5389 uint64_t uFileOffset;
5390 PVMDKGRAINALLOCASYNC pGrainAlloc = NULL;
5391 int rc;
5392
5393 LogFlowFunc(("pCache=%#p pExtent=%#p pIoCtx=%#p uSector=%llu cbWrite=%llu\n",
5394 pCache, pExtent, pIoCtx, uSector, cbWrite));
5395
5396 AssertReturn(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED), VERR_NOT_SUPPORTED);
5397
5398 pGrainAlloc = (PVMDKGRAINALLOCASYNC)RTMemAllocZ(sizeof(VMDKGRAINALLOCASYNC));
5399 if (!pGrainAlloc)
5400 return VERR_NO_MEMORY;
5401
5402 pGrainAlloc->pExtent = pExtent;
5403 pGrainAlloc->uSector = uSector;
5404
5405 uGDIndex = uSector / pExtent->cSectorsPerGDE;
5406 if (uGDIndex >= pExtent->cGDEntries)
5407 return VERR_OUT_OF_RANGE;
5408 uGTSector = pExtent->pGD[uGDIndex];
5409 if (pExtent->pRGD)
5410 uRGTSector = pExtent->pRGD[uGDIndex];
5411 else
5412 uRGTSector = 0; /**< avoid compiler warning */
5413 if (!uGTSector)
5414 {
5415 LogFlow(("Allocating new grain table\n"));
5416
5417 /* There is no grain table referenced by this grain directory
5418 * entry. So there is absolutely no data in this area. Allocate
5419 * a new grain table and put the reference to it in the GDs. */
5420 uFileOffset = pExtent->uAppendPosition;
5421 if (!uFileOffset)
5422 return VERR_INTERNAL_ERROR;
5423 Assert(!(uFileOffset % 512));
5424
5425 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
5426 uGTSector = VMDK_BYTE2SECTOR(uFileOffset);
5427
5428 /* Normally the grain table is preallocated for hosted sparse extents
5429 * that support more than 32 bit sector numbers. So this shouldn't
5430 * ever happen on a valid extent. */
5431 if (uGTSector > UINT32_MAX)
5432 return VERR_VD_VMDK_INVALID_HEADER;
5433
5434 /* Write grain table by writing the required number of grain table
5435 * cache chunks. Allocate memory dynamically here or we flood the
5436 * metadata cache with very small entries. */
5437 size_t cbGTDataTmp = pExtent->cGTEntries * sizeof(uint32_t);
5438 uint32_t *paGTDataTmp = (uint32_t *)RTMemTmpAllocZ(cbGTDataTmp);
5439
5440 if (!paGTDataTmp)
5441 return VERR_NO_MEMORY;
5442
5443 memset(paGTDataTmp, '\0', cbGTDataTmp);
5444 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5445 VMDK_SECTOR2BYTE(uGTSector),
5446 paGTDataTmp, cbGTDataTmp, pIoCtx,
5447 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5448 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5449 pGrainAlloc->cIoXfersPending++;
5450 else if (RT_FAILURE(rc))
5451 {
5452 RTMemTmpFree(paGTDataTmp);
5453 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
5454 }
5455 pExtent->uAppendPosition = RT_ALIGN_64( pExtent->uAppendPosition
5456 + cbGTDataTmp, 512);
5457
5458 if (pExtent->pRGD)
5459 {
5460 AssertReturn(!uRGTSector, VERR_VD_VMDK_INVALID_HEADER);
5461 uFileOffset = pExtent->uAppendPosition;
5462 if (!uFileOffset)
5463 return VERR_INTERNAL_ERROR;
5464 Assert(!(uFileOffset % 512));
5465 uRGTSector = VMDK_BYTE2SECTOR(uFileOffset);
5466
5467 /* Normally the redundant grain table is preallocated for hosted
5468 * sparse extents that support more than 32 bit sector numbers. So
5469 * this shouldn't ever happen on a valid extent. */
5470 if (uRGTSector > UINT32_MAX)
5471 {
5472 RTMemTmpFree(paGTDataTmp);
5473 return VERR_VD_VMDK_INVALID_HEADER;
5474 }
5475
5476 /* Write grain table by writing the required number of grain table
5477 * cache chunks. Allocate memory dynamically here or we flood the
5478 * metadata cache with very small entries. */
5479 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5480 VMDK_SECTOR2BYTE(uRGTSector),
5481 paGTDataTmp, cbGTDataTmp, pIoCtx,
5482 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5483 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5484 pGrainAlloc->cIoXfersPending++;
5485 else if (RT_FAILURE(rc))
5486 {
5487 RTMemTmpFree(paGTDataTmp);
5488 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
5489 }
5490
5491 pExtent->uAppendPosition = pExtent->uAppendPosition + cbGTDataTmp;
5492 }
5493
5494 RTMemTmpFree(paGTDataTmp);
5495
5496 /* Update the grain directory on disk (doing it before writing the
5497 * grain table will result in a garbled extent if the operation is
5498 * aborted for some reason. Otherwise the worst that can happen is
5499 * some unused sectors in the extent. */
5500 uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector);
5501 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5502 VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
5503 &uGTSectorLE, sizeof(uGTSectorLE), pIoCtx,
5504 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5505 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5506 pGrainAlloc->cIoXfersPending++;
5507 else if (RT_FAILURE(rc))
5508 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
5509 if (pExtent->pRGD)
5510 {
5511 uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector);
5512 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5513 VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uGTSectorLE),
5514 &uRGTSectorLE, sizeof(uRGTSectorLE), pIoCtx,
5515 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5516 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5517 pGrainAlloc->cIoXfersPending++;
5518 else if (RT_FAILURE(rc))
5519 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
5520 }
5521
5522 /* As the final step update the in-memory copy of the GDs. */
5523 pExtent->pGD[uGDIndex] = uGTSector;
5524 if (pExtent->pRGD)
5525 pExtent->pRGD[uGDIndex] = uRGTSector;
5526 }
5527
5528 LogFlow(("uGTSector=%llu uRGTSector=%llu\n", uGTSector, uRGTSector));
5529 pGrainAlloc->uGTSector = uGTSector;
5530 pGrainAlloc->uRGTSector = uRGTSector;
5531
5532 uFileOffset = pExtent->uAppendPosition;
5533 if (!uFileOffset)
5534 return VERR_INTERNAL_ERROR;
5535 Assert(!(uFileOffset % 512));
5536
5537 pGrainAlloc->uGrainOffset = uFileOffset;
5538
5539 /* Write the data. Always a full grain, or we're in big trouble. */
5540 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
5541 uFileOffset, pIoCtx, cbWrite,
5542 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5543 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5544 pGrainAlloc->cIoXfersPending++;
5545 else if (RT_FAILURE(rc))
5546 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
5547
5548 rc = vmdkAllocGrainAsyncGTUpdate(pImage, pExtent, pIoCtx, pGrainAlloc);
5549
5550 if (!pGrainAlloc->cIoXfersPending)
5551 {
5552 /* Grain allocation completed. */
5553 RTMemFree(pGrainAlloc);
5554 }
5555
5556 LogFlowFunc(("leaving rc=%Rrc\n", rc));
5557
5558 return rc;
5559}
5560
5561/**
5562 * Internal. Reads the contents by sequentially going over the compressed
5563 * grains (hoping that they are in sequence).
5564 */
5565static int vmdkStreamReadSequential(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5566 uint64_t uSector, void *pvBuf,
5567 uint64_t cbRead)
5568{
5569 int rc;
5570
5571 /* Do not allow to go back. */
5572 uint32_t uGrain = uSector / pExtent->cSectorsPerGrain;
5573 if (uGrain < pExtent->uLastGrainAccess)
5574 return VERR_VD_VMDK_INVALID_STATE;
5575 pExtent->uLastGrainAccess = uGrain;
5576
5577 /* After a previous error do not attempt to recover, as it would need
5578 * seeking (in the general case backwards which is forbidden). */
5579 if (!pExtent->uGrainSectorAbs)
5580 return VERR_VD_VMDK_INVALID_STATE;
5581
5582 /* Check if we need to read something from the image or if what we have
5583 * in the buffer is good to fulfill the request. */
5584 if (!pExtent->cbGrainStreamRead || uGrain > pExtent->uGrain)
5585 {
5586 uint32_t uGrainSectorAbs = pExtent->uGrainSectorAbs
5587 + VMDK_BYTE2SECTOR(pExtent->cbGrainStreamRead);
5588
5589 /* Get the marker from the next data block - and skip everything which
5590 * is not a compressed grain. If it's a compressed grain which is for
5591 * the requested sector (or after), read it. */
5592 VMDKMARKER Marker;
5593 do
5594 {
5595 RT_ZERO(Marker);
5596 rc = vmdkFileReadSync(pImage, pExtent->pFile,
5597 VMDK_SECTOR2BYTE(uGrainSectorAbs),
5598 &Marker, RT_OFFSETOF(VMDKMARKER, uType),
5599 NULL);
5600 if (RT_FAILURE(rc))
5601 return rc;
5602 Marker.uSector = RT_LE2H_U64(Marker.uSector);
5603 Marker.cbSize = RT_LE2H_U32(Marker.cbSize);
5604
5605 if (Marker.cbSize == 0)
5606 {
5607 /* A marker for something else than a compressed grain. */
5608 rc = vmdkFileReadSync(pImage, pExtent->pFile,
5609 VMDK_SECTOR2BYTE(uGrainSectorAbs)
5610 + RT_OFFSETOF(VMDKMARKER, uType),
5611 &Marker.uType, sizeof(Marker.uType),
5612 NULL);
5613 Marker.uType = RT_LE2H_U32(Marker.uType);
5614 switch (Marker.uType)
5615 {
5616 case VMDK_MARKER_EOS:
5617 uGrainSectorAbs++;
5618 break;
5619 case VMDK_MARKER_GT:
5620 uGrainSectorAbs += 1 + VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t));
5621 break;
5622 case VMDK_MARKER_GD:
5623 uGrainSectorAbs += 1 + VMDK_BYTE2SECTOR(RT_ALIGN(pExtent->cGDEntries * sizeof(uint32_t), 512));
5624 break;
5625 case VMDK_MARKER_FOOTER:
5626 uGrainSectorAbs += 2;
5627 break;
5628 default:
5629 AssertMsgFailed(("VMDK: corrupted marker, type=%#x\n", Marker.uType));
5630 pExtent->uGrainSectorAbs = 0;
5631 return VERR_VD_VMDK_INVALID_STATE;
5632 }
5633 pExtent->cbGrainStreamRead = 0;
5634 }
5635 else
5636 {
5637 /* A compressed grain marker. If it is at/after what we're
5638 * interested in read and decompress data. */
5639 if (uSector > Marker.uSector + pExtent->cSectorsPerGrain)
5640 {
5641 uGrainSectorAbs += VMDK_BYTE2SECTOR(RT_ALIGN(Marker.cbSize + RT_OFFSETOF(VMDKMARKER, uType), 512));
5642 continue;
5643 }
5644 uint64_t uLBA;
5645 uint32_t cbGrainStreamRead = 0;
5646 rc = vmdkFileInflateSync(pImage, pExtent,
5647 VMDK_SECTOR2BYTE(uGrainSectorAbs),
5648 pExtent->pvGrain,
5649 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain),
5650 &Marker, &uLBA, &cbGrainStreamRead);
5651 if (RT_FAILURE(rc))
5652 {
5653 pExtent->uGrainSectorAbs = 0;
5654 return rc;
5655 }
5656 if ( pExtent->uGrain
5657 && uLBA / pExtent->cSectorsPerGrain <= pExtent->uGrain)
5658 {
5659 pExtent->uGrainSectorAbs = 0;
5660 return VERR_VD_VMDK_INVALID_STATE;
5661 }
5662 pExtent->uGrain = uLBA / pExtent->cSectorsPerGrain;
5663 pExtent->cbGrainStreamRead = cbGrainStreamRead;
5664 break;
5665 }
5666 } while (Marker.uType != VMDK_MARKER_EOS);
5667
5668 pExtent->uGrainSectorAbs = uGrainSectorAbs;
5669
5670 if (!pExtent->cbGrainStreamRead && Marker.uType == VMDK_MARKER_EOS)
5671 {
5672 pExtent->uGrain = UINT32_MAX;
5673 /* Must set a non-zero value for pExtent->cbGrainStreamRead or
5674 * the next read would try to get more data, and we're at EOF. */
5675 pExtent->cbGrainStreamRead = 1;
5676 }
5677 }
5678
5679 if (pExtent->uGrain > uSector / pExtent->cSectorsPerGrain)
5680 {
5681 /* The next data block we have is not for this area, so just return
5682 * that there is no data. */
5683 return VERR_VD_BLOCK_FREE;
5684 }
5685
5686 uint32_t uSectorInGrain = uSector % pExtent->cSectorsPerGrain;
5687 memcpy(pvBuf,
5688 (uint8_t *)pExtent->pvGrain + VMDK_SECTOR2BYTE(uSectorInGrain),
5689 cbRead);
5690 return VINF_SUCCESS;
5691}
5692
5693/**
5694 * Replaces a fragment of a string with the specified string.
5695 *
5696 * @returns Pointer to the allocated UTF-8 string.
5697 * @param pszWhere UTF-8 string to search in.
5698 * @param pszWhat UTF-8 string to search for.
5699 * @param pszByWhat UTF-8 string to replace the found string with.
5700 */
5701static char *vmdkStrReplace(const char *pszWhere, const char *pszWhat,
5702 const char *pszByWhat)
5703{
5704 AssertPtr(pszWhere);
5705 AssertPtr(pszWhat);
5706 AssertPtr(pszByWhat);
5707 const char *pszFoundStr = strstr(pszWhere, pszWhat);
5708 if (!pszFoundStr)
5709 return NULL;
5710 size_t cFinal = strlen(pszWhere) + 1 + strlen(pszByWhat) - strlen(pszWhat);
5711 char *pszNewStr = (char *)RTMemAlloc(cFinal);
5712 if (pszNewStr)
5713 {
5714 char *pszTmp = pszNewStr;
5715 memcpy(pszTmp, pszWhere, pszFoundStr - pszWhere);
5716 pszTmp += pszFoundStr - pszWhere;
5717 memcpy(pszTmp, pszByWhat, strlen(pszByWhat));
5718 pszTmp += strlen(pszByWhat);
5719 strcpy(pszTmp, pszFoundStr + strlen(pszWhat));
5720 }
5721 return pszNewStr;
5722}
5723
5724
5725/** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
5726static int vmdkCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
5727 PVDINTERFACE pVDIfsImage)
5728{
5729 LogFlowFunc(("pszFilename=\"%s\"\n", pszFilename));
5730 int rc = VINF_SUCCESS;
5731 PVMDKIMAGE pImage;
5732
5733 if ( !pszFilename
5734 || !*pszFilename
5735 || strchr(pszFilename, '"'))
5736 {
5737 rc = VERR_INVALID_PARAMETER;
5738 goto out;
5739 }
5740
5741 pImage = (PVMDKIMAGE)RTMemAllocZ(sizeof(VMDKIMAGE));
5742 if (!pImage)
5743 {
5744 rc = VERR_NO_MEMORY;
5745 goto out;
5746 }
5747 pImage->pszFilename = pszFilename;
5748 pImage->pFile = NULL;
5749 pImage->pExtents = NULL;
5750 pImage->pFiles = NULL;
5751 pImage->pGTCache = NULL;
5752 pImage->pDescData = NULL;
5753 pImage->pVDIfsDisk = pVDIfsDisk;
5754 pImage->pVDIfsImage = pVDIfsImage;
5755 /** @todo speed up this test open (VD_OPEN_FLAGS_INFO) by skipping as
5756 * much as possible in vmdkOpenImage. */
5757 rc = vmdkOpenImage(pImage, VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_READONLY);
5758 vmdkFreeImage(pImage, false);
5759 RTMemFree(pImage);
5760
5761out:
5762 LogFlowFunc(("returns %Rrc\n", rc));
5763 return rc;
5764}
5765
5766/** @copydoc VBOXHDDBACKEND::pfnOpen */
5767static int vmdkOpen(const char *pszFilename, unsigned uOpenFlags,
5768 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
5769 void **ppBackendData)
5770{
5771 LogFlowFunc(("pszFilename=\"%s\" uOpenFlags=%#x pVDIfsDisk=%#p pVDIfsImage=%#p ppBackendData=%#p\n", pszFilename, uOpenFlags, pVDIfsDisk, pVDIfsImage, ppBackendData));
5772 int rc;
5773 PVMDKIMAGE pImage;
5774
5775 /* Check open flags. All valid flags are supported. */
5776 if (uOpenFlags & ~VD_OPEN_FLAGS_MASK)
5777 {
5778 rc = VERR_INVALID_PARAMETER;
5779 goto out;
5780 }
5781
5782 /* Check remaining arguments. */
5783 if ( !VALID_PTR(pszFilename)
5784 || !*pszFilename
5785 || strchr(pszFilename, '"'))
5786 {
5787 rc = VERR_INVALID_PARAMETER;
5788 goto out;
5789 }
5790
5791 pImage = (PVMDKIMAGE)RTMemAllocZ(sizeof(VMDKIMAGE));
5792 if (!pImage)
5793 {
5794 rc = VERR_NO_MEMORY;
5795 goto out;
5796 }
5797 pImage->pszFilename = pszFilename;
5798 pImage->pFile = NULL;
5799 pImage->pExtents = NULL;
5800 pImage->pFiles = NULL;
5801 pImage->pGTCache = NULL;
5802 pImage->pDescData = NULL;
5803 pImage->pVDIfsDisk = pVDIfsDisk;
5804 pImage->pVDIfsImage = pVDIfsImage;
5805
5806 rc = vmdkOpenImage(pImage, uOpenFlags);
5807 if (RT_SUCCESS(rc))
5808 *ppBackendData = pImage;
5809
5810out:
5811 LogFlowFunc(("returns %Rrc (pBackendData=%#p)\n", rc, *ppBackendData));
5812 return rc;
5813}
5814
5815/** @copydoc VBOXHDDBACKEND::pfnCreate */
5816static int vmdkCreate(const char *pszFilename, uint64_t cbSize,
5817 unsigned uImageFlags, const char *pszComment,
5818 PCVDGEOMETRY pPCHSGeometry, PCVDGEOMETRY pLCHSGeometry,
5819 PCRTUUID pUuid, unsigned uOpenFlags,
5820 unsigned uPercentStart, unsigned uPercentSpan,
5821 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
5822 PVDINTERFACE pVDIfsOperation, void **ppBackendData)
5823{
5824 LogFlowFunc(("pszFilename=\"%s\" cbSize=%llu uImageFlags=%#x pszComment=\"%s\" pPCHSGeometry=%#p pLCHSGeometry=%#p Uuid=%RTuuid uOpenFlags=%#x uPercentStart=%u uPercentSpan=%u pVDIfsDisk=%#p pVDIfsImage=%#p pVDIfsOperation=%#p ppBackendData=%#p", pszFilename, cbSize, uImageFlags, pszComment, pPCHSGeometry, pLCHSGeometry, pUuid, uOpenFlags, uPercentStart, uPercentSpan, pVDIfsDisk, pVDIfsImage, pVDIfsOperation, ppBackendData));
5825 int rc;
5826 PVMDKIMAGE pImage;
5827
5828 PFNVDPROGRESS pfnProgress = NULL;
5829 void *pvUser = NULL;
5830 PVDINTERFACE pIfProgress = VDInterfaceGet(pVDIfsOperation,
5831 VDINTERFACETYPE_PROGRESS);
5832 PVDINTERFACEPROGRESS pCbProgress = NULL;
5833 if (pIfProgress)
5834 {
5835 pCbProgress = VDGetInterfaceProgress(pIfProgress);
5836 pfnProgress = pCbProgress->pfnProgress;
5837 pvUser = pIfProgress->pvUser;
5838 }
5839
5840 /* Check open flags. All valid flags are supported. */
5841 if (uOpenFlags & ~VD_OPEN_FLAGS_MASK)
5842 {
5843 rc = VERR_INVALID_PARAMETER;
5844 goto out;
5845 }
5846
5847 /* Check size. Maximum 2TB-64K for sparse images, otherwise unlimited. */
5848 if ( !cbSize
5849 || (!(uImageFlags & VD_IMAGE_FLAGS_FIXED) && cbSize >= _1T * 2 - _64K))
5850 {
5851 rc = VERR_VD_INVALID_SIZE;
5852 goto out;
5853 }
5854
5855 /* Check remaining arguments. */
5856 if ( !VALID_PTR(pszFilename)
5857 || !*pszFilename
5858 || strchr(pszFilename, '"')
5859 || !VALID_PTR(pPCHSGeometry)
5860 || !VALID_PTR(pLCHSGeometry)
5861#ifndef VBOX_WITH_VMDK_ESX
5862 || ( uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX
5863 && !(uImageFlags & VD_IMAGE_FLAGS_FIXED))
5864#endif
5865 || ( (uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
5866 && (uImageFlags & ~(VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED | VD_IMAGE_FLAGS_DIFF))))
5867 {
5868 rc = VERR_INVALID_PARAMETER;
5869 goto out;
5870 }
5871
5872 pImage = (PVMDKIMAGE)RTMemAllocZ(sizeof(VMDKIMAGE));
5873 if (!pImage)
5874 {
5875 rc = VERR_NO_MEMORY;
5876 goto out;
5877 }
5878 pImage->pszFilename = pszFilename;
5879 pImage->pFile = NULL;
5880 pImage->pExtents = NULL;
5881 pImage->pFiles = NULL;
5882 pImage->pGTCache = NULL;
5883 pImage->pDescData = NULL;
5884 pImage->pVDIfsDisk = pVDIfsDisk;
5885 pImage->pVDIfsImage = pVDIfsImage;
5886 /* Descriptors for split images can be pretty large, especially if the
5887 * filename is long. So prepare for the worst, and allocate quite some
5888 * memory for the descriptor in this case. */
5889 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_SPLIT_2G)
5890 pImage->cbDescAlloc = VMDK_SECTOR2BYTE(200);
5891 else
5892 pImage->cbDescAlloc = VMDK_SECTOR2BYTE(20);
5893 pImage->pDescData = (char *)RTMemAllocZ(pImage->cbDescAlloc);
5894 if (!pImage->pDescData)
5895 {
5896 rc = VERR_NO_MEMORY;
5897 goto out;
5898 }
5899
5900 rc = vmdkCreateImage(pImage, cbSize, uImageFlags, pszComment,
5901 pPCHSGeometry, pLCHSGeometry, pUuid,
5902 pfnProgress, pvUser, uPercentStart, uPercentSpan);
5903 if (RT_SUCCESS(rc))
5904 {
5905 /* So far the image is opened in read/write mode. Make sure the
5906 * image is opened in read-only mode if the caller requested that. */
5907 if (uOpenFlags & VD_OPEN_FLAGS_READONLY)
5908 {
5909 vmdkFreeImage(pImage, false);
5910 rc = vmdkOpenImage(pImage, uOpenFlags);
5911 if (RT_FAILURE(rc))
5912 goto out;
5913 }
5914 *ppBackendData = pImage;
5915 }
5916 else
5917 {
5918 RTMemFree(pImage->pDescData);
5919 RTMemFree(pImage);
5920 }
5921
5922out:
5923 LogFlowFunc(("returns %Rrc (pBackendData=%#p)\n", rc, *ppBackendData));
5924 return rc;
5925}
5926
5927/** @copydoc VBOXHDDBACKEND::pfnRename */
5928static int vmdkRename(void *pBackendData, const char *pszFilename)
5929{
5930 LogFlowFunc(("pBackendData=%#p pszFilename=%#p\n", pBackendData, pszFilename));
5931
5932 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
5933 int rc = VINF_SUCCESS;
5934 char **apszOldName = NULL;
5935 char **apszNewName = NULL;
5936 char **apszNewLines = NULL;
5937 char *pszOldDescName = NULL;
5938 bool fImageFreed = false;
5939 bool fEmbeddedDesc = false;
5940 unsigned cExtents = pImage->cExtents;
5941 char *pszNewBaseName = NULL;
5942 char *pszOldBaseName = NULL;
5943 char *pszNewFullName = NULL;
5944 char *pszOldFullName = NULL;
5945 const char *pszOldImageName;
5946 unsigned i, line;
5947 VMDKDESCRIPTOR DescriptorCopy;
5948 VMDKEXTENT ExtentCopy;
5949
5950 memset(&DescriptorCopy, 0, sizeof(DescriptorCopy));
5951
5952 /* Check arguments. */
5953 if ( !pImage
5954 || (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_RAWDISK)
5955 || !VALID_PTR(pszFilename)
5956 || !*pszFilename)
5957 {
5958 rc = VERR_INVALID_PARAMETER;
5959 goto out;
5960 }
5961
5962 /*
5963 * Allocate an array to store both old and new names of renamed files
5964 * in case we have to roll back the changes. Arrays are initialized
5965 * with zeros. We actually save stuff when and if we change it.
5966 */
5967 apszOldName = (char **)RTMemTmpAllocZ((cExtents + 1) * sizeof(char*));
5968 apszNewName = (char **)RTMemTmpAllocZ((cExtents + 1) * sizeof(char*));
5969 apszNewLines = (char **)RTMemTmpAllocZ((cExtents) * sizeof(char*));
5970 if (!apszOldName || !apszNewName || !apszNewLines)
5971 {
5972 rc = VERR_NO_MEMORY;
5973 goto out;
5974 }
5975
5976 /* Save the descriptor size and position. */
5977 if (pImage->pDescData)
5978 {
5979 /* Separate descriptor file. */
5980 fEmbeddedDesc = false;
5981 }
5982 else
5983 {
5984 /* Embedded descriptor file. */
5985 ExtentCopy = pImage->pExtents[0];
5986 fEmbeddedDesc = true;
5987 }
5988 /* Save the descriptor content. */
5989 DescriptorCopy.cLines = pImage->Descriptor.cLines;
5990 for (i = 0; i < DescriptorCopy.cLines; i++)
5991 {
5992 DescriptorCopy.aLines[i] = RTStrDup(pImage->Descriptor.aLines[i]);
5993 if (!DescriptorCopy.aLines[i])
5994 {
5995 rc = VERR_NO_MEMORY;
5996 goto out;
5997 }
5998 }
5999
6000 /* Prepare both old and new base names used for string replacement. */
6001 pszNewBaseName = RTStrDup(RTPathFilename(pszFilename));
6002 RTPathStripExt(pszNewBaseName);
6003 pszOldBaseName = RTStrDup(RTPathFilename(pImage->pszFilename));
6004 RTPathStripExt(pszOldBaseName);
6005 /* Prepare both old and new full names used for string replacement. */
6006 pszNewFullName = RTStrDup(pszFilename);
6007 RTPathStripExt(pszNewFullName);
6008 pszOldFullName = RTStrDup(pImage->pszFilename);
6009 RTPathStripExt(pszOldFullName);
6010
6011 /* --- Up to this point we have not done any damage yet. --- */
6012
6013 /* Save the old name for easy access to the old descriptor file. */
6014 pszOldDescName = RTStrDup(pImage->pszFilename);
6015 /* Save old image name. */
6016 pszOldImageName = pImage->pszFilename;
6017
6018 /* Update the descriptor with modified extent names. */
6019 for (i = 0, line = pImage->Descriptor.uFirstExtent;
6020 i < cExtents;
6021 i++, line = pImage->Descriptor.aNextLines[line])
6022 {
6023 /* Assume that vmdkStrReplace will fail. */
6024 rc = VERR_NO_MEMORY;
6025 /* Update the descriptor. */
6026 apszNewLines[i] = vmdkStrReplace(pImage->Descriptor.aLines[line],
6027 pszOldBaseName, pszNewBaseName);
6028 if (!apszNewLines[i])
6029 goto rollback;
6030 pImage->Descriptor.aLines[line] = apszNewLines[i];
6031 }
6032 /* Make sure the descriptor gets written back. */
6033 pImage->Descriptor.fDirty = true;
6034 /* Flush the descriptor now, in case it is embedded. */
6035 vmdkFlushImage(pImage);
6036
6037 /* Close and rename/move extents. */
6038 for (i = 0; i < cExtents; i++)
6039 {
6040 PVMDKEXTENT pExtent = &pImage->pExtents[i];
6041 /* Compose new name for the extent. */
6042 apszNewName[i] = vmdkStrReplace(pExtent->pszFullname,
6043 pszOldFullName, pszNewFullName);
6044 if (!apszNewName[i])
6045 goto rollback;
6046 /* Close the extent file. */
6047 vmdkFileClose(pImage, &pExtent->pFile, false);
6048 /* Rename the extent file. */
6049 rc = vmdkFileMove(pImage, pExtent->pszFullname, apszNewName[i], 0);
6050 if (RT_FAILURE(rc))
6051 goto rollback;
6052 /* Remember the old name. */
6053 apszOldName[i] = RTStrDup(pExtent->pszFullname);
6054 }
6055 /* Release all old stuff. */
6056 vmdkFreeImage(pImage, false);
6057
6058 fImageFreed = true;
6059
6060 /* Last elements of new/old name arrays are intended for
6061 * storing descriptor's names.
6062 */
6063 apszNewName[cExtents] = RTStrDup(pszFilename);
6064 /* Rename the descriptor file if it's separate. */
6065 if (!fEmbeddedDesc)
6066 {
6067 rc = vmdkFileMove(pImage, pImage->pszFilename, apszNewName[cExtents], 0);
6068 if (RT_FAILURE(rc))
6069 goto rollback;
6070 /* Save old name only if we may need to change it back. */
6071 apszOldName[cExtents] = RTStrDup(pszFilename);
6072 }
6073
6074 /* Update pImage with the new information. */
6075 pImage->pszFilename = pszFilename;
6076
6077 /* Open the new image. */
6078 rc = vmdkOpenImage(pImage, pImage->uOpenFlags);
6079 if (RT_SUCCESS(rc))
6080 goto out;
6081
6082rollback:
6083 /* Roll back all changes in case of failure. */
6084 if (RT_FAILURE(rc))
6085 {
6086 int rrc;
6087 if (!fImageFreed)
6088 {
6089 /*
6090 * Some extents may have been closed, close the rest. We will
6091 * re-open the whole thing later.
6092 */
6093 vmdkFreeImage(pImage, false);
6094 }
6095 /* Rename files back. */
6096 for (i = 0; i <= cExtents; i++)
6097 {
6098 if (apszOldName[i])
6099 {
6100 rrc = vmdkFileMove(pImage, apszNewName[i], apszOldName[i], 0);
6101 AssertRC(rrc);
6102 }
6103 }
6104 /* Restore the old descriptor. */
6105 PVMDKFILE pFile;
6106 rrc = vmdkFileOpen(pImage, &pFile, pszOldDescName,
6107 VDOpenFlagsToFileOpenFlags(VD_OPEN_FLAGS_NORMAL,
6108 false /* fCreate */),
6109 false /* fAsyncIO */);
6110 AssertRC(rrc);
6111 if (fEmbeddedDesc)
6112 {
6113 ExtentCopy.pFile = pFile;
6114 pImage->pExtents = &ExtentCopy;
6115 }
6116 else
6117 {
6118 /* Shouldn't be null for separate descriptor.
6119 * There will be no access to the actual content.
6120 */
6121 pImage->pDescData = pszOldDescName;
6122 pImage->pFile = pFile;
6123 }
6124 pImage->Descriptor = DescriptorCopy;
6125 vmdkWriteDescriptor(pImage);
6126 vmdkFileClose(pImage, &pFile, false);
6127 /* Get rid of the stuff we implanted. */
6128 pImage->pExtents = NULL;
6129 pImage->pFile = NULL;
6130 pImage->pDescData = NULL;
6131 /* Re-open the image back. */
6132 pImage->pszFilename = pszOldImageName;
6133 rrc = vmdkOpenImage(pImage, pImage->uOpenFlags);
6134 AssertRC(rrc);
6135 }
6136
6137out:
6138 for (i = 0; i < DescriptorCopy.cLines; i++)
6139 if (DescriptorCopy.aLines[i])
6140 RTStrFree(DescriptorCopy.aLines[i]);
6141 if (apszOldName)
6142 {
6143 for (i = 0; i <= cExtents; i++)
6144 if (apszOldName[i])
6145 RTStrFree(apszOldName[i]);
6146 RTMemTmpFree(apszOldName);
6147 }
6148 if (apszNewName)
6149 {
6150 for (i = 0; i <= cExtents; i++)
6151 if (apszNewName[i])
6152 RTStrFree(apszNewName[i]);
6153 RTMemTmpFree(apszNewName);
6154 }
6155 if (apszNewLines)
6156 {
6157 for (i = 0; i < cExtents; i++)
6158 if (apszNewLines[i])
6159 RTStrFree(apszNewLines[i]);
6160 RTMemTmpFree(apszNewLines);
6161 }
6162 if (pszOldDescName)
6163 RTStrFree(pszOldDescName);
6164 if (pszOldBaseName)
6165 RTStrFree(pszOldBaseName);
6166 if (pszNewBaseName)
6167 RTStrFree(pszNewBaseName);
6168 if (pszOldFullName)
6169 RTStrFree(pszOldFullName);
6170 if (pszNewFullName)
6171 RTStrFree(pszNewFullName);
6172 LogFlowFunc(("returns %Rrc\n", rc));
6173 return rc;
6174}
6175
6176/** @copydoc VBOXHDDBACKEND::pfnClose */
6177static int vmdkClose(void *pBackendData, bool fDelete)
6178{
6179 LogFlowFunc(("pBackendData=%#p fDelete=%d\n", pBackendData, fDelete));
6180 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6181 int rc;
6182
6183 rc = vmdkFreeImage(pImage, fDelete);
6184 RTMemFree(pImage);
6185
6186 LogFlowFunc(("returns %Rrc\n", rc));
6187 return rc;
6188}
6189
6190/** @copydoc VBOXHDDBACKEND::pfnRead */
6191static int vmdkRead(void *pBackendData, uint64_t uOffset, void *pvBuf,
6192 size_t cbToRead, size_t *pcbActuallyRead)
6193{
6194 LogFlowFunc(("pBackendData=%#p uOffset=%llu pvBuf=%#p cbToRead=%zu pcbActuallyRead=%#p\n", pBackendData, uOffset, pvBuf, cbToRead, pcbActuallyRead));
6195 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6196 PVMDKEXTENT pExtent;
6197 uint64_t uSectorExtentRel;
6198 uint64_t uSectorExtentAbs;
6199 int rc;
6200
6201 AssertPtr(pImage);
6202 Assert(uOffset % 512 == 0);
6203 Assert(cbToRead % 512 == 0);
6204
6205 if ( uOffset + cbToRead > pImage->cbSize
6206 || cbToRead == 0)
6207 {
6208 rc = VERR_INVALID_PARAMETER;
6209 goto out;
6210 }
6211
6212 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
6213 &pExtent, &uSectorExtentRel);
6214 if (RT_FAILURE(rc))
6215 goto out;
6216
6217 /* Check access permissions as defined in the extent descriptor. */
6218 if (pExtent->enmAccess == VMDKACCESS_NOACCESS)
6219 {
6220 rc = VERR_VD_VMDK_INVALID_STATE;
6221 goto out;
6222 }
6223
6224 /* Clip read range to remain in this extent. */
6225 cbToRead = RT_MIN(cbToRead, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6226
6227 /* Handle the read according to the current extent type. */
6228 switch (pExtent->enmType)
6229 {
6230 case VMDKETYPE_HOSTED_SPARSE:
6231#ifdef VBOX_WITH_VMDK_ESX
6232 case VMDKETYPE_ESX_SPARSE:
6233#endif /* VBOX_WITH_VMDK_ESX */
6234 rc = vmdkGetSector(pImage, pExtent, uSectorExtentRel,
6235 &uSectorExtentAbs);
6236 if (RT_FAILURE(rc))
6237 goto out;
6238 /* Clip read range to at most the rest of the grain. */
6239 cbToRead = RT_MIN(cbToRead, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
6240 Assert(!(cbToRead % 512));
6241 if (uSectorExtentAbs == 0)
6242 {
6243 if ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6244 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6245 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
6246 rc = VERR_VD_BLOCK_FREE;
6247 else
6248 rc = vmdkStreamReadSequential(pImage, pExtent,
6249 uSectorExtentRel,
6250 pvBuf, cbToRead);
6251 }
6252 else
6253 {
6254 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6255 {
6256 uint32_t uSectorInGrain = uSectorExtentRel % pExtent->cSectorsPerGrain;
6257 uSectorExtentAbs -= uSectorInGrain;
6258 uint64_t uLBA;
6259 if (pExtent->uGrainSectorAbs != uSectorExtentAbs)
6260 {
6261 rc = vmdkFileInflateSync(pImage, pExtent,
6262 VMDK_SECTOR2BYTE(uSectorExtentAbs),
6263 pExtent->pvGrain,
6264 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain),
6265 NULL, &uLBA, NULL);
6266 if (RT_FAILURE(rc))
6267 {
6268 pExtent->uGrainSectorAbs = 0;
6269 AssertRC(rc);
6270 goto out;
6271 }
6272 pExtent->uGrainSectorAbs = uSectorExtentAbs;
6273 pExtent->uGrain = uSectorExtentRel / pExtent->cSectorsPerGrain;
6274 Assert(uLBA == uSectorExtentRel);
6275 }
6276 memcpy(pvBuf, (uint8_t *)pExtent->pvGrain + VMDK_SECTOR2BYTE(uSectorInGrain), cbToRead);
6277 }
6278 else
6279 {
6280 rc = vmdkFileReadSync(pImage, pExtent->pFile,
6281 VMDK_SECTOR2BYTE(uSectorExtentAbs),
6282 pvBuf, cbToRead, NULL);
6283 }
6284 }
6285 break;
6286 case VMDKETYPE_VMFS:
6287 case VMDKETYPE_FLAT:
6288 rc = vmdkFileReadSync(pImage, pExtent->pFile,
6289 VMDK_SECTOR2BYTE(uSectorExtentRel),
6290 pvBuf, cbToRead, NULL);
6291 break;
6292 case VMDKETYPE_ZERO:
6293 memset(pvBuf, '\0', cbToRead);
6294 break;
6295 }
6296 if (pcbActuallyRead)
6297 *pcbActuallyRead = cbToRead;
6298
6299out:
6300 LogFlowFunc(("returns %Rrc\n", rc));
6301 return rc;
6302}
6303
6304/** @copydoc VBOXHDDBACKEND::pfnWrite */
6305static int vmdkWrite(void *pBackendData, uint64_t uOffset, const void *pvBuf,
6306 size_t cbToWrite, size_t *pcbWriteProcess,
6307 size_t *pcbPreRead, size_t *pcbPostRead, unsigned fWrite)
6308{
6309 LogFlowFunc(("pBackendData=%#p uOffset=%llu pvBuf=%#p cbToWrite=%zu pcbWriteProcess=%#p pcbPreRead=%#p pcbPostRead=%#p\n", pBackendData, uOffset, pvBuf, cbToWrite, pcbWriteProcess, pcbPreRead, pcbPostRead));
6310 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6311 PVMDKEXTENT pExtent;
6312 uint64_t uSectorExtentRel;
6313 uint64_t uSectorExtentAbs;
6314 int rc;
6315
6316 AssertPtr(pImage);
6317 Assert(uOffset % 512 == 0);
6318 Assert(cbToWrite % 512 == 0);
6319
6320 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6321 {
6322 rc = VERR_VD_IMAGE_READ_ONLY;
6323 goto out;
6324 }
6325
6326 if (cbToWrite == 0)
6327 {
6328 rc = VERR_INVALID_PARAMETER;
6329 goto out;
6330 }
6331
6332 /* No size check here, will do that later when the extent is located.
6333 * There are sparse images out there which according to the spec are
6334 * invalid, because the total size is not a multiple of the grain size.
6335 * Also for sparse images which are stitched together in odd ways (not at
6336 * grain boundaries, and with the nominal size not being a multiple of the
6337 * grain size), this would prevent writing to the last grain. */
6338
6339 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
6340 &pExtent, &uSectorExtentRel);
6341 if (RT_FAILURE(rc))
6342 goto out;
6343
6344 /* Check access permissions as defined in the extent descriptor. */
6345 if ( pExtent->enmAccess != VMDKACCESS_READWRITE
6346 && ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6347 && !pImage->pExtents[0].uAppendPosition
6348 && pExtent->enmAccess != VMDKACCESS_READONLY))
6349 {
6350 rc = VERR_VD_VMDK_INVALID_STATE;
6351 goto out;
6352 }
6353
6354 /* Handle the write according to the current extent type. */
6355 switch (pExtent->enmType)
6356 {
6357 case VMDKETYPE_HOSTED_SPARSE:
6358#ifdef VBOX_WITH_VMDK_ESX
6359 case VMDKETYPE_ESX_SPARSE:
6360#endif /* VBOX_WITH_VMDK_ESX */
6361 rc = vmdkGetSector(pImage, pExtent, uSectorExtentRel,
6362 &uSectorExtentAbs);
6363 if (RT_FAILURE(rc))
6364 goto out;
6365 /* Clip write range to at most the rest of the grain. */
6366 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
6367 if ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
6368 && uSectorExtentRel < (uint64_t)pExtent->uLastGrainAccess * pExtent->cSectorsPerGrain)
6369 {
6370 rc = VERR_VD_VMDK_INVALID_WRITE;
6371 goto out;
6372 }
6373 if (uSectorExtentAbs == 0)
6374 {
6375 if (!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6376 {
6377 if (cbToWrite == VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
6378 {
6379 /* Full block write to a previously unallocated block.
6380 * Check if the caller wants feedback. */
6381 if (!(fWrite & VD_WRITE_NO_ALLOC))
6382 {
6383 /* Allocate GT and store the grain. */
6384 rc = vmdkAllocGrain(pImage, pExtent,
6385 uSectorExtentRel,
6386 pvBuf, cbToWrite);
6387 }
6388 else
6389 rc = VERR_VD_BLOCK_FREE;
6390 *pcbPreRead = 0;
6391 *pcbPostRead = 0;
6392 }
6393 else
6394 {
6395 /* Clip write range to remain in this extent. */
6396 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6397 *pcbPreRead = VMDK_SECTOR2BYTE(uSectorExtentRel % pExtent->cSectorsPerGrain);
6398 *pcbPostRead = VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain) - cbToWrite - *pcbPreRead;
6399 rc = VERR_VD_BLOCK_FREE;
6400 }
6401 }
6402 else
6403 {
6404 rc = vmdkStreamAllocGrain(pImage, pExtent,
6405 uSectorExtentRel,
6406 pvBuf, cbToWrite);
6407 }
6408 }
6409 else
6410 {
6411 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6412 {
6413 /* A partial write to a streamOptimized image is simply
6414 * invalid. It requires rewriting already compressed data
6415 * which is somewhere between expensive and impossible. */
6416 rc = VERR_VD_VMDK_INVALID_STATE;
6417 pExtent->uGrainSectorAbs = 0;
6418 AssertRC(rc);
6419 }
6420 else
6421 {
6422 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
6423 VMDK_SECTOR2BYTE(uSectorExtentAbs),
6424 pvBuf, cbToWrite, NULL);
6425 }
6426 }
6427 break;
6428 case VMDKETYPE_VMFS:
6429 case VMDKETYPE_FLAT:
6430 /* Clip write range to remain in this extent. */
6431 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6432 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
6433 VMDK_SECTOR2BYTE(uSectorExtentRel),
6434 pvBuf, cbToWrite, NULL);
6435 break;
6436 case VMDKETYPE_ZERO:
6437 /* Clip write range to remain in this extent. */
6438 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6439 break;
6440 }
6441
6442 if (pcbWriteProcess)
6443 *pcbWriteProcess = cbToWrite;
6444
6445out:
6446 LogFlowFunc(("returns %Rrc\n", rc));
6447 return rc;
6448}
6449
6450/** @copydoc VBOXHDDBACKEND::pfnFlush */
6451static int vmdkFlush(void *pBackendData)
6452{
6453 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6454 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6455 int rc = VINF_SUCCESS;
6456
6457 AssertPtr(pImage);
6458
6459 if (!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6460 rc = vmdkFlushImage(pImage);
6461
6462 LogFlowFunc(("returns %Rrc\n", rc));
6463 return rc;
6464}
6465
6466/** @copydoc VBOXHDDBACKEND::pfnGetVersion */
6467static unsigned vmdkGetVersion(void *pBackendData)
6468{
6469 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6470 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6471
6472 AssertPtr(pImage);
6473
6474 if (pImage)
6475 return VMDK_IMAGE_VERSION;
6476 else
6477 return 0;
6478}
6479
6480/** @copydoc VBOXHDDBACKEND::pfnGetSize */
6481static uint64_t vmdkGetSize(void *pBackendData)
6482{
6483 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6484 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6485
6486 AssertPtr(pImage);
6487
6488 if (pImage)
6489 return pImage->cbSize;
6490 else
6491 return 0;
6492}
6493
6494/** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
6495static uint64_t vmdkGetFileSize(void *pBackendData)
6496{
6497 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6498 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6499 uint64_t cb = 0;
6500
6501 AssertPtr(pImage);
6502
6503 if (pImage)
6504 {
6505 uint64_t cbFile;
6506 if (pImage->pFile != NULL)
6507 {
6508 int rc = vmdkFileGetSize(pImage, pImage->pFile, &cbFile);
6509 if (RT_SUCCESS(rc))
6510 cb += cbFile;
6511 }
6512 for (unsigned i = 0; i < pImage->cExtents; i++)
6513 {
6514 if (pImage->pExtents[i].pFile != NULL)
6515 {
6516 int rc = vmdkFileGetSize(pImage, pImage->pExtents[i].pFile, &cbFile);
6517 if (RT_SUCCESS(rc))
6518 cb += cbFile;
6519 }
6520 }
6521 }
6522
6523 LogFlowFunc(("returns %lld\n", cb));
6524 return cb;
6525}
6526
6527/** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
6528static int vmdkGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
6529{
6530 LogFlowFunc(("pBackendData=%#p pPCHSGeometry=%#p\n", pBackendData, pPCHSGeometry));
6531 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6532 int rc;
6533
6534 AssertPtr(pImage);
6535
6536 if (pImage)
6537 {
6538 if (pImage->PCHSGeometry.cCylinders)
6539 {
6540 *pPCHSGeometry = pImage->PCHSGeometry;
6541 rc = VINF_SUCCESS;
6542 }
6543 else
6544 rc = VERR_VD_GEOMETRY_NOT_SET;
6545 }
6546 else
6547 rc = VERR_VD_NOT_OPENED;
6548
6549 LogFlowFunc(("returns %Rrc (PCHS=%u/%u/%u)\n", rc, pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads, pPCHSGeometry->cSectors));
6550 return rc;
6551}
6552
6553/** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
6554static int vmdkSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
6555{
6556 LogFlowFunc(("pBackendData=%#p pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pBackendData, pPCHSGeometry, pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads, pPCHSGeometry->cSectors));
6557 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6558 int rc;
6559
6560 AssertPtr(pImage);
6561
6562 if (pImage)
6563 {
6564 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6565 {
6566 rc = VERR_VD_IMAGE_READ_ONLY;
6567 goto out;
6568 }
6569 if (pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6570 {
6571 rc = VERR_NOT_SUPPORTED;
6572 goto out;
6573 }
6574 rc = vmdkDescSetPCHSGeometry(pImage, pPCHSGeometry);
6575 if (RT_FAILURE(rc))
6576 goto out;
6577
6578 pImage->PCHSGeometry = *pPCHSGeometry;
6579 rc = VINF_SUCCESS;
6580 }
6581 else
6582 rc = VERR_VD_NOT_OPENED;
6583
6584out:
6585 LogFlowFunc(("returns %Rrc\n", rc));
6586 return rc;
6587}
6588
6589/** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
6590static int vmdkGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
6591{
6592 LogFlowFunc(("pBackendData=%#p pLCHSGeometry=%#p\n", pBackendData, pLCHSGeometry));
6593 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6594 int rc;
6595
6596 AssertPtr(pImage);
6597
6598 if (pImage)
6599 {
6600 if (pImage->LCHSGeometry.cCylinders)
6601 {
6602 *pLCHSGeometry = pImage->LCHSGeometry;
6603 rc = VINF_SUCCESS;
6604 }
6605 else
6606 rc = VERR_VD_GEOMETRY_NOT_SET;
6607 }
6608 else
6609 rc = VERR_VD_NOT_OPENED;
6610
6611 LogFlowFunc(("returns %Rrc (LCHS=%u/%u/%u)\n", rc, pLCHSGeometry->cCylinders, pLCHSGeometry->cHeads, pLCHSGeometry->cSectors));
6612 return rc;
6613}
6614
6615/** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
6616static int vmdkSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
6617{
6618 LogFlowFunc(("pBackendData=%#p pLCHSGeometry=%#p LCHS=%u/%u/%u\n", pBackendData, pLCHSGeometry, pLCHSGeometry->cCylinders, pLCHSGeometry->cHeads, pLCHSGeometry->cSectors));
6619 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6620 int rc;
6621
6622 AssertPtr(pImage);
6623
6624 if (pImage)
6625 {
6626 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6627 {
6628 rc = VERR_VD_IMAGE_READ_ONLY;
6629 goto out;
6630 }
6631 if (pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6632 {
6633 rc = VERR_NOT_SUPPORTED;
6634 goto out;
6635 }
6636 rc = vmdkDescSetLCHSGeometry(pImage, pLCHSGeometry);
6637 if (RT_FAILURE(rc))
6638 goto out;
6639
6640 pImage->LCHSGeometry = *pLCHSGeometry;
6641 rc = VINF_SUCCESS;
6642 }
6643 else
6644 rc = VERR_VD_NOT_OPENED;
6645
6646out:
6647 LogFlowFunc(("returns %Rrc\n", rc));
6648 return rc;
6649}
6650
6651/** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
6652static unsigned vmdkGetImageFlags(void *pBackendData)
6653{
6654 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6655 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6656 unsigned uImageFlags;
6657
6658 AssertPtr(pImage);
6659
6660 if (pImage)
6661 uImageFlags = pImage->uImageFlags;
6662 else
6663 uImageFlags = 0;
6664
6665 LogFlowFunc(("returns %#x\n", uImageFlags));
6666 return uImageFlags;
6667}
6668
6669/** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
6670static unsigned vmdkGetOpenFlags(void *pBackendData)
6671{
6672 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6673 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6674 unsigned uOpenFlags;
6675
6676 AssertPtr(pImage);
6677
6678 if (pImage)
6679 uOpenFlags = pImage->uOpenFlags;
6680 else
6681 uOpenFlags = 0;
6682
6683 LogFlowFunc(("returns %#x\n", uOpenFlags));
6684 return uOpenFlags;
6685}
6686
6687/** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
6688static int vmdkSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
6689{
6690 LogFlowFunc(("pBackendData=%#p\n uOpenFlags=%#x", pBackendData, uOpenFlags));
6691 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6692 int rc;
6693
6694 /* Image must be opened and the new flags must be valid. */
6695 if (!pImage || (uOpenFlags & ~(VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO | VD_OPEN_FLAGS_SHAREABLE | VD_OPEN_FLAGS_SEQUENTIAL)))
6696 {
6697 rc = VERR_INVALID_PARAMETER;
6698 goto out;
6699 }
6700
6701 /* StreamOptimized images need special treatment: reopen is prohibited. */
6702 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6703 {
6704 if (pImage->uOpenFlags == uOpenFlags)
6705 rc = VINF_SUCCESS;
6706 else
6707 rc = VERR_INVALID_PARAMETER;
6708 goto out;
6709 }
6710
6711 /* Implement this operation via reopening the image. */
6712 vmdkFreeImage(pImage, false);
6713 rc = vmdkOpenImage(pImage, uOpenFlags);
6714
6715out:
6716 LogFlowFunc(("returns %Rrc\n", rc));
6717 return rc;
6718}
6719
6720/** @copydoc VBOXHDDBACKEND::pfnGetComment */
6721static int vmdkGetComment(void *pBackendData, char *pszComment,
6722 size_t cbComment)
6723{
6724 LogFlowFunc(("pBackendData=%#p pszComment=%#p cbComment=%zu\n", pBackendData, pszComment, cbComment));
6725 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6726 int rc;
6727
6728 AssertPtr(pImage);
6729
6730 if (pImage)
6731 {
6732 const char *pszCommentEncoded = NULL;
6733 rc = vmdkDescDDBGetStr(pImage, &pImage->Descriptor,
6734 "ddb.comment", &pszCommentEncoded);
6735 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
6736 pszCommentEncoded = NULL;
6737 else if (RT_FAILURE(rc))
6738 goto out;
6739
6740 if (pszComment && pszCommentEncoded)
6741 rc = vmdkDecodeString(pszCommentEncoded, pszComment, cbComment);
6742 else
6743 {
6744 if (pszComment)
6745 *pszComment = '\0';
6746 rc = VINF_SUCCESS;
6747 }
6748 if (pszCommentEncoded)
6749 RTStrFree((char *)(void *)pszCommentEncoded);
6750 }
6751 else
6752 rc = VERR_VD_NOT_OPENED;
6753
6754out:
6755 LogFlowFunc(("returns %Rrc comment='%s'\n", rc, pszComment));
6756 return rc;
6757}
6758
6759/** @copydoc VBOXHDDBACKEND::pfnSetComment */
6760static int vmdkSetComment(void *pBackendData, const char *pszComment)
6761{
6762 LogFlowFunc(("pBackendData=%#p pszComment=\"%s\"\n", pBackendData, pszComment));
6763 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6764 int rc;
6765
6766 AssertPtr(pImage);
6767
6768 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6769 {
6770 rc = VERR_VD_IMAGE_READ_ONLY;
6771 goto out;
6772 }
6773 if (pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6774 {
6775 rc = VERR_NOT_SUPPORTED;
6776 goto out;
6777 }
6778
6779 if (pImage)
6780 rc = vmdkSetImageComment(pImage, pszComment);
6781 else
6782 rc = VERR_VD_NOT_OPENED;
6783
6784out:
6785 LogFlowFunc(("returns %Rrc\n", rc));
6786 return rc;
6787}
6788
6789/** @copydoc VBOXHDDBACKEND::pfnGetUuid */
6790static int vmdkGetUuid(void *pBackendData, PRTUUID pUuid)
6791{
6792 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6793 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6794 int rc;
6795
6796 AssertPtr(pImage);
6797
6798 if (pImage)
6799 {
6800 *pUuid = pImage->ImageUuid;
6801 rc = VINF_SUCCESS;
6802 }
6803 else
6804 rc = VERR_VD_NOT_OPENED;
6805
6806 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6807 return rc;
6808}
6809
6810/** @copydoc VBOXHDDBACKEND::pfnSetUuid */
6811static int vmdkSetUuid(void *pBackendData, PCRTUUID pUuid)
6812{
6813 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6814 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6815 int rc;
6816
6817 LogFlowFunc(("%RTuuid\n", pUuid));
6818 AssertPtr(pImage);
6819
6820 if (pImage)
6821 {
6822 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6823 {
6824 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6825 {
6826 pImage->ImageUuid = *pUuid;
6827 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6828 VMDK_DDB_IMAGE_UUID, pUuid);
6829 if (RT_FAILURE(rc))
6830 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
6831 rc = VINF_SUCCESS;
6832 }
6833 else
6834 rc = VERR_NOT_SUPPORTED;
6835 }
6836 else
6837 rc = VERR_VD_IMAGE_READ_ONLY;
6838 }
6839 else
6840 rc = VERR_VD_NOT_OPENED;
6841
6842 LogFlowFunc(("returns %Rrc\n", rc));
6843 return rc;
6844}
6845
6846/** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
6847static int vmdkGetModificationUuid(void *pBackendData, PRTUUID pUuid)
6848{
6849 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6850 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6851 int rc;
6852
6853 AssertPtr(pImage);
6854
6855 if (pImage)
6856 {
6857 *pUuid = pImage->ModificationUuid;
6858 rc = VINF_SUCCESS;
6859 }
6860 else
6861 rc = VERR_VD_NOT_OPENED;
6862
6863 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6864 return rc;
6865}
6866
6867/** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
6868static int vmdkSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
6869{
6870 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6871 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6872 int rc;
6873
6874 AssertPtr(pImage);
6875
6876 if (pImage)
6877 {
6878 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6879 {
6880 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6881 {
6882 /* Only touch the modification uuid if it changed. */
6883 if (RTUuidCompare(&pImage->ModificationUuid, pUuid))
6884 {
6885 pImage->ModificationUuid = *pUuid;
6886 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6887 VMDK_DDB_MODIFICATION_UUID, pUuid);
6888 if (RT_FAILURE(rc))
6889 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in descriptor in '%s'"), pImage->pszFilename);
6890 }
6891 rc = VINF_SUCCESS;
6892 }
6893 else
6894 rc = VERR_NOT_SUPPORTED;
6895 }
6896 else
6897 rc = VERR_VD_IMAGE_READ_ONLY;
6898 }
6899 else
6900 rc = VERR_VD_NOT_OPENED;
6901
6902 LogFlowFunc(("returns %Rrc\n", rc));
6903 return rc;
6904}
6905
6906/** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
6907static int vmdkGetParentUuid(void *pBackendData, PRTUUID pUuid)
6908{
6909 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6910 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6911 int rc;
6912
6913 AssertPtr(pImage);
6914
6915 if (pImage)
6916 {
6917 *pUuid = pImage->ParentUuid;
6918 rc = VINF_SUCCESS;
6919 }
6920 else
6921 rc = VERR_VD_NOT_OPENED;
6922
6923 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6924 return rc;
6925}
6926
6927/** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
6928static int vmdkSetParentUuid(void *pBackendData, PCRTUUID pUuid)
6929{
6930 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6931 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6932 int rc;
6933
6934 AssertPtr(pImage);
6935
6936 if (pImage)
6937 {
6938 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6939 {
6940 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6941 {
6942 pImage->ParentUuid = *pUuid;
6943 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6944 VMDK_DDB_PARENT_UUID, pUuid);
6945 if (RT_FAILURE(rc))
6946 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
6947 rc = VINF_SUCCESS;
6948 }
6949 else
6950 rc = VERR_NOT_SUPPORTED;
6951 }
6952 else
6953 rc = VERR_VD_IMAGE_READ_ONLY;
6954 }
6955 else
6956 rc = VERR_VD_NOT_OPENED;
6957
6958 LogFlowFunc(("returns %Rrc\n", rc));
6959 return rc;
6960}
6961
6962/** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
6963static int vmdkGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
6964{
6965 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6966 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6967 int rc;
6968
6969 AssertPtr(pImage);
6970
6971 if (pImage)
6972 {
6973 *pUuid = pImage->ParentModificationUuid;
6974 rc = VINF_SUCCESS;
6975 }
6976 else
6977 rc = VERR_VD_NOT_OPENED;
6978
6979 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6980 return rc;
6981}
6982
6983/** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
6984static int vmdkSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
6985{
6986 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6987 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6988 int rc;
6989
6990 AssertPtr(pImage);
6991
6992 if (pImage)
6993 {
6994 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6995 {
6996 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6997 {
6998 pImage->ParentModificationUuid = *pUuid;
6999 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
7000 VMDK_DDB_PARENT_MODIFICATION_UUID, pUuid);
7001 if (RT_FAILURE(rc))
7002 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
7003 rc = VINF_SUCCESS;
7004 }
7005 else
7006 rc = VERR_NOT_SUPPORTED;
7007 }
7008 else
7009 rc = VERR_VD_IMAGE_READ_ONLY;
7010 }
7011 else
7012 rc = VERR_VD_NOT_OPENED;
7013
7014 LogFlowFunc(("returns %Rrc\n", rc));
7015 return rc;
7016}
7017
7018/** @copydoc VBOXHDDBACKEND::pfnDump */
7019static void vmdkDump(void *pBackendData)
7020{
7021 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7022
7023 AssertPtr(pImage);
7024 if (pImage)
7025 {
7026 vmdkMessage(pImage, "Header: Geometry PCHS=%u/%u/%u LCHS=%u/%u/%u cbSector=%llu\n",
7027 pImage->PCHSGeometry.cCylinders, pImage->PCHSGeometry.cHeads, pImage->PCHSGeometry.cSectors,
7028 pImage->LCHSGeometry.cCylinders, pImage->LCHSGeometry.cHeads, pImage->LCHSGeometry.cSectors,
7029 VMDK_BYTE2SECTOR(pImage->cbSize));
7030 vmdkMessage(pImage, "Header: uuidCreation={%RTuuid}\n", &pImage->ImageUuid);
7031 vmdkMessage(pImage, "Header: uuidModification={%RTuuid}\n", &pImage->ModificationUuid);
7032 vmdkMessage(pImage, "Header: uuidParent={%RTuuid}\n", &pImage->ParentUuid);
7033 vmdkMessage(pImage, "Header: uuidParentModification={%RTuuid}\n", &pImage->ParentModificationUuid);
7034 }
7035}
7036
7037/** @copydoc VBOXHDDBACKEND::pfnIsAsyncIOSupported */
7038static bool vmdkIsAsyncIOSupported(void *pBackendData)
7039{
7040 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7041
7042 /* We do not support async I/O for stream optimized VMDK images. */
7043 return (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED) == 0;
7044}
7045
7046/** @copydoc VBOXHDDBACKEND::pfnAsyncRead */
7047static int vmdkAsyncRead(void *pBackendData, uint64_t uOffset, size_t cbRead,
7048 PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
7049{
7050 LogFlowFunc(("pBackendData=%#p uOffset=%llu pIoCtx=%#p cbToRead=%zu pcbActuallyRead=%#p\n",
7051 pBackendData, uOffset, pIoCtx, cbRead, pcbActuallyRead));
7052 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7053 PVMDKEXTENT pExtent;
7054 uint64_t uSectorExtentRel;
7055 uint64_t uSectorExtentAbs;
7056 int rc;
7057
7058 AssertPtr(pImage);
7059 Assert(uOffset % 512 == 0);
7060 Assert(cbRead % 512 == 0);
7061
7062 if ( uOffset + cbRead > pImage->cbSize
7063 || cbRead == 0)
7064 {
7065 rc = VERR_INVALID_PARAMETER;
7066 goto out;
7067 }
7068
7069 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
7070 &pExtent, &uSectorExtentRel);
7071 if (RT_FAILURE(rc))
7072 goto out;
7073
7074 /* Check access permissions as defined in the extent descriptor. */
7075 if (pExtent->enmAccess == VMDKACCESS_NOACCESS)
7076 {
7077 rc = VERR_VD_VMDK_INVALID_STATE;
7078 goto out;
7079 }
7080
7081 /* Clip read range to remain in this extent. */
7082 cbRead = RT_MIN(cbRead, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7083
7084 /* Handle the read according to the current extent type. */
7085 switch (pExtent->enmType)
7086 {
7087 case VMDKETYPE_HOSTED_SPARSE:
7088#ifdef VBOX_WITH_VMDK_ESX
7089 case VMDKETYPE_ESX_SPARSE:
7090#endif /* VBOX_WITH_VMDK_ESX */
7091 rc = vmdkGetSectorAsync(pImage, pIoCtx, pExtent,
7092 uSectorExtentRel, &uSectorExtentAbs);
7093 if (RT_FAILURE(rc))
7094 goto out;
7095 /* Clip read range to at most the rest of the grain. */
7096 cbRead = RT_MIN(cbRead, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
7097 Assert(!(cbRead % 512));
7098 if (uSectorExtentAbs == 0)
7099 rc = VERR_VD_BLOCK_FREE;
7100 else
7101 {
7102 AssertMsg(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED), ("Async I/O is not supported for stream optimized VMDK's\n"));
7103 rc = vmdkFileReadUserAsync(pImage, pExtent->pFile,
7104 VMDK_SECTOR2BYTE(uSectorExtentAbs),
7105 pIoCtx, cbRead);
7106 }
7107 break;
7108 case VMDKETYPE_VMFS:
7109 case VMDKETYPE_FLAT:
7110 rc = vmdkFileReadUserAsync(pImage, pExtent->pFile,
7111 VMDK_SECTOR2BYTE(uSectorExtentRel),
7112 pIoCtx, cbRead);
7113 break;
7114 case VMDKETYPE_ZERO:
7115 size_t cbSet;
7116
7117 cbSet = vmdkFileIoCtxSet(pImage, pIoCtx, 0, cbRead);
7118 Assert(cbSet == cbRead);
7119
7120 rc = VINF_SUCCESS;
7121 break;
7122 }
7123 if (pcbActuallyRead)
7124 *pcbActuallyRead = cbRead;
7125
7126out:
7127 LogFlowFunc(("returns %Rrc\n", rc));
7128 return rc;
7129}
7130
7131/** @copydoc VBOXHDDBACKEND::pfnAsyncWrite */
7132static int vmdkAsyncWrite(void *pBackendData, uint64_t uOffset, size_t cbWrite,
7133 PVDIOCTX pIoCtx,
7134 size_t *pcbWriteProcess, size_t *pcbPreRead,
7135 size_t *pcbPostRead, unsigned fWrite)
7136{
7137 LogFlowFunc(("pBackendData=%#p uOffset=%llu pIoCtx=%#p cbToWrite=%zu pcbWriteProcess=%#p pcbPreRead=%#p pcbPostRead=%#p\n",
7138 pBackendData, uOffset, pIoCtx, cbWrite, pcbWriteProcess, pcbPreRead, pcbPostRead));
7139 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7140 PVMDKEXTENT pExtent;
7141 uint64_t uSectorExtentRel;
7142 uint64_t uSectorExtentAbs;
7143 int rc;
7144
7145 AssertPtr(pImage);
7146 Assert(uOffset % 512 == 0);
7147 Assert(cbWrite % 512 == 0);
7148
7149 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
7150 {
7151 rc = VERR_VD_IMAGE_READ_ONLY;
7152 goto out;
7153 }
7154
7155 if (cbWrite == 0)
7156 {
7157 rc = VERR_INVALID_PARAMETER;
7158 goto out;
7159 }
7160
7161 /* No size check here, will do that later when the extent is located.
7162 * There are sparse images out there which according to the spec are
7163 * invalid, because the total size is not a multiple of the grain size.
7164 * Also for sparse images which are stitched together in odd ways (not at
7165 * grain boundaries, and with the nominal size not being a multiple of the
7166 * grain size), this would prevent writing to the last grain. */
7167
7168 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
7169 &pExtent, &uSectorExtentRel);
7170 if (RT_FAILURE(rc))
7171 goto out;
7172
7173 /* Check access permissions as defined in the extent descriptor. */
7174 if (pExtent->enmAccess != VMDKACCESS_READWRITE)
7175 {
7176 rc = VERR_VD_VMDK_INVALID_STATE;
7177 goto out;
7178 }
7179
7180 /* Handle the write according to the current extent type. */
7181 switch (pExtent->enmType)
7182 {
7183 case VMDKETYPE_HOSTED_SPARSE:
7184#ifdef VBOX_WITH_VMDK_ESX
7185 case VMDKETYPE_ESX_SPARSE:
7186#endif /* VBOX_WITH_VMDK_ESX */
7187 rc = vmdkGetSectorAsync(pImage, pIoCtx, pExtent, uSectorExtentRel,
7188 &uSectorExtentAbs);
7189 if (RT_FAILURE(rc))
7190 goto out;
7191 /* Clip write range to at most the rest of the grain. */
7192 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
7193 if ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
7194 && uSectorExtentRel < (uint64_t)pExtent->uLastGrainAccess * pExtent->cSectorsPerGrain)
7195 {
7196 rc = VERR_VD_VMDK_INVALID_WRITE;
7197 goto out;
7198 }
7199 if (uSectorExtentAbs == 0)
7200 {
7201 if (cbWrite == VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
7202 {
7203 /* Full block write to a previously unallocated block.
7204 * Check if the caller wants to avoid the automatic alloc. */
7205 if (!(fWrite & VD_WRITE_NO_ALLOC))
7206 {
7207 /* Allocate GT and find out where to store the grain. */
7208 rc = vmdkAllocGrainAsync(pImage, pExtent, pIoCtx,
7209 uSectorExtentRel, cbWrite);
7210 }
7211 else
7212 rc = VERR_VD_BLOCK_FREE;
7213 *pcbPreRead = 0;
7214 *pcbPostRead = 0;
7215 }
7216 else
7217 {
7218 /* Clip write range to remain in this extent. */
7219 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7220 *pcbPreRead = VMDK_SECTOR2BYTE(uSectorExtentRel % pExtent->cSectorsPerGrain);
7221 *pcbPostRead = VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain) - cbWrite - *pcbPreRead;
7222 rc = VERR_VD_BLOCK_FREE;
7223 }
7224 }
7225 else
7226 {
7227 Assert(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED));
7228 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
7229 VMDK_SECTOR2BYTE(uSectorExtentAbs),
7230 pIoCtx, cbWrite, NULL, NULL);
7231 }
7232 break;
7233 case VMDKETYPE_VMFS:
7234 case VMDKETYPE_FLAT:
7235 /* Clip write range to remain in this extent. */
7236 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7237 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
7238 VMDK_SECTOR2BYTE(uSectorExtentRel),
7239 pIoCtx, cbWrite, NULL, NULL);
7240 break;
7241 case VMDKETYPE_ZERO:
7242 /* Clip write range to remain in this extent. */
7243 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7244 break;
7245 }
7246
7247 if (pcbWriteProcess)
7248 *pcbWriteProcess = cbWrite;
7249
7250out:
7251 LogFlowFunc(("returns %Rrc\n", rc));
7252 return rc;
7253}
7254
7255/** @copydoc VBOXHDDBACKEND::pfnAsyncFlush */
7256static int vmdkAsyncFlush(void *pBackendData, PVDIOCTX pIoCtx)
7257{
7258 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7259 PVMDKEXTENT pExtent;
7260 int rc = VINF_SUCCESS;
7261
7262 for (unsigned i = 0; i < pImage->cExtents; i++)
7263 {
7264 pExtent = &pImage->pExtents[i];
7265 if (pExtent->pFile != NULL && pExtent->fMetaDirty)
7266 {
7267 switch (pExtent->enmType)
7268 {
7269 case VMDKETYPE_HOSTED_SPARSE:
7270#ifdef VBOX_WITH_VMDK_ESX
7271 case VMDKETYPE_ESX_SPARSE:
7272#endif /* VBOX_WITH_VMDK_ESX */
7273 rc = vmdkWriteMetaSparseExtentAsync(pImage, pExtent, 0, pIoCtx);
7274 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
7275 goto out;
7276 if (pExtent->fFooter)
7277 {
7278 uint64_t uFileOffset = pExtent->uAppendPosition;
7279 if (!uFileOffset)
7280 {
7281 rc = VERR_INTERNAL_ERROR;
7282 goto out;
7283 }
7284 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
7285 rc = vmdkWriteMetaSparseExtent(pImage, pExtent, uFileOffset);
7286 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
7287 goto out;
7288 }
7289 break;
7290 case VMDKETYPE_VMFS:
7291 case VMDKETYPE_FLAT:
7292 /* Nothing to do. */
7293 break;
7294 case VMDKETYPE_ZERO:
7295 default:
7296 AssertMsgFailed(("extent with type %d marked as dirty\n",
7297 pExtent->enmType));
7298 break;
7299 }
7300 }
7301 switch (pExtent->enmType)
7302 {
7303 case VMDKETYPE_HOSTED_SPARSE:
7304#ifdef VBOX_WITH_VMDK_ESX
7305 case VMDKETYPE_ESX_SPARSE:
7306#endif /* VBOX_WITH_VMDK_ESX */
7307 case VMDKETYPE_VMFS:
7308 case VMDKETYPE_FLAT:
7309 /*
7310 * Don't ignore block devices like in the sync case
7311 * (they have an absolute path).
7312 * We might have unwritten data in the writeback cache and
7313 * the async I/O manager will handle these requests properly
7314 * even if the block device doesn't support these requests.
7315 */
7316 if ( pExtent->pFile != NULL
7317 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
7318 rc = vmdkFileFlushAsync(pImage, pExtent->pFile, pIoCtx);
7319 break;
7320 case VMDKETYPE_ZERO:
7321 /* No need to do anything for this extent. */
7322 break;
7323 default:
7324 AssertMsgFailed(("unknown extent type %d\n", pExtent->enmType));
7325 break;
7326 }
7327 }
7328
7329out:
7330 return rc;
7331}
7332
7333
7334VBOXHDDBACKEND g_VmdkBackend =
7335{
7336 /* pszBackendName */
7337 "VMDK",
7338 /* cbSize */
7339 sizeof(VBOXHDDBACKEND),
7340 /* uBackendCaps */
7341 VD_CAP_UUID | VD_CAP_CREATE_FIXED | VD_CAP_CREATE_DYNAMIC
7342 | VD_CAP_CREATE_SPLIT_2G | VD_CAP_DIFF | VD_CAP_FILE | VD_CAP_ASYNC
7343 | VD_CAP_VFS,
7344 /* papszFileExtensions */
7345 s_apszVmdkFileExtensions,
7346 /* paConfigInfo */
7347 NULL,
7348 /* hPlugin */
7349 NIL_RTLDRMOD,
7350 /* pfnCheckIfValid */
7351 vmdkCheckIfValid,
7352 /* pfnOpen */
7353 vmdkOpen,
7354 /* pfnCreate */
7355 vmdkCreate,
7356 /* pfnRename */
7357 vmdkRename,
7358 /* pfnClose */
7359 vmdkClose,
7360 /* pfnRead */
7361 vmdkRead,
7362 /* pfnWrite */
7363 vmdkWrite,
7364 /* pfnFlush */
7365 vmdkFlush,
7366 /* pfnGetVersion */
7367 vmdkGetVersion,
7368 /* pfnGetSize */
7369 vmdkGetSize,
7370 /* pfnGetFileSize */
7371 vmdkGetFileSize,
7372 /* pfnGetPCHSGeometry */
7373 vmdkGetPCHSGeometry,
7374 /* pfnSetPCHSGeometry */
7375 vmdkSetPCHSGeometry,
7376 /* pfnGetLCHSGeometry */
7377 vmdkGetLCHSGeometry,
7378 /* pfnSetLCHSGeometry */
7379 vmdkSetLCHSGeometry,
7380 /* pfnGetImageFlags */
7381 vmdkGetImageFlags,
7382 /* pfnGetOpenFlags */
7383 vmdkGetOpenFlags,
7384 /* pfnSetOpenFlags */
7385 vmdkSetOpenFlags,
7386 /* pfnGetComment */
7387 vmdkGetComment,
7388 /* pfnSetComment */
7389 vmdkSetComment,
7390 /* pfnGetUuid */
7391 vmdkGetUuid,
7392 /* pfnSetUuid */
7393 vmdkSetUuid,
7394 /* pfnGetModificationUuid */
7395 vmdkGetModificationUuid,
7396 /* pfnSetModificationUuid */
7397 vmdkSetModificationUuid,
7398 /* pfnGetParentUuid */
7399 vmdkGetParentUuid,
7400 /* pfnSetParentUuid */
7401 vmdkSetParentUuid,
7402 /* pfnGetParentModificationUuid */
7403 vmdkGetParentModificationUuid,
7404 /* pfnSetParentModificationUuid */
7405 vmdkSetParentModificationUuid,
7406 /* pfnDump */
7407 vmdkDump,
7408 /* pfnGetTimeStamp */
7409 NULL,
7410 /* pfnGetParentTimeStamp */
7411 NULL,
7412 /* pfnSetParentTimeStamp */
7413 NULL,
7414 /* pfnGetParentFilename */
7415 NULL,
7416 /* pfnSetParentFilename */
7417 NULL,
7418 /* pfnIsAsyncIOSupported */
7419 vmdkIsAsyncIOSupported,
7420 /* pfnAsyncRead */
7421 vmdkAsyncRead,
7422 /* pfnAsyncWrite */
7423 vmdkAsyncWrite,
7424 /* pfnAsyncFlush */
7425 vmdkAsyncFlush,
7426 /* pfnComposeLocation */
7427 genericFileComposeLocation,
7428 /* pfnComposeName */
7429 genericFileComposeName,
7430 /* pfnCompact */
7431 NULL,
7432 /* pfnResize */
7433 NULL
7434};
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette