VirtualBox

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

Last change on this file since 65123 was 64272, checked in by vboxsync, 8 years ago

Storage: Doxygen fixes

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