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_int.h"
30 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
31 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
36 uint32_t disk_sectors
;
38 uint32_t l1dir_offset
;
40 uint32_t file_sectors
;
43 uint32_t sectors_per_track
;
53 int32_t num_gtes_per_gte
;
59 } __attribute__((packed
)) VMDK4Header
;
61 #define L2_CACHE_SIZE 16
63 typedef struct BDRVVmdkState
{
65 int64_t l1_table_offset
;
66 int64_t l1_backup_table_offset
;
68 uint32_t *l1_backup_table
;
70 uint32_t l1_entry_sectors
;
74 uint32_t l2_cache_offsets
[L2_CACHE_SIZE
];
75 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
77 unsigned int cluster_sectors
;
82 typedef struct VmdkMetaData
{
84 unsigned int l1_index
;
85 unsigned int l2_index
;
86 unsigned int l2_offset
;
90 typedef struct ActiveBDRVState
{
91 BlockDriverState
*hd
; // active image handler
92 uint64_t cluster_offset
; // current write offset
95 static ActiveBDRVState activeBDRV
;
98 static int vmdk_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
104 magic
= be32_to_cpu(*(uint32_t *)buf
);
105 if (magic
== VMDK3_MAGIC
||
106 magic
== VMDK4_MAGIC
)
114 #define SECTOR_SIZE 512
115 #define DESC_SIZE 20*SECTOR_SIZE // 20 sectors of 512 bytes each
116 #define HEADER_SIZE 512 // first sector of 512 bytes
118 static uint32_t vmdk_read_cid(BlockDriverState
*bs
, int parent
)
120 BDRVVmdkState
*s
= bs
->opaque
;
121 char desc
[DESC_SIZE
];
123 const char *p_name
, *cid_str
;
126 /* the descriptor offset = 0x200 */
127 if (bdrv_pread(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
131 cid_str
= "parentCID";
132 cid_str_size
= sizeof("parentCID");
135 cid_str_size
= sizeof("CID");
138 if ((p_name
= strstr(desc
,cid_str
)) != NULL
) {
139 p_name
+= cid_str_size
;
140 sscanf(p_name
,"%x",&cid
);
146 static int vmdk_write_cid(BlockDriverState
*bs
, uint32_t cid
)
148 BDRVVmdkState
*s
= bs
->opaque
;
149 char desc
[DESC_SIZE
], tmp_desc
[DESC_SIZE
];
150 char *p_name
, *tmp_str
;
152 /* the descriptor offset = 0x200 */
153 if (bdrv_pread(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
156 tmp_str
= strstr(desc
,"parentCID");
157 pstrcpy(tmp_desc
, sizeof(tmp_desc
), tmp_str
);
158 if ((p_name
= strstr(desc
,"CID")) != NULL
) {
159 p_name
+= sizeof("CID");
160 snprintf(p_name
, sizeof(desc
) - (p_name
- desc
), "%x\n", cid
);
161 pstrcat(desc
, sizeof(desc
), tmp_desc
);
164 if (bdrv_pwrite(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
169 static int vmdk_is_cid_valid(BlockDriverState
*bs
)
172 BDRVVmdkState
*s
= bs
->opaque
;
173 BlockDriverState
*p_bs
= bs
->backing_hd
;
177 cur_pcid
= vmdk_read_cid(p_bs
,0);
178 if (s
->parent_cid
!= cur_pcid
)
187 static int vmdk_snapshot_create(const char *filename
, const char *backing_file
)
191 char *p_name
, *gd_buf
, *rgd_buf
;
192 const char *real_filename
, *temp_str
;
194 uint32_t gde_entries
, gd_size
;
195 int64_t gd_offset
, rgd_offset
, capacity
, gt_size
;
196 char p_desc
[DESC_SIZE
], s_desc
[DESC_SIZE
], hdr
[HEADER_SIZE
];
197 static const char desc_template
[] =
198 "# Disk DescriptorFile\n"
202 "createType=\"monolithicSparse\"\n"
203 "parentFileNameHint=\"%s\"\n"
205 "# Extent description\n"
206 "RW %u SPARSE \"%s\"\n"
208 "# The Disk Data Base \n"
212 snp_fd
= open(filename
, O_RDWR
| O_CREAT
| O_TRUNC
| O_BINARY
| O_LARGEFILE
, 0644);
215 p_fd
= open(backing_file
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
221 /* read the header */
222 if (lseek(p_fd
, 0x0, SEEK_SET
) == -1)
224 if (read(p_fd
, hdr
, HEADER_SIZE
) != HEADER_SIZE
)
227 /* write the header */
228 if (lseek(snp_fd
, 0x0, SEEK_SET
) == -1)
230 if (write(snp_fd
, hdr
, HEADER_SIZE
) == -1)
233 memset(&header
, 0, sizeof(header
));
234 memcpy(&header
,&hdr
[4], sizeof(header
)); // skip the VMDK4_MAGIC
236 if (ftruncate(snp_fd
, header
.grain_offset
<< 9))
238 /* the descriptor offset = 0x200 */
239 if (lseek(p_fd
, 0x200, SEEK_SET
) == -1)
241 if (read(p_fd
, p_desc
, DESC_SIZE
) != DESC_SIZE
)
244 if ((p_name
= strstr(p_desc
,"CID")) != NULL
) {
245 p_name
+= sizeof("CID");
246 sscanf(p_name
,"%x",&p_cid
);
249 real_filename
= filename
;
250 if ((temp_str
= strrchr(real_filename
, '\\')) != NULL
)
251 real_filename
= temp_str
+ 1;
252 if ((temp_str
= strrchr(real_filename
, '/')) != NULL
)
253 real_filename
= temp_str
+ 1;
254 if ((temp_str
= strrchr(real_filename
, ':')) != NULL
)
255 real_filename
= temp_str
+ 1;
257 snprintf(s_desc
, sizeof(s_desc
), desc_template
, p_cid
, p_cid
, backing_file
,
258 (uint32_t)header
.capacity
, real_filename
);
260 /* write the descriptor */
261 if (lseek(snp_fd
, 0x200, SEEK_SET
) == -1)
263 if (write(snp_fd
, s_desc
, strlen(s_desc
)) == -1)
266 gd_offset
= header
.gd_offset
* SECTOR_SIZE
; // offset of GD table
267 rgd_offset
= header
.rgd_offset
* SECTOR_SIZE
; // offset of RGD table
268 capacity
= header
.capacity
* SECTOR_SIZE
; // Extent size
270 * Each GDE span 32M disk, means:
271 * 512 GTE per GT, each GTE points to grain
273 gt_size
= (int64_t)header
.num_gtes_per_gte
* header
.granularity
* SECTOR_SIZE
;
276 gde_entries
= (uint32_t)(capacity
/ gt_size
); // number of gde/rgde
277 gd_size
= gde_entries
* sizeof(uint32_t);
280 rgd_buf
= qemu_malloc(gd_size
);
281 if (lseek(p_fd
, rgd_offset
, SEEK_SET
) == -1)
283 if (read(p_fd
, rgd_buf
, gd_size
) != gd_size
)
285 if (lseek(snp_fd
, rgd_offset
, SEEK_SET
) == -1)
287 if (write(snp_fd
, rgd_buf
, gd_size
) == -1)
292 gd_buf
= qemu_malloc(gd_size
);
293 if (lseek(p_fd
, gd_offset
, SEEK_SET
) == -1)
295 if (read(p_fd
, gd_buf
, gd_size
) != gd_size
)
297 if (lseek(snp_fd
, gd_offset
, SEEK_SET
) == -1)
299 if (write(snp_fd
, gd_buf
, gd_size
) == -1)
317 static void vmdk_parent_close(BlockDriverState
*bs
)
320 bdrv_close(bs
->backing_hd
);
323 static int parent_open
= 0;
324 static int vmdk_parent_open(BlockDriverState
*bs
, const char * filename
)
326 BDRVVmdkState
*s
= bs
->opaque
;
328 char desc
[DESC_SIZE
];
329 char parent_img_name
[1024];
331 /* the descriptor offset = 0x200 */
332 if (bdrv_pread(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
335 if ((p_name
= strstr(desc
,"parentFileNameHint")) != NULL
) {
337 struct stat file_buf
;
339 p_name
+= sizeof("parentFileNameHint") + 1;
340 if ((end_name
= strchr(p_name
,'\"')) == NULL
)
342 if ((end_name
- p_name
) > sizeof (bs
->backing_file
) - 1)
345 pstrcpy(bs
->backing_file
, end_name
- p_name
+ 1, p_name
);
346 if (stat(bs
->backing_file
, &file_buf
) != 0) {
347 path_combine(parent_img_name
, sizeof(parent_img_name
),
348 filename
, bs
->backing_file
);
350 pstrcpy(parent_img_name
, sizeof(parent_img_name
),
354 bs
->backing_hd
= bdrv_new("");
355 if (!bs
->backing_hd
) {
361 if (bdrv_open(bs
->backing_hd
, parent_img_name
, 0) < 0)
369 static int vmdk_open(BlockDriverState
*bs
, const char *filename
, int flags
)
371 BDRVVmdkState
*s
= bs
->opaque
;
376 /* Parent must be opened as RO, no RDWR. */
380 ret
= bdrv_file_open(&s
->hd
, filename
, flags
);
383 if (bdrv_pread(s
->hd
, 0, &magic
, sizeof(magic
)) != sizeof(magic
))
386 magic
= be32_to_cpu(magic
);
387 if (magic
== VMDK3_MAGIC
) {
390 if (bdrv_pread(s
->hd
, sizeof(magic
), &header
, sizeof(header
)) != sizeof(header
))
392 s
->cluster_sectors
= le32_to_cpu(header
.granularity
);
395 bs
->total_sectors
= le32_to_cpu(header
.disk_sectors
);
396 s
->l1_table_offset
= le32_to_cpu(header
.l1dir_offset
) << 9;
397 s
->l1_backup_table_offset
= 0;
398 s
->l1_entry_sectors
= s
->l2_size
* s
->cluster_sectors
;
399 } else if (magic
== VMDK4_MAGIC
) {
402 if (bdrv_pread(s
->hd
, sizeof(magic
), &header
, sizeof(header
)) != sizeof(header
))
404 bs
->total_sectors
= le64_to_cpu(header
.capacity
);
405 s
->cluster_sectors
= le64_to_cpu(header
.granularity
);
406 s
->l2_size
= le32_to_cpu(header
.num_gtes_per_gte
);
407 s
->l1_entry_sectors
= s
->l2_size
* s
->cluster_sectors
;
408 if (s
->l1_entry_sectors
<= 0)
410 s
->l1_size
= (bs
->total_sectors
+ s
->l1_entry_sectors
- 1)
411 / s
->l1_entry_sectors
;
412 s
->l1_table_offset
= le64_to_cpu(header
.rgd_offset
) << 9;
413 s
->l1_backup_table_offset
= le64_to_cpu(header
.gd_offset
) << 9;
420 // try to open parent images, if exist
421 if (vmdk_parent_open(bs
, filename
) != 0)
423 // write the CID once after the image creation
424 s
->parent_cid
= vmdk_read_cid(bs
,1);
429 /* read the L1 table */
430 l1_size
= s
->l1_size
* sizeof(uint32_t);
431 s
->l1_table
= qemu_malloc(l1_size
);
432 if (bdrv_pread(s
->hd
, s
->l1_table_offset
, s
->l1_table
, l1_size
) != l1_size
)
434 for(i
= 0; i
< s
->l1_size
; i
++) {
435 le32_to_cpus(&s
->l1_table
[i
]);
438 if (s
->l1_backup_table_offset
) {
439 s
->l1_backup_table
= qemu_malloc(l1_size
);
440 if (bdrv_pread(s
->hd
, s
->l1_backup_table_offset
, s
->l1_backup_table
, l1_size
) != l1_size
)
442 for(i
= 0; i
< s
->l1_size
; i
++) {
443 le32_to_cpus(&s
->l1_backup_table
[i
]);
447 s
->l2_cache
= qemu_malloc(s
->l2_size
* L2_CACHE_SIZE
* sizeof(uint32_t));
450 qemu_free(s
->l1_backup_table
);
451 qemu_free(s
->l1_table
);
452 qemu_free(s
->l2_cache
);
457 static uint64_t get_cluster_offset(BlockDriverState
*bs
, VmdkMetaData
*m_data
,
458 uint64_t offset
, int allocate
);
460 static int get_whole_cluster(BlockDriverState
*bs
, uint64_t cluster_offset
,
461 uint64_t offset
, int allocate
)
463 uint64_t parent_cluster_offset
;
464 BDRVVmdkState
*s
= bs
->opaque
;
465 uint8_t whole_grain
[s
->cluster_sectors
*512]; // 128 sectors * 512 bytes each = grain size 64KB
467 // we will be here if it's first write on non-exist grain(cluster).
468 // try to read from parent image, if exist
469 if (bs
->backing_hd
) {
470 BDRVVmdkState
*ps
= bs
->backing_hd
->opaque
;
472 if (!vmdk_is_cid_valid(bs
))
475 parent_cluster_offset
= get_cluster_offset(bs
->backing_hd
, NULL
,
478 if (parent_cluster_offset
) {
479 BDRVVmdkState
*act_s
= activeBDRV
.hd
->opaque
;
481 if (bdrv_pread(ps
->hd
, parent_cluster_offset
, whole_grain
, ps
->cluster_sectors
*512) != ps
->cluster_sectors
*512)
484 //Write grain only into the active image
485 if (bdrv_pwrite(act_s
->hd
, activeBDRV
.cluster_offset
<< 9, whole_grain
, sizeof(whole_grain
)) != sizeof(whole_grain
))
492 static int vmdk_L2update(BlockDriverState
*bs
, VmdkMetaData
*m_data
)
494 BDRVVmdkState
*s
= bs
->opaque
;
496 /* update L2 table */
497 if (bdrv_pwrite(s
->hd
, ((int64_t)m_data
->l2_offset
* 512) + (m_data
->l2_index
* sizeof(m_data
->offset
)),
498 &(m_data
->offset
), sizeof(m_data
->offset
)) != sizeof(m_data
->offset
))
500 /* update backup L2 table */
501 if (s
->l1_backup_table_offset
!= 0) {
502 m_data
->l2_offset
= s
->l1_backup_table
[m_data
->l1_index
];
503 if (bdrv_pwrite(s
->hd
, ((int64_t)m_data
->l2_offset
* 512) + (m_data
->l2_index
* sizeof(m_data
->offset
)),
504 &(m_data
->offset
), sizeof(m_data
->offset
)) != sizeof(m_data
->offset
))
511 static uint64_t get_cluster_offset(BlockDriverState
*bs
, VmdkMetaData
*m_data
,
512 uint64_t offset
, int allocate
)
514 BDRVVmdkState
*s
= bs
->opaque
;
515 unsigned int l1_index
, l2_offset
, l2_index
;
517 uint32_t min_count
, *l2_table
, tmp
= 0;
518 uint64_t cluster_offset
;
523 l1_index
= (offset
>> 9) / s
->l1_entry_sectors
;
524 if (l1_index
>= s
->l1_size
)
526 l2_offset
= s
->l1_table
[l1_index
];
529 for(i
= 0; i
< L2_CACHE_SIZE
; i
++) {
530 if (l2_offset
== s
->l2_cache_offsets
[i
]) {
531 /* increment the hit count */
532 if (++s
->l2_cache_counts
[i
] == 0xffffffff) {
533 for(j
= 0; j
< L2_CACHE_SIZE
; j
++) {
534 s
->l2_cache_counts
[j
] >>= 1;
537 l2_table
= s
->l2_cache
+ (i
* s
->l2_size
);
541 /* not found: load a new entry in the least used one */
543 min_count
= 0xffffffff;
544 for(i
= 0; i
< L2_CACHE_SIZE
; i
++) {
545 if (s
->l2_cache_counts
[i
] < min_count
) {
546 min_count
= s
->l2_cache_counts
[i
];
550 l2_table
= s
->l2_cache
+ (min_index
* s
->l2_size
);
551 if (bdrv_pread(s
->hd
, (int64_t)l2_offset
* 512, l2_table
, s
->l2_size
* sizeof(uint32_t)) !=
552 s
->l2_size
* sizeof(uint32_t))
555 s
->l2_cache_offsets
[min_index
] = l2_offset
;
556 s
->l2_cache_counts
[min_index
] = 1;
558 l2_index
= ((offset
>> 9) / s
->cluster_sectors
) % s
->l2_size
;
559 cluster_offset
= le32_to_cpu(l2_table
[l2_index
]);
561 if (!cluster_offset
) {
564 // Avoid the L2 tables update for the images that have snapshots.
566 cluster_offset
= bdrv_getlength(s
->hd
);
567 bdrv_truncate(s
->hd
, cluster_offset
+ (s
->cluster_sectors
<< 9));
569 cluster_offset
>>= 9;
570 tmp
= cpu_to_le32(cluster_offset
);
571 l2_table
[l2_index
] = tmp
;
572 // Save the active image state
573 activeBDRV
.cluster_offset
= cluster_offset
;
576 /* First of all we write grain itself, to avoid race condition
577 * that may to corrupt the image.
578 * This problem may occur because of insufficient space on host disk
579 * or inappropriate VM shutdown.
581 if (get_whole_cluster(bs
, cluster_offset
, offset
, allocate
) == -1)
585 m_data
->offset
= tmp
;
586 m_data
->l1_index
= l1_index
;
587 m_data
->l2_index
= l2_index
;
588 m_data
->l2_offset
= l2_offset
;
592 cluster_offset
<<= 9;
593 return cluster_offset
;
596 static int vmdk_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
597 int nb_sectors
, int *pnum
)
599 BDRVVmdkState
*s
= bs
->opaque
;
600 int index_in_cluster
, n
;
601 uint64_t cluster_offset
;
603 cluster_offset
= get_cluster_offset(bs
, NULL
, sector_num
<< 9, 0);
604 index_in_cluster
= sector_num
% s
->cluster_sectors
;
605 n
= s
->cluster_sectors
- index_in_cluster
;
609 return (cluster_offset
!= 0);
612 static int vmdk_read(BlockDriverState
*bs
, int64_t sector_num
,
613 uint8_t *buf
, int nb_sectors
)
615 BDRVVmdkState
*s
= bs
->opaque
;
616 int index_in_cluster
, n
, ret
;
617 uint64_t cluster_offset
;
619 while (nb_sectors
> 0) {
620 cluster_offset
= get_cluster_offset(bs
, NULL
, sector_num
<< 9, 0);
621 index_in_cluster
= sector_num
% s
->cluster_sectors
;
622 n
= s
->cluster_sectors
- index_in_cluster
;
625 if (!cluster_offset
) {
626 // try to read from parent image, if exist
627 if (bs
->backing_hd
) {
628 if (!vmdk_is_cid_valid(bs
))
630 ret
= bdrv_read(bs
->backing_hd
, sector_num
, buf
, n
);
634 memset(buf
, 0, 512 * n
);
637 if(bdrv_pread(s
->hd
, cluster_offset
+ index_in_cluster
* 512, buf
, n
* 512) != n
* 512)
647 static int vmdk_write(BlockDriverState
*bs
, int64_t sector_num
,
648 const uint8_t *buf
, int nb_sectors
)
650 BDRVVmdkState
*s
= bs
->opaque
;
652 int index_in_cluster
, n
;
653 uint64_t cluster_offset
;
654 static int cid_update
= 0;
656 if (sector_num
> bs
->total_sectors
) {
658 "(VMDK) Wrong offset: sector_num=0x%" PRIx64
659 " total_sectors=0x%" PRIx64
"\n",
660 sector_num
, bs
->total_sectors
);
664 while (nb_sectors
> 0) {
665 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
666 n
= s
->cluster_sectors
- index_in_cluster
;
669 cluster_offset
= get_cluster_offset(bs
, &m_data
, sector_num
<< 9, 1);
673 if (bdrv_pwrite(s
->hd
, cluster_offset
+ index_in_cluster
* 512, buf
, n
* 512) != n
* 512)
676 /* update L2 tables */
677 if (vmdk_L2update(bs
, &m_data
) == -1)
684 // update CID on the first write every time the virtual disk is opened
686 vmdk_write_cid(bs
, time(NULL
));
693 static int vmdk_create(const char *filename
, QEMUOptionParameter
*options
)
697 uint32_t tmp
, magic
, grains
, gd_size
, gt_size
, gt_count
;
698 static const char desc_template
[] =
699 "# Disk DescriptorFile\n"
702 "parentCID=ffffffff\n"
703 "createType=\"monolithicSparse\"\n"
705 "# Extent description\n"
706 "RW %" PRId64
" SPARSE \"%s\"\n"
708 "# The Disk Data Base \n"
711 "ddb.virtualHWVersion = \"%d\"\n"
712 "ddb.geometry.cylinders = \"%" PRId64
"\"\n"
713 "ddb.geometry.heads = \"16\"\n"
714 "ddb.geometry.sectors = \"63\"\n"
715 "ddb.adapterType = \"ide\"\n";
717 const char *real_filename
, *temp_str
;
718 int64_t total_size
= 0;
719 const char *backing_file
= NULL
;
724 while (options
&& options
->name
) {
725 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
726 total_size
= options
->value
.n
/ 512;
727 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
728 backing_file
= options
->value
.s
;
729 } else if (!strcmp(options
->name
, BLOCK_OPT_COMPAT6
)) {
730 flags
|= options
->value
.n
? BLOCK_FLAG_COMPAT6
: 0;
735 /* XXX: add support for backing file */
737 return vmdk_snapshot_create(filename
, backing_file
);
740 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
| O_LARGEFILE
,
744 magic
= cpu_to_be32(VMDK4_MAGIC
);
745 memset(&header
, 0, sizeof(header
));
746 header
.version
= cpu_to_le32(1);
747 header
.flags
= cpu_to_le32(3); /* ?? */
748 header
.capacity
= cpu_to_le64(total_size
);
749 header
.granularity
= cpu_to_le64(128);
750 header
.num_gtes_per_gte
= cpu_to_le32(512);
752 grains
= (total_size
+ header
.granularity
- 1) / header
.granularity
;
753 gt_size
= ((header
.num_gtes_per_gte
* sizeof(uint32_t)) + 511) >> 9;
754 gt_count
= (grains
+ header
.num_gtes_per_gte
- 1) / header
.num_gtes_per_gte
;
755 gd_size
= (gt_count
* sizeof(uint32_t) + 511) >> 9;
757 header
.desc_offset
= 1;
758 header
.desc_size
= 20;
759 header
.rgd_offset
= header
.desc_offset
+ header
.desc_size
;
760 header
.gd_offset
= header
.rgd_offset
+ gd_size
+ (gt_size
* gt_count
);
761 header
.grain_offset
=
762 ((header
.gd_offset
+ gd_size
+ (gt_size
* gt_count
) +
763 header
.granularity
- 1) / header
.granularity
) *
766 header
.desc_offset
= cpu_to_le64(header
.desc_offset
);
767 header
.desc_size
= cpu_to_le64(header
.desc_size
);
768 header
.rgd_offset
= cpu_to_le64(header
.rgd_offset
);
769 header
.gd_offset
= cpu_to_le64(header
.gd_offset
);
770 header
.grain_offset
= cpu_to_le64(header
.grain_offset
);
772 header
.check_bytes
[0] = 0xa;
773 header
.check_bytes
[1] = 0x20;
774 header
.check_bytes
[2] = 0xd;
775 header
.check_bytes
[3] = 0xa;
777 /* write all the data */
778 ret
= qemu_write_full(fd
, &magic
, sizeof(magic
));
779 if (ret
!= sizeof(magic
)) {
783 ret
= qemu_write_full(fd
, &header
, sizeof(header
));
784 if (ret
!= sizeof(header
)) {
789 ret
= ftruncate(fd
, header
.grain_offset
<< 9);
795 /* write grain directory */
796 lseek(fd
, le64_to_cpu(header
.rgd_offset
) << 9, SEEK_SET
);
797 for (i
= 0, tmp
= header
.rgd_offset
+ gd_size
;
798 i
< gt_count
; i
++, tmp
+= gt_size
) {
799 ret
= qemu_write_full(fd
, &tmp
, sizeof(tmp
));
800 if (ret
!= sizeof(tmp
)) {
806 /* write backup grain directory */
807 lseek(fd
, le64_to_cpu(header
.gd_offset
) << 9, SEEK_SET
);
808 for (i
= 0, tmp
= header
.gd_offset
+ gd_size
;
809 i
< gt_count
; i
++, tmp
+= gt_size
) {
810 ret
= qemu_write_full(fd
, &tmp
, sizeof(tmp
));
811 if (ret
!= sizeof(tmp
)) {
817 /* compose the descriptor */
818 real_filename
= filename
;
819 if ((temp_str
= strrchr(real_filename
, '\\')) != NULL
)
820 real_filename
= temp_str
+ 1;
821 if ((temp_str
= strrchr(real_filename
, '/')) != NULL
)
822 real_filename
= temp_str
+ 1;
823 if ((temp_str
= strrchr(real_filename
, ':')) != NULL
)
824 real_filename
= temp_str
+ 1;
825 snprintf(desc
, sizeof(desc
), desc_template
, (unsigned int)time(NULL
),
826 total_size
, real_filename
,
827 (flags
& BLOCK_FLAG_COMPAT6
? 6 : 4),
828 total_size
/ (int64_t)(63 * 16));
830 /* write the descriptor */
831 lseek(fd
, le64_to_cpu(header
.desc_offset
) << 9, SEEK_SET
);
832 ret
= qemu_write_full(fd
, desc
, strlen(desc
));
833 if (ret
!= strlen(desc
)) {
844 static void vmdk_close(BlockDriverState
*bs
)
846 BDRVVmdkState
*s
= bs
->opaque
;
848 qemu_free(s
->l1_table
);
849 qemu_free(s
->l2_cache
);
850 // try to close parent image, if exist
851 vmdk_parent_close(s
->hd
);
855 static void vmdk_flush(BlockDriverState
*bs
)
857 BDRVVmdkState
*s
= bs
->opaque
;
862 static QEMUOptionParameter vmdk_create_options
[] = {
864 .name
= BLOCK_OPT_SIZE
,
866 .help
= "Virtual disk size"
869 .name
= BLOCK_OPT_BACKING_FILE
,
871 .help
= "File name of a base image"
874 .name
= BLOCK_OPT_COMPAT6
,
876 .help
= "VMDK version 6 image"
881 static BlockDriver bdrv_vmdk
= {
882 .format_name
= "vmdk",
883 .instance_size
= sizeof(BDRVVmdkState
),
884 .bdrv_probe
= vmdk_probe
,
885 .bdrv_open
= vmdk_open
,
886 .bdrv_read
= vmdk_read
,
887 .bdrv_write
= vmdk_write
,
888 .bdrv_close
= vmdk_close
,
889 .bdrv_create
= vmdk_create
,
890 .bdrv_flush
= vmdk_flush
,
891 .bdrv_is_allocated
= vmdk_is_allocated
,
893 .create_options
= vmdk_create_options
,
896 static void bdrv_vmdk_init(void)
898 bdrv_register(&bdrv_vmdk
);
901 block_init(bdrv_vmdk_init
);