]> git.proxmox.com Git - qemu.git/blame - block/vmdk.c
block/qcow.c: fix warnings with _FORTIFY_SOURCE
[qemu.git] / block / vmdk.c
CommitLineData
ea2384d3
FB
1/*
2 * Block driver for the VMDK format
5fafdf24 3 *
ea2384d3 4 * Copyright (c) 2004 Fabrice Bellard
ff1afc72 5 * Copyright (c) 2005 Filip Navara
5fafdf24 6 *
ea2384d3
FB
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:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
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
23 * THE SOFTWARE.
24 */
5f4da8c0 25
faf07963 26#include "qemu-common.h"
ea2384d3 27#include "block_int.h"
5efa9d5a 28#include "module.h"
ea2384d3 29
ea2384d3
FB
30#define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
31#define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
32
33typedef struct {
34 uint32_t version;
35 uint32_t flags;
36 uint32_t disk_sectors;
37 uint32_t granularity;
38 uint32_t l1dir_offset;
39 uint32_t l1dir_size;
40 uint32_t file_sectors;
41 uint32_t cylinders;
42 uint32_t heads;
43 uint32_t sectors_per_track;
44} VMDK3Header;
45
46typedef struct {
47 uint32_t version;
48 uint32_t flags;
49 int64_t capacity;
50 int64_t granularity;
51 int64_t desc_offset;
52 int64_t desc_size;
53 int32_t num_gtes_per_gte;
54 int64_t rgd_offset;
55 int64_t gd_offset;
56 int64_t grain_offset;
57 char filler[1];
58 char check_bytes[4];
ff1afc72 59} __attribute__((packed)) VMDK4Header;
ea2384d3
FB
60
61#define L2_CACHE_SIZE 16
62
63typedef struct BDRVVmdkState {
5f4da8c0 64 BlockDriverState *hd;
ea2384d3 65 int64_t l1_table_offset;
ff1afc72 66 int64_t l1_backup_table_offset;
ea2384d3 67 uint32_t *l1_table;
ff1afc72 68 uint32_t *l1_backup_table;
ea2384d3
FB
69 unsigned int l1_size;
70 uint32_t l1_entry_sectors;
71
72 unsigned int l2_size;
73 uint32_t *l2_cache;
74 uint32_t l2_cache_offsets[L2_CACHE_SIZE];
75 uint32_t l2_cache_counts[L2_CACHE_SIZE];
76
77 unsigned int cluster_sectors;
5f4da8c0 78 uint32_t parent_cid;
630530a6 79 int is_parent;
ea2384d3
FB
80} BDRVVmdkState;
81
630530a6
TS
82typedef struct VmdkMetaData {
83 uint32_t offset;
84 unsigned int l1_index;
85 unsigned int l2_index;
86 unsigned int l2_offset;
87 int valid;
88} VmdkMetaData;
89
90typedef struct ActiveBDRVState{
91 BlockDriverState *hd; // active image handler
92 uint64_t cluster_offset; // current write offset
93}ActiveBDRVState;
94
95static ActiveBDRVState activeBDRV;
96
97
ea2384d3
FB
98static int vmdk_probe(const uint8_t *buf, int buf_size, const char *filename)
99{
100 uint32_t magic;
101
102 if (buf_size < 4)
103 return 0;
104 magic = be32_to_cpu(*(uint32_t *)buf);
105 if (magic == VMDK3_MAGIC ||
106 magic == VMDK4_MAGIC)
107 return 100;
108 else
109 return 0;
110}
111
5f4da8c0
TS
112#define CHECK_CID 1
113
3b46e624 114#define SECTOR_SIZE 512
5f4da8c0 115#define DESC_SIZE 20*SECTOR_SIZE // 20 sectors of 512 bytes each
5fafdf24 116#define HEADER_SIZE 512 // first sector of 512 bytes
5f4da8c0
TS
117
118static uint32_t vmdk_read_cid(BlockDriverState *bs, int parent)
ea2384d3
FB
119{
120 BDRVVmdkState *s = bs->opaque;
5f4da8c0
TS
121 char desc[DESC_SIZE];
122 uint32_t cid;
7ccfb2eb 123 const char *p_name, *cid_str;
5f4da8c0
TS
124 size_t cid_str_size;
125
126 /* the descriptor offset = 0x200 */
127 if (bdrv_pread(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
128 return 0;
129
130 if (parent) {
131 cid_str = "parentCID";
132 cid_str_size = sizeof("parentCID");
133 } else {
134 cid_str = "CID";
135 cid_str_size = sizeof("CID");
136 }
137
511d2b14 138 if ((p_name = strstr(desc,cid_str)) != NULL) {
5f4da8c0
TS
139 p_name += cid_str_size;
140 sscanf(p_name,"%x",&cid);
141 }
142
143 return cid;
144}
145
146static int vmdk_write_cid(BlockDriverState *bs, uint32_t cid)
147{
148 BDRVVmdkState *s = bs->opaque;
149 char desc[DESC_SIZE], tmp_desc[DESC_SIZE];
150 char *p_name, *tmp_str;
151
152 /* the descriptor offset = 0x200 */
153 if (bdrv_pread(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
154 return -1;
155
156 tmp_str = strstr(desc,"parentCID");
363a37d5 157 pstrcpy(tmp_desc, sizeof(tmp_desc), tmp_str);
511d2b14 158 if ((p_name = strstr(desc,"CID")) != NULL) {
5f4da8c0 159 p_name += sizeof("CID");
363a37d5
BS
160 snprintf(p_name, sizeof(desc) - (p_name - desc), "%x\n", cid);
161 pstrcat(desc, sizeof(desc), tmp_desc);
5f4da8c0
TS
162 }
163
164 if (bdrv_pwrite(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
165 return -1;
166 return 0;
167}
168
169static int vmdk_is_cid_valid(BlockDriverState *bs)
170{
171#ifdef CHECK_CID
172 BDRVVmdkState *s = bs->opaque;
b171271a 173 BlockDriverState *p_bs = bs->backing_hd;
5f4da8c0
TS
174 uint32_t cur_pcid;
175
176 if (p_bs) {
177 cur_pcid = vmdk_read_cid(p_bs,0);
178 if (s->parent_cid != cur_pcid)
179 // CID not valid
180 return 0;
181 }
182#endif
183 // CID valid
184 return 1;
185}
186
187static int vmdk_snapshot_create(const char *filename, const char *backing_file)
188{
189 int snp_fd, p_fd;
190 uint32_t p_cid;
5fafdf24 191 char *p_name, *gd_buf, *rgd_buf;
5f4da8c0
TS
192 const char *real_filename, *temp_str;
193 VMDK4Header header;
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];
7ccfb2eb 197 static const char desc_template[] =
5f4da8c0
TS
198 "# Disk DescriptorFile\n"
199 "version=1\n"
200 "CID=%x\n"
201 "parentCID=%x\n"
202 "createType=\"monolithicSparse\"\n"
203 "parentFileNameHint=\"%s\"\n"
204 "\n"
205 "# Extent description\n"
7ccfb2eb 206 "RW %u SPARSE \"%s\"\n"
5f4da8c0
TS
207 "\n"
208 "# The Disk Data Base \n"
209 "#DDB\n"
210 "\n";
211
212 snp_fd = open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, 0644);
213 if (snp_fd < 0)
214 return -1;
215 p_fd = open(backing_file, O_RDONLY | O_BINARY | O_LARGEFILE);
216 if (p_fd < 0) {
217 close(snp_fd);
218 return -1;
219 }
220
221 /* read the header */
222 if (lseek(p_fd, 0x0, SEEK_SET) == -1)
223 goto fail;
224 if (read(p_fd, hdr, HEADER_SIZE) != HEADER_SIZE)
225 goto fail;
226
227 /* write the header */
228 if (lseek(snp_fd, 0x0, SEEK_SET) == -1)
229 goto fail;
230 if (write(snp_fd, hdr, HEADER_SIZE) == -1)
231 goto fail;
232
233 memset(&header, 0, sizeof(header));
234 memcpy(&header,&hdr[4], sizeof(header)); // skip the VMDK4_MAGIC
235
236 ftruncate(snp_fd, header.grain_offset << 9);
237 /* the descriptor offset = 0x200 */
238 if (lseek(p_fd, 0x200, SEEK_SET) == -1)
239 goto fail;
240 if (read(p_fd, p_desc, DESC_SIZE) != DESC_SIZE)
241 goto fail;
242
511d2b14 243 if ((p_name = strstr(p_desc,"CID")) != NULL) {
5f4da8c0
TS
244 p_name += sizeof("CID");
245 sscanf(p_name,"%x",&p_cid);
246 }
247
248 real_filename = filename;
249 if ((temp_str = strrchr(real_filename, '\\')) != NULL)
250 real_filename = temp_str + 1;
251 if ((temp_str = strrchr(real_filename, '/')) != NULL)
252 real_filename = temp_str + 1;
253 if ((temp_str = strrchr(real_filename, ':')) != NULL)
254 real_filename = temp_str + 1;
255
363a37d5
BS
256 snprintf(s_desc, sizeof(s_desc), desc_template, p_cid, p_cid, backing_file,
257 (uint32_t)header.capacity, real_filename);
5f4da8c0
TS
258
259 /* write the descriptor */
260 if (lseek(snp_fd, 0x200, SEEK_SET) == -1)
261 goto fail;
262 if (write(snp_fd, s_desc, strlen(s_desc)) == -1)
263 goto fail;
ea2384d3 264
5f4da8c0
TS
265 gd_offset = header.gd_offset * SECTOR_SIZE; // offset of GD table
266 rgd_offset = header.rgd_offset * SECTOR_SIZE; // offset of RGD table
267 capacity = header.capacity * SECTOR_SIZE; // Extent size
268 /*
269 * Each GDE span 32M disk, means:
270 * 512 GTE per GT, each GTE points to grain
271 */
272 gt_size = (int64_t)header.num_gtes_per_gte * header.granularity * SECTOR_SIZE;
273 if (!gt_size)
274 goto fail;
5fafdf24 275 gde_entries = (uint32_t)(capacity / gt_size); // number of gde/rgde
5f4da8c0
TS
276 gd_size = gde_entries * sizeof(uint32_t);
277
278 /* write RGD */
279 rgd_buf = qemu_malloc(gd_size);
5f4da8c0
TS
280 if (lseek(p_fd, rgd_offset, SEEK_SET) == -1)
281 goto fail_rgd;
282 if (read(p_fd, rgd_buf, gd_size) != gd_size)
283 goto fail_rgd;
284 if (lseek(snp_fd, rgd_offset, SEEK_SET) == -1)
285 goto fail_rgd;
286 if (write(snp_fd, rgd_buf, gd_size) == -1)
287 goto fail_rgd;
288 qemu_free(rgd_buf);
289
290 /* write GD */
291 gd_buf = qemu_malloc(gd_size);
5f4da8c0
TS
292 if (lseek(p_fd, gd_offset, SEEK_SET) == -1)
293 goto fail_gd;
294 if (read(p_fd, gd_buf, gd_size) != gd_size)
295 goto fail_gd;
296 if (lseek(snp_fd, gd_offset, SEEK_SET) == -1)
297 goto fail_gd;
298 if (write(snp_fd, gd_buf, gd_size) == -1)
299 goto fail_gd;
300 qemu_free(gd_buf);
301
302 close(p_fd);
303 close(snp_fd);
304 return 0;
305
306 fail_gd:
307 qemu_free(gd_buf);
3b46e624 308 fail_rgd:
5f4da8c0
TS
309 qemu_free(rgd_buf);
310 fail:
311 close(p_fd);
312 close(snp_fd);
313 return -1;
314}
315
316static void vmdk_parent_close(BlockDriverState *bs)
317{
318 if (bs->backing_hd)
319 bdrv_close(bs->backing_hd);
320}
321
b1d8e52e 322static int parent_open = 0;
5f4da8c0
TS
323static int vmdk_parent_open(BlockDriverState *bs, const char * filename)
324{
325 BDRVVmdkState *s = bs->opaque;
5fafdf24 326 char *p_name;
5f4da8c0
TS
327 char desc[DESC_SIZE];
328 char parent_img_name[1024];
329
330 /* the descriptor offset = 0x200 */
331 if (bdrv_pread(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
332 return -1;
333
511d2b14 334 if ((p_name = strstr(desc,"parentFileNameHint")) != NULL) {
5f4da8c0
TS
335 char *end_name;
336 struct stat file_buf;
337
338 p_name += sizeof("parentFileNameHint") + 1;
511d2b14 339 if ((end_name = strchr(p_name,'\"')) == NULL)
5f4da8c0 340 return -1;
b171271a 341 if ((end_name - p_name) > sizeof (bs->backing_file) - 1)
b34d259a 342 return -1;
3b46e624 343
b171271a
KW
344 pstrcpy(bs->backing_file, end_name - p_name + 1, p_name);
345 if (stat(bs->backing_file, &file_buf) != 0) {
5f4da8c0 346 path_combine(parent_img_name, sizeof(parent_img_name),
b171271a 347 filename, bs->backing_file);
5f4da8c0 348 } else {
363a37d5 349 pstrcpy(parent_img_name, sizeof(parent_img_name),
b171271a 350 bs->backing_file);
5f4da8c0
TS
351 }
352
b171271a
KW
353 bs->backing_hd = bdrv_new("");
354 if (!bs->backing_hd) {
5f4da8c0
TS
355 failure:
356 bdrv_close(s->hd);
ff1afc72 357 return -1;
5f4da8c0 358 }
630530a6 359 parent_open = 1;
f5edb014 360 if (bdrv_open(bs->backing_hd, parent_img_name, 0) < 0)
5f4da8c0 361 goto failure;
630530a6 362 parent_open = 0;
ff1afc72 363 }
5f4da8c0
TS
364
365 return 0;
366}
367
368static int vmdk_open(BlockDriverState *bs, const char *filename, int flags)
369{
370 BDRVVmdkState *s = bs->opaque;
371 uint32_t magic;
372 int l1_size, i, ret;
373
f5edb014
NS
374 if (parent_open) {
375 /* Parent must be opened as RO, no RDWR. */
376 flags = 0;
377 }
630530a6 378
b5eff355 379 ret = bdrv_file_open(&s->hd, filename, flags);
5f4da8c0
TS
380 if (ret < 0)
381 return ret;
382 if (bdrv_pread(s->hd, 0, &magic, sizeof(magic)) != sizeof(magic))
ea2384d3 383 goto fail;
5f4da8c0 384
7143c62c 385 magic = be32_to_cpu(magic);
ea2384d3
FB
386 if (magic == VMDK3_MAGIC) {
387 VMDK3Header header;
5f4da8c0
TS
388
389 if (bdrv_pread(s->hd, sizeof(magic), &header, sizeof(header)) != sizeof(header))
ea2384d3
FB
390 goto fail;
391 s->cluster_sectors = le32_to_cpu(header.granularity);
392 s->l2_size = 1 << 9;
393 s->l1_size = 1 << 6;
394 bs->total_sectors = le32_to_cpu(header.disk_sectors);
ff1afc72
FB
395 s->l1_table_offset = le32_to_cpu(header.l1dir_offset) << 9;
396 s->l1_backup_table_offset = 0;
ea2384d3
FB
397 s->l1_entry_sectors = s->l2_size * s->cluster_sectors;
398 } else if (magic == VMDK4_MAGIC) {
399 VMDK4Header header;
5f4da8c0
TS
400
401 if (bdrv_pread(s->hd, sizeof(magic), &header, sizeof(header)) != sizeof(header))
ea2384d3 402 goto fail;
bd6ea3c8
FB
403 bs->total_sectors = le64_to_cpu(header.capacity);
404 s->cluster_sectors = le64_to_cpu(header.granularity);
ea2384d3
FB
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)
408 goto fail;
5fafdf24 409 s->l1_size = (bs->total_sectors + s->l1_entry_sectors - 1)
ea2384d3 410 / s->l1_entry_sectors;
ff1afc72
FB
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;
5f4da8c0 413
630530a6
TS
414 if (parent_open)
415 s->is_parent = 1;
416 else
417 s->is_parent = 0;
418
5f4da8c0
TS
419 // try to open parent images, if exist
420 if (vmdk_parent_open(bs, filename) != 0)
421 goto fail;
422 // write the CID once after the image creation
423 s->parent_cid = vmdk_read_cid(bs,1);
ea2384d3
FB
424 } else {
425 goto fail;
426 }
5f4da8c0 427
ea2384d3
FB
428 /* read the L1 table */
429 l1_size = s->l1_size * sizeof(uint32_t);
430 s->l1_table = qemu_malloc(l1_size);
5f4da8c0 431 if (bdrv_pread(s->hd, s->l1_table_offset, s->l1_table, l1_size) != l1_size)
ea2384d3
FB
432 goto fail;
433 for(i = 0; i < s->l1_size; i++) {
434 le32_to_cpus(&s->l1_table[i]);
435 }
436
ff1afc72
FB
437 if (s->l1_backup_table_offset) {
438 s->l1_backup_table = qemu_malloc(l1_size);
5f4da8c0 439 if (bdrv_pread(s->hd, s->l1_backup_table_offset, s->l1_backup_table, l1_size) != l1_size)
ff1afc72
FB
440 goto fail;
441 for(i = 0; i < s->l1_size; i++) {
442 le32_to_cpus(&s->l1_backup_table[i]);
443 }
444 }
445
ea2384d3 446 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
ea2384d3
FB
447 return 0;
448 fail:
ff1afc72 449 qemu_free(s->l1_backup_table);
ea2384d3
FB
450 qemu_free(s->l1_table);
451 qemu_free(s->l2_cache);
5f4da8c0 452 bdrv_delete(s->hd);
ea2384d3
FB
453 return -1;
454}
455
630530a6
TS
456static uint64_t get_cluster_offset(BlockDriverState *bs, VmdkMetaData *m_data,
457 uint64_t offset, int allocate);
5f4da8c0
TS
458
459static int get_whole_cluster(BlockDriverState *bs, uint64_t cluster_offset,
460 uint64_t offset, int allocate)
461{
462 uint64_t parent_cluster_offset;
463 BDRVVmdkState *s = bs->opaque;
464 uint8_t whole_grain[s->cluster_sectors*512]; // 128 sectors * 512 bytes each = grain size 64KB
465
466 // we will be here if it's first write on non-exist grain(cluster).
467 // try to read from parent image, if exist
b171271a
KW
468 if (bs->backing_hd) {
469 BDRVVmdkState *ps = bs->backing_hd->opaque;
5f4da8c0
TS
470
471 if (!vmdk_is_cid_valid(bs))
472 return -1;
5f4da8c0 473
b171271a
KW
474 parent_cluster_offset = get_cluster_offset(bs->backing_hd, NULL,
475 offset, allocate);
630530a6
TS
476
477 if (parent_cluster_offset) {
478 BDRVVmdkState *act_s = activeBDRV.hd->opaque;
479
480 if (bdrv_pread(ps->hd, parent_cluster_offset, whole_grain, ps->cluster_sectors*512) != ps->cluster_sectors*512)
481 return -1;
482
483 //Write grain only into the active image
484 if (bdrv_pwrite(act_s->hd, activeBDRV.cluster_offset << 9, whole_grain, sizeof(whole_grain)) != sizeof(whole_grain))
485 return -1;
486 }
487 }
488 return 0;
489}
490
491static int vmdk_L2update(BlockDriverState *bs, VmdkMetaData *m_data)
492{
493 BDRVVmdkState *s = bs->opaque;
494
495 /* update L2 table */
496 if (bdrv_pwrite(s->hd, ((int64_t)m_data->l2_offset * 512) + (m_data->l2_index * sizeof(m_data->offset)),
497 &(m_data->offset), sizeof(m_data->offset)) != sizeof(m_data->offset))
498 return -1;
499 /* update backup L2 table */
500 if (s->l1_backup_table_offset != 0) {
501 m_data->l2_offset = s->l1_backup_table[m_data->l1_index];
502 if (bdrv_pwrite(s->hd, ((int64_t)m_data->l2_offset * 512) + (m_data->l2_index * sizeof(m_data->offset)),
503 &(m_data->offset), sizeof(m_data->offset)) != sizeof(m_data->offset))
5f4da8c0
TS
504 return -1;
505 }
630530a6 506
5f4da8c0
TS
507 return 0;
508}
509
630530a6 510static uint64_t get_cluster_offset(BlockDriverState *bs, VmdkMetaData *m_data,
ff1afc72 511 uint64_t offset, int allocate)
ea2384d3
FB
512{
513 BDRVVmdkState *s = bs->opaque;
514 unsigned int l1_index, l2_offset, l2_index;
515 int min_index, i, j;
630530a6 516 uint32_t min_count, *l2_table, tmp = 0;
ea2384d3 517 uint64_t cluster_offset;
630530a6
TS
518
519 if (m_data)
520 m_data->valid = 0;
521
ea2384d3
FB
522 l1_index = (offset >> 9) / s->l1_entry_sectors;
523 if (l1_index >= s->l1_size)
524 return 0;
525 l2_offset = s->l1_table[l1_index];
526 if (!l2_offset)
527 return 0;
ea2384d3
FB
528 for(i = 0; i < L2_CACHE_SIZE; i++) {
529 if (l2_offset == s->l2_cache_offsets[i]) {
530 /* increment the hit count */
531 if (++s->l2_cache_counts[i] == 0xffffffff) {
532 for(j = 0; j < L2_CACHE_SIZE; j++) {
533 s->l2_cache_counts[j] >>= 1;
534 }
535 }
536 l2_table = s->l2_cache + (i * s->l2_size);
537 goto found;
538 }
539 }
540 /* not found: load a new entry in the least used one */
541 min_index = 0;
542 min_count = 0xffffffff;
543 for(i = 0; i < L2_CACHE_SIZE; i++) {
544 if (s->l2_cache_counts[i] < min_count) {
545 min_count = s->l2_cache_counts[i];
546 min_index = i;
547 }
548 }
549 l2_table = s->l2_cache + (min_index * s->l2_size);
5fafdf24 550 if (bdrv_pread(s->hd, (int64_t)l2_offset * 512, l2_table, s->l2_size * sizeof(uint32_t)) !=
5f4da8c0 551 s->l2_size * sizeof(uint32_t))
ea2384d3 552 return 0;
5f4da8c0 553
ea2384d3
FB
554 s->l2_cache_offsets[min_index] = l2_offset;
555 s->l2_cache_counts[min_index] = 1;
556 found:
557 l2_index = ((offset >> 9) / s->cluster_sectors) % s->l2_size;
558 cluster_offset = le32_to_cpu(l2_table[l2_index]);
630530a6 559
ff1afc72
FB
560 if (!cluster_offset) {
561 if (!allocate)
562 return 0;
630530a6
TS
563 // Avoid the L2 tables update for the images that have snapshots.
564 if (!s->is_parent) {
49140a77 565 cluster_offset = bdrv_getlength(s->hd);
630530a6
TS
566 bdrv_truncate(s->hd, cluster_offset + (s->cluster_sectors << 9));
567
568 cluster_offset >>= 9;
569 tmp = cpu_to_le32(cluster_offset);
570 l2_table[l2_index] = tmp;
571 // Save the active image state
572 activeBDRV.cluster_offset = cluster_offset;
573 activeBDRV.hd = bs;
ff1afc72 574 }
630530a6
TS
575 /* First of all we write grain itself, to avoid race condition
576 * that may to corrupt the image.
577 * This problem may occur because of insufficient space on host disk
578 * or inappropriate VM shutdown.
579 */
5f4da8c0
TS
580 if (get_whole_cluster(bs, cluster_offset, offset, allocate) == -1)
581 return 0;
630530a6
TS
582
583 if (m_data) {
584 m_data->offset = tmp;
585 m_data->l1_index = l1_index;
586 m_data->l2_index = l2_index;
587 m_data->l2_offset = l2_offset;
588 m_data->valid = 1;
589 }
ff1afc72 590 }
ea2384d3
FB
591 cluster_offset <<= 9;
592 return cluster_offset;
593}
594
5fafdf24 595static int vmdk_is_allocated(BlockDriverState *bs, int64_t sector_num,
ea2384d3
FB
596 int nb_sectors, int *pnum)
597{
598 BDRVVmdkState *s = bs->opaque;
599 int index_in_cluster, n;
600 uint64_t cluster_offset;
601
630530a6 602 cluster_offset = get_cluster_offset(bs, NULL, sector_num << 9, 0);
ea2384d3
FB
603 index_in_cluster = sector_num % s->cluster_sectors;
604 n = s->cluster_sectors - index_in_cluster;
605 if (n > nb_sectors)
606 n = nb_sectors;
607 *pnum = n;
608 return (cluster_offset != 0);
609}
610
5fafdf24 611static int vmdk_read(BlockDriverState *bs, int64_t sector_num,
ea2384d3
FB
612 uint8_t *buf, int nb_sectors)
613{
614 BDRVVmdkState *s = bs->opaque;
5f4da8c0 615 int index_in_cluster, n, ret;
ea2384d3 616 uint64_t cluster_offset;
5f4da8c0 617
ea2384d3 618 while (nb_sectors > 0) {
630530a6 619 cluster_offset = get_cluster_offset(bs, NULL, sector_num << 9, 0);
ea2384d3
FB
620 index_in_cluster = sector_num % s->cluster_sectors;
621 n = s->cluster_sectors - index_in_cluster;
622 if (n > nb_sectors)
623 n = nb_sectors;
624 if (!cluster_offset) {
5f4da8c0 625 // try to read from parent image, if exist
b171271a 626 if (bs->backing_hd) {
5f4da8c0
TS
627 if (!vmdk_is_cid_valid(bs))
628 return -1;
b171271a 629 ret = bdrv_read(bs->backing_hd, sector_num, buf, n);
5f4da8c0
TS
630 if (ret < 0)
631 return -1;
632 } else {
633 memset(buf, 0, 512 * n);
634 }
ea2384d3 635 } else {
5f4da8c0 636 if(bdrv_pread(s->hd, cluster_offset + index_in_cluster * 512, buf, n * 512) != n * 512)
ea2384d3
FB
637 return -1;
638 }
639 nb_sectors -= n;
640 sector_num += n;
641 buf += n * 512;
642 }
643 return 0;
644}
645
5fafdf24 646static int vmdk_write(BlockDriverState *bs, int64_t sector_num,
ea2384d3
FB
647 const uint8_t *buf, int nb_sectors)
648{
ff1afc72 649 BDRVVmdkState *s = bs->opaque;
630530a6 650 VmdkMetaData m_data;
5f4da8c0 651 int index_in_cluster, n;
ff1afc72 652 uint64_t cluster_offset;
5f4da8c0 653 static int cid_update = 0;
ff1afc72 654
630530a6
TS
655 if (sector_num > bs->total_sectors) {
656 fprintf(stderr,
92868412
JM
657 "(VMDK) Wrong offset: sector_num=0x%" PRIx64
658 " total_sectors=0x%" PRIx64 "\n",
630530a6
TS
659 sector_num, bs->total_sectors);
660 return -1;
661 }
662
ff1afc72
FB
663 while (nb_sectors > 0) {
664 index_in_cluster = sector_num & (s->cluster_sectors - 1);
665 n = s->cluster_sectors - index_in_cluster;
666 if (n > nb_sectors)
667 n = nb_sectors;
630530a6 668 cluster_offset = get_cluster_offset(bs, &m_data, sector_num << 9, 1);
ff1afc72
FB
669 if (!cluster_offset)
670 return -1;
630530a6 671
5f4da8c0 672 if (bdrv_pwrite(s->hd, cluster_offset + index_in_cluster * 512, buf, n * 512) != n * 512)
ff1afc72 673 return -1;
630530a6
TS
674 if (m_data.valid) {
675 /* update L2 tables */
676 if (vmdk_L2update(bs, &m_data) == -1)
677 return -1;
678 }
ff1afc72
FB
679 nb_sectors -= n;
680 sector_num += n;
681 buf += n * 512;
5f4da8c0
TS
682
683 // update CID on the first write every time the virtual disk is opened
684 if (!cid_update) {
685 vmdk_write_cid(bs, time(NULL));
686 cid_update++;
687 }
ff1afc72
FB
688 }
689 return 0;
ea2384d3
FB
690}
691
0e7e1989 692static int vmdk_create(const char *filename, QEMUOptionParameter *options)
8979b227
FB
693{
694 int fd, i;
695 VMDK4Header header;
696 uint32_t tmp, magic, grains, gd_size, gt_size, gt_count;
7ccfb2eb 697 static const char desc_template[] =
8979b227
FB
698 "# Disk DescriptorFile\n"
699 "version=1\n"
700 "CID=%x\n"
701 "parentCID=ffffffff\n"
702 "createType=\"monolithicSparse\"\n"
703 "\n"
704 "# Extent description\n"
7fd6d9fc 705 "RW %" PRId64 " SPARSE \"%s\"\n"
8979b227
FB
706 "\n"
707 "# The Disk Data Base \n"
708 "#DDB\n"
709 "\n"
ec36ba14 710 "ddb.virtualHWVersion = \"%d\"\n"
7fd6d9fc 711 "ddb.geometry.cylinders = \"%" PRId64 "\"\n"
8979b227
FB
712 "ddb.geometry.heads = \"16\"\n"
713 "ddb.geometry.sectors = \"63\"\n"
714 "ddb.adapterType = \"ide\"\n";
715 char desc[1024];
716 const char *real_filename, *temp_str;
0e7e1989
KW
717 int64_t total_size = 0;
718 const char *backing_file = NULL;
719 int flags = 0;
720
721 // Read out options
722 while (options && options->name) {
723 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
724 total_size = options->value.n / 512;
725 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
726 backing_file = options->value.s;
727 } else if (!strcmp(options->name, BLOCK_OPT_COMPAT6)) {
728 flags |= options->value.n ? BLOCK_FLAG_COMPAT6: 0;
729 }
730 options++;
731 }
8979b227
FB
732
733 /* XXX: add support for backing file */
5f4da8c0
TS
734 if (backing_file) {
735 return vmdk_snapshot_create(filename, backing_file);
736 }
8979b227
FB
737
738 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
739 0644);
740 if (fd < 0)
741 return -1;
742 magic = cpu_to_be32(VMDK4_MAGIC);
743 memset(&header, 0, sizeof(header));
744 header.version = cpu_to_le32(1);
745 header.flags = cpu_to_le32(3); /* ?? */
746 header.capacity = cpu_to_le64(total_size);
747 header.granularity = cpu_to_le64(128);
748 header.num_gtes_per_gte = cpu_to_le32(512);
749
750 grains = (total_size + header.granularity - 1) / header.granularity;
751 gt_size = ((header.num_gtes_per_gte * sizeof(uint32_t)) + 511) >> 9;
752 gt_count = (grains + header.num_gtes_per_gte - 1) / header.num_gtes_per_gte;
753 gd_size = (gt_count * sizeof(uint32_t) + 511) >> 9;
754
755 header.desc_offset = 1;
756 header.desc_size = 20;
757 header.rgd_offset = header.desc_offset + header.desc_size;
758 header.gd_offset = header.rgd_offset + gd_size + (gt_size * gt_count);
759 header.grain_offset =
760 ((header.gd_offset + gd_size + (gt_size * gt_count) +
761 header.granularity - 1) / header.granularity) *
762 header.granularity;
763
764 header.desc_offset = cpu_to_le64(header.desc_offset);
765 header.desc_size = cpu_to_le64(header.desc_size);
766 header.rgd_offset = cpu_to_le64(header.rgd_offset);
767 header.gd_offset = cpu_to_le64(header.gd_offset);
768 header.grain_offset = cpu_to_le64(header.grain_offset);
769
770 header.check_bytes[0] = 0xa;
771 header.check_bytes[1] = 0x20;
772 header.check_bytes[2] = 0xd;
773 header.check_bytes[3] = 0xa;
3b46e624
TS
774
775 /* write all the data */
8979b227
FB
776 write(fd, &magic, sizeof(magic));
777 write(fd, &header, sizeof(header));
778
779 ftruncate(fd, header.grain_offset << 9);
780
781 /* write grain directory */
782 lseek(fd, le64_to_cpu(header.rgd_offset) << 9, SEEK_SET);
783 for (i = 0, tmp = header.rgd_offset + gd_size;
784 i < gt_count; i++, tmp += gt_size)
785 write(fd, &tmp, sizeof(tmp));
3b46e624 786
8979b227
FB
787 /* write backup grain directory */
788 lseek(fd, le64_to_cpu(header.gd_offset) << 9, SEEK_SET);
789 for (i = 0, tmp = header.gd_offset + gd_size;
790 i < gt_count; i++, tmp += gt_size)
791 write(fd, &tmp, sizeof(tmp));
792
793 /* compose the descriptor */
794 real_filename = filename;
795 if ((temp_str = strrchr(real_filename, '\\')) != NULL)
796 real_filename = temp_str + 1;
797 if ((temp_str = strrchr(real_filename, '/')) != NULL)
798 real_filename = temp_str + 1;
799 if ((temp_str = strrchr(real_filename, ':')) != NULL)
800 real_filename = temp_str + 1;
7ccfb2eb 801 snprintf(desc, sizeof(desc), desc_template, (unsigned int)time(NULL),
7fd6d9fc
BS
802 total_size, real_filename,
803 (flags & BLOCK_FLAG_COMPAT6 ? 6 : 4),
804 total_size / (int64_t)(63 * 16));
8979b227
FB
805
806 /* write the descriptor */
807 lseek(fd, le64_to_cpu(header.desc_offset) << 9, SEEK_SET);
808 write(fd, desc, strlen(desc));
809
810 close(fd);
811 return 0;
812}
813
e2731add 814static void vmdk_close(BlockDriverState *bs)
ea2384d3
FB
815{
816 BDRVVmdkState *s = bs->opaque;
5f4da8c0 817
ea2384d3
FB
818 qemu_free(s->l1_table);
819 qemu_free(s->l2_cache);
5f4da8c0
TS
820 // try to close parent image, if exist
821 vmdk_parent_close(s->hd);
5cbdd273 822 bdrv_delete(s->hd);
ea2384d3
FB
823}
824
7a6cba61
PB
825static void vmdk_flush(BlockDriverState *bs)
826{
827 BDRVVmdkState *s = bs->opaque;
5f4da8c0 828 bdrv_flush(s->hd);
7a6cba61
PB
829}
830
0e7e1989
KW
831
832static QEMUOptionParameter vmdk_create_options[] = {
db08adf5
KW
833 {
834 .name = BLOCK_OPT_SIZE,
835 .type = OPT_SIZE,
836 .help = "Virtual disk size"
837 },
838 {
839 .name = BLOCK_OPT_BACKING_FILE,
840 .type = OPT_STRING,
841 .help = "File name of a base image"
842 },
843 {
844 .name = BLOCK_OPT_COMPAT6,
845 .type = OPT_FLAG,
846 .help = "VMDK version 6 image"
847 },
0e7e1989
KW
848 { NULL }
849};
850
5efa9d5a 851static BlockDriver bdrv_vmdk = {
e60f469c
AJ
852 .format_name = "vmdk",
853 .instance_size = sizeof(BDRVVmdkState),
854 .bdrv_probe = vmdk_probe,
855 .bdrv_open = vmdk_open,
856 .bdrv_read = vmdk_read,
857 .bdrv_write = vmdk_write,
858 .bdrv_close = vmdk_close,
859 .bdrv_create = vmdk_create,
860 .bdrv_flush = vmdk_flush,
861 .bdrv_is_allocated = vmdk_is_allocated,
0e7e1989
KW
862
863 .create_options = vmdk_create_options,
ea2384d3 864};
5efa9d5a
AL
865
866static void bdrv_vmdk_init(void)
867{
868 bdrv_register(&bdrv_vmdk);
869}
870
871block_init(bdrv_vmdk_init);