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/blocker.h"
35 #include "qemu/cutils.h"
38 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
39 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
40 #define VMDK4_COMPRESSION_DEFLATE 1
41 #define VMDK4_FLAG_NL_DETECT (1 << 0)
42 #define VMDK4_FLAG_RGD (1 << 1)
43 /* Zeroed-grain enable bit */
44 #define VMDK4_FLAG_ZERO_GRAIN (1 << 2)
45 #define VMDK4_FLAG_COMPRESS (1 << 16)
46 #define VMDK4_FLAG_MARKER (1 << 17)
47 #define VMDK4_GD_AT_END 0xffffffffffffffffULL
49 #define VMDK_GTE_ZEROED 0x1
51 /* VMDK internal error codes */
53 #define VMDK_ERROR (-1)
54 /* Cluster not allocated */
55 #define VMDK_UNALLOC (-2)
56 #define VMDK_ZEROED (-3)
58 #define BLOCK_OPT_ZEROED_GRAIN "zeroed_grain"
63 uint32_t disk_sectors
;
65 uint32_t l1dir_offset
;
67 uint32_t file_sectors
;
70 uint32_t sectors_per_track
;
71 } QEMU_PACKED VMDK3Header
;
80 /* Number of GrainTableEntries per GrainTable */
81 uint32_t num_gtes_per_gt
;
84 uint64_t grain_offset
;
87 uint16_t compressAlgorithm
;
88 } QEMU_PACKED VMDK4Header
;
90 #define L2_CACHE_SIZE 16
92 typedef struct VmdkExtent
{
101 int64_t flat_start_offset
;
102 int64_t l1_table_offset
;
103 int64_t l1_backup_table_offset
;
105 uint32_t *l1_backup_table
;
106 unsigned int l1_size
;
107 uint32_t l1_entry_sectors
;
109 unsigned int l2_size
;
111 uint32_t l2_cache_offsets
[L2_CACHE_SIZE
];
112 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
114 int64_t cluster_sectors
;
115 int64_t next_cluster_sector
;
119 typedef struct BDRVVmdkState
{
121 uint64_t desc_offset
;
127 /* Extent array with num_extents entries, ascend ordered by address */
129 Error
*migration_blocker
;
133 typedef struct VmdkMetaData
{
134 unsigned int l1_index
;
135 unsigned int l2_index
;
136 unsigned int l2_offset
;
138 uint32_t *l2_cache_entry
;
141 typedef struct VmdkGrainMarker
{
145 } QEMU_PACKED VmdkGrainMarker
;
148 MARKER_END_OF_STREAM
= 0,
149 MARKER_GRAIN_TABLE
= 1,
150 MARKER_GRAIN_DIRECTORY
= 2,
154 static int vmdk_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
161 magic
= be32_to_cpu(*(uint32_t *)buf
);
162 if (magic
== VMDK3_MAGIC
||
163 magic
== VMDK4_MAGIC
) {
166 const char *p
= (const char *)buf
;
167 const char *end
= p
+ buf_size
;
170 /* skip comment line */
171 while (p
< end
&& *p
!= '\n') {
178 while (p
< end
&& *p
== ' ') {
181 /* skip '\r' if windows line endings used. */
182 if (p
< end
&& *p
== '\r') {
185 /* only accept blank lines before 'version=' line */
186 if (p
== end
|| *p
!= '\n') {
192 if (end
- p
>= strlen("version=X\n")) {
193 if (strncmp("version=1\n", p
, strlen("version=1\n")) == 0 ||
194 strncmp("version=2\n", p
, strlen("version=2\n")) == 0) {
198 if (end
- p
>= strlen("version=X\r\n")) {
199 if (strncmp("version=1\r\n", p
, strlen("version=1\r\n")) == 0 ||
200 strncmp("version=2\r\n", p
, strlen("version=2\r\n")) == 0) {
210 #define SECTOR_SIZE 512
211 #define DESC_SIZE (20 * SECTOR_SIZE) /* 20 sectors of 512 bytes each */
212 #define BUF_SIZE 4096
213 #define HEADER_SIZE 512 /* first sector of 512 bytes */
215 static void vmdk_free_extents(BlockDriverState
*bs
)
218 BDRVVmdkState
*s
= bs
->opaque
;
221 for (i
= 0; i
< s
->num_extents
; i
++) {
225 g_free(e
->l1_backup_table
);
227 if (e
->file
!= bs
->file
) {
228 bdrv_unref_child(bs
, e
->file
);
234 static void vmdk_free_last_extent(BlockDriverState
*bs
)
236 BDRVVmdkState
*s
= bs
->opaque
;
238 if (s
->num_extents
== 0) {
242 s
->extents
= g_renew(VmdkExtent
, s
->extents
, s
->num_extents
);
245 /* Return -ve errno, or 0 on success and write CID into *pcid. */
246 static int vmdk_read_cid(BlockDriverState
*bs
, int parent
, uint32_t *pcid
)
250 const char *p_name
, *cid_str
;
252 BDRVVmdkState
*s
= bs
->opaque
;
255 desc
= g_malloc0(DESC_SIZE
);
256 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
262 cid_str
= "parentCID";
263 cid_str_size
= sizeof("parentCID");
266 cid_str_size
= sizeof("CID");
269 desc
[DESC_SIZE
- 1] = '\0';
270 p_name
= strstr(desc
, cid_str
);
271 if (p_name
== NULL
) {
275 p_name
+= cid_str_size
;
276 if (sscanf(p_name
, "%" SCNx32
, &cid
) != 1) {
288 static int vmdk_write_cid(BlockDriverState
*bs
, uint32_t cid
)
290 char *desc
, *tmp_desc
;
291 char *p_name
, *tmp_str
;
292 BDRVVmdkState
*s
= bs
->opaque
;
295 desc
= g_malloc0(DESC_SIZE
);
296 tmp_desc
= g_malloc0(DESC_SIZE
);
297 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
302 desc
[DESC_SIZE
- 1] = '\0';
303 tmp_str
= strstr(desc
, "parentCID");
304 if (tmp_str
== NULL
) {
309 pstrcpy(tmp_desc
, DESC_SIZE
, tmp_str
);
310 p_name
= strstr(desc
, "CID");
311 if (p_name
!= NULL
) {
312 p_name
+= sizeof("CID");
313 snprintf(p_name
, DESC_SIZE
- (p_name
- desc
), "%" PRIx32
"\n", cid
);
314 pstrcat(desc
, DESC_SIZE
, tmp_desc
);
317 ret
= bdrv_pwrite_sync(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
325 static int vmdk_is_cid_valid(BlockDriverState
*bs
)
327 BDRVVmdkState
*s
= bs
->opaque
;
330 if (!s
->cid_checked
&& bs
->backing
) {
331 BlockDriverState
*p_bs
= bs
->backing
->bs
;
333 if (vmdk_read_cid(p_bs
, 0, &cur_pcid
) != 0) {
334 /* read failure: report as not valid */
337 if (s
->parent_cid
!= cur_pcid
) {
342 s
->cid_checked
= true;
347 /* We have nothing to do for VMDK reopen, stubs just return success */
348 static int vmdk_reopen_prepare(BDRVReopenState
*state
,
349 BlockReopenQueue
*queue
, Error
**errp
)
351 assert(state
!= NULL
);
352 assert(state
->bs
!= NULL
);
356 static int vmdk_parent_open(BlockDriverState
*bs
)
360 BDRVVmdkState
*s
= bs
->opaque
;
363 desc
= g_malloc0(DESC_SIZE
+ 1);
364 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
370 p_name
= strstr(desc
, "parentFileNameHint");
371 if (p_name
!= NULL
) {
374 p_name
+= sizeof("parentFileNameHint") + 1;
375 end_name
= strchr(p_name
, '\"');
376 if (end_name
== NULL
) {
380 if ((end_name
- p_name
) > sizeof(bs
->backing_file
) - 1) {
385 pstrcpy(bs
->backing_file
, end_name
- p_name
+ 1, p_name
);
393 /* Create and append extent to the extent array. Return the added VmdkExtent
394 * address. return NULL if allocation failed. */
395 static int vmdk_add_extent(BlockDriverState
*bs
,
396 BdrvChild
*file
, bool flat
, int64_t sectors
,
397 int64_t l1_offset
, int64_t l1_backup_offset
,
399 int l2_size
, uint64_t cluster_sectors
,
400 VmdkExtent
**new_extent
,
404 BDRVVmdkState
*s
= bs
->opaque
;
407 if (cluster_sectors
> 0x200000) {
408 /* 0x200000 * 512Bytes = 1GB for one cluster is unrealistic */
409 error_setg(errp
, "Invalid granularity, image may be corrupt");
412 if (l1_size
> 512 * 1024 * 1024) {
413 /* Although with big capacity and small l1_entry_sectors, we can get a
414 * big l1_size, we don't want unbounded value to allocate the table.
415 * Limit it to 512M, which is 16PB for default cluster and L2 table
417 error_setg(errp
, "L1 size too big");
421 nb_sectors
= bdrv_nb_sectors(file
->bs
);
422 if (nb_sectors
< 0) {
426 s
->extents
= g_renew(VmdkExtent
, s
->extents
, s
->num_extents
+ 1);
427 extent
= &s
->extents
[s
->num_extents
];
430 memset(extent
, 0, sizeof(VmdkExtent
));
433 extent
->sectors
= sectors
;
434 extent
->l1_table_offset
= l1_offset
;
435 extent
->l1_backup_table_offset
= l1_backup_offset
;
436 extent
->l1_size
= l1_size
;
437 extent
->l1_entry_sectors
= l2_size
* cluster_sectors
;
438 extent
->l2_size
= l2_size
;
439 extent
->cluster_sectors
= flat
? sectors
: cluster_sectors
;
440 extent
->next_cluster_sector
= ROUND_UP(nb_sectors
, cluster_sectors
);
442 if (s
->num_extents
> 1) {
443 extent
->end_sector
= (*(extent
- 1)).end_sector
+ extent
->sectors
;
445 extent
->end_sector
= extent
->sectors
;
447 bs
->total_sectors
= extent
->end_sector
;
449 *new_extent
= extent
;
454 static int vmdk_init_tables(BlockDriverState
*bs
, VmdkExtent
*extent
,
461 /* read the L1 table */
462 l1_size
= extent
->l1_size
* sizeof(uint32_t);
463 extent
->l1_table
= g_try_malloc(l1_size
);
464 if (l1_size
&& extent
->l1_table
== NULL
) {
468 ret
= bdrv_pread(extent
->file
,
469 extent
->l1_table_offset
,
473 error_setg_errno(errp
, -ret
,
474 "Could not read l1 table from extent '%s'",
475 extent
->file
->bs
->filename
);
478 for (i
= 0; i
< extent
->l1_size
; i
++) {
479 le32_to_cpus(&extent
->l1_table
[i
]);
482 if (extent
->l1_backup_table_offset
) {
483 extent
->l1_backup_table
= g_try_malloc(l1_size
);
484 if (l1_size
&& extent
->l1_backup_table
== NULL
) {
488 ret
= bdrv_pread(extent
->file
,
489 extent
->l1_backup_table_offset
,
490 extent
->l1_backup_table
,
493 error_setg_errno(errp
, -ret
,
494 "Could not read l1 backup table from extent '%s'",
495 extent
->file
->bs
->filename
);
498 for (i
= 0; i
< extent
->l1_size
; i
++) {
499 le32_to_cpus(&extent
->l1_backup_table
[i
]);
504 g_new(uint32_t, extent
->l2_size
* L2_CACHE_SIZE
);
507 g_free(extent
->l1_backup_table
);
509 g_free(extent
->l1_table
);
513 static int vmdk_open_vmfs_sparse(BlockDriverState
*bs
,
515 int flags
, Error
**errp
)
522 ret
= bdrv_pread(file
, sizeof(magic
), &header
, sizeof(header
));
524 error_setg_errno(errp
, -ret
,
525 "Could not read header from file '%s'",
529 ret
= vmdk_add_extent(bs
, file
, false,
530 le32_to_cpu(header
.disk_sectors
),
531 (int64_t)le32_to_cpu(header
.l1dir_offset
) << 9,
533 le32_to_cpu(header
.l1dir_size
),
535 le32_to_cpu(header
.granularity
),
541 ret
= vmdk_init_tables(bs
, extent
, errp
);
543 /* free extent allocated by vmdk_add_extent */
544 vmdk_free_last_extent(bs
);
549 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
, char *buf
,
550 QDict
*options
, Error
**errp
);
552 static char *vmdk_read_desc(BdrvChild
*file
, uint64_t desc_offset
, Error
**errp
)
558 size
= bdrv_getlength(file
->bs
);
560 error_setg_errno(errp
, -size
, "Could not access file");
565 /* Both descriptor file and sparse image must be much larger than 4
566 * bytes, also callers of vmdk_read_desc want to compare the first 4
567 * bytes with VMDK4_MAGIC, let's error out if less is read. */
568 error_setg(errp
, "File is too small, not a valid image");
572 size
= MIN(size
, (1 << 20) - 1); /* avoid unbounded allocation */
573 buf
= g_malloc(size
+ 1);
575 ret
= bdrv_pread(file
, desc_offset
, buf
, size
);
577 error_setg_errno(errp
, -ret
, "Could not read from file");
586 static int vmdk_open_vmdk4(BlockDriverState
*bs
,
588 int flags
, QDict
*options
, Error
**errp
)
592 uint32_t l1_size
, l1_entry_sectors
;
595 BDRVVmdkState
*s
= bs
->opaque
;
596 int64_t l1_backup_offset
= 0;
599 ret
= bdrv_pread(file
, sizeof(magic
), &header
, sizeof(header
));
601 error_setg_errno(errp
, -ret
,
602 "Could not read header from file '%s'",
606 if (header
.capacity
== 0) {
607 uint64_t desc_offset
= le64_to_cpu(header
.desc_offset
);
609 char *buf
= vmdk_read_desc(file
, desc_offset
<< 9, errp
);
613 ret
= vmdk_open_desc_file(bs
, flags
, buf
, options
, errp
);
619 if (!s
->create_type
) {
620 s
->create_type
= g_strdup("monolithicSparse");
623 if (le64_to_cpu(header
.gd_offset
) == VMDK4_GD_AT_END
) {
625 * The footer takes precedence over the header, so read it in. The
626 * footer starts at offset -1024 from the end: One sector for the
627 * footer, and another one for the end-of-stream marker.
634 uint8_t pad
[512 - 16];
635 } QEMU_PACKED footer_marker
;
639 uint8_t pad
[512 - 4 - sizeof(VMDK4Header
)];
645 uint8_t pad
[512 - 16];
646 } QEMU_PACKED eos_marker
;
647 } QEMU_PACKED footer
;
649 ret
= bdrv_pread(file
,
650 bs
->file
->bs
->total_sectors
* 512 - 1536,
651 &footer
, sizeof(footer
));
653 error_setg_errno(errp
, -ret
, "Failed to read footer");
657 /* Some sanity checks for the footer */
658 if (be32_to_cpu(footer
.magic
) != VMDK4_MAGIC
||
659 le32_to_cpu(footer
.footer_marker
.size
) != 0 ||
660 le32_to_cpu(footer
.footer_marker
.type
) != MARKER_FOOTER
||
661 le64_to_cpu(footer
.eos_marker
.val
) != 0 ||
662 le32_to_cpu(footer
.eos_marker
.size
) != 0 ||
663 le32_to_cpu(footer
.eos_marker
.type
) != MARKER_END_OF_STREAM
)
665 error_setg(errp
, "Invalid footer");
669 header
= footer
.header
;
673 le16_to_cpu(header
.compressAlgorithm
) == VMDK4_COMPRESSION_DEFLATE
;
674 if (le32_to_cpu(header
.version
) > 3) {
675 error_setg(errp
, "Unsupported VMDK version %" PRIu32
,
676 le32_to_cpu(header
.version
));
678 } else if (le32_to_cpu(header
.version
) == 3 && (flags
& BDRV_O_RDWR
) &&
680 /* VMware KB 2064959 explains that version 3 added support for
681 * persistent changed block tracking (CBT), and backup software can
682 * read it as version=1 if it doesn't care about the changed area
683 * information. So we are safe to enable read only. */
684 error_setg(errp
, "VMDK version 3 must be read only");
688 if (le32_to_cpu(header
.num_gtes_per_gt
) > 512) {
689 error_setg(errp
, "L2 table size too big");
693 l1_entry_sectors
= le32_to_cpu(header
.num_gtes_per_gt
)
694 * le64_to_cpu(header
.granularity
);
695 if (l1_entry_sectors
== 0) {
696 error_setg(errp
, "L1 entry size is invalid");
699 l1_size
= (le64_to_cpu(header
.capacity
) + l1_entry_sectors
- 1)
701 if (le32_to_cpu(header
.flags
) & VMDK4_FLAG_RGD
) {
702 l1_backup_offset
= le64_to_cpu(header
.rgd_offset
) << 9;
704 if (bdrv_nb_sectors(file
->bs
) < le64_to_cpu(header
.grain_offset
)) {
705 error_setg(errp
, "File truncated, expecting at least %" PRId64
" bytes",
706 (int64_t)(le64_to_cpu(header
.grain_offset
)
707 * BDRV_SECTOR_SIZE
));
711 ret
= vmdk_add_extent(bs
, file
, false,
712 le64_to_cpu(header
.capacity
),
713 le64_to_cpu(header
.gd_offset
) << 9,
716 le32_to_cpu(header
.num_gtes_per_gt
),
717 le64_to_cpu(header
.granularity
),
724 le16_to_cpu(header
.compressAlgorithm
) == VMDK4_COMPRESSION_DEFLATE
;
725 if (extent
->compressed
) {
726 g_free(s
->create_type
);
727 s
->create_type
= g_strdup("streamOptimized");
729 extent
->has_marker
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_MARKER
;
730 extent
->version
= le32_to_cpu(header
.version
);
731 extent
->has_zero_grain
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_ZERO_GRAIN
;
732 ret
= vmdk_init_tables(bs
, extent
, errp
);
734 /* free extent allocated by vmdk_add_extent */
735 vmdk_free_last_extent(bs
);
740 /* find an option value out of descriptor file */
741 static int vmdk_parse_description(const char *desc
, const char *opt_name
,
742 char *buf
, int buf_size
)
744 char *opt_pos
, *opt_end
;
745 const char *end
= desc
+ strlen(desc
);
747 opt_pos
= strstr(desc
, opt_name
);
751 /* Skip "=\"" following opt_name */
752 opt_pos
+= strlen(opt_name
) + 2;
753 if (opt_pos
>= end
) {
757 while (opt_end
< end
&& *opt_end
!= '"') {
760 if (opt_end
== end
|| buf_size
< opt_end
- opt_pos
+ 1) {
763 pstrcpy(buf
, opt_end
- opt_pos
+ 1, opt_pos
);
767 /* Open an extent file and append to bs array */
768 static int vmdk_open_sparse(BlockDriverState
*bs
, BdrvChild
*file
, int flags
,
769 char *buf
, QDict
*options
, Error
**errp
)
773 magic
= ldl_be_p(buf
);
776 return vmdk_open_vmfs_sparse(bs
, file
, flags
, errp
);
779 return vmdk_open_vmdk4(bs
, file
, flags
, options
, errp
);
782 error_setg(errp
, "Image not in VMDK format");
788 static const char *next_line(const char *s
)
799 static int vmdk_parse_extents(const char *desc
, BlockDriverState
*bs
,
800 const char *desc_file_path
, QDict
*options
,
812 BdrvChild
*extent_file
;
813 BDRVVmdkState
*s
= bs
->opaque
;
815 char extent_opt_prefix
[32];
816 Error
*local_err
= NULL
;
818 for (p
= desc
; *p
; p
= next_line(p
)) {
819 /* parse extent line in one of below formats:
821 * RW [size in sectors] FLAT "file-name.vmdk" OFFSET
822 * RW [size in sectors] SPARSE "file-name.vmdk"
823 * RW [size in sectors] VMFS "file-name.vmdk"
824 * RW [size in sectors] VMFSSPARSE "file-name.vmdk"
827 matches
= sscanf(p
, "%10s %" SCNd64
" %10s \"%511[^\n\r\"]\" %" SCNd64
,
828 access
, §ors
, type
, fname
, &flat_offset
);
829 if (matches
< 4 || strcmp(access
, "RW")) {
831 } else if (!strcmp(type
, "FLAT")) {
832 if (matches
!= 5 || flat_offset
< 0) {
835 } else if (!strcmp(type
, "VMFS")) {
841 } else if (matches
!= 4) {
846 (strcmp(type
, "FLAT") && strcmp(type
, "SPARSE") &&
847 strcmp(type
, "VMFS") && strcmp(type
, "VMFSSPARSE")) ||
848 (strcmp(access
, "RW"))) {
852 if (!path_is_absolute(fname
) && !path_has_protocol(fname
) &&
855 error_setg(errp
, "Cannot use relative extent paths with VMDK "
856 "descriptor file '%s'", bs
->file
->bs
->filename
);
860 extent_path
= g_malloc0(PATH_MAX
);
861 path_combine(extent_path
, PATH_MAX
, desc_file_path
, fname
);
863 ret
= snprintf(extent_opt_prefix
, 32, "extents.%d", s
->num_extents
);
866 extent_file
= bdrv_open_child(extent_path
, options
, extent_opt_prefix
,
867 bs
, &child_file
, false, &local_err
);
870 error_propagate(errp
, local_err
);
874 /* save to extents array */
875 if (!strcmp(type
, "FLAT") || !strcmp(type
, "VMFS")) {
878 ret
= vmdk_add_extent(bs
, extent_file
, true, sectors
,
879 0, 0, 0, 0, 0, &extent
, errp
);
881 bdrv_unref_child(bs
, extent_file
);
884 extent
->flat_start_offset
= flat_offset
<< 9;
885 } else if (!strcmp(type
, "SPARSE") || !strcmp(type
, "VMFSSPARSE")) {
886 /* SPARSE extent and VMFSSPARSE extent are both "COWD" sparse file*/
887 char *buf
= vmdk_read_desc(extent_file
, 0, errp
);
891 ret
= vmdk_open_sparse(bs
, extent_file
, bs
->open_flags
, buf
,
896 bdrv_unref_child(bs
, extent_file
);
899 extent
= &s
->extents
[s
->num_extents
- 1];
901 error_setg(errp
, "Unsupported extent type '%s'", type
);
902 bdrv_unref_child(bs
, extent_file
);
905 extent
->type
= g_strdup(type
);
912 if (np
[-1] == '\n') {
915 error_setg(errp
, "Invalid extent line: %.*s", (int)(np
- p
), p
);
919 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
, char *buf
,
920 QDict
*options
, Error
**errp
)
924 BDRVVmdkState
*s
= bs
->opaque
;
926 if (vmdk_parse_description(buf
, "createType", ct
, sizeof(ct
))) {
927 error_setg(errp
, "invalid VMDK image descriptor");
931 if (strcmp(ct
, "monolithicFlat") &&
932 strcmp(ct
, "vmfs") &&
933 strcmp(ct
, "vmfsSparse") &&
934 strcmp(ct
, "twoGbMaxExtentSparse") &&
935 strcmp(ct
, "twoGbMaxExtentFlat")) {
936 error_setg(errp
, "Unsupported image type '%s'", ct
);
940 s
->create_type
= g_strdup(ct
);
942 ret
= vmdk_parse_extents(buf
, bs
, bs
->file
->bs
->exact_filename
, options
,
948 static int vmdk_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
953 BDRVVmdkState
*s
= bs
->opaque
;
955 Error
*local_err
= NULL
;
957 bs
->file
= bdrv_open_child(NULL
, options
, "file", bs
, &child_file
,
963 buf
= vmdk_read_desc(bs
->file
, 0, errp
);
968 magic
= ldl_be_p(buf
);
972 ret
= vmdk_open_sparse(bs
, bs
->file
, flags
, buf
, options
,
974 s
->desc_offset
= 0x200;
977 ret
= vmdk_open_desc_file(bs
, flags
, buf
, options
, errp
);
984 /* try to open parent images, if exist */
985 ret
= vmdk_parent_open(bs
);
989 ret
= vmdk_read_cid(bs
, 0, &s
->cid
);
993 ret
= vmdk_read_cid(bs
, 1, &s
->parent_cid
);
997 qemu_co_mutex_init(&s
->lock
);
999 /* Disable migration when VMDK images are used */
1000 error_setg(&s
->migration_blocker
, "The vmdk format used by node '%s' "
1001 "does not support live migration",
1002 bdrv_get_device_or_node_name(bs
));
1003 ret
= migrate_add_blocker(s
->migration_blocker
, &local_err
);
1005 error_propagate(errp
, local_err
);
1006 error_free(s
->migration_blocker
);
1015 g_free(s
->create_type
);
1016 s
->create_type
= NULL
;
1017 vmdk_free_extents(bs
);
1022 static void vmdk_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1024 BDRVVmdkState
*s
= bs
->opaque
;
1027 for (i
= 0; i
< s
->num_extents
; i
++) {
1028 if (!s
->extents
[i
].flat
) {
1029 bs
->bl
.pwrite_zeroes_alignment
=
1030 MAX(bs
->bl
.pwrite_zeroes_alignment
,
1031 s
->extents
[i
].cluster_sectors
<< BDRV_SECTOR_BITS
);
1039 * Copy backing file's cluster that covers @sector_num, otherwise write zero,
1040 * to the cluster at @cluster_sector_num.
1042 * If @skip_start_sector < @skip_end_sector, the relative range
1043 * [@skip_start_sector, @skip_end_sector) is not copied or written, and leave
1044 * it for call to write user data in the request.
1046 static int get_whole_cluster(BlockDriverState
*bs
,
1048 uint64_t cluster_offset
,
1050 uint64_t skip_start_bytes
,
1051 uint64_t skip_end_bytes
)
1054 int64_t cluster_bytes
;
1055 uint8_t *whole_grain
;
1057 /* For COW, align request sector_num to cluster start */
1058 cluster_bytes
= extent
->cluster_sectors
<< BDRV_SECTOR_BITS
;
1059 offset
= QEMU_ALIGN_DOWN(offset
, cluster_bytes
);
1060 whole_grain
= qemu_blockalign(bs
, cluster_bytes
);
1063 memset(whole_grain
, 0, skip_start_bytes
);
1064 memset(whole_grain
+ skip_end_bytes
, 0, cluster_bytes
- skip_end_bytes
);
1067 assert(skip_end_bytes
<= cluster_bytes
);
1068 /* we will be here if it's first write on non-exist grain(cluster).
1069 * try to read from parent image, if exist */
1070 if (bs
->backing
&& !vmdk_is_cid_valid(bs
)) {
1075 /* Read backing data before skip range */
1076 if (skip_start_bytes
> 0) {
1078 /* qcow2 emits this on bs->file instead of bs->backing */
1079 BLKDBG_EVENT(extent
->file
, BLKDBG_COW_READ
);
1080 ret
= bdrv_pread(bs
->backing
, offset
, whole_grain
,
1087 BLKDBG_EVENT(extent
->file
, BLKDBG_COW_WRITE
);
1088 ret
= bdrv_pwrite(extent
->file
, cluster_offset
, whole_grain
,
1095 /* Read backing data after skip range */
1096 if (skip_end_bytes
< cluster_bytes
) {
1098 /* qcow2 emits this on bs->file instead of bs->backing */
1099 BLKDBG_EVENT(extent
->file
, BLKDBG_COW_READ
);
1100 ret
= bdrv_pread(bs
->backing
, offset
+ skip_end_bytes
,
1101 whole_grain
+ skip_end_bytes
,
1102 cluster_bytes
- skip_end_bytes
);
1108 BLKDBG_EVENT(extent
->file
, BLKDBG_COW_WRITE
);
1109 ret
= bdrv_pwrite(extent
->file
, cluster_offset
+ skip_end_bytes
,
1110 whole_grain
+ skip_end_bytes
,
1111 cluster_bytes
- skip_end_bytes
);
1120 qemu_vfree(whole_grain
);
1124 static int vmdk_L2update(VmdkExtent
*extent
, VmdkMetaData
*m_data
,
1127 offset
= cpu_to_le32(offset
);
1128 /* update L2 table */
1129 BLKDBG_EVENT(extent
->file
, BLKDBG_L2_UPDATE
);
1130 if (bdrv_pwrite_sync(extent
->file
,
1131 ((int64_t)m_data
->l2_offset
* 512)
1132 + (m_data
->l2_index
* sizeof(offset
)),
1133 &offset
, sizeof(offset
)) < 0) {
1136 /* update backup L2 table */
1137 if (extent
->l1_backup_table_offset
!= 0) {
1138 m_data
->l2_offset
= extent
->l1_backup_table
[m_data
->l1_index
];
1139 if (bdrv_pwrite_sync(extent
->file
,
1140 ((int64_t)m_data
->l2_offset
* 512)
1141 + (m_data
->l2_index
* sizeof(offset
)),
1142 &offset
, sizeof(offset
)) < 0) {
1146 if (m_data
->l2_cache_entry
) {
1147 *m_data
->l2_cache_entry
= offset
;
1154 * get_cluster_offset
1156 * Look up cluster offset in extent file by sector number, and store in
1159 * For flat extents, the start offset as parsed from the description file is
1162 * For sparse extents, look up in L1, L2 table. If allocate is true, return an
1163 * offset for a new cluster and update L2 cache. If there is a backing file,
1164 * COW is done before returning; otherwise, zeroes are written to the allocated
1165 * cluster. Both COW and zero writing skips the sector range
1166 * [@skip_start_sector, @skip_end_sector) passed in by caller, because caller
1167 * has new data to write there.
1169 * Returns: VMDK_OK if cluster exists and mapped in the image.
1170 * VMDK_UNALLOC if cluster is not mapped and @allocate is false.
1171 * VMDK_ERROR if failed.
1173 static int get_cluster_offset(BlockDriverState
*bs
,
1175 VmdkMetaData
*m_data
,
1178 uint64_t *cluster_offset
,
1179 uint64_t skip_start_bytes
,
1180 uint64_t skip_end_bytes
)
1182 unsigned int l1_index
, l2_offset
, l2_index
;
1183 int min_index
, i
, j
;
1184 uint32_t min_count
, *l2_table
;
1185 bool zeroed
= false;
1187 int64_t cluster_sector
;
1193 *cluster_offset
= extent
->flat_start_offset
;
1197 offset
-= (extent
->end_sector
- extent
->sectors
) * SECTOR_SIZE
;
1198 l1_index
= (offset
>> 9) / extent
->l1_entry_sectors
;
1199 if (l1_index
>= extent
->l1_size
) {
1202 l2_offset
= extent
->l1_table
[l1_index
];
1204 return VMDK_UNALLOC
;
1206 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
1207 if (l2_offset
== extent
->l2_cache_offsets
[i
]) {
1208 /* increment the hit count */
1209 if (++extent
->l2_cache_counts
[i
] == 0xffffffff) {
1210 for (j
= 0; j
< L2_CACHE_SIZE
; j
++) {
1211 extent
->l2_cache_counts
[j
] >>= 1;
1214 l2_table
= extent
->l2_cache
+ (i
* extent
->l2_size
);
1218 /* not found: load a new entry in the least used one */
1220 min_count
= 0xffffffff;
1221 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
1222 if (extent
->l2_cache_counts
[i
] < min_count
) {
1223 min_count
= extent
->l2_cache_counts
[i
];
1227 l2_table
= extent
->l2_cache
+ (min_index
* extent
->l2_size
);
1228 BLKDBG_EVENT(extent
->file
, BLKDBG_L2_LOAD
);
1229 if (bdrv_pread(extent
->file
,
1230 (int64_t)l2_offset
* 512,
1232 extent
->l2_size
* sizeof(uint32_t)
1233 ) != extent
->l2_size
* sizeof(uint32_t)) {
1237 extent
->l2_cache_offsets
[min_index
] = l2_offset
;
1238 extent
->l2_cache_counts
[min_index
] = 1;
1240 l2_index
= ((offset
>> 9) / extent
->cluster_sectors
) % extent
->l2_size
;
1241 cluster_sector
= le32_to_cpu(l2_table
[l2_index
]);
1243 if (extent
->has_zero_grain
&& cluster_sector
== VMDK_GTE_ZEROED
) {
1247 if (!cluster_sector
|| zeroed
) {
1249 return zeroed
? VMDK_ZEROED
: VMDK_UNALLOC
;
1252 cluster_sector
= extent
->next_cluster_sector
;
1253 extent
->next_cluster_sector
+= extent
->cluster_sectors
;
1255 /* First of all we write grain itself, to avoid race condition
1256 * that may to corrupt the image.
1257 * This problem may occur because of insufficient space on host disk
1258 * or inappropriate VM shutdown.
1260 ret
= get_whole_cluster(bs
, extent
, cluster_sector
* BDRV_SECTOR_SIZE
,
1261 offset
, skip_start_bytes
, skip_end_bytes
);
1267 m_data
->l1_index
= l1_index
;
1268 m_data
->l2_index
= l2_index
;
1269 m_data
->l2_offset
= l2_offset
;
1270 m_data
->l2_cache_entry
= &l2_table
[l2_index
];
1273 *cluster_offset
= cluster_sector
<< BDRV_SECTOR_BITS
;
1277 static VmdkExtent
*find_extent(BDRVVmdkState
*s
,
1278 int64_t sector_num
, VmdkExtent
*start_hint
)
1280 VmdkExtent
*extent
= start_hint
;
1283 extent
= &s
->extents
[0];
1285 while (extent
< &s
->extents
[s
->num_extents
]) {
1286 if (sector_num
< extent
->end_sector
) {
1294 static inline uint64_t vmdk_find_offset_in_cluster(VmdkExtent
*extent
,
1297 uint64_t extent_begin_offset
, extent_relative_offset
;
1298 uint64_t cluster_size
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
;
1300 extent_begin_offset
=
1301 (extent
->end_sector
- extent
->sectors
) * BDRV_SECTOR_SIZE
;
1302 extent_relative_offset
= offset
- extent_begin_offset
;
1303 return extent_relative_offset
% cluster_size
;
1306 static inline uint64_t vmdk_find_index_in_cluster(VmdkExtent
*extent
,
1310 offset
= vmdk_find_offset_in_cluster(extent
, sector_num
* BDRV_SECTOR_SIZE
);
1311 return offset
/ BDRV_SECTOR_SIZE
;
1314 static int64_t coroutine_fn
vmdk_co_get_block_status(BlockDriverState
*bs
,
1315 int64_t sector_num
, int nb_sectors
, int *pnum
, BlockDriverState
**file
)
1317 BDRVVmdkState
*s
= bs
->opaque
;
1318 int64_t index_in_cluster
, n
, ret
;
1322 extent
= find_extent(s
, sector_num
, NULL
);
1326 qemu_co_mutex_lock(&s
->lock
);
1327 ret
= get_cluster_offset(bs
, extent
, NULL
,
1328 sector_num
* 512, false, &offset
,
1330 qemu_co_mutex_unlock(&s
->lock
);
1332 index_in_cluster
= vmdk_find_index_in_cluster(extent
, sector_num
);
1341 ret
= BDRV_BLOCK_ZERO
;
1344 ret
= BDRV_BLOCK_DATA
;
1345 if (!extent
->compressed
) {
1346 ret
|= BDRV_BLOCK_OFFSET_VALID
;
1347 ret
|= (offset
+ (index_in_cluster
<< BDRV_SECTOR_BITS
))
1348 & BDRV_BLOCK_OFFSET_MASK
;
1350 *file
= extent
->file
->bs
;
1354 n
= extent
->cluster_sectors
- index_in_cluster
;
1355 if (n
> nb_sectors
) {
1362 static int vmdk_write_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1363 int64_t offset_in_cluster
, QEMUIOVector
*qiov
,
1364 uint64_t qiov_offset
, uint64_t n_bytes
,
1368 VmdkGrainMarker
*data
= NULL
;
1370 QEMUIOVector local_qiov
;
1372 int64_t write_offset
;
1373 int64_t write_end_sector
;
1375 if (extent
->compressed
) {
1376 void *compressed_data
;
1378 if (!extent
->has_marker
) {
1382 buf_len
= (extent
->cluster_sectors
<< 9) * 2;
1383 data
= g_malloc(buf_len
+ sizeof(VmdkGrainMarker
));
1385 compressed_data
= g_malloc(n_bytes
);
1386 qemu_iovec_to_buf(qiov
, qiov_offset
, compressed_data
, n_bytes
);
1387 ret
= compress(data
->data
, &buf_len
, compressed_data
, n_bytes
);
1388 g_free(compressed_data
);
1390 if (ret
!= Z_OK
|| buf_len
== 0) {
1395 data
->lba
= cpu_to_le64(offset
>> BDRV_SECTOR_BITS
);
1396 data
->size
= cpu_to_le32(buf_len
);
1398 n_bytes
= buf_len
+ sizeof(VmdkGrainMarker
);
1399 iov
= (struct iovec
) {
1403 qemu_iovec_init_external(&local_qiov
, &iov
, 1);
1405 BLKDBG_EVENT(extent
->file
, BLKDBG_WRITE_COMPRESSED
);
1407 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1408 qemu_iovec_concat(&local_qiov
, qiov
, qiov_offset
, n_bytes
);
1410 BLKDBG_EVENT(extent
->file
, BLKDBG_WRITE_AIO
);
1413 write_offset
= cluster_offset
+ offset_in_cluster
;
1414 ret
= bdrv_co_pwritev(extent
->file
, write_offset
, n_bytes
,
1417 write_end_sector
= DIV_ROUND_UP(write_offset
+ n_bytes
, BDRV_SECTOR_SIZE
);
1419 if (extent
->compressed
) {
1420 extent
->next_cluster_sector
= write_end_sector
;
1422 extent
->next_cluster_sector
= MAX(extent
->next_cluster_sector
,
1432 if (!extent
->compressed
) {
1433 qemu_iovec_destroy(&local_qiov
);
1438 static int vmdk_read_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1439 int64_t offset_in_cluster
, QEMUIOVector
*qiov
,
1443 int cluster_bytes
, buf_bytes
;
1444 uint8_t *cluster_buf
, *compressed_data
;
1445 uint8_t *uncomp_buf
;
1447 VmdkGrainMarker
*marker
;
1451 if (!extent
->compressed
) {
1452 BLKDBG_EVENT(extent
->file
, BLKDBG_READ_AIO
);
1453 ret
= bdrv_co_preadv(extent
->file
,
1454 cluster_offset
+ offset_in_cluster
, bytes
,
1461 cluster_bytes
= extent
->cluster_sectors
* 512;
1462 /* Read two clusters in case GrainMarker + compressed data > one cluster */
1463 buf_bytes
= cluster_bytes
* 2;
1464 cluster_buf
= g_malloc(buf_bytes
);
1465 uncomp_buf
= g_malloc(cluster_bytes
);
1466 BLKDBG_EVENT(extent
->file
, BLKDBG_READ_COMPRESSED
);
1467 ret
= bdrv_pread(extent
->file
,
1469 cluster_buf
, buf_bytes
);
1473 compressed_data
= cluster_buf
;
1474 buf_len
= cluster_bytes
;
1475 data_len
= cluster_bytes
;
1476 if (extent
->has_marker
) {
1477 marker
= (VmdkGrainMarker
*)cluster_buf
;
1478 compressed_data
= marker
->data
;
1479 data_len
= le32_to_cpu(marker
->size
);
1481 if (!data_len
|| data_len
> buf_bytes
) {
1485 ret
= uncompress(uncomp_buf
, &buf_len
, compressed_data
, data_len
);
1491 if (offset_in_cluster
< 0 ||
1492 offset_in_cluster
+ bytes
> buf_len
) {
1496 qemu_iovec_from_buf(qiov
, 0, uncomp_buf
+ offset_in_cluster
, bytes
);
1501 g_free(cluster_buf
);
1505 static int coroutine_fn
1506 vmdk_co_preadv(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
1507 QEMUIOVector
*qiov
, int flags
)
1509 BDRVVmdkState
*s
= bs
->opaque
;
1511 uint64_t n_bytes
, offset_in_cluster
;
1512 VmdkExtent
*extent
= NULL
;
1513 QEMUIOVector local_qiov
;
1514 uint64_t cluster_offset
;
1515 uint64_t bytes_done
= 0;
1517 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1518 qemu_co_mutex_lock(&s
->lock
);
1521 extent
= find_extent(s
, offset
>> BDRV_SECTOR_BITS
, extent
);
1526 ret
= get_cluster_offset(bs
, extent
, NULL
,
1527 offset
, false, &cluster_offset
, 0, 0);
1528 offset_in_cluster
= vmdk_find_offset_in_cluster(extent
, offset
);
1530 n_bytes
= MIN(bytes
, extent
->cluster_sectors
* BDRV_SECTOR_SIZE
1531 - offset_in_cluster
);
1533 if (ret
!= VMDK_OK
) {
1534 /* if not allocated, try to read from parent image, if exist */
1535 if (bs
->backing
&& ret
!= VMDK_ZEROED
) {
1536 if (!vmdk_is_cid_valid(bs
)) {
1541 qemu_iovec_reset(&local_qiov
);
1542 qemu_iovec_concat(&local_qiov
, qiov
, bytes_done
, n_bytes
);
1544 /* qcow2 emits this on bs->file instead of bs->backing */
1545 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
1546 ret
= bdrv_co_preadv(bs
->backing
, offset
, n_bytes
,
1552 qemu_iovec_memset(qiov
, bytes_done
, 0, n_bytes
);
1555 qemu_iovec_reset(&local_qiov
);
1556 qemu_iovec_concat(&local_qiov
, qiov
, bytes_done
, n_bytes
);
1558 ret
= vmdk_read_extent(extent
, cluster_offset
, offset_in_cluster
,
1559 &local_qiov
, n_bytes
);
1566 bytes_done
+= n_bytes
;
1571 qemu_co_mutex_unlock(&s
->lock
);
1572 qemu_iovec_destroy(&local_qiov
);
1579 * @zeroed: buf is ignored (data is zero), use zeroed_grain GTE feature
1580 * if possible, otherwise return -ENOTSUP.
1581 * @zero_dry_run: used for zeroed == true only, don't update L2 table, just try
1582 * with each cluster. By dry run we can find if the zero write
1583 * is possible without modifying image data.
1585 * Returns: error code with 0 for success.
1587 static int vmdk_pwritev(BlockDriverState
*bs
, uint64_t offset
,
1588 uint64_t bytes
, QEMUIOVector
*qiov
,
1589 bool zeroed
, bool zero_dry_run
)
1591 BDRVVmdkState
*s
= bs
->opaque
;
1592 VmdkExtent
*extent
= NULL
;
1594 int64_t offset_in_cluster
, n_bytes
;
1595 uint64_t cluster_offset
;
1596 uint64_t bytes_done
= 0;
1597 VmdkMetaData m_data
;
1599 if (DIV_ROUND_UP(offset
, BDRV_SECTOR_SIZE
) > bs
->total_sectors
) {
1600 error_report("Wrong offset: offset=0x%" PRIx64
1601 " total_sectors=0x%" PRIx64
,
1602 offset
, bs
->total_sectors
);
1607 extent
= find_extent(s
, offset
>> BDRV_SECTOR_BITS
, extent
);
1611 offset_in_cluster
= vmdk_find_offset_in_cluster(extent
, offset
);
1612 n_bytes
= MIN(bytes
, extent
->cluster_sectors
* BDRV_SECTOR_SIZE
1613 - offset_in_cluster
);
1615 ret
= get_cluster_offset(bs
, extent
, &m_data
, offset
,
1616 !(extent
->compressed
|| zeroed
),
1617 &cluster_offset
, offset_in_cluster
,
1618 offset_in_cluster
+ n_bytes
);
1619 if (extent
->compressed
) {
1620 if (ret
== VMDK_OK
) {
1621 /* Refuse write to allocated cluster for streamOptimized */
1622 error_report("Could not write to allocated cluster"
1623 " for streamOptimized");
1627 ret
= get_cluster_offset(bs
, extent
, &m_data
, offset
,
1628 true, &cluster_offset
, 0, 0);
1631 if (ret
== VMDK_ERROR
) {
1635 /* Do zeroed write, buf is ignored */
1636 if (extent
->has_zero_grain
&&
1637 offset_in_cluster
== 0 &&
1638 n_bytes
>= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
) {
1639 n_bytes
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
;
1640 if (!zero_dry_run
) {
1641 /* update L2 tables */
1642 if (vmdk_L2update(extent
, &m_data
, VMDK_GTE_ZEROED
)
1651 ret
= vmdk_write_extent(extent
, cluster_offset
, offset_in_cluster
,
1652 qiov
, bytes_done
, n_bytes
, offset
);
1657 /* update L2 tables */
1658 if (vmdk_L2update(extent
, &m_data
,
1659 cluster_offset
>> BDRV_SECTOR_BITS
)
1667 bytes_done
+= n_bytes
;
1669 /* update CID on the first write every time the virtual disk is
1671 if (!s
->cid_updated
) {
1672 ret
= vmdk_write_cid(bs
, g_random_int());
1676 s
->cid_updated
= true;
1682 static int coroutine_fn
1683 vmdk_co_pwritev(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
1684 QEMUIOVector
*qiov
, int flags
)
1687 BDRVVmdkState
*s
= bs
->opaque
;
1688 qemu_co_mutex_lock(&s
->lock
);
1689 ret
= vmdk_pwritev(bs
, offset
, bytes
, qiov
, false, false);
1690 qemu_co_mutex_unlock(&s
->lock
);
1694 static int coroutine_fn
1695 vmdk_co_pwritev_compressed(BlockDriverState
*bs
, uint64_t offset
,
1696 uint64_t bytes
, QEMUIOVector
*qiov
)
1698 return vmdk_co_pwritev(bs
, offset
, bytes
, qiov
, 0);
1701 static int coroutine_fn
vmdk_co_pwrite_zeroes(BlockDriverState
*bs
,
1704 BdrvRequestFlags flags
)
1707 BDRVVmdkState
*s
= bs
->opaque
;
1709 qemu_co_mutex_lock(&s
->lock
);
1710 /* write zeroes could fail if sectors not aligned to cluster, test it with
1711 * dry_run == true before really updating image */
1712 ret
= vmdk_pwritev(bs
, offset
, bytes
, NULL
, true, true);
1714 ret
= vmdk_pwritev(bs
, offset
, bytes
, NULL
, true, false);
1716 qemu_co_mutex_unlock(&s
->lock
);
1720 static int vmdk_create_extent(const char *filename
, int64_t filesize
,
1721 bool flat
, bool compress
, bool zeroed_grain
,
1722 QemuOpts
*opts
, Error
**errp
)
1725 BlockBackend
*blk
= NULL
;
1727 Error
*local_err
= NULL
;
1728 uint32_t tmp
, magic
, grains
, gd_sectors
, gt_size
, gt_count
;
1729 uint32_t *gd_buf
= NULL
;
1732 ret
= bdrv_create_file(filename
, opts
, &local_err
);
1734 error_propagate(errp
, local_err
);
1738 blk
= blk_new_open(filename
, NULL
, NULL
,
1739 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
,
1742 error_propagate(errp
, local_err
);
1747 blk_set_allow_write_beyond_eof(blk
, true);
1750 ret
= blk_truncate(blk
, filesize
, PREALLOC_MODE_OFF
, errp
);
1753 magic
= cpu_to_be32(VMDK4_MAGIC
);
1754 memset(&header
, 0, sizeof(header
));
1757 } else if (zeroed_grain
) {
1762 header
.flags
= VMDK4_FLAG_RGD
| VMDK4_FLAG_NL_DETECT
1763 | (compress
? VMDK4_FLAG_COMPRESS
| VMDK4_FLAG_MARKER
: 0)
1764 | (zeroed_grain
? VMDK4_FLAG_ZERO_GRAIN
: 0);
1765 header
.compressAlgorithm
= compress
? VMDK4_COMPRESSION_DEFLATE
: 0;
1766 header
.capacity
= filesize
/ BDRV_SECTOR_SIZE
;
1767 header
.granularity
= 128;
1768 header
.num_gtes_per_gt
= BDRV_SECTOR_SIZE
;
1770 grains
= DIV_ROUND_UP(filesize
/ BDRV_SECTOR_SIZE
, header
.granularity
);
1771 gt_size
= DIV_ROUND_UP(header
.num_gtes_per_gt
* sizeof(uint32_t),
1773 gt_count
= DIV_ROUND_UP(grains
, header
.num_gtes_per_gt
);
1774 gd_sectors
= DIV_ROUND_UP(gt_count
* sizeof(uint32_t), BDRV_SECTOR_SIZE
);
1776 header
.desc_offset
= 1;
1777 header
.desc_size
= 20;
1778 header
.rgd_offset
= header
.desc_offset
+ header
.desc_size
;
1779 header
.gd_offset
= header
.rgd_offset
+ gd_sectors
+ (gt_size
* gt_count
);
1780 header
.grain_offset
=
1781 ROUND_UP(header
.gd_offset
+ gd_sectors
+ (gt_size
* gt_count
),
1782 header
.granularity
);
1783 /* swap endianness for all header fields */
1784 header
.version
= cpu_to_le32(header
.version
);
1785 header
.flags
= cpu_to_le32(header
.flags
);
1786 header
.capacity
= cpu_to_le64(header
.capacity
);
1787 header
.granularity
= cpu_to_le64(header
.granularity
);
1788 header
.num_gtes_per_gt
= cpu_to_le32(header
.num_gtes_per_gt
);
1789 header
.desc_offset
= cpu_to_le64(header
.desc_offset
);
1790 header
.desc_size
= cpu_to_le64(header
.desc_size
);
1791 header
.rgd_offset
= cpu_to_le64(header
.rgd_offset
);
1792 header
.gd_offset
= cpu_to_le64(header
.gd_offset
);
1793 header
.grain_offset
= cpu_to_le64(header
.grain_offset
);
1794 header
.compressAlgorithm
= cpu_to_le16(header
.compressAlgorithm
);
1796 header
.check_bytes
[0] = 0xa;
1797 header
.check_bytes
[1] = 0x20;
1798 header
.check_bytes
[2] = 0xd;
1799 header
.check_bytes
[3] = 0xa;
1801 /* write all the data */
1802 ret
= blk_pwrite(blk
, 0, &magic
, sizeof(magic
), 0);
1804 error_setg(errp
, QERR_IO_ERROR
);
1807 ret
= blk_pwrite(blk
, sizeof(magic
), &header
, sizeof(header
), 0);
1809 error_setg(errp
, QERR_IO_ERROR
);
1813 ret
= blk_truncate(blk
, le64_to_cpu(header
.grain_offset
) << 9,
1814 PREALLOC_MODE_OFF
, errp
);
1819 /* write grain directory */
1820 gd_buf_size
= gd_sectors
* BDRV_SECTOR_SIZE
;
1821 gd_buf
= g_malloc0(gd_buf_size
);
1822 for (i
= 0, tmp
= le64_to_cpu(header
.rgd_offset
) + gd_sectors
;
1823 i
< gt_count
; i
++, tmp
+= gt_size
) {
1824 gd_buf
[i
] = cpu_to_le32(tmp
);
1826 ret
= blk_pwrite(blk
, le64_to_cpu(header
.rgd_offset
) * BDRV_SECTOR_SIZE
,
1827 gd_buf
, gd_buf_size
, 0);
1829 error_setg(errp
, QERR_IO_ERROR
);
1833 /* write backup grain directory */
1834 for (i
= 0, tmp
= le64_to_cpu(header
.gd_offset
) + gd_sectors
;
1835 i
< gt_count
; i
++, tmp
+= gt_size
) {
1836 gd_buf
[i
] = cpu_to_le32(tmp
);
1838 ret
= blk_pwrite(blk
, le64_to_cpu(header
.gd_offset
) * BDRV_SECTOR_SIZE
,
1839 gd_buf
, gd_buf_size
, 0);
1841 error_setg(errp
, QERR_IO_ERROR
);
1854 static int filename_decompose(const char *filename
, char *path
, char *prefix
,
1855 char *postfix
, size_t buf_len
, Error
**errp
)
1859 if (filename
== NULL
|| !strlen(filename
)) {
1860 error_setg(errp
, "No filename provided");
1863 p
= strrchr(filename
, '/');
1865 p
= strrchr(filename
, '\\');
1868 p
= strrchr(filename
, ':');
1872 if (p
- filename
>= buf_len
) {
1875 pstrcpy(path
, p
- filename
+ 1, filename
);
1880 q
= strrchr(p
, '.');
1882 pstrcpy(prefix
, buf_len
, p
);
1885 if (q
- p
>= buf_len
) {
1888 pstrcpy(prefix
, q
- p
+ 1, p
);
1889 pstrcpy(postfix
, buf_len
, q
);
1894 static int vmdk_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
1897 BlockBackend
*new_blk
= NULL
;
1898 Error
*local_err
= NULL
;
1900 int64_t total_size
= 0, filesize
;
1901 char *adapter_type
= NULL
;
1902 char *backing_file
= NULL
;
1903 char *hw_version
= NULL
;
1906 bool flat
, split
, compress
;
1907 GString
*ext_desc_lines
;
1908 char *path
= g_malloc0(PATH_MAX
);
1909 char *prefix
= g_malloc0(PATH_MAX
);
1910 char *postfix
= g_malloc0(PATH_MAX
);
1911 char *desc_line
= g_malloc0(BUF_SIZE
);
1912 char *ext_filename
= g_malloc0(PATH_MAX
);
1913 char *desc_filename
= g_malloc0(PATH_MAX
);
1914 const int64_t split_size
= 0x80000000; /* VMDK has constant split size */
1915 const char *desc_extent_line
;
1916 char *parent_desc_line
= g_malloc0(BUF_SIZE
);
1917 uint32_t parent_cid
= 0xffffffff;
1918 uint32_t number_heads
= 16;
1919 bool zeroed_grain
= false;
1920 uint32_t desc_offset
= 0, desc_len
;
1921 const char desc_template
[] =
1922 "# Disk DescriptorFile\n"
1925 "parentCID=%" PRIx32
"\n"
1926 "createType=\"%s\"\n"
1929 "# Extent description\n"
1932 "# The Disk Data Base\n"
1935 "ddb.virtualHWVersion = \"%s\"\n"
1936 "ddb.geometry.cylinders = \"%" PRId64
"\"\n"
1937 "ddb.geometry.heads = \"%" PRIu32
"\"\n"
1938 "ddb.geometry.sectors = \"63\"\n"
1939 "ddb.adapterType = \"%s\"\n";
1941 ext_desc_lines
= g_string_new(NULL
);
1943 if (filename_decompose(filename
, path
, prefix
, postfix
, PATH_MAX
, errp
)) {
1947 /* Read out options */
1948 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
1950 adapter_type
= qemu_opt_get_del(opts
, BLOCK_OPT_ADAPTER_TYPE
);
1951 backing_file
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
1952 hw_version
= qemu_opt_get_del(opts
, BLOCK_OPT_HWVERSION
);
1953 if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_COMPAT6
, false)) {
1954 if (strcmp(hw_version
, "undefined")) {
1956 "compat6 cannot be enabled with hwversion set");
1961 hw_version
= g_strdup("6");
1963 if (strcmp(hw_version
, "undefined") == 0) {
1965 hw_version
= g_strdup("4");
1967 fmt
= qemu_opt_get_del(opts
, BLOCK_OPT_SUBFMT
);
1968 if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_ZEROED_GRAIN
, false)) {
1969 zeroed_grain
= true;
1972 if (!adapter_type
) {
1973 adapter_type
= g_strdup("ide");
1974 } else if (strcmp(adapter_type
, "ide") &&
1975 strcmp(adapter_type
, "buslogic") &&
1976 strcmp(adapter_type
, "lsilogic") &&
1977 strcmp(adapter_type
, "legacyESX")) {
1978 error_setg(errp
, "Unknown adapter type: '%s'", adapter_type
);
1982 if (strcmp(adapter_type
, "ide") != 0) {
1983 /* that's the number of heads with which vmware operates when
1984 creating, exporting, etc. vmdk files with a non-ide adapter type */
1988 /* Default format to monolithicSparse */
1989 fmt
= g_strdup("monolithicSparse");
1990 } else if (strcmp(fmt
, "monolithicFlat") &&
1991 strcmp(fmt
, "monolithicSparse") &&
1992 strcmp(fmt
, "twoGbMaxExtentSparse") &&
1993 strcmp(fmt
, "twoGbMaxExtentFlat") &&
1994 strcmp(fmt
, "streamOptimized")) {
1995 error_setg(errp
, "Unknown subformat: '%s'", fmt
);
1999 split
= !(strcmp(fmt
, "twoGbMaxExtentFlat") &&
2000 strcmp(fmt
, "twoGbMaxExtentSparse"));
2001 flat
= !(strcmp(fmt
, "monolithicFlat") &&
2002 strcmp(fmt
, "twoGbMaxExtentFlat"));
2003 compress
= !strcmp(fmt
, "streamOptimized");
2005 desc_extent_line
= "RW %" PRId64
" FLAT \"%s\" 0\n";
2007 desc_extent_line
= "RW %" PRId64
" SPARSE \"%s\"\n";
2009 if (flat
&& backing_file
) {
2010 error_setg(errp
, "Flat image can't have backing file");
2014 if (flat
&& zeroed_grain
) {
2015 error_setg(errp
, "Flat image can't enable zeroed grain");
2021 char *full_backing
= g_new0(char, PATH_MAX
);
2022 bdrv_get_full_backing_filename_from_filename(filename
, backing_file
,
2023 full_backing
, PATH_MAX
,
2026 g_free(full_backing
);
2027 error_propagate(errp
, local_err
);
2032 blk
= blk_new_open(full_backing
, NULL
, NULL
,
2033 BDRV_O_NO_BACKING
, errp
);
2034 g_free(full_backing
);
2039 if (strcmp(blk_bs(blk
)->drv
->format_name
, "vmdk")) {
2044 ret
= vmdk_read_cid(blk_bs(blk
), 0, &parent_cid
);
2049 snprintf(parent_desc_line
, BUF_SIZE
,
2050 "parentFileNameHint=\"%s\"", backing_file
);
2053 /* Create extents */
2054 filesize
= total_size
;
2055 while (filesize
> 0) {
2056 int64_t size
= filesize
;
2058 if (split
&& size
> split_size
) {
2062 snprintf(desc_filename
, PATH_MAX
, "%s-%c%03d%s",
2063 prefix
, flat
? 'f' : 's', ++idx
, postfix
);
2065 snprintf(desc_filename
, PATH_MAX
, "%s-flat%s", prefix
, postfix
);
2067 snprintf(desc_filename
, PATH_MAX
, "%s%s", prefix
, postfix
);
2069 snprintf(ext_filename
, PATH_MAX
, "%s%s", path
, desc_filename
);
2071 if (vmdk_create_extent(ext_filename
, size
,
2072 flat
, compress
, zeroed_grain
, opts
, errp
)) {
2078 /* Format description line */
2079 snprintf(desc_line
, BUF_SIZE
,
2080 desc_extent_line
, size
/ BDRV_SECTOR_SIZE
, desc_filename
);
2081 g_string_append(ext_desc_lines
, desc_line
);
2083 /* generate descriptor file */
2084 desc
= g_strdup_printf(desc_template
,
2089 ext_desc_lines
->str
,
2092 (int64_t)(63 * number_heads
* BDRV_SECTOR_SIZE
),
2095 desc_len
= strlen(desc
);
2096 /* the descriptor offset = 0x200 */
2097 if (!split
&& !flat
) {
2098 desc_offset
= 0x200;
2100 ret
= bdrv_create_file(filename
, opts
, &local_err
);
2102 error_propagate(errp
, local_err
);
2107 new_blk
= blk_new_open(filename
, NULL
, NULL
,
2108 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
,
2110 if (new_blk
== NULL
) {
2111 error_propagate(errp
, local_err
);
2116 blk_set_allow_write_beyond_eof(new_blk
, true);
2118 ret
= blk_pwrite(new_blk
, desc_offset
, desc
, desc_len
, 0);
2120 error_setg_errno(errp
, -ret
, "Could not write description");
2123 /* bdrv_pwrite write padding zeros to align to sector, we don't need that
2124 * for description file */
2125 if (desc_offset
== 0) {
2126 ret
= blk_truncate(new_blk
, desc_len
, PREALLOC_MODE_OFF
, errp
);
2132 g_free(adapter_type
);
2133 g_free(backing_file
);
2141 g_free(ext_filename
);
2142 g_free(desc_filename
);
2143 g_free(parent_desc_line
);
2144 g_string_free(ext_desc_lines
, true);
2148 static void vmdk_close(BlockDriverState
*bs
)
2150 BDRVVmdkState
*s
= bs
->opaque
;
2152 vmdk_free_extents(bs
);
2153 g_free(s
->create_type
);
2155 migrate_del_blocker(s
->migration_blocker
);
2156 error_free(s
->migration_blocker
);
2159 static coroutine_fn
int vmdk_co_flush(BlockDriverState
*bs
)
2161 BDRVVmdkState
*s
= bs
->opaque
;
2165 for (i
= 0; i
< s
->num_extents
; i
++) {
2166 err
= bdrv_co_flush(s
->extents
[i
].file
->bs
);
2174 static int64_t vmdk_get_allocated_file_size(BlockDriverState
*bs
)
2179 BDRVVmdkState
*s
= bs
->opaque
;
2181 ret
= bdrv_get_allocated_file_size(bs
->file
->bs
);
2185 for (i
= 0; i
< s
->num_extents
; i
++) {
2186 if (s
->extents
[i
].file
== bs
->file
) {
2189 r
= bdrv_get_allocated_file_size(s
->extents
[i
].file
->bs
);
2198 static int vmdk_has_zero_init(BlockDriverState
*bs
)
2201 BDRVVmdkState
*s
= bs
->opaque
;
2203 /* If has a flat extent and its underlying storage doesn't have zero init,
2205 for (i
= 0; i
< s
->num_extents
; i
++) {
2206 if (s
->extents
[i
].flat
) {
2207 if (!bdrv_has_zero_init(s
->extents
[i
].file
->bs
)) {
2215 static ImageInfo
*vmdk_get_extent_info(VmdkExtent
*extent
)
2217 ImageInfo
*info
= g_new0(ImageInfo
, 1);
2219 *info
= (ImageInfo
){
2220 .filename
= g_strdup(extent
->file
->bs
->filename
),
2221 .format
= g_strdup(extent
->type
),
2222 .virtual_size
= extent
->sectors
* BDRV_SECTOR_SIZE
,
2223 .compressed
= extent
->compressed
,
2224 .has_compressed
= extent
->compressed
,
2225 .cluster_size
= extent
->cluster_sectors
* BDRV_SECTOR_SIZE
,
2226 .has_cluster_size
= !extent
->flat
,
2232 static int vmdk_check(BlockDriverState
*bs
, BdrvCheckResult
*result
,
2235 BDRVVmdkState
*s
= bs
->opaque
;
2236 VmdkExtent
*extent
= NULL
;
2237 int64_t sector_num
= 0;
2238 int64_t total_sectors
= bdrv_nb_sectors(bs
);
2240 uint64_t cluster_offset
;
2247 if (sector_num
>= total_sectors
) {
2250 extent
= find_extent(s
, sector_num
, extent
);
2253 "ERROR: could not find extent for sector %" PRId64
"\n",
2258 ret
= get_cluster_offset(bs
, extent
, NULL
,
2259 sector_num
<< BDRV_SECTOR_BITS
,
2260 false, &cluster_offset
, 0, 0);
2261 if (ret
== VMDK_ERROR
) {
2263 "ERROR: could not get cluster_offset for sector %"
2264 PRId64
"\n", sector_num
);
2267 if (ret
== VMDK_OK
) {
2268 int64_t extent_len
= bdrv_getlength(extent
->file
->bs
);
2269 if (extent_len
< 0) {
2271 "ERROR: could not get extent file length for sector %"
2272 PRId64
"\n", sector_num
);
2276 if (cluster_offset
>= extent_len
) {
2278 "ERROR: cluster offset for sector %"
2279 PRId64
" points after EOF\n", sector_num
);
2284 sector_num
+= extent
->cluster_sectors
;
2287 result
->corruptions
++;
2291 static ImageInfoSpecific
*vmdk_get_specific_info(BlockDriverState
*bs
)
2294 BDRVVmdkState
*s
= bs
->opaque
;
2295 ImageInfoSpecific
*spec_info
= g_new0(ImageInfoSpecific
, 1);
2296 ImageInfoList
**next
;
2298 *spec_info
= (ImageInfoSpecific
){
2299 .type
= IMAGE_INFO_SPECIFIC_KIND_VMDK
,
2301 .vmdk
.data
= g_new0(ImageInfoSpecificVmdk
, 1),
2305 *spec_info
->u
.vmdk
.data
= (ImageInfoSpecificVmdk
) {
2306 .create_type
= g_strdup(s
->create_type
),
2308 .parent_cid
= s
->parent_cid
,
2311 next
= &spec_info
->u
.vmdk
.data
->extents
;
2312 for (i
= 0; i
< s
->num_extents
; i
++) {
2313 *next
= g_new0(ImageInfoList
, 1);
2314 (*next
)->value
= vmdk_get_extent_info(&s
->extents
[i
]);
2315 (*next
)->next
= NULL
;
2316 next
= &(*next
)->next
;
2322 static bool vmdk_extents_type_eq(const VmdkExtent
*a
, const VmdkExtent
*b
)
2324 return a
->flat
== b
->flat
&&
2325 a
->compressed
== b
->compressed
&&
2326 (a
->flat
|| a
->cluster_sectors
== b
->cluster_sectors
);
2329 static int vmdk_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
2332 BDRVVmdkState
*s
= bs
->opaque
;
2333 assert(s
->num_extents
);
2335 /* See if we have multiple extents but they have different cases */
2336 for (i
= 1; i
< s
->num_extents
; i
++) {
2337 if (!vmdk_extents_type_eq(&s
->extents
[0], &s
->extents
[i
])) {
2341 bdi
->needs_compressed_writes
= s
->extents
[0].compressed
;
2342 if (!s
->extents
[0].flat
) {
2343 bdi
->cluster_size
= s
->extents
[0].cluster_sectors
<< BDRV_SECTOR_BITS
;
2348 static QemuOptsList vmdk_create_opts
= {
2349 .name
= "vmdk-create-opts",
2350 .head
= QTAILQ_HEAD_INITIALIZER(vmdk_create_opts
.head
),
2353 .name
= BLOCK_OPT_SIZE
,
2354 .type
= QEMU_OPT_SIZE
,
2355 .help
= "Virtual disk size"
2358 .name
= BLOCK_OPT_ADAPTER_TYPE
,
2359 .type
= QEMU_OPT_STRING
,
2360 .help
= "Virtual adapter type, can be one of "
2361 "ide (default), lsilogic, buslogic or legacyESX"
2364 .name
= BLOCK_OPT_BACKING_FILE
,
2365 .type
= QEMU_OPT_STRING
,
2366 .help
= "File name of a base image"
2369 .name
= BLOCK_OPT_COMPAT6
,
2370 .type
= QEMU_OPT_BOOL
,
2371 .help
= "VMDK version 6 image",
2372 .def_value_str
= "off"
2375 .name
= BLOCK_OPT_HWVERSION
,
2376 .type
= QEMU_OPT_STRING
,
2377 .help
= "VMDK hardware version",
2378 .def_value_str
= "undefined"
2381 .name
= BLOCK_OPT_SUBFMT
,
2382 .type
= QEMU_OPT_STRING
,
2384 "VMDK flat extent format, can be one of "
2385 "{monolithicSparse (default) | monolithicFlat | twoGbMaxExtentSparse | twoGbMaxExtentFlat | streamOptimized} "
2388 .name
= BLOCK_OPT_ZEROED_GRAIN
,
2389 .type
= QEMU_OPT_BOOL
,
2390 .help
= "Enable efficient zero writes "
2391 "using the zeroed-grain GTE feature"
2393 { /* end of list */ }
2397 static BlockDriver bdrv_vmdk
= {
2398 .format_name
= "vmdk",
2399 .instance_size
= sizeof(BDRVVmdkState
),
2400 .bdrv_probe
= vmdk_probe
,
2401 .bdrv_open
= vmdk_open
,
2402 .bdrv_check
= vmdk_check
,
2403 .bdrv_reopen_prepare
= vmdk_reopen_prepare
,
2404 .bdrv_child_perm
= bdrv_format_default_perms
,
2405 .bdrv_co_preadv
= vmdk_co_preadv
,
2406 .bdrv_co_pwritev
= vmdk_co_pwritev
,
2407 .bdrv_co_pwritev_compressed
= vmdk_co_pwritev_compressed
,
2408 .bdrv_co_pwrite_zeroes
= vmdk_co_pwrite_zeroes
,
2409 .bdrv_close
= vmdk_close
,
2410 .bdrv_create
= vmdk_create
,
2411 .bdrv_co_flush_to_disk
= vmdk_co_flush
,
2412 .bdrv_co_get_block_status
= vmdk_co_get_block_status
,
2413 .bdrv_get_allocated_file_size
= vmdk_get_allocated_file_size
,
2414 .bdrv_has_zero_init
= vmdk_has_zero_init
,
2415 .bdrv_get_specific_info
= vmdk_get_specific_info
,
2416 .bdrv_refresh_limits
= vmdk_refresh_limits
,
2417 .bdrv_get_info
= vmdk_get_info
,
2419 .supports_backing
= true,
2420 .create_opts
= &vmdk_create_opts
,
2423 static void bdrv_vmdk_init(void)
2425 bdrv_register(&bdrv_vmdk
);
2428 block_init(bdrv_vmdk_init
);