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-common.h"
27 #include "block/block_int.h"
28 #include "qapi/qmp/qerror.h"
29 #include "qemu/error-report.h"
30 #include "qemu/module.h"
31 #include "migration/migration.h"
35 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
36 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
37 #define VMDK4_COMPRESSION_DEFLATE 1
38 #define VMDK4_FLAG_NL_DETECT (1 << 0)
39 #define VMDK4_FLAG_RGD (1 << 1)
40 /* Zeroed-grain enable bit */
41 #define VMDK4_FLAG_ZERO_GRAIN (1 << 2)
42 #define VMDK4_FLAG_COMPRESS (1 << 16)
43 #define VMDK4_FLAG_MARKER (1 << 17)
44 #define VMDK4_GD_AT_END 0xffffffffffffffffULL
46 #define VMDK_GTE_ZEROED 0x1
48 /* VMDK internal error codes */
50 #define VMDK_ERROR (-1)
51 /* Cluster not allocated */
52 #define VMDK_UNALLOC (-2)
53 #define VMDK_ZEROED (-3)
55 #define BLOCK_OPT_ZEROED_GRAIN "zeroed_grain"
60 uint32_t disk_sectors
;
62 uint32_t l1dir_offset
;
64 uint32_t file_sectors
;
67 uint32_t sectors_per_track
;
68 } QEMU_PACKED VMDK3Header
;
77 /* Number of GrainTableEntries per GrainTable */
78 uint32_t num_gtes_per_gt
;
81 uint64_t grain_offset
;
84 uint16_t compressAlgorithm
;
85 } QEMU_PACKED VMDK4Header
;
87 #define L2_CACHE_SIZE 16
89 typedef struct VmdkExtent
{
90 BlockDriverState
*file
;
98 int64_t flat_start_offset
;
99 int64_t l1_table_offset
;
100 int64_t l1_backup_table_offset
;
102 uint32_t *l1_backup_table
;
103 unsigned int l1_size
;
104 uint32_t l1_entry_sectors
;
106 unsigned int l2_size
;
108 uint32_t l2_cache_offsets
[L2_CACHE_SIZE
];
109 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
111 int64_t cluster_sectors
;
112 int64_t next_cluster_sector
;
116 typedef struct BDRVVmdkState
{
118 uint64_t desc_offset
;
124 /* Extent array with num_extents entries, ascend ordered by address */
126 Error
*migration_blocker
;
130 typedef struct VmdkMetaData
{
131 unsigned int l1_index
;
132 unsigned int l2_index
;
133 unsigned int l2_offset
;
135 uint32_t *l2_cache_entry
;
138 typedef struct VmdkGrainMarker
{
142 } QEMU_PACKED VmdkGrainMarker
;
145 MARKER_END_OF_STREAM
= 0,
146 MARKER_GRAIN_TABLE
= 1,
147 MARKER_GRAIN_DIRECTORY
= 2,
151 static int vmdk_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
158 magic
= be32_to_cpu(*(uint32_t *)buf
);
159 if (magic
== VMDK3_MAGIC
||
160 magic
== VMDK4_MAGIC
) {
163 const char *p
= (const char *)buf
;
164 const char *end
= p
+ buf_size
;
167 /* skip comment line */
168 while (p
< end
&& *p
!= '\n') {
175 while (p
< end
&& *p
== ' ') {
178 /* skip '\r' if windows line endings used. */
179 if (p
< end
&& *p
== '\r') {
182 /* only accept blank lines before 'version=' line */
183 if (p
== end
|| *p
!= '\n') {
189 if (end
- p
>= strlen("version=X\n")) {
190 if (strncmp("version=1\n", p
, strlen("version=1\n")) == 0 ||
191 strncmp("version=2\n", p
, strlen("version=2\n")) == 0) {
195 if (end
- p
>= strlen("version=X\r\n")) {
196 if (strncmp("version=1\r\n", p
, strlen("version=1\r\n")) == 0 ||
197 strncmp("version=2\r\n", p
, strlen("version=2\r\n")) == 0) {
207 #define SECTOR_SIZE 512
208 #define DESC_SIZE (20 * SECTOR_SIZE) /* 20 sectors of 512 bytes each */
209 #define BUF_SIZE 4096
210 #define HEADER_SIZE 512 /* first sector of 512 bytes */
212 static void vmdk_free_extents(BlockDriverState
*bs
)
215 BDRVVmdkState
*s
= bs
->opaque
;
218 for (i
= 0; i
< s
->num_extents
; i
++) {
222 g_free(e
->l1_backup_table
);
224 if (e
->file
!= bs
->file
) {
231 static void vmdk_free_last_extent(BlockDriverState
*bs
)
233 BDRVVmdkState
*s
= bs
->opaque
;
235 if (s
->num_extents
== 0) {
239 s
->extents
= g_renew(VmdkExtent
, s
->extents
, s
->num_extents
);
242 static uint32_t vmdk_read_cid(BlockDriverState
*bs
, int parent
)
244 char desc
[DESC_SIZE
];
245 uint32_t cid
= 0xffffffff;
246 const char *p_name
, *cid_str
;
248 BDRVVmdkState
*s
= bs
->opaque
;
251 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
257 cid_str
= "parentCID";
258 cid_str_size
= sizeof("parentCID");
261 cid_str_size
= sizeof("CID");
264 desc
[DESC_SIZE
- 1] = '\0';
265 p_name
= strstr(desc
, cid_str
);
266 if (p_name
!= NULL
) {
267 p_name
+= cid_str_size
;
268 sscanf(p_name
, "%" SCNx32
, &cid
);
274 static int vmdk_write_cid(BlockDriverState
*bs
, uint32_t cid
)
276 char desc
[DESC_SIZE
], tmp_desc
[DESC_SIZE
];
277 char *p_name
, *tmp_str
;
278 BDRVVmdkState
*s
= bs
->opaque
;
281 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
286 desc
[DESC_SIZE
- 1] = '\0';
287 tmp_str
= strstr(desc
, "parentCID");
288 if (tmp_str
== NULL
) {
292 pstrcpy(tmp_desc
, sizeof(tmp_desc
), tmp_str
);
293 p_name
= strstr(desc
, "CID");
294 if (p_name
!= NULL
) {
295 p_name
+= sizeof("CID");
296 snprintf(p_name
, sizeof(desc
) - (p_name
- desc
), "%" PRIx32
"\n", cid
);
297 pstrcat(desc
, sizeof(desc
), tmp_desc
);
300 ret
= bdrv_pwrite_sync(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
308 static int vmdk_is_cid_valid(BlockDriverState
*bs
)
310 BDRVVmdkState
*s
= bs
->opaque
;
311 BlockDriverState
*p_bs
= bs
->backing_hd
;
314 if (!s
->cid_checked
&& p_bs
) {
315 cur_pcid
= vmdk_read_cid(p_bs
, 0);
316 if (s
->parent_cid
!= cur_pcid
) {
321 s
->cid_checked
= true;
326 /* We have nothing to do for VMDK reopen, stubs just return success */
327 static int vmdk_reopen_prepare(BDRVReopenState
*state
,
328 BlockReopenQueue
*queue
, Error
**errp
)
330 assert(state
!= NULL
);
331 assert(state
->bs
!= NULL
);
335 static int vmdk_parent_open(BlockDriverState
*bs
)
338 char desc
[DESC_SIZE
+ 1];
339 BDRVVmdkState
*s
= bs
->opaque
;
342 desc
[DESC_SIZE
] = '\0';
343 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
348 p_name
= strstr(desc
, "parentFileNameHint");
349 if (p_name
!= NULL
) {
352 p_name
+= sizeof("parentFileNameHint") + 1;
353 end_name
= strchr(p_name
, '\"');
354 if (end_name
== NULL
) {
357 if ((end_name
- p_name
) > sizeof(bs
->backing_file
) - 1) {
361 pstrcpy(bs
->backing_file
, end_name
- p_name
+ 1, p_name
);
367 /* Create and append extent to the extent array. Return the added VmdkExtent
368 * address. return NULL if allocation failed. */
369 static int vmdk_add_extent(BlockDriverState
*bs
,
370 BlockDriverState
*file
, bool flat
, int64_t sectors
,
371 int64_t l1_offset
, int64_t l1_backup_offset
,
373 int l2_size
, uint64_t cluster_sectors
,
374 VmdkExtent
**new_extent
,
378 BDRVVmdkState
*s
= bs
->opaque
;
381 if (cluster_sectors
> 0x200000) {
382 /* 0x200000 * 512Bytes = 1GB for one cluster is unrealistic */
383 error_setg(errp
, "Invalid granularity, image may be corrupt");
386 if (l1_size
> 512 * 1024 * 1024) {
387 /* Although with big capacity and small l1_entry_sectors, we can get a
388 * big l1_size, we don't want unbounded value to allocate the table.
389 * Limit it to 512M, which is 16PB for default cluster and L2 table
391 error_setg(errp
, "L1 size too big");
395 nb_sectors
= bdrv_nb_sectors(file
);
396 if (nb_sectors
< 0) {
400 s
->extents
= g_renew(VmdkExtent
, s
->extents
, s
->num_extents
+ 1);
401 extent
= &s
->extents
[s
->num_extents
];
404 memset(extent
, 0, sizeof(VmdkExtent
));
407 extent
->sectors
= sectors
;
408 extent
->l1_table_offset
= l1_offset
;
409 extent
->l1_backup_table_offset
= l1_backup_offset
;
410 extent
->l1_size
= l1_size
;
411 extent
->l1_entry_sectors
= l2_size
* cluster_sectors
;
412 extent
->l2_size
= l2_size
;
413 extent
->cluster_sectors
= flat
? sectors
: cluster_sectors
;
414 extent
->next_cluster_sector
= ROUND_UP(nb_sectors
, cluster_sectors
);
416 if (s
->num_extents
> 1) {
417 extent
->end_sector
= (*(extent
- 1)).end_sector
+ extent
->sectors
;
419 extent
->end_sector
= extent
->sectors
;
421 bs
->total_sectors
= extent
->end_sector
;
423 *new_extent
= extent
;
428 static int vmdk_init_tables(BlockDriverState
*bs
, VmdkExtent
*extent
,
435 /* read the L1 table */
436 l1_size
= extent
->l1_size
* sizeof(uint32_t);
437 extent
->l1_table
= g_try_malloc(l1_size
);
438 if (l1_size
&& extent
->l1_table
== NULL
) {
442 ret
= bdrv_pread(extent
->file
,
443 extent
->l1_table_offset
,
447 error_setg_errno(errp
, -ret
,
448 "Could not read l1 table from extent '%s'",
449 extent
->file
->filename
);
452 for (i
= 0; i
< extent
->l1_size
; i
++) {
453 le32_to_cpus(&extent
->l1_table
[i
]);
456 if (extent
->l1_backup_table_offset
) {
457 extent
->l1_backup_table
= g_try_malloc(l1_size
);
458 if (l1_size
&& extent
->l1_backup_table
== NULL
) {
462 ret
= bdrv_pread(extent
->file
,
463 extent
->l1_backup_table_offset
,
464 extent
->l1_backup_table
,
467 error_setg_errno(errp
, -ret
,
468 "Could not read l1 backup table from extent '%s'",
469 extent
->file
->filename
);
472 for (i
= 0; i
< extent
->l1_size
; i
++) {
473 le32_to_cpus(&extent
->l1_backup_table
[i
]);
478 g_new(uint32_t, extent
->l2_size
* L2_CACHE_SIZE
);
481 g_free(extent
->l1_backup_table
);
483 g_free(extent
->l1_table
);
487 static int vmdk_open_vmfs_sparse(BlockDriverState
*bs
,
488 BlockDriverState
*file
,
489 int flags
, Error
**errp
)
496 ret
= bdrv_pread(file
, sizeof(magic
), &header
, sizeof(header
));
498 error_setg_errno(errp
, -ret
,
499 "Could not read header from file '%s'",
503 ret
= vmdk_add_extent(bs
, file
, false,
504 le32_to_cpu(header
.disk_sectors
),
505 (int64_t)le32_to_cpu(header
.l1dir_offset
) << 9,
507 le32_to_cpu(header
.l1dir_size
),
509 le32_to_cpu(header
.granularity
),
515 ret
= vmdk_init_tables(bs
, extent
, errp
);
517 /* free extent allocated by vmdk_add_extent */
518 vmdk_free_last_extent(bs
);
523 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
, char *buf
,
524 QDict
*options
, Error
**errp
);
526 static char *vmdk_read_desc(BlockDriverState
*file
, uint64_t desc_offset
,
533 size
= bdrv_getlength(file
);
535 error_setg_errno(errp
, -size
, "Could not access file");
540 /* Both descriptor file and sparse image must be much larger than 4
541 * bytes, also callers of vmdk_read_desc want to compare the first 4
542 * bytes with VMDK4_MAGIC, let's error out if less is read. */
543 error_setg(errp
, "File is too small, not a valid image");
547 size
= MIN(size
, (1 << 20) - 1); /* avoid unbounded allocation */
548 buf
= g_malloc(size
+ 1);
550 ret
= bdrv_pread(file
, desc_offset
, buf
, size
);
552 error_setg_errno(errp
, -ret
, "Could not read from file");
561 static int vmdk_open_vmdk4(BlockDriverState
*bs
,
562 BlockDriverState
*file
,
563 int flags
, QDict
*options
, Error
**errp
)
567 uint32_t l1_size
, l1_entry_sectors
;
570 BDRVVmdkState
*s
= bs
->opaque
;
571 int64_t l1_backup_offset
= 0;
573 ret
= bdrv_pread(file
, sizeof(magic
), &header
, sizeof(header
));
575 error_setg_errno(errp
, -ret
,
576 "Could not read header from file '%s'",
580 if (header
.capacity
== 0) {
581 uint64_t desc_offset
= le64_to_cpu(header
.desc_offset
);
583 char *buf
= vmdk_read_desc(file
, desc_offset
<< 9, errp
);
587 ret
= vmdk_open_desc_file(bs
, flags
, buf
, options
, errp
);
593 if (!s
->create_type
) {
594 s
->create_type
= g_strdup("monolithicSparse");
597 if (le64_to_cpu(header
.gd_offset
) == VMDK4_GD_AT_END
) {
599 * The footer takes precedence over the header, so read it in. The
600 * footer starts at offset -1024 from the end: One sector for the
601 * footer, and another one for the end-of-stream marker.
608 uint8_t pad
[512 - 16];
609 } QEMU_PACKED footer_marker
;
613 uint8_t pad
[512 - 4 - sizeof(VMDK4Header
)];
619 uint8_t pad
[512 - 16];
620 } QEMU_PACKED eos_marker
;
621 } QEMU_PACKED footer
;
623 ret
= bdrv_pread(file
,
624 bs
->file
->total_sectors
* 512 - 1536,
625 &footer
, sizeof(footer
));
627 error_setg_errno(errp
, -ret
, "Failed to read footer");
631 /* Some sanity checks for the footer */
632 if (be32_to_cpu(footer
.magic
) != VMDK4_MAGIC
||
633 le32_to_cpu(footer
.footer_marker
.size
) != 0 ||
634 le32_to_cpu(footer
.footer_marker
.type
) != MARKER_FOOTER
||
635 le64_to_cpu(footer
.eos_marker
.val
) != 0 ||
636 le32_to_cpu(footer
.eos_marker
.size
) != 0 ||
637 le32_to_cpu(footer
.eos_marker
.type
) != MARKER_END_OF_STREAM
)
639 error_setg(errp
, "Invalid footer");
643 header
= footer
.header
;
646 if (le32_to_cpu(header
.version
) > 3) {
648 snprintf(buf
, sizeof(buf
), "VMDK version %" PRId32
,
649 le32_to_cpu(header
.version
));
650 error_setg(errp
, QERR_UNKNOWN_BLOCK_FORMAT_FEATURE
,
651 bdrv_get_device_or_node_name(bs
), "vmdk", buf
);
653 } else if (le32_to_cpu(header
.version
) == 3 && (flags
& BDRV_O_RDWR
)) {
654 /* VMware KB 2064959 explains that version 3 added support for
655 * persistent changed block tracking (CBT), and backup software can
656 * read it as version=1 if it doesn't care about the changed area
657 * information. So we are safe to enable read only. */
658 error_setg(errp
, "VMDK version 3 must be read only");
662 if (le32_to_cpu(header
.num_gtes_per_gt
) > 512) {
663 error_setg(errp
, "L2 table size too big");
667 l1_entry_sectors
= le32_to_cpu(header
.num_gtes_per_gt
)
668 * le64_to_cpu(header
.granularity
);
669 if (l1_entry_sectors
== 0) {
670 error_setg(errp
, "L1 entry size is invalid");
673 l1_size
= (le64_to_cpu(header
.capacity
) + l1_entry_sectors
- 1)
675 if (le32_to_cpu(header
.flags
) & VMDK4_FLAG_RGD
) {
676 l1_backup_offset
= le64_to_cpu(header
.rgd_offset
) << 9;
678 if (bdrv_nb_sectors(file
) < le64_to_cpu(header
.grain_offset
)) {
679 error_setg(errp
, "File truncated, expecting at least %" PRId64
" bytes",
680 (int64_t)(le64_to_cpu(header
.grain_offset
)
681 * BDRV_SECTOR_SIZE
));
685 ret
= vmdk_add_extent(bs
, file
, false,
686 le64_to_cpu(header
.capacity
),
687 le64_to_cpu(header
.gd_offset
) << 9,
690 le32_to_cpu(header
.num_gtes_per_gt
),
691 le64_to_cpu(header
.granularity
),
698 le16_to_cpu(header
.compressAlgorithm
) == VMDK4_COMPRESSION_DEFLATE
;
699 if (extent
->compressed
) {
700 g_free(s
->create_type
);
701 s
->create_type
= g_strdup("streamOptimized");
703 extent
->has_marker
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_MARKER
;
704 extent
->version
= le32_to_cpu(header
.version
);
705 extent
->has_zero_grain
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_ZERO_GRAIN
;
706 ret
= vmdk_init_tables(bs
, extent
, errp
);
708 /* free extent allocated by vmdk_add_extent */
709 vmdk_free_last_extent(bs
);
714 /* find an option value out of descriptor file */
715 static int vmdk_parse_description(const char *desc
, const char *opt_name
,
716 char *buf
, int buf_size
)
718 char *opt_pos
, *opt_end
;
719 const char *end
= desc
+ strlen(desc
);
721 opt_pos
= strstr(desc
, opt_name
);
725 /* Skip "=\"" following opt_name */
726 opt_pos
+= strlen(opt_name
) + 2;
727 if (opt_pos
>= end
) {
731 while (opt_end
< end
&& *opt_end
!= '"') {
734 if (opt_end
== end
|| buf_size
< opt_end
- opt_pos
+ 1) {
737 pstrcpy(buf
, opt_end
- opt_pos
+ 1, opt_pos
);
741 /* Open an extent file and append to bs array */
742 static int vmdk_open_sparse(BlockDriverState
*bs
,
743 BlockDriverState
*file
, int flags
,
744 char *buf
, QDict
*options
, Error
**errp
)
748 magic
= ldl_be_p(buf
);
751 return vmdk_open_vmfs_sparse(bs
, file
, flags
, errp
);
754 return vmdk_open_vmdk4(bs
, file
, flags
, options
, errp
);
757 error_setg(errp
, "Image not in VMDK format");
763 static int vmdk_parse_extents(const char *desc
, BlockDriverState
*bs
,
764 const char *desc_file_path
, QDict
*options
,
772 const char *p
= desc
;
776 BlockDriverState
*extent_file
;
777 BDRVVmdkState
*s
= bs
->opaque
;
779 char extent_opt_prefix
[32];
782 /* parse extent line in one of below formats:
784 * RW [size in sectors] FLAT "file-name.vmdk" OFFSET
785 * RW [size in sectors] SPARSE "file-name.vmdk"
786 * RW [size in sectors] VMFS "file-name.vmdk"
787 * RW [size in sectors] VMFSSPARSE "file-name.vmdk"
790 matches
= sscanf(p
, "%10s %" SCNd64
" %10s \"%511[^\n\r\"]\" %" SCNd64
,
791 access
, §ors
, type
, fname
, &flat_offset
);
792 if (matches
< 4 || strcmp(access
, "RW")) {
794 } else if (!strcmp(type
, "FLAT")) {
795 if (matches
!= 5 || flat_offset
< 0) {
796 error_setg(errp
, "Invalid extent lines: \n%s", p
);
799 } else if (!strcmp(type
, "VMFS")) {
803 error_setg(errp
, "Invalid extent lines:\n%s", p
);
806 } else if (matches
!= 4) {
807 error_setg(errp
, "Invalid extent lines:\n%s", p
);
812 (strcmp(type
, "FLAT") && strcmp(type
, "SPARSE") &&
813 strcmp(type
, "VMFS") && strcmp(type
, "VMFSSPARSE")) ||
814 (strcmp(access
, "RW"))) {
818 if (!path_is_absolute(fname
) && !path_has_protocol(fname
) &&
821 error_setg(errp
, "Cannot use relative extent paths with VMDK "
822 "descriptor file '%s'", bs
->file
->filename
);
826 extent_path
= g_malloc0(PATH_MAX
);
827 path_combine(extent_path
, PATH_MAX
, desc_file_path
, fname
);
830 ret
= snprintf(extent_opt_prefix
, 32, "extents.%d", s
->num_extents
);
833 ret
= bdrv_open_image(&extent_file
, extent_path
, options
,
834 extent_opt_prefix
, bs
, &child_file
, false, errp
);
840 /* save to extents array */
841 if (!strcmp(type
, "FLAT") || !strcmp(type
, "VMFS")) {
844 ret
= vmdk_add_extent(bs
, extent_file
, true, sectors
,
845 0, 0, 0, 0, 0, &extent
, errp
);
847 bdrv_unref(extent_file
);
850 extent
->flat_start_offset
= flat_offset
<< 9;
851 } else if (!strcmp(type
, "SPARSE") || !strcmp(type
, "VMFSSPARSE")) {
852 /* SPARSE extent and VMFSSPARSE extent are both "COWD" sparse file*/
853 char *buf
= vmdk_read_desc(extent_file
, 0, errp
);
857 ret
= vmdk_open_sparse(bs
, extent_file
, bs
->open_flags
, buf
,
862 bdrv_unref(extent_file
);
865 extent
= &s
->extents
[s
->num_extents
- 1];
867 error_setg(errp
, "Unsupported extent type '%s'", type
);
868 bdrv_unref(extent_file
);
871 extent
->type
= g_strdup(type
);
873 /* move to next line */
885 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
, char *buf
,
886 QDict
*options
, Error
**errp
)
890 BDRVVmdkState
*s
= bs
->opaque
;
892 if (vmdk_parse_description(buf
, "createType", ct
, sizeof(ct
))) {
893 error_setg(errp
, "invalid VMDK image descriptor");
897 if (strcmp(ct
, "monolithicFlat") &&
898 strcmp(ct
, "vmfs") &&
899 strcmp(ct
, "vmfsSparse") &&
900 strcmp(ct
, "twoGbMaxExtentSparse") &&
901 strcmp(ct
, "twoGbMaxExtentFlat")) {
902 error_setg(errp
, "Unsupported image type '%s'", ct
);
906 s
->create_type
= g_strdup(ct
);
908 ret
= vmdk_parse_extents(buf
, bs
, bs
->file
->exact_filename
, options
, errp
);
913 static int vmdk_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
918 BDRVVmdkState
*s
= bs
->opaque
;
921 buf
= vmdk_read_desc(bs
->file
, 0, errp
);
926 magic
= ldl_be_p(buf
);
930 ret
= vmdk_open_sparse(bs
, bs
->file
, flags
, buf
, options
, errp
);
931 s
->desc_offset
= 0x200;
934 ret
= vmdk_open_desc_file(bs
, flags
, buf
, options
, errp
);
941 /* try to open parent images, if exist */
942 ret
= vmdk_parent_open(bs
);
946 s
->cid
= vmdk_read_cid(bs
, 0);
947 s
->parent_cid
= vmdk_read_cid(bs
, 1);
948 qemu_co_mutex_init(&s
->lock
);
950 /* Disable migration when VMDK images are used */
951 error_setg(&s
->migration_blocker
, "The vmdk format used by node '%s' "
952 "does not support live migration",
953 bdrv_get_device_or_node_name(bs
));
954 migrate_add_blocker(s
->migration_blocker
);
960 g_free(s
->create_type
);
961 s
->create_type
= NULL
;
962 vmdk_free_extents(bs
);
967 static void vmdk_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
969 BDRVVmdkState
*s
= bs
->opaque
;
972 for (i
= 0; i
< s
->num_extents
; i
++) {
973 if (!s
->extents
[i
].flat
) {
974 bs
->bl
.write_zeroes_alignment
=
975 MAX(bs
->bl
.write_zeroes_alignment
,
976 s
->extents
[i
].cluster_sectors
);
984 * Copy backing file's cluster that covers @sector_num, otherwise write zero,
985 * to the cluster at @cluster_sector_num.
987 * If @skip_start_sector < @skip_end_sector, the relative range
988 * [@skip_start_sector, @skip_end_sector) is not copied or written, and leave
989 * it for call to write user data in the request.
991 static int get_whole_cluster(BlockDriverState
*bs
,
993 uint64_t cluster_sector_num
,
995 uint64_t skip_start_sector
,
996 uint64_t skip_end_sector
)
999 int64_t cluster_bytes
;
1000 uint8_t *whole_grain
;
1002 /* For COW, align request sector_num to cluster start */
1003 sector_num
= QEMU_ALIGN_DOWN(sector_num
, extent
->cluster_sectors
);
1004 cluster_bytes
= extent
->cluster_sectors
<< BDRV_SECTOR_BITS
;
1005 whole_grain
= qemu_blockalign(bs
, cluster_bytes
);
1007 if (!bs
->backing_hd
) {
1008 memset(whole_grain
, 0, skip_start_sector
<< BDRV_SECTOR_BITS
);
1009 memset(whole_grain
+ (skip_end_sector
<< BDRV_SECTOR_BITS
), 0,
1010 cluster_bytes
- (skip_end_sector
<< BDRV_SECTOR_BITS
));
1013 assert(skip_end_sector
<= extent
->cluster_sectors
);
1014 /* we will be here if it's first write on non-exist grain(cluster).
1015 * try to read from parent image, if exist */
1016 if (bs
->backing_hd
&& !vmdk_is_cid_valid(bs
)) {
1021 /* Read backing data before skip range */
1022 if (skip_start_sector
> 0) {
1023 if (bs
->backing_hd
) {
1024 ret
= bdrv_read(bs
->backing_hd
, sector_num
,
1025 whole_grain
, skip_start_sector
);
1031 ret
= bdrv_write(extent
->file
, cluster_sector_num
, whole_grain
,
1038 /* Read backing data after skip range */
1039 if (skip_end_sector
< extent
->cluster_sectors
) {
1040 if (bs
->backing_hd
) {
1041 ret
= bdrv_read(bs
->backing_hd
, sector_num
+ skip_end_sector
,
1042 whole_grain
+ (skip_end_sector
<< BDRV_SECTOR_BITS
),
1043 extent
->cluster_sectors
- skip_end_sector
);
1049 ret
= bdrv_write(extent
->file
, cluster_sector_num
+ skip_end_sector
,
1050 whole_grain
+ (skip_end_sector
<< BDRV_SECTOR_BITS
),
1051 extent
->cluster_sectors
- skip_end_sector
);
1059 qemu_vfree(whole_grain
);
1063 static int vmdk_L2update(VmdkExtent
*extent
, VmdkMetaData
*m_data
,
1066 offset
= cpu_to_le32(offset
);
1067 /* update L2 table */
1068 if (bdrv_pwrite_sync(
1070 ((int64_t)m_data
->l2_offset
* 512)
1071 + (m_data
->l2_index
* sizeof(offset
)),
1072 &offset
, sizeof(offset
)) < 0) {
1075 /* update backup L2 table */
1076 if (extent
->l1_backup_table_offset
!= 0) {
1077 m_data
->l2_offset
= extent
->l1_backup_table
[m_data
->l1_index
];
1078 if (bdrv_pwrite_sync(
1080 ((int64_t)m_data
->l2_offset
* 512)
1081 + (m_data
->l2_index
* sizeof(offset
)),
1082 &offset
, sizeof(offset
)) < 0) {
1086 if (m_data
->l2_cache_entry
) {
1087 *m_data
->l2_cache_entry
= offset
;
1094 * get_cluster_offset
1096 * Look up cluster offset in extent file by sector number, and store in
1099 * For flat extents, the start offset as parsed from the description file is
1102 * For sparse extents, look up in L1, L2 table. If allocate is true, return an
1103 * offset for a new cluster and update L2 cache. If there is a backing file,
1104 * COW is done before returning; otherwise, zeroes are written to the allocated
1105 * cluster. Both COW and zero writing skips the sector range
1106 * [@skip_start_sector, @skip_end_sector) passed in by caller, because caller
1107 * has new data to write there.
1109 * Returns: VMDK_OK if cluster exists and mapped in the image.
1110 * VMDK_UNALLOC if cluster is not mapped and @allocate is false.
1111 * VMDK_ERROR if failed.
1113 static int get_cluster_offset(BlockDriverState
*bs
,
1115 VmdkMetaData
*m_data
,
1118 uint64_t *cluster_offset
,
1119 uint64_t skip_start_sector
,
1120 uint64_t skip_end_sector
)
1122 unsigned int l1_index
, l2_offset
, l2_index
;
1123 int min_index
, i
, j
;
1124 uint32_t min_count
, *l2_table
;
1125 bool zeroed
= false;
1127 int64_t cluster_sector
;
1133 *cluster_offset
= extent
->flat_start_offset
;
1137 offset
-= (extent
->end_sector
- extent
->sectors
) * SECTOR_SIZE
;
1138 l1_index
= (offset
>> 9) / extent
->l1_entry_sectors
;
1139 if (l1_index
>= extent
->l1_size
) {
1142 l2_offset
= extent
->l1_table
[l1_index
];
1144 return VMDK_UNALLOC
;
1146 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
1147 if (l2_offset
== extent
->l2_cache_offsets
[i
]) {
1148 /* increment the hit count */
1149 if (++extent
->l2_cache_counts
[i
] == 0xffffffff) {
1150 for (j
= 0; j
< L2_CACHE_SIZE
; j
++) {
1151 extent
->l2_cache_counts
[j
] >>= 1;
1154 l2_table
= extent
->l2_cache
+ (i
* extent
->l2_size
);
1158 /* not found: load a new entry in the least used one */
1160 min_count
= 0xffffffff;
1161 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
1162 if (extent
->l2_cache_counts
[i
] < min_count
) {
1163 min_count
= extent
->l2_cache_counts
[i
];
1167 l2_table
= extent
->l2_cache
+ (min_index
* extent
->l2_size
);
1170 (int64_t)l2_offset
* 512,
1172 extent
->l2_size
* sizeof(uint32_t)
1173 ) != extent
->l2_size
* sizeof(uint32_t)) {
1177 extent
->l2_cache_offsets
[min_index
] = l2_offset
;
1178 extent
->l2_cache_counts
[min_index
] = 1;
1180 l2_index
= ((offset
>> 9) / extent
->cluster_sectors
) % extent
->l2_size
;
1181 cluster_sector
= le32_to_cpu(l2_table
[l2_index
]);
1185 m_data
->l1_index
= l1_index
;
1186 m_data
->l2_index
= l2_index
;
1187 m_data
->l2_offset
= l2_offset
;
1188 m_data
->l2_cache_entry
= &l2_table
[l2_index
];
1190 if (extent
->has_zero_grain
&& cluster_sector
== VMDK_GTE_ZEROED
) {
1194 if (!cluster_sector
|| zeroed
) {
1196 return zeroed
? VMDK_ZEROED
: VMDK_UNALLOC
;
1199 cluster_sector
= extent
->next_cluster_sector
;
1200 extent
->next_cluster_sector
+= extent
->cluster_sectors
;
1202 /* First of all we write grain itself, to avoid race condition
1203 * that may to corrupt the image.
1204 * This problem may occur because of insufficient space on host disk
1205 * or inappropriate VM shutdown.
1207 ret
= get_whole_cluster(bs
, extent
,
1209 offset
>> BDRV_SECTOR_BITS
,
1210 skip_start_sector
, skip_end_sector
);
1215 *cluster_offset
= cluster_sector
<< BDRV_SECTOR_BITS
;
1219 static VmdkExtent
*find_extent(BDRVVmdkState
*s
,
1220 int64_t sector_num
, VmdkExtent
*start_hint
)
1222 VmdkExtent
*extent
= start_hint
;
1225 extent
= &s
->extents
[0];
1227 while (extent
< &s
->extents
[s
->num_extents
]) {
1228 if (sector_num
< extent
->end_sector
) {
1236 static inline uint64_t vmdk_find_index_in_cluster(VmdkExtent
*extent
,
1239 uint64_t index_in_cluster
, extent_begin_sector
, extent_relative_sector_num
;
1241 extent_begin_sector
= extent
->end_sector
- extent
->sectors
;
1242 extent_relative_sector_num
= sector_num
- extent_begin_sector
;
1243 index_in_cluster
= extent_relative_sector_num
% extent
->cluster_sectors
;
1244 return index_in_cluster
;
1247 static int64_t coroutine_fn
vmdk_co_get_block_status(BlockDriverState
*bs
,
1248 int64_t sector_num
, int nb_sectors
, int *pnum
)
1250 BDRVVmdkState
*s
= bs
->opaque
;
1251 int64_t index_in_cluster
, n
, ret
;
1255 extent
= find_extent(s
, sector_num
, NULL
);
1259 qemu_co_mutex_lock(&s
->lock
);
1260 ret
= get_cluster_offset(bs
, extent
, NULL
,
1261 sector_num
* 512, false, &offset
,
1263 qemu_co_mutex_unlock(&s
->lock
);
1273 ret
= BDRV_BLOCK_ZERO
;
1276 ret
= BDRV_BLOCK_DATA
;
1277 if (extent
->file
== bs
->file
&& !extent
->compressed
) {
1278 ret
|= BDRV_BLOCK_OFFSET_VALID
| offset
;
1284 index_in_cluster
= vmdk_find_index_in_cluster(extent
, sector_num
);
1285 n
= extent
->cluster_sectors
- index_in_cluster
;
1286 if (n
> nb_sectors
) {
1293 static int vmdk_write_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1294 int64_t offset_in_cluster
, const uint8_t *buf
,
1295 int nb_sectors
, int64_t sector_num
)
1298 VmdkGrainMarker
*data
= NULL
;
1300 const uint8_t *write_buf
= buf
;
1301 int write_len
= nb_sectors
* 512;
1302 int64_t write_offset
;
1303 int64_t write_end_sector
;
1305 if (extent
->compressed
) {
1306 if (!extent
->has_marker
) {
1310 buf_len
= (extent
->cluster_sectors
<< 9) * 2;
1311 data
= g_malloc(buf_len
+ sizeof(VmdkGrainMarker
));
1312 if (compress(data
->data
, &buf_len
, buf
, nb_sectors
<< 9) != Z_OK
||
1317 data
->lba
= sector_num
;
1318 data
->size
= buf_len
;
1319 write_buf
= (uint8_t *)data
;
1320 write_len
= buf_len
+ sizeof(VmdkGrainMarker
);
1322 write_offset
= cluster_offset
+ offset_in_cluster
,
1323 ret
= bdrv_pwrite(extent
->file
, write_offset
, write_buf
, write_len
);
1325 write_end_sector
= DIV_ROUND_UP(write_offset
+ write_len
, BDRV_SECTOR_SIZE
);
1327 extent
->next_cluster_sector
= MAX(extent
->next_cluster_sector
,
1330 if (ret
!= write_len
) {
1331 ret
= ret
< 0 ? ret
: -EIO
;
1340 static int vmdk_read_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1341 int64_t offset_in_cluster
, uint8_t *buf
,
1345 int cluster_bytes
, buf_bytes
;
1346 uint8_t *cluster_buf
, *compressed_data
;
1347 uint8_t *uncomp_buf
;
1349 VmdkGrainMarker
*marker
;
1353 if (!extent
->compressed
) {
1354 ret
= bdrv_pread(extent
->file
,
1355 cluster_offset
+ offset_in_cluster
,
1356 buf
, nb_sectors
* 512);
1357 if (ret
== nb_sectors
* 512) {
1363 cluster_bytes
= extent
->cluster_sectors
* 512;
1364 /* Read two clusters in case GrainMarker + compressed data > one cluster */
1365 buf_bytes
= cluster_bytes
* 2;
1366 cluster_buf
= g_malloc(buf_bytes
);
1367 uncomp_buf
= g_malloc(cluster_bytes
);
1368 ret
= bdrv_pread(extent
->file
,
1370 cluster_buf
, buf_bytes
);
1374 compressed_data
= cluster_buf
;
1375 buf_len
= cluster_bytes
;
1376 data_len
= cluster_bytes
;
1377 if (extent
->has_marker
) {
1378 marker
= (VmdkGrainMarker
*)cluster_buf
;
1379 compressed_data
= marker
->data
;
1380 data_len
= le32_to_cpu(marker
->size
);
1382 if (!data_len
|| data_len
> buf_bytes
) {
1386 ret
= uncompress(uncomp_buf
, &buf_len
, compressed_data
, data_len
);
1392 if (offset_in_cluster
< 0 ||
1393 offset_in_cluster
+ nb_sectors
* 512 > buf_len
) {
1397 memcpy(buf
, uncomp_buf
+ offset_in_cluster
, nb_sectors
* 512);
1402 g_free(cluster_buf
);
1406 static int vmdk_read(BlockDriverState
*bs
, int64_t sector_num
,
1407 uint8_t *buf
, int nb_sectors
)
1409 BDRVVmdkState
*s
= bs
->opaque
;
1411 uint64_t n
, index_in_cluster
;
1412 VmdkExtent
*extent
= NULL
;
1413 uint64_t cluster_offset
;
1415 while (nb_sectors
> 0) {
1416 extent
= find_extent(s
, sector_num
, extent
);
1420 ret
= get_cluster_offset(bs
, extent
, NULL
,
1421 sector_num
<< 9, false, &cluster_offset
,
1423 index_in_cluster
= vmdk_find_index_in_cluster(extent
, sector_num
);
1424 n
= extent
->cluster_sectors
- index_in_cluster
;
1425 if (n
> nb_sectors
) {
1428 if (ret
!= VMDK_OK
) {
1429 /* if not allocated, try to read from parent image, if exist */
1430 if (bs
->backing_hd
&& ret
!= VMDK_ZEROED
) {
1431 if (!vmdk_is_cid_valid(bs
)) {
1434 ret
= bdrv_read(bs
->backing_hd
, sector_num
, buf
, n
);
1439 memset(buf
, 0, 512 * n
);
1442 ret
= vmdk_read_extent(extent
,
1443 cluster_offset
, index_in_cluster
* 512,
1456 static coroutine_fn
int vmdk_co_read(BlockDriverState
*bs
, int64_t sector_num
,
1457 uint8_t *buf
, int nb_sectors
)
1460 BDRVVmdkState
*s
= bs
->opaque
;
1461 qemu_co_mutex_lock(&s
->lock
);
1462 ret
= vmdk_read(bs
, sector_num
, buf
, nb_sectors
);
1463 qemu_co_mutex_unlock(&s
->lock
);
1469 * @zeroed: buf is ignored (data is zero), use zeroed_grain GTE feature
1470 * if possible, otherwise return -ENOTSUP.
1471 * @zero_dry_run: used for zeroed == true only, don't update L2 table, just try
1472 * with each cluster. By dry run we can find if the zero write
1473 * is possible without modifying image data.
1475 * Returns: error code with 0 for success.
1477 static int vmdk_write(BlockDriverState
*bs
, int64_t sector_num
,
1478 const uint8_t *buf
, int nb_sectors
,
1479 bool zeroed
, bool zero_dry_run
)
1481 BDRVVmdkState
*s
= bs
->opaque
;
1482 VmdkExtent
*extent
= NULL
;
1484 int64_t index_in_cluster
, n
;
1485 uint64_t cluster_offset
;
1486 VmdkMetaData m_data
;
1488 if (sector_num
> bs
->total_sectors
) {
1489 error_report("Wrong offset: sector_num=0x%" PRIx64
1490 " total_sectors=0x%" PRIx64
"\n",
1491 sector_num
, bs
->total_sectors
);
1495 while (nb_sectors
> 0) {
1496 extent
= find_extent(s
, sector_num
, extent
);
1500 index_in_cluster
= vmdk_find_index_in_cluster(extent
, sector_num
);
1501 n
= extent
->cluster_sectors
- index_in_cluster
;
1502 if (n
> nb_sectors
) {
1505 ret
= get_cluster_offset(bs
, extent
, &m_data
, sector_num
<< 9,
1506 !(extent
->compressed
|| zeroed
),
1508 index_in_cluster
, index_in_cluster
+ n
);
1509 if (extent
->compressed
) {
1510 if (ret
== VMDK_OK
) {
1511 /* Refuse write to allocated cluster for streamOptimized */
1512 error_report("Could not write to allocated cluster"
1513 " for streamOptimized");
1517 ret
= get_cluster_offset(bs
, extent
, &m_data
, sector_num
<< 9,
1518 true, &cluster_offset
, 0, 0);
1521 if (ret
== VMDK_ERROR
) {
1525 /* Do zeroed write, buf is ignored */
1526 if (extent
->has_zero_grain
&&
1527 index_in_cluster
== 0 &&
1528 n
>= extent
->cluster_sectors
) {
1529 n
= extent
->cluster_sectors
;
1530 if (!zero_dry_run
) {
1531 /* update L2 tables */
1532 if (vmdk_L2update(extent
, &m_data
, VMDK_GTE_ZEROED
)
1541 ret
= vmdk_write_extent(extent
,
1542 cluster_offset
, index_in_cluster
* 512,
1543 buf
, n
, sector_num
);
1548 /* update L2 tables */
1549 if (vmdk_L2update(extent
, &m_data
,
1550 cluster_offset
>> BDRV_SECTOR_BITS
)
1560 /* update CID on the first write every time the virtual disk is
1562 if (!s
->cid_updated
) {
1563 ret
= vmdk_write_cid(bs
, g_random_int());
1567 s
->cid_updated
= true;
1573 static coroutine_fn
int vmdk_co_write(BlockDriverState
*bs
, int64_t sector_num
,
1574 const uint8_t *buf
, int nb_sectors
)
1577 BDRVVmdkState
*s
= bs
->opaque
;
1578 qemu_co_mutex_lock(&s
->lock
);
1579 ret
= vmdk_write(bs
, sector_num
, buf
, nb_sectors
, false, false);
1580 qemu_co_mutex_unlock(&s
->lock
);
1584 static int vmdk_write_compressed(BlockDriverState
*bs
,
1589 BDRVVmdkState
*s
= bs
->opaque
;
1590 if (s
->num_extents
== 1 && s
->extents
[0].compressed
) {
1591 return vmdk_write(bs
, sector_num
, buf
, nb_sectors
, false, false);
1597 static int coroutine_fn
vmdk_co_write_zeroes(BlockDriverState
*bs
,
1600 BdrvRequestFlags flags
)
1603 BDRVVmdkState
*s
= bs
->opaque
;
1604 qemu_co_mutex_lock(&s
->lock
);
1605 /* write zeroes could fail if sectors not aligned to cluster, test it with
1606 * dry_run == true before really updating image */
1607 ret
= vmdk_write(bs
, sector_num
, NULL
, nb_sectors
, true, true);
1609 ret
= vmdk_write(bs
, sector_num
, NULL
, nb_sectors
, true, false);
1611 qemu_co_mutex_unlock(&s
->lock
);
1615 static int vmdk_create_extent(const char *filename
, int64_t filesize
,
1616 bool flat
, bool compress
, bool zeroed_grain
,
1617 QemuOpts
*opts
, Error
**errp
)
1620 BlockDriverState
*bs
= NULL
;
1622 Error
*local_err
= NULL
;
1623 uint32_t tmp
, magic
, grains
, gd_sectors
, gt_size
, gt_count
;
1624 uint32_t *gd_buf
= NULL
;
1627 ret
= bdrv_create_file(filename
, opts
, &local_err
);
1629 error_propagate(errp
, local_err
);
1634 ret
= bdrv_open(&bs
, filename
, NULL
, NULL
, BDRV_O_RDWR
| BDRV_O_PROTOCOL
,
1637 error_propagate(errp
, local_err
);
1642 ret
= bdrv_truncate(bs
, filesize
);
1644 error_setg_errno(errp
, -ret
, "Could not truncate file");
1648 magic
= cpu_to_be32(VMDK4_MAGIC
);
1649 memset(&header
, 0, sizeof(header
));
1650 header
.version
= zeroed_grain
? 2 : 1;
1651 header
.flags
= VMDK4_FLAG_RGD
| VMDK4_FLAG_NL_DETECT
1652 | (compress
? VMDK4_FLAG_COMPRESS
| VMDK4_FLAG_MARKER
: 0)
1653 | (zeroed_grain
? VMDK4_FLAG_ZERO_GRAIN
: 0);
1654 header
.compressAlgorithm
= compress
? VMDK4_COMPRESSION_DEFLATE
: 0;
1655 header
.capacity
= filesize
/ BDRV_SECTOR_SIZE
;
1656 header
.granularity
= 128;
1657 header
.num_gtes_per_gt
= BDRV_SECTOR_SIZE
;
1659 grains
= DIV_ROUND_UP(filesize
/ BDRV_SECTOR_SIZE
, header
.granularity
);
1660 gt_size
= DIV_ROUND_UP(header
.num_gtes_per_gt
* sizeof(uint32_t),
1662 gt_count
= DIV_ROUND_UP(grains
, header
.num_gtes_per_gt
);
1663 gd_sectors
= DIV_ROUND_UP(gt_count
* sizeof(uint32_t), BDRV_SECTOR_SIZE
);
1665 header
.desc_offset
= 1;
1666 header
.desc_size
= 20;
1667 header
.rgd_offset
= header
.desc_offset
+ header
.desc_size
;
1668 header
.gd_offset
= header
.rgd_offset
+ gd_sectors
+ (gt_size
* gt_count
);
1669 header
.grain_offset
=
1670 ROUND_UP(header
.gd_offset
+ gd_sectors
+ (gt_size
* gt_count
),
1671 header
.granularity
);
1672 /* swap endianness for all header fields */
1673 header
.version
= cpu_to_le32(header
.version
);
1674 header
.flags
= cpu_to_le32(header
.flags
);
1675 header
.capacity
= cpu_to_le64(header
.capacity
);
1676 header
.granularity
= cpu_to_le64(header
.granularity
);
1677 header
.num_gtes_per_gt
= cpu_to_le32(header
.num_gtes_per_gt
);
1678 header
.desc_offset
= cpu_to_le64(header
.desc_offset
);
1679 header
.desc_size
= cpu_to_le64(header
.desc_size
);
1680 header
.rgd_offset
= cpu_to_le64(header
.rgd_offset
);
1681 header
.gd_offset
= cpu_to_le64(header
.gd_offset
);
1682 header
.grain_offset
= cpu_to_le64(header
.grain_offset
);
1683 header
.compressAlgorithm
= cpu_to_le16(header
.compressAlgorithm
);
1685 header
.check_bytes
[0] = 0xa;
1686 header
.check_bytes
[1] = 0x20;
1687 header
.check_bytes
[2] = 0xd;
1688 header
.check_bytes
[3] = 0xa;
1690 /* write all the data */
1691 ret
= bdrv_pwrite(bs
, 0, &magic
, sizeof(magic
));
1693 error_setg(errp
, QERR_IO_ERROR
);
1696 ret
= bdrv_pwrite(bs
, sizeof(magic
), &header
, sizeof(header
));
1698 error_setg(errp
, QERR_IO_ERROR
);
1702 ret
= bdrv_truncate(bs
, le64_to_cpu(header
.grain_offset
) << 9);
1704 error_setg_errno(errp
, -ret
, "Could not truncate file");
1708 /* write grain directory */
1709 gd_buf_size
= gd_sectors
* BDRV_SECTOR_SIZE
;
1710 gd_buf
= g_malloc0(gd_buf_size
);
1711 for (i
= 0, tmp
= le64_to_cpu(header
.rgd_offset
) + gd_sectors
;
1712 i
< gt_count
; i
++, tmp
+= gt_size
) {
1713 gd_buf
[i
] = cpu_to_le32(tmp
);
1715 ret
= bdrv_pwrite(bs
, le64_to_cpu(header
.rgd_offset
) * BDRV_SECTOR_SIZE
,
1716 gd_buf
, gd_buf_size
);
1718 error_setg(errp
, QERR_IO_ERROR
);
1722 /* write backup grain directory */
1723 for (i
= 0, tmp
= le64_to_cpu(header
.gd_offset
) + gd_sectors
;
1724 i
< gt_count
; i
++, tmp
+= gt_size
) {
1725 gd_buf
[i
] = cpu_to_le32(tmp
);
1727 ret
= bdrv_pwrite(bs
, le64_to_cpu(header
.gd_offset
) * BDRV_SECTOR_SIZE
,
1728 gd_buf
, gd_buf_size
);
1730 error_setg(errp
, QERR_IO_ERROR
);
1743 static int filename_decompose(const char *filename
, char *path
, char *prefix
,
1744 char *postfix
, size_t buf_len
, Error
**errp
)
1748 if (filename
== NULL
|| !strlen(filename
)) {
1749 error_setg(errp
, "No filename provided");
1752 p
= strrchr(filename
, '/');
1754 p
= strrchr(filename
, '\\');
1757 p
= strrchr(filename
, ':');
1761 if (p
- filename
>= buf_len
) {
1764 pstrcpy(path
, p
- filename
+ 1, filename
);
1769 q
= strrchr(p
, '.');
1771 pstrcpy(prefix
, buf_len
, p
);
1774 if (q
- p
>= buf_len
) {
1777 pstrcpy(prefix
, q
- p
+ 1, p
);
1778 pstrcpy(postfix
, buf_len
, q
);
1783 static int vmdk_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
1786 BlockDriverState
*new_bs
= NULL
;
1787 Error
*local_err
= NULL
;
1789 int64_t total_size
= 0, filesize
;
1790 char *adapter_type
= NULL
;
1791 char *backing_file
= NULL
;
1795 bool flat
, split
, compress
;
1796 GString
*ext_desc_lines
;
1797 char *path
= g_malloc0(PATH_MAX
);
1798 char *prefix
= g_malloc0(PATH_MAX
);
1799 char *postfix
= g_malloc0(PATH_MAX
);
1800 char *desc_line
= g_malloc0(BUF_SIZE
);
1801 char *ext_filename
= g_malloc0(PATH_MAX
);
1802 char *desc_filename
= g_malloc0(PATH_MAX
);
1803 const int64_t split_size
= 0x80000000; /* VMDK has constant split size */
1804 const char *desc_extent_line
;
1805 char *parent_desc_line
= g_malloc0(BUF_SIZE
);
1806 uint32_t parent_cid
= 0xffffffff;
1807 uint32_t number_heads
= 16;
1808 bool zeroed_grain
= false;
1809 uint32_t desc_offset
= 0, desc_len
;
1810 const char desc_template
[] =
1811 "# Disk DescriptorFile\n"
1814 "parentCID=%" PRIx32
"\n"
1815 "createType=\"%s\"\n"
1818 "# Extent description\n"
1821 "# The Disk Data Base\n"
1824 "ddb.virtualHWVersion = \"%d\"\n"
1825 "ddb.geometry.cylinders = \"%" PRId64
"\"\n"
1826 "ddb.geometry.heads = \"%" PRIu32
"\"\n"
1827 "ddb.geometry.sectors = \"63\"\n"
1828 "ddb.adapterType = \"%s\"\n";
1830 ext_desc_lines
= g_string_new(NULL
);
1832 if (filename_decompose(filename
, path
, prefix
, postfix
, PATH_MAX
, errp
)) {
1836 /* Read out options */
1837 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
1839 adapter_type
= qemu_opt_get_del(opts
, BLOCK_OPT_ADAPTER_TYPE
);
1840 backing_file
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
1841 if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_COMPAT6
, false)) {
1842 flags
|= BLOCK_FLAG_COMPAT6
;
1844 fmt
= qemu_opt_get_del(opts
, BLOCK_OPT_SUBFMT
);
1845 if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_ZEROED_GRAIN
, false)) {
1846 zeroed_grain
= true;
1849 if (!adapter_type
) {
1850 adapter_type
= g_strdup("ide");
1851 } else if (strcmp(adapter_type
, "ide") &&
1852 strcmp(adapter_type
, "buslogic") &&
1853 strcmp(adapter_type
, "lsilogic") &&
1854 strcmp(adapter_type
, "legacyESX")) {
1855 error_setg(errp
, "Unknown adapter type: '%s'", adapter_type
);
1859 if (strcmp(adapter_type
, "ide") != 0) {
1860 /* that's the number of heads with which vmware operates when
1861 creating, exporting, etc. vmdk files with a non-ide adapter type */
1865 /* Default format to monolithicSparse */
1866 fmt
= g_strdup("monolithicSparse");
1867 } else if (strcmp(fmt
, "monolithicFlat") &&
1868 strcmp(fmt
, "monolithicSparse") &&
1869 strcmp(fmt
, "twoGbMaxExtentSparse") &&
1870 strcmp(fmt
, "twoGbMaxExtentFlat") &&
1871 strcmp(fmt
, "streamOptimized")) {
1872 error_setg(errp
, "Unknown subformat: '%s'", fmt
);
1876 split
= !(strcmp(fmt
, "twoGbMaxExtentFlat") &&
1877 strcmp(fmt
, "twoGbMaxExtentSparse"));
1878 flat
= !(strcmp(fmt
, "monolithicFlat") &&
1879 strcmp(fmt
, "twoGbMaxExtentFlat"));
1880 compress
= !strcmp(fmt
, "streamOptimized");
1882 desc_extent_line
= "RW %" PRId64
" FLAT \"%s\" 0\n";
1884 desc_extent_line
= "RW %" PRId64
" SPARSE \"%s\"\n";
1886 if (flat
&& backing_file
) {
1887 error_setg(errp
, "Flat image can't have backing file");
1891 if (flat
&& zeroed_grain
) {
1892 error_setg(errp
, "Flat image can't enable zeroed grain");
1897 BlockDriverState
*bs
= NULL
;
1898 char *full_backing
= g_new0(char, PATH_MAX
);
1899 bdrv_get_full_backing_filename_from_filename(filename
, backing_file
,
1900 full_backing
, PATH_MAX
,
1903 g_free(full_backing
);
1904 error_propagate(errp
, local_err
);
1908 ret
= bdrv_open(&bs
, full_backing
, NULL
, NULL
, BDRV_O_NO_BACKING
, NULL
,
1910 g_free(full_backing
);
1914 if (strcmp(bs
->drv
->format_name
, "vmdk")) {
1919 parent_cid
= vmdk_read_cid(bs
, 0);
1921 snprintf(parent_desc_line
, BUF_SIZE
,
1922 "parentFileNameHint=\"%s\"", backing_file
);
1925 /* Create extents */
1926 filesize
= total_size
;
1927 while (filesize
> 0) {
1928 int64_t size
= filesize
;
1930 if (split
&& size
> split_size
) {
1934 snprintf(desc_filename
, PATH_MAX
, "%s-%c%03d%s",
1935 prefix
, flat
? 'f' : 's', ++idx
, postfix
);
1937 snprintf(desc_filename
, PATH_MAX
, "%s-flat%s", prefix
, postfix
);
1939 snprintf(desc_filename
, PATH_MAX
, "%s%s", prefix
, postfix
);
1941 snprintf(ext_filename
, PATH_MAX
, "%s%s", path
, desc_filename
);
1943 if (vmdk_create_extent(ext_filename
, size
,
1944 flat
, compress
, zeroed_grain
, opts
, errp
)) {
1950 /* Format description line */
1951 snprintf(desc_line
, BUF_SIZE
,
1952 desc_extent_line
, size
/ BDRV_SECTOR_SIZE
, desc_filename
);
1953 g_string_append(ext_desc_lines
, desc_line
);
1955 /* generate descriptor file */
1956 desc
= g_strdup_printf(desc_template
,
1961 ext_desc_lines
->str
,
1962 (flags
& BLOCK_FLAG_COMPAT6
? 6 : 4),
1964 (int64_t)(63 * number_heads
* BDRV_SECTOR_SIZE
),
1967 desc_len
= strlen(desc
);
1968 /* the descriptor offset = 0x200 */
1969 if (!split
&& !flat
) {
1970 desc_offset
= 0x200;
1972 ret
= bdrv_create_file(filename
, opts
, &local_err
);
1974 error_propagate(errp
, local_err
);
1978 assert(new_bs
== NULL
);
1979 ret
= bdrv_open(&new_bs
, filename
, NULL
, NULL
,
1980 BDRV_O_RDWR
| BDRV_O_PROTOCOL
, NULL
, &local_err
);
1982 error_propagate(errp
, local_err
);
1985 ret
= bdrv_pwrite(new_bs
, desc_offset
, desc
, desc_len
);
1987 error_setg_errno(errp
, -ret
, "Could not write description");
1990 /* bdrv_pwrite write padding zeros to align to sector, we don't need that
1991 * for description file */
1992 if (desc_offset
== 0) {
1993 ret
= bdrv_truncate(new_bs
, desc_len
);
1995 error_setg_errno(errp
, -ret
, "Could not truncate file");
2002 g_free(adapter_type
);
2003 g_free(backing_file
);
2010 g_free(ext_filename
);
2011 g_free(desc_filename
);
2012 g_free(parent_desc_line
);
2013 g_string_free(ext_desc_lines
, true);
2017 static void vmdk_close(BlockDriverState
*bs
)
2019 BDRVVmdkState
*s
= bs
->opaque
;
2021 vmdk_free_extents(bs
);
2022 g_free(s
->create_type
);
2024 migrate_del_blocker(s
->migration_blocker
);
2025 error_free(s
->migration_blocker
);
2028 static coroutine_fn
int vmdk_co_flush(BlockDriverState
*bs
)
2030 BDRVVmdkState
*s
= bs
->opaque
;
2034 for (i
= 0; i
< s
->num_extents
; i
++) {
2035 err
= bdrv_co_flush(s
->extents
[i
].file
);
2043 static int64_t vmdk_get_allocated_file_size(BlockDriverState
*bs
)
2048 BDRVVmdkState
*s
= bs
->opaque
;
2050 ret
= bdrv_get_allocated_file_size(bs
->file
);
2054 for (i
= 0; i
< s
->num_extents
; i
++) {
2055 if (s
->extents
[i
].file
== bs
->file
) {
2058 r
= bdrv_get_allocated_file_size(s
->extents
[i
].file
);
2067 static int vmdk_has_zero_init(BlockDriverState
*bs
)
2070 BDRVVmdkState
*s
= bs
->opaque
;
2072 /* If has a flat extent and its underlying storage doesn't have zero init,
2074 for (i
= 0; i
< s
->num_extents
; i
++) {
2075 if (s
->extents
[i
].flat
) {
2076 if (!bdrv_has_zero_init(s
->extents
[i
].file
)) {
2084 static ImageInfo
*vmdk_get_extent_info(VmdkExtent
*extent
)
2086 ImageInfo
*info
= g_new0(ImageInfo
, 1);
2088 *info
= (ImageInfo
){
2089 .filename
= g_strdup(extent
->file
->filename
),
2090 .format
= g_strdup(extent
->type
),
2091 .virtual_size
= extent
->sectors
* BDRV_SECTOR_SIZE
,
2092 .compressed
= extent
->compressed
,
2093 .has_compressed
= extent
->compressed
,
2094 .cluster_size
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
,
2095 .has_cluster_size
= !extent
->flat
,
2101 static int vmdk_check(BlockDriverState
*bs
, BdrvCheckResult
*result
,
2104 BDRVVmdkState
*s
= bs
->opaque
;
2105 VmdkExtent
*extent
= NULL
;
2106 int64_t sector_num
= 0;
2107 int64_t total_sectors
= bdrv_nb_sectors(bs
);
2109 uint64_t cluster_offset
;
2116 if (sector_num
>= total_sectors
) {
2119 extent
= find_extent(s
, sector_num
, extent
);
2122 "ERROR: could not find extent for sector %" PRId64
"\n",
2126 ret
= get_cluster_offset(bs
, extent
, NULL
,
2127 sector_num
<< BDRV_SECTOR_BITS
,
2128 false, &cluster_offset
, 0, 0);
2129 if (ret
== VMDK_ERROR
) {
2131 "ERROR: could not get cluster_offset for sector %"
2132 PRId64
"\n", sector_num
);
2135 if (ret
== VMDK_OK
&& cluster_offset
>= bdrv_getlength(extent
->file
)) {
2137 "ERROR: cluster offset for sector %"
2138 PRId64
" points after EOF\n", sector_num
);
2141 sector_num
+= extent
->cluster_sectors
;
2144 result
->corruptions
++;
2148 static ImageInfoSpecific
*vmdk_get_specific_info(BlockDriverState
*bs
)
2151 BDRVVmdkState
*s
= bs
->opaque
;
2152 ImageInfoSpecific
*spec_info
= g_new0(ImageInfoSpecific
, 1);
2153 ImageInfoList
**next
;
2155 *spec_info
= (ImageInfoSpecific
){
2156 .kind
= IMAGE_INFO_SPECIFIC_KIND_VMDK
,
2158 .vmdk
= g_new0(ImageInfoSpecificVmdk
, 1),
2162 *spec_info
->vmdk
= (ImageInfoSpecificVmdk
) {
2163 .create_type
= g_strdup(s
->create_type
),
2165 .parent_cid
= s
->parent_cid
,
2168 next
= &spec_info
->vmdk
->extents
;
2169 for (i
= 0; i
< s
->num_extents
; i
++) {
2170 *next
= g_new0(ImageInfoList
, 1);
2171 (*next
)->value
= vmdk_get_extent_info(&s
->extents
[i
]);
2172 (*next
)->next
= NULL
;
2173 next
= &(*next
)->next
;
2179 static bool vmdk_extents_type_eq(const VmdkExtent
*a
, const VmdkExtent
*b
)
2181 return a
->flat
== b
->flat
&&
2182 a
->compressed
== b
->compressed
&&
2183 (a
->flat
|| a
->cluster_sectors
== b
->cluster_sectors
);
2186 static int vmdk_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
2189 BDRVVmdkState
*s
= bs
->opaque
;
2190 assert(s
->num_extents
);
2192 /* See if we have multiple extents but they have different cases */
2193 for (i
= 1; i
< s
->num_extents
; i
++) {
2194 if (!vmdk_extents_type_eq(&s
->extents
[0], &s
->extents
[i
])) {
2198 bdi
->needs_compressed_writes
= s
->extents
[0].compressed
;
2199 if (!s
->extents
[0].flat
) {
2200 bdi
->cluster_size
= s
->extents
[0].cluster_sectors
<< BDRV_SECTOR_BITS
;
2205 static void vmdk_detach_aio_context(BlockDriverState
*bs
)
2207 BDRVVmdkState
*s
= bs
->opaque
;
2210 for (i
= 0; i
< s
->num_extents
; i
++) {
2211 bdrv_detach_aio_context(s
->extents
[i
].file
);
2215 static void vmdk_attach_aio_context(BlockDriverState
*bs
,
2216 AioContext
*new_context
)
2218 BDRVVmdkState
*s
= bs
->opaque
;
2221 for (i
= 0; i
< s
->num_extents
; i
++) {
2222 bdrv_attach_aio_context(s
->extents
[i
].file
, new_context
);
2226 static QemuOptsList vmdk_create_opts
= {
2227 .name
= "vmdk-create-opts",
2228 .head
= QTAILQ_HEAD_INITIALIZER(vmdk_create_opts
.head
),
2231 .name
= BLOCK_OPT_SIZE
,
2232 .type
= QEMU_OPT_SIZE
,
2233 .help
= "Virtual disk size"
2236 .name
= BLOCK_OPT_ADAPTER_TYPE
,
2237 .type
= QEMU_OPT_STRING
,
2238 .help
= "Virtual adapter type, can be one of "
2239 "ide (default), lsilogic, buslogic or legacyESX"
2242 .name
= BLOCK_OPT_BACKING_FILE
,
2243 .type
= QEMU_OPT_STRING
,
2244 .help
= "File name of a base image"
2247 .name
= BLOCK_OPT_COMPAT6
,
2248 .type
= QEMU_OPT_BOOL
,
2249 .help
= "VMDK version 6 image",
2250 .def_value_str
= "off"
2253 .name
= BLOCK_OPT_SUBFMT
,
2254 .type
= QEMU_OPT_STRING
,
2256 "VMDK flat extent format, can be one of "
2257 "{monolithicSparse (default) | monolithicFlat | twoGbMaxExtentSparse | twoGbMaxExtentFlat | streamOptimized} "
2260 .name
= BLOCK_OPT_ZEROED_GRAIN
,
2261 .type
= QEMU_OPT_BOOL
,
2262 .help
= "Enable efficient zero writes "
2263 "using the zeroed-grain GTE feature"
2265 { /* end of list */ }
2269 static BlockDriver bdrv_vmdk
= {
2270 .format_name
= "vmdk",
2271 .instance_size
= sizeof(BDRVVmdkState
),
2272 .bdrv_probe
= vmdk_probe
,
2273 .bdrv_open
= vmdk_open
,
2274 .bdrv_check
= vmdk_check
,
2275 .bdrv_reopen_prepare
= vmdk_reopen_prepare
,
2276 .bdrv_read
= vmdk_co_read
,
2277 .bdrv_write
= vmdk_co_write
,
2278 .bdrv_write_compressed
= vmdk_write_compressed
,
2279 .bdrv_co_write_zeroes
= vmdk_co_write_zeroes
,
2280 .bdrv_close
= vmdk_close
,
2281 .bdrv_create
= vmdk_create
,
2282 .bdrv_co_flush_to_disk
= vmdk_co_flush
,
2283 .bdrv_co_get_block_status
= vmdk_co_get_block_status
,
2284 .bdrv_get_allocated_file_size
= vmdk_get_allocated_file_size
,
2285 .bdrv_has_zero_init
= vmdk_has_zero_init
,
2286 .bdrv_get_specific_info
= vmdk_get_specific_info
,
2287 .bdrv_refresh_limits
= vmdk_refresh_limits
,
2288 .bdrv_get_info
= vmdk_get_info
,
2289 .bdrv_detach_aio_context
= vmdk_detach_aio_context
,
2290 .bdrv_attach_aio_context
= vmdk_attach_aio_context
,
2292 .supports_backing
= true,
2293 .create_opts
= &vmdk_create_opts
,
2296 static void bdrv_vmdk_init(void)
2298 bdrv_register(&bdrv_vmdk
);
2301 block_init(bdrv_vmdk_init
);