VirtualBox

source: vbox/trunk/src/VBox/Storage/VMDK.cpp@ 33943

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

VMDK: Fix memory leak in case of buffer overflow error

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 270.7 KB
Line 
1/* $Id: VMDK.cpp 33943 2010-11-10 16:24:37Z 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/vd-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 VDFILEEXTENSION s_aVmdkFileExtensions[] =
517{
518 {"vmdk", VDTYPE_HDD},
519 {NULL, VDTYPE_INVALID}
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 RTStrAPrintf(&pszValueQuoted, "\"%s\"", pszValue);
1703 if (!pszValueQuoted)
1704 return VERR_NO_STR_MEMORY;
1705 int 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 RTStrAPrintf(&pszValQuoted, "\"%s\"", pszVal);
1873 if (!pszValQuoted)
1874 return VERR_NO_STR_MEMORY;
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 RTStrAPrintf(&pszUuid, "\"%RTuuid\"", pUuid);
1891 if (!pszUuid)
1892 return VERR_NO_STR_MEMORY;
1893 int 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 RTStrAPrintf(&pszValue, "\"%d\"", uValue);
1905 if (!pszValue)
1906 return VERR_NO_STR_MEMORY;
1907 int 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 : Prepares the descriptor to write to the image.
2472 */
2473static int vmdkDescriptorPrepare(PVMDKIMAGE pImage, uint64_t cbLimit,
2474 void **ppvData, size_t *pcbData)
2475{
2476 int rc = VINF_SUCCESS;
2477
2478 /*
2479 * Allocate temporary descriptor buffer.
2480 * In case there is no limit allocate a default
2481 * and increase if required.
2482 */
2483 size_t cbDescriptor = cbLimit ? cbLimit : 4 * _1K;
2484 char *pszDescriptor = (char *)RTMemAllocZ(cbDescriptor);
2485 unsigned offDescriptor = 0;
2486
2487 if (!pszDescriptor)
2488 return VERR_NO_MEMORY;
2489
2490 for (unsigned i = 0; i < pImage->Descriptor.cLines; i++)
2491 {
2492 const char *psz = pImage->Descriptor.aLines[i];
2493 size_t cb = strlen(psz);
2494
2495 /*
2496 * Increase the descriptor if there is no limit and
2497 * there is not enough room left for this line.
2498 */
2499 if (offDescriptor + cb + 1 > cbDescriptor)
2500 {
2501 if (cbLimit)
2502 {
2503 rc = vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too long in '%s'"), pImage->pszFilename);
2504 break;
2505 }
2506 else
2507 {
2508 char *pszDescriptorNew = NULL;
2509 LogFlow(("Increasing descriptor cache\n"));
2510
2511 pszDescriptorNew = (char *)RTMemRealloc(pszDescriptor, cbDescriptor + cb + 4 * _1K);
2512 if (!pszDescriptorNew)
2513 {
2514 rc = VERR_NO_MEMORY;
2515 break;
2516 }
2517 pszDescriptor = pszDescriptorNew;
2518 cbDescriptor += cb + 4 * _1K;
2519 }
2520 }
2521
2522 if (cb > 0)
2523 {
2524 memcpy(pszDescriptor + offDescriptor, psz, cb);
2525 offDescriptor += cb;
2526 }
2527
2528 memcpy(pszDescriptor + offDescriptor, "\n", 1);
2529 offDescriptor++;
2530 }
2531
2532 if (RT_SUCCESS(rc))
2533 {
2534 *ppvData = pszDescriptor;
2535 *pcbData = offDescriptor;
2536 }
2537 else if (pszDescriptor)
2538 RTMemFree(pszDescriptor);
2539
2540 return rc;
2541}
2542
2543/**
2544 * Internal: write/update the descriptor part of the image.
2545 */
2546static int vmdkWriteDescriptor(PVMDKIMAGE pImage)
2547{
2548 int rc = VINF_SUCCESS;
2549 uint64_t cbLimit;
2550 uint64_t uOffset;
2551 PVMDKFILE pDescFile;
2552 void *pvDescriptor;
2553 size_t cbDescriptor;
2554
2555 if (pImage->pDescData)
2556 {
2557 /* Separate descriptor file. */
2558 uOffset = 0;
2559 cbLimit = 0;
2560 pDescFile = pImage->pFile;
2561 }
2562 else
2563 {
2564 /* Embedded descriptor file. */
2565 uOffset = VMDK_SECTOR2BYTE(pImage->pExtents[0].uDescriptorSector);
2566 cbLimit = VMDK_SECTOR2BYTE(pImage->pExtents[0].cDescriptorSectors);
2567 pDescFile = pImage->pExtents[0].pFile;
2568 }
2569 /* Bail out if there is no file to write to. */
2570 if (pDescFile == NULL)
2571 return VERR_INVALID_PARAMETER;
2572
2573 rc = vmdkDescriptorPrepare(pImage, cbLimit, &pvDescriptor, &cbDescriptor);
2574 if (RT_SUCCESS(rc))
2575 {
2576 rc = vmdkFileWriteSync(pImage, pDescFile, uOffset, pvDescriptor, cbLimit ? cbLimit : cbDescriptor, NULL);
2577 if (RT_FAILURE(rc))
2578 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
2579
2580 if (RT_SUCCESS(rc) && !cbLimit)
2581 {
2582 rc = vmdkFileSetSize(pImage, pDescFile, cbDescriptor);
2583 if (RT_FAILURE(rc))
2584 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
2585 }
2586
2587 if (RT_SUCCESS(rc))
2588 pImage->Descriptor.fDirty = false;
2589
2590 RTMemFree(pvDescriptor);
2591 }
2592
2593 return rc;
2594}
2595
2596/**
2597 * Internal: write/update the descriptor part of the image - async version.
2598 */
2599static int vmdkWriteDescriptorAsync(PVMDKIMAGE pImage, PVDIOCTX pIoCtx)
2600{
2601 int rc = VINF_SUCCESS;
2602 uint64_t cbLimit;
2603 uint64_t uOffset;
2604 PVMDKFILE pDescFile;
2605 void *pvDescriptor;
2606 size_t cbDescriptor;
2607
2608 if (pImage->pDescData)
2609 {
2610 /* Separate descriptor file. */
2611 uOffset = 0;
2612 cbLimit = 0;
2613 pDescFile = pImage->pFile;
2614 }
2615 else
2616 {
2617 /* Embedded descriptor file. */
2618 uOffset = VMDK_SECTOR2BYTE(pImage->pExtents[0].uDescriptorSector);
2619 cbLimit = VMDK_SECTOR2BYTE(pImage->pExtents[0].cDescriptorSectors);
2620 pDescFile = pImage->pExtents[0].pFile;
2621 }
2622 /* Bail out if there is no file to write to. */
2623 if (pDescFile == NULL)
2624 return VERR_INVALID_PARAMETER;
2625
2626 rc = vmdkDescriptorPrepare(pImage, cbLimit, &pvDescriptor, &cbDescriptor);
2627 if (RT_SUCCESS(rc))
2628 {
2629 rc = vmdkFileWriteMetaAsync(pImage, pDescFile, uOffset, pvDescriptor, cbLimit ? cbLimit : cbDescriptor, pIoCtx, NULL, NULL);
2630 if ( RT_FAILURE(rc)
2631 && rc != VERR_VD_ASYNC_IO_IN_PROGRESS)
2632 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
2633 }
2634
2635 if (RT_SUCCESS(rc) && !cbLimit)
2636 {
2637 rc = vmdkFileSetSize(pImage, pDescFile, cbDescriptor);
2638 if (RT_FAILURE(rc))
2639 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
2640 }
2641
2642 if (RT_SUCCESS(rc))
2643 pImage->Descriptor.fDirty = false;
2644
2645 RTMemFree(pvDescriptor);
2646 return rc;
2647
2648}
2649
2650/**
2651 * Internal: validate the consistency check values in a binary header.
2652 */
2653static int vmdkValidateHeader(PVMDKIMAGE pImage, PVMDKEXTENT pExtent, const SparseExtentHeader *pHeader)
2654{
2655 int rc = VINF_SUCCESS;
2656 if (RT_LE2H_U32(pHeader->magicNumber) != VMDK_SPARSE_MAGICNUMBER)
2657 {
2658 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect magic in sparse extent header in '%s'"), pExtent->pszFullname);
2659 return rc;
2660 }
2661 if (RT_LE2H_U32(pHeader->version) != 1 && RT_LE2H_U32(pHeader->version) != 3)
2662 {
2663 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);
2664 return rc;
2665 }
2666 if ( (RT_LE2H_U32(pHeader->flags) & 1)
2667 && ( pHeader->singleEndLineChar != '\n'
2668 || pHeader->nonEndLineChar != ' '
2669 || pHeader->doubleEndLineChar1 != '\r'
2670 || pHeader->doubleEndLineChar2 != '\n') )
2671 {
2672 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: corrupted by CR/LF translation in '%s'"), pExtent->pszFullname);
2673 return rc;
2674 }
2675 return rc;
2676}
2677
2678/**
2679 * Internal: read metadata belonging to an extent with binary header, i.e.
2680 * as found in monolithic files.
2681 */
2682static int vmdkReadBinaryMetaExtent(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
2683 bool fMagicAlreadyRead)
2684{
2685 SparseExtentHeader Header;
2686 uint64_t cSectorsPerGDE;
2687 uint64_t cbFile = 0;
2688 int rc;
2689
2690 if (!fMagicAlreadyRead)
2691 rc = vmdkFileReadSync(pImage, pExtent->pFile, 0, &Header,
2692 sizeof(Header), NULL);
2693 else
2694 {
2695 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
2696 rc = vmdkFileReadSync(pImage, pExtent->pFile,
2697 RT_OFFSETOF(SparseExtentHeader, version),
2698 &Header.version,
2699 sizeof(Header)
2700 - RT_OFFSETOF(SparseExtentHeader, version),
2701 NULL);
2702 }
2703 AssertRC(rc);
2704 if (RT_FAILURE(rc))
2705 {
2706 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading extent header in '%s'"), pExtent->pszFullname);
2707 goto out;
2708 }
2709 rc = vmdkValidateHeader(pImage, pExtent, &Header);
2710 if (RT_FAILURE(rc))
2711 goto out;
2712
2713 if ( RT_LE2H_U32(Header.flags & RT_BIT(17))
2714 && RT_LE2H_U64(Header.gdOffset) == VMDK_GD_AT_END)
2715 pExtent->fFooter = true;
2716
2717 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2718 || ( pExtent->fFooter
2719 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
2720 {
2721 rc = vmdkFileGetSize(pImage, pExtent->pFile, &cbFile);
2722 AssertRC(rc);
2723 if (RT_FAILURE(rc))
2724 {
2725 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot get size of '%s'"), pExtent->pszFullname);
2726 goto out;
2727 }
2728 }
2729
2730 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
2731 pExtent->uAppendPosition = RT_ALIGN_64(cbFile, 512);
2732
2733 if ( pExtent->fFooter
2734 && ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2735 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
2736 {
2737 /* Read the footer, which comes before the end-of-stream marker. */
2738 rc = vmdkFileReadSync(pImage, pExtent->pFile,
2739 cbFile - 2*512, &Header,
2740 sizeof(Header), NULL);
2741 AssertRC(rc);
2742 if (RT_FAILURE(rc))
2743 {
2744 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading extent footer in '%s'"), pExtent->pszFullname);
2745 goto out;
2746 }
2747 rc = vmdkValidateHeader(pImage, pExtent, &Header);
2748 if (RT_FAILURE(rc))
2749 goto out;
2750 /* Prohibit any writes to this extent. */
2751 pExtent->uAppendPosition = 0;
2752 }
2753
2754 pExtent->uVersion = RT_LE2H_U32(Header.version);
2755 pExtent->enmType = VMDKETYPE_HOSTED_SPARSE; /* Just dummy value, changed later. */
2756 pExtent->cSectors = RT_LE2H_U64(Header.capacity);
2757 pExtent->cSectorsPerGrain = RT_LE2H_U64(Header.grainSize);
2758 pExtent->uDescriptorSector = RT_LE2H_U64(Header.descriptorOffset);
2759 pExtent->cDescriptorSectors = RT_LE2H_U64(Header.descriptorSize);
2760 if (pExtent->uDescriptorSector && !pExtent->cDescriptorSectors)
2761 {
2762 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent embedded descriptor config in '%s'"), pExtent->pszFullname);
2763 goto out;
2764 }
2765 pExtent->cGTEntries = RT_LE2H_U32(Header.numGTEsPerGT);
2766 if (RT_LE2H_U32(Header.flags) & RT_BIT(1))
2767 {
2768 pExtent->uSectorRGD = RT_LE2H_U64(Header.rgdOffset);
2769 pExtent->uSectorGD = RT_LE2H_U64(Header.gdOffset);
2770 }
2771 else
2772 {
2773 pExtent->uSectorGD = RT_LE2H_U64(Header.gdOffset);
2774 pExtent->uSectorRGD = 0;
2775 }
2776 if ( ( pExtent->uSectorGD == VMDK_GD_AT_END
2777 || pExtent->uSectorRGD == VMDK_GD_AT_END)
2778 && ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2779 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
2780 {
2781 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot resolve grain directory offset in '%s'"), pExtent->pszFullname);
2782 goto out;
2783 }
2784 pExtent->cOverheadSectors = RT_LE2H_U64(Header.overHead);
2785 pExtent->fUncleanShutdown = !!Header.uncleanShutdown;
2786 pExtent->uCompression = RT_LE2H_U16(Header.compressAlgorithm);
2787 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
2788 if (!cSectorsPerGDE || cSectorsPerGDE > UINT32_MAX)
2789 {
2790 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect grain directory size in '%s'"), pExtent->pszFullname);
2791 goto out;
2792 }
2793 pExtent->cSectorsPerGDE = cSectorsPerGDE;
2794 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
2795
2796 /* Fix up the number of descriptor sectors, as some flat images have
2797 * really just one, and this causes failures when inserting the UUID
2798 * values and other extra information. */
2799 if (pExtent->cDescriptorSectors != 0 && pExtent->cDescriptorSectors < 4)
2800 {
2801 /* Do it the easy way - just fix it for flat images which have no
2802 * other complicated metadata which needs space too. */
2803 if ( pExtent->uDescriptorSector + 4 < pExtent->cOverheadSectors
2804 && pExtent->cGTEntries * pExtent->cGDEntries == 0)
2805 pExtent->cDescriptorSectors = 4;
2806 }
2807
2808out:
2809 if (RT_FAILURE(rc))
2810 vmdkFreeExtentData(pImage, pExtent, false);
2811
2812 return rc;
2813}
2814
2815/**
2816 * Internal: read additional metadata belonging to an extent. For those
2817 * extents which have no additional metadata just verify the information.
2818 */
2819static int vmdkReadMetaExtent(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
2820{
2821 int rc = VINF_SUCCESS;
2822
2823/* disabled the check as there are too many truncated vmdk images out there */
2824#ifdef VBOX_WITH_VMDK_STRICT_SIZE_CHECK
2825 uint64_t cbExtentSize;
2826 /* The image must be a multiple of a sector in size and contain the data
2827 * area (flat images only). If not, it means the image is at least
2828 * truncated, or even seriously garbled. */
2829 rc = vmdkFileGetSize(pImage, pExtent->pFile, &cbExtentSize);
2830 if (RT_FAILURE(rc))
2831 {
2832 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting size in '%s'"), pExtent->pszFullname);
2833 goto out;
2834 }
2835 if ( cbExtentSize != RT_ALIGN_64(cbExtentSize, 512)
2836 && (pExtent->enmType != VMDKETYPE_FLAT || pExtent->cNominalSectors + pExtent->uSectorOffset > VMDK_BYTE2SECTOR(cbExtentSize)))
2837 {
2838 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);
2839 goto out;
2840 }
2841#endif /* VBOX_WITH_VMDK_STRICT_SIZE_CHECK */
2842 if (pExtent->enmType != VMDKETYPE_HOSTED_SPARSE)
2843 goto out;
2844
2845 /* The spec says that this must be a power of two and greater than 8,
2846 * but probably they meant not less than 8. */
2847 if ( (pExtent->cSectorsPerGrain & (pExtent->cSectorsPerGrain - 1))
2848 || pExtent->cSectorsPerGrain < 8)
2849 {
2850 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: invalid extent grain size %u in '%s'"), pExtent->cSectorsPerGrain, pExtent->pszFullname);
2851 goto out;
2852 }
2853
2854 /* This code requires that a grain table must hold a power of two multiple
2855 * of the number of entries per GT cache entry. */
2856 if ( (pExtent->cGTEntries & (pExtent->cGTEntries - 1))
2857 || pExtent->cGTEntries < VMDK_GT_CACHELINE_SIZE)
2858 {
2859 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: grain table cache size problem in '%s'"), pExtent->pszFullname);
2860 goto out;
2861 }
2862
2863 rc = vmdkAllocStreamBuffers(pImage, pExtent);
2864 if (RT_FAILURE(rc))
2865 goto out;
2866
2867 /* Prohibit any writes to this streamOptimized extent. */
2868 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2869 pExtent->uAppendPosition = 0;
2870
2871 if ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2872 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
2873 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
2874 rc = vmdkReadGrainDirectory(pImage, pExtent);
2875 else
2876 {
2877 pExtent->uGrainSectorAbs = pExtent->cOverheadSectors;
2878 pExtent->cbGrainStreamRead = 0;
2879 }
2880
2881out:
2882 if (RT_FAILURE(rc))
2883 vmdkFreeExtentData(pImage, pExtent, false);
2884
2885 return rc;
2886}
2887
2888/**
2889 * Internal: write/update the metadata for a sparse extent.
2890 */
2891static int vmdkWriteMetaSparseExtent(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
2892 uint64_t uOffset)
2893{
2894 SparseExtentHeader Header;
2895
2896 memset(&Header, '\0', sizeof(Header));
2897 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
2898 Header.version = RT_H2LE_U32(pExtent->uVersion);
2899 Header.flags = RT_H2LE_U32(RT_BIT(0));
2900 if (pExtent->pRGD)
2901 Header.flags |= RT_H2LE_U32(RT_BIT(1));
2902 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2903 Header.flags |= RT_H2LE_U32(RT_BIT(16) | RT_BIT(17));
2904 Header.capacity = RT_H2LE_U64(pExtent->cSectors);
2905 Header.grainSize = RT_H2LE_U64(pExtent->cSectorsPerGrain);
2906 Header.descriptorOffset = RT_H2LE_U64(pExtent->uDescriptorSector);
2907 Header.descriptorSize = RT_H2LE_U64(pExtent->cDescriptorSectors);
2908 Header.numGTEsPerGT = RT_H2LE_U32(pExtent->cGTEntries);
2909 if (pExtent->fFooter && uOffset == 0)
2910 {
2911 if (pExtent->pRGD)
2912 {
2913 Assert(pExtent->uSectorRGD);
2914 Header.rgdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2915 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2916 }
2917 else
2918 {
2919 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2920 }
2921 }
2922 else
2923 {
2924 if (pExtent->pRGD)
2925 {
2926 Assert(pExtent->uSectorRGD);
2927 Header.rgdOffset = RT_H2LE_U64(pExtent->uSectorRGD);
2928 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
2929 }
2930 else
2931 {
2932 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
2933 }
2934 }
2935 Header.overHead = RT_H2LE_U64(pExtent->cOverheadSectors);
2936 Header.uncleanShutdown = pExtent->fUncleanShutdown;
2937 Header.singleEndLineChar = '\n';
2938 Header.nonEndLineChar = ' ';
2939 Header.doubleEndLineChar1 = '\r';
2940 Header.doubleEndLineChar2 = '\n';
2941 Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression);
2942
2943 int rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOffset, &Header, sizeof(Header), NULL);
2944 AssertRC(rc);
2945 if (RT_FAILURE(rc))
2946 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
2947 return rc;
2948}
2949
2950/**
2951 * Internal: write/update the metadata for a sparse extent - async version.
2952 */
2953static int vmdkWriteMetaSparseExtentAsync(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
2954 uint64_t uOffset, PVDIOCTX pIoCtx)
2955{
2956 SparseExtentHeader Header;
2957
2958 memset(&Header, '\0', sizeof(Header));
2959 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
2960 Header.version = RT_H2LE_U32(pExtent->uVersion);
2961 Header.flags = RT_H2LE_U32(RT_BIT(0));
2962 if (pExtent->pRGD)
2963 Header.flags |= RT_H2LE_U32(RT_BIT(1));
2964 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
2965 Header.flags |= RT_H2LE_U32(RT_BIT(16) | RT_BIT(17));
2966 Header.capacity = RT_H2LE_U64(pExtent->cSectors);
2967 Header.grainSize = RT_H2LE_U64(pExtent->cSectorsPerGrain);
2968 Header.descriptorOffset = RT_H2LE_U64(pExtent->uDescriptorSector);
2969 Header.descriptorSize = RT_H2LE_U64(pExtent->cDescriptorSectors);
2970 Header.numGTEsPerGT = RT_H2LE_U32(pExtent->cGTEntries);
2971 if (pExtent->fFooter && uOffset == 0)
2972 {
2973 if (pExtent->pRGD)
2974 {
2975 Assert(pExtent->uSectorRGD);
2976 Header.rgdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2977 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2978 }
2979 else
2980 {
2981 Header.gdOffset = RT_H2LE_U64(VMDK_GD_AT_END);
2982 }
2983 }
2984 else
2985 {
2986 if (pExtent->pRGD)
2987 {
2988 Assert(pExtent->uSectorRGD);
2989 Header.rgdOffset = RT_H2LE_U64(pExtent->uSectorRGD);
2990 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
2991 }
2992 else
2993 {
2994 Header.gdOffset = RT_H2LE_U64(pExtent->uSectorGD);
2995 }
2996 }
2997 Header.overHead = RT_H2LE_U64(pExtent->cOverheadSectors);
2998 Header.uncleanShutdown = pExtent->fUncleanShutdown;
2999 Header.singleEndLineChar = '\n';
3000 Header.nonEndLineChar = ' ';
3001 Header.doubleEndLineChar1 = '\r';
3002 Header.doubleEndLineChar2 = '\n';
3003 Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression);
3004
3005 int rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
3006 uOffset, &Header, sizeof(Header),
3007 pIoCtx, NULL, NULL);
3008 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
3009 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
3010 return rc;
3011}
3012
3013#ifdef VBOX_WITH_VMDK_ESX
3014/**
3015 * Internal: unused code to read the metadata of a sparse ESX extent.
3016 *
3017 * Such extents never leave ESX server, so this isn't ever used.
3018 */
3019static int vmdkReadMetaESXSparseExtent(PVMDKEXTENT pExtent)
3020{
3021 COWDisk_Header Header;
3022 uint64_t cSectorsPerGDE;
3023
3024 int rc = vmdkFileReadSync(pImage, pExtent->pFile, 0, &Header, sizeof(Header), NULL);
3025 AssertRC(rc);
3026 if (RT_FAILURE(rc))
3027 goto out;
3028 if ( RT_LE2H_U32(Header.magicNumber) != VMDK_ESX_SPARSE_MAGICNUMBER
3029 || RT_LE2H_U32(Header.version) != 1
3030 || RT_LE2H_U32(Header.flags) != 3)
3031 {
3032 rc = VERR_VD_VMDK_INVALID_HEADER;
3033 goto out;
3034 }
3035 pExtent->enmType = VMDKETYPE_ESX_SPARSE;
3036 pExtent->cSectors = RT_LE2H_U32(Header.numSectors);
3037 pExtent->cSectorsPerGrain = RT_LE2H_U32(Header.grainSize);
3038 /* The spec says that this must be between 1 sector and 1MB. This code
3039 * assumes it's a power of two, so check that requirement, too. */
3040 if ( (pExtent->cSectorsPerGrain & (pExtent->cSectorsPerGrain - 1))
3041 || pExtent->cSectorsPerGrain == 0
3042 || pExtent->cSectorsPerGrain > 2048)
3043 {
3044 rc = VERR_VD_VMDK_INVALID_HEADER;
3045 goto out;
3046 }
3047 pExtent->uDescriptorSector = 0;
3048 pExtent->cDescriptorSectors = 0;
3049 pExtent->uSectorGD = RT_LE2H_U32(Header.gdOffset);
3050 pExtent->uSectorRGD = 0;
3051 pExtent->cOverheadSectors = 0;
3052 pExtent->cGTEntries = 4096;
3053 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
3054 if (!cSectorsPerGDE || cSectorsPerGDE > UINT32_MAX)
3055 {
3056 rc = VERR_VD_VMDK_INVALID_HEADER;
3057 goto out;
3058 }
3059 pExtent->cSectorsPerGDE = cSectorsPerGDE;
3060 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
3061 if (pExtent->cGDEntries != RT_LE2H_U32(Header.numGDEntries))
3062 {
3063 /* Inconsistency detected. Computed number of GD entries doesn't match
3064 * stored value. Better be safe than sorry. */
3065 rc = VERR_VD_VMDK_INVALID_HEADER;
3066 goto out;
3067 }
3068 pExtent->uFreeSector = RT_LE2H_U32(Header.freeSector);
3069 pExtent->fUncleanShutdown = !!Header.uncleanShutdown;
3070
3071 rc = vmdkReadGrainDirectory(pImage, pExtent);
3072
3073out:
3074 if (RT_FAILURE(rc))
3075 vmdkFreeExtentData(pImage, pExtent, false);
3076
3077 return rc;
3078}
3079#endif /* VBOX_WITH_VMDK_ESX */
3080
3081/**
3082 * Internal: free the buffers used for streamOptimized images.
3083 */
3084static void vmdkFreeStreamBuffers(PVMDKEXTENT pExtent)
3085{
3086 if (pExtent->pvCompGrain)
3087 {
3088 RTMemFree(pExtent->pvCompGrain);
3089 pExtent->pvCompGrain = NULL;
3090 }
3091 if (pExtent->pvGrain)
3092 {
3093 RTMemFree(pExtent->pvGrain);
3094 pExtent->pvGrain = NULL;
3095 }
3096}
3097
3098/**
3099 * Internal: free the memory used by the extent data structure, optionally
3100 * deleting the referenced files.
3101 */
3102static void vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
3103 bool fDelete)
3104{
3105 vmdkFreeGrainDirectory(pExtent);
3106 if (pExtent->pDescData)
3107 {
3108 RTMemFree(pExtent->pDescData);
3109 pExtent->pDescData = NULL;
3110 }
3111 if (pExtent->pFile != NULL)
3112 {
3113 /* Do not delete raw extents, these have full and base names equal. */
3114 vmdkFileClose(pImage, &pExtent->pFile,
3115 fDelete
3116 && pExtent->pszFullname
3117 && strcmp(pExtent->pszFullname, pExtent->pszBasename));
3118 }
3119 if (pExtent->pszBasename)
3120 {
3121 RTMemTmpFree((void *)pExtent->pszBasename);
3122 pExtent->pszBasename = NULL;
3123 }
3124 if (pExtent->pszFullname)
3125 {
3126 RTStrFree((char *)(void *)pExtent->pszFullname);
3127 pExtent->pszFullname = NULL;
3128 }
3129 vmdkFreeStreamBuffers(pExtent);
3130}
3131
3132/**
3133 * Internal: allocate grain table cache if necessary for this image.
3134 */
3135static int vmdkAllocateGrainTableCache(PVMDKIMAGE pImage)
3136{
3137 PVMDKEXTENT pExtent;
3138
3139 /* Allocate grain table cache if any sparse extent is present. */
3140 for (unsigned i = 0; i < pImage->cExtents; i++)
3141 {
3142 pExtent = &pImage->pExtents[i];
3143 if ( pExtent->enmType == VMDKETYPE_HOSTED_SPARSE
3144#ifdef VBOX_WITH_VMDK_ESX
3145 || pExtent->enmType == VMDKETYPE_ESX_SPARSE
3146#endif /* VBOX_WITH_VMDK_ESX */
3147 )
3148 {
3149 /* Allocate grain table cache. */
3150 pImage->pGTCache = (PVMDKGTCACHE)RTMemAllocZ(sizeof(VMDKGTCACHE));
3151 if (!pImage->pGTCache)
3152 return VERR_NO_MEMORY;
3153 for (unsigned j = 0; j < VMDK_GT_CACHE_SIZE; j++)
3154 {
3155 PVMDKGTCACHEENTRY pGCE = &pImage->pGTCache->aGTCache[j];
3156 pGCE->uExtent = UINT32_MAX;
3157 }
3158 pImage->pGTCache->cEntries = VMDK_GT_CACHE_SIZE;
3159 break;
3160 }
3161 }
3162
3163 return VINF_SUCCESS;
3164}
3165
3166/**
3167 * Internal: allocate the given number of extents.
3168 */
3169static int vmdkCreateExtents(PVMDKIMAGE pImage, unsigned cExtents)
3170{
3171 int rc = VINF_SUCCESS;
3172 PVMDKEXTENT pExtents = (PVMDKEXTENT)RTMemAllocZ(cExtents * sizeof(VMDKEXTENT));
3173 if (pExtents)
3174 {
3175 for (unsigned i = 0; i < cExtents; i++)
3176 {
3177 pExtents[i].pFile = NULL;
3178 pExtents[i].pszBasename = NULL;
3179 pExtents[i].pszFullname = NULL;
3180 pExtents[i].pGD = NULL;
3181 pExtents[i].pRGD = NULL;
3182 pExtents[i].pDescData = NULL;
3183 pExtents[i].uVersion = 1;
3184 pExtents[i].uCompression = VMDK_COMPRESSION_NONE;
3185 pExtents[i].uExtent = i;
3186 pExtents[i].pImage = pImage;
3187 }
3188 pImage->pExtents = pExtents;
3189 pImage->cExtents = cExtents;
3190 }
3191 else
3192 rc = VERR_NO_MEMORY;
3193
3194 return rc;
3195}
3196
3197/**
3198 * Internal: Open an image, constructing all necessary data structures.
3199 */
3200static int vmdkOpenImage(PVMDKIMAGE pImage, unsigned uOpenFlags)
3201{
3202 int rc;
3203 uint32_t u32Magic;
3204 PVMDKFILE pFile;
3205 PVMDKEXTENT pExtent;
3206
3207 pImage->uOpenFlags = uOpenFlags;
3208
3209 /* Try to get error interface. */
3210 pImage->pInterfaceError = VDInterfaceGet(pImage->pVDIfsDisk, VDINTERFACETYPE_ERROR);
3211 if (pImage->pInterfaceError)
3212 pImage->pInterfaceErrorCallbacks = VDGetInterfaceError(pImage->pInterfaceError);
3213
3214 /* Get I/O interface. */
3215 pImage->pInterfaceIO = VDInterfaceGet(pImage->pVDIfsImage, VDINTERFACETYPE_IOINT);
3216 AssertPtrReturn(pImage->pInterfaceIO, VERR_INVALID_PARAMETER);
3217 pImage->pInterfaceIOCallbacks = VDGetInterfaceIOInt(pImage->pInterfaceIO);
3218 AssertPtrReturn(pImage->pInterfaceIOCallbacks, VERR_INVALID_PARAMETER);
3219
3220 /*
3221 * Open the image.
3222 * We don't have to check for asynchronous access because
3223 * we only support raw access and the opened file is a description
3224 * file were no data is stored.
3225 */
3226
3227 rc = vmdkFileOpen(pImage, &pFile, pImage->pszFilename,
3228 VDOpenFlagsToFileOpenFlags(uOpenFlags, false /* fCreate */),
3229 false /* fAsyncIO */);
3230 if (RT_FAILURE(rc))
3231 {
3232 /* Do NOT signal an appropriate error here, as the VD layer has the
3233 * choice of retrying the open if it failed. */
3234 goto out;
3235 }
3236 pImage->pFile = pFile;
3237
3238 /* Read magic (if present). */
3239 rc = vmdkFileReadSync(pImage, pFile, 0, &u32Magic, sizeof(u32Magic), NULL);
3240 if (RT_FAILURE(rc))
3241 {
3242 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading the magic number in '%s'"), pImage->pszFilename);
3243 goto out;
3244 }
3245
3246 /* Handle the file according to its magic number. */
3247 if (RT_LE2H_U32(u32Magic) == VMDK_SPARSE_MAGICNUMBER)
3248 {
3249 /* It's a hosted single-extent image. */
3250 rc = vmdkCreateExtents(pImage, 1);
3251 if (RT_FAILURE(rc))
3252 goto out;
3253 /* The opened file is passed to the extent. No separate descriptor
3254 * file, so no need to keep anything open for the image. */
3255 pExtent = &pImage->pExtents[0];
3256 pExtent->pFile = pFile;
3257 pImage->pFile = NULL;
3258 pExtent->pszFullname = RTPathAbsDup(pImage->pszFilename);
3259 if (!pExtent->pszFullname)
3260 {
3261 rc = VERR_NO_MEMORY;
3262 goto out;
3263 }
3264 rc = vmdkReadBinaryMetaExtent(pImage, pExtent, true /* fMagicAlreadyRead */);
3265 if (RT_FAILURE(rc))
3266 goto out;
3267
3268 /* As we're dealing with a monolithic image here, there must
3269 * be a descriptor embedded in the image file. */
3270 if (!pExtent->uDescriptorSector || !pExtent->cDescriptorSectors)
3271 {
3272 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image without descriptor in '%s'"), pImage->pszFilename);
3273 goto out;
3274 }
3275 /* HACK: extend the descriptor if it is unusually small and it fits in
3276 * the unused space after the image header. Allows opening VMDK files
3277 * with extremely small descriptor in read/write mode. */
3278 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
3279 && pExtent->cDescriptorSectors < 3
3280 && (int64_t)pExtent->uSectorGD - pExtent->uDescriptorSector >= 4
3281 && (!pExtent->uSectorRGD || (int64_t)pExtent->uSectorRGD - pExtent->uDescriptorSector >= 4))
3282 {
3283 pExtent->cDescriptorSectors = 4;
3284 pExtent->fMetaDirty = true;
3285 }
3286 /* Read the descriptor from the extent. */
3287 pExtent->pDescData = (char *)RTMemAllocZ(VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors));
3288 if (!pExtent->pDescData)
3289 {
3290 rc = VERR_NO_MEMORY;
3291 goto out;
3292 }
3293 rc = vmdkFileReadSync(pImage, pExtent->pFile,
3294 VMDK_SECTOR2BYTE(pExtent->uDescriptorSector),
3295 pExtent->pDescData,
3296 VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors), NULL);
3297 AssertRC(rc);
3298 if (RT_FAILURE(rc))
3299 {
3300 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pExtent->pszFullname);
3301 goto out;
3302 }
3303
3304 rc = vmdkParseDescriptor(pImage, pExtent->pDescData,
3305 VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors));
3306 if (RT_FAILURE(rc))
3307 goto out;
3308
3309 rc = vmdkReadMetaExtent(pImage, pExtent);
3310 if (RT_FAILURE(rc))
3311 goto out;
3312
3313 /* Mark the extent as unclean if opened in read-write mode. */
3314 if ( !(uOpenFlags & VD_OPEN_FLAGS_READONLY)
3315 && !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
3316 {
3317 pExtent->fUncleanShutdown = true;
3318 pExtent->fMetaDirty = true;
3319 }
3320 }
3321 else
3322 {
3323 /* Allocate at least 10K, and make sure that there is 5K free space
3324 * in case new entries need to be added to the descriptor. Never
3325 * allocate more than 128K, because that's no valid descriptor file
3326 * and will result in the correct "truncated read" error handling. */
3327 uint64_t cbFileSize;
3328 rc = vmdkFileGetSize(pImage, pFile, &cbFileSize);
3329 if (RT_FAILURE(rc))
3330 goto out;
3331
3332 uint64_t cbSize = cbFileSize;
3333 if (cbSize % VMDK_SECTOR2BYTE(10))
3334 cbSize += VMDK_SECTOR2BYTE(20) - cbSize % VMDK_SECTOR2BYTE(10);
3335 else
3336 cbSize += VMDK_SECTOR2BYTE(10);
3337 cbSize = RT_MIN(cbSize, _128K);
3338 pImage->cbDescAlloc = RT_MAX(VMDK_SECTOR2BYTE(20), cbSize);
3339 pImage->pDescData = (char *)RTMemAllocZ(pImage->cbDescAlloc);
3340 if (!pImage->pDescData)
3341 {
3342 rc = VERR_NO_MEMORY;
3343 goto out;
3344 }
3345
3346 size_t cbRead;
3347 rc = vmdkFileReadSync(pImage, pImage->pFile, 0, pImage->pDescData,
3348 RT_MIN(pImage->cbDescAlloc, cbFileSize),
3349 &cbRead);
3350 if (RT_FAILURE(rc))
3351 {
3352 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pImage->pszFilename);
3353 goto out;
3354 }
3355 if (cbRead == pImage->cbDescAlloc)
3356 {
3357 /* Likely the read is truncated. Better fail a bit too early
3358 * (normally the descriptor is much smaller than our buffer). */
3359 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot read descriptor in '%s'"), pImage->pszFilename);
3360 goto out;
3361 }
3362
3363 rc = vmdkParseDescriptor(pImage, pImage->pDescData,
3364 pImage->cbDescAlloc);
3365 if (RT_FAILURE(rc))
3366 goto out;
3367
3368 /*
3369 * We have to check for the asynchronous open flag. The
3370 * extents are parsed and the type of all are known now.
3371 * Check if every extent is either FLAT or ZERO.
3372 */
3373 if (uOpenFlags & VD_OPEN_FLAGS_ASYNC_IO)
3374 {
3375 unsigned cFlatExtents = 0;
3376
3377 for (unsigned i = 0; i < pImage->cExtents; i++)
3378 {
3379 pExtent = &pImage->pExtents[i];
3380
3381 if (( pExtent->enmType != VMDKETYPE_FLAT
3382 && pExtent->enmType != VMDKETYPE_ZERO
3383 && pExtent->enmType != VMDKETYPE_VMFS)
3384 || ((pImage->pExtents[i].enmType == VMDKETYPE_FLAT) && (cFlatExtents > 0)))
3385 {
3386 /*
3387 * Opened image contains at least one none flat or zero extent.
3388 * Return error but don't set error message as the caller
3389 * has the chance to open in non async I/O mode.
3390 */
3391 rc = VERR_NOT_SUPPORTED;
3392 goto out;
3393 }
3394 if (pExtent->enmType == VMDKETYPE_FLAT)
3395 cFlatExtents++;
3396 }
3397 }
3398
3399 for (unsigned i = 0; i < pImage->cExtents; i++)
3400 {
3401 pExtent = &pImage->pExtents[i];
3402
3403 if (pExtent->pszBasename)
3404 {
3405 /* Hack to figure out whether the specified name in the
3406 * extent descriptor is absolute. Doesn't always work, but
3407 * should be good enough for now. */
3408 char *pszFullname;
3409 /** @todo implement proper path absolute check. */
3410 if (pExtent->pszBasename[0] == RTPATH_SLASH)
3411 {
3412 pszFullname = RTStrDup(pExtent->pszBasename);
3413 if (!pszFullname)
3414 {
3415 rc = VERR_NO_MEMORY;
3416 goto out;
3417 }
3418 }
3419 else
3420 {
3421 char *pszDirname = RTStrDup(pImage->pszFilename);
3422 if (!pszDirname)
3423 {
3424 rc = VERR_NO_MEMORY;
3425 goto out;
3426 }
3427 RTPathStripFilename(pszDirname);
3428 pszFullname = RTPathJoinA(pszDirname, pExtent->pszBasename);
3429 RTStrFree(pszDirname);
3430 if (!pszFullname)
3431 {
3432 rc = VERR_NO_STR_MEMORY;
3433 goto out;
3434 }
3435 }
3436 pExtent->pszFullname = pszFullname;
3437 }
3438 else
3439 pExtent->pszFullname = NULL;
3440
3441 switch (pExtent->enmType)
3442 {
3443 case VMDKETYPE_HOSTED_SPARSE:
3444 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3445 VDOpenFlagsToFileOpenFlags(uOpenFlags,
3446 false /* fCreate */),
3447 false /* fAsyncIO */);
3448 if (RT_FAILURE(rc))
3449 {
3450 /* Do NOT signal an appropriate error here, as the VD
3451 * layer has the choice of retrying the open if it
3452 * failed. */
3453 goto out;
3454 }
3455 rc = vmdkReadBinaryMetaExtent(pImage, pExtent,
3456 false /* fMagicAlreadyRead */);
3457 if (RT_FAILURE(rc))
3458 goto out;
3459 rc = vmdkReadMetaExtent(pImage, pExtent);
3460 if (RT_FAILURE(rc))
3461 goto out;
3462
3463 /* Mark extent as unclean if opened in read-write mode. */
3464 if (!(uOpenFlags & VD_OPEN_FLAGS_READONLY))
3465 {
3466 pExtent->fUncleanShutdown = true;
3467 pExtent->fMetaDirty = true;
3468 }
3469 break;
3470 case VMDKETYPE_VMFS:
3471 case VMDKETYPE_FLAT:
3472 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3473 VDOpenFlagsToFileOpenFlags(uOpenFlags,
3474 false /* fCreate */),
3475 true /* 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 break;
3484 case VMDKETYPE_ZERO:
3485 /* Nothing to do. */
3486 break;
3487 default:
3488 AssertMsgFailed(("unknown vmdk extent type %d\n", pExtent->enmType));
3489 }
3490 }
3491 }
3492
3493 /* Make sure this is not reached accidentally with an error status. */
3494 AssertRC(rc);
3495
3496 /* Determine PCHS geometry if not set. */
3497 if (pImage->PCHSGeometry.cCylinders == 0)
3498 {
3499 uint64_t cCylinders = VMDK_BYTE2SECTOR(pImage->cbSize)
3500 / pImage->PCHSGeometry.cHeads
3501 / pImage->PCHSGeometry.cSectors;
3502 pImage->PCHSGeometry.cCylinders = (unsigned)RT_MIN(cCylinders, 16383);
3503 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
3504 && !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
3505 {
3506 rc = vmdkDescSetPCHSGeometry(pImage, &pImage->PCHSGeometry);
3507 AssertRC(rc);
3508 }
3509 }
3510
3511 /* Update the image metadata now in case has changed. */
3512 rc = vmdkFlushImage(pImage);
3513 if (RT_FAILURE(rc))
3514 goto out;
3515
3516 /* Figure out a few per-image constants from the extents. */
3517 pImage->cbSize = 0;
3518 for (unsigned i = 0; i < pImage->cExtents; i++)
3519 {
3520 pExtent = &pImage->pExtents[i];
3521 if ( pExtent->enmType == VMDKETYPE_HOSTED_SPARSE
3522#ifdef VBOX_WITH_VMDK_ESX
3523 || pExtent->enmType == VMDKETYPE_ESX_SPARSE
3524#endif /* VBOX_WITH_VMDK_ESX */
3525 )
3526 {
3527 /* Here used to be a check whether the nominal size of an extent
3528 * is a multiple of the grain size. The spec says that this is
3529 * always the case, but unfortunately some files out there in the
3530 * wild violate the spec (e.g. ReactOS 0.3.1). */
3531 }
3532 pImage->cbSize += VMDK_SECTOR2BYTE(pExtent->cNominalSectors);
3533 }
3534
3535 for (unsigned i = 0; i < pImage->cExtents; i++)
3536 {
3537 pExtent = &pImage->pExtents[i];
3538 if ( pImage->pExtents[i].enmType == VMDKETYPE_FLAT
3539 || pImage->pExtents[i].enmType == VMDKETYPE_ZERO)
3540 {
3541 pImage->uImageFlags |= VD_IMAGE_FLAGS_FIXED;
3542 break;
3543 }
3544 }
3545
3546 if ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
3547 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
3548 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
3549 rc = vmdkAllocateGrainTableCache(pImage);
3550
3551out:
3552 if (RT_FAILURE(rc))
3553 vmdkFreeImage(pImage, false);
3554 return rc;
3555}
3556
3557/**
3558 * Internal: create VMDK images for raw disk/partition access.
3559 */
3560static int vmdkCreateRawImage(PVMDKIMAGE pImage, const PVBOXHDDRAW pRaw,
3561 uint64_t cbSize)
3562{
3563 int rc = VINF_SUCCESS;
3564 PVMDKEXTENT pExtent;
3565
3566 if (pRaw->fRawDisk)
3567 {
3568 /* Full raw disk access. This requires setting up a descriptor
3569 * file and open the (flat) raw disk. */
3570 rc = vmdkCreateExtents(pImage, 1);
3571 if (RT_FAILURE(rc))
3572 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
3573 pExtent = &pImage->pExtents[0];
3574 /* Create raw disk descriptor file. */
3575 rc = vmdkFileOpen(pImage, &pImage->pFile, pImage->pszFilename,
3576 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3577 true /* fCreate */),
3578 false /* fAsyncIO */);
3579 if (RT_FAILURE(rc))
3580 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
3581
3582 /* Set up basename for extent description. Cannot use StrDup. */
3583 size_t cbBasename = strlen(pRaw->pszRawDisk) + 1;
3584 char *pszBasename = (char *)RTMemTmpAlloc(cbBasename);
3585 if (!pszBasename)
3586 return VERR_NO_MEMORY;
3587 memcpy(pszBasename, pRaw->pszRawDisk, cbBasename);
3588 pExtent->pszBasename = pszBasename;
3589 /* For raw disks the full name is identical to the base name. */
3590 pExtent->pszFullname = RTStrDup(pszBasename);
3591 if (!pExtent->pszFullname)
3592 return VERR_NO_MEMORY;
3593 pExtent->enmType = VMDKETYPE_FLAT;
3594 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbSize);
3595 pExtent->uSectorOffset = 0;
3596 pExtent->enmAccess = VMDKACCESS_READWRITE;
3597 pExtent->fMetaDirty = false;
3598
3599 /* Open flat image, the raw disk. */
3600 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3601 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags & ~VD_OPEN_FLAGS_READONLY,
3602 false /* fCreate */),
3603 false /* fAsyncIO */);
3604 if (RT_FAILURE(rc))
3605 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not open raw disk file '%s'"), pExtent->pszFullname);
3606 }
3607 else
3608 {
3609 /* Raw partition access. This requires setting up a descriptor
3610 * file, write the partition information to a flat extent and
3611 * open all the (flat) raw disk partitions. */
3612
3613 /* First pass over the partition data areas to determine how many
3614 * extents we need. One data area can require up to 2 extents, as
3615 * it might be necessary to skip over unpartitioned space. */
3616 unsigned cExtents = 0;
3617 uint64_t uStart = 0;
3618 for (unsigned i = 0; i < pRaw->cPartDescs; i++)
3619 {
3620 PVBOXHDDRAWPARTDESC pPart = &pRaw->pPartDescs[i];
3621 if (uStart > pPart->uStart)
3622 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);
3623
3624 if (uStart < pPart->uStart)
3625 cExtents++;
3626 uStart = pPart->uStart + pPart->cbData;
3627 cExtents++;
3628 }
3629 /* Another extent for filling up the rest of the image. */
3630 if (uStart != cbSize)
3631 cExtents++;
3632
3633 rc = vmdkCreateExtents(pImage, cExtents);
3634 if (RT_FAILURE(rc))
3635 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
3636
3637 /* Create raw partition descriptor file. */
3638 rc = vmdkFileOpen(pImage, &pImage->pFile, pImage->pszFilename,
3639 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3640 true /* fCreate */),
3641 false /* fAsyncIO */);
3642 if (RT_FAILURE(rc))
3643 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
3644
3645 /* Create base filename for the partition table extent. */
3646 /** @todo remove fixed buffer without creating memory leaks. */
3647 char pszPartition[1024];
3648 const char *pszBase = RTPathFilename(pImage->pszFilename);
3649 const char *pszExt = RTPathExt(pszBase);
3650 if (pszExt == NULL)
3651 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: invalid filename '%s'"), pImage->pszFilename);
3652 char *pszBaseBase = RTStrDup(pszBase);
3653 if (!pszBaseBase)
3654 return VERR_NO_MEMORY;
3655 RTPathStripExt(pszBaseBase);
3656 RTStrPrintf(pszPartition, sizeof(pszPartition), "%s-pt%s",
3657 pszBaseBase, pszExt);
3658 RTStrFree(pszBaseBase);
3659
3660 /* Second pass over the partitions, now define all extents. */
3661 uint64_t uPartOffset = 0;
3662 cExtents = 0;
3663 uStart = 0;
3664 for (unsigned i = 0; i < pRaw->cPartDescs; i++)
3665 {
3666 PVBOXHDDRAWPARTDESC pPart = &pRaw->pPartDescs[i];
3667 pExtent = &pImage->pExtents[cExtents++];
3668
3669 if (uStart < pPart->uStart)
3670 {
3671 pExtent->pszBasename = NULL;
3672 pExtent->pszFullname = NULL;
3673 pExtent->enmType = VMDKETYPE_ZERO;
3674 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->uStart - uStart);
3675 pExtent->uSectorOffset = 0;
3676 pExtent->enmAccess = VMDKACCESS_READWRITE;
3677 pExtent->fMetaDirty = false;
3678 /* go to next extent */
3679 pExtent = &pImage->pExtents[cExtents++];
3680 }
3681 uStart = pPart->uStart + pPart->cbData;
3682
3683 if (pPart->pvPartitionData)
3684 {
3685 /* Set up basename for extent description. Can't use StrDup. */
3686 size_t cbBasename = strlen(pszPartition) + 1;
3687 char *pszBasename = (char *)RTMemTmpAlloc(cbBasename);
3688 if (!pszBasename)
3689 return VERR_NO_MEMORY;
3690 memcpy(pszBasename, pszPartition, cbBasename);
3691 pExtent->pszBasename = pszBasename;
3692
3693 /* Set up full name for partition extent. */
3694 char *pszDirname = RTStrDup(pImage->pszFilename);
3695 if (!pszDirname)
3696 return VERR_NO_STR_MEMORY;
3697 RTPathStripFilename(pszDirname);
3698 char *pszFullname = RTPathJoinA(pszDirname, pExtent->pszBasename);
3699 RTStrFree(pszDirname);
3700 if (!pszDirname)
3701 return VERR_NO_STR_MEMORY;
3702 pExtent->pszFullname = pszFullname;
3703 pExtent->enmType = VMDKETYPE_FLAT;
3704 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->cbData);
3705 pExtent->uSectorOffset = uPartOffset;
3706 pExtent->enmAccess = VMDKACCESS_READWRITE;
3707 pExtent->fMetaDirty = false;
3708
3709 /* Create partition table flat image. */
3710 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3711 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3712 true /* fCreate */),
3713 false /* fAsyncIO */);
3714 if (RT_FAILURE(rc))
3715 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new partition data file '%s'"), pExtent->pszFullname);
3716 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
3717 VMDK_SECTOR2BYTE(uPartOffset),
3718 pPart->pvPartitionData,
3719 pPart->cbData, NULL);
3720 if (RT_FAILURE(rc))
3721 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not write partition data to '%s'"), pExtent->pszFullname);
3722 uPartOffset += VMDK_BYTE2SECTOR(pPart->cbData);
3723 }
3724 else
3725 {
3726 if (pPart->pszRawDevice)
3727 {
3728 /* Set up basename for extent descr. Can't use StrDup. */
3729 size_t cbBasename = strlen(pPart->pszRawDevice) + 1;
3730 char *pszBasename = (char *)RTMemTmpAlloc(cbBasename);
3731 if (!pszBasename)
3732 return VERR_NO_MEMORY;
3733 memcpy(pszBasename, pPart->pszRawDevice, cbBasename);
3734 pExtent->pszBasename = pszBasename;
3735 /* For raw disks full name is identical to base name. */
3736 pExtent->pszFullname = RTStrDup(pszBasename);
3737 if (!pExtent->pszFullname)
3738 return VERR_NO_MEMORY;
3739 pExtent->enmType = VMDKETYPE_FLAT;
3740 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->cbData);
3741 pExtent->uSectorOffset = VMDK_BYTE2SECTOR(pPart->uStartOffset);
3742 pExtent->enmAccess = VMDKACCESS_READWRITE;
3743 pExtent->fMetaDirty = false;
3744
3745 /* Open flat image, the raw partition. */
3746 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3747 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags & ~VD_OPEN_FLAGS_READONLY,
3748 false /* fCreate */),
3749 false /* fAsyncIO */);
3750 if (RT_FAILURE(rc))
3751 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not open raw partition file '%s'"), pExtent->pszFullname);
3752 }
3753 else
3754 {
3755 pExtent->pszBasename = NULL;
3756 pExtent->pszFullname = NULL;
3757 pExtent->enmType = VMDKETYPE_ZERO;
3758 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(pPart->cbData);
3759 pExtent->uSectorOffset = 0;
3760 pExtent->enmAccess = VMDKACCESS_READWRITE;
3761 pExtent->fMetaDirty = false;
3762 }
3763 }
3764 }
3765 /* Another extent for filling up the rest of the image. */
3766 if (uStart != cbSize)
3767 {
3768 pExtent = &pImage->pExtents[cExtents++];
3769 pExtent->pszBasename = NULL;
3770 pExtent->pszFullname = NULL;
3771 pExtent->enmType = VMDKETYPE_ZERO;
3772 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbSize - uStart);
3773 pExtent->uSectorOffset = 0;
3774 pExtent->enmAccess = VMDKACCESS_READWRITE;
3775 pExtent->fMetaDirty = false;
3776 }
3777 }
3778
3779 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
3780 pRaw->fRawDisk ?
3781 "fullDevice" : "partitionedDevice");
3782 if (RT_FAILURE(rc))
3783 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
3784 return rc;
3785}
3786
3787/**
3788 * Internal: create a regular (i.e. file-backed) VMDK image.
3789 */
3790static int vmdkCreateRegularImage(PVMDKIMAGE pImage, uint64_t cbSize,
3791 unsigned uImageFlags,
3792 PFNVDPROGRESS pfnProgress, void *pvUser,
3793 unsigned uPercentStart, unsigned uPercentSpan)
3794{
3795 int rc = VINF_SUCCESS;
3796 unsigned cExtents = 1;
3797 uint64_t cbOffset = 0;
3798 uint64_t cbRemaining = cbSize;
3799
3800 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_SPLIT_2G)
3801 {
3802 cExtents = cbSize / VMDK_2G_SPLIT_SIZE;
3803 /* Do proper extent computation: need one smaller extent if the total
3804 * size isn't evenly divisible by the split size. */
3805 if (cbSize % VMDK_2G_SPLIT_SIZE)
3806 cExtents++;
3807 }
3808 rc = vmdkCreateExtents(pImage, cExtents);
3809 if (RT_FAILURE(rc))
3810 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
3811
3812 /* Basename strings needed for constructing the extent names. */
3813 char *pszBasenameSubstr = RTPathFilename(pImage->pszFilename);
3814 AssertPtr(pszBasenameSubstr);
3815 size_t cbBasenameSubstr = strlen(pszBasenameSubstr) + 1;
3816
3817 /* Create separate descriptor file if necessary. */
3818 if (cExtents != 1 || (uImageFlags & VD_IMAGE_FLAGS_FIXED))
3819 {
3820 rc = vmdkFileOpen(pImage, &pImage->pFile, pImage->pszFilename,
3821 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3822 true /* fCreate */),
3823 false /* fAsyncIO */);
3824 if (RT_FAILURE(rc))
3825 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new sparse descriptor file '%s'"), pImage->pszFilename);
3826 }
3827 else
3828 pImage->pFile = NULL;
3829
3830 /* Set up all extents. */
3831 for (unsigned i = 0; i < cExtents; i++)
3832 {
3833 PVMDKEXTENT pExtent = &pImage->pExtents[i];
3834 uint64_t cbExtent = cbRemaining;
3835
3836 /* Set up fullname/basename for extent description. Cannot use StrDup
3837 * for basename, as it is not guaranteed that the memory can be freed
3838 * with RTMemTmpFree, which must be used as in other code paths
3839 * StrDup is not usable. */
3840 if (cExtents == 1 && !(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3841 {
3842 char *pszBasename = (char *)RTMemTmpAlloc(cbBasenameSubstr);
3843 if (!pszBasename)
3844 return VERR_NO_MEMORY;
3845 memcpy(pszBasename, pszBasenameSubstr, cbBasenameSubstr);
3846 pExtent->pszBasename = pszBasename;
3847 }
3848 else
3849 {
3850 char *pszBasenameExt = RTPathExt(pszBasenameSubstr);
3851 char *pszBasenameBase = RTStrDup(pszBasenameSubstr);
3852 RTPathStripExt(pszBasenameBase);
3853 char *pszTmp;
3854 size_t cbTmp;
3855 if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
3856 {
3857 if (cExtents == 1)
3858 RTStrAPrintf(&pszTmp, "%s-flat%s", pszBasenameBase,
3859 pszBasenameExt);
3860 else
3861 RTStrAPrintf(&pszTmp, "%s-f%03d%s", pszBasenameBase,
3862 i+1, pszBasenameExt);
3863 }
3864 else
3865 RTStrAPrintf(&pszTmp, "%s-s%03d%s", pszBasenameBase, i+1,
3866 pszBasenameExt);
3867 RTStrFree(pszBasenameBase);
3868 if (!pszTmp)
3869 return VERR_NO_STR_MEMORY;
3870 cbTmp = strlen(pszTmp) + 1;
3871 char *pszBasename = (char *)RTMemTmpAlloc(cbTmp);
3872 if (!pszBasename)
3873 return VERR_NO_MEMORY;
3874 memcpy(pszBasename, pszTmp, cbTmp);
3875 RTStrFree(pszTmp);
3876 pExtent->pszBasename = pszBasename;
3877 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_SPLIT_2G)
3878 cbExtent = RT_MIN(cbRemaining, VMDK_2G_SPLIT_SIZE);
3879 }
3880 char *pszBasedirectory = RTStrDup(pImage->pszFilename);
3881 if (!pszBasedirectory)
3882 return VERR_NO_STR_MEMORY;
3883 RTPathStripFilename(pszBasedirectory);
3884 char *pszFullname = RTPathJoinA(pszBasedirectory, pExtent->pszBasename);
3885 RTStrFree(pszBasedirectory);
3886 if (!pszFullname)
3887 return VERR_NO_STR_MEMORY;
3888 pExtent->pszFullname = pszFullname;
3889
3890 /* Create file for extent. */
3891 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
3892 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
3893 true /* fCreate */),
3894 false /* fAsyncIO */);
3895 if (RT_FAILURE(rc))
3896 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
3897 if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
3898 {
3899 rc = vmdkFileSetSize(pImage, pExtent->pFile, cbExtent);
3900 if (RT_FAILURE(rc))
3901 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set size of new file '%s'"), pExtent->pszFullname);
3902
3903 /* Fill image with zeroes. We do this for every fixed-size image since on some systems
3904 * (for example Windows Vista), it takes ages to write a block near the end of a sparse
3905 * file and the guest could complain about an ATA timeout. */
3906
3907 /** @todo Starting with Linux 2.6.23, there is an fallocate() system call.
3908 * Currently supported file systems are ext4 and ocfs2. */
3909
3910 /* Allocate a temporary zero-filled buffer. Use a bigger block size to optimize writing */
3911 const size_t cbBuf = 128 * _1K;
3912 void *pvBuf = RTMemTmpAllocZ(cbBuf);
3913 if (!pvBuf)
3914 return VERR_NO_MEMORY;
3915
3916 uint64_t uOff = 0;
3917 /* Write data to all image blocks. */
3918 while (uOff < cbExtent)
3919 {
3920 unsigned cbChunk = (unsigned)RT_MIN(cbExtent, cbBuf);
3921
3922 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOff, pvBuf, cbChunk, NULL);
3923 if (RT_FAILURE(rc))
3924 {
3925 RTMemFree(pvBuf);
3926 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: writing block failed for '%s'"), pImage->pszFilename);
3927 }
3928
3929 uOff += cbChunk;
3930
3931 if (pfnProgress)
3932 {
3933 rc = pfnProgress(pvUser,
3934 uPercentStart + uOff * uPercentSpan / cbExtent);
3935 if (RT_FAILURE(rc))
3936 {
3937 RTMemFree(pvBuf);
3938 return rc;
3939 }
3940 }
3941 }
3942 RTMemTmpFree(pvBuf);
3943 }
3944
3945 /* Place descriptor file information (where integrated). */
3946 if (cExtents == 1 && !(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3947 {
3948 pExtent->uDescriptorSector = 1;
3949 pExtent->cDescriptorSectors = VMDK_BYTE2SECTOR(pImage->cbDescAlloc);
3950 /* The descriptor is part of the (only) extent. */
3951 pExtent->pDescData = pImage->pDescData;
3952 pImage->pDescData = NULL;
3953 }
3954
3955 if (!(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3956 {
3957 uint64_t cSectorsPerGDE, cSectorsPerGD;
3958 pExtent->enmType = VMDKETYPE_HOSTED_SPARSE;
3959 pExtent->cSectors = VMDK_BYTE2SECTOR(RT_ALIGN_64(cbExtent, _64K));
3960 pExtent->cSectorsPerGrain = VMDK_BYTE2SECTOR(_64K);
3961 pExtent->cGTEntries = 512;
3962 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
3963 pExtent->cSectorsPerGDE = cSectorsPerGDE;
3964 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
3965 cSectorsPerGD = (pExtent->cGDEntries + (512 / sizeof(uint32_t) - 1)) / (512 / sizeof(uint32_t));
3966 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
3967 {
3968 /* The spec says version is 1 for all VMDKs, but the vast
3969 * majority of streamOptimized VMDKs actually contain
3970 * version 3 - so go with the majority. Both are accepted. */
3971 pExtent->uVersion = 3;
3972 pExtent->uCompression = VMDK_COMPRESSION_DEFLATE;
3973 }
3974 }
3975 else
3976 {
3977 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX)
3978 pExtent->enmType = VMDKETYPE_VMFS;
3979 else
3980 pExtent->enmType = VMDKETYPE_FLAT;
3981 }
3982
3983 pExtent->enmAccess = VMDKACCESS_READWRITE;
3984 pExtent->fUncleanShutdown = true;
3985 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbExtent);
3986 pExtent->uSectorOffset = 0;
3987 pExtent->fMetaDirty = true;
3988
3989 if (!(uImageFlags & VD_IMAGE_FLAGS_FIXED))
3990 {
3991 /* fPreAlloc should never be false because VMware can't use such images. */
3992 rc = vmdkCreateGrainDirectory(pImage, pExtent,
3993 RT_MAX( pExtent->uDescriptorSector
3994 + pExtent->cDescriptorSectors,
3995 1),
3996 true /* fPreAlloc */);
3997 if (RT_FAILURE(rc))
3998 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
3999 }
4000
4001 if (RT_SUCCESS(rc) && pfnProgress)
4002 pfnProgress(pvUser, uPercentStart + i * uPercentSpan / cExtents);
4003
4004 cbRemaining -= cbExtent;
4005 cbOffset += cbExtent;
4006 }
4007
4008 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX)
4009 {
4010 /* VirtualBox doesn't care, but VMWare ESX freaks out if the wrong
4011 * controller type is set in an image. */
4012 rc = vmdkDescDDBSetStr(pImage, &pImage->Descriptor, "ddb.adapterType", "lsilogic");
4013 if (RT_FAILURE(rc))
4014 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set controller type to lsilogic in '%s'"), pImage->pszFilename);
4015 }
4016
4017 const char *pszDescType = NULL;
4018 if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
4019 {
4020 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX)
4021 pszDescType = "vmfs";
4022 else
4023 pszDescType = (cExtents == 1)
4024 ? "monolithicFlat" : "twoGbMaxExtentFlat";
4025 }
4026 else
4027 {
4028 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4029 pszDescType = "streamOptimized";
4030 else
4031 {
4032 pszDescType = (cExtents == 1)
4033 ? "monolithicSparse" : "twoGbMaxExtentSparse";
4034 }
4035 }
4036 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
4037 pszDescType);
4038 if (RT_FAILURE(rc))
4039 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
4040 return rc;
4041}
4042
4043/**
4044 * Internal: Create a real stream optimized VMDK using only linear writes.
4045 */
4046static int vmdkCreateStreamImage(PVMDKIMAGE pImage, uint64_t cbSize,
4047 unsigned uImageFlags,
4048 PFNVDPROGRESS pfnProgress, void *pvUser,
4049 unsigned uPercentStart, unsigned uPercentSpan)
4050{
4051 int rc;
4052
4053 rc = vmdkCreateExtents(pImage, 1);
4054 if (RT_FAILURE(rc))
4055 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
4056
4057 /* Basename strings needed for constructing the extent names. */
4058 const char *pszBasenameSubstr = RTPathFilename(pImage->pszFilename);
4059 AssertPtr(pszBasenameSubstr);
4060 size_t cbBasenameSubstr = strlen(pszBasenameSubstr) + 1;
4061
4062 /* No separate descriptor file. */
4063 pImage->pFile = NULL;
4064
4065 /* Set up all extents. */
4066 PVMDKEXTENT pExtent = &pImage->pExtents[0];
4067
4068 /* Set up fullname/basename for extent description. Cannot use StrDup
4069 * for basename, as it is not guaranteed that the memory can be freed
4070 * with RTMemTmpFree, which must be used as in other code paths
4071 * StrDup is not usable. */
4072 char *pszBasename = (char *)RTMemTmpAlloc(cbBasenameSubstr);
4073 if (!pszBasename)
4074 return VERR_NO_MEMORY;
4075 memcpy(pszBasename, pszBasenameSubstr, cbBasenameSubstr);
4076 pExtent->pszBasename = pszBasename;
4077
4078 char *pszBasedirectory = RTStrDup(pImage->pszFilename);
4079 RTPathStripFilename(pszBasedirectory);
4080 char *pszFullname = RTPathJoinA(pszBasedirectory, pExtent->pszBasename);
4081 RTStrFree(pszBasedirectory);
4082 if (!pszFullname)
4083 return VERR_NO_STR_MEMORY;
4084 pExtent->pszFullname = pszFullname;
4085
4086 /* Create file for extent. Make it write only, no reading allowed. */
4087 rc = vmdkFileOpen(pImage, &pExtent->pFile, pExtent->pszFullname,
4088 VDOpenFlagsToFileOpenFlags(pImage->uOpenFlags,
4089 true /* fCreate */)
4090 & ~RTFILE_O_READ,
4091 false /* fAsyncIO */);
4092 if (RT_FAILURE(rc))
4093 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
4094
4095 /* Place descriptor file information. */
4096 pExtent->uDescriptorSector = 1;
4097 pExtent->cDescriptorSectors = VMDK_BYTE2SECTOR(pImage->cbDescAlloc);
4098 /* The descriptor is part of the (only) extent. */
4099 pExtent->pDescData = pImage->pDescData;
4100 pImage->pDescData = NULL;
4101
4102 uint64_t cSectorsPerGDE, cSectorsPerGD;
4103 pExtent->enmType = VMDKETYPE_HOSTED_SPARSE;
4104 pExtent->cSectors = VMDK_BYTE2SECTOR(RT_ALIGN_64(cbSize, _64K));
4105 pExtent->cSectorsPerGrain = VMDK_BYTE2SECTOR(_64K);
4106 pExtent->cGTEntries = 512;
4107 cSectorsPerGDE = pExtent->cGTEntries * pExtent->cSectorsPerGrain;
4108 pExtent->cSectorsPerGDE = cSectorsPerGDE;
4109 pExtent->cGDEntries = (pExtent->cSectors + cSectorsPerGDE - 1) / cSectorsPerGDE;
4110 cSectorsPerGD = (pExtent->cGDEntries + (512 / sizeof(uint32_t) - 1)) / (512 / sizeof(uint32_t));
4111
4112 /* The spec says version is 1 for all VMDKs, but the vast
4113 * majority of streamOptimized VMDKs actually contain
4114 * version 3 - so go with the majority. Both are accepted. */
4115 pExtent->uVersion = 3;
4116 pExtent->uCompression = VMDK_COMPRESSION_DEFLATE;
4117 pExtent->fFooter = true;
4118
4119 pExtent->enmAccess = VMDKACCESS_READONLY;
4120 pExtent->fUncleanShutdown = false;
4121 pExtent->cNominalSectors = VMDK_BYTE2SECTOR(cbSize);
4122 pExtent->uSectorOffset = 0;
4123 pExtent->fMetaDirty = true;
4124
4125 /* Create grain directory, without preallocating it straight away. It will
4126 * be constructed on the fly when writing out the data and written when
4127 * closing the image. The end effect is that the full grain directory is
4128 * allocated, which is a requirement of the VMDK specs. */
4129 rc = vmdkCreateGrainDirectory(pImage, pExtent, VMDK_GD_AT_END,
4130 false /* fPreAlloc */);
4131 if (RT_FAILURE(rc))
4132 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
4133
4134 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
4135 "streamOptimized");
4136 if (RT_FAILURE(rc))
4137 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
4138
4139 return rc;
4140}
4141
4142/**
4143 * Internal: The actual code for creating any VMDK variant currently in
4144 * existence on hosted environments.
4145 */
4146static int vmdkCreateImage(PVMDKIMAGE pImage, uint64_t cbSize,
4147 unsigned uImageFlags, const char *pszComment,
4148 PCVDGEOMETRY pPCHSGeometry,
4149 PCVDGEOMETRY pLCHSGeometry, PCRTUUID pUuid,
4150 PFNVDPROGRESS pfnProgress, void *pvUser,
4151 unsigned uPercentStart, unsigned uPercentSpan)
4152{
4153 int rc;
4154
4155 pImage->uImageFlags = uImageFlags;
4156
4157 /* Try to get error interface. */
4158 pImage->pInterfaceError = VDInterfaceGet(pImage->pVDIfsDisk, VDINTERFACETYPE_ERROR);
4159 if (pImage->pInterfaceError)
4160 pImage->pInterfaceErrorCallbacks = VDGetInterfaceError(pImage->pInterfaceError);
4161
4162 /* Get I/O interface. */
4163 pImage->pInterfaceIO = VDInterfaceGet(pImage->pVDIfsImage, VDINTERFACETYPE_IOINT);
4164 AssertPtrReturn(pImage->pInterfaceIO, VERR_INVALID_PARAMETER);
4165 pImage->pInterfaceIOCallbacks = VDGetInterfaceIOInt(pImage->pInterfaceIO);
4166 AssertPtrReturn(pImage->pInterfaceIOCallbacks, VERR_INVALID_PARAMETER);
4167
4168 rc = vmdkCreateDescriptor(pImage, pImage->pDescData, pImage->cbDescAlloc,
4169 &pImage->Descriptor);
4170 if (RT_FAILURE(rc))
4171 {
4172 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new descriptor in '%s'"), pImage->pszFilename);
4173 goto out;
4174 }
4175
4176 if ( (uImageFlags & VD_IMAGE_FLAGS_FIXED)
4177 && (uImageFlags & VD_VMDK_IMAGE_FLAGS_RAWDISK))
4178 {
4179 /* Raw disk image (includes raw partition). */
4180 const PVBOXHDDRAW pRaw = (const PVBOXHDDRAW)pszComment;
4181 /* As the comment is misused, zap it so that no garbage comment
4182 * is set below. */
4183 pszComment = NULL;
4184 rc = vmdkCreateRawImage(pImage, pRaw, cbSize);
4185 }
4186 else
4187 {
4188 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4189 {
4190 /* Stream optimized sparse image (monolithic). */
4191 rc = vmdkCreateStreamImage(pImage, cbSize, uImageFlags,
4192 pfnProgress, pvUser, uPercentStart,
4193 uPercentSpan * 95 / 100);
4194 }
4195 else
4196 {
4197 /* Regular fixed or sparse image (monolithic or split). */
4198 rc = vmdkCreateRegularImage(pImage, cbSize, uImageFlags,
4199 pfnProgress, pvUser, uPercentStart,
4200 uPercentSpan * 95 / 100);
4201 }
4202 }
4203
4204 if (RT_FAILURE(rc))
4205 goto out;
4206
4207 if (RT_SUCCESS(rc) && pfnProgress)
4208 pfnProgress(pvUser, uPercentStart + uPercentSpan * 98 / 100);
4209
4210 pImage->cbSize = cbSize;
4211
4212 for (unsigned i = 0; i < pImage->cExtents; i++)
4213 {
4214 PVMDKEXTENT pExtent = &pImage->pExtents[i];
4215
4216 rc = vmdkDescExtInsert(pImage, &pImage->Descriptor, pExtent->enmAccess,
4217 pExtent->cNominalSectors, pExtent->enmType,
4218 pExtent->pszBasename, pExtent->uSectorOffset);
4219 if (RT_FAILURE(rc))
4220 {
4221 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not insert the extent list into descriptor in '%s'"), pImage->pszFilename);
4222 goto out;
4223 }
4224 }
4225 vmdkDescExtRemoveDummy(pImage, &pImage->Descriptor);
4226
4227 if ( pPCHSGeometry->cCylinders != 0
4228 && pPCHSGeometry->cHeads != 0
4229 && pPCHSGeometry->cSectors != 0)
4230 {
4231 rc = vmdkDescSetPCHSGeometry(pImage, pPCHSGeometry);
4232 if (RT_FAILURE(rc))
4233 goto out;
4234 }
4235 if ( pLCHSGeometry->cCylinders != 0
4236 && pLCHSGeometry->cHeads != 0
4237 && pLCHSGeometry->cSectors != 0)
4238 {
4239 rc = vmdkDescSetLCHSGeometry(pImage, pLCHSGeometry);
4240 if (RT_FAILURE(rc))
4241 goto out;
4242 }
4243
4244 pImage->LCHSGeometry = *pLCHSGeometry;
4245 pImage->PCHSGeometry = *pPCHSGeometry;
4246
4247 pImage->ImageUuid = *pUuid;
4248 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4249 VMDK_DDB_IMAGE_UUID, &pImage->ImageUuid);
4250 if (RT_FAILURE(rc))
4251 {
4252 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in new descriptor in '%s'"), pImage->pszFilename);
4253 goto out;
4254 }
4255 RTUuidClear(&pImage->ParentUuid);
4256 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4257 VMDK_DDB_PARENT_UUID, &pImage->ParentUuid);
4258 if (RT_FAILURE(rc))
4259 {
4260 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in new descriptor in '%s'"), pImage->pszFilename);
4261 goto out;
4262 }
4263 RTUuidClear(&pImage->ModificationUuid);
4264 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4265 VMDK_DDB_MODIFICATION_UUID,
4266 &pImage->ModificationUuid);
4267 if (RT_FAILURE(rc))
4268 {
4269 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in new descriptor in '%s'"), pImage->pszFilename);
4270 goto out;
4271 }
4272 RTUuidClear(&pImage->ParentModificationUuid);
4273 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
4274 VMDK_DDB_PARENT_MODIFICATION_UUID,
4275 &pImage->ParentModificationUuid);
4276 if (RT_FAILURE(rc))
4277 {
4278 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in new descriptor in '%s'"), pImage->pszFilename);
4279 goto out;
4280 }
4281
4282 rc = vmdkAllocateGrainTableCache(pImage);
4283 if (RT_FAILURE(rc))
4284 goto out;
4285
4286 rc = vmdkSetImageComment(pImage, pszComment);
4287 if (RT_FAILURE(rc))
4288 {
4289 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot set image comment in '%s'"), pImage->pszFilename);
4290 goto out;
4291 }
4292
4293 if (RT_SUCCESS(rc) && pfnProgress)
4294 pfnProgress(pvUser, uPercentStart + uPercentSpan * 99 / 100);
4295
4296 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4297 {
4298 /* streamOptimized is a bit special, we cannot trigger the flush
4299 * until all data has been written. So we write the necessary
4300 * information explicitly. */
4301 pImage->pExtents[0].cDescriptorSectors = VMDK_BYTE2SECTOR(RT_ALIGN_64( pImage->Descriptor.aLines[pImage->Descriptor.cLines]
4302 - pImage->Descriptor.aLines[0], 512));
4303 rc = vmdkWriteMetaSparseExtent(pImage, &pImage->pExtents[0], 0);
4304 if (RT_FAILURE(rc))
4305 {
4306 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK header in '%s'"), pImage->pszFilename);
4307 goto out;
4308 }
4309
4310 rc = vmdkWriteDescriptor(pImage);
4311 if (RT_FAILURE(rc))
4312 {
4313 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK descriptor in '%s'"), pImage->pszFilename);
4314 goto out;
4315 }
4316 }
4317 else
4318 rc = vmdkFlushImage(pImage);
4319
4320out:
4321 if (RT_SUCCESS(rc) && pfnProgress)
4322 pfnProgress(pvUser, uPercentStart + uPercentSpan);
4323
4324 if (RT_FAILURE(rc))
4325 vmdkFreeImage(pImage, rc != VERR_ALREADY_EXISTS);
4326 return rc;
4327}
4328
4329/**
4330 * Internal: Update image comment.
4331 */
4332static int vmdkSetImageComment(PVMDKIMAGE pImage, const char *pszComment)
4333{
4334 char *pszCommentEncoded;
4335 if (pszComment)
4336 {
4337 pszCommentEncoded = vmdkEncodeString(pszComment);
4338 if (!pszCommentEncoded)
4339 return VERR_NO_MEMORY;
4340 }
4341 else
4342 pszCommentEncoded = NULL;
4343 int rc = vmdkDescDDBSetStr(pImage, &pImage->Descriptor,
4344 "ddb.comment", pszCommentEncoded);
4345 if (pszComment)
4346 RTStrFree(pszCommentEncoded);
4347 if (RT_FAILURE(rc))
4348 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image comment in descriptor in '%s'"), pImage->pszFilename);
4349 return VINF_SUCCESS;
4350}
4351
4352/**
4353 * Internal. Clear the grain table buffer for real stream optimized writing.
4354 */
4355static void vmdkStreamClearGT(PVMDKIMAGE pImage, PVMDKEXTENT pExtent)
4356{
4357 uint32_t cCacheLines = RT_ALIGN(pExtent->cGTEntries, VMDK_GT_CACHELINE_SIZE) / VMDK_GT_CACHELINE_SIZE;
4358 for (uint32_t i = 0; i < cCacheLines; i++)
4359 memset(&pImage->pGTCache->aGTCache[i].aGTData[0], '\0',
4360 VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t));
4361}
4362
4363/**
4364 * Internal. Flush the grain table buffer for real stream optimized writing.
4365 */
4366static int vmdkStreamFlushGT(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
4367 uint32_t uGDEntry)
4368{
4369 int rc = VINF_SUCCESS;
4370 uint32_t cCacheLines = RT_ALIGN(pExtent->cGTEntries, VMDK_GT_CACHELINE_SIZE) / VMDK_GT_CACHELINE_SIZE;
4371
4372 /* VMware does not write out completely empty grain tables in the case
4373 * of streamOptimized images, which according to my interpretation of
4374 * the VMDK 1.1 spec is bending the rules. Since they do it and we can
4375 * handle it without problems do it the same way and save some bytes. */
4376 bool fAllZero = true;
4377 for (uint32_t i = 0; i < cCacheLines; i++)
4378 {
4379 /* Convert the grain table to little endian in place, as it will not
4380 * be used at all after this function has been called. */
4381 uint32_t *pGTTmp = &pImage->pGTCache->aGTCache[i].aGTData[0];
4382 for (uint32_t j = 0; j < VMDK_GT_CACHELINE_SIZE; j++, pGTTmp++)
4383 if (*pGTTmp)
4384 {
4385 fAllZero = false;
4386 break;
4387 }
4388 if (!fAllZero)
4389 break;
4390 }
4391 if (fAllZero)
4392 return VINF_SUCCESS;
4393
4394 uint64_t uFileOffset = pExtent->uAppendPosition;
4395 if (!uFileOffset)
4396 return VERR_INTERNAL_ERROR;
4397 /* Align to sector, as the previous write could have been any size. */
4398 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4399
4400 /* Grain table marker. */
4401 uint8_t aMarker[512];
4402 PVMDKMARKER pMarker = (PVMDKMARKER)&aMarker[0];
4403 memset(pMarker, '\0', sizeof(aMarker));
4404 pMarker->uSector = RT_H2LE_U64(VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t)));
4405 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GT);
4406 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4407 aMarker, sizeof(aMarker), NULL);
4408 AssertRC(rc);
4409 uFileOffset += 512;
4410
4411 if (!pExtent->pGD || pExtent->pGD[uGDEntry])
4412 return VERR_INTERNAL_ERROR;
4413
4414 pExtent->pGD[uGDEntry] = VMDK_BYTE2SECTOR(uFileOffset);
4415
4416 for (uint32_t i = 0; i < cCacheLines; i++)
4417 {
4418 /* Convert the grain table to little endian in place, as it will not
4419 * be used at all after this function has been called. */
4420 uint32_t *pGTTmp = &pImage->pGTCache->aGTCache[i].aGTData[0];
4421 for (uint32_t j = 0; j < VMDK_GT_CACHELINE_SIZE; j++, pGTTmp++)
4422 *pGTTmp = RT_H2LE_U32(*pGTTmp);
4423
4424 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4425 &pImage->pGTCache->aGTCache[i].aGTData[0],
4426 VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t),
4427 NULL);
4428 uFileOffset += VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t);
4429 if (RT_FAILURE(rc))
4430 break;
4431 }
4432 Assert(!(uFileOffset % 512));
4433 pExtent->uAppendPosition = RT_ALIGN_64(uFileOffset, 512);
4434 return rc;
4435}
4436
4437/**
4438 * Internal. Free all allocated space for representing an image, and optionally
4439 * delete the image from disk.
4440 */
4441static int vmdkFreeImage(PVMDKIMAGE pImage, bool fDelete)
4442{
4443 int rc = VINF_SUCCESS;
4444
4445 /* Freeing a never allocated image (e.g. because the open failed) is
4446 * not signalled as an error. After all nothing bad happens. */
4447 if (pImage)
4448 {
4449 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
4450 {
4451 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4452 {
4453 /* Check if all extents are clean. */
4454 for (unsigned i = 0; i < pImage->cExtents; i++)
4455 {
4456 Assert(!pImage->pExtents[i].fUncleanShutdown);
4457 }
4458 }
4459 else
4460 {
4461 /* Mark all extents as clean. */
4462 for (unsigned i = 0; i < pImage->cExtents; i++)
4463 {
4464 if ( ( pImage->pExtents[i].enmType == VMDKETYPE_HOSTED_SPARSE
4465#ifdef VBOX_WITH_VMDK_ESX
4466 || pImage->pExtents[i].enmType == VMDKETYPE_ESX_SPARSE
4467#endif /* VBOX_WITH_VMDK_ESX */
4468 )
4469 && pImage->pExtents[i].fUncleanShutdown)
4470 {
4471 pImage->pExtents[i].fUncleanShutdown = false;
4472 pImage->pExtents[i].fMetaDirty = true;
4473 }
4474
4475 /* From now on it's not safe to append any more data. */
4476 pImage->pExtents[i].uAppendPosition = 0;
4477 }
4478 }
4479 }
4480
4481 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
4482 {
4483 /* No need to write any pending data if the file will be deleted
4484 * or if the new file wasn't successfully created. */
4485 if ( !fDelete && pImage->pExtents
4486 && pImage->pExtents[0].cGTEntries
4487 && pImage->pExtents[0].uAppendPosition)
4488 {
4489 PVMDKEXTENT pExtent = &pImage->pExtents[0];
4490 uint32_t uLastGDEntry = pExtent->uLastGrainAccess / pExtent->cGTEntries;
4491 if (uLastGDEntry != pExtent->cGDEntries - 1)
4492 {
4493 rc = vmdkStreamFlushGT(pImage, pExtent, uLastGDEntry);
4494 AssertRC(rc);
4495 vmdkStreamClearGT(pImage, pExtent);
4496 for (uint32_t i = uLastGDEntry + 1; i < pExtent->cGDEntries; i++)
4497 {
4498 rc = vmdkStreamFlushGT(pImage, pExtent, i);
4499 AssertRC(rc);
4500 }
4501 }
4502
4503 uint64_t uFileOffset = pExtent->uAppendPosition;
4504 if (!uFileOffset)
4505 return VERR_INTERNAL_ERROR;
4506 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4507
4508 /* From now on it's not safe to append any more data. */
4509 pExtent->uAppendPosition = 0;
4510
4511 /* Grain directory marker. */
4512 uint8_t aMarker[512];
4513 PVMDKMARKER pMarker = (PVMDKMARKER)&aMarker[0];
4514 memset(pMarker, '\0', sizeof(aMarker));
4515 pMarker->uSector = VMDK_BYTE2SECTOR(RT_ALIGN_64(RT_H2LE_U64(pExtent->cGDEntries * sizeof(uint32_t)), 512));
4516 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GD);
4517 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4518 aMarker, sizeof(aMarker), NULL);
4519 AssertRC(rc);
4520 uFileOffset += 512;
4521
4522 /* Write grain directory in little endian style. The array will
4523 * not be used after this, so convert in place. */
4524 uint32_t *pGDTmp = pExtent->pGD;
4525 for (uint32_t i = 0; i < pExtent->cGDEntries; i++, pGDTmp++)
4526 *pGDTmp = RT_H2LE_U32(*pGDTmp);
4527 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4528 pExtent->pGD,
4529 pExtent->cGDEntries * sizeof(uint32_t),
4530 NULL);
4531 AssertRC(rc);
4532
4533 pExtent->uSectorGD = VMDK_BYTE2SECTOR(uFileOffset);
4534 pExtent->uSectorRGD = VMDK_BYTE2SECTOR(uFileOffset);
4535 uFileOffset = RT_ALIGN_64( uFileOffset
4536 + pExtent->cGDEntries * sizeof(uint32_t),
4537 512);
4538
4539 /* Footer marker. */
4540 memset(pMarker, '\0', sizeof(aMarker));
4541 pMarker->uSector = VMDK_BYTE2SECTOR(512);
4542 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_FOOTER);
4543 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4544 aMarker, sizeof(aMarker), NULL);
4545 AssertRC(rc);
4546
4547 uFileOffset += 512;
4548 rc = vmdkWriteMetaSparseExtent(pImage, pExtent, uFileOffset);
4549 AssertRC(rc);
4550
4551 uFileOffset += 512;
4552 /* End-of-stream marker. */
4553 memset(pMarker, '\0', sizeof(aMarker));
4554 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
4555 aMarker, sizeof(aMarker), NULL);
4556 AssertRC(rc);
4557 }
4558 }
4559 else
4560 vmdkFlushImage(pImage);
4561
4562 if (pImage->pExtents != NULL)
4563 {
4564 for (unsigned i = 0 ; i < pImage->cExtents; i++)
4565 vmdkFreeExtentData(pImage, &pImage->pExtents[i], fDelete);
4566 RTMemFree(pImage->pExtents);
4567 pImage->pExtents = NULL;
4568 }
4569 pImage->cExtents = 0;
4570 if (pImage->pFile != NULL)
4571 vmdkFileClose(pImage, &pImage->pFile, fDelete);
4572 vmdkFileCheckAllClose(pImage);
4573
4574 if (pImage->pGTCache)
4575 {
4576 RTMemFree(pImage->pGTCache);
4577 pImage->pGTCache = NULL;
4578 }
4579 if (pImage->pDescData)
4580 {
4581 RTMemFree(pImage->pDescData);
4582 pImage->pDescData = NULL;
4583 }
4584 }
4585
4586 LogFlowFunc(("returns %Rrc\n", rc));
4587 return rc;
4588}
4589
4590/**
4591 * Internal. Flush image data (and metadata) to disk.
4592 */
4593static int vmdkFlushImage(PVMDKIMAGE pImage)
4594{
4595 PVMDKEXTENT pExtent;
4596 int rc = VINF_SUCCESS;
4597
4598 /* Update descriptor if changed. */
4599 if (pImage->Descriptor.fDirty)
4600 {
4601 rc = vmdkWriteDescriptor(pImage);
4602 if (RT_FAILURE(rc))
4603 goto out;
4604 }
4605
4606 for (unsigned i = 0; i < pImage->cExtents; i++)
4607 {
4608 pExtent = &pImage->pExtents[i];
4609 if (pExtent->pFile != NULL && pExtent->fMetaDirty)
4610 {
4611 switch (pExtent->enmType)
4612 {
4613 case VMDKETYPE_HOSTED_SPARSE:
4614 if (!pExtent->fFooter)
4615 {
4616 rc = vmdkWriteMetaSparseExtent(pImage, pExtent, 0);
4617 if (RT_FAILURE(rc))
4618 goto out;
4619 }
4620 else
4621 {
4622 uint64_t uFileOffset = pExtent->uAppendPosition;
4623 /* Simply skip writing anything if the streamOptimized
4624 * image hasn't been just created. */
4625 if (!uFileOffset)
4626 break;
4627 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4628 rc = vmdkWriteMetaSparseExtent(pImage, pExtent,
4629 uFileOffset);
4630 if (RT_FAILURE(rc))
4631 goto out;
4632 }
4633 break;
4634#ifdef VBOX_WITH_VMDK_ESX
4635 case VMDKETYPE_ESX_SPARSE:
4636 /** @todo update the header. */
4637 break;
4638#endif /* VBOX_WITH_VMDK_ESX */
4639 case VMDKETYPE_VMFS:
4640 case VMDKETYPE_FLAT:
4641 /* Nothing to do. */
4642 break;
4643 case VMDKETYPE_ZERO:
4644 default:
4645 AssertMsgFailed(("extent with type %d marked as dirty\n",
4646 pExtent->enmType));
4647 break;
4648 }
4649 }
4650 switch (pExtent->enmType)
4651 {
4652 case VMDKETYPE_HOSTED_SPARSE:
4653#ifdef VBOX_WITH_VMDK_ESX
4654 case VMDKETYPE_ESX_SPARSE:
4655#endif /* VBOX_WITH_VMDK_ESX */
4656 case VMDKETYPE_VMFS:
4657 case VMDKETYPE_FLAT:
4658 /** @todo implement proper path absolute check. */
4659 if ( pExtent->pFile != NULL
4660 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
4661 && !(pExtent->pszBasename[0] == RTPATH_SLASH))
4662 rc = vmdkFileFlush(pImage, pExtent->pFile);
4663 break;
4664 case VMDKETYPE_ZERO:
4665 /* No need to do anything for this extent. */
4666 break;
4667 default:
4668 AssertMsgFailed(("unknown extent type %d\n", pExtent->enmType));
4669 break;
4670 }
4671 }
4672
4673out:
4674 return rc;
4675}
4676
4677/**
4678 * Internal. Flush image data (and metadata) to disk - async version.
4679 */
4680static int vmdkFlushImageAsync(PVMDKIMAGE pImage, PVDIOCTX pIoCtx)
4681{
4682 PVMDKEXTENT pExtent;
4683 int rc = VINF_SUCCESS;
4684
4685 /* Update descriptor if changed. */
4686 if (pImage->Descriptor.fDirty)
4687 {
4688 rc = vmdkWriteDescriptorAsync(pImage, pIoCtx);
4689 if ( RT_FAILURE(rc)
4690 && rc != VERR_VD_ASYNC_IO_IN_PROGRESS)
4691 goto out;
4692 }
4693
4694 for (unsigned i = 0; i < pImage->cExtents; i++)
4695 {
4696 pExtent = &pImage->pExtents[i];
4697 if (pExtent->pFile != NULL && pExtent->fMetaDirty)
4698 {
4699 switch (pExtent->enmType)
4700 {
4701 case VMDKETYPE_HOSTED_SPARSE:
4702 AssertMsgFailed(("Async I/O not supported for sparse images\n"));
4703 break;
4704#ifdef VBOX_WITH_VMDK_ESX
4705 case VMDKETYPE_ESX_SPARSE:
4706 /** @todo update the header. */
4707 break;
4708#endif /* VBOX_WITH_VMDK_ESX */
4709 case VMDKETYPE_VMFS:
4710 case VMDKETYPE_FLAT:
4711 /* Nothing to do. */
4712 break;
4713 case VMDKETYPE_ZERO:
4714 default:
4715 AssertMsgFailed(("extent with type %d marked as dirty\n",
4716 pExtent->enmType));
4717 break;
4718 }
4719 }
4720 switch (pExtent->enmType)
4721 {
4722 case VMDKETYPE_HOSTED_SPARSE:
4723#ifdef VBOX_WITH_VMDK_ESX
4724 case VMDKETYPE_ESX_SPARSE:
4725#endif /* VBOX_WITH_VMDK_ESX */
4726 case VMDKETYPE_VMFS:
4727 case VMDKETYPE_FLAT:
4728 /** @todo implement proper path absolute check. */
4729 if ( pExtent->pFile != NULL
4730 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
4731 && !(pExtent->pszBasename[0] == RTPATH_SLASH))
4732 rc = vmdkFileFlushAsync(pImage, pExtent->pFile, pIoCtx);
4733 break;
4734 case VMDKETYPE_ZERO:
4735 /* No need to do anything for this extent. */
4736 break;
4737 default:
4738 AssertMsgFailed(("unknown extent type %d\n", pExtent->enmType));
4739 break;
4740 }
4741 }
4742
4743out:
4744 return rc;
4745}
4746
4747/**
4748 * Internal. Find extent corresponding to the sector number in the disk.
4749 */
4750static int vmdkFindExtent(PVMDKIMAGE pImage, uint64_t offSector,
4751 PVMDKEXTENT *ppExtent, uint64_t *puSectorInExtent)
4752{
4753 PVMDKEXTENT pExtent = NULL;
4754 int rc = VINF_SUCCESS;
4755
4756 for (unsigned i = 0; i < pImage->cExtents; i++)
4757 {
4758 if (offSector < pImage->pExtents[i].cNominalSectors)
4759 {
4760 pExtent = &pImage->pExtents[i];
4761 *puSectorInExtent = offSector + pImage->pExtents[i].uSectorOffset;
4762 break;
4763 }
4764 offSector -= pImage->pExtents[i].cNominalSectors;
4765 }
4766
4767 if (pExtent)
4768 *ppExtent = pExtent;
4769 else
4770 rc = VERR_IO_SECTOR_NOT_FOUND;
4771
4772 return rc;
4773}
4774
4775/**
4776 * Internal. Hash function for placing the grain table hash entries.
4777 */
4778static uint32_t vmdkGTCacheHash(PVMDKGTCACHE pCache, uint64_t uSector,
4779 unsigned uExtent)
4780{
4781 /** @todo this hash function is quite simple, maybe use a better one which
4782 * scrambles the bits better. */
4783 return (uSector + uExtent) % pCache->cEntries;
4784}
4785
4786/**
4787 * Internal. Get sector number in the extent file from the relative sector
4788 * number in the extent.
4789 */
4790static int vmdkGetSector(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
4791 uint64_t uSector, uint64_t *puExtentSector)
4792{
4793 PVMDKGTCACHE pCache = pImage->pGTCache;
4794 uint64_t uGDIndex, uGTSector, uGTBlock;
4795 uint32_t uGTHash, uGTBlockIndex;
4796 PVMDKGTCACHEENTRY pGTCacheEntry;
4797 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
4798 int rc;
4799
4800 /* For newly created and readonly/sequentially opened streamOptimized
4801 * images this must be a no-op, as the grain directory is not there. */
4802 if ( ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
4803 && pExtent->uAppendPosition)
4804 || ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
4805 && pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY
4806 && pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
4807 {
4808 *puExtentSector = 0;
4809 return VINF_SUCCESS;
4810 }
4811
4812 uGDIndex = uSector / pExtent->cSectorsPerGDE;
4813 if (uGDIndex >= pExtent->cGDEntries)
4814 return VERR_OUT_OF_RANGE;
4815 uGTSector = pExtent->pGD[uGDIndex];
4816 if (!uGTSector)
4817 {
4818 /* There is no grain table referenced by this grain directory
4819 * entry. So there is absolutely no data in this area. */
4820 *puExtentSector = 0;
4821 return VINF_SUCCESS;
4822 }
4823
4824 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
4825 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
4826 pGTCacheEntry = &pCache->aGTCache[uGTHash];
4827 if ( pGTCacheEntry->uExtent != pExtent->uExtent
4828 || pGTCacheEntry->uGTBlock != uGTBlock)
4829 {
4830 /* Cache miss, fetch data from disk. */
4831 rc = vmdkFileReadSync(pImage, pExtent->pFile,
4832 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
4833 aGTDataTmp, sizeof(aGTDataTmp), NULL);
4834 if (RT_FAILURE(rc))
4835 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read grain table entry in '%s'"), pExtent->pszFullname);
4836 pGTCacheEntry->uExtent = pExtent->uExtent;
4837 pGTCacheEntry->uGTBlock = uGTBlock;
4838 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
4839 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
4840 }
4841 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
4842 uint32_t uGrainSector = pGTCacheEntry->aGTData[uGTBlockIndex];
4843 if (uGrainSector)
4844 *puExtentSector = uGrainSector + uSector % pExtent->cSectorsPerGrain;
4845 else
4846 *puExtentSector = 0;
4847 return VINF_SUCCESS;
4848}
4849
4850/**
4851 * Internal. Get sector number in the extent file from the relative sector
4852 * number in the extent - version for async access.
4853 */
4854static int vmdkGetSectorAsync(PVMDKIMAGE pImage, PVDIOCTX pIoCtx,
4855 PVMDKEXTENT pExtent, uint64_t uSector,
4856 uint64_t *puExtentSector)
4857{
4858 PVMDKGTCACHE pCache = pImage->pGTCache;
4859 uint64_t uGDIndex, uGTSector, uGTBlock;
4860 uint32_t uGTHash, uGTBlockIndex;
4861 PVMDKGTCACHEENTRY pGTCacheEntry;
4862 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
4863 int rc;
4864
4865 uGDIndex = uSector / pExtent->cSectorsPerGDE;
4866 if (uGDIndex >= pExtent->cGDEntries)
4867 return VERR_OUT_OF_RANGE;
4868 uGTSector = pExtent->pGD[uGDIndex];
4869 if (!uGTSector)
4870 {
4871 /* There is no grain table referenced by this grain directory
4872 * entry. So there is absolutely no data in this area. */
4873 *puExtentSector = 0;
4874 return VINF_SUCCESS;
4875 }
4876
4877 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
4878 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
4879 pGTCacheEntry = &pCache->aGTCache[uGTHash];
4880 if ( pGTCacheEntry->uExtent != pExtent->uExtent
4881 || pGTCacheEntry->uGTBlock != uGTBlock)
4882 {
4883 /* Cache miss, fetch data from disk. */
4884 PVDMETAXFER pMetaXfer;
4885 rc = vmdkFileReadMetaAsync(pImage, pExtent->pFile,
4886 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
4887 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx, &pMetaXfer, NULL, NULL);
4888 if (RT_FAILURE(rc))
4889 return rc;
4890 /* We can release the metadata transfer immediately. */
4891 vmdkFileMetaXferRelease(pImage, pMetaXfer);
4892 pGTCacheEntry->uExtent = pExtent->uExtent;
4893 pGTCacheEntry->uGTBlock = uGTBlock;
4894 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
4895 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
4896 }
4897 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
4898 uint32_t uGrainSector = pGTCacheEntry->aGTData[uGTBlockIndex];
4899 if (uGrainSector)
4900 *puExtentSector = uGrainSector + uSector % pExtent->cSectorsPerGrain;
4901 else
4902 *puExtentSector = 0;
4903 return VINF_SUCCESS;
4904}
4905
4906/**
4907 * Internal. Allocates a new grain table (if necessary), writes the grain
4908 * and updates the grain table. The cache is also updated by this operation.
4909 * This is separate from vmdkGetSector, because that should be as fast as
4910 * possible. Most code from vmdkGetSector also appears here.
4911 */
4912static int vmdkAllocGrain(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
4913 uint64_t uSector, const void *pvBuf,
4914 uint64_t cbWrite)
4915{
4916 PVMDKGTCACHE pCache = pImage->pGTCache;
4917 uint64_t uGDIndex, uGTSector, uRGTSector, uGTBlock;
4918 uint64_t uFileOffset;
4919 uint32_t uGTHash, uGTBlockIndex;
4920 PVMDKGTCACHEENTRY pGTCacheEntry;
4921 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
4922 int rc;
4923
4924 uGDIndex = uSector / pExtent->cSectorsPerGDE;
4925 if (uGDIndex >= pExtent->cGDEntries)
4926 return VERR_OUT_OF_RANGE;
4927 uGTSector = pExtent->pGD[uGDIndex];
4928 if (pExtent->pRGD)
4929 uRGTSector = pExtent->pRGD[uGDIndex];
4930 else
4931 uRGTSector = 0; /**< avoid compiler warning */
4932 if (!uGTSector)
4933 {
4934 /* There is no grain table referenced by this grain directory
4935 * entry. So there is absolutely no data in this area. Allocate
4936 * a new grain table and put the reference to it in the GDs. */
4937 uFileOffset = pExtent->uAppendPosition;
4938 if (!uFileOffset)
4939 return VERR_INTERNAL_ERROR;
4940 Assert(!(uFileOffset % 512));
4941 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
4942 uGTSector = VMDK_BYTE2SECTOR(uFileOffset);
4943
4944 pExtent->uAppendPosition += pExtent->cGTEntries * sizeof(uint32_t);
4945
4946 /* Normally the grain table is preallocated for hosted sparse extents
4947 * that support more than 32 bit sector numbers. So this shouldn't
4948 * ever happen on a valid extent. */
4949 if (uGTSector > UINT32_MAX)
4950 return VERR_VD_VMDK_INVALID_HEADER;
4951
4952 /* Write grain table by writing the required number of grain table
4953 * cache chunks. Avoids dynamic memory allocation, but is a bit
4954 * slower. But as this is a pretty infrequently occurring case it
4955 * should be acceptable. */
4956 memset(aGTDataTmp, '\0', sizeof(aGTDataTmp));
4957 for (unsigned i = 0;
4958 i < pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE;
4959 i++)
4960 {
4961 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
4962 VMDK_SECTOR2BYTE(uGTSector) + i * sizeof(aGTDataTmp),
4963 aGTDataTmp, sizeof(aGTDataTmp), NULL);
4964 if (RT_FAILURE(rc))
4965 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
4966 }
4967 pExtent->uAppendPosition = RT_ALIGN_64( pExtent->uAppendPosition
4968 + pExtent->cGTEntries * sizeof(uint32_t),
4969 512);
4970
4971 if (pExtent->pRGD)
4972 {
4973 AssertReturn(!uRGTSector, VERR_VD_VMDK_INVALID_HEADER);
4974 uFileOffset = pExtent->uAppendPosition;
4975 if (!uFileOffset)
4976 return VERR_INTERNAL_ERROR;
4977 Assert(!(uFileOffset % 512));
4978 uRGTSector = VMDK_BYTE2SECTOR(uFileOffset);
4979
4980 pExtent->uAppendPosition += pExtent->cGTEntries * sizeof(uint32_t);
4981
4982 /* Normally the redundant grain table is preallocated for hosted
4983 * sparse extents that support more than 32 bit sector numbers. So
4984 * this shouldn't ever happen on a valid extent. */
4985 if (uRGTSector > UINT32_MAX)
4986 return VERR_VD_VMDK_INVALID_HEADER;
4987
4988 /* Write backup grain table by writing the required number of grain
4989 * table cache chunks. Avoids dynamic memory allocation, but is a
4990 * bit slower. But as this is a pretty infrequently occurring case
4991 * it should be acceptable. */
4992 for (unsigned i = 0;
4993 i < pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE;
4994 i++)
4995 {
4996 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
4997 VMDK_SECTOR2BYTE(uRGTSector) + i * sizeof(aGTDataTmp),
4998 aGTDataTmp, sizeof(aGTDataTmp), NULL);
4999 if (RT_FAILURE(rc))
5000 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
5001 }
5002
5003 pExtent->uAppendPosition = pExtent->uAppendPosition
5004 + pExtent->cGTEntries * sizeof(uint32_t);
5005 }
5006
5007 /* Update the grain directory on disk (doing it before writing the
5008 * grain table will result in a garbled extent if the operation is
5009 * aborted for some reason. Otherwise the worst that can happen is
5010 * some unused sectors in the extent. */
5011 uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector);
5012 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5013 VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
5014 &uGTSectorLE, sizeof(uGTSectorLE), NULL);
5015 if (RT_FAILURE(rc))
5016 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
5017 if (pExtent->pRGD)
5018 {
5019 uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector);
5020 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5021 VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uRGTSectorLE),
5022 &uRGTSectorLE, sizeof(uRGTSectorLE), NULL);
5023 if (RT_FAILURE(rc))
5024 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
5025 }
5026
5027 /* As the final step update the in-memory copy of the GDs. */
5028 pExtent->pGD[uGDIndex] = uGTSector;
5029 if (pExtent->pRGD)
5030 pExtent->pRGD[uGDIndex] = uRGTSector;
5031 }
5032
5033 uFileOffset = pExtent->uAppendPosition;
5034 if (!uFileOffset)
5035 return VERR_INTERNAL_ERROR;
5036 Assert(!(uFileOffset % 512));
5037
5038 /* Write the data. Always a full grain, or we're in big trouble. */
5039 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
5040 {
5041 if (cbWrite != VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
5042 return vmdkError(pImage, VERR_INTERNAL_ERROR, RT_SRC_POS, N_("VMDK: not enough data for a compressed data block in '%s'"), pExtent->pszFullname);
5043
5044 /* Invalidate cache, just in case some code incorrectly allows mixing
5045 * of reads and writes. Normally shouldn't be needed. */
5046 pExtent->uGrainSectorAbs = 0;
5047
5048 /* Write compressed data block and the markers. */
5049 uint32_t cbGrain = 0;
5050 rc = vmdkFileDeflateSync(pImage, pExtent, uFileOffset,
5051 pvBuf, cbWrite, uSector, &cbGrain);
5052 if (RT_FAILURE(rc))
5053 {
5054 AssertRC(rc);
5055 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated compressed data block in '%s'"), pExtent->pszFullname);
5056 }
5057 pExtent->uLastGrainAccess = uSector / pExtent->cSectorsPerGrain;
5058 pExtent->uAppendPosition += cbGrain;
5059 }
5060 else
5061 {
5062 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
5063 pvBuf, cbWrite, NULL);
5064 if (RT_FAILURE(rc))
5065 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
5066 pExtent->uAppendPosition += cbWrite;
5067 }
5068
5069 /* Update the grain table (and the cache). */
5070 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
5071 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
5072 pGTCacheEntry = &pCache->aGTCache[uGTHash];
5073 if ( pGTCacheEntry->uExtent != pExtent->uExtent
5074 || pGTCacheEntry->uGTBlock != uGTBlock)
5075 {
5076 /* Cache miss, fetch data from disk. */
5077 rc = vmdkFileReadSync(pImage, pExtent->pFile,
5078 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5079 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5080 if (RT_FAILURE(rc))
5081 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
5082 pGTCacheEntry->uExtent = pExtent->uExtent;
5083 pGTCacheEntry->uGTBlock = uGTBlock;
5084 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5085 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
5086 }
5087 else
5088 {
5089 /* Cache hit. Convert grain table block back to disk format, otherwise
5090 * the code below will write garbage for all but the updated entry. */
5091 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5092 aGTDataTmp[i] = RT_H2LE_U32(pGTCacheEntry->aGTData[i]);
5093 }
5094 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
5095 aGTDataTmp[uGTBlockIndex] = RT_H2LE_U32(VMDK_BYTE2SECTOR(uFileOffset));
5096 pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(uFileOffset);
5097 /* Update grain table on disk. */
5098 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5099 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5100 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5101 if (RT_FAILURE(rc))
5102 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
5103 if (pExtent->pRGD)
5104 {
5105 /* Update backup grain table on disk. */
5106 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
5107 VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5108 aGTDataTmp, sizeof(aGTDataTmp), NULL);
5109 if (RT_FAILURE(rc))
5110 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
5111 }
5112#ifdef VBOX_WITH_VMDK_ESX
5113 if (RT_SUCCESS(rc) && pExtent->enmType == VMDKETYPE_ESX_SPARSE)
5114 {
5115 pExtent->uFreeSector = uGTSector + VMDK_BYTE2SECTOR(cbWrite);
5116 pExtent->fMetaDirty = true;
5117 }
5118#endif /* VBOX_WITH_VMDK_ESX */
5119 return rc;
5120}
5121
5122/**
5123 * Internal. Writes the grain and also if necessary the grain tables.
5124 * Uses the grain table cache as a true grain table.
5125 */
5126static int vmdkStreamAllocGrain(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5127 uint64_t uSector, const void *pvBuf,
5128 uint64_t cbWrite)
5129{
5130 uint32_t uGrain;
5131 uint32_t uGDEntry, uLastGDEntry;
5132 uint32_t cbGrain = 0;
5133 uint32_t uCacheLine, uCacheEntry;
5134 const void *pData = pvBuf;
5135 int rc;
5136
5137 /* Very strict requirements: always write at least one full grain, with
5138 * proper alignment. Everything else would require reading of already
5139 * written data, which we don't support for obvious reasons. The only
5140 * exception is the last grain, and only if the image size specifies
5141 * that only some portion holds data. In any case the write must be
5142 * within the image limits, no "overshoot" allowed. */
5143 if ( cbWrite == 0
5144 || ( cbWrite < VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain)
5145 && pExtent->cNominalSectors - uSector >= pExtent->cSectorsPerGrain)
5146 || uSector % pExtent->cSectorsPerGrain
5147 || uSector + VMDK_BYTE2SECTOR(cbWrite) > pExtent->cNominalSectors)
5148 return VERR_INVALID_PARAMETER;
5149
5150 /* Clip write range to at most the rest of the grain. */
5151 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSector % pExtent->cSectorsPerGrain));
5152
5153 /* Do not allow to go back. */
5154 uGrain = uSector / pExtent->cSectorsPerGrain;
5155 uCacheLine = uGrain % pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE;
5156 uCacheEntry = uGrain % VMDK_GT_CACHELINE_SIZE;
5157 uGDEntry = uGrain / pExtent->cGTEntries;
5158 uLastGDEntry = pExtent->uLastGrainAccess / pExtent->cGTEntries;
5159 if (uGrain < pExtent->uLastGrainAccess)
5160 return VERR_VD_VMDK_INVALID_WRITE;
5161
5162 /* Zero byte write optimization. Since we don't tell VBoxHDD that we need
5163 * to allocate something, we also need to detect the situation ourself. */
5164 if ( !(pImage->uOpenFlags & VD_OPEN_FLAGS_HONOR_ZEROES)
5165 && ASMBitFirstSet((volatile void *)pvBuf, (uint32_t)cbWrite * 8) == -1)
5166 return VINF_SUCCESS;
5167
5168 if (uGDEntry != uLastGDEntry)
5169 {
5170 rc = vmdkStreamFlushGT(pImage, pExtent, uLastGDEntry);
5171 if (RT_FAILURE(rc))
5172 return rc;
5173 vmdkStreamClearGT(pImage, pExtent);
5174 for (uint32_t i = uLastGDEntry + 1; i < uGDEntry; i++)
5175 {
5176 rc = vmdkStreamFlushGT(pImage, pExtent, i);
5177 if (RT_FAILURE(rc))
5178 return rc;
5179 }
5180 }
5181
5182 uint64_t uFileOffset;
5183 uFileOffset = pExtent->uAppendPosition;
5184 if (!uFileOffset)
5185 return VERR_INTERNAL_ERROR;
5186 /* Align to sector, as the previous write could have been any size. */
5187 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
5188
5189 /* Paranoia check: extent type, grain table buffer presence and
5190 * grain table buffer space. Also grain table entry must be clear. */
5191 if ( pExtent->enmType != VMDKETYPE_HOSTED_SPARSE
5192 || !pImage->pGTCache
5193 || pExtent->cGTEntries > VMDK_GT_CACHE_SIZE * VMDK_GT_CACHELINE_SIZE
5194 || pImage->pGTCache->aGTCache[uCacheLine].aGTData[uCacheEntry])
5195 return VERR_INTERNAL_ERROR;
5196
5197 /* Update grain table entry. */
5198 pImage->pGTCache->aGTCache[uCacheLine].aGTData[uCacheEntry] = VMDK_BYTE2SECTOR(uFileOffset);
5199
5200 if (cbWrite != VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
5201 {
5202 memcpy(pExtent->pvGrain, pvBuf, cbWrite);
5203 memset((char *)pExtent->pvGrain + cbWrite, '\0',
5204 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain) - cbWrite);
5205 pData = pExtent->pvGrain;
5206 }
5207 rc = vmdkFileDeflateSync(pImage, pExtent, uFileOffset, pData,
5208 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain),
5209 uSector, &cbGrain);
5210 if (RT_FAILURE(rc))
5211 {
5212 pExtent->uGrainSectorAbs = 0;
5213 AssertRC(rc);
5214 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write compressed data block in '%s'"), pExtent->pszFullname);
5215 }
5216 pExtent->uLastGrainAccess = uGrain;
5217 pExtent->uAppendPosition += cbGrain;
5218
5219 return rc;
5220}
5221
5222/**
5223 * Internal: Updates the grain table during a async grain allocation.
5224 */
5225static int vmdkAllocGrainAsyncGTUpdate(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5226 PVDIOCTX pIoCtx,
5227 PVMDKGRAINALLOCASYNC pGrainAlloc)
5228{
5229 int rc = VINF_SUCCESS;
5230 PVMDKGTCACHE pCache = pImage->pGTCache;
5231 uint32_t aGTDataTmp[VMDK_GT_CACHELINE_SIZE];
5232 uint32_t uGTHash, uGTBlockIndex;
5233 uint64_t uGTSector, uRGTSector, uGTBlock;
5234 uint64_t uSector = pGrainAlloc->uSector;
5235 PVMDKGTCACHEENTRY pGTCacheEntry;
5236
5237 LogFlowFunc(("pImage=%#p pExtent=%#p pCache=%#p pIoCtx=%#p pGrainAlloc=%#p\n",
5238 pImage, pExtent, pCache, pIoCtx, pGrainAlloc));
5239
5240 uGTSector = pGrainAlloc->uGTSector;
5241 uRGTSector = pGrainAlloc->uRGTSector;
5242 LogFlow(("uGTSector=%llu uRGTSector=%llu\n", uGTSector, uRGTSector));
5243
5244 /* Update the grain table (and the cache). */
5245 uGTBlock = uSector / (pExtent->cSectorsPerGrain * VMDK_GT_CACHELINE_SIZE);
5246 uGTHash = vmdkGTCacheHash(pCache, uGTBlock, pExtent->uExtent);
5247 pGTCacheEntry = &pCache->aGTCache[uGTHash];
5248 if ( pGTCacheEntry->uExtent != pExtent->uExtent
5249 || pGTCacheEntry->uGTBlock != uGTBlock)
5250 {
5251 /* Cache miss, fetch data from disk. */
5252 LogFlow(("Cache miss, fetch data from disk\n"));
5253 PVDMETAXFER pMetaXfer = NULL;
5254 rc = vmdkFileReadMetaAsync(pImage, pExtent->pFile,
5255 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5256 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
5257 &pMetaXfer, vmdkAllocGrainAsyncComplete, pGrainAlloc);
5258 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5259 {
5260 pGrainAlloc->cIoXfersPending++;
5261 pGrainAlloc->fGTUpdateNeeded = true;
5262 /* Leave early, we will be called again after the read completed. */
5263 LogFlowFunc(("Metadata read in progress, leaving\n"));
5264 return rc;
5265 }
5266 else if (RT_FAILURE(rc))
5267 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
5268 vmdkFileMetaXferRelease(pImage, pMetaXfer);
5269 pGTCacheEntry->uExtent = pExtent->uExtent;
5270 pGTCacheEntry->uGTBlock = uGTBlock;
5271 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5272 pGTCacheEntry->aGTData[i] = RT_LE2H_U32(aGTDataTmp[i]);
5273 }
5274 else
5275 {
5276 /* Cache hit. Convert grain table block back to disk format, otherwise
5277 * the code below will write garbage for all but the updated entry. */
5278 for (unsigned i = 0; i < VMDK_GT_CACHELINE_SIZE; i++)
5279 aGTDataTmp[i] = RT_H2LE_U32(pGTCacheEntry->aGTData[i]);
5280 }
5281 pGrainAlloc->fGTUpdateNeeded = false;
5282 uGTBlockIndex = (uSector / pExtent->cSectorsPerGrain) % VMDK_GT_CACHELINE_SIZE;
5283 aGTDataTmp[uGTBlockIndex] = RT_H2LE_U32(VMDK_BYTE2SECTOR(pGrainAlloc->uGrainOffset));
5284 pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(pGrainAlloc->uGrainOffset);
5285 /* Update grain table on disk. */
5286 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5287 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5288 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
5289 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5290 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5291 pGrainAlloc->cIoXfersPending++;
5292 else if (RT_FAILURE(rc))
5293 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
5294 if (pExtent->pRGD)
5295 {
5296 /* Update backup grain table on disk. */
5297 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5298 VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
5299 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
5300 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5301 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5302 pGrainAlloc->cIoXfersPending++;
5303 else if (RT_FAILURE(rc))
5304 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
5305 }
5306#ifdef VBOX_WITH_VMDK_ESX
5307 if (RT_SUCCESS(rc) && pExtent->enmType == VMDKETYPE_ESX_SPARSE)
5308 {
5309 pExtent->uFreeSector = uGTSector + VMDK_BYTE2SECTOR(cbWrite);
5310 pExtent->fMetaDirty = true;
5311 }
5312#endif /* VBOX_WITH_VMDK_ESX */
5313
5314 LogFlowFunc(("leaving rc=%Rrc\n", rc));
5315
5316 return rc;
5317}
5318
5319/**
5320 * Internal - complete the grain allocation by updating disk grain table if required.
5321 */
5322static int vmdkAllocGrainAsyncComplete(void *pBackendData, PVDIOCTX pIoCtx, void *pvUser, int rcReq)
5323{
5324 int rc = VINF_SUCCESS;
5325 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
5326 PVMDKGRAINALLOCASYNC pGrainAlloc = (PVMDKGRAINALLOCASYNC)pvUser;
5327 PVMDKEXTENT pExtent = pGrainAlloc->pExtent;
5328
5329 LogFlowFunc(("pBackendData=%#p pIoCtx=%#p pvUser=%#p rcReq=%Rrc\n",
5330 pBackendData, pIoCtx, pvUser, rcReq));
5331
5332 pGrainAlloc->cIoXfersPending--;
5333 if (!pGrainAlloc->cIoXfersPending && pGrainAlloc->fGTUpdateNeeded)
5334 rc = vmdkAllocGrainAsyncGTUpdate(pImage, pGrainAlloc->pExtent,
5335 pIoCtx, pGrainAlloc);
5336
5337 if (!pGrainAlloc->cIoXfersPending)
5338 {
5339 /* Grain allocation completed. */
5340 RTMemFree(pGrainAlloc);
5341 }
5342
5343 LogFlowFunc(("Leaving rc=%Rrc\n", rc));
5344 return rc;
5345}
5346
5347/**
5348 * Internal. Allocates a new grain table (if necessary) - async version.
5349 */
5350static int vmdkAllocGrainAsync(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5351 PVDIOCTX pIoCtx, uint64_t uSector,
5352 uint64_t cbWrite)
5353{
5354 PVMDKGTCACHE pCache = pImage->pGTCache;
5355 uint64_t uGDIndex, uGTSector, uRGTSector;
5356 uint64_t uFileOffset;
5357 PVMDKGRAINALLOCASYNC pGrainAlloc = NULL;
5358 int rc;
5359
5360 LogFlowFunc(("pCache=%#p pExtent=%#p pIoCtx=%#p uSector=%llu cbWrite=%llu\n",
5361 pCache, pExtent, pIoCtx, uSector, cbWrite));
5362
5363 AssertReturn(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED), VERR_NOT_SUPPORTED);
5364
5365 pGrainAlloc = (PVMDKGRAINALLOCASYNC)RTMemAllocZ(sizeof(VMDKGRAINALLOCASYNC));
5366 if (!pGrainAlloc)
5367 return VERR_NO_MEMORY;
5368
5369 pGrainAlloc->pExtent = pExtent;
5370 pGrainAlloc->uSector = uSector;
5371
5372 uGDIndex = uSector / pExtent->cSectorsPerGDE;
5373 if (uGDIndex >= pExtent->cGDEntries)
5374 {
5375 RTMemFree(pGrainAlloc);
5376 return VERR_OUT_OF_RANGE;
5377 }
5378 uGTSector = pExtent->pGD[uGDIndex];
5379 if (pExtent->pRGD)
5380 uRGTSector = pExtent->pRGD[uGDIndex];
5381 else
5382 uRGTSector = 0; /**< avoid compiler warning */
5383 if (!uGTSector)
5384 {
5385 LogFlow(("Allocating new grain table\n"));
5386
5387 /* There is no grain table referenced by this grain directory
5388 * entry. So there is absolutely no data in this area. Allocate
5389 * a new grain table and put the reference to it in the GDs. */
5390 uFileOffset = pExtent->uAppendPosition;
5391 if (!uFileOffset)
5392 return VERR_INTERNAL_ERROR;
5393 Assert(!(uFileOffset % 512));
5394
5395 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
5396 uGTSector = VMDK_BYTE2SECTOR(uFileOffset);
5397
5398 /* Normally the grain table is preallocated for hosted sparse extents
5399 * that support more than 32 bit sector numbers. So this shouldn't
5400 * ever happen on a valid extent. */
5401 if (uGTSector > UINT32_MAX)
5402 return VERR_VD_VMDK_INVALID_HEADER;
5403
5404 /* Write grain table by writing the required number of grain table
5405 * cache chunks. Allocate memory dynamically here or we flood the
5406 * metadata cache with very small entries. */
5407 size_t cbGTDataTmp = pExtent->cGTEntries * sizeof(uint32_t);
5408 uint32_t *paGTDataTmp = (uint32_t *)RTMemTmpAllocZ(cbGTDataTmp);
5409
5410 if (!paGTDataTmp)
5411 return VERR_NO_MEMORY;
5412
5413 memset(paGTDataTmp, '\0', cbGTDataTmp);
5414 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5415 VMDK_SECTOR2BYTE(uGTSector),
5416 paGTDataTmp, cbGTDataTmp, pIoCtx,
5417 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5418 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5419 pGrainAlloc->cIoXfersPending++;
5420 else if (RT_FAILURE(rc))
5421 {
5422 RTMemTmpFree(paGTDataTmp);
5423 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
5424 }
5425 pExtent->uAppendPosition = RT_ALIGN_64( pExtent->uAppendPosition
5426 + cbGTDataTmp, 512);
5427
5428 if (pExtent->pRGD)
5429 {
5430 AssertReturn(!uRGTSector, VERR_VD_VMDK_INVALID_HEADER);
5431 uFileOffset = pExtent->uAppendPosition;
5432 if (!uFileOffset)
5433 return VERR_INTERNAL_ERROR;
5434 Assert(!(uFileOffset % 512));
5435 uRGTSector = VMDK_BYTE2SECTOR(uFileOffset);
5436
5437 /* Normally the redundant grain table is preallocated for hosted
5438 * sparse extents that support more than 32 bit sector numbers. So
5439 * this shouldn't ever happen on a valid extent. */
5440 if (uRGTSector > UINT32_MAX)
5441 {
5442 RTMemTmpFree(paGTDataTmp);
5443 return VERR_VD_VMDK_INVALID_HEADER;
5444 }
5445
5446 /* Write grain table by writing the required number of grain table
5447 * cache chunks. Allocate memory dynamically here or we flood the
5448 * metadata cache with very small entries. */
5449 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5450 VMDK_SECTOR2BYTE(uRGTSector),
5451 paGTDataTmp, cbGTDataTmp, pIoCtx,
5452 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5453 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5454 pGrainAlloc->cIoXfersPending++;
5455 else if (RT_FAILURE(rc))
5456 {
5457 RTMemTmpFree(paGTDataTmp);
5458 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
5459 }
5460
5461 pExtent->uAppendPosition = pExtent->uAppendPosition + cbGTDataTmp;
5462 }
5463
5464 RTMemTmpFree(paGTDataTmp);
5465
5466 /* Update the grain directory on disk (doing it before writing the
5467 * grain table will result in a garbled extent if the operation is
5468 * aborted for some reason. Otherwise the worst that can happen is
5469 * some unused sectors in the extent. */
5470 uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector);
5471 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5472 VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
5473 &uGTSectorLE, sizeof(uGTSectorLE), pIoCtx,
5474 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5475 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5476 pGrainAlloc->cIoXfersPending++;
5477 else if (RT_FAILURE(rc))
5478 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
5479 if (pExtent->pRGD)
5480 {
5481 uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector);
5482 rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
5483 VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uGTSectorLE),
5484 &uRGTSectorLE, sizeof(uRGTSectorLE), pIoCtx,
5485 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5486 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5487 pGrainAlloc->cIoXfersPending++;
5488 else if (RT_FAILURE(rc))
5489 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
5490 }
5491
5492 /* As the final step update the in-memory copy of the GDs. */
5493 pExtent->pGD[uGDIndex] = uGTSector;
5494 if (pExtent->pRGD)
5495 pExtent->pRGD[uGDIndex] = uRGTSector;
5496 }
5497
5498 LogFlow(("uGTSector=%llu uRGTSector=%llu\n", uGTSector, uRGTSector));
5499 pGrainAlloc->uGTSector = uGTSector;
5500 pGrainAlloc->uRGTSector = uRGTSector;
5501
5502 uFileOffset = pExtent->uAppendPosition;
5503 if (!uFileOffset)
5504 return VERR_INTERNAL_ERROR;
5505 Assert(!(uFileOffset % 512));
5506
5507 pGrainAlloc->uGrainOffset = uFileOffset;
5508
5509 /* Write the data. Always a full grain, or we're in big trouble. */
5510 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
5511 uFileOffset, pIoCtx, cbWrite,
5512 vmdkAllocGrainAsyncComplete, pGrainAlloc);
5513 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
5514 pGrainAlloc->cIoXfersPending++;
5515 else if (RT_FAILURE(rc))
5516 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
5517
5518 rc = vmdkAllocGrainAsyncGTUpdate(pImage, pExtent, pIoCtx, pGrainAlloc);
5519
5520 if (!pGrainAlloc->cIoXfersPending)
5521 {
5522 /* Grain allocation completed. */
5523 RTMemFree(pGrainAlloc);
5524 }
5525
5526 LogFlowFunc(("leaving rc=%Rrc\n", rc));
5527
5528 return rc;
5529}
5530
5531/**
5532 * Internal. Reads the contents by sequentially going over the compressed
5533 * grains (hoping that they are in sequence).
5534 */
5535static int vmdkStreamReadSequential(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,
5536 uint64_t uSector, void *pvBuf,
5537 uint64_t cbRead)
5538{
5539 int rc;
5540
5541 /* Do not allow to go back. */
5542 uint32_t uGrain = uSector / pExtent->cSectorsPerGrain;
5543 if (uGrain < pExtent->uLastGrainAccess)
5544 return VERR_VD_VMDK_INVALID_STATE;
5545 pExtent->uLastGrainAccess = uGrain;
5546
5547 /* After a previous error do not attempt to recover, as it would need
5548 * seeking (in the general case backwards which is forbidden). */
5549 if (!pExtent->uGrainSectorAbs)
5550 return VERR_VD_VMDK_INVALID_STATE;
5551
5552 /* Check if we need to read something from the image or if what we have
5553 * in the buffer is good to fulfill the request. */
5554 if (!pExtent->cbGrainStreamRead || uGrain > pExtent->uGrain)
5555 {
5556 uint32_t uGrainSectorAbs = pExtent->uGrainSectorAbs
5557 + VMDK_BYTE2SECTOR(pExtent->cbGrainStreamRead);
5558
5559 /* Get the marker from the next data block - and skip everything which
5560 * is not a compressed grain. If it's a compressed grain which is for
5561 * the requested sector (or after), read it. */
5562 VMDKMARKER Marker;
5563 do
5564 {
5565 RT_ZERO(Marker);
5566 rc = vmdkFileReadSync(pImage, pExtent->pFile,
5567 VMDK_SECTOR2BYTE(uGrainSectorAbs),
5568 &Marker, RT_OFFSETOF(VMDKMARKER, uType),
5569 NULL);
5570 if (RT_FAILURE(rc))
5571 return rc;
5572 Marker.uSector = RT_LE2H_U64(Marker.uSector);
5573 Marker.cbSize = RT_LE2H_U32(Marker.cbSize);
5574
5575 if (Marker.cbSize == 0)
5576 {
5577 /* A marker for something else than a compressed grain. */
5578 rc = vmdkFileReadSync(pImage, pExtent->pFile,
5579 VMDK_SECTOR2BYTE(uGrainSectorAbs)
5580 + RT_OFFSETOF(VMDKMARKER, uType),
5581 &Marker.uType, sizeof(Marker.uType),
5582 NULL);
5583 if (RT_FAILURE(rc))
5584 return rc;
5585 Marker.uType = RT_LE2H_U32(Marker.uType);
5586 switch (Marker.uType)
5587 {
5588 case VMDK_MARKER_EOS:
5589 uGrainSectorAbs++;
5590 /* Read (or mostly skip) to the end of file. Uses the
5591 * Marker (LBA sector) as it is unused anyway. This
5592 * makes sure that really everything is read in the
5593 * success case. If this read fails it means the image
5594 * is truncated, but this is harmless so ignore. */
5595 vmdkFileReadSync(pImage, pExtent->pFile,
5596 VMDK_SECTOR2BYTE(uGrainSectorAbs)
5597 + 511,
5598 &Marker.uSector, 1, NULL);
5599 break;
5600 case VMDK_MARKER_GT:
5601 uGrainSectorAbs += 1 + VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t));
5602 break;
5603 case VMDK_MARKER_GD:
5604 uGrainSectorAbs += 1 + VMDK_BYTE2SECTOR(RT_ALIGN(pExtent->cGDEntries * sizeof(uint32_t), 512));
5605 break;
5606 case VMDK_MARKER_FOOTER:
5607 uGrainSectorAbs += 2;
5608 break;
5609 default:
5610 AssertMsgFailed(("VMDK: corrupted marker, type=%#x\n", Marker.uType));
5611 pExtent->uGrainSectorAbs = 0;
5612 return VERR_VD_VMDK_INVALID_STATE;
5613 }
5614 pExtent->cbGrainStreamRead = 0;
5615 }
5616 else
5617 {
5618 /* A compressed grain marker. If it is at/after what we're
5619 * interested in read and decompress data. */
5620 if (uSector > Marker.uSector + pExtent->cSectorsPerGrain)
5621 {
5622 uGrainSectorAbs += VMDK_BYTE2SECTOR(RT_ALIGN(Marker.cbSize + RT_OFFSETOF(VMDKMARKER, uType), 512));
5623 continue;
5624 }
5625 uint64_t uLBA = 0;
5626 uint32_t cbGrainStreamRead = 0;
5627 rc = vmdkFileInflateSync(pImage, pExtent,
5628 VMDK_SECTOR2BYTE(uGrainSectorAbs),
5629 pExtent->pvGrain,
5630 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain),
5631 &Marker, &uLBA, &cbGrainStreamRead);
5632 if (RT_FAILURE(rc))
5633 {
5634 pExtent->uGrainSectorAbs = 0;
5635 return rc;
5636 }
5637 if ( pExtent->uGrain
5638 && uLBA / pExtent->cSectorsPerGrain <= pExtent->uGrain)
5639 {
5640 pExtent->uGrainSectorAbs = 0;
5641 return VERR_VD_VMDK_INVALID_STATE;
5642 }
5643 pExtent->uGrain = uLBA / pExtent->cSectorsPerGrain;
5644 pExtent->cbGrainStreamRead = cbGrainStreamRead;
5645 break;
5646 }
5647 } while (Marker.uType != VMDK_MARKER_EOS);
5648
5649 pExtent->uGrainSectorAbs = uGrainSectorAbs;
5650
5651 if (!pExtent->cbGrainStreamRead && Marker.uType == VMDK_MARKER_EOS)
5652 {
5653 pExtent->uGrain = UINT32_MAX;
5654 /* Must set a non-zero value for pExtent->cbGrainStreamRead or
5655 * the next read would try to get more data, and we're at EOF. */
5656 pExtent->cbGrainStreamRead = 1;
5657 }
5658 }
5659
5660 if (pExtent->uGrain > uSector / pExtent->cSectorsPerGrain)
5661 {
5662 /* The next data block we have is not for this area, so just return
5663 * that there is no data. */
5664 return VERR_VD_BLOCK_FREE;
5665 }
5666
5667 uint32_t uSectorInGrain = uSector % pExtent->cSectorsPerGrain;
5668 memcpy(pvBuf,
5669 (uint8_t *)pExtent->pvGrain + VMDK_SECTOR2BYTE(uSectorInGrain),
5670 cbRead);
5671 return VINF_SUCCESS;
5672}
5673
5674/**
5675 * Replaces a fragment of a string with the specified string.
5676 *
5677 * @returns Pointer to the allocated UTF-8 string.
5678 * @param pszWhere UTF-8 string to search in.
5679 * @param pszWhat UTF-8 string to search for.
5680 * @param pszByWhat UTF-8 string to replace the found string with.
5681 */
5682static char *vmdkStrReplace(const char *pszWhere, const char *pszWhat,
5683 const char *pszByWhat)
5684{
5685 AssertPtr(pszWhere);
5686 AssertPtr(pszWhat);
5687 AssertPtr(pszByWhat);
5688 const char *pszFoundStr = strstr(pszWhere, pszWhat);
5689 if (!pszFoundStr)
5690 return NULL;
5691 size_t cFinal = strlen(pszWhere) + 1 + strlen(pszByWhat) - strlen(pszWhat);
5692 char *pszNewStr = (char *)RTMemAlloc(cFinal);
5693 if (pszNewStr)
5694 {
5695 char *pszTmp = pszNewStr;
5696 memcpy(pszTmp, pszWhere, pszFoundStr - pszWhere);
5697 pszTmp += pszFoundStr - pszWhere;
5698 memcpy(pszTmp, pszByWhat, strlen(pszByWhat));
5699 pszTmp += strlen(pszByWhat);
5700 strcpy(pszTmp, pszFoundStr + strlen(pszWhat));
5701 }
5702 return pszNewStr;
5703}
5704
5705
5706/** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
5707static int vmdkCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
5708 PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
5709{
5710 LogFlowFunc(("pszFilename=\"%s\" pVDIfsDisk=%#p pVDIfsImage=%#p penmType=%#p\n",
5711 pszFilename, pVDIfsDisk, pVDIfsImage, penmType));
5712 int rc = VINF_SUCCESS;
5713 PVMDKIMAGE pImage;
5714
5715 if ( !pszFilename
5716 || !*pszFilename
5717 || strchr(pszFilename, '"'))
5718 {
5719 rc = VERR_INVALID_PARAMETER;
5720 goto out;
5721 }
5722
5723 pImage = (PVMDKIMAGE)RTMemAllocZ(sizeof(VMDKIMAGE));
5724 if (!pImage)
5725 {
5726 rc = VERR_NO_MEMORY;
5727 goto out;
5728 }
5729 pImage->pszFilename = pszFilename;
5730 pImage->pFile = NULL;
5731 pImage->pExtents = NULL;
5732 pImage->pFiles = NULL;
5733 pImage->pGTCache = NULL;
5734 pImage->pDescData = NULL;
5735 pImage->pVDIfsDisk = pVDIfsDisk;
5736 pImage->pVDIfsImage = pVDIfsImage;
5737 /** @todo speed up this test open (VD_OPEN_FLAGS_INFO) by skipping as
5738 * much as possible in vmdkOpenImage. */
5739 rc = vmdkOpenImage(pImage, VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_READONLY);
5740 vmdkFreeImage(pImage, false);
5741 RTMemFree(pImage);
5742
5743 if (RT_SUCCESS(rc))
5744 *penmType = VDTYPE_HDD;
5745
5746out:
5747 LogFlowFunc(("returns %Rrc\n", rc));
5748 return rc;
5749}
5750
5751/** @copydoc VBOXHDDBACKEND::pfnOpen */
5752static int vmdkOpen(const char *pszFilename, unsigned uOpenFlags,
5753 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
5754 VDTYPE enmType, void **ppBackendData)
5755{
5756 LogFlowFunc(("pszFilename=\"%s\" uOpenFlags=%#x pVDIfsDisk=%#p pVDIfsImage=%#p ppBackendData=%#p\n", pszFilename, uOpenFlags, pVDIfsDisk, pVDIfsImage, ppBackendData));
5757 int rc;
5758 PVMDKIMAGE pImage;
5759
5760 /* Check open flags. All valid flags are supported. */
5761 if (uOpenFlags & ~VD_OPEN_FLAGS_MASK)
5762 {
5763 rc = VERR_INVALID_PARAMETER;
5764 goto out;
5765 }
5766
5767 /* Check remaining arguments. */
5768 if ( !VALID_PTR(pszFilename)
5769 || !*pszFilename
5770 || strchr(pszFilename, '"'))
5771 {
5772 rc = VERR_INVALID_PARAMETER;
5773 goto out;
5774 }
5775
5776 pImage = (PVMDKIMAGE)RTMemAllocZ(sizeof(VMDKIMAGE));
5777 if (!pImage)
5778 {
5779 rc = VERR_NO_MEMORY;
5780 goto out;
5781 }
5782 pImage->pszFilename = pszFilename;
5783 pImage->pFile = NULL;
5784 pImage->pExtents = NULL;
5785 pImage->pFiles = NULL;
5786 pImage->pGTCache = NULL;
5787 pImage->pDescData = NULL;
5788 pImage->pVDIfsDisk = pVDIfsDisk;
5789 pImage->pVDIfsImage = pVDIfsImage;
5790
5791 rc = vmdkOpenImage(pImage, uOpenFlags);
5792 if (RT_SUCCESS(rc))
5793 *ppBackendData = pImage;
5794
5795out:
5796 LogFlowFunc(("returns %Rrc (pBackendData=%#p)\n", rc, *ppBackendData));
5797 return rc;
5798}
5799
5800/** @copydoc VBOXHDDBACKEND::pfnCreate */
5801static int vmdkCreate(const char *pszFilename, uint64_t cbSize,
5802 unsigned uImageFlags, const char *pszComment,
5803 PCVDGEOMETRY pPCHSGeometry, PCVDGEOMETRY pLCHSGeometry,
5804 PCRTUUID pUuid, unsigned uOpenFlags,
5805 unsigned uPercentStart, unsigned uPercentSpan,
5806 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
5807 PVDINTERFACE pVDIfsOperation, void **ppBackendData)
5808{
5809 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));
5810 int rc;
5811 PVMDKIMAGE pImage;
5812
5813 PFNVDPROGRESS pfnProgress = NULL;
5814 void *pvUser = NULL;
5815 PVDINTERFACE pIfProgress = VDInterfaceGet(pVDIfsOperation,
5816 VDINTERFACETYPE_PROGRESS);
5817 PVDINTERFACEPROGRESS pCbProgress = NULL;
5818 if (pIfProgress)
5819 {
5820 pCbProgress = VDGetInterfaceProgress(pIfProgress);
5821 pfnProgress = pCbProgress->pfnProgress;
5822 pvUser = pIfProgress->pvUser;
5823 }
5824
5825 /* Check open flags. All valid flags are supported. */
5826 if (uOpenFlags & ~VD_OPEN_FLAGS_MASK)
5827 {
5828 rc = VERR_INVALID_PARAMETER;
5829 goto out;
5830 }
5831
5832 /* Check size. Maximum 2TB-64K for sparse images, otherwise unlimited. */
5833 if ( !cbSize
5834 || (!(uImageFlags & VD_IMAGE_FLAGS_FIXED) && cbSize >= _1T * 2 - _64K))
5835 {
5836 rc = VERR_VD_INVALID_SIZE;
5837 goto out;
5838 }
5839
5840 /* Check remaining arguments. */
5841 if ( !VALID_PTR(pszFilename)
5842 || !*pszFilename
5843 || strchr(pszFilename, '"')
5844 || !VALID_PTR(pPCHSGeometry)
5845 || !VALID_PTR(pLCHSGeometry)
5846#ifndef VBOX_WITH_VMDK_ESX
5847 || ( uImageFlags & VD_VMDK_IMAGE_FLAGS_ESX
5848 && !(uImageFlags & VD_IMAGE_FLAGS_FIXED))
5849#endif
5850 || ( (uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
5851 && (uImageFlags & ~(VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED | VD_IMAGE_FLAGS_DIFF))))
5852 {
5853 rc = VERR_INVALID_PARAMETER;
5854 goto out;
5855 }
5856
5857 pImage = (PVMDKIMAGE)RTMemAllocZ(sizeof(VMDKIMAGE));
5858 if (!pImage)
5859 {
5860 rc = VERR_NO_MEMORY;
5861 goto out;
5862 }
5863 pImage->pszFilename = pszFilename;
5864 pImage->pFile = NULL;
5865 pImage->pExtents = NULL;
5866 pImage->pFiles = NULL;
5867 pImage->pGTCache = NULL;
5868 pImage->pDescData = NULL;
5869 pImage->pVDIfsDisk = pVDIfsDisk;
5870 pImage->pVDIfsImage = pVDIfsImage;
5871 /* Descriptors for split images can be pretty large, especially if the
5872 * filename is long. So prepare for the worst, and allocate quite some
5873 * memory for the descriptor in this case. */
5874 if (uImageFlags & VD_VMDK_IMAGE_FLAGS_SPLIT_2G)
5875 pImage->cbDescAlloc = VMDK_SECTOR2BYTE(200);
5876 else
5877 pImage->cbDescAlloc = VMDK_SECTOR2BYTE(20);
5878 pImage->pDescData = (char *)RTMemAllocZ(pImage->cbDescAlloc);
5879 if (!pImage->pDescData)
5880 {
5881 RTMemFree(pImage);
5882 rc = VERR_NO_MEMORY;
5883 goto out;
5884 }
5885
5886 rc = vmdkCreateImage(pImage, cbSize, uImageFlags, pszComment,
5887 pPCHSGeometry, pLCHSGeometry, pUuid,
5888 pfnProgress, pvUser, uPercentStart, uPercentSpan);
5889 if (RT_SUCCESS(rc))
5890 {
5891 /* So far the image is opened in read/write mode. Make sure the
5892 * image is opened in read-only mode if the caller requested that. */
5893 if (uOpenFlags & VD_OPEN_FLAGS_READONLY)
5894 {
5895 vmdkFreeImage(pImage, false);
5896 rc = vmdkOpenImage(pImage, uOpenFlags);
5897 if (RT_FAILURE(rc))
5898 goto out;
5899 }
5900 *ppBackendData = pImage;
5901 }
5902 else
5903 {
5904 RTMemFree(pImage->pDescData);
5905 RTMemFree(pImage);
5906 }
5907
5908out:
5909 LogFlowFunc(("returns %Rrc (pBackendData=%#p)\n", rc, *ppBackendData));
5910 return rc;
5911}
5912
5913/** @copydoc VBOXHDDBACKEND::pfnRename */
5914static int vmdkRename(void *pBackendData, const char *pszFilename)
5915{
5916 LogFlowFunc(("pBackendData=%#p pszFilename=%#p\n", pBackendData, pszFilename));
5917
5918 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
5919 int rc = VINF_SUCCESS;
5920 char **apszOldName = NULL;
5921 char **apszNewName = NULL;
5922 char **apszNewLines = NULL;
5923 char *pszOldDescName = NULL;
5924 bool fImageFreed = false;
5925 bool fEmbeddedDesc = false;
5926 unsigned cExtents = pImage->cExtents;
5927 char *pszNewBaseName = NULL;
5928 char *pszOldBaseName = NULL;
5929 char *pszNewFullName = NULL;
5930 char *pszOldFullName = NULL;
5931 const char *pszOldImageName;
5932 unsigned i, line;
5933 VMDKDESCRIPTOR DescriptorCopy;
5934 VMDKEXTENT ExtentCopy;
5935
5936 memset(&DescriptorCopy, 0, sizeof(DescriptorCopy));
5937
5938 /* Check arguments. */
5939 if ( !pImage
5940 || (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_RAWDISK)
5941 || !VALID_PTR(pszFilename)
5942 || !*pszFilename)
5943 {
5944 rc = VERR_INVALID_PARAMETER;
5945 goto out;
5946 }
5947
5948 /*
5949 * Allocate an array to store both old and new names of renamed files
5950 * in case we have to roll back the changes. Arrays are initialized
5951 * with zeros. We actually save stuff when and if we change it.
5952 */
5953 apszOldName = (char **)RTMemTmpAllocZ((cExtents + 1) * sizeof(char*));
5954 apszNewName = (char **)RTMemTmpAllocZ((cExtents + 1) * sizeof(char*));
5955 apszNewLines = (char **)RTMemTmpAllocZ((cExtents) * sizeof(char*));
5956 if (!apszOldName || !apszNewName || !apszNewLines)
5957 {
5958 rc = VERR_NO_MEMORY;
5959 goto out;
5960 }
5961
5962 /* Save the descriptor size and position. */
5963 if (pImage->pDescData)
5964 {
5965 /* Separate descriptor file. */
5966 fEmbeddedDesc = false;
5967 }
5968 else
5969 {
5970 /* Embedded descriptor file. */
5971 ExtentCopy = pImage->pExtents[0];
5972 fEmbeddedDesc = true;
5973 }
5974 /* Save the descriptor content. */
5975 DescriptorCopy.cLines = pImage->Descriptor.cLines;
5976 for (i = 0; i < DescriptorCopy.cLines; i++)
5977 {
5978 DescriptorCopy.aLines[i] = RTStrDup(pImage->Descriptor.aLines[i]);
5979 if (!DescriptorCopy.aLines[i])
5980 {
5981 rc = VERR_NO_MEMORY;
5982 goto out;
5983 }
5984 }
5985
5986 /* Prepare both old and new base names used for string replacement. */
5987 pszNewBaseName = RTStrDup(RTPathFilename(pszFilename));
5988 RTPathStripExt(pszNewBaseName);
5989 pszOldBaseName = RTStrDup(RTPathFilename(pImage->pszFilename));
5990 RTPathStripExt(pszOldBaseName);
5991 /* Prepare both old and new full names used for string replacement. */
5992 pszNewFullName = RTStrDup(pszFilename);
5993 RTPathStripExt(pszNewFullName);
5994 pszOldFullName = RTStrDup(pImage->pszFilename);
5995 RTPathStripExt(pszOldFullName);
5996
5997 /* --- Up to this point we have not done any damage yet. --- */
5998
5999 /* Save the old name for easy access to the old descriptor file. */
6000 pszOldDescName = RTStrDup(pImage->pszFilename);
6001 /* Save old image name. */
6002 pszOldImageName = pImage->pszFilename;
6003
6004 /* Update the descriptor with modified extent names. */
6005 for (i = 0, line = pImage->Descriptor.uFirstExtent;
6006 i < cExtents;
6007 i++, line = pImage->Descriptor.aNextLines[line])
6008 {
6009 /* Assume that vmdkStrReplace will fail. */
6010 rc = VERR_NO_MEMORY;
6011 /* Update the descriptor. */
6012 apszNewLines[i] = vmdkStrReplace(pImage->Descriptor.aLines[line],
6013 pszOldBaseName, pszNewBaseName);
6014 if (!apszNewLines[i])
6015 goto rollback;
6016 pImage->Descriptor.aLines[line] = apszNewLines[i];
6017 }
6018 /* Make sure the descriptor gets written back. */
6019 pImage->Descriptor.fDirty = true;
6020 /* Flush the descriptor now, in case it is embedded. */
6021 vmdkFlushImage(pImage);
6022
6023 /* Close and rename/move extents. */
6024 for (i = 0; i < cExtents; i++)
6025 {
6026 PVMDKEXTENT pExtent = &pImage->pExtents[i];
6027 /* Compose new name for the extent. */
6028 apszNewName[i] = vmdkStrReplace(pExtent->pszFullname,
6029 pszOldFullName, pszNewFullName);
6030 if (!apszNewName[i])
6031 goto rollback;
6032 /* Close the extent file. */
6033 vmdkFileClose(pImage, &pExtent->pFile, false);
6034 /* Rename the extent file. */
6035 rc = vmdkFileMove(pImage, pExtent->pszFullname, apszNewName[i], 0);
6036 if (RT_FAILURE(rc))
6037 goto rollback;
6038 /* Remember the old name. */
6039 apszOldName[i] = RTStrDup(pExtent->pszFullname);
6040 }
6041 /* Release all old stuff. */
6042 vmdkFreeImage(pImage, false);
6043
6044 fImageFreed = true;
6045
6046 /* Last elements of new/old name arrays are intended for
6047 * storing descriptor's names.
6048 */
6049 apszNewName[cExtents] = RTStrDup(pszFilename);
6050 /* Rename the descriptor file if it's separate. */
6051 if (!fEmbeddedDesc)
6052 {
6053 rc = vmdkFileMove(pImage, pImage->pszFilename, apszNewName[cExtents], 0);
6054 if (RT_FAILURE(rc))
6055 goto rollback;
6056 /* Save old name only if we may need to change it back. */
6057 apszOldName[cExtents] = RTStrDup(pszFilename);
6058 }
6059
6060 /* Update pImage with the new information. */
6061 pImage->pszFilename = pszFilename;
6062
6063 /* Open the new image. */
6064 rc = vmdkOpenImage(pImage, pImage->uOpenFlags);
6065 if (RT_SUCCESS(rc))
6066 goto out;
6067
6068rollback:
6069 /* Roll back all changes in case of failure. */
6070 if (RT_FAILURE(rc))
6071 {
6072 int rrc;
6073 if (!fImageFreed)
6074 {
6075 /*
6076 * Some extents may have been closed, close the rest. We will
6077 * re-open the whole thing later.
6078 */
6079 vmdkFreeImage(pImage, false);
6080 }
6081 /* Rename files back. */
6082 for (i = 0; i <= cExtents; i++)
6083 {
6084 if (apszOldName[i])
6085 {
6086 rrc = vmdkFileMove(pImage, apszNewName[i], apszOldName[i], 0);
6087 AssertRC(rrc);
6088 }
6089 }
6090 /* Restore the old descriptor. */
6091 PVMDKFILE pFile;
6092 rrc = vmdkFileOpen(pImage, &pFile, pszOldDescName,
6093 VDOpenFlagsToFileOpenFlags(VD_OPEN_FLAGS_NORMAL,
6094 false /* fCreate */),
6095 false /* fAsyncIO */);
6096 AssertRC(rrc);
6097 if (fEmbeddedDesc)
6098 {
6099 ExtentCopy.pFile = pFile;
6100 pImage->pExtents = &ExtentCopy;
6101 }
6102 else
6103 {
6104 /* Shouldn't be null for separate descriptor.
6105 * There will be no access to the actual content.
6106 */
6107 pImage->pDescData = pszOldDescName;
6108 pImage->pFile = pFile;
6109 }
6110 pImage->Descriptor = DescriptorCopy;
6111 vmdkWriteDescriptor(pImage);
6112 vmdkFileClose(pImage, &pFile, false);
6113 /* Get rid of the stuff we implanted. */
6114 pImage->pExtents = NULL;
6115 pImage->pFile = NULL;
6116 pImage->pDescData = NULL;
6117 /* Re-open the image back. */
6118 pImage->pszFilename = pszOldImageName;
6119 rrc = vmdkOpenImage(pImage, pImage->uOpenFlags);
6120 AssertRC(rrc);
6121 }
6122
6123out:
6124 for (i = 0; i < DescriptorCopy.cLines; i++)
6125 if (DescriptorCopy.aLines[i])
6126 RTStrFree(DescriptorCopy.aLines[i]);
6127 if (apszOldName)
6128 {
6129 for (i = 0; i <= cExtents; i++)
6130 if (apszOldName[i])
6131 RTStrFree(apszOldName[i]);
6132 RTMemTmpFree(apszOldName);
6133 }
6134 if (apszNewName)
6135 {
6136 for (i = 0; i <= cExtents; i++)
6137 if (apszNewName[i])
6138 RTStrFree(apszNewName[i]);
6139 RTMemTmpFree(apszNewName);
6140 }
6141 if (apszNewLines)
6142 {
6143 for (i = 0; i < cExtents; i++)
6144 if (apszNewLines[i])
6145 RTStrFree(apszNewLines[i]);
6146 RTMemTmpFree(apszNewLines);
6147 }
6148 if (pszOldDescName)
6149 RTStrFree(pszOldDescName);
6150 if (pszOldBaseName)
6151 RTStrFree(pszOldBaseName);
6152 if (pszNewBaseName)
6153 RTStrFree(pszNewBaseName);
6154 if (pszOldFullName)
6155 RTStrFree(pszOldFullName);
6156 if (pszNewFullName)
6157 RTStrFree(pszNewFullName);
6158 LogFlowFunc(("returns %Rrc\n", rc));
6159 return rc;
6160}
6161
6162/** @copydoc VBOXHDDBACKEND::pfnClose */
6163static int vmdkClose(void *pBackendData, bool fDelete)
6164{
6165 LogFlowFunc(("pBackendData=%#p fDelete=%d\n", pBackendData, fDelete));
6166 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6167 int rc;
6168
6169 rc = vmdkFreeImage(pImage, fDelete);
6170 RTMemFree(pImage);
6171
6172 LogFlowFunc(("returns %Rrc\n", rc));
6173 return rc;
6174}
6175
6176/** @copydoc VBOXHDDBACKEND::pfnRead */
6177static int vmdkRead(void *pBackendData, uint64_t uOffset, void *pvBuf,
6178 size_t cbToRead, size_t *pcbActuallyRead)
6179{
6180 LogFlowFunc(("pBackendData=%#p uOffset=%llu pvBuf=%#p cbToRead=%zu pcbActuallyRead=%#p\n", pBackendData, uOffset, pvBuf, cbToRead, pcbActuallyRead));
6181 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6182 PVMDKEXTENT pExtent;
6183 uint64_t uSectorExtentRel;
6184 uint64_t uSectorExtentAbs;
6185 int rc;
6186
6187 AssertPtr(pImage);
6188 Assert(uOffset % 512 == 0);
6189 Assert(cbToRead % 512 == 0);
6190
6191 if ( uOffset + cbToRead > pImage->cbSize
6192 || cbToRead == 0)
6193 {
6194 rc = VERR_INVALID_PARAMETER;
6195 goto out;
6196 }
6197
6198 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
6199 &pExtent, &uSectorExtentRel);
6200 if (RT_FAILURE(rc))
6201 goto out;
6202
6203 /* Check access permissions as defined in the extent descriptor. */
6204 if (pExtent->enmAccess == VMDKACCESS_NOACCESS)
6205 {
6206 rc = VERR_VD_VMDK_INVALID_STATE;
6207 goto out;
6208 }
6209
6210 /* Clip read range to remain in this extent. */
6211 cbToRead = RT_MIN(cbToRead, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6212
6213 /* Handle the read according to the current extent type. */
6214 switch (pExtent->enmType)
6215 {
6216 case VMDKETYPE_HOSTED_SPARSE:
6217#ifdef VBOX_WITH_VMDK_ESX
6218 case VMDKETYPE_ESX_SPARSE:
6219#endif /* VBOX_WITH_VMDK_ESX */
6220 rc = vmdkGetSector(pImage, pExtent, uSectorExtentRel,
6221 &uSectorExtentAbs);
6222 if (RT_FAILURE(rc))
6223 goto out;
6224 /* Clip read range to at most the rest of the grain. */
6225 cbToRead = RT_MIN(cbToRead, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
6226 Assert(!(cbToRead % 512));
6227 if (uSectorExtentAbs == 0)
6228 {
6229 if ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6230 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6231 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))
6232 rc = VERR_VD_BLOCK_FREE;
6233 else
6234 rc = vmdkStreamReadSequential(pImage, pExtent,
6235 uSectorExtentRel,
6236 pvBuf, cbToRead);
6237 }
6238 else
6239 {
6240 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6241 {
6242 uint32_t uSectorInGrain = uSectorExtentRel % pExtent->cSectorsPerGrain;
6243 uSectorExtentAbs -= uSectorInGrain;
6244 uint64_t uLBA;
6245 if (pExtent->uGrainSectorAbs != uSectorExtentAbs)
6246 {
6247 rc = vmdkFileInflateSync(pImage, pExtent,
6248 VMDK_SECTOR2BYTE(uSectorExtentAbs),
6249 pExtent->pvGrain,
6250 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain),
6251 NULL, &uLBA, NULL);
6252 if (RT_FAILURE(rc))
6253 {
6254 pExtent->uGrainSectorAbs = 0;
6255 AssertRC(rc);
6256 goto out;
6257 }
6258 pExtent->uGrainSectorAbs = uSectorExtentAbs;
6259 pExtent->uGrain = uSectorExtentRel / pExtent->cSectorsPerGrain;
6260 Assert(uLBA == uSectorExtentRel);
6261 }
6262 memcpy(pvBuf, (uint8_t *)pExtent->pvGrain + VMDK_SECTOR2BYTE(uSectorInGrain), cbToRead);
6263 }
6264 else
6265 {
6266 rc = vmdkFileReadSync(pImage, pExtent->pFile,
6267 VMDK_SECTOR2BYTE(uSectorExtentAbs),
6268 pvBuf, cbToRead, NULL);
6269 }
6270 }
6271 break;
6272 case VMDKETYPE_VMFS:
6273 case VMDKETYPE_FLAT:
6274 rc = vmdkFileReadSync(pImage, pExtent->pFile,
6275 VMDK_SECTOR2BYTE(uSectorExtentRel),
6276 pvBuf, cbToRead, NULL);
6277 break;
6278 case VMDKETYPE_ZERO:
6279 memset(pvBuf, '\0', cbToRead);
6280 break;
6281 }
6282 if (pcbActuallyRead)
6283 *pcbActuallyRead = cbToRead;
6284
6285out:
6286 LogFlowFunc(("returns %Rrc\n", rc));
6287 return rc;
6288}
6289
6290/** @copydoc VBOXHDDBACKEND::pfnWrite */
6291static int vmdkWrite(void *pBackendData, uint64_t uOffset, const void *pvBuf,
6292 size_t cbToWrite, size_t *pcbWriteProcess,
6293 size_t *pcbPreRead, size_t *pcbPostRead, unsigned fWrite)
6294{
6295 LogFlowFunc(("pBackendData=%#p uOffset=%llu pvBuf=%#p cbToWrite=%zu pcbWriteProcess=%#p pcbPreRead=%#p pcbPostRead=%#p\n", pBackendData, uOffset, pvBuf, cbToWrite, pcbWriteProcess, pcbPreRead, pcbPostRead));
6296 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6297 PVMDKEXTENT pExtent;
6298 uint64_t uSectorExtentRel;
6299 uint64_t uSectorExtentAbs;
6300 int rc;
6301
6302 AssertPtr(pImage);
6303 Assert(uOffset % 512 == 0);
6304 Assert(cbToWrite % 512 == 0);
6305
6306 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6307 {
6308 rc = VERR_VD_IMAGE_READ_ONLY;
6309 goto out;
6310 }
6311
6312 if (cbToWrite == 0)
6313 {
6314 rc = VERR_INVALID_PARAMETER;
6315 goto out;
6316 }
6317
6318 /* No size check here, will do that later when the extent is located.
6319 * There are sparse images out there which according to the spec are
6320 * invalid, because the total size is not a multiple of the grain size.
6321 * Also for sparse images which are stitched together in odd ways (not at
6322 * grain boundaries, and with the nominal size not being a multiple of the
6323 * grain size), this would prevent writing to the last grain. */
6324
6325 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
6326 &pExtent, &uSectorExtentRel);
6327 if (RT_FAILURE(rc))
6328 goto out;
6329
6330 /* Check access permissions as defined in the extent descriptor. */
6331 if ( pExtent->enmAccess != VMDKACCESS_READWRITE
6332 && ( !(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6333 && !pImage->pExtents[0].uAppendPosition
6334 && pExtent->enmAccess != VMDKACCESS_READONLY))
6335 {
6336 rc = VERR_VD_VMDK_INVALID_STATE;
6337 goto out;
6338 }
6339
6340 /* Handle the write according to the current extent type. */
6341 switch (pExtent->enmType)
6342 {
6343 case VMDKETYPE_HOSTED_SPARSE:
6344#ifdef VBOX_WITH_VMDK_ESX
6345 case VMDKETYPE_ESX_SPARSE:
6346#endif /* VBOX_WITH_VMDK_ESX */
6347 rc = vmdkGetSector(pImage, pExtent, uSectorExtentRel,
6348 &uSectorExtentAbs);
6349 if (RT_FAILURE(rc))
6350 goto out;
6351 /* Clip write range to at most the rest of the grain. */
6352 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
6353 if ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
6354 && uSectorExtentRel < (uint64_t)pExtent->uLastGrainAccess * pExtent->cSectorsPerGrain)
6355 {
6356 rc = VERR_VD_VMDK_INVALID_WRITE;
6357 goto out;
6358 }
6359 if (uSectorExtentAbs == 0)
6360 {
6361 if (!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6362 {
6363 if (cbToWrite == VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
6364 {
6365 /* Full block write to a previously unallocated block.
6366 * Check if the caller wants feedback. */
6367 if (!(fWrite & VD_WRITE_NO_ALLOC))
6368 {
6369 /* Allocate GT and store the grain. */
6370 rc = vmdkAllocGrain(pImage, pExtent,
6371 uSectorExtentRel,
6372 pvBuf, cbToWrite);
6373 }
6374 else
6375 rc = VERR_VD_BLOCK_FREE;
6376 *pcbPreRead = 0;
6377 *pcbPostRead = 0;
6378 }
6379 else
6380 {
6381 /* Clip write range to remain in this extent. */
6382 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6383 *pcbPreRead = VMDK_SECTOR2BYTE(uSectorExtentRel % pExtent->cSectorsPerGrain);
6384 *pcbPostRead = VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain) - cbToWrite - *pcbPreRead;
6385 rc = VERR_VD_BLOCK_FREE;
6386 }
6387 }
6388 else
6389 {
6390 rc = vmdkStreamAllocGrain(pImage, pExtent,
6391 uSectorExtentRel,
6392 pvBuf, cbToWrite);
6393 }
6394 }
6395 else
6396 {
6397 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6398 {
6399 /* A partial write to a streamOptimized image is simply
6400 * invalid. It requires rewriting already compressed data
6401 * which is somewhere between expensive and impossible. */
6402 rc = VERR_VD_VMDK_INVALID_STATE;
6403 pExtent->uGrainSectorAbs = 0;
6404 AssertRC(rc);
6405 }
6406 else
6407 {
6408 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
6409 VMDK_SECTOR2BYTE(uSectorExtentAbs),
6410 pvBuf, cbToWrite, NULL);
6411 }
6412 }
6413 break;
6414 case VMDKETYPE_VMFS:
6415 case VMDKETYPE_FLAT:
6416 /* Clip write range to remain in this extent. */
6417 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6418 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
6419 VMDK_SECTOR2BYTE(uSectorExtentRel),
6420 pvBuf, cbToWrite, NULL);
6421 break;
6422 case VMDKETYPE_ZERO:
6423 /* Clip write range to remain in this extent. */
6424 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
6425 break;
6426 }
6427
6428 if (pcbWriteProcess)
6429 *pcbWriteProcess = cbToWrite;
6430
6431out:
6432 LogFlowFunc(("returns %Rrc\n", rc));
6433 return rc;
6434}
6435
6436/** @copydoc VBOXHDDBACKEND::pfnFlush */
6437static int vmdkFlush(void *pBackendData)
6438{
6439 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6440 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6441 int rc = VINF_SUCCESS;
6442
6443 AssertPtr(pImage);
6444
6445 if (!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6446 rc = vmdkFlushImage(pImage);
6447
6448 LogFlowFunc(("returns %Rrc\n", rc));
6449 return rc;
6450}
6451
6452/** @copydoc VBOXHDDBACKEND::pfnGetVersion */
6453static unsigned vmdkGetVersion(void *pBackendData)
6454{
6455 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6456 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6457
6458 AssertPtr(pImage);
6459
6460 if (pImage)
6461 return VMDK_IMAGE_VERSION;
6462 else
6463 return 0;
6464}
6465
6466/** @copydoc VBOXHDDBACKEND::pfnGetSize */
6467static uint64_t vmdkGetSize(void *pBackendData)
6468{
6469 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6470 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6471
6472 AssertPtr(pImage);
6473
6474 if (pImage)
6475 return pImage->cbSize;
6476 else
6477 return 0;
6478}
6479
6480/** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
6481static uint64_t vmdkGetFileSize(void *pBackendData)
6482{
6483 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6484 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6485 uint64_t cb = 0;
6486
6487 AssertPtr(pImage);
6488
6489 if (pImage)
6490 {
6491 uint64_t cbFile;
6492 if (pImage->pFile != NULL)
6493 {
6494 int rc = vmdkFileGetSize(pImage, pImage->pFile, &cbFile);
6495 if (RT_SUCCESS(rc))
6496 cb += cbFile;
6497 }
6498 for (unsigned i = 0; i < pImage->cExtents; i++)
6499 {
6500 if (pImage->pExtents[i].pFile != NULL)
6501 {
6502 int rc = vmdkFileGetSize(pImage, pImage->pExtents[i].pFile, &cbFile);
6503 if (RT_SUCCESS(rc))
6504 cb += cbFile;
6505 }
6506 }
6507 }
6508
6509 LogFlowFunc(("returns %lld\n", cb));
6510 return cb;
6511}
6512
6513/** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
6514static int vmdkGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
6515{
6516 LogFlowFunc(("pBackendData=%#p pPCHSGeometry=%#p\n", pBackendData, pPCHSGeometry));
6517 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6518 int rc;
6519
6520 AssertPtr(pImage);
6521
6522 if (pImage)
6523 {
6524 if (pImage->PCHSGeometry.cCylinders)
6525 {
6526 *pPCHSGeometry = pImage->PCHSGeometry;
6527 rc = VINF_SUCCESS;
6528 }
6529 else
6530 rc = VERR_VD_GEOMETRY_NOT_SET;
6531 }
6532 else
6533 rc = VERR_VD_NOT_OPENED;
6534
6535 LogFlowFunc(("returns %Rrc (PCHS=%u/%u/%u)\n", rc, pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads, pPCHSGeometry->cSectors));
6536 return rc;
6537}
6538
6539/** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
6540static int vmdkSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
6541{
6542 LogFlowFunc(("pBackendData=%#p pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pBackendData, pPCHSGeometry, pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads, pPCHSGeometry->cSectors));
6543 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6544 int rc;
6545
6546 AssertPtr(pImage);
6547
6548 if (pImage)
6549 {
6550 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6551 {
6552 rc = VERR_VD_IMAGE_READ_ONLY;
6553 goto out;
6554 }
6555 if (pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6556 {
6557 rc = VERR_NOT_SUPPORTED;
6558 goto out;
6559 }
6560 rc = vmdkDescSetPCHSGeometry(pImage, pPCHSGeometry);
6561 if (RT_FAILURE(rc))
6562 goto out;
6563
6564 pImage->PCHSGeometry = *pPCHSGeometry;
6565 rc = VINF_SUCCESS;
6566 }
6567 else
6568 rc = VERR_VD_NOT_OPENED;
6569
6570out:
6571 LogFlowFunc(("returns %Rrc\n", rc));
6572 return rc;
6573}
6574
6575/** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
6576static int vmdkGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
6577{
6578 LogFlowFunc(("pBackendData=%#p pLCHSGeometry=%#p\n", pBackendData, pLCHSGeometry));
6579 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6580 int rc;
6581
6582 AssertPtr(pImage);
6583
6584 if (pImage)
6585 {
6586 if (pImage->LCHSGeometry.cCylinders)
6587 {
6588 *pLCHSGeometry = pImage->LCHSGeometry;
6589 rc = VINF_SUCCESS;
6590 }
6591 else
6592 rc = VERR_VD_GEOMETRY_NOT_SET;
6593 }
6594 else
6595 rc = VERR_VD_NOT_OPENED;
6596
6597 LogFlowFunc(("returns %Rrc (LCHS=%u/%u/%u)\n", rc, pLCHSGeometry->cCylinders, pLCHSGeometry->cHeads, pLCHSGeometry->cSectors));
6598 return rc;
6599}
6600
6601/** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
6602static int vmdkSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
6603{
6604 LogFlowFunc(("pBackendData=%#p pLCHSGeometry=%#p LCHS=%u/%u/%u\n", pBackendData, pLCHSGeometry, pLCHSGeometry->cCylinders, pLCHSGeometry->cHeads, pLCHSGeometry->cSectors));
6605 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6606 int rc;
6607
6608 AssertPtr(pImage);
6609
6610 if (pImage)
6611 {
6612 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6613 {
6614 rc = VERR_VD_IMAGE_READ_ONLY;
6615 goto out;
6616 }
6617 if (pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6618 {
6619 rc = VERR_NOT_SUPPORTED;
6620 goto out;
6621 }
6622 rc = vmdkDescSetLCHSGeometry(pImage, pLCHSGeometry);
6623 if (RT_FAILURE(rc))
6624 goto out;
6625
6626 pImage->LCHSGeometry = *pLCHSGeometry;
6627 rc = VINF_SUCCESS;
6628 }
6629 else
6630 rc = VERR_VD_NOT_OPENED;
6631
6632out:
6633 LogFlowFunc(("returns %Rrc\n", rc));
6634 return rc;
6635}
6636
6637/** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
6638static unsigned vmdkGetImageFlags(void *pBackendData)
6639{
6640 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6641 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6642 unsigned uImageFlags;
6643
6644 AssertPtr(pImage);
6645
6646 if (pImage)
6647 uImageFlags = pImage->uImageFlags;
6648 else
6649 uImageFlags = 0;
6650
6651 LogFlowFunc(("returns %#x\n", uImageFlags));
6652 return uImageFlags;
6653}
6654
6655/** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
6656static unsigned vmdkGetOpenFlags(void *pBackendData)
6657{
6658 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
6659 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6660 unsigned uOpenFlags;
6661
6662 AssertPtr(pImage);
6663
6664 if (pImage)
6665 uOpenFlags = pImage->uOpenFlags;
6666 else
6667 uOpenFlags = 0;
6668
6669 LogFlowFunc(("returns %#x\n", uOpenFlags));
6670 return uOpenFlags;
6671}
6672
6673/** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
6674static int vmdkSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
6675{
6676 LogFlowFunc(("pBackendData=%#p\n uOpenFlags=%#x", pBackendData, uOpenFlags));
6677 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6678 int rc;
6679
6680 /* Image must be opened and the new flags must be valid. */
6681 if (!pImage || (uOpenFlags & ~(VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO | VD_OPEN_FLAGS_SHAREABLE | VD_OPEN_FLAGS_SEQUENTIAL)))
6682 {
6683 rc = VERR_INVALID_PARAMETER;
6684 goto out;
6685 }
6686
6687 /* StreamOptimized images need special treatment: reopen is prohibited. */
6688 if (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6689 {
6690 if (pImage->uOpenFlags == uOpenFlags)
6691 rc = VINF_SUCCESS;
6692 else
6693 rc = VERR_INVALID_PARAMETER;
6694 goto out;
6695 }
6696
6697 /* Implement this operation via reopening the image. */
6698 vmdkFreeImage(pImage, false);
6699 rc = vmdkOpenImage(pImage, uOpenFlags);
6700
6701out:
6702 LogFlowFunc(("returns %Rrc\n", rc));
6703 return rc;
6704}
6705
6706/** @copydoc VBOXHDDBACKEND::pfnGetComment */
6707static int vmdkGetComment(void *pBackendData, char *pszComment,
6708 size_t cbComment)
6709{
6710 LogFlowFunc(("pBackendData=%#p pszComment=%#p cbComment=%zu\n", pBackendData, pszComment, cbComment));
6711 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6712 int rc;
6713
6714 AssertPtr(pImage);
6715
6716 if (pImage)
6717 {
6718 const char *pszCommentEncoded = NULL;
6719 rc = vmdkDescDDBGetStr(pImage, &pImage->Descriptor,
6720 "ddb.comment", &pszCommentEncoded);
6721 if (rc == VERR_VD_VMDK_VALUE_NOT_FOUND)
6722 pszCommentEncoded = NULL;
6723 else if (RT_FAILURE(rc))
6724 goto out;
6725
6726 if (pszComment && pszCommentEncoded)
6727 rc = vmdkDecodeString(pszCommentEncoded, pszComment, cbComment);
6728 else
6729 {
6730 if (pszComment)
6731 *pszComment = '\0';
6732 rc = VINF_SUCCESS;
6733 }
6734 if (pszCommentEncoded)
6735 RTStrFree((char *)(void *)pszCommentEncoded);
6736 }
6737 else
6738 rc = VERR_VD_NOT_OPENED;
6739
6740out:
6741 LogFlowFunc(("returns %Rrc comment='%s'\n", rc, pszComment));
6742 return rc;
6743}
6744
6745/** @copydoc VBOXHDDBACKEND::pfnSetComment */
6746static int vmdkSetComment(void *pBackendData, const char *pszComment)
6747{
6748 LogFlowFunc(("pBackendData=%#p pszComment=\"%s\"\n", pBackendData, pszComment));
6749 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6750 int rc;
6751
6752 AssertPtr(pImage);
6753
6754 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
6755 {
6756 rc = VERR_VD_IMAGE_READ_ONLY;
6757 goto out;
6758 }
6759 if (pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)
6760 {
6761 rc = VERR_NOT_SUPPORTED;
6762 goto out;
6763 }
6764
6765 if (pImage)
6766 rc = vmdkSetImageComment(pImage, pszComment);
6767 else
6768 rc = VERR_VD_NOT_OPENED;
6769
6770out:
6771 LogFlowFunc(("returns %Rrc\n", rc));
6772 return rc;
6773}
6774
6775/** @copydoc VBOXHDDBACKEND::pfnGetUuid */
6776static int vmdkGetUuid(void *pBackendData, PRTUUID pUuid)
6777{
6778 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6779 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6780 int rc;
6781
6782 AssertPtr(pImage);
6783
6784 if (pImage)
6785 {
6786 *pUuid = pImage->ImageUuid;
6787 rc = VINF_SUCCESS;
6788 }
6789 else
6790 rc = VERR_VD_NOT_OPENED;
6791
6792 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6793 return rc;
6794}
6795
6796/** @copydoc VBOXHDDBACKEND::pfnSetUuid */
6797static int vmdkSetUuid(void *pBackendData, PCRTUUID pUuid)
6798{
6799 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6800 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6801 int rc;
6802
6803 LogFlowFunc(("%RTuuid\n", pUuid));
6804 AssertPtr(pImage);
6805
6806 if (pImage)
6807 {
6808 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6809 {
6810 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6811 {
6812 pImage->ImageUuid = *pUuid;
6813 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6814 VMDK_DDB_IMAGE_UUID, pUuid);
6815 if (RT_FAILURE(rc))
6816 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
6817 rc = VINF_SUCCESS;
6818 }
6819 else
6820 rc = VERR_NOT_SUPPORTED;
6821 }
6822 else
6823 rc = VERR_VD_IMAGE_READ_ONLY;
6824 }
6825 else
6826 rc = VERR_VD_NOT_OPENED;
6827
6828 LogFlowFunc(("returns %Rrc\n", rc));
6829 return rc;
6830}
6831
6832/** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
6833static int vmdkGetModificationUuid(void *pBackendData, PRTUUID pUuid)
6834{
6835 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6836 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6837 int rc;
6838
6839 AssertPtr(pImage);
6840
6841 if (pImage)
6842 {
6843 *pUuid = pImage->ModificationUuid;
6844 rc = VINF_SUCCESS;
6845 }
6846 else
6847 rc = VERR_VD_NOT_OPENED;
6848
6849 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6850 return rc;
6851}
6852
6853/** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
6854static int vmdkSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
6855{
6856 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6857 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6858 int rc;
6859
6860 AssertPtr(pImage);
6861
6862 if (pImage)
6863 {
6864 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6865 {
6866 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6867 {
6868 /* Only touch the modification uuid if it changed. */
6869 if (RTUuidCompare(&pImage->ModificationUuid, pUuid))
6870 {
6871 pImage->ModificationUuid = *pUuid;
6872 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6873 VMDK_DDB_MODIFICATION_UUID, pUuid);
6874 if (RT_FAILURE(rc))
6875 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in descriptor in '%s'"), pImage->pszFilename);
6876 }
6877 rc = VINF_SUCCESS;
6878 }
6879 else
6880 rc = VERR_NOT_SUPPORTED;
6881 }
6882 else
6883 rc = VERR_VD_IMAGE_READ_ONLY;
6884 }
6885 else
6886 rc = VERR_VD_NOT_OPENED;
6887
6888 LogFlowFunc(("returns %Rrc\n", rc));
6889 return rc;
6890}
6891
6892/** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
6893static int vmdkGetParentUuid(void *pBackendData, PRTUUID pUuid)
6894{
6895 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6896 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6897 int rc;
6898
6899 AssertPtr(pImage);
6900
6901 if (pImage)
6902 {
6903 *pUuid = pImage->ParentUuid;
6904 rc = VINF_SUCCESS;
6905 }
6906 else
6907 rc = VERR_VD_NOT_OPENED;
6908
6909 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6910 return rc;
6911}
6912
6913/** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
6914static int vmdkSetParentUuid(void *pBackendData, PCRTUUID pUuid)
6915{
6916 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6917 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6918 int rc;
6919
6920 AssertPtr(pImage);
6921
6922 if (pImage)
6923 {
6924 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6925 {
6926 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6927 {
6928 pImage->ParentUuid = *pUuid;
6929 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6930 VMDK_DDB_PARENT_UUID, pUuid);
6931 if (RT_FAILURE(rc))
6932 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
6933 rc = VINF_SUCCESS;
6934 }
6935 else
6936 rc = VERR_NOT_SUPPORTED;
6937 }
6938 else
6939 rc = VERR_VD_IMAGE_READ_ONLY;
6940 }
6941 else
6942 rc = VERR_VD_NOT_OPENED;
6943
6944 LogFlowFunc(("returns %Rrc\n", rc));
6945 return rc;
6946}
6947
6948/** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
6949static int vmdkGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
6950{
6951 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
6952 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6953 int rc;
6954
6955 AssertPtr(pImage);
6956
6957 if (pImage)
6958 {
6959 *pUuid = pImage->ParentModificationUuid;
6960 rc = VINF_SUCCESS;
6961 }
6962 else
6963 rc = VERR_VD_NOT_OPENED;
6964
6965 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid));
6966 return rc;
6967}
6968
6969/** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
6970static int vmdkSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
6971{
6972 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
6973 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
6974 int rc;
6975
6976 AssertPtr(pImage);
6977
6978 if (pImage)
6979 {
6980 if (!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
6981 {
6982 if (!(pImage->uOpenFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
6983 {
6984 pImage->ParentModificationUuid = *pUuid;
6985 rc = vmdkDescDDBSetUuid(pImage, &pImage->Descriptor,
6986 VMDK_DDB_PARENT_MODIFICATION_UUID, pUuid);
6987 if (RT_FAILURE(rc))
6988 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
6989 rc = VINF_SUCCESS;
6990 }
6991 else
6992 rc = VERR_NOT_SUPPORTED;
6993 }
6994 else
6995 rc = VERR_VD_IMAGE_READ_ONLY;
6996 }
6997 else
6998 rc = VERR_VD_NOT_OPENED;
6999
7000 LogFlowFunc(("returns %Rrc\n", rc));
7001 return rc;
7002}
7003
7004/** @copydoc VBOXHDDBACKEND::pfnDump */
7005static void vmdkDump(void *pBackendData)
7006{
7007 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7008
7009 AssertPtr(pImage);
7010 if (pImage)
7011 {
7012 vmdkMessage(pImage, "Header: Geometry PCHS=%u/%u/%u LCHS=%u/%u/%u cbSector=%llu\n",
7013 pImage->PCHSGeometry.cCylinders, pImage->PCHSGeometry.cHeads, pImage->PCHSGeometry.cSectors,
7014 pImage->LCHSGeometry.cCylinders, pImage->LCHSGeometry.cHeads, pImage->LCHSGeometry.cSectors,
7015 VMDK_BYTE2SECTOR(pImage->cbSize));
7016 vmdkMessage(pImage, "Header: uuidCreation={%RTuuid}\n", &pImage->ImageUuid);
7017 vmdkMessage(pImage, "Header: uuidModification={%RTuuid}\n", &pImage->ModificationUuid);
7018 vmdkMessage(pImage, "Header: uuidParent={%RTuuid}\n", &pImage->ParentUuid);
7019 vmdkMessage(pImage, "Header: uuidParentModification={%RTuuid}\n", &pImage->ParentModificationUuid);
7020 }
7021}
7022
7023/** @copydoc VBOXHDDBACKEND::pfnIsAsyncIOSupported */
7024static bool vmdkIsAsyncIOSupported(void *pBackendData)
7025{
7026 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7027
7028 /* We do not support async I/O for stream optimized VMDK images. */
7029 return (pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED) == 0;
7030}
7031
7032/** @copydoc VBOXHDDBACKEND::pfnAsyncRead */
7033static int vmdkAsyncRead(void *pBackendData, uint64_t uOffset, size_t cbRead,
7034 PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
7035{
7036 LogFlowFunc(("pBackendData=%#p uOffset=%llu pIoCtx=%#p cbToRead=%zu pcbActuallyRead=%#p\n",
7037 pBackendData, uOffset, pIoCtx, cbRead, pcbActuallyRead));
7038 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7039 PVMDKEXTENT pExtent;
7040 uint64_t uSectorExtentRel;
7041 uint64_t uSectorExtentAbs;
7042 int rc;
7043
7044 AssertPtr(pImage);
7045 Assert(uOffset % 512 == 0);
7046 Assert(cbRead % 512 == 0);
7047
7048 if ( uOffset + cbRead > pImage->cbSize
7049 || cbRead == 0)
7050 {
7051 rc = VERR_INVALID_PARAMETER;
7052 goto out;
7053 }
7054
7055 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
7056 &pExtent, &uSectorExtentRel);
7057 if (RT_FAILURE(rc))
7058 goto out;
7059
7060 /* Check access permissions as defined in the extent descriptor. */
7061 if (pExtent->enmAccess == VMDKACCESS_NOACCESS)
7062 {
7063 rc = VERR_VD_VMDK_INVALID_STATE;
7064 goto out;
7065 }
7066
7067 /* Clip read range to remain in this extent. */
7068 cbRead = RT_MIN(cbRead, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7069
7070 /* Handle the read according to the current extent type. */
7071 switch (pExtent->enmType)
7072 {
7073 case VMDKETYPE_HOSTED_SPARSE:
7074#ifdef VBOX_WITH_VMDK_ESX
7075 case VMDKETYPE_ESX_SPARSE:
7076#endif /* VBOX_WITH_VMDK_ESX */
7077 rc = vmdkGetSectorAsync(pImage, pIoCtx, pExtent,
7078 uSectorExtentRel, &uSectorExtentAbs);
7079 if (RT_FAILURE(rc))
7080 goto out;
7081 /* Clip read range to at most the rest of the grain. */
7082 cbRead = RT_MIN(cbRead, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
7083 Assert(!(cbRead % 512));
7084 if (uSectorExtentAbs == 0)
7085 rc = VERR_VD_BLOCK_FREE;
7086 else
7087 {
7088 AssertMsg(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED), ("Async I/O is not supported for stream optimized VMDK's\n"));
7089 rc = vmdkFileReadUserAsync(pImage, pExtent->pFile,
7090 VMDK_SECTOR2BYTE(uSectorExtentAbs),
7091 pIoCtx, cbRead);
7092 }
7093 break;
7094 case VMDKETYPE_VMFS:
7095 case VMDKETYPE_FLAT:
7096 rc = vmdkFileReadUserAsync(pImage, pExtent->pFile,
7097 VMDK_SECTOR2BYTE(uSectorExtentRel),
7098 pIoCtx, cbRead);
7099 break;
7100 case VMDKETYPE_ZERO:
7101 size_t cbSet;
7102
7103 cbSet = vmdkFileIoCtxSet(pImage, pIoCtx, 0, cbRead);
7104 Assert(cbSet == cbRead);
7105
7106 rc = VINF_SUCCESS;
7107 break;
7108 }
7109 if (pcbActuallyRead)
7110 *pcbActuallyRead = cbRead;
7111
7112out:
7113 LogFlowFunc(("returns %Rrc\n", rc));
7114 return rc;
7115}
7116
7117/** @copydoc VBOXHDDBACKEND::pfnAsyncWrite */
7118static int vmdkAsyncWrite(void *pBackendData, uint64_t uOffset, size_t cbWrite,
7119 PVDIOCTX pIoCtx,
7120 size_t *pcbWriteProcess, size_t *pcbPreRead,
7121 size_t *pcbPostRead, unsigned fWrite)
7122{
7123 LogFlowFunc(("pBackendData=%#p uOffset=%llu pIoCtx=%#p cbToWrite=%zu pcbWriteProcess=%#p pcbPreRead=%#p pcbPostRead=%#p\n",
7124 pBackendData, uOffset, pIoCtx, cbWrite, pcbWriteProcess, pcbPreRead, pcbPostRead));
7125 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7126 PVMDKEXTENT pExtent;
7127 uint64_t uSectorExtentRel;
7128 uint64_t uSectorExtentAbs;
7129 int rc;
7130
7131 AssertPtr(pImage);
7132 Assert(uOffset % 512 == 0);
7133 Assert(cbWrite % 512 == 0);
7134
7135 if (pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
7136 {
7137 rc = VERR_VD_IMAGE_READ_ONLY;
7138 goto out;
7139 }
7140
7141 if (cbWrite == 0)
7142 {
7143 rc = VERR_INVALID_PARAMETER;
7144 goto out;
7145 }
7146
7147 /* No size check here, will do that later when the extent is located.
7148 * There are sparse images out there which according to the spec are
7149 * invalid, because the total size is not a multiple of the grain size.
7150 * Also for sparse images which are stitched together in odd ways (not at
7151 * grain boundaries, and with the nominal size not being a multiple of the
7152 * grain size), this would prevent writing to the last grain. */
7153
7154 rc = vmdkFindExtent(pImage, VMDK_BYTE2SECTOR(uOffset),
7155 &pExtent, &uSectorExtentRel);
7156 if (RT_FAILURE(rc))
7157 goto out;
7158
7159 /* Check access permissions as defined in the extent descriptor. */
7160 if (pExtent->enmAccess != VMDKACCESS_READWRITE)
7161 {
7162 rc = VERR_VD_VMDK_INVALID_STATE;
7163 goto out;
7164 }
7165
7166 /* Handle the write according to the current extent type. */
7167 switch (pExtent->enmType)
7168 {
7169 case VMDKETYPE_HOSTED_SPARSE:
7170#ifdef VBOX_WITH_VMDK_ESX
7171 case VMDKETYPE_ESX_SPARSE:
7172#endif /* VBOX_WITH_VMDK_ESX */
7173 rc = vmdkGetSectorAsync(pImage, pIoCtx, pExtent, uSectorExtentRel,
7174 &uSectorExtentAbs);
7175 if (RT_FAILURE(rc))
7176 goto out;
7177 /* Clip write range to at most the rest of the grain. */
7178 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain - uSectorExtentRel % pExtent->cSectorsPerGrain));
7179 if ( pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED
7180 && uSectorExtentRel < (uint64_t)pExtent->uLastGrainAccess * pExtent->cSectorsPerGrain)
7181 {
7182 rc = VERR_VD_VMDK_INVALID_WRITE;
7183 goto out;
7184 }
7185 if (uSectorExtentAbs == 0)
7186 {
7187 if (cbWrite == VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
7188 {
7189 /* Full block write to a previously unallocated block.
7190 * Check if the caller wants to avoid the automatic alloc. */
7191 if (!(fWrite & VD_WRITE_NO_ALLOC))
7192 {
7193 /* Allocate GT and find out where to store the grain. */
7194 rc = vmdkAllocGrainAsync(pImage, pExtent, pIoCtx,
7195 uSectorExtentRel, cbWrite);
7196 }
7197 else
7198 rc = VERR_VD_BLOCK_FREE;
7199 *pcbPreRead = 0;
7200 *pcbPostRead = 0;
7201 }
7202 else
7203 {
7204 /* Clip write range to remain in this extent. */
7205 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7206 *pcbPreRead = VMDK_SECTOR2BYTE(uSectorExtentRel % pExtent->cSectorsPerGrain);
7207 *pcbPostRead = VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain) - cbWrite - *pcbPreRead;
7208 rc = VERR_VD_BLOCK_FREE;
7209 }
7210 }
7211 else
7212 {
7213 Assert(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED));
7214 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
7215 VMDK_SECTOR2BYTE(uSectorExtentAbs),
7216 pIoCtx, cbWrite, NULL, NULL);
7217 }
7218 break;
7219 case VMDKETYPE_VMFS:
7220 case VMDKETYPE_FLAT:
7221 /* Clip write range to remain in this extent. */
7222 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7223 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
7224 VMDK_SECTOR2BYTE(uSectorExtentRel),
7225 pIoCtx, cbWrite, NULL, NULL);
7226 break;
7227 case VMDKETYPE_ZERO:
7228 /* Clip write range to remain in this extent. */
7229 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
7230 break;
7231 }
7232
7233 if (pcbWriteProcess)
7234 *pcbWriteProcess = cbWrite;
7235
7236out:
7237 LogFlowFunc(("returns %Rrc\n", rc));
7238 return rc;
7239}
7240
7241/** @copydoc VBOXHDDBACKEND::pfnAsyncFlush */
7242static int vmdkAsyncFlush(void *pBackendData, PVDIOCTX pIoCtx)
7243{
7244 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData;
7245 PVMDKEXTENT pExtent;
7246 int rc = VINF_SUCCESS;
7247
7248 for (unsigned i = 0; i < pImage->cExtents; i++)
7249 {
7250 pExtent = &pImage->pExtents[i];
7251 if (pExtent->pFile != NULL && pExtent->fMetaDirty)
7252 {
7253 switch (pExtent->enmType)
7254 {
7255 case VMDKETYPE_HOSTED_SPARSE:
7256#ifdef VBOX_WITH_VMDK_ESX
7257 case VMDKETYPE_ESX_SPARSE:
7258#endif /* VBOX_WITH_VMDK_ESX */
7259 rc = vmdkWriteMetaSparseExtentAsync(pImage, pExtent, 0, pIoCtx);
7260 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
7261 goto out;
7262 if (pExtent->fFooter)
7263 {
7264 uint64_t uFileOffset = pExtent->uAppendPosition;
7265 if (!uFileOffset)
7266 {
7267 rc = VERR_INTERNAL_ERROR;
7268 goto out;
7269 }
7270 uFileOffset = RT_ALIGN_64(uFileOffset, 512);
7271 rc = vmdkWriteMetaSparseExtent(pImage, pExtent, uFileOffset);
7272 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
7273 goto out;
7274 }
7275 break;
7276 case VMDKETYPE_VMFS:
7277 case VMDKETYPE_FLAT:
7278 /* Nothing to do. */
7279 break;
7280 case VMDKETYPE_ZERO:
7281 default:
7282 AssertMsgFailed(("extent with type %d marked as dirty\n",
7283 pExtent->enmType));
7284 break;
7285 }
7286 }
7287 switch (pExtent->enmType)
7288 {
7289 case VMDKETYPE_HOSTED_SPARSE:
7290#ifdef VBOX_WITH_VMDK_ESX
7291 case VMDKETYPE_ESX_SPARSE:
7292#endif /* VBOX_WITH_VMDK_ESX */
7293 case VMDKETYPE_VMFS:
7294 case VMDKETYPE_FLAT:
7295 /*
7296 * Don't ignore block devices like in the sync case
7297 * (they have an absolute path).
7298 * We might have unwritten data in the writeback cache and
7299 * the async I/O manager will handle these requests properly
7300 * even if the block device doesn't support these requests.
7301 */
7302 if ( pExtent->pFile != NULL
7303 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
7304 rc = vmdkFileFlushAsync(pImage, pExtent->pFile, pIoCtx);
7305 break;
7306 case VMDKETYPE_ZERO:
7307 /* No need to do anything for this extent. */
7308 break;
7309 default:
7310 AssertMsgFailed(("unknown extent type %d\n", pExtent->enmType));
7311 break;
7312 }
7313 }
7314
7315out:
7316 return rc;
7317}
7318
7319
7320VBOXHDDBACKEND g_VmdkBackend =
7321{
7322 /* pszBackendName */
7323 "VMDK",
7324 /* cbSize */
7325 sizeof(VBOXHDDBACKEND),
7326 /* uBackendCaps */
7327 VD_CAP_UUID | VD_CAP_CREATE_FIXED | VD_CAP_CREATE_DYNAMIC
7328 | VD_CAP_CREATE_SPLIT_2G | VD_CAP_DIFF | VD_CAP_FILE | VD_CAP_ASYNC
7329 | VD_CAP_VFS,
7330 /* paFileExtensions */
7331 s_aVmdkFileExtensions,
7332 /* paConfigInfo */
7333 NULL,
7334 /* hPlugin */
7335 NIL_RTLDRMOD,
7336 /* pfnCheckIfValid */
7337 vmdkCheckIfValid,
7338 /* pfnOpen */
7339 vmdkOpen,
7340 /* pfnCreate */
7341 vmdkCreate,
7342 /* pfnRename */
7343 vmdkRename,
7344 /* pfnClose */
7345 vmdkClose,
7346 /* pfnRead */
7347 vmdkRead,
7348 /* pfnWrite */
7349 vmdkWrite,
7350 /* pfnFlush */
7351 vmdkFlush,
7352 /* pfnGetVersion */
7353 vmdkGetVersion,
7354 /* pfnGetSize */
7355 vmdkGetSize,
7356 /* pfnGetFileSize */
7357 vmdkGetFileSize,
7358 /* pfnGetPCHSGeometry */
7359 vmdkGetPCHSGeometry,
7360 /* pfnSetPCHSGeometry */
7361 vmdkSetPCHSGeometry,
7362 /* pfnGetLCHSGeometry */
7363 vmdkGetLCHSGeometry,
7364 /* pfnSetLCHSGeometry */
7365 vmdkSetLCHSGeometry,
7366 /* pfnGetImageFlags */
7367 vmdkGetImageFlags,
7368 /* pfnGetOpenFlags */
7369 vmdkGetOpenFlags,
7370 /* pfnSetOpenFlags */
7371 vmdkSetOpenFlags,
7372 /* pfnGetComment */
7373 vmdkGetComment,
7374 /* pfnSetComment */
7375 vmdkSetComment,
7376 /* pfnGetUuid */
7377 vmdkGetUuid,
7378 /* pfnSetUuid */
7379 vmdkSetUuid,
7380 /* pfnGetModificationUuid */
7381 vmdkGetModificationUuid,
7382 /* pfnSetModificationUuid */
7383 vmdkSetModificationUuid,
7384 /* pfnGetParentUuid */
7385 vmdkGetParentUuid,
7386 /* pfnSetParentUuid */
7387 vmdkSetParentUuid,
7388 /* pfnGetParentModificationUuid */
7389 vmdkGetParentModificationUuid,
7390 /* pfnSetParentModificationUuid */
7391 vmdkSetParentModificationUuid,
7392 /* pfnDump */
7393 vmdkDump,
7394 /* pfnGetTimeStamp */
7395 NULL,
7396 /* pfnGetParentTimeStamp */
7397 NULL,
7398 /* pfnSetParentTimeStamp */
7399 NULL,
7400 /* pfnGetParentFilename */
7401 NULL,
7402 /* pfnSetParentFilename */
7403 NULL,
7404 /* pfnIsAsyncIOSupported */
7405 vmdkIsAsyncIOSupported,
7406 /* pfnAsyncRead */
7407 vmdkAsyncRead,
7408 /* pfnAsyncWrite */
7409 vmdkAsyncWrite,
7410 /* pfnAsyncFlush */
7411 vmdkAsyncFlush,
7412 /* pfnComposeLocation */
7413 genericFileComposeLocation,
7414 /* pfnComposeName */
7415 genericFileComposeName,
7416 /* pfnCompact */
7417 NULL,
7418 /* pfnResize */
7419 NULL
7420};
Note: See TracBrowser for help on using the repository browser.

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