2 * Block driver for the VMDK format
4 * Copyright (c) 2004 Fabrice Bellard
5 * Copyright (c) 2005 Filip Navara
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
28 #include "block/block_int.h"
29 #include "sysemu/block-backend.h"
30 #include "qapi/qmp/qerror.h"
31 #include "qemu/error-report.h"
32 #include "qemu/module.h"
33 #include "qemu/bswap.h"
34 #include "migration/migration.h"
35 #include "qemu/cutils.h"
39 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
40 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
41 #define VMDK4_COMPRESSION_DEFLATE 1
42 #define VMDK4_FLAG_NL_DETECT (1 << 0)
43 #define VMDK4_FLAG_RGD (1 << 1)
44 /* Zeroed-grain enable bit */
45 #define VMDK4_FLAG_ZERO_GRAIN (1 << 2)
46 #define VMDK4_FLAG_COMPRESS (1 << 16)
47 #define VMDK4_FLAG_MARKER (1 << 17)
48 #define VMDK4_GD_AT_END 0xffffffffffffffffULL
50 #define VMDK_GTE_ZEROED 0x1
52 /* VMDK internal error codes */
54 #define VMDK_ERROR (-1)
55 /* Cluster not allocated */
56 #define VMDK_UNALLOC (-2)
57 #define VMDK_ZEROED (-3)
59 #define BLOCK_OPT_ZEROED_GRAIN "zeroed_grain"
64 uint32_t disk_sectors
;
66 uint32_t l1dir_offset
;
68 uint32_t file_sectors
;
71 uint32_t sectors_per_track
;
72 } QEMU_PACKED VMDK3Header
;
81 /* Number of GrainTableEntries per GrainTable */
82 uint32_t num_gtes_per_gt
;
85 uint64_t grain_offset
;
88 uint16_t compressAlgorithm
;
89 } QEMU_PACKED VMDK4Header
;
91 #define L2_CACHE_SIZE 16
93 typedef struct VmdkExtent
{
102 int64_t flat_start_offset
;
103 int64_t l1_table_offset
;
104 int64_t l1_backup_table_offset
;
106 uint32_t *l1_backup_table
;
107 unsigned int l1_size
;
108 uint32_t l1_entry_sectors
;
110 unsigned int l2_size
;
112 uint32_t l2_cache_offsets
[L2_CACHE_SIZE
];
113 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
115 int64_t cluster_sectors
;
116 int64_t next_cluster_sector
;
120 typedef struct BDRVVmdkState
{
122 uint64_t desc_offset
;
128 /* Extent array with num_extents entries, ascend ordered by address */
130 Error
*migration_blocker
;
134 typedef struct VmdkMetaData
{
135 unsigned int l1_index
;
136 unsigned int l2_index
;
137 unsigned int l2_offset
;
139 uint32_t *l2_cache_entry
;
142 typedef struct VmdkGrainMarker
{
146 } QEMU_PACKED VmdkGrainMarker
;
149 MARKER_END_OF_STREAM
= 0,
150 MARKER_GRAIN_TABLE
= 1,
151 MARKER_GRAIN_DIRECTORY
= 2,
155 static int vmdk_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
162 magic
= be32_to_cpu(*(uint32_t *)buf
);
163 if (magic
== VMDK3_MAGIC
||
164 magic
== VMDK4_MAGIC
) {
167 const char *p
= (const char *)buf
;
168 const char *end
= p
+ buf_size
;
171 /* skip comment line */
172 while (p
< end
&& *p
!= '\n') {
179 while (p
< end
&& *p
== ' ') {
182 /* skip '\r' if windows line endings used. */
183 if (p
< end
&& *p
== '\r') {
186 /* only accept blank lines before 'version=' line */
187 if (p
== end
|| *p
!= '\n') {
193 if (end
- p
>= strlen("version=X\n")) {
194 if (strncmp("version=1\n", p
, strlen("version=1\n")) == 0 ||
195 strncmp("version=2\n", p
, strlen("version=2\n")) == 0) {
199 if (end
- p
>= strlen("version=X\r\n")) {
200 if (strncmp("version=1\r\n", p
, strlen("version=1\r\n")) == 0 ||
201 strncmp("version=2\r\n", p
, strlen("version=2\r\n")) == 0) {
211 #define SECTOR_SIZE 512
212 #define DESC_SIZE (20 * SECTOR_SIZE) /* 20 sectors of 512 bytes each */
213 #define BUF_SIZE 4096
214 #define HEADER_SIZE 512 /* first sector of 512 bytes */
216 static void vmdk_free_extents(BlockDriverState
*bs
)
219 BDRVVmdkState
*s
= bs
->opaque
;
222 for (i
= 0; i
< s
->num_extents
; i
++) {
226 g_free(e
->l1_backup_table
);
228 if (e
->file
!= bs
->file
) {
229 bdrv_unref_child(bs
, e
->file
);
235 static void vmdk_free_last_extent(BlockDriverState
*bs
)
237 BDRVVmdkState
*s
= bs
->opaque
;
239 if (s
->num_extents
== 0) {
243 s
->extents
= g_renew(VmdkExtent
, s
->extents
, s
->num_extents
);
246 static uint32_t vmdk_read_cid(BlockDriverState
*bs
, int parent
)
249 uint32_t cid
= 0xffffffff;
250 const char *p_name
, *cid_str
;
252 BDRVVmdkState
*s
= bs
->opaque
;
255 desc
= g_malloc0(DESC_SIZE
);
256 ret
= bdrv_pread(bs
->file
->bs
, s
->desc_offset
, desc
, DESC_SIZE
);
263 cid_str
= "parentCID";
264 cid_str_size
= sizeof("parentCID");
267 cid_str_size
= sizeof("CID");
270 desc
[DESC_SIZE
- 1] = '\0';
271 p_name
= strstr(desc
, cid_str
);
272 if (p_name
!= NULL
) {
273 p_name
+= cid_str_size
;
274 sscanf(p_name
, "%" SCNx32
, &cid
);
281 static int vmdk_write_cid(BlockDriverState
*bs
, uint32_t cid
)
283 char *desc
, *tmp_desc
;
284 char *p_name
, *tmp_str
;
285 BDRVVmdkState
*s
= bs
->opaque
;
288 desc
= g_malloc0(DESC_SIZE
);
289 tmp_desc
= g_malloc0(DESC_SIZE
);
290 ret
= bdrv_pread(bs
->file
->bs
, s
->desc_offset
, desc
, DESC_SIZE
);
295 desc
[DESC_SIZE
- 1] = '\0';
296 tmp_str
= strstr(desc
, "parentCID");
297 if (tmp_str
== NULL
) {
302 pstrcpy(tmp_desc
, DESC_SIZE
, tmp_str
);
303 p_name
= strstr(desc
, "CID");
304 if (p_name
!= NULL
) {
305 p_name
+= sizeof("CID");
306 snprintf(p_name
, DESC_SIZE
- (p_name
- desc
), "%" PRIx32
"\n", cid
);
307 pstrcat(desc
, DESC_SIZE
, tmp_desc
);
310 ret
= bdrv_pwrite_sync(bs
->file
->bs
, s
->desc_offset
, desc
, DESC_SIZE
);
318 static int vmdk_is_cid_valid(BlockDriverState
*bs
)
320 BDRVVmdkState
*s
= bs
->opaque
;
323 if (!s
->cid_checked
&& bs
->backing
) {
324 BlockDriverState
*p_bs
= bs
->backing
->bs
;
326 cur_pcid
= vmdk_read_cid(p_bs
, 0);
327 if (s
->parent_cid
!= cur_pcid
) {
332 s
->cid_checked
= true;
337 /* We have nothing to do for VMDK reopen, stubs just return success */
338 static int vmdk_reopen_prepare(BDRVReopenState
*state
,
339 BlockReopenQueue
*queue
, Error
**errp
)
341 assert(state
!= NULL
);
342 assert(state
->bs
!= NULL
);
346 static int vmdk_parent_open(BlockDriverState
*bs
)
350 BDRVVmdkState
*s
= bs
->opaque
;
353 desc
= g_malloc0(DESC_SIZE
+ 1);
354 ret
= bdrv_pread(bs
->file
->bs
, s
->desc_offset
, desc
, DESC_SIZE
);
360 p_name
= strstr(desc
, "parentFileNameHint");
361 if (p_name
!= NULL
) {
364 p_name
+= sizeof("parentFileNameHint") + 1;
365 end_name
= strchr(p_name
, '\"');
366 if (end_name
== NULL
) {
370 if ((end_name
- p_name
) > sizeof(bs
->backing_file
) - 1) {
375 pstrcpy(bs
->backing_file
, end_name
- p_name
+ 1, p_name
);
383 /* Create and append extent to the extent array. Return the added VmdkExtent
384 * address. return NULL if allocation failed. */
385 static int vmdk_add_extent(BlockDriverState
*bs
,
386 BdrvChild
*file
, bool flat
, int64_t sectors
,
387 int64_t l1_offset
, int64_t l1_backup_offset
,
389 int l2_size
, uint64_t cluster_sectors
,
390 VmdkExtent
**new_extent
,
394 BDRVVmdkState
*s
= bs
->opaque
;
397 if (cluster_sectors
> 0x200000) {
398 /* 0x200000 * 512Bytes = 1GB for one cluster is unrealistic */
399 error_setg(errp
, "Invalid granularity, image may be corrupt");
402 if (l1_size
> 512 * 1024 * 1024) {
403 /* Although with big capacity and small l1_entry_sectors, we can get a
404 * big l1_size, we don't want unbounded value to allocate the table.
405 * Limit it to 512M, which is 16PB for default cluster and L2 table
407 error_setg(errp
, "L1 size too big");
411 nb_sectors
= bdrv_nb_sectors(file
->bs
);
412 if (nb_sectors
< 0) {
416 s
->extents
= g_renew(VmdkExtent
, s
->extents
, s
->num_extents
+ 1);
417 extent
= &s
->extents
[s
->num_extents
];
420 memset(extent
, 0, sizeof(VmdkExtent
));
423 extent
->sectors
= sectors
;
424 extent
->l1_table_offset
= l1_offset
;
425 extent
->l1_backup_table_offset
= l1_backup_offset
;
426 extent
->l1_size
= l1_size
;
427 extent
->l1_entry_sectors
= l2_size
* cluster_sectors
;
428 extent
->l2_size
= l2_size
;
429 extent
->cluster_sectors
= flat
? sectors
: cluster_sectors
;
430 extent
->next_cluster_sector
= ROUND_UP(nb_sectors
, cluster_sectors
);
432 if (s
->num_extents
> 1) {
433 extent
->end_sector
= (*(extent
- 1)).end_sector
+ extent
->sectors
;
435 extent
->end_sector
= extent
->sectors
;
437 bs
->total_sectors
= extent
->end_sector
;
439 *new_extent
= extent
;
444 static int vmdk_init_tables(BlockDriverState
*bs
, VmdkExtent
*extent
,
451 /* read the L1 table */
452 l1_size
= extent
->l1_size
* sizeof(uint32_t);
453 extent
->l1_table
= g_try_malloc(l1_size
);
454 if (l1_size
&& extent
->l1_table
== NULL
) {
458 ret
= bdrv_pread(extent
->file
->bs
,
459 extent
->l1_table_offset
,
463 error_setg_errno(errp
, -ret
,
464 "Could not read l1 table from extent '%s'",
465 extent
->file
->bs
->filename
);
468 for (i
= 0; i
< extent
->l1_size
; i
++) {
469 le32_to_cpus(&extent
->l1_table
[i
]);
472 if (extent
->l1_backup_table_offset
) {
473 extent
->l1_backup_table
= g_try_malloc(l1_size
);
474 if (l1_size
&& extent
->l1_backup_table
== NULL
) {
478 ret
= bdrv_pread(extent
->file
->bs
,
479 extent
->l1_backup_table_offset
,
480 extent
->l1_backup_table
,
483 error_setg_errno(errp
, -ret
,
484 "Could not read l1 backup table from extent '%s'",
485 extent
->file
->bs
->filename
);
488 for (i
= 0; i
< extent
->l1_size
; i
++) {
489 le32_to_cpus(&extent
->l1_backup_table
[i
]);
494 g_new(uint32_t, extent
->l2_size
* L2_CACHE_SIZE
);
497 g_free(extent
->l1_backup_table
);
499 g_free(extent
->l1_table
);
503 static int vmdk_open_vmfs_sparse(BlockDriverState
*bs
,
505 int flags
, Error
**errp
)
512 ret
= bdrv_pread(file
->bs
, sizeof(magic
), &header
, sizeof(header
));
514 error_setg_errno(errp
, -ret
,
515 "Could not read header from file '%s'",
519 ret
= vmdk_add_extent(bs
, file
, false,
520 le32_to_cpu(header
.disk_sectors
),
521 (int64_t)le32_to_cpu(header
.l1dir_offset
) << 9,
523 le32_to_cpu(header
.l1dir_size
),
525 le32_to_cpu(header
.granularity
),
531 ret
= vmdk_init_tables(bs
, extent
, errp
);
533 /* free extent allocated by vmdk_add_extent */
534 vmdk_free_last_extent(bs
);
539 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
, char *buf
,
540 QDict
*options
, Error
**errp
);
542 static char *vmdk_read_desc(BlockDriverState
*file
, uint64_t desc_offset
,
549 size
= bdrv_getlength(file
);
551 error_setg_errno(errp
, -size
, "Could not access file");
556 /* Both descriptor file and sparse image must be much larger than 4
557 * bytes, also callers of vmdk_read_desc want to compare the first 4
558 * bytes with VMDK4_MAGIC, let's error out if less is read. */
559 error_setg(errp
, "File is too small, not a valid image");
563 size
= MIN(size
, (1 << 20) - 1); /* avoid unbounded allocation */
564 buf
= g_malloc(size
+ 1);
566 ret
= bdrv_pread(file
, desc_offset
, buf
, size
);
568 error_setg_errno(errp
, -ret
, "Could not read from file");
577 static int vmdk_open_vmdk4(BlockDriverState
*bs
,
579 int flags
, QDict
*options
, Error
**errp
)
583 uint32_t l1_size
, l1_entry_sectors
;
586 BDRVVmdkState
*s
= bs
->opaque
;
587 int64_t l1_backup_offset
= 0;
590 ret
= bdrv_pread(file
->bs
, sizeof(magic
), &header
, sizeof(header
));
592 error_setg_errno(errp
, -ret
,
593 "Could not read header from file '%s'",
597 if (header
.capacity
== 0) {
598 uint64_t desc_offset
= le64_to_cpu(header
.desc_offset
);
600 char *buf
= vmdk_read_desc(file
->bs
, desc_offset
<< 9, errp
);
604 ret
= vmdk_open_desc_file(bs
, flags
, buf
, options
, errp
);
610 if (!s
->create_type
) {
611 s
->create_type
= g_strdup("monolithicSparse");
614 if (le64_to_cpu(header
.gd_offset
) == VMDK4_GD_AT_END
) {
616 * The footer takes precedence over the header, so read it in. The
617 * footer starts at offset -1024 from the end: One sector for the
618 * footer, and another one for the end-of-stream marker.
625 uint8_t pad
[512 - 16];
626 } QEMU_PACKED footer_marker
;
630 uint8_t pad
[512 - 4 - sizeof(VMDK4Header
)];
636 uint8_t pad
[512 - 16];
637 } QEMU_PACKED eos_marker
;
638 } QEMU_PACKED footer
;
640 ret
= bdrv_pread(file
->bs
,
641 bs
->file
->bs
->total_sectors
* 512 - 1536,
642 &footer
, sizeof(footer
));
644 error_setg_errno(errp
, -ret
, "Failed to read footer");
648 /* Some sanity checks for the footer */
649 if (be32_to_cpu(footer
.magic
) != VMDK4_MAGIC
||
650 le32_to_cpu(footer
.footer_marker
.size
) != 0 ||
651 le32_to_cpu(footer
.footer_marker
.type
) != MARKER_FOOTER
||
652 le64_to_cpu(footer
.eos_marker
.val
) != 0 ||
653 le32_to_cpu(footer
.eos_marker
.size
) != 0 ||
654 le32_to_cpu(footer
.eos_marker
.type
) != MARKER_END_OF_STREAM
)
656 error_setg(errp
, "Invalid footer");
660 header
= footer
.header
;
664 le16_to_cpu(header
.compressAlgorithm
) == VMDK4_COMPRESSION_DEFLATE
;
665 if (le32_to_cpu(header
.version
) > 3) {
666 error_setg(errp
, "Unsupported VMDK version %" PRIu32
,
667 le32_to_cpu(header
.version
));
669 } else if (le32_to_cpu(header
.version
) == 3 && (flags
& BDRV_O_RDWR
) &&
671 /* VMware KB 2064959 explains that version 3 added support for
672 * persistent changed block tracking (CBT), and backup software can
673 * read it as version=1 if it doesn't care about the changed area
674 * information. So we are safe to enable read only. */
675 error_setg(errp
, "VMDK version 3 must be read only");
679 if (le32_to_cpu(header
.num_gtes_per_gt
) > 512) {
680 error_setg(errp
, "L2 table size too big");
684 l1_entry_sectors
= le32_to_cpu(header
.num_gtes_per_gt
)
685 * le64_to_cpu(header
.granularity
);
686 if (l1_entry_sectors
== 0) {
687 error_setg(errp
, "L1 entry size is invalid");
690 l1_size
= (le64_to_cpu(header
.capacity
) + l1_entry_sectors
- 1)
692 if (le32_to_cpu(header
.flags
) & VMDK4_FLAG_RGD
) {
693 l1_backup_offset
= le64_to_cpu(header
.rgd_offset
) << 9;
695 if (bdrv_nb_sectors(file
->bs
) < le64_to_cpu(header
.grain_offset
)) {
696 error_setg(errp
, "File truncated, expecting at least %" PRId64
" bytes",
697 (int64_t)(le64_to_cpu(header
.grain_offset
)
698 * BDRV_SECTOR_SIZE
));
702 ret
= vmdk_add_extent(bs
, file
, false,
703 le64_to_cpu(header
.capacity
),
704 le64_to_cpu(header
.gd_offset
) << 9,
707 le32_to_cpu(header
.num_gtes_per_gt
),
708 le64_to_cpu(header
.granularity
),
715 le16_to_cpu(header
.compressAlgorithm
) == VMDK4_COMPRESSION_DEFLATE
;
716 if (extent
->compressed
) {
717 g_free(s
->create_type
);
718 s
->create_type
= g_strdup("streamOptimized");
720 extent
->has_marker
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_MARKER
;
721 extent
->version
= le32_to_cpu(header
.version
);
722 extent
->has_zero_grain
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_ZERO_GRAIN
;
723 ret
= vmdk_init_tables(bs
, extent
, errp
);
725 /* free extent allocated by vmdk_add_extent */
726 vmdk_free_last_extent(bs
);
731 /* find an option value out of descriptor file */
732 static int vmdk_parse_description(const char *desc
, const char *opt_name
,
733 char *buf
, int buf_size
)
735 char *opt_pos
, *opt_end
;
736 const char *end
= desc
+ strlen(desc
);
738 opt_pos
= strstr(desc
, opt_name
);
742 /* Skip "=\"" following opt_name */
743 opt_pos
+= strlen(opt_name
) + 2;
744 if (opt_pos
>= end
) {
748 while (opt_end
< end
&& *opt_end
!= '"') {
751 if (opt_end
== end
|| buf_size
< opt_end
- opt_pos
+ 1) {
754 pstrcpy(buf
, opt_end
- opt_pos
+ 1, opt_pos
);
758 /* Open an extent file and append to bs array */
759 static int vmdk_open_sparse(BlockDriverState
*bs
, BdrvChild
*file
, int flags
,
760 char *buf
, QDict
*options
, Error
**errp
)
764 magic
= ldl_be_p(buf
);
767 return vmdk_open_vmfs_sparse(bs
, file
, flags
, errp
);
770 return vmdk_open_vmdk4(bs
, file
, flags
, options
, errp
);
773 error_setg(errp
, "Image not in VMDK format");
779 static const char *next_line(const char *s
)
790 static int vmdk_parse_extents(const char *desc
, BlockDriverState
*bs
,
791 const char *desc_file_path
, QDict
*options
,
803 BdrvChild
*extent_file
;
804 BDRVVmdkState
*s
= bs
->opaque
;
806 char extent_opt_prefix
[32];
807 Error
*local_err
= NULL
;
809 for (p
= desc
; *p
; p
= next_line(p
)) {
810 /* parse extent line in one of below formats:
812 * RW [size in sectors] FLAT "file-name.vmdk" OFFSET
813 * RW [size in sectors] SPARSE "file-name.vmdk"
814 * RW [size in sectors] VMFS "file-name.vmdk"
815 * RW [size in sectors] VMFSSPARSE "file-name.vmdk"
818 matches
= sscanf(p
, "%10s %" SCNd64
" %10s \"%511[^\n\r\"]\" %" SCNd64
,
819 access
, §ors
, type
, fname
, &flat_offset
);
820 if (matches
< 4 || strcmp(access
, "RW")) {
822 } else if (!strcmp(type
, "FLAT")) {
823 if (matches
!= 5 || flat_offset
< 0) {
826 } else if (!strcmp(type
, "VMFS")) {
832 } else if (matches
!= 4) {
837 (strcmp(type
, "FLAT") && strcmp(type
, "SPARSE") &&
838 strcmp(type
, "VMFS") && strcmp(type
, "VMFSSPARSE")) ||
839 (strcmp(access
, "RW"))) {
843 if (!path_is_absolute(fname
) && !path_has_protocol(fname
) &&
846 error_setg(errp
, "Cannot use relative extent paths with VMDK "
847 "descriptor file '%s'", bs
->file
->bs
->filename
);
851 extent_path
= g_malloc0(PATH_MAX
);
852 path_combine(extent_path
, PATH_MAX
, desc_file_path
, fname
);
854 ret
= snprintf(extent_opt_prefix
, 32, "extents.%d", s
->num_extents
);
857 extent_file
= bdrv_open_child(extent_path
, options
, extent_opt_prefix
,
858 bs
, &child_file
, false, &local_err
);
861 error_propagate(errp
, local_err
);
865 /* save to extents array */
866 if (!strcmp(type
, "FLAT") || !strcmp(type
, "VMFS")) {
869 ret
= vmdk_add_extent(bs
, extent_file
, true, sectors
,
870 0, 0, 0, 0, 0, &extent
, errp
);
872 bdrv_unref_child(bs
, extent_file
);
875 extent
->flat_start_offset
= flat_offset
<< 9;
876 } else if (!strcmp(type
, "SPARSE") || !strcmp(type
, "VMFSSPARSE")) {
877 /* SPARSE extent and VMFSSPARSE extent are both "COWD" sparse file*/
878 char *buf
= vmdk_read_desc(extent_file
->bs
, 0, errp
);
882 ret
= vmdk_open_sparse(bs
, extent_file
, bs
->open_flags
, buf
,
887 bdrv_unref_child(bs
, extent_file
);
890 extent
= &s
->extents
[s
->num_extents
- 1];
892 error_setg(errp
, "Unsupported extent type '%s'", type
);
893 bdrv_unref_child(bs
, extent_file
);
896 extent
->type
= g_strdup(type
);
903 if (np
[-1] == '\n') {
906 error_setg(errp
, "Invalid extent line: %.*s", (int)(np
- p
), p
);
910 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
, char *buf
,
911 QDict
*options
, Error
**errp
)
915 BDRVVmdkState
*s
= bs
->opaque
;
917 if (vmdk_parse_description(buf
, "createType", ct
, sizeof(ct
))) {
918 error_setg(errp
, "invalid VMDK image descriptor");
922 if (strcmp(ct
, "monolithicFlat") &&
923 strcmp(ct
, "vmfs") &&
924 strcmp(ct
, "vmfsSparse") &&
925 strcmp(ct
, "twoGbMaxExtentSparse") &&
926 strcmp(ct
, "twoGbMaxExtentFlat")) {
927 error_setg(errp
, "Unsupported image type '%s'", ct
);
931 s
->create_type
= g_strdup(ct
);
933 ret
= vmdk_parse_extents(buf
, bs
, bs
->file
->bs
->exact_filename
, options
,
939 static int vmdk_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
944 BDRVVmdkState
*s
= bs
->opaque
;
947 buf
= vmdk_read_desc(bs
->file
->bs
, 0, errp
);
952 magic
= ldl_be_p(buf
);
956 ret
= vmdk_open_sparse(bs
, bs
->file
, flags
, buf
, options
,
958 s
->desc_offset
= 0x200;
961 ret
= vmdk_open_desc_file(bs
, flags
, buf
, options
, errp
);
968 /* try to open parent images, if exist */
969 ret
= vmdk_parent_open(bs
);
973 s
->cid
= vmdk_read_cid(bs
, 0);
974 s
->parent_cid
= vmdk_read_cid(bs
, 1);
975 qemu_co_mutex_init(&s
->lock
);
977 /* Disable migration when VMDK images are used */
978 error_setg(&s
->migration_blocker
, "The vmdk format used by node '%s' "
979 "does not support live migration",
980 bdrv_get_device_or_node_name(bs
));
981 migrate_add_blocker(s
->migration_blocker
);
987 g_free(s
->create_type
);
988 s
->create_type
= NULL
;
989 vmdk_free_extents(bs
);
994 static void vmdk_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
996 BDRVVmdkState
*s
= bs
->opaque
;
999 for (i
= 0; i
< s
->num_extents
; i
++) {
1000 if (!s
->extents
[i
].flat
) {
1001 bs
->bl
.write_zeroes_alignment
=
1002 MAX(bs
->bl
.write_zeroes_alignment
,
1003 s
->extents
[i
].cluster_sectors
);
1011 * Copy backing file's cluster that covers @sector_num, otherwise write zero,
1012 * to the cluster at @cluster_sector_num.
1014 * If @skip_start_sector < @skip_end_sector, the relative range
1015 * [@skip_start_sector, @skip_end_sector) is not copied or written, and leave
1016 * it for call to write user data in the request.
1018 static int get_whole_cluster(BlockDriverState
*bs
,
1020 uint64_t cluster_offset
,
1022 uint64_t skip_start_bytes
,
1023 uint64_t skip_end_bytes
)
1026 int64_t cluster_bytes
;
1027 uint8_t *whole_grain
;
1029 /* For COW, align request sector_num to cluster start */
1030 cluster_bytes
= extent
->cluster_sectors
<< BDRV_SECTOR_BITS
;
1031 offset
= QEMU_ALIGN_DOWN(offset
, cluster_bytes
);
1032 whole_grain
= qemu_blockalign(bs
, cluster_bytes
);
1035 memset(whole_grain
, 0, skip_start_bytes
);
1036 memset(whole_grain
+ skip_end_bytes
, 0, cluster_bytes
- skip_end_bytes
);
1039 assert(skip_end_bytes
<= cluster_bytes
);
1040 /* we will be here if it's first write on non-exist grain(cluster).
1041 * try to read from parent image, if exist */
1042 if (bs
->backing
&& !vmdk_is_cid_valid(bs
)) {
1047 /* Read backing data before skip range */
1048 if (skip_start_bytes
> 0) {
1050 ret
= bdrv_pread(bs
->backing
->bs
, offset
, whole_grain
,
1057 ret
= bdrv_pwrite(extent
->file
->bs
, cluster_offset
, whole_grain
,
1064 /* Read backing data after skip range */
1065 if (skip_end_bytes
< cluster_bytes
) {
1067 ret
= bdrv_pread(bs
->backing
->bs
, offset
+ skip_end_bytes
,
1068 whole_grain
+ skip_end_bytes
,
1069 cluster_bytes
- skip_end_bytes
);
1075 ret
= bdrv_pwrite(extent
->file
->bs
, cluster_offset
+ skip_end_bytes
,
1076 whole_grain
+ skip_end_bytes
,
1077 cluster_bytes
- skip_end_bytes
);
1086 qemu_vfree(whole_grain
);
1090 static int vmdk_L2update(VmdkExtent
*extent
, VmdkMetaData
*m_data
,
1093 offset
= cpu_to_le32(offset
);
1094 /* update L2 table */
1095 if (bdrv_pwrite_sync(
1097 ((int64_t)m_data
->l2_offset
* 512)
1098 + (m_data
->l2_index
* sizeof(offset
)),
1099 &offset
, sizeof(offset
)) < 0) {
1102 /* update backup L2 table */
1103 if (extent
->l1_backup_table_offset
!= 0) {
1104 m_data
->l2_offset
= extent
->l1_backup_table
[m_data
->l1_index
];
1105 if (bdrv_pwrite_sync(
1107 ((int64_t)m_data
->l2_offset
* 512)
1108 + (m_data
->l2_index
* sizeof(offset
)),
1109 &offset
, sizeof(offset
)) < 0) {
1113 if (m_data
->l2_cache_entry
) {
1114 *m_data
->l2_cache_entry
= offset
;
1121 * get_cluster_offset
1123 * Look up cluster offset in extent file by sector number, and store in
1126 * For flat extents, the start offset as parsed from the description file is
1129 * For sparse extents, look up in L1, L2 table. If allocate is true, return an
1130 * offset for a new cluster and update L2 cache. If there is a backing file,
1131 * COW is done before returning; otherwise, zeroes are written to the allocated
1132 * cluster. Both COW and zero writing skips the sector range
1133 * [@skip_start_sector, @skip_end_sector) passed in by caller, because caller
1134 * has new data to write there.
1136 * Returns: VMDK_OK if cluster exists and mapped in the image.
1137 * VMDK_UNALLOC if cluster is not mapped and @allocate is false.
1138 * VMDK_ERROR if failed.
1140 static int get_cluster_offset(BlockDriverState
*bs
,
1142 VmdkMetaData
*m_data
,
1145 uint64_t *cluster_offset
,
1146 uint64_t skip_start_bytes
,
1147 uint64_t skip_end_bytes
)
1149 unsigned int l1_index
, l2_offset
, l2_index
;
1150 int min_index
, i
, j
;
1151 uint32_t min_count
, *l2_table
;
1152 bool zeroed
= false;
1154 int64_t cluster_sector
;
1160 *cluster_offset
= extent
->flat_start_offset
;
1164 offset
-= (extent
->end_sector
- extent
->sectors
) * SECTOR_SIZE
;
1165 l1_index
= (offset
>> 9) / extent
->l1_entry_sectors
;
1166 if (l1_index
>= extent
->l1_size
) {
1169 l2_offset
= extent
->l1_table
[l1_index
];
1171 return VMDK_UNALLOC
;
1173 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
1174 if (l2_offset
== extent
->l2_cache_offsets
[i
]) {
1175 /* increment the hit count */
1176 if (++extent
->l2_cache_counts
[i
] == 0xffffffff) {
1177 for (j
= 0; j
< L2_CACHE_SIZE
; j
++) {
1178 extent
->l2_cache_counts
[j
] >>= 1;
1181 l2_table
= extent
->l2_cache
+ (i
* extent
->l2_size
);
1185 /* not found: load a new entry in the least used one */
1187 min_count
= 0xffffffff;
1188 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
1189 if (extent
->l2_cache_counts
[i
] < min_count
) {
1190 min_count
= extent
->l2_cache_counts
[i
];
1194 l2_table
= extent
->l2_cache
+ (min_index
* extent
->l2_size
);
1197 (int64_t)l2_offset
* 512,
1199 extent
->l2_size
* sizeof(uint32_t)
1200 ) != extent
->l2_size
* sizeof(uint32_t)) {
1204 extent
->l2_cache_offsets
[min_index
] = l2_offset
;
1205 extent
->l2_cache_counts
[min_index
] = 1;
1207 l2_index
= ((offset
>> 9) / extent
->cluster_sectors
) % extent
->l2_size
;
1208 cluster_sector
= le32_to_cpu(l2_table
[l2_index
]);
1212 m_data
->l1_index
= l1_index
;
1213 m_data
->l2_index
= l2_index
;
1214 m_data
->l2_offset
= l2_offset
;
1215 m_data
->l2_cache_entry
= &l2_table
[l2_index
];
1217 if (extent
->has_zero_grain
&& cluster_sector
== VMDK_GTE_ZEROED
) {
1221 if (!cluster_sector
|| zeroed
) {
1223 return zeroed
? VMDK_ZEROED
: VMDK_UNALLOC
;
1226 cluster_sector
= extent
->next_cluster_sector
;
1227 extent
->next_cluster_sector
+= extent
->cluster_sectors
;
1229 /* First of all we write grain itself, to avoid race condition
1230 * that may to corrupt the image.
1231 * This problem may occur because of insufficient space on host disk
1232 * or inappropriate VM shutdown.
1234 ret
= get_whole_cluster(bs
, extent
, cluster_sector
* BDRV_SECTOR_SIZE
,
1235 offset
, skip_start_bytes
, skip_end_bytes
);
1240 *cluster_offset
= cluster_sector
<< BDRV_SECTOR_BITS
;
1244 static VmdkExtent
*find_extent(BDRVVmdkState
*s
,
1245 int64_t sector_num
, VmdkExtent
*start_hint
)
1247 VmdkExtent
*extent
= start_hint
;
1250 extent
= &s
->extents
[0];
1252 while (extent
< &s
->extents
[s
->num_extents
]) {
1253 if (sector_num
< extent
->end_sector
) {
1261 static inline uint64_t vmdk_find_offset_in_cluster(VmdkExtent
*extent
,
1264 uint64_t offset_in_cluster
, extent_begin_offset
, extent_relative_offset
;
1265 uint64_t cluster_size
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
;
1267 extent_begin_offset
=
1268 (extent
->end_sector
- extent
->sectors
) * BDRV_SECTOR_SIZE
;
1269 extent_relative_offset
= offset
- extent_begin_offset
;
1270 offset_in_cluster
= extent_relative_offset
% cluster_size
;
1272 return offset_in_cluster
;
1275 static inline uint64_t vmdk_find_index_in_cluster(VmdkExtent
*extent
,
1279 offset
= vmdk_find_offset_in_cluster(extent
, sector_num
* BDRV_SECTOR_SIZE
);
1280 return offset
/ BDRV_SECTOR_SIZE
;
1283 static int64_t coroutine_fn
vmdk_co_get_block_status(BlockDriverState
*bs
,
1284 int64_t sector_num
, int nb_sectors
, int *pnum
, BlockDriverState
**file
)
1286 BDRVVmdkState
*s
= bs
->opaque
;
1287 int64_t index_in_cluster
, n
, ret
;
1291 extent
= find_extent(s
, sector_num
, NULL
);
1295 qemu_co_mutex_lock(&s
->lock
);
1296 ret
= get_cluster_offset(bs
, extent
, NULL
,
1297 sector_num
* 512, false, &offset
,
1299 qemu_co_mutex_unlock(&s
->lock
);
1301 index_in_cluster
= vmdk_find_index_in_cluster(extent
, sector_num
);
1310 ret
= BDRV_BLOCK_ZERO
;
1313 ret
= BDRV_BLOCK_DATA
;
1314 if (!extent
->compressed
) {
1315 ret
|= BDRV_BLOCK_OFFSET_VALID
;
1316 ret
|= (offset
+ (index_in_cluster
<< BDRV_SECTOR_BITS
))
1317 & BDRV_BLOCK_OFFSET_MASK
;
1319 *file
= extent
->file
->bs
;
1323 n
= extent
->cluster_sectors
- index_in_cluster
;
1324 if (n
> nb_sectors
) {
1331 static int vmdk_write_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1332 int64_t offset_in_cluster
, QEMUIOVector
*qiov
,
1333 uint64_t qiov_offset
, uint64_t n_bytes
,
1337 VmdkGrainMarker
*data
= NULL
;
1339 QEMUIOVector local_qiov
;
1341 int64_t write_offset
;
1342 int64_t write_end_sector
;
1344 if (extent
->compressed
) {
1345 void *compressed_data
;
1347 if (!extent
->has_marker
) {
1351 buf_len
= (extent
->cluster_sectors
<< 9) * 2;
1352 data
= g_malloc(buf_len
+ sizeof(VmdkGrainMarker
));
1354 compressed_data
= g_malloc(n_bytes
);
1355 qemu_iovec_to_buf(qiov
, qiov_offset
, compressed_data
, n_bytes
);
1356 ret
= compress(data
->data
, &buf_len
, compressed_data
, n_bytes
);
1357 g_free(compressed_data
);
1359 if (ret
!= Z_OK
|| buf_len
== 0) {
1364 data
->lba
= offset
>> BDRV_SECTOR_BITS
;
1365 data
->size
= buf_len
;
1367 n_bytes
= buf_len
+ sizeof(VmdkGrainMarker
);
1368 iov
= (struct iovec
) {
1372 qemu_iovec_init_external(&local_qiov
, &iov
, 1);
1374 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1375 qemu_iovec_concat(&local_qiov
, qiov
, qiov_offset
, n_bytes
);
1378 write_offset
= cluster_offset
+ offset_in_cluster
,
1379 ret
= bdrv_co_pwritev(extent
->file
->bs
, write_offset
, n_bytes
,
1382 write_end_sector
= DIV_ROUND_UP(write_offset
+ n_bytes
, BDRV_SECTOR_SIZE
);
1384 if (extent
->compressed
) {
1385 extent
->next_cluster_sector
= write_end_sector
;
1387 extent
->next_cluster_sector
= MAX(extent
->next_cluster_sector
,
1397 if (!extent
->compressed
) {
1398 qemu_iovec_destroy(&local_qiov
);
1403 static int vmdk_read_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1404 int64_t offset_in_cluster
, QEMUIOVector
*qiov
,
1408 int cluster_bytes
, buf_bytes
;
1409 uint8_t *cluster_buf
, *compressed_data
;
1410 uint8_t *uncomp_buf
;
1412 VmdkGrainMarker
*marker
;
1416 if (!extent
->compressed
) {
1417 ret
= bdrv_co_preadv(extent
->file
->bs
,
1418 cluster_offset
+ offset_in_cluster
, bytes
,
1425 cluster_bytes
= extent
->cluster_sectors
* 512;
1426 /* Read two clusters in case GrainMarker + compressed data > one cluster */
1427 buf_bytes
= cluster_bytes
* 2;
1428 cluster_buf
= g_malloc(buf_bytes
);
1429 uncomp_buf
= g_malloc(cluster_bytes
);
1430 ret
= bdrv_pread(extent
->file
->bs
,
1432 cluster_buf
, buf_bytes
);
1436 compressed_data
= cluster_buf
;
1437 buf_len
= cluster_bytes
;
1438 data_len
= cluster_bytes
;
1439 if (extent
->has_marker
) {
1440 marker
= (VmdkGrainMarker
*)cluster_buf
;
1441 compressed_data
= marker
->data
;
1442 data_len
= le32_to_cpu(marker
->size
);
1444 if (!data_len
|| data_len
> buf_bytes
) {
1448 ret
= uncompress(uncomp_buf
, &buf_len
, compressed_data
, data_len
);
1454 if (offset_in_cluster
< 0 ||
1455 offset_in_cluster
+ bytes
> buf_len
) {
1459 qemu_iovec_from_buf(qiov
, 0, uncomp_buf
+ offset_in_cluster
, bytes
);
1464 g_free(cluster_buf
);
1468 static int coroutine_fn
1469 vmdk_co_preadv(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
1470 QEMUIOVector
*qiov
, int flags
)
1472 BDRVVmdkState
*s
= bs
->opaque
;
1474 uint64_t n_bytes
, offset_in_cluster
;
1475 VmdkExtent
*extent
= NULL
;
1476 QEMUIOVector local_qiov
;
1477 uint64_t cluster_offset
;
1478 uint64_t bytes_done
= 0;
1480 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1481 qemu_co_mutex_lock(&s
->lock
);
1484 extent
= find_extent(s
, offset
>> BDRV_SECTOR_BITS
, extent
);
1489 ret
= get_cluster_offset(bs
, extent
, NULL
,
1490 offset
, false, &cluster_offset
, 0, 0);
1491 offset_in_cluster
= vmdk_find_offset_in_cluster(extent
, offset
);
1493 n_bytes
= MIN(bytes
, extent
->cluster_sectors
* BDRV_SECTOR_SIZE
1494 - offset_in_cluster
);
1496 if (ret
!= VMDK_OK
) {
1497 /* if not allocated, try to read from parent image, if exist */
1498 if (bs
->backing
&& ret
!= VMDK_ZEROED
) {
1499 if (!vmdk_is_cid_valid(bs
)) {
1504 qemu_iovec_reset(&local_qiov
);
1505 qemu_iovec_concat(&local_qiov
, qiov
, bytes_done
, n_bytes
);
1507 ret
= bdrv_co_preadv(bs
->backing
->bs
, offset
, n_bytes
,
1513 qemu_iovec_memset(qiov
, bytes_done
, 0, n_bytes
);
1516 qemu_iovec_reset(&local_qiov
);
1517 qemu_iovec_concat(&local_qiov
, qiov
, bytes_done
, n_bytes
);
1519 ret
= vmdk_read_extent(extent
, cluster_offset
, offset_in_cluster
,
1520 &local_qiov
, n_bytes
);
1527 bytes_done
+= n_bytes
;
1532 qemu_co_mutex_unlock(&s
->lock
);
1533 qemu_iovec_destroy(&local_qiov
);
1540 * @zeroed: buf is ignored (data is zero), use zeroed_grain GTE feature
1541 * if possible, otherwise return -ENOTSUP.
1542 * @zero_dry_run: used for zeroed == true only, don't update L2 table, just try
1543 * with each cluster. By dry run we can find if the zero write
1544 * is possible without modifying image data.
1546 * Returns: error code with 0 for success.
1548 static int vmdk_pwritev(BlockDriverState
*bs
, uint64_t offset
,
1549 uint64_t bytes
, QEMUIOVector
*qiov
,
1550 bool zeroed
, bool zero_dry_run
)
1552 BDRVVmdkState
*s
= bs
->opaque
;
1553 VmdkExtent
*extent
= NULL
;
1555 int64_t offset_in_cluster
, n_bytes
;
1556 uint64_t cluster_offset
;
1557 uint64_t bytes_done
= 0;
1558 VmdkMetaData m_data
;
1560 if (DIV_ROUND_UP(offset
, BDRV_SECTOR_SIZE
) > bs
->total_sectors
) {
1561 error_report("Wrong offset: offset=0x%" PRIx64
1562 " total_sectors=0x%" PRIx64
,
1563 offset
, bs
->total_sectors
);
1568 extent
= find_extent(s
, offset
>> BDRV_SECTOR_BITS
, extent
);
1572 offset_in_cluster
= vmdk_find_offset_in_cluster(extent
, offset
);
1573 n_bytes
= MIN(bytes
, extent
->cluster_sectors
* BDRV_SECTOR_SIZE
1574 - offset_in_cluster
);
1576 ret
= get_cluster_offset(bs
, extent
, &m_data
, offset
,
1577 !(extent
->compressed
|| zeroed
),
1578 &cluster_offset
, offset_in_cluster
,
1579 offset_in_cluster
+ n_bytes
);
1580 if (extent
->compressed
) {
1581 if (ret
== VMDK_OK
) {
1582 /* Refuse write to allocated cluster for streamOptimized */
1583 error_report("Could not write to allocated cluster"
1584 " for streamOptimized");
1588 ret
= get_cluster_offset(bs
, extent
, &m_data
, offset
,
1589 true, &cluster_offset
, 0, 0);
1592 if (ret
== VMDK_ERROR
) {
1596 /* Do zeroed write, buf is ignored */
1597 if (extent
->has_zero_grain
&&
1598 offset_in_cluster
== 0 &&
1599 n_bytes
>= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
) {
1600 n_bytes
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
;
1601 if (!zero_dry_run
) {
1602 /* update L2 tables */
1603 if (vmdk_L2update(extent
, &m_data
, VMDK_GTE_ZEROED
)
1612 ret
= vmdk_write_extent(extent
, cluster_offset
, offset_in_cluster
,
1613 qiov
, bytes_done
, n_bytes
, offset
);
1618 /* update L2 tables */
1619 if (vmdk_L2update(extent
, &m_data
,
1620 cluster_offset
>> BDRV_SECTOR_BITS
)
1628 bytes_done
+= n_bytes
;
1630 /* update CID on the first write every time the virtual disk is
1632 if (!s
->cid_updated
) {
1633 ret
= vmdk_write_cid(bs
, g_random_int());
1637 s
->cid_updated
= true;
1643 static int coroutine_fn
1644 vmdk_co_pwritev(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
1645 QEMUIOVector
*qiov
, int flags
)
1648 BDRVVmdkState
*s
= bs
->opaque
;
1649 qemu_co_mutex_lock(&s
->lock
);
1650 ret
= vmdk_pwritev(bs
, offset
, bytes
, qiov
, false, false);
1651 qemu_co_mutex_unlock(&s
->lock
);
1655 typedef struct VmdkWriteCompressedCo
{
1656 BlockDriverState
*bs
;
1661 } VmdkWriteCompressedCo
;
1663 static void vmdk_co_write_compressed(void *opaque
)
1665 VmdkWriteCompressedCo
*co
= opaque
;
1666 QEMUIOVector local_qiov
;
1667 uint64_t offset
= co
->sector_num
* BDRV_SECTOR_SIZE
;
1668 uint64_t bytes
= co
->nb_sectors
* BDRV_SECTOR_SIZE
;
1670 struct iovec iov
= (struct iovec
) {
1671 .iov_base
= (uint8_t*) co
->buf
,
1674 qemu_iovec_init_external(&local_qiov
, &iov
, 1);
1676 co
->ret
= vmdk_pwritev(co
->bs
, offset
, bytes
, &local_qiov
, false, false);
1679 static int vmdk_write_compressed(BlockDriverState
*bs
,
1684 BDRVVmdkState
*s
= bs
->opaque
;
1686 if (s
->num_extents
== 1 && s
->extents
[0].compressed
) {
1688 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
1689 VmdkWriteCompressedCo data
= {
1691 .sector_num
= sector_num
,
1693 .nb_sectors
= nb_sectors
,
1694 .ret
= -EINPROGRESS
,
1696 co
= qemu_coroutine_create(vmdk_co_write_compressed
);
1697 qemu_coroutine_enter(co
, &data
);
1698 while (data
.ret
== -EINPROGRESS
) {
1699 aio_poll(aio_context
, true);
1707 static int coroutine_fn
vmdk_co_write_zeroes(BlockDriverState
*bs
,
1710 BdrvRequestFlags flags
)
1713 BDRVVmdkState
*s
= bs
->opaque
;
1714 uint64_t offset
= sector_num
* BDRV_SECTOR_SIZE
;
1715 uint64_t bytes
= nb_sectors
* BDRV_SECTOR_SIZE
;
1717 qemu_co_mutex_lock(&s
->lock
);
1718 /* write zeroes could fail if sectors not aligned to cluster, test it with
1719 * dry_run == true before really updating image */
1720 ret
= vmdk_pwritev(bs
, offset
, bytes
, NULL
, true, true);
1722 ret
= vmdk_pwritev(bs
, offset
, bytes
, NULL
, true, false);
1724 qemu_co_mutex_unlock(&s
->lock
);
1728 static int vmdk_create_extent(const char *filename
, int64_t filesize
,
1729 bool flat
, bool compress
, bool zeroed_grain
,
1730 QemuOpts
*opts
, Error
**errp
)
1733 BlockBackend
*blk
= NULL
;
1735 Error
*local_err
= NULL
;
1736 uint32_t tmp
, magic
, grains
, gd_sectors
, gt_size
, gt_count
;
1737 uint32_t *gd_buf
= NULL
;
1740 ret
= bdrv_create_file(filename
, opts
, &local_err
);
1742 error_propagate(errp
, local_err
);
1746 blk
= blk_new_open(filename
, NULL
, NULL
,
1747 BDRV_O_RDWR
| BDRV_O_PROTOCOL
, &local_err
);
1749 error_propagate(errp
, local_err
);
1754 blk_set_allow_write_beyond_eof(blk
, true);
1757 ret
= blk_truncate(blk
, filesize
);
1759 error_setg_errno(errp
, -ret
, "Could not truncate file");
1763 magic
= cpu_to_be32(VMDK4_MAGIC
);
1764 memset(&header
, 0, sizeof(header
));
1767 } else if (zeroed_grain
) {
1772 header
.flags
= VMDK4_FLAG_RGD
| VMDK4_FLAG_NL_DETECT
1773 | (compress
? VMDK4_FLAG_COMPRESS
| VMDK4_FLAG_MARKER
: 0)
1774 | (zeroed_grain
? VMDK4_FLAG_ZERO_GRAIN
: 0);
1775 header
.compressAlgorithm
= compress
? VMDK4_COMPRESSION_DEFLATE
: 0;
1776 header
.capacity
= filesize
/ BDRV_SECTOR_SIZE
;
1777 header
.granularity
= 128;
1778 header
.num_gtes_per_gt
= BDRV_SECTOR_SIZE
;
1780 grains
= DIV_ROUND_UP(filesize
/ BDRV_SECTOR_SIZE
, header
.granularity
);
1781 gt_size
= DIV_ROUND_UP(header
.num_gtes_per_gt
* sizeof(uint32_t),
1783 gt_count
= DIV_ROUND_UP(grains
, header
.num_gtes_per_gt
);
1784 gd_sectors
= DIV_ROUND_UP(gt_count
* sizeof(uint32_t), BDRV_SECTOR_SIZE
);
1786 header
.desc_offset
= 1;
1787 header
.desc_size
= 20;
1788 header
.rgd_offset
= header
.desc_offset
+ header
.desc_size
;
1789 header
.gd_offset
= header
.rgd_offset
+ gd_sectors
+ (gt_size
* gt_count
);
1790 header
.grain_offset
=
1791 ROUND_UP(header
.gd_offset
+ gd_sectors
+ (gt_size
* gt_count
),
1792 header
.granularity
);
1793 /* swap endianness for all header fields */
1794 header
.version
= cpu_to_le32(header
.version
);
1795 header
.flags
= cpu_to_le32(header
.flags
);
1796 header
.capacity
= cpu_to_le64(header
.capacity
);
1797 header
.granularity
= cpu_to_le64(header
.granularity
);
1798 header
.num_gtes_per_gt
= cpu_to_le32(header
.num_gtes_per_gt
);
1799 header
.desc_offset
= cpu_to_le64(header
.desc_offset
);
1800 header
.desc_size
= cpu_to_le64(header
.desc_size
);
1801 header
.rgd_offset
= cpu_to_le64(header
.rgd_offset
);
1802 header
.gd_offset
= cpu_to_le64(header
.gd_offset
);
1803 header
.grain_offset
= cpu_to_le64(header
.grain_offset
);
1804 header
.compressAlgorithm
= cpu_to_le16(header
.compressAlgorithm
);
1806 header
.check_bytes
[0] = 0xa;
1807 header
.check_bytes
[1] = 0x20;
1808 header
.check_bytes
[2] = 0xd;
1809 header
.check_bytes
[3] = 0xa;
1811 /* write all the data */
1812 ret
= blk_pwrite(blk
, 0, &magic
, sizeof(magic
), 0);
1814 error_setg(errp
, QERR_IO_ERROR
);
1817 ret
= blk_pwrite(blk
, sizeof(magic
), &header
, sizeof(header
), 0);
1819 error_setg(errp
, QERR_IO_ERROR
);
1823 ret
= blk_truncate(blk
, le64_to_cpu(header
.grain_offset
) << 9);
1825 error_setg_errno(errp
, -ret
, "Could not truncate file");
1829 /* write grain directory */
1830 gd_buf_size
= gd_sectors
* BDRV_SECTOR_SIZE
;
1831 gd_buf
= g_malloc0(gd_buf_size
);
1832 for (i
= 0, tmp
= le64_to_cpu(header
.rgd_offset
) + gd_sectors
;
1833 i
< gt_count
; i
++, tmp
+= gt_size
) {
1834 gd_buf
[i
] = cpu_to_le32(tmp
);
1836 ret
= blk_pwrite(blk
, le64_to_cpu(header
.rgd_offset
) * BDRV_SECTOR_SIZE
,
1837 gd_buf
, gd_buf_size
, 0);
1839 error_setg(errp
, QERR_IO_ERROR
);
1843 /* write backup grain directory */
1844 for (i
= 0, tmp
= le64_to_cpu(header
.gd_offset
) + gd_sectors
;
1845 i
< gt_count
; i
++, tmp
+= gt_size
) {
1846 gd_buf
[i
] = cpu_to_le32(tmp
);
1848 ret
= blk_pwrite(blk
, le64_to_cpu(header
.gd_offset
) * BDRV_SECTOR_SIZE
,
1849 gd_buf
, gd_buf_size
, 0);
1851 error_setg(errp
, QERR_IO_ERROR
);
1864 static int filename_decompose(const char *filename
, char *path
, char *prefix
,
1865 char *postfix
, size_t buf_len
, Error
**errp
)
1869 if (filename
== NULL
|| !strlen(filename
)) {
1870 error_setg(errp
, "No filename provided");
1873 p
= strrchr(filename
, '/');
1875 p
= strrchr(filename
, '\\');
1878 p
= strrchr(filename
, ':');
1882 if (p
- filename
>= buf_len
) {
1885 pstrcpy(path
, p
- filename
+ 1, filename
);
1890 q
= strrchr(p
, '.');
1892 pstrcpy(prefix
, buf_len
, p
);
1895 if (q
- p
>= buf_len
) {
1898 pstrcpy(prefix
, q
- p
+ 1, p
);
1899 pstrcpy(postfix
, buf_len
, q
);
1904 static int vmdk_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
1907 BlockBackend
*new_blk
= NULL
;
1908 Error
*local_err
= NULL
;
1910 int64_t total_size
= 0, filesize
;
1911 char *adapter_type
= NULL
;
1912 char *backing_file
= NULL
;
1913 char *hw_version
= NULL
;
1916 bool flat
, split
, compress
;
1917 GString
*ext_desc_lines
;
1918 char *path
= g_malloc0(PATH_MAX
);
1919 char *prefix
= g_malloc0(PATH_MAX
);
1920 char *postfix
= g_malloc0(PATH_MAX
);
1921 char *desc_line
= g_malloc0(BUF_SIZE
);
1922 char *ext_filename
= g_malloc0(PATH_MAX
);
1923 char *desc_filename
= g_malloc0(PATH_MAX
);
1924 const int64_t split_size
= 0x80000000; /* VMDK has constant split size */
1925 const char *desc_extent_line
;
1926 char *parent_desc_line
= g_malloc0(BUF_SIZE
);
1927 uint32_t parent_cid
= 0xffffffff;
1928 uint32_t number_heads
= 16;
1929 bool zeroed_grain
= false;
1930 uint32_t desc_offset
= 0, desc_len
;
1931 const char desc_template
[] =
1932 "# Disk DescriptorFile\n"
1935 "parentCID=%" PRIx32
"\n"
1936 "createType=\"%s\"\n"
1939 "# Extent description\n"
1942 "# The Disk Data Base\n"
1945 "ddb.virtualHWVersion = \"%s\"\n"
1946 "ddb.geometry.cylinders = \"%" PRId64
"\"\n"
1947 "ddb.geometry.heads = \"%" PRIu32
"\"\n"
1948 "ddb.geometry.sectors = \"63\"\n"
1949 "ddb.adapterType = \"%s\"\n";
1951 ext_desc_lines
= g_string_new(NULL
);
1953 if (filename_decompose(filename
, path
, prefix
, postfix
, PATH_MAX
, errp
)) {
1957 /* Read out options */
1958 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
1960 adapter_type
= qemu_opt_get_del(opts
, BLOCK_OPT_ADAPTER_TYPE
);
1961 backing_file
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
1962 hw_version
= qemu_opt_get_del(opts
, BLOCK_OPT_HWVERSION
);
1963 if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_COMPAT6
, false)) {
1964 if (strcmp(hw_version
, "undefined")) {
1966 "compat6 cannot be enabled with hwversion set");
1971 hw_version
= g_strdup("6");
1973 if (strcmp(hw_version
, "undefined") == 0) {
1975 hw_version
= g_strdup("4");
1977 fmt
= qemu_opt_get_del(opts
, BLOCK_OPT_SUBFMT
);
1978 if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_ZEROED_GRAIN
, false)) {
1979 zeroed_grain
= true;
1982 if (!adapter_type
) {
1983 adapter_type
= g_strdup("ide");
1984 } else if (strcmp(adapter_type
, "ide") &&
1985 strcmp(adapter_type
, "buslogic") &&
1986 strcmp(adapter_type
, "lsilogic") &&
1987 strcmp(adapter_type
, "legacyESX")) {
1988 error_setg(errp
, "Unknown adapter type: '%s'", adapter_type
);
1992 if (strcmp(adapter_type
, "ide") != 0) {
1993 /* that's the number of heads with which vmware operates when
1994 creating, exporting, etc. vmdk files with a non-ide adapter type */
1998 /* Default format to monolithicSparse */
1999 fmt
= g_strdup("monolithicSparse");
2000 } else if (strcmp(fmt
, "monolithicFlat") &&
2001 strcmp(fmt
, "monolithicSparse") &&
2002 strcmp(fmt
, "twoGbMaxExtentSparse") &&
2003 strcmp(fmt
, "twoGbMaxExtentFlat") &&
2004 strcmp(fmt
, "streamOptimized")) {
2005 error_setg(errp
, "Unknown subformat: '%s'", fmt
);
2009 split
= !(strcmp(fmt
, "twoGbMaxExtentFlat") &&
2010 strcmp(fmt
, "twoGbMaxExtentSparse"));
2011 flat
= !(strcmp(fmt
, "monolithicFlat") &&
2012 strcmp(fmt
, "twoGbMaxExtentFlat"));
2013 compress
= !strcmp(fmt
, "streamOptimized");
2015 desc_extent_line
= "RW %" PRId64
" FLAT \"%s\" 0\n";
2017 desc_extent_line
= "RW %" PRId64
" SPARSE \"%s\"\n";
2019 if (flat
&& backing_file
) {
2020 error_setg(errp
, "Flat image can't have backing file");
2024 if (flat
&& zeroed_grain
) {
2025 error_setg(errp
, "Flat image can't enable zeroed grain");
2031 char *full_backing
= g_new0(char, PATH_MAX
);
2032 bdrv_get_full_backing_filename_from_filename(filename
, backing_file
,
2033 full_backing
, PATH_MAX
,
2036 g_free(full_backing
);
2037 error_propagate(errp
, local_err
);
2042 blk
= blk_new_open(full_backing
, NULL
, NULL
,
2043 BDRV_O_NO_BACKING
, errp
);
2044 g_free(full_backing
);
2049 if (strcmp(blk_bs(blk
)->drv
->format_name
, "vmdk")) {
2054 parent_cid
= vmdk_read_cid(blk_bs(blk
), 0);
2056 snprintf(parent_desc_line
, BUF_SIZE
,
2057 "parentFileNameHint=\"%s\"", backing_file
);
2060 /* Create extents */
2061 filesize
= total_size
;
2062 while (filesize
> 0) {
2063 int64_t size
= filesize
;
2065 if (split
&& size
> split_size
) {
2069 snprintf(desc_filename
, PATH_MAX
, "%s-%c%03d%s",
2070 prefix
, flat
? 'f' : 's', ++idx
, postfix
);
2072 snprintf(desc_filename
, PATH_MAX
, "%s-flat%s", prefix
, postfix
);
2074 snprintf(desc_filename
, PATH_MAX
, "%s%s", prefix
, postfix
);
2076 snprintf(ext_filename
, PATH_MAX
, "%s%s", path
, desc_filename
);
2078 if (vmdk_create_extent(ext_filename
, size
,
2079 flat
, compress
, zeroed_grain
, opts
, errp
)) {
2085 /* Format description line */
2086 snprintf(desc_line
, BUF_SIZE
,
2087 desc_extent_line
, size
/ BDRV_SECTOR_SIZE
, desc_filename
);
2088 g_string_append(ext_desc_lines
, desc_line
);
2090 /* generate descriptor file */
2091 desc
= g_strdup_printf(desc_template
,
2096 ext_desc_lines
->str
,
2099 (int64_t)(63 * number_heads
* BDRV_SECTOR_SIZE
),
2102 desc_len
= strlen(desc
);
2103 /* the descriptor offset = 0x200 */
2104 if (!split
&& !flat
) {
2105 desc_offset
= 0x200;
2107 ret
= bdrv_create_file(filename
, opts
, &local_err
);
2109 error_propagate(errp
, local_err
);
2114 new_blk
= blk_new_open(filename
, NULL
, NULL
,
2115 BDRV_O_RDWR
| BDRV_O_PROTOCOL
, &local_err
);
2116 if (new_blk
== NULL
) {
2117 error_propagate(errp
, local_err
);
2122 blk_set_allow_write_beyond_eof(new_blk
, true);
2124 ret
= blk_pwrite(new_blk
, desc_offset
, desc
, desc_len
, 0);
2126 error_setg_errno(errp
, -ret
, "Could not write description");
2129 /* bdrv_pwrite write padding zeros to align to sector, we don't need that
2130 * for description file */
2131 if (desc_offset
== 0) {
2132 ret
= blk_truncate(new_blk
, desc_len
);
2134 error_setg_errno(errp
, -ret
, "Could not truncate file");
2141 g_free(adapter_type
);
2142 g_free(backing_file
);
2150 g_free(ext_filename
);
2151 g_free(desc_filename
);
2152 g_free(parent_desc_line
);
2153 g_string_free(ext_desc_lines
, true);
2157 static void vmdk_close(BlockDriverState
*bs
)
2159 BDRVVmdkState
*s
= bs
->opaque
;
2161 vmdk_free_extents(bs
);
2162 g_free(s
->create_type
);
2164 migrate_del_blocker(s
->migration_blocker
);
2165 error_free(s
->migration_blocker
);
2168 static coroutine_fn
int vmdk_co_flush(BlockDriverState
*bs
)
2170 BDRVVmdkState
*s
= bs
->opaque
;
2174 for (i
= 0; i
< s
->num_extents
; i
++) {
2175 err
= bdrv_co_flush(s
->extents
[i
].file
->bs
);
2183 static int64_t vmdk_get_allocated_file_size(BlockDriverState
*bs
)
2188 BDRVVmdkState
*s
= bs
->opaque
;
2190 ret
= bdrv_get_allocated_file_size(bs
->file
->bs
);
2194 for (i
= 0; i
< s
->num_extents
; i
++) {
2195 if (s
->extents
[i
].file
== bs
->file
) {
2198 r
= bdrv_get_allocated_file_size(s
->extents
[i
].file
->bs
);
2207 static int vmdk_has_zero_init(BlockDriverState
*bs
)
2210 BDRVVmdkState
*s
= bs
->opaque
;
2212 /* If has a flat extent and its underlying storage doesn't have zero init,
2214 for (i
= 0; i
< s
->num_extents
; i
++) {
2215 if (s
->extents
[i
].flat
) {
2216 if (!bdrv_has_zero_init(s
->extents
[i
].file
->bs
)) {
2224 static ImageInfo
*vmdk_get_extent_info(VmdkExtent
*extent
)
2226 ImageInfo
*info
= g_new0(ImageInfo
, 1);
2228 *info
= (ImageInfo
){
2229 .filename
= g_strdup(extent
->file
->bs
->filename
),
2230 .format
= g_strdup(extent
->type
),
2231 .virtual_size
= extent
->sectors
* BDRV_SECTOR_SIZE
,
2232 .compressed
= extent
->compressed
,
2233 .has_compressed
= extent
->compressed
,
2234 .cluster_size
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
,
2235 .has_cluster_size
= !extent
->flat
,
2241 static int vmdk_check(BlockDriverState
*bs
, BdrvCheckResult
*result
,
2244 BDRVVmdkState
*s
= bs
->opaque
;
2245 VmdkExtent
*extent
= NULL
;
2246 int64_t sector_num
= 0;
2247 int64_t total_sectors
= bdrv_nb_sectors(bs
);
2249 uint64_t cluster_offset
;
2256 if (sector_num
>= total_sectors
) {
2259 extent
= find_extent(s
, sector_num
, extent
);
2262 "ERROR: could not find extent for sector %" PRId64
"\n",
2266 ret
= get_cluster_offset(bs
, extent
, NULL
,
2267 sector_num
<< BDRV_SECTOR_BITS
,
2268 false, &cluster_offset
, 0, 0);
2269 if (ret
== VMDK_ERROR
) {
2271 "ERROR: could not get cluster_offset for sector %"
2272 PRId64
"\n", sector_num
);
2275 if (ret
== VMDK_OK
&&
2276 cluster_offset
>= bdrv_getlength(extent
->file
->bs
))
2279 "ERROR: cluster offset for sector %"
2280 PRId64
" points after EOF\n", sector_num
);
2283 sector_num
+= extent
->cluster_sectors
;
2286 result
->corruptions
++;
2290 static ImageInfoSpecific
*vmdk_get_specific_info(BlockDriverState
*bs
)
2293 BDRVVmdkState
*s
= bs
->opaque
;
2294 ImageInfoSpecific
*spec_info
= g_new0(ImageInfoSpecific
, 1);
2295 ImageInfoList
**next
;
2297 *spec_info
= (ImageInfoSpecific
){
2298 .type
= IMAGE_INFO_SPECIFIC_KIND_VMDK
,
2300 .vmdk
.data
= g_new0(ImageInfoSpecificVmdk
, 1),
2304 *spec_info
->u
.vmdk
.data
= (ImageInfoSpecificVmdk
) {
2305 .create_type
= g_strdup(s
->create_type
),
2307 .parent_cid
= s
->parent_cid
,
2310 next
= &spec_info
->u
.vmdk
.data
->extents
;
2311 for (i
= 0; i
< s
->num_extents
; i
++) {
2312 *next
= g_new0(ImageInfoList
, 1);
2313 (*next
)->value
= vmdk_get_extent_info(&s
->extents
[i
]);
2314 (*next
)->next
= NULL
;
2315 next
= &(*next
)->next
;
2321 static bool vmdk_extents_type_eq(const VmdkExtent
*a
, const VmdkExtent
*b
)
2323 return a
->flat
== b
->flat
&&
2324 a
->compressed
== b
->compressed
&&
2325 (a
->flat
|| a
->cluster_sectors
== b
->cluster_sectors
);
2328 static int vmdk_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
2331 BDRVVmdkState
*s
= bs
->opaque
;
2332 assert(s
->num_extents
);
2334 /* See if we have multiple extents but they have different cases */
2335 for (i
= 1; i
< s
->num_extents
; i
++) {
2336 if (!vmdk_extents_type_eq(&s
->extents
[0], &s
->extents
[i
])) {
2340 bdi
->needs_compressed_writes
= s
->extents
[0].compressed
;
2341 if (!s
->extents
[0].flat
) {
2342 bdi
->cluster_size
= s
->extents
[0].cluster_sectors
<< BDRV_SECTOR_BITS
;
2347 static QemuOptsList vmdk_create_opts
= {
2348 .name
= "vmdk-create-opts",
2349 .head
= QTAILQ_HEAD_INITIALIZER(vmdk_create_opts
.head
),
2352 .name
= BLOCK_OPT_SIZE
,
2353 .type
= QEMU_OPT_SIZE
,
2354 .help
= "Virtual disk size"
2357 .name
= BLOCK_OPT_ADAPTER_TYPE
,
2358 .type
= QEMU_OPT_STRING
,
2359 .help
= "Virtual adapter type, can be one of "
2360 "ide (default), lsilogic, buslogic or legacyESX"
2363 .name
= BLOCK_OPT_BACKING_FILE
,
2364 .type
= QEMU_OPT_STRING
,
2365 .help
= "File name of a base image"
2368 .name
= BLOCK_OPT_COMPAT6
,
2369 .type
= QEMU_OPT_BOOL
,
2370 .help
= "VMDK version 6 image",
2371 .def_value_str
= "off"
2374 .name
= BLOCK_OPT_HWVERSION
,
2375 .type
= QEMU_OPT_STRING
,
2376 .help
= "VMDK hardware version",
2377 .def_value_str
= "undefined"
2380 .name
= BLOCK_OPT_SUBFMT
,
2381 .type
= QEMU_OPT_STRING
,
2383 "VMDK flat extent format, can be one of "
2384 "{monolithicSparse (default) | monolithicFlat | twoGbMaxExtentSparse | twoGbMaxExtentFlat | streamOptimized} "
2387 .name
= BLOCK_OPT_ZEROED_GRAIN
,
2388 .type
= QEMU_OPT_BOOL
,
2389 .help
= "Enable efficient zero writes "
2390 "using the zeroed-grain GTE feature"
2392 { /* end of list */ }
2396 static BlockDriver bdrv_vmdk
= {
2397 .format_name
= "vmdk",
2398 .instance_size
= sizeof(BDRVVmdkState
),
2399 .bdrv_probe
= vmdk_probe
,
2400 .bdrv_open
= vmdk_open
,
2401 .bdrv_check
= vmdk_check
,
2402 .bdrv_reopen_prepare
= vmdk_reopen_prepare
,
2403 .bdrv_co_preadv
= vmdk_co_preadv
,
2404 .bdrv_co_pwritev
= vmdk_co_pwritev
,
2405 .bdrv_write_compressed
= vmdk_write_compressed
,
2406 .bdrv_co_write_zeroes
= vmdk_co_write_zeroes
,
2407 .bdrv_close
= vmdk_close
,
2408 .bdrv_create
= vmdk_create
,
2409 .bdrv_co_flush_to_disk
= vmdk_co_flush
,
2410 .bdrv_co_get_block_status
= vmdk_co_get_block_status
,
2411 .bdrv_get_allocated_file_size
= vmdk_get_allocated_file_size
,
2412 .bdrv_has_zero_init
= vmdk_has_zero_init
,
2413 .bdrv_get_specific_info
= vmdk_get_specific_info
,
2414 .bdrv_refresh_limits
= vmdk_refresh_limits
,
2415 .bdrv_get_info
= vmdk_get_info
,
2417 .supports_backing
= true,
2418 .create_opts
= &vmdk_create_opts
,
2421 static void bdrv_vmdk_init(void)
2423 bdrv_register(&bdrv_vmdk
);
2426 block_init(bdrv_vmdk_init
);