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
27 #include "block_int.h"
29 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
30 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
35 uint32_t disk_sectors
;
37 uint32_t l1dir_offset
;
39 uint32_t file_sectors
;
42 uint32_t sectors_per_track
;
52 int32_t num_gtes_per_gte
;
58 } __attribute__((packed
)) VMDK4Header
;
60 #define L2_CACHE_SIZE 16
62 typedef struct BDRVVmdkState
{
64 int64_t l1_table_offset
;
65 int64_t l1_backup_table_offset
;
67 uint32_t *l1_backup_table
;
69 uint32_t l1_entry_sectors
;
73 uint32_t l2_cache_offsets
[L2_CACHE_SIZE
];
74 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
76 unsigned int cluster_sectors
;
81 typedef struct VmdkMetaData
{
83 unsigned int l1_index
;
84 unsigned int l2_index
;
85 unsigned int l2_offset
;
89 typedef struct ActiveBDRVState
{
90 BlockDriverState
*hd
; // active image handler
91 uint64_t cluster_offset
; // current write offset
94 static ActiveBDRVState activeBDRV
;
97 static int vmdk_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
103 magic
= be32_to_cpu(*(uint32_t *)buf
);
104 if (magic
== VMDK3_MAGIC
||
105 magic
== VMDK4_MAGIC
)
113 #define SECTOR_SIZE 512
114 #define DESC_SIZE 20*SECTOR_SIZE // 20 sectors of 512 bytes each
115 #define HEADER_SIZE 512 // first sector of 512 bytes
117 static uint32_t vmdk_read_cid(BlockDriverState
*bs
, int parent
)
119 BDRVVmdkState
*s
= bs
->opaque
;
120 char desc
[DESC_SIZE
];
122 char *p_name
, *cid_str
;
125 /* the descriptor offset = 0x200 */
126 if (bdrv_pread(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
130 cid_str
= "parentCID";
131 cid_str_size
= sizeof("parentCID");
134 cid_str_size
= sizeof("CID");
137 if ((p_name
= strstr(desc
,cid_str
)) != 0) {
138 p_name
+= cid_str_size
;
139 sscanf(p_name
,"%x",&cid
);
145 static int vmdk_write_cid(BlockDriverState
*bs
, uint32_t cid
)
147 BDRVVmdkState
*s
= bs
->opaque
;
148 char desc
[DESC_SIZE
], tmp_desc
[DESC_SIZE
];
149 char *p_name
, *tmp_str
;
151 /* the descriptor offset = 0x200 */
152 if (bdrv_pread(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
155 tmp_str
= strstr(desc
,"parentCID");
156 strcpy(tmp_desc
, tmp_str
);
157 if ((p_name
= strstr(desc
,"CID")) != 0) {
158 p_name
+= sizeof("CID");
159 sprintf(p_name
,"%x\n",cid
);
160 strcat(desc
,tmp_desc
);
163 if (bdrv_pwrite(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
168 static int vmdk_is_cid_valid(BlockDriverState
*bs
)
171 BDRVVmdkState
*s
= bs
->opaque
;
172 BlockDriverState
*p_bs
= s
->hd
->backing_hd
;
176 cur_pcid
= vmdk_read_cid(p_bs
,0);
177 if (s
->parent_cid
!= cur_pcid
)
186 static int vmdk_snapshot_create(const char *filename
, const char *backing_file
)
190 char *p_name
, *gd_buf
, *rgd_buf
;
191 const char *real_filename
, *temp_str
;
193 uint32_t gde_entries
, gd_size
;
194 int64_t gd_offset
, rgd_offset
, capacity
, gt_size
;
195 char p_desc
[DESC_SIZE
], s_desc
[DESC_SIZE
], hdr
[HEADER_SIZE
];
196 char *desc_template
=
197 "# Disk DescriptorFile\n"
201 "createType=\"monolithicSparse\"\n"
202 "parentFileNameHint=\"%s\"\n"
204 "# Extent description\n"
205 "RW %lu SPARSE \"%s\"\n"
207 "# The Disk Data Base \n"
211 snp_fd
= open(filename
, O_RDWR
| O_CREAT
| O_TRUNC
| O_BINARY
| O_LARGEFILE
, 0644);
214 p_fd
= open(backing_file
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
220 /* read the header */
221 if (lseek(p_fd
, 0x0, SEEK_SET
) == -1)
223 if (read(p_fd
, hdr
, HEADER_SIZE
) != HEADER_SIZE
)
226 /* write the header */
227 if (lseek(snp_fd
, 0x0, SEEK_SET
) == -1)
229 if (write(snp_fd
, hdr
, HEADER_SIZE
) == -1)
232 memset(&header
, 0, sizeof(header
));
233 memcpy(&header
,&hdr
[4], sizeof(header
)); // skip the VMDK4_MAGIC
235 ftruncate(snp_fd
, header
.grain_offset
<< 9);
236 /* the descriptor offset = 0x200 */
237 if (lseek(p_fd
, 0x200, SEEK_SET
) == -1)
239 if (read(p_fd
, p_desc
, DESC_SIZE
) != DESC_SIZE
)
242 if ((p_name
= strstr(p_desc
,"CID")) != 0) {
243 p_name
+= sizeof("CID");
244 sscanf(p_name
,"%x",&p_cid
);
247 real_filename
= filename
;
248 if ((temp_str
= strrchr(real_filename
, '\\')) != NULL
)
249 real_filename
= temp_str
+ 1;
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;
255 sprintf(s_desc
, desc_template
, p_cid
, p_cid
, backing_file
256 , (uint32_t)header
.capacity
, real_filename
);
258 /* write the descriptor */
259 if (lseek(snp_fd
, 0x200, SEEK_SET
) == -1)
261 if (write(snp_fd
, s_desc
, strlen(s_desc
)) == -1)
264 gd_offset
= header
.gd_offset
* SECTOR_SIZE
; // offset of GD table
265 rgd_offset
= header
.rgd_offset
* SECTOR_SIZE
; // offset of RGD table
266 capacity
= header
.capacity
* SECTOR_SIZE
; // Extent size
268 * Each GDE span 32M disk, means:
269 * 512 GTE per GT, each GTE points to grain
271 gt_size
= (int64_t)header
.num_gtes_per_gte
* header
.granularity
* SECTOR_SIZE
;
274 gde_entries
= (uint32_t)(capacity
/ gt_size
); // number of gde/rgde
275 gd_size
= gde_entries
* sizeof(uint32_t);
278 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
);
295 if (lseek(p_fd
, gd_offset
, SEEK_SET
) == -1)
297 if (read(p_fd
, gd_buf
, gd_size
) != gd_size
)
299 if (lseek(snp_fd
, gd_offset
, SEEK_SET
) == -1)
301 if (write(snp_fd
, gd_buf
, gd_size
) == -1)
319 static void vmdk_parent_close(BlockDriverState
*bs
)
322 bdrv_close(bs
->backing_hd
);
326 static int vmdk_parent_open(BlockDriverState
*bs
, const char * filename
)
328 BDRVVmdkState
*s
= bs
->opaque
;
330 char desc
[DESC_SIZE
];
331 char parent_img_name
[1024];
333 /* the descriptor offset = 0x200 */
334 if (bdrv_pread(s
->hd
, 0x200, desc
, DESC_SIZE
) != DESC_SIZE
)
337 if ((p_name
= strstr(desc
,"parentFileNameHint")) != 0) {
339 struct stat file_buf
;
341 p_name
+= sizeof("parentFileNameHint") + 1;
342 if ((end_name
= strchr(p_name
,'\"')) == 0)
345 strncpy(s
->hd
->backing_file
, p_name
, end_name
- p_name
);
346 if (stat(s
->hd
->backing_file
, &file_buf
) != 0) {
347 path_combine(parent_img_name
, sizeof(parent_img_name
),
348 filename
, s
->hd
->backing_file
);
350 strcpy(parent_img_name
, s
->hd
->backing_file
);
353 s
->hd
->backing_hd
= bdrv_new("");
354 if (!s
->hd
->backing_hd
) {
360 if (bdrv_open(s
->hd
->backing_hd
, parent_img_name
, BDRV_O_RDONLY
) < 0)
368 static int vmdk_open(BlockDriverState
*bs
, const char *filename
, int flags
)
370 BDRVVmdkState
*s
= bs
->opaque
;
375 // Parent must be opened as RO.
376 flags
= BDRV_O_RDONLY
;
377 fprintf(stderr
, "(VMDK) image open: flags=0x%x filename=%s\n", flags
, bs
->filename
);
379 ret
= bdrv_file_open(&s
->hd
, filename
, flags
);
382 if (bdrv_pread(s
->hd
, 0, &magic
, sizeof(magic
)) != sizeof(magic
))
385 magic
= be32_to_cpu(magic
);
386 if (magic
== VMDK3_MAGIC
) {
389 if (bdrv_pread(s
->hd
, sizeof(magic
), &header
, sizeof(header
)) != sizeof(header
))
391 s
->cluster_sectors
= le32_to_cpu(header
.granularity
);
394 bs
->total_sectors
= le32_to_cpu(header
.disk_sectors
);
395 s
->l1_table_offset
= le32_to_cpu(header
.l1dir_offset
) << 9;
396 s
->l1_backup_table_offset
= 0;
397 s
->l1_entry_sectors
= s
->l2_size
* s
->cluster_sectors
;
398 } else if (magic
== VMDK4_MAGIC
) {
401 if (bdrv_pread(s
->hd
, sizeof(magic
), &header
, sizeof(header
)) != sizeof(header
))
403 bs
->total_sectors
= le64_to_cpu(header
.capacity
);
404 s
->cluster_sectors
= le64_to_cpu(header
.granularity
);
405 s
->l2_size
= le32_to_cpu(header
.num_gtes_per_gte
);
406 s
->l1_entry_sectors
= s
->l2_size
* s
->cluster_sectors
;
407 if (s
->l1_entry_sectors
<= 0)
409 s
->l1_size
= (bs
->total_sectors
+ s
->l1_entry_sectors
- 1)
410 / s
->l1_entry_sectors
;
411 s
->l1_table_offset
= le64_to_cpu(header
.rgd_offset
) << 9;
412 s
->l1_backup_table_offset
= le64_to_cpu(header
.gd_offset
) << 9;
419 // try to open parent images, if exist
420 if (vmdk_parent_open(bs
, filename
) != 0)
422 // write the CID once after the image creation
423 s
->parent_cid
= vmdk_read_cid(bs
,1);
428 /* read the L1 table */
429 l1_size
= s
->l1_size
* sizeof(uint32_t);
430 s
->l1_table
= qemu_malloc(l1_size
);
433 if (bdrv_pread(s
->hd
, s
->l1_table_offset
, s
->l1_table
, l1_size
) != l1_size
)
435 for(i
= 0; i
< s
->l1_size
; i
++) {
436 le32_to_cpus(&s
->l1_table
[i
]);
439 if (s
->l1_backup_table_offset
) {
440 s
->l1_backup_table
= qemu_malloc(l1_size
);
441 if (!s
->l1_backup_table
)
443 if (bdrv_pread(s
->hd
, s
->l1_backup_table_offset
, s
->l1_backup_table
, l1_size
) != l1_size
)
445 for(i
= 0; i
< s
->l1_size
; i
++) {
446 le32_to_cpus(&s
->l1_backup_table
[i
]);
450 s
->l2_cache
= qemu_malloc(s
->l2_size
* L2_CACHE_SIZE
* sizeof(uint32_t));
455 qemu_free(s
->l1_backup_table
);
456 qemu_free(s
->l1_table
);
457 qemu_free(s
->l2_cache
);
462 static uint64_t get_cluster_offset(BlockDriverState
*bs
, VmdkMetaData
*m_data
,
463 uint64_t offset
, int allocate
);
465 static int get_whole_cluster(BlockDriverState
*bs
, uint64_t cluster_offset
,
466 uint64_t offset
, int allocate
)
468 uint64_t parent_cluster_offset
;
469 BDRVVmdkState
*s
= bs
->opaque
;
470 uint8_t whole_grain
[s
->cluster_sectors
*512]; // 128 sectors * 512 bytes each = grain size 64KB
472 // we will be here if it's first write on non-exist grain(cluster).
473 // try to read from parent image, if exist
474 if (s
->hd
->backing_hd
) {
475 BDRVVmdkState
*ps
= s
->hd
->backing_hd
->opaque
;
477 if (!vmdk_is_cid_valid(bs
))
480 parent_cluster_offset
= get_cluster_offset(s
->hd
->backing_hd
, NULL
, offset
, allocate
);
482 if (parent_cluster_offset
) {
483 BDRVVmdkState
*act_s
= activeBDRV
.hd
->opaque
;
485 if (bdrv_pread(ps
->hd
, parent_cluster_offset
, whole_grain
, ps
->cluster_sectors
*512) != ps
->cluster_sectors
*512)
488 //Write grain only into the active image
489 if (bdrv_pwrite(act_s
->hd
, activeBDRV
.cluster_offset
<< 9, whole_grain
, sizeof(whole_grain
)) != sizeof(whole_grain
))
496 static int vmdk_L2update(BlockDriverState
*bs
, VmdkMetaData
*m_data
)
498 BDRVVmdkState
*s
= bs
->opaque
;
500 /* update L2 table */
501 if (bdrv_pwrite(s
->hd
, ((int64_t)m_data
->l2_offset
* 512) + (m_data
->l2_index
* sizeof(m_data
->offset
)),
502 &(m_data
->offset
), sizeof(m_data
->offset
)) != sizeof(m_data
->offset
))
504 /* update backup L2 table */
505 if (s
->l1_backup_table_offset
!= 0) {
506 m_data
->l2_offset
= s
->l1_backup_table
[m_data
->l1_index
];
507 if (bdrv_pwrite(s
->hd
, ((int64_t)m_data
->l2_offset
* 512) + (m_data
->l2_index
* sizeof(m_data
->offset
)),
508 &(m_data
->offset
), sizeof(m_data
->offset
)) != sizeof(m_data
->offset
))
515 static uint64_t get_cluster_offset(BlockDriverState
*bs
, VmdkMetaData
*m_data
,
516 uint64_t offset
, int allocate
)
518 BDRVVmdkState
*s
= bs
->opaque
;
519 unsigned int l1_index
, l2_offset
, l2_index
;
521 uint32_t min_count
, *l2_table
, tmp
= 0;
522 uint64_t cluster_offset
;
528 l1_index
= (offset
>> 9) / s
->l1_entry_sectors
;
529 if (l1_index
>= s
->l1_size
)
531 l2_offset
= s
->l1_table
[l1_index
];
534 for(i
= 0; i
< L2_CACHE_SIZE
; i
++) {
535 if (l2_offset
== s
->l2_cache_offsets
[i
]) {
536 /* increment the hit count */
537 if (++s
->l2_cache_counts
[i
] == 0xffffffff) {
538 for(j
= 0; j
< L2_CACHE_SIZE
; j
++) {
539 s
->l2_cache_counts
[j
] >>= 1;
542 l2_table
= s
->l2_cache
+ (i
* s
->l2_size
);
546 /* not found: load a new entry in the least used one */
548 min_count
= 0xffffffff;
549 for(i
= 0; i
< L2_CACHE_SIZE
; i
++) {
550 if (s
->l2_cache_counts
[i
] < min_count
) {
551 min_count
= s
->l2_cache_counts
[i
];
555 l2_table
= s
->l2_cache
+ (min_index
* s
->l2_size
);
556 if (bdrv_pread(s
->hd
, (int64_t)l2_offset
* 512, l2_table
, s
->l2_size
* sizeof(uint32_t)) !=
557 s
->l2_size
* sizeof(uint32_t))
560 s
->l2_cache_offsets
[min_index
] = l2_offset
;
561 s
->l2_cache_counts
[min_index
] = 1;
563 l2_index
= ((offset
>> 9) / s
->cluster_sectors
) % s
->l2_size
;
564 cluster_offset
= le32_to_cpu(l2_table
[l2_index
]);
566 if (!cluster_offset
) {
567 struct stat file_buf
;
571 // Avoid the L2 tables update for the images that have snapshots.
573 status
= stat(s
->hd
->filename
, &file_buf
);
575 fprintf(stderr
, "(VMDK) Fail file stat: filename =%s size=0x%llx errno=%s\n",
576 s
->hd
->filename
, (uint64_t)file_buf
.st_size
, strerror(errno
));
579 cluster_offset
= file_buf
.st_size
;
580 bdrv_truncate(s
->hd
, cluster_offset
+ (s
->cluster_sectors
<< 9));
582 cluster_offset
>>= 9;
583 tmp
= cpu_to_le32(cluster_offset
);
584 l2_table
[l2_index
] = tmp
;
585 // Save the active image state
586 activeBDRV
.cluster_offset
= cluster_offset
;
589 /* First of all we write grain itself, to avoid race condition
590 * that may to corrupt the image.
591 * This problem may occur because of insufficient space on host disk
592 * or inappropriate VM shutdown.
594 if (get_whole_cluster(bs
, cluster_offset
, offset
, allocate
) == -1)
598 m_data
->offset
= tmp
;
599 m_data
->l1_index
= l1_index
;
600 m_data
->l2_index
= l2_index
;
601 m_data
->l2_offset
= l2_offset
;
605 cluster_offset
<<= 9;
606 return cluster_offset
;
609 static int vmdk_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
610 int nb_sectors
, int *pnum
)
612 BDRVVmdkState
*s
= bs
->opaque
;
613 int index_in_cluster
, n
;
614 uint64_t cluster_offset
;
616 cluster_offset
= get_cluster_offset(bs
, NULL
, sector_num
<< 9, 0);
617 index_in_cluster
= sector_num
% s
->cluster_sectors
;
618 n
= s
->cluster_sectors
- index_in_cluster
;
622 return (cluster_offset
!= 0);
625 static int vmdk_read(BlockDriverState
*bs
, int64_t sector_num
,
626 uint8_t *buf
, int nb_sectors
)
628 BDRVVmdkState
*s
= bs
->opaque
;
629 int index_in_cluster
, n
, ret
;
630 uint64_t cluster_offset
;
632 while (nb_sectors
> 0) {
633 cluster_offset
= get_cluster_offset(bs
, NULL
, sector_num
<< 9, 0);
634 index_in_cluster
= sector_num
% s
->cluster_sectors
;
635 n
= s
->cluster_sectors
- index_in_cluster
;
638 if (!cluster_offset
) {
639 // try to read from parent image, if exist
640 if (s
->hd
->backing_hd
) {
641 if (!vmdk_is_cid_valid(bs
))
643 ret
= bdrv_read(s
->hd
->backing_hd
, sector_num
, buf
, n
);
647 memset(buf
, 0, 512 * n
);
650 if(bdrv_pread(s
->hd
, cluster_offset
+ index_in_cluster
* 512, buf
, n
* 512) != n
* 512)
660 static int vmdk_write(BlockDriverState
*bs
, int64_t sector_num
,
661 const uint8_t *buf
, int nb_sectors
)
663 BDRVVmdkState
*s
= bs
->opaque
;
665 int index_in_cluster
, n
;
666 uint64_t cluster_offset
;
667 static int cid_update
= 0;
669 if (sector_num
> bs
->total_sectors
) {
671 "(VMDK) Wrong offset: sector_num=0x%llx total_sectors=0x%llx\n",
672 sector_num
, bs
->total_sectors
);
676 while (nb_sectors
> 0) {
677 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
678 n
= s
->cluster_sectors
- index_in_cluster
;
681 cluster_offset
= get_cluster_offset(bs
, &m_data
, sector_num
<< 9, 1);
685 if (bdrv_pwrite(s
->hd
, cluster_offset
+ index_in_cluster
* 512, buf
, n
* 512) != n
* 512)
688 /* update L2 tables */
689 if (vmdk_L2update(bs
, &m_data
) == -1)
696 // update CID on the first write every time the virtual disk is opened
698 vmdk_write_cid(bs
, time(NULL
));
705 static int vmdk_create(const char *filename
, int64_t total_size
,
706 const char *backing_file
, int flags
)
710 uint32_t tmp
, magic
, grains
, gd_size
, gt_size
, gt_count
;
711 char *desc_template
=
712 "# Disk DescriptorFile\n"
715 "parentCID=ffffffff\n"
716 "createType=\"monolithicSparse\"\n"
718 "# Extent description\n"
719 "RW %lu SPARSE \"%s\"\n"
721 "# The Disk Data Base \n"
724 "ddb.virtualHWVersion = \"4\"\n"
725 "ddb.geometry.cylinders = \"%lu\"\n"
726 "ddb.geometry.heads = \"16\"\n"
727 "ddb.geometry.sectors = \"63\"\n"
728 "ddb.adapterType = \"ide\"\n";
730 const char *real_filename
, *temp_str
;
732 /* XXX: add support for backing file */
734 return vmdk_snapshot_create(filename
, backing_file
);
737 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
| O_LARGEFILE
,
741 magic
= cpu_to_be32(VMDK4_MAGIC
);
742 memset(&header
, 0, sizeof(header
));
743 header
.version
= cpu_to_le32(1);
744 header
.flags
= cpu_to_le32(3); /* ?? */
745 header
.capacity
= cpu_to_le64(total_size
);
746 header
.granularity
= cpu_to_le64(128);
747 header
.num_gtes_per_gte
= cpu_to_le32(512);
749 grains
= (total_size
+ header
.granularity
- 1) / header
.granularity
;
750 gt_size
= ((header
.num_gtes_per_gte
* sizeof(uint32_t)) + 511) >> 9;
751 gt_count
= (grains
+ header
.num_gtes_per_gte
- 1) / header
.num_gtes_per_gte
;
752 gd_size
= (gt_count
* sizeof(uint32_t) + 511) >> 9;
754 header
.desc_offset
= 1;
755 header
.desc_size
= 20;
756 header
.rgd_offset
= header
.desc_offset
+ header
.desc_size
;
757 header
.gd_offset
= header
.rgd_offset
+ gd_size
+ (gt_size
* gt_count
);
758 header
.grain_offset
=
759 ((header
.gd_offset
+ gd_size
+ (gt_size
* gt_count
) +
760 header
.granularity
- 1) / header
.granularity
) *
763 header
.desc_offset
= cpu_to_le64(header
.desc_offset
);
764 header
.desc_size
= cpu_to_le64(header
.desc_size
);
765 header
.rgd_offset
= cpu_to_le64(header
.rgd_offset
);
766 header
.gd_offset
= cpu_to_le64(header
.gd_offset
);
767 header
.grain_offset
= cpu_to_le64(header
.grain_offset
);
769 header
.check_bytes
[0] = 0xa;
770 header
.check_bytes
[1] = 0x20;
771 header
.check_bytes
[2] = 0xd;
772 header
.check_bytes
[3] = 0xa;
774 /* write all the data */
775 write(fd
, &magic
, sizeof(magic
));
776 write(fd
, &header
, sizeof(header
));
778 ftruncate(fd
, header
.grain_offset
<< 9);
780 /* write grain directory */
781 lseek(fd
, le64_to_cpu(header
.rgd_offset
) << 9, SEEK_SET
);
782 for (i
= 0, tmp
= header
.rgd_offset
+ gd_size
;
783 i
< gt_count
; i
++, tmp
+= gt_size
)
784 write(fd
, &tmp
, sizeof(tmp
));
786 /* write backup grain directory */
787 lseek(fd
, le64_to_cpu(header
.gd_offset
) << 9, SEEK_SET
);
788 for (i
= 0, tmp
= header
.gd_offset
+ gd_size
;
789 i
< gt_count
; i
++, tmp
+= gt_size
)
790 write(fd
, &tmp
, sizeof(tmp
));
792 /* compose the descriptor */
793 real_filename
= filename
;
794 if ((temp_str
= strrchr(real_filename
, '\\')) != NULL
)
795 real_filename
= temp_str
+ 1;
796 if ((temp_str
= strrchr(real_filename
, '/')) != NULL
)
797 real_filename
= temp_str
+ 1;
798 if ((temp_str
= strrchr(real_filename
, ':')) != NULL
)
799 real_filename
= temp_str
+ 1;
800 sprintf(desc
, desc_template
, time(NULL
), (unsigned long)total_size
,
801 real_filename
, total_size
/ (63 * 16));
803 /* write the descriptor */
804 lseek(fd
, le64_to_cpu(header
.desc_offset
) << 9, SEEK_SET
);
805 write(fd
, desc
, strlen(desc
));
811 static void vmdk_close(BlockDriverState
*bs
)
813 BDRVVmdkState
*s
= bs
->opaque
;
815 qemu_free(s
->l1_table
);
816 qemu_free(s
->l2_cache
);
818 // try to close parent image, if exist
819 vmdk_parent_close(s
->hd
);
822 static void vmdk_flush(BlockDriverState
*bs
)
824 BDRVVmdkState
*s
= bs
->opaque
;
828 BlockDriver bdrv_vmdk
= {
830 sizeof(BDRVVmdkState
),