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 "qemu/module.h"
29 #include "migration/migration.h"
32 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
33 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
34 #define VMDK4_COMPRESSION_DEFLATE 1
35 #define VMDK4_FLAG_NL_DETECT (1 << 0)
36 #define VMDK4_FLAG_RGD (1 << 1)
37 /* Zeroed-grain enable bit */
38 #define VMDK4_FLAG_ZERO_GRAIN (1 << 2)
39 #define VMDK4_FLAG_COMPRESS (1 << 16)
40 #define VMDK4_FLAG_MARKER (1 << 17)
41 #define VMDK4_GD_AT_END 0xffffffffffffffffULL
43 #define VMDK_GTE_ZEROED 0x1
45 /* VMDK internal error codes */
47 #define VMDK_ERROR (-1)
48 /* Cluster not allocated */
49 #define VMDK_UNALLOC (-2)
50 #define VMDK_ZEROED (-3)
52 #define BLOCK_OPT_ZEROED_GRAIN "zeroed_grain"
57 uint32_t disk_sectors
;
59 uint32_t l1dir_offset
;
61 uint32_t file_sectors
;
64 uint32_t sectors_per_track
;
74 int32_t num_gtes_per_gte
;
80 uint16_t compressAlgorithm
;
81 } QEMU_PACKED VMDK4Header
;
83 #define L2_CACHE_SIZE 16
85 typedef struct VmdkExtent
{
86 BlockDriverState
*file
;
94 int64_t flat_start_offset
;
95 int64_t l1_table_offset
;
96 int64_t l1_backup_table_offset
;
98 uint32_t *l1_backup_table
;
100 uint32_t l1_entry_sectors
;
102 unsigned int l2_size
;
104 uint32_t l2_cache_offsets
[L2_CACHE_SIZE
];
105 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
107 unsigned int cluster_sectors
;
110 typedef struct BDRVVmdkState
{
116 /* Extent array with num_extents entries, ascend ordered by address */
118 Error
*migration_blocker
;
121 typedef struct VmdkMetaData
{
123 unsigned int l1_index
;
124 unsigned int l2_index
;
125 unsigned int l2_offset
;
127 uint32_t *l2_cache_entry
;
130 typedef struct VmdkGrainMarker
{
137 MARKER_END_OF_STREAM
= 0,
138 MARKER_GRAIN_TABLE
= 1,
139 MARKER_GRAIN_DIRECTORY
= 2,
143 static int vmdk_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
150 magic
= be32_to_cpu(*(uint32_t *)buf
);
151 if (magic
== VMDK3_MAGIC
||
152 magic
== VMDK4_MAGIC
) {
155 const char *p
= (const char *)buf
;
156 const char *end
= p
+ buf_size
;
159 /* skip comment line */
160 while (p
< end
&& *p
!= '\n') {
167 while (p
< end
&& *p
== ' ') {
170 /* skip '\r' if windows line endings used. */
171 if (p
< end
&& *p
== '\r') {
174 /* only accept blank lines before 'version=' line */
175 if (p
== end
|| *p
!= '\n') {
181 if (end
- p
>= strlen("version=X\n")) {
182 if (strncmp("version=1\n", p
, strlen("version=1\n")) == 0 ||
183 strncmp("version=2\n", p
, strlen("version=2\n")) == 0) {
187 if (end
- p
>= strlen("version=X\r\n")) {
188 if (strncmp("version=1\r\n", p
, strlen("version=1\r\n")) == 0 ||
189 strncmp("version=2\r\n", p
, strlen("version=2\r\n")) == 0) {
201 #define SECTOR_SIZE 512
202 #define DESC_SIZE (20 * SECTOR_SIZE) /* 20 sectors of 512 bytes each */
203 #define BUF_SIZE 4096
204 #define HEADER_SIZE 512 /* first sector of 512 bytes */
206 static void vmdk_free_extents(BlockDriverState
*bs
)
209 BDRVVmdkState
*s
= bs
->opaque
;
212 for (i
= 0; i
< s
->num_extents
; i
++) {
216 g_free(e
->l1_backup_table
);
217 if (e
->file
!= bs
->file
) {
218 bdrv_delete(e
->file
);
224 static void vmdk_free_last_extent(BlockDriverState
*bs
)
226 BDRVVmdkState
*s
= bs
->opaque
;
228 if (s
->num_extents
== 0) {
232 s
->extents
= g_realloc(s
->extents
, s
->num_extents
* sizeof(VmdkExtent
));
235 static uint32_t vmdk_read_cid(BlockDriverState
*bs
, int parent
)
237 char desc
[DESC_SIZE
];
238 uint32_t cid
= 0xffffffff;
239 const char *p_name
, *cid_str
;
241 BDRVVmdkState
*s
= bs
->opaque
;
244 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
250 cid_str
= "parentCID";
251 cid_str_size
= sizeof("parentCID");
254 cid_str_size
= sizeof("CID");
257 desc
[DESC_SIZE
- 1] = '\0';
258 p_name
= strstr(desc
, cid_str
);
259 if (p_name
!= NULL
) {
260 p_name
+= cid_str_size
;
261 sscanf(p_name
, "%x", &cid
);
267 static int vmdk_write_cid(BlockDriverState
*bs
, uint32_t cid
)
269 char desc
[DESC_SIZE
], tmp_desc
[DESC_SIZE
];
270 char *p_name
, *tmp_str
;
271 BDRVVmdkState
*s
= bs
->opaque
;
274 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
279 desc
[DESC_SIZE
- 1] = '\0';
280 tmp_str
= strstr(desc
, "parentCID");
281 if (tmp_str
== NULL
) {
285 pstrcpy(tmp_desc
, sizeof(tmp_desc
), tmp_str
);
286 p_name
= strstr(desc
, "CID");
287 if (p_name
!= NULL
) {
288 p_name
+= sizeof("CID");
289 snprintf(p_name
, sizeof(desc
) - (p_name
- desc
), "%x\n", cid
);
290 pstrcat(desc
, sizeof(desc
), tmp_desc
);
293 ret
= bdrv_pwrite_sync(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
301 static int vmdk_is_cid_valid(BlockDriverState
*bs
)
304 BDRVVmdkState
*s
= bs
->opaque
;
305 BlockDriverState
*p_bs
= bs
->backing_hd
;
309 cur_pcid
= vmdk_read_cid(p_bs
, 0);
310 if (s
->parent_cid
!= cur_pcid
) {
320 /* Queue extents, if any, for reopen() */
321 static int vmdk_reopen_prepare(BDRVReopenState
*state
,
322 BlockReopenQueue
*queue
, Error
**errp
)
329 assert(state
!= NULL
);
330 assert(state
->bs
!= NULL
);
333 error_set(errp
, ERROR_CLASS_GENERIC_ERROR
,
334 "No reopen queue for VMDK extents");
338 s
= state
->bs
->opaque
;
342 for (i
= 0; i
< s
->num_extents
; i
++) {
344 if (e
->file
!= state
->bs
->file
) {
345 bdrv_reopen_queue(queue
, e
->file
, state
->flags
);
354 static int vmdk_parent_open(BlockDriverState
*bs
)
357 char desc
[DESC_SIZE
+ 1];
358 BDRVVmdkState
*s
= bs
->opaque
;
361 desc
[DESC_SIZE
] = '\0';
362 ret
= bdrv_pread(bs
->file
, s
->desc_offset
, desc
, DESC_SIZE
);
367 p_name
= strstr(desc
, "parentFileNameHint");
368 if (p_name
!= NULL
) {
371 p_name
+= sizeof("parentFileNameHint") + 1;
372 end_name
= strchr(p_name
, '\"');
373 if (end_name
== NULL
) {
376 if ((end_name
- p_name
) > sizeof(bs
->backing_file
) - 1) {
380 pstrcpy(bs
->backing_file
, end_name
- p_name
+ 1, p_name
);
386 /* Create and append extent to the extent array. Return the added VmdkExtent
387 * address. return NULL if allocation failed. */
388 static VmdkExtent
*vmdk_add_extent(BlockDriverState
*bs
,
389 BlockDriverState
*file
, bool flat
, int64_t sectors
,
390 int64_t l1_offset
, int64_t l1_backup_offset
,
392 int l2_size
, unsigned int cluster_sectors
)
395 BDRVVmdkState
*s
= bs
->opaque
;
397 s
->extents
= g_realloc(s
->extents
,
398 (s
->num_extents
+ 1) * sizeof(VmdkExtent
));
399 extent
= &s
->extents
[s
->num_extents
];
402 memset(extent
, 0, sizeof(VmdkExtent
));
405 extent
->sectors
= sectors
;
406 extent
->l1_table_offset
= l1_offset
;
407 extent
->l1_backup_table_offset
= l1_backup_offset
;
408 extent
->l1_size
= l1_size
;
409 extent
->l1_entry_sectors
= l2_size
* cluster_sectors
;
410 extent
->l2_size
= l2_size
;
411 extent
->cluster_sectors
= cluster_sectors
;
413 if (s
->num_extents
> 1) {
414 extent
->end_sector
= (*(extent
- 1)).end_sector
+ extent
->sectors
;
416 extent
->end_sector
= extent
->sectors
;
418 bs
->total_sectors
= extent
->end_sector
;
422 static int vmdk_init_tables(BlockDriverState
*bs
, VmdkExtent
*extent
)
427 /* read the L1 table */
428 l1_size
= extent
->l1_size
* sizeof(uint32_t);
429 extent
->l1_table
= g_malloc(l1_size
);
430 ret
= bdrv_pread(extent
->file
,
431 extent
->l1_table_offset
,
437 for (i
= 0; i
< extent
->l1_size
; i
++) {
438 le32_to_cpus(&extent
->l1_table
[i
]);
441 if (extent
->l1_backup_table_offset
) {
442 extent
->l1_backup_table
= g_malloc(l1_size
);
443 ret
= bdrv_pread(extent
->file
,
444 extent
->l1_backup_table_offset
,
445 extent
->l1_backup_table
,
450 for (i
= 0; i
< extent
->l1_size
; i
++) {
451 le32_to_cpus(&extent
->l1_backup_table
[i
]);
456 g_malloc(extent
->l2_size
* L2_CACHE_SIZE
* sizeof(uint32_t));
459 g_free(extent
->l1_backup_table
);
461 g_free(extent
->l1_table
);
465 static int vmdk_open_vmdk3(BlockDriverState
*bs
,
466 BlockDriverState
*file
,
474 ret
= bdrv_pread(file
, sizeof(magic
), &header
, sizeof(header
));
478 extent
= vmdk_add_extent(bs
,
480 le32_to_cpu(header
.disk_sectors
),
481 le32_to_cpu(header
.l1dir_offset
) << 9,
483 le32_to_cpu(header
.granularity
));
484 ret
= vmdk_init_tables(bs
, extent
);
486 /* free extent allocated by vmdk_add_extent */
487 vmdk_free_last_extent(bs
);
492 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
,
493 int64_t desc_offset
);
495 static int vmdk_open_vmdk4(BlockDriverState
*bs
,
496 BlockDriverState
*file
,
501 uint32_t l1_size
, l1_entry_sectors
;
504 int64_t l1_backup_offset
= 0;
506 ret
= bdrv_pread(file
, sizeof(magic
), &header
, sizeof(header
));
510 if (header
.capacity
== 0 && header
.desc_offset
) {
511 return vmdk_open_desc_file(bs
, flags
, header
.desc_offset
<< 9);
514 if (le64_to_cpu(header
.gd_offset
) == VMDK4_GD_AT_END
) {
516 * The footer takes precedence over the header, so read it in. The
517 * footer starts at offset -1024 from the end: One sector for the
518 * footer, and another one for the end-of-stream marker.
525 uint8_t pad
[512 - 16];
526 } QEMU_PACKED footer_marker
;
530 uint8_t pad
[512 - 4 - sizeof(VMDK4Header
)];
536 uint8_t pad
[512 - 16];
537 } QEMU_PACKED eos_marker
;
538 } QEMU_PACKED footer
;
540 ret
= bdrv_pread(file
,
541 bs
->file
->total_sectors
* 512 - 1536,
542 &footer
, sizeof(footer
));
547 /* Some sanity checks for the footer */
548 if (be32_to_cpu(footer
.magic
) != VMDK4_MAGIC
||
549 le32_to_cpu(footer
.footer_marker
.size
) != 0 ||
550 le32_to_cpu(footer
.footer_marker
.type
) != MARKER_FOOTER
||
551 le64_to_cpu(footer
.eos_marker
.val
) != 0 ||
552 le32_to_cpu(footer
.eos_marker
.size
) != 0 ||
553 le32_to_cpu(footer
.eos_marker
.type
) != MARKER_END_OF_STREAM
)
558 header
= footer
.header
;
561 l1_entry_sectors
= le32_to_cpu(header
.num_gtes_per_gte
)
562 * le64_to_cpu(header
.granularity
);
563 if (l1_entry_sectors
== 0) {
566 l1_size
= (le64_to_cpu(header
.capacity
) + l1_entry_sectors
- 1)
568 if (le32_to_cpu(header
.flags
) & VMDK4_FLAG_RGD
) {
569 l1_backup_offset
= le64_to_cpu(header
.rgd_offset
) << 9;
571 extent
= vmdk_add_extent(bs
, file
, false,
572 le64_to_cpu(header
.capacity
),
573 le64_to_cpu(header
.gd_offset
) << 9,
576 le32_to_cpu(header
.num_gtes_per_gte
),
577 le64_to_cpu(header
.granularity
));
579 le16_to_cpu(header
.compressAlgorithm
) == VMDK4_COMPRESSION_DEFLATE
;
580 extent
->has_marker
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_MARKER
;
581 extent
->version
= le32_to_cpu(header
.version
);
582 extent
->has_zero_grain
= le32_to_cpu(header
.flags
) & VMDK4_FLAG_ZERO_GRAIN
;
583 ret
= vmdk_init_tables(bs
, extent
);
585 /* free extent allocated by vmdk_add_extent */
586 vmdk_free_last_extent(bs
);
591 /* find an option value out of descriptor file */
592 static int vmdk_parse_description(const char *desc
, const char *opt_name
,
593 char *buf
, int buf_size
)
595 char *opt_pos
, *opt_end
;
596 const char *end
= desc
+ strlen(desc
);
598 opt_pos
= strstr(desc
, opt_name
);
602 /* Skip "=\"" following opt_name */
603 opt_pos
+= strlen(opt_name
) + 2;
604 if (opt_pos
>= end
) {
608 while (opt_end
< end
&& *opt_end
!= '"') {
611 if (opt_end
== end
|| buf_size
< opt_end
- opt_pos
+ 1) {
614 pstrcpy(buf
, opt_end
- opt_pos
+ 1, opt_pos
);
618 /* Open an extent file and append to bs array */
619 static int vmdk_open_sparse(BlockDriverState
*bs
,
620 BlockDriverState
*file
,
625 if (bdrv_pread(file
, 0, &magic
, sizeof(magic
)) != sizeof(magic
)) {
629 magic
= be32_to_cpu(magic
);
632 return vmdk_open_vmdk3(bs
, file
, flags
);
635 return vmdk_open_vmdk4(bs
, file
, flags
);
643 static int vmdk_parse_extents(const char *desc
, BlockDriverState
*bs
,
644 const char *desc_file_path
)
650 const char *p
= desc
;
653 char extent_path
[PATH_MAX
];
654 BlockDriverState
*extent_file
;
657 /* parse extent line:
658 * RW [size in sectors] FLAT "file-name.vmdk" OFFSET
660 * RW [size in sectors] SPARSE "file-name.vmdk"
663 ret
= sscanf(p
, "%10s %" SCNd64
" %10s \"%511[^\n\r\"]\" %" SCNd64
,
664 access
, §ors
, type
, fname
, &flat_offset
);
665 if (ret
< 4 || strcmp(access
, "RW")) {
667 } else if (!strcmp(type
, "FLAT")) {
668 if (ret
!= 5 || flat_offset
< 0) {
671 } else if (ret
!= 4) {
676 (strcmp(type
, "FLAT") && strcmp(type
, "SPARSE")) ||
677 (strcmp(access
, "RW"))) {
681 path_combine(extent_path
, sizeof(extent_path
),
682 desc_file_path
, fname
);
683 ret
= bdrv_file_open(&extent_file
, extent_path
, NULL
, bs
->open_flags
);
688 /* save to extents array */
689 if (!strcmp(type
, "FLAT")) {
693 extent
= vmdk_add_extent(bs
, extent_file
, true, sectors
,
694 0, 0, 0, 0, sectors
);
695 extent
->flat_start_offset
= flat_offset
<< 9;
696 } else if (!strcmp(type
, "SPARSE")) {
698 ret
= vmdk_open_sparse(bs
, extent_file
, bs
->open_flags
);
700 bdrv_delete(extent_file
);
705 "VMDK: Not supported extent type \"%s\""".\n", type
);
709 /* move to next line */
710 while (*p
&& *p
!= '\n') {
718 static int vmdk_open_desc_file(BlockDriverState
*bs
, int flags
,
724 BDRVVmdkState
*s
= bs
->opaque
;
726 ret
= bdrv_pread(bs
->file
, desc_offset
, buf
, sizeof(buf
));
731 if (vmdk_parse_description(buf
, "createType", ct
, sizeof(ct
))) {
734 if (strcmp(ct
, "monolithicFlat") &&
735 strcmp(ct
, "twoGbMaxExtentSparse") &&
736 strcmp(ct
, "twoGbMaxExtentFlat")) {
738 "VMDK: Not supported image type \"%s\""".\n", ct
);
742 return vmdk_parse_extents(buf
, bs
, bs
->file
->filename
);
745 static int vmdk_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
748 BDRVVmdkState
*s
= bs
->opaque
;
750 if (vmdk_open_sparse(bs
, bs
->file
, flags
) == 0) {
751 s
->desc_offset
= 0x200;
753 ret
= vmdk_open_desc_file(bs
, flags
, 0);
758 /* try to open parent images, if exist */
759 ret
= vmdk_parent_open(bs
);
763 s
->parent_cid
= vmdk_read_cid(bs
, 1);
764 qemu_co_mutex_init(&s
->lock
);
766 /* Disable migration when VMDK images are used */
767 error_set(&s
->migration_blocker
,
768 QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
769 "vmdk", bs
->device_name
, "live migration");
770 migrate_add_blocker(s
->migration_blocker
);
775 vmdk_free_extents(bs
);
779 static int get_whole_cluster(BlockDriverState
*bs
,
781 uint64_t cluster_offset
,
785 /* 128 sectors * 512 bytes each = grain size 64KB */
786 uint8_t whole_grain
[extent
->cluster_sectors
* 512];
788 /* we will be here if it's first write on non-exist grain(cluster).
789 * try to read from parent image, if exist */
790 if (bs
->backing_hd
) {
793 if (!vmdk_is_cid_valid(bs
)) {
797 /* floor offset to cluster */
798 offset
-= offset
% (extent
->cluster_sectors
* 512);
799 ret
= bdrv_read(bs
->backing_hd
, offset
>> 9, whole_grain
,
800 extent
->cluster_sectors
);
805 /* Write grain only into the active image */
806 ret
= bdrv_write(extent
->file
, cluster_offset
, whole_grain
,
807 extent
->cluster_sectors
);
815 static int vmdk_L2update(VmdkExtent
*extent
, VmdkMetaData
*m_data
)
818 QEMU_BUILD_BUG_ON(sizeof(offset
) != sizeof(m_data
->offset
));
819 offset
= cpu_to_le32(m_data
->offset
);
820 /* update L2 table */
821 if (bdrv_pwrite_sync(
823 ((int64_t)m_data
->l2_offset
* 512)
824 + (m_data
->l2_index
* sizeof(m_data
->offset
)),
825 &offset
, sizeof(offset
)) < 0) {
828 /* update backup L2 table */
829 if (extent
->l1_backup_table_offset
!= 0) {
830 m_data
->l2_offset
= extent
->l1_backup_table
[m_data
->l1_index
];
831 if (bdrv_pwrite_sync(
833 ((int64_t)m_data
->l2_offset
* 512)
834 + (m_data
->l2_index
* sizeof(m_data
->offset
)),
835 &offset
, sizeof(offset
)) < 0) {
839 if (m_data
->l2_cache_entry
) {
840 *m_data
->l2_cache_entry
= offset
;
846 static int get_cluster_offset(BlockDriverState
*bs
,
848 VmdkMetaData
*m_data
,
851 uint64_t *cluster_offset
)
853 unsigned int l1_index
, l2_offset
, l2_index
;
855 uint32_t min_count
, *l2_table
;
862 *cluster_offset
= extent
->flat_start_offset
;
866 offset
-= (extent
->end_sector
- extent
->sectors
) * SECTOR_SIZE
;
867 l1_index
= (offset
>> 9) / extent
->l1_entry_sectors
;
868 if (l1_index
>= extent
->l1_size
) {
871 l2_offset
= extent
->l1_table
[l1_index
];
875 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
876 if (l2_offset
== extent
->l2_cache_offsets
[i
]) {
877 /* increment the hit count */
878 if (++extent
->l2_cache_counts
[i
] == 0xffffffff) {
879 for (j
= 0; j
< L2_CACHE_SIZE
; j
++) {
880 extent
->l2_cache_counts
[j
] >>= 1;
883 l2_table
= extent
->l2_cache
+ (i
* extent
->l2_size
);
887 /* not found: load a new entry in the least used one */
889 min_count
= 0xffffffff;
890 for (i
= 0; i
< L2_CACHE_SIZE
; i
++) {
891 if (extent
->l2_cache_counts
[i
] < min_count
) {
892 min_count
= extent
->l2_cache_counts
[i
];
896 l2_table
= extent
->l2_cache
+ (min_index
* extent
->l2_size
);
899 (int64_t)l2_offset
* 512,
901 extent
->l2_size
* sizeof(uint32_t)
902 ) != extent
->l2_size
* sizeof(uint32_t)) {
906 extent
->l2_cache_offsets
[min_index
] = l2_offset
;
907 extent
->l2_cache_counts
[min_index
] = 1;
909 l2_index
= ((offset
>> 9) / extent
->cluster_sectors
) % extent
->l2_size
;
910 *cluster_offset
= le32_to_cpu(l2_table
[l2_index
]);
914 m_data
->l1_index
= l1_index
;
915 m_data
->l2_index
= l2_index
;
916 m_data
->offset
= *cluster_offset
;
917 m_data
->l2_offset
= l2_offset
;
918 m_data
->l2_cache_entry
= &l2_table
[l2_index
];
920 if (extent
->has_zero_grain
&& *cluster_offset
== VMDK_GTE_ZEROED
) {
924 if (!*cluster_offset
|| zeroed
) {
926 return zeroed
? VMDK_ZEROED
: VMDK_UNALLOC
;
929 /* Avoid the L2 tables update for the images that have snapshots. */
930 *cluster_offset
= bdrv_getlength(extent
->file
);
931 if (!extent
->compressed
) {
934 *cluster_offset
+ (extent
->cluster_sectors
<< 9)
938 *cluster_offset
>>= 9;
939 l2_table
[l2_index
] = cpu_to_le32(*cluster_offset
);
941 /* First of all we write grain itself, to avoid race condition
942 * that may to corrupt the image.
943 * This problem may occur because of insufficient space on host disk
944 * or inappropriate VM shutdown.
946 if (get_whole_cluster(
947 bs
, extent
, *cluster_offset
, offset
, allocate
) == -1) {
952 m_data
->offset
= *cluster_offset
;
955 *cluster_offset
<<= 9;
959 static VmdkExtent
*find_extent(BDRVVmdkState
*s
,
960 int64_t sector_num
, VmdkExtent
*start_hint
)
962 VmdkExtent
*extent
= start_hint
;
965 extent
= &s
->extents
[0];
967 while (extent
< &s
->extents
[s
->num_extents
]) {
968 if (sector_num
< extent
->end_sector
) {
976 static int coroutine_fn
vmdk_co_is_allocated(BlockDriverState
*bs
,
977 int64_t sector_num
, int nb_sectors
, int *pnum
)
979 BDRVVmdkState
*s
= bs
->opaque
;
980 int64_t index_in_cluster
, n
, ret
;
984 extent
= find_extent(s
, sector_num
, NULL
);
988 qemu_co_mutex_lock(&s
->lock
);
989 ret
= get_cluster_offset(bs
, extent
, NULL
,
990 sector_num
* 512, 0, &offset
);
991 qemu_co_mutex_unlock(&s
->lock
);
993 ret
= (ret
== VMDK_OK
|| ret
== VMDK_ZEROED
);
995 index_in_cluster
= sector_num
% extent
->cluster_sectors
;
996 n
= extent
->cluster_sectors
- index_in_cluster
;
997 if (n
> nb_sectors
) {
1004 static int vmdk_write_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1005 int64_t offset_in_cluster
, const uint8_t *buf
,
1006 int nb_sectors
, int64_t sector_num
)
1009 VmdkGrainMarker
*data
= NULL
;
1011 const uint8_t *write_buf
= buf
;
1012 int write_len
= nb_sectors
* 512;
1014 if (extent
->compressed
) {
1015 if (!extent
->has_marker
) {
1019 buf_len
= (extent
->cluster_sectors
<< 9) * 2;
1020 data
= g_malloc(buf_len
+ sizeof(VmdkGrainMarker
));
1021 if (compress(data
->data
, &buf_len
, buf
, nb_sectors
<< 9) != Z_OK
||
1026 data
->lba
= sector_num
;
1027 data
->size
= buf_len
;
1028 write_buf
= (uint8_t *)data
;
1029 write_len
= buf_len
+ sizeof(VmdkGrainMarker
);
1031 ret
= bdrv_pwrite(extent
->file
,
1032 cluster_offset
+ offset_in_cluster
,
1035 if (ret
!= write_len
) {
1036 ret
= ret
< 0 ? ret
: -EIO
;
1045 static int vmdk_read_extent(VmdkExtent
*extent
, int64_t cluster_offset
,
1046 int64_t offset_in_cluster
, uint8_t *buf
,
1050 int cluster_bytes
, buf_bytes
;
1051 uint8_t *cluster_buf
, *compressed_data
;
1052 uint8_t *uncomp_buf
;
1054 VmdkGrainMarker
*marker
;
1058 if (!extent
->compressed
) {
1059 ret
= bdrv_pread(extent
->file
,
1060 cluster_offset
+ offset_in_cluster
,
1061 buf
, nb_sectors
* 512);
1062 if (ret
== nb_sectors
* 512) {
1068 cluster_bytes
= extent
->cluster_sectors
* 512;
1069 /* Read two clusters in case GrainMarker + compressed data > one cluster */
1070 buf_bytes
= cluster_bytes
* 2;
1071 cluster_buf
= g_malloc(buf_bytes
);
1072 uncomp_buf
= g_malloc(cluster_bytes
);
1073 ret
= bdrv_pread(extent
->file
,
1075 cluster_buf
, buf_bytes
);
1079 compressed_data
= cluster_buf
;
1080 buf_len
= cluster_bytes
;
1081 data_len
= cluster_bytes
;
1082 if (extent
->has_marker
) {
1083 marker
= (VmdkGrainMarker
*)cluster_buf
;
1084 compressed_data
= marker
->data
;
1085 data_len
= le32_to_cpu(marker
->size
);
1087 if (!data_len
|| data_len
> buf_bytes
) {
1091 ret
= uncompress(uncomp_buf
, &buf_len
, compressed_data
, data_len
);
1097 if (offset_in_cluster
< 0 ||
1098 offset_in_cluster
+ nb_sectors
* 512 > buf_len
) {
1102 memcpy(buf
, uncomp_buf
+ offset_in_cluster
, nb_sectors
* 512);
1107 g_free(cluster_buf
);
1111 static int vmdk_read(BlockDriverState
*bs
, int64_t sector_num
,
1112 uint8_t *buf
, int nb_sectors
)
1114 BDRVVmdkState
*s
= bs
->opaque
;
1116 uint64_t n
, index_in_cluster
;
1117 uint64_t extent_begin_sector
, extent_relative_sector_num
;
1118 VmdkExtent
*extent
= NULL
;
1119 uint64_t cluster_offset
;
1121 while (nb_sectors
> 0) {
1122 extent
= find_extent(s
, sector_num
, extent
);
1126 ret
= get_cluster_offset(
1128 sector_num
<< 9, 0, &cluster_offset
);
1129 extent_begin_sector
= extent
->end_sector
- extent
->sectors
;
1130 extent_relative_sector_num
= sector_num
- extent_begin_sector
;
1131 index_in_cluster
= extent_relative_sector_num
% extent
->cluster_sectors
;
1132 n
= extent
->cluster_sectors
- index_in_cluster
;
1133 if (n
> nb_sectors
) {
1136 if (ret
!= VMDK_OK
) {
1137 /* if not allocated, try to read from parent image, if exist */
1138 if (bs
->backing_hd
&& ret
!= VMDK_ZEROED
) {
1139 if (!vmdk_is_cid_valid(bs
)) {
1142 ret
= bdrv_read(bs
->backing_hd
, sector_num
, buf
, n
);
1147 memset(buf
, 0, 512 * n
);
1150 ret
= vmdk_read_extent(extent
,
1151 cluster_offset
, index_in_cluster
* 512,
1164 static coroutine_fn
int vmdk_co_read(BlockDriverState
*bs
, int64_t sector_num
,
1165 uint8_t *buf
, int nb_sectors
)
1168 BDRVVmdkState
*s
= bs
->opaque
;
1169 qemu_co_mutex_lock(&s
->lock
);
1170 ret
= vmdk_read(bs
, sector_num
, buf
, nb_sectors
);
1171 qemu_co_mutex_unlock(&s
->lock
);
1177 * @zeroed: buf is ignored (data is zero), use zeroed_grain GTE feature
1178 * if possible, otherwise return -ENOTSUP.
1179 * @zero_dry_run: used for zeroed == true only, don't update L2 table, just
1181 * Returns: error code with 0 for success.
1183 static int vmdk_write(BlockDriverState
*bs
, int64_t sector_num
,
1184 const uint8_t *buf
, int nb_sectors
,
1185 bool zeroed
, bool zero_dry_run
)
1187 BDRVVmdkState
*s
= bs
->opaque
;
1188 VmdkExtent
*extent
= NULL
;
1190 int64_t index_in_cluster
;
1191 uint64_t extent_begin_sector
, extent_relative_sector_num
;
1192 uint64_t cluster_offset
;
1193 VmdkMetaData m_data
;
1195 if (sector_num
> bs
->total_sectors
) {
1197 "(VMDK) Wrong offset: sector_num=0x%" PRIx64
1198 " total_sectors=0x%" PRIx64
"\n",
1199 sector_num
, bs
->total_sectors
);
1203 while (nb_sectors
> 0) {
1204 extent
= find_extent(s
, sector_num
, extent
);
1208 ret
= get_cluster_offset(
1212 sector_num
<< 9, !extent
->compressed
,
1214 if (extent
->compressed
) {
1215 if (ret
== VMDK_OK
) {
1216 /* Refuse write to allocated cluster for streamOptimized */
1218 "VMDK: can't write to allocated cluster"
1219 " for streamOptimized\n");
1223 ret
= get_cluster_offset(
1231 if (ret
== VMDK_ERROR
) {
1234 extent_begin_sector
= extent
->end_sector
- extent
->sectors
;
1235 extent_relative_sector_num
= sector_num
- extent_begin_sector
;
1236 index_in_cluster
= extent_relative_sector_num
% extent
->cluster_sectors
;
1237 n
= extent
->cluster_sectors
- index_in_cluster
;
1238 if (n
> nb_sectors
) {
1242 /* Do zeroed write, buf is ignored */
1243 if (extent
->has_zero_grain
&&
1244 index_in_cluster
== 0 &&
1245 n
>= extent
->cluster_sectors
) {
1246 n
= extent
->cluster_sectors
;
1247 if (!zero_dry_run
) {
1248 m_data
.offset
= VMDK_GTE_ZEROED
;
1249 /* update L2 tables */
1250 if (vmdk_L2update(extent
, &m_data
) != VMDK_OK
) {
1258 ret
= vmdk_write_extent(extent
,
1259 cluster_offset
, index_in_cluster
* 512,
1260 buf
, n
, sector_num
);
1265 /* update L2 tables */
1266 if (vmdk_L2update(extent
, &m_data
) != VMDK_OK
) {
1275 /* update CID on the first write every time the virtual disk is
1277 if (!s
->cid_updated
) {
1278 ret
= vmdk_write_cid(bs
, time(NULL
));
1282 s
->cid_updated
= true;
1288 static coroutine_fn
int vmdk_co_write(BlockDriverState
*bs
, int64_t sector_num
,
1289 const uint8_t *buf
, int nb_sectors
)
1292 BDRVVmdkState
*s
= bs
->opaque
;
1293 qemu_co_mutex_lock(&s
->lock
);
1294 ret
= vmdk_write(bs
, sector_num
, buf
, nb_sectors
, false, false);
1295 qemu_co_mutex_unlock(&s
->lock
);
1299 static int coroutine_fn
vmdk_co_write_zeroes(BlockDriverState
*bs
,
1304 BDRVVmdkState
*s
= bs
->opaque
;
1305 qemu_co_mutex_lock(&s
->lock
);
1306 ret
= vmdk_write(bs
, sector_num
, NULL
, nb_sectors
, true, true);
1308 ret
= vmdk_write(bs
, sector_num
, NULL
, nb_sectors
, true, false);
1310 qemu_co_mutex_unlock(&s
->lock
);
1315 static int vmdk_create_extent(const char *filename
, int64_t filesize
,
1316 bool flat
, bool compress
, bool zeroed_grain
)
1321 uint32_t tmp
, magic
, grains
, gd_size
, gt_size
, gt_count
;
1323 fd
= qemu_open(filename
,
1324 O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
| O_LARGEFILE
,
1330 ret
= ftruncate(fd
, filesize
);
1336 magic
= cpu_to_be32(VMDK4_MAGIC
);
1337 memset(&header
, 0, sizeof(header
));
1338 header
.version
= zeroed_grain
? 2 : 1;
1339 header
.flags
= VMDK4_FLAG_RGD
| VMDK4_FLAG_NL_DETECT
1340 | (compress
? VMDK4_FLAG_COMPRESS
| VMDK4_FLAG_MARKER
: 0)
1341 | (zeroed_grain
? VMDK4_FLAG_ZERO_GRAIN
: 0);
1342 header
.compressAlgorithm
= compress
? VMDK4_COMPRESSION_DEFLATE
: 0;
1343 header
.capacity
= filesize
/ 512;
1344 header
.granularity
= 128;
1345 header
.num_gtes_per_gte
= 512;
1347 grains
= (filesize
/ 512 + header
.granularity
- 1) / header
.granularity
;
1348 gt_size
= ((header
.num_gtes_per_gte
* sizeof(uint32_t)) + 511) >> 9;
1350 (grains
+ header
.num_gtes_per_gte
- 1) / header
.num_gtes_per_gte
;
1351 gd_size
= (gt_count
* sizeof(uint32_t) + 511) >> 9;
1353 header
.desc_offset
= 1;
1354 header
.desc_size
= 20;
1355 header
.rgd_offset
= header
.desc_offset
+ header
.desc_size
;
1356 header
.gd_offset
= header
.rgd_offset
+ gd_size
+ (gt_size
* gt_count
);
1357 header
.grain_offset
=
1358 ((header
.gd_offset
+ gd_size
+ (gt_size
* gt_count
) +
1359 header
.granularity
- 1) / header
.granularity
) *
1361 /* swap endianness for all header fields */
1362 header
.version
= cpu_to_le32(header
.version
);
1363 header
.flags
= cpu_to_le32(header
.flags
);
1364 header
.capacity
= cpu_to_le64(header
.capacity
);
1365 header
.granularity
= cpu_to_le64(header
.granularity
);
1366 header
.num_gtes_per_gte
= cpu_to_le32(header
.num_gtes_per_gte
);
1367 header
.desc_offset
= cpu_to_le64(header
.desc_offset
);
1368 header
.desc_size
= cpu_to_le64(header
.desc_size
);
1369 header
.rgd_offset
= cpu_to_le64(header
.rgd_offset
);
1370 header
.gd_offset
= cpu_to_le64(header
.gd_offset
);
1371 header
.grain_offset
= cpu_to_le64(header
.grain_offset
);
1372 header
.compressAlgorithm
= cpu_to_le16(header
.compressAlgorithm
);
1374 header
.check_bytes
[0] = 0xa;
1375 header
.check_bytes
[1] = 0x20;
1376 header
.check_bytes
[2] = 0xd;
1377 header
.check_bytes
[3] = 0xa;
1379 /* write all the data */
1380 ret
= qemu_write_full(fd
, &magic
, sizeof(magic
));
1381 if (ret
!= sizeof(magic
)) {
1385 ret
= qemu_write_full(fd
, &header
, sizeof(header
));
1386 if (ret
!= sizeof(header
)) {
1391 ret
= ftruncate(fd
, le64_to_cpu(header
.grain_offset
) << 9);
1397 /* write grain directory */
1398 lseek(fd
, le64_to_cpu(header
.rgd_offset
) << 9, SEEK_SET
);
1399 for (i
= 0, tmp
= le64_to_cpu(header
.rgd_offset
) + gd_size
;
1400 i
< gt_count
; i
++, tmp
+= gt_size
) {
1401 ret
= qemu_write_full(fd
, &tmp
, sizeof(tmp
));
1402 if (ret
!= sizeof(tmp
)) {
1408 /* write backup grain directory */
1409 lseek(fd
, le64_to_cpu(header
.gd_offset
) << 9, SEEK_SET
);
1410 for (i
= 0, tmp
= le64_to_cpu(header
.gd_offset
) + gd_size
;
1411 i
< gt_count
; i
++, tmp
+= gt_size
) {
1412 ret
= qemu_write_full(fd
, &tmp
, sizeof(tmp
));
1413 if (ret
!= sizeof(tmp
)) {
1425 static int filename_decompose(const char *filename
, char *path
, char *prefix
,
1426 char *postfix
, size_t buf_len
)
1430 if (filename
== NULL
|| !strlen(filename
)) {
1431 fprintf(stderr
, "Vmdk: no filename provided.\n");
1434 p
= strrchr(filename
, '/');
1436 p
= strrchr(filename
, '\\');
1439 p
= strrchr(filename
, ':');
1443 if (p
- filename
>= buf_len
) {
1446 pstrcpy(path
, p
- filename
+ 1, filename
);
1451 q
= strrchr(p
, '.');
1453 pstrcpy(prefix
, buf_len
, p
);
1456 if (q
- p
>= buf_len
) {
1459 pstrcpy(prefix
, q
- p
+ 1, p
);
1460 pstrcpy(postfix
, buf_len
, q
);
1465 static int relative_path(char *dest
, int dest_size
,
1466 const char *base
, const char *target
)
1472 const char *sep
= "\\";
1474 const char *sep
= "/";
1477 if (!(dest
&& base
&& target
)) {
1480 if (path_is_absolute(target
)) {
1481 pstrcpy(dest
, dest_size
, target
);
1484 while (base
[i
] == target
[i
]) {
1497 pstrcat(dest
, dest_size
, "..");
1498 pstrcat(dest
, dest_size
, sep
);
1500 pstrcat(dest
, dest_size
, q
);
1504 static int vmdk_create(const char *filename
, QEMUOptionParameter
*options
)
1507 char desc
[BUF_SIZE
];
1508 int64_t total_size
= 0, filesize
;
1509 const char *adapter_type
= NULL
;
1510 const char *backing_file
= NULL
;
1511 const char *fmt
= NULL
;
1514 bool flat
, split
, compress
;
1515 char ext_desc_lines
[BUF_SIZE
] = "";
1516 char path
[PATH_MAX
], prefix
[PATH_MAX
], postfix
[PATH_MAX
];
1517 const int64_t split_size
= 0x80000000; /* VMDK has constant split size */
1518 const char *desc_extent_line
;
1519 char parent_desc_line
[BUF_SIZE
] = "";
1520 uint32_t parent_cid
= 0xffffffff;
1521 uint32_t number_heads
= 16;
1522 bool zeroed_grain
= false;
1523 const char desc_template
[] =
1524 "# Disk DescriptorFile\n"
1528 "createType=\"%s\"\n"
1531 "# Extent description\n"
1534 "# The Disk Data Base\n"
1537 "ddb.virtualHWVersion = \"%d\"\n"
1538 "ddb.geometry.cylinders = \"%" PRId64
"\"\n"
1539 "ddb.geometry.heads = \"%d\"\n"
1540 "ddb.geometry.sectors = \"63\"\n"
1541 "ddb.adapterType = \"%s\"\n";
1543 if (filename_decompose(filename
, path
, prefix
, postfix
, PATH_MAX
)) {
1546 /* Read out options */
1547 while (options
&& options
->name
) {
1548 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1549 total_size
= options
->value
.n
;
1550 } else if (!strcmp(options
->name
, BLOCK_OPT_ADAPTER_TYPE
)) {
1551 adapter_type
= options
->value
.s
;
1552 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
1553 backing_file
= options
->value
.s
;
1554 } else if (!strcmp(options
->name
, BLOCK_OPT_COMPAT6
)) {
1555 flags
|= options
->value
.n
? BLOCK_FLAG_COMPAT6
: 0;
1556 } else if (!strcmp(options
->name
, BLOCK_OPT_SUBFMT
)) {
1557 fmt
= options
->value
.s
;
1558 } else if (!strcmp(options
->name
, BLOCK_OPT_ZEROED_GRAIN
)) {
1559 zeroed_grain
|= options
->value
.n
;
1563 if (!adapter_type
) {
1564 adapter_type
= "ide";
1565 } else if (strcmp(adapter_type
, "ide") &&
1566 strcmp(adapter_type
, "buslogic") &&
1567 strcmp(adapter_type
, "lsilogic") &&
1568 strcmp(adapter_type
, "legacyESX")) {
1569 fprintf(stderr
, "VMDK: Unknown adapter type: '%s'.\n", adapter_type
);
1572 if (strcmp(adapter_type
, "ide") != 0) {
1573 /* that's the number of heads with which vmware operates when
1574 creating, exporting, etc. vmdk files with a non-ide adapter type */
1578 /* Default format to monolithicSparse */
1579 fmt
= "monolithicSparse";
1580 } else if (strcmp(fmt
, "monolithicFlat") &&
1581 strcmp(fmt
, "monolithicSparse") &&
1582 strcmp(fmt
, "twoGbMaxExtentSparse") &&
1583 strcmp(fmt
, "twoGbMaxExtentFlat") &&
1584 strcmp(fmt
, "streamOptimized")) {
1585 fprintf(stderr
, "VMDK: Unknown subformat: %s\n", fmt
);
1588 split
= !(strcmp(fmt
, "twoGbMaxExtentFlat") &&
1589 strcmp(fmt
, "twoGbMaxExtentSparse"));
1590 flat
= !(strcmp(fmt
, "monolithicFlat") &&
1591 strcmp(fmt
, "twoGbMaxExtentFlat"));
1592 compress
= !strcmp(fmt
, "streamOptimized");
1594 desc_extent_line
= "RW %lld FLAT \"%s\" 0\n";
1596 desc_extent_line
= "RW %lld SPARSE \"%s\"\n";
1598 if (flat
&& backing_file
) {
1599 /* not supporting backing file for flat image */
1603 char parent_filename
[PATH_MAX
];
1604 BlockDriverState
*bs
= bdrv_new("");
1605 ret
= bdrv_open(bs
, backing_file
, NULL
, 0, NULL
);
1610 if (strcmp(bs
->drv
->format_name
, "vmdk")) {
1614 parent_cid
= vmdk_read_cid(bs
, 0);
1616 relative_path(parent_filename
, sizeof(parent_filename
),
1617 filename
, backing_file
);
1618 snprintf(parent_desc_line
, sizeof(parent_desc_line
),
1619 "parentFileNameHint=\"%s\"", parent_filename
);
1622 /* Create extents */
1623 filesize
= total_size
;
1624 while (filesize
> 0) {
1625 char desc_line
[BUF_SIZE
];
1626 char ext_filename
[PATH_MAX
];
1627 char desc_filename
[PATH_MAX
];
1628 int64_t size
= filesize
;
1630 if (split
&& size
> split_size
) {
1634 snprintf(desc_filename
, sizeof(desc_filename
), "%s-%c%03d%s",
1635 prefix
, flat
? 'f' : 's', ++idx
, postfix
);
1637 snprintf(desc_filename
, sizeof(desc_filename
), "%s-flat%s",
1640 snprintf(desc_filename
, sizeof(desc_filename
), "%s%s",
1643 snprintf(ext_filename
, sizeof(ext_filename
), "%s%s",
1644 path
, desc_filename
);
1646 if (vmdk_create_extent(ext_filename
, size
,
1647 flat
, compress
, zeroed_grain
)) {
1652 /* Format description line */
1653 snprintf(desc_line
, sizeof(desc_line
),
1654 desc_extent_line
, size
/ 512, desc_filename
);
1655 pstrcat(ext_desc_lines
, sizeof(ext_desc_lines
), desc_line
);
1657 /* generate descriptor file */
1658 snprintf(desc
, sizeof(desc
), desc_template
,
1659 (unsigned int)time(NULL
),
1664 (flags
& BLOCK_FLAG_COMPAT6
? 6 : 4),
1665 total_size
/ (int64_t)(63 * number_heads
* 512), number_heads
,
1667 if (split
|| flat
) {
1668 fd
= qemu_open(filename
,
1669 O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
| O_LARGEFILE
,
1672 fd
= qemu_open(filename
,
1673 O_WRONLY
| O_BINARY
| O_LARGEFILE
,
1679 /* the descriptor offset = 0x200 */
1680 if (!split
&& !flat
&& 0x200 != lseek(fd
, 0x200, SEEK_SET
)) {
1684 ret
= qemu_write_full(fd
, desc
, strlen(desc
));
1685 if (ret
!= strlen(desc
)) {
1695 static void vmdk_close(BlockDriverState
*bs
)
1697 BDRVVmdkState
*s
= bs
->opaque
;
1699 vmdk_free_extents(bs
);
1701 migrate_del_blocker(s
->migration_blocker
);
1702 error_free(s
->migration_blocker
);
1705 static coroutine_fn
int vmdk_co_flush(BlockDriverState
*bs
)
1707 BDRVVmdkState
*s
= bs
->opaque
;
1711 for (i
= 0; i
< s
->num_extents
; i
++) {
1712 err
= bdrv_co_flush(s
->extents
[i
].file
);
1720 static int64_t vmdk_get_allocated_file_size(BlockDriverState
*bs
)
1725 BDRVVmdkState
*s
= bs
->opaque
;
1727 ret
= bdrv_get_allocated_file_size(bs
->file
);
1731 for (i
= 0; i
< s
->num_extents
; i
++) {
1732 if (s
->extents
[i
].file
== bs
->file
) {
1735 r
= bdrv_get_allocated_file_size(s
->extents
[i
].file
);
1744 static QEMUOptionParameter vmdk_create_options
[] = {
1746 .name
= BLOCK_OPT_SIZE
,
1748 .help
= "Virtual disk size"
1751 .name
= BLOCK_OPT_ADAPTER_TYPE
,
1753 .help
= "Virtual adapter type, can be one of "
1754 "ide (default), lsilogic, buslogic or legacyESX"
1757 .name
= BLOCK_OPT_BACKING_FILE
,
1759 .help
= "File name of a base image"
1762 .name
= BLOCK_OPT_COMPAT6
,
1764 .help
= "VMDK version 6 image"
1767 .name
= BLOCK_OPT_SUBFMT
,
1770 "VMDK flat extent format, can be one of "
1771 "{monolithicSparse (default) | monolithicFlat | twoGbMaxExtentSparse | twoGbMaxExtentFlat | streamOptimized} "
1774 .name
= BLOCK_OPT_ZEROED_GRAIN
,
1776 .help
= "Enable efficient zero writes using the zeroed-grain GTE feature"
1781 static BlockDriver bdrv_vmdk
= {
1782 .format_name
= "vmdk",
1783 .instance_size
= sizeof(BDRVVmdkState
),
1784 .bdrv_probe
= vmdk_probe
,
1785 .bdrv_open
= vmdk_open
,
1786 .bdrv_reopen_prepare
= vmdk_reopen_prepare
,
1787 .bdrv_read
= vmdk_co_read
,
1788 .bdrv_write
= vmdk_co_write
,
1789 .bdrv_co_write_zeroes
= vmdk_co_write_zeroes
,
1790 .bdrv_close
= vmdk_close
,
1791 .bdrv_create
= vmdk_create
,
1792 .bdrv_co_flush_to_disk
= vmdk_co_flush
,
1793 .bdrv_co_is_allocated
= vmdk_co_is_allocated
,
1794 .bdrv_get_allocated_file_size
= vmdk_get_allocated_file_size
,
1796 .create_options
= vmdk_create_options
,
1799 static void bdrv_vmdk_init(void)
1801 bdrv_register(&bdrv_vmdk
);
1804 block_init(bdrv_vmdk_init
);