vmdk.c 54.6 KB
Newer Older
B
bellard 已提交
1 2
/*
 * Block driver for the VMDK format
3
 *
B
bellard 已提交
4
 * Copyright (c) 2004 Fabrice Bellard
5
 * Copyright (c) 2005 Filip Navara
6
 *
B
bellard 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
25

P
pbrook 已提交
26
#include "qemu-common.h"
27
#include "block/block_int.h"
28
#include "qemu/module.h"
29
#include "migration/migration.h"
S
Stefan Weil 已提交
30
#include <zlib.h>
B
bellard 已提交
31 32 33

#define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
#define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
F
Fam Zheng 已提交
34
#define VMDK4_COMPRESSION_DEFLATE 1
F
Fam Zheng 已提交
35
#define VMDK4_FLAG_NL_DETECT (1 << 0)
36
#define VMDK4_FLAG_RGD (1 << 1)
37 38
/* Zeroed-grain enable bit */
#define VMDK4_FLAG_ZERO_GRAIN   (1 << 2)
F
Fam Zheng 已提交
39 40
#define VMDK4_FLAG_COMPRESS (1 << 16)
#define VMDK4_FLAG_MARKER (1 << 17)
41
#define VMDK4_GD_AT_END 0xffffffffffffffffULL
B
bellard 已提交
42

43
#define VMDK_GTE_ZEROED 0x1
F
Fam Zheng 已提交
44 45 46 47 48 49 50 51

/* VMDK internal error codes */
#define VMDK_OK      0
#define VMDK_ERROR   (-1)
/* Cluster not allocated */
#define VMDK_UNALLOC (-2)
#define VMDK_ZEROED  (-3)

52 53
#define BLOCK_OPT_ZEROED_GRAIN "zeroed_grain"

B
bellard 已提交
54 55 56 57 58 59 60 61 62 63 64
typedef struct {
    uint32_t version;
    uint32_t flags;
    uint32_t disk_sectors;
    uint32_t granularity;
    uint32_t l1dir_offset;
    uint32_t l1dir_size;
    uint32_t file_sectors;
    uint32_t cylinders;
    uint32_t heads;
    uint32_t sectors_per_track;
65
} QEMU_PACKED VMDK3Header;
B
bellard 已提交
66 67 68 69

typedef struct {
    uint32_t version;
    uint32_t flags;
70 71 72 73
    uint64_t capacity;
    uint64_t granularity;
    uint64_t desc_offset;
    uint64_t desc_size;
74 75
    /* Number of GrainTableEntries per GrainTable */
    uint32_t num_gtes_per_gt;
76 77 78
    uint64_t rgd_offset;
    uint64_t gd_offset;
    uint64_t grain_offset;
B
bellard 已提交
79 80
    char filler[1];
    char check_bytes[4];
F
Fam Zheng 已提交
81
    uint16_t compressAlgorithm;
82
} QEMU_PACKED VMDK4Header;
B
bellard 已提交
83 84 85

#define L2_CACHE_SIZE 16

F
Fam Zheng 已提交
86 87 88
typedef struct VmdkExtent {
    BlockDriverState *file;
    bool flat;
F
Fam Zheng 已提交
89 90
    bool compressed;
    bool has_marker;
91 92
    bool has_zero_grain;
    int version;
F
Fam Zheng 已提交
93 94
    int64_t sectors;
    int64_t end_sector;
95
    int64_t flat_start_offset;
B
bellard 已提交
96
    int64_t l1_table_offset;
97
    int64_t l1_backup_table_offset;
B
bellard 已提交
98
    uint32_t *l1_table;
99
    uint32_t *l1_backup_table;
B
bellard 已提交
100 101 102 103 104 105 106 107 108
    unsigned int l1_size;
    uint32_t l1_entry_sectors;

    unsigned int l2_size;
    uint32_t *l2_cache;
    uint32_t l2_cache_offsets[L2_CACHE_SIZE];
    uint32_t l2_cache_counts[L2_CACHE_SIZE];

    unsigned int cluster_sectors;
F
Fam Zheng 已提交
109 110 111
} VmdkExtent;

typedef struct BDRVVmdkState {
112
    CoMutex lock;
113
    uint64_t desc_offset;
114
    bool cid_updated;
115
    uint32_t parent_cid;
F
Fam Zheng 已提交
116 117 118
    int num_extents;
    /* Extent array with num_extents entries, ascend ordered by address */
    VmdkExtent *extents;
K
Kevin Wolf 已提交
119
    Error *migration_blocker;
B
bellard 已提交
120 121
} BDRVVmdkState;

122 123 124 125 126 127
typedef struct VmdkMetaData {
    uint32_t offset;
    unsigned int l1_index;
    unsigned int l2_index;
    unsigned int l2_offset;
    int valid;
F
Fam Zheng 已提交
128
    uint32_t *l2_cache_entry;
129 130
} VmdkMetaData;

F
Fam Zheng 已提交
131 132 133 134
typedef struct VmdkGrainMarker {
    uint64_t lba;
    uint32_t size;
    uint8_t  data[0];
135
} QEMU_PACKED VmdkGrainMarker;
F
Fam Zheng 已提交
136

137 138 139 140 141 142 143
enum {
    MARKER_END_OF_STREAM    = 0,
    MARKER_GRAIN_TABLE      = 1,
    MARKER_GRAIN_DIRECTORY  = 2,
    MARKER_FOOTER           = 3,
};

B
bellard 已提交
144 145 146 147
static int vmdk_probe(const uint8_t *buf, int buf_size, const char *filename)
{
    uint32_t magic;

F
Fam Zheng 已提交
148
    if (buf_size < 4) {
B
bellard 已提交
149
        return 0;
F
Fam Zheng 已提交
150
    }
B
bellard 已提交
151 152
    magic = be32_to_cpu(*(uint32_t *)buf);
    if (magic == VMDK3_MAGIC ||
153
        magic == VMDK4_MAGIC) {
B
bellard 已提交
154
        return 100;
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
    } else {
        const char *p = (const char *)buf;
        const char *end = p + buf_size;
        while (p < end) {
            if (*p == '#') {
                /* skip comment line */
                while (p < end && *p != '\n') {
                    p++;
                }
                p++;
                continue;
            }
            if (*p == ' ') {
                while (p < end && *p == ' ') {
                    p++;
                }
                /* skip '\r' if windows line endings used. */
                if (p < end && *p == '\r') {
                    p++;
                }
                /* only accept blank lines before 'version=' line */
                if (p == end || *p != '\n') {
                    return 0;
                }
                p++;
                continue;
            }
            if (end - p >= strlen("version=X\n")) {
                if (strncmp("version=1\n", p, strlen("version=1\n")) == 0 ||
                    strncmp("version=2\n", p, strlen("version=2\n")) == 0) {
                    return 100;
                }
            }
            if (end - p >= strlen("version=X\r\n")) {
                if (strncmp("version=1\r\n", p, strlen("version=1\r\n")) == 0 ||
                    strncmp("version=2\r\n", p, strlen("version=2\r\n")) == 0) {
                    return 100;
                }
            }
            return 0;
        }
B
bellard 已提交
196
        return 0;
197
    }
B
bellard 已提交
198 199
}

200 201
#define CHECK_CID 1

202
#define SECTOR_SIZE 512
F
Fam Zheng 已提交
203 204 205
#define DESC_SIZE (20 * SECTOR_SIZE)    /* 20 sectors of 512 bytes each */
#define BUF_SIZE 4096
#define HEADER_SIZE 512                 /* first sector of 512 bytes */
206

F
Fam Zheng 已提交
207 208 209 210
static void vmdk_free_extents(BlockDriverState *bs)
{
    int i;
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
211
    VmdkExtent *e;
F
Fam Zheng 已提交
212 213

    for (i = 0; i < s->num_extents; i++) {
F
Fam Zheng 已提交
214 215 216 217 218
        e = &s->extents[i];
        g_free(e->l1_table);
        g_free(e->l2_cache);
        g_free(e->l1_backup_table);
        if (e->file != bs->file) {
F
Fam Zheng 已提交
219
            bdrv_unref(e->file);
F
Fam Zheng 已提交
220
        }
F
Fam Zheng 已提交
221
    }
222
    g_free(s->extents);
F
Fam Zheng 已提交
223 224
}

225 226 227 228 229 230 231 232 233 234 235
static void vmdk_free_last_extent(BlockDriverState *bs)
{
    BDRVVmdkState *s = bs->opaque;

    if (s->num_extents == 0) {
        return;
    }
    s->num_extents--;
    s->extents = g_realloc(s->extents, s->num_extents * sizeof(VmdkExtent));
}

236
static uint32_t vmdk_read_cid(BlockDriverState *bs, int parent)
B
bellard 已提交
237
{
238
    char desc[DESC_SIZE];
239
    uint32_t cid = 0xffffffff;
240
    const char *p_name, *cid_str;
241
    size_t cid_str_size;
242
    BDRVVmdkState *s = bs->opaque;
K
Kevin Wolf 已提交
243
    int ret;
244

K
Kevin Wolf 已提交
245 246
    ret = bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE);
    if (ret < 0) {
247
        return 0;
248
    }
249 250 251 252 253 254 255 256 257

    if (parent) {
        cid_str = "parentCID";
        cid_str_size = sizeof("parentCID");
    } else {
        cid_str = "CID";
        cid_str_size = sizeof("CID");
    }

K
Kevin Wolf 已提交
258
    desc[DESC_SIZE - 1] = '\0';
F
Fam Zheng 已提交
259 260
    p_name = strstr(desc, cid_str);
    if (p_name != NULL) {
261
        p_name += cid_str_size;
F
Fam Zheng 已提交
262
        sscanf(p_name, "%x", &cid);
263 264 265 266 267 268 269 270 271
    }

    return cid;
}

static int vmdk_write_cid(BlockDriverState *bs, uint32_t cid)
{
    char desc[DESC_SIZE], tmp_desc[DESC_SIZE];
    char *p_name, *tmp_str;
272
    BDRVVmdkState *s = bs->opaque;
K
Kevin Wolf 已提交
273
    int ret;
274

K
Kevin Wolf 已提交
275 276 277
    ret = bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE);
    if (ret < 0) {
        return ret;
278
    }
279

K
Kevin Wolf 已提交
280
    desc[DESC_SIZE - 1] = '\0';
F
Fam Zheng 已提交
281
    tmp_str = strstr(desc, "parentCID");
K
Kevin Wolf 已提交
282 283 284 285
    if (tmp_str == NULL) {
        return -EINVAL;
    }

B
blueswir1 已提交
286
    pstrcpy(tmp_desc, sizeof(tmp_desc), tmp_str);
F
Fam Zheng 已提交
287 288
    p_name = strstr(desc, "CID");
    if (p_name != NULL) {
289
        p_name += sizeof("CID");
B
blueswir1 已提交
290 291
        snprintf(p_name, sizeof(desc) - (p_name - desc), "%x\n", cid);
        pstrcat(desc, sizeof(desc), tmp_desc);
292 293
    }

K
Kevin Wolf 已提交
294 295 296
    ret = bdrv_pwrite_sync(bs->file, s->desc_offset, desc, DESC_SIZE);
    if (ret < 0) {
        return ret;
297
    }
K
Kevin Wolf 已提交
298

299 300 301 302 303 304 305
    return 0;
}

static int vmdk_is_cid_valid(BlockDriverState *bs)
{
#ifdef CHECK_CID
    BDRVVmdkState *s = bs->opaque;
K
Kevin Wolf 已提交
306
    BlockDriverState *p_bs = bs->backing_hd;
307 308 309
    uint32_t cur_pcid;

    if (p_bs) {
F
Fam Zheng 已提交
310 311 312
        cur_pcid = vmdk_read_cid(p_bs, 0);
        if (s->parent_cid != cur_pcid) {
            /* CID not valid */
313
            return 0;
F
Fam Zheng 已提交
314
        }
315 316
    }
#endif
F
Fam Zheng 已提交
317
    /* CID valid */
318 319 320
    return 1;
}

J
Jeff Cody 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
/* Queue extents, if any, for reopen() */
static int vmdk_reopen_prepare(BDRVReopenState *state,
                               BlockReopenQueue *queue, Error **errp)
{
    BDRVVmdkState *s;
    int ret = -1;
    int i;
    VmdkExtent *e;

    assert(state != NULL);
    assert(state->bs != NULL);

    if (queue == NULL) {
        error_set(errp, ERROR_CLASS_GENERIC_ERROR,
                 "No reopen queue for VMDK extents");
        goto exit;
    }

    s = state->bs->opaque;

    assert(s != NULL);

    for (i = 0; i < s->num_extents; i++) {
        e = &s->extents[i];
        if (e->file != state->bs->file) {
            bdrv_reopen_queue(queue, e->file, state->flags);
        }
    }
    ret = 0;

exit:
    return ret;
}

355
static int vmdk_parent_open(BlockDriverState *bs)
356
{
357
    char *p_name;
358
    char desc[DESC_SIZE + 1];
359
    BDRVVmdkState *s = bs->opaque;
360
    int ret;
361

362
    desc[DESC_SIZE] = '\0';
363 364 365
    ret = bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE);
    if (ret < 0) {
        return ret;
366
    }
367

F
Fam Zheng 已提交
368 369
    p_name = strstr(desc, "parentFileNameHint");
    if (p_name != NULL) {
370 371 372
        char *end_name;

        p_name += sizeof("parentFileNameHint") + 1;
F
Fam Zheng 已提交
373 374
        end_name = strchr(p_name, '\"');
        if (end_name == NULL) {
375
            return -EINVAL;
F
Fam Zheng 已提交
376 377
        }
        if ((end_name - p_name) > sizeof(bs->backing_file) - 1) {
378
            return -EINVAL;
F
Fam Zheng 已提交
379
        }
380

K
Kevin Wolf 已提交
381
        pstrcpy(bs->backing_file, end_name - p_name + 1, p_name);
382
    }
383 384 385 386

    return 0;
}

F
Fam Zheng 已提交
387 388
/* Create and append extent to the extent array. Return the added VmdkExtent
 * address. return NULL if allocation failed. */
389
static int vmdk_add_extent(BlockDriverState *bs,
F
Fam Zheng 已提交
390 391 392
                           BlockDriverState *file, bool flat, int64_t sectors,
                           int64_t l1_offset, int64_t l1_backup_offset,
                           uint32_t l1_size,
393 394
                           int l2_size, uint64_t cluster_sectors,
                           VmdkExtent **new_extent)
F
Fam Zheng 已提交
395 396 397 398
{
    VmdkExtent *extent;
    BDRVVmdkState *s = bs->opaque;

399 400 401 402 403
    if (cluster_sectors > 0x200000) {
        /* 0x200000 * 512Bytes = 1GB for one cluster is unrealistic */
        error_report("invalid granularity, image may be corrupt");
        return -EINVAL;
    }
404 405 406 407 408 409 410 411
    if (l1_size > 512 * 1024 * 1024) {
        /* Although with big capacity and small l1_entry_sectors, we can get a
         * big l1_size, we don't want unbounded value to allocate the table.
         * Limit it to 512M, which is 16PB for default cluster and L2 table
         * size */
        error_report("L1 size too big");
        return -EFBIG;
    }
412

413
    s->extents = g_realloc(s->extents,
F
Fam Zheng 已提交
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
                              (s->num_extents + 1) * sizeof(VmdkExtent));
    extent = &s->extents[s->num_extents];
    s->num_extents++;

    memset(extent, 0, sizeof(VmdkExtent));
    extent->file = file;
    extent->flat = flat;
    extent->sectors = sectors;
    extent->l1_table_offset = l1_offset;
    extent->l1_backup_table_offset = l1_backup_offset;
    extent->l1_size = l1_size;
    extent->l1_entry_sectors = l2_size * cluster_sectors;
    extent->l2_size = l2_size;
    extent->cluster_sectors = cluster_sectors;

    if (s->num_extents > 1) {
        extent->end_sector = (*(extent - 1)).end_sector + extent->sectors;
    } else {
        extent->end_sector = extent->sectors;
    }
    bs->total_sectors = extent->end_sector;
435 436 437 438
    if (new_extent) {
        *new_extent = extent;
    }
    return 0;
F
Fam Zheng 已提交
439 440
}

441
static int vmdk_init_tables(BlockDriverState *bs, VmdkExtent *extent)
442
{
443 444
    int ret;
    int l1_size, i;
445

B
bellard 已提交
446
    /* read the L1 table */
F
Fam Zheng 已提交
447
    l1_size = extent->l1_size * sizeof(uint32_t);
448
    extent->l1_table = g_malloc(l1_size);
449 450 451 452 453 454
    ret = bdrv_pread(extent->file,
                    extent->l1_table_offset,
                    extent->l1_table,
                    l1_size);
    if (ret < 0) {
        goto fail_l1;
F
Fam Zheng 已提交
455 456 457
    }
    for (i = 0; i < extent->l1_size; i++) {
        le32_to_cpus(&extent->l1_table[i]);
B
bellard 已提交
458 459
    }

F
Fam Zheng 已提交
460
    if (extent->l1_backup_table_offset) {
461
        extent->l1_backup_table = g_malloc(l1_size);
462 463 464 465 466 467
        ret = bdrv_pread(extent->file,
                        extent->l1_backup_table_offset,
                        extent->l1_backup_table,
                        l1_size);
        if (ret < 0) {
            goto fail_l1b;
F
Fam Zheng 已提交
468 469 470
        }
        for (i = 0; i < extent->l1_size; i++) {
            le32_to_cpus(&extent->l1_backup_table[i]);
471 472 473
        }
    }

F
Fam Zheng 已提交
474
    extent->l2_cache =
475
        g_malloc(extent->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
B
bellard 已提交
476
    return 0;
477
 fail_l1b:
478
    g_free(extent->l1_backup_table);
479
 fail_l1:
480
    g_free(extent->l1_table);
481 482 483
    return ret;
}

F
Fam Zheng 已提交
484 485 486
static int vmdk_open_vmfs_sparse(BlockDriverState *bs,
                                 BlockDriverState *file,
                                 int flags)
487 488 489 490 491 492
{
    int ret;
    uint32_t magic;
    VMDK3Header header;
    VmdkExtent *extent;

493
    ret = bdrv_pread(file, sizeof(magic), &header, sizeof(header));
494
    if (ret < 0) {
495
        return ret;
496
    }
497 498 499 500 501 502 503 504
    ret = vmdk_add_extent(bs, file, false,
                          le32_to_cpu(header.disk_sectors),
                          le32_to_cpu(header.l1dir_offset) << 9,
                          0,
                          le32_to_cpu(header.l1dir_size),
                          4096,
                          le32_to_cpu(header.granularity),
                          &extent);
505 506 507
    if (ret < 0) {
        return ret;
    }
508 509
    ret = vmdk_init_tables(bs, extent);
    if (ret) {
510 511
        /* free extent allocated by vmdk_add_extent */
        vmdk_free_last_extent(bs);
512 513 514 515
    }
    return ret;
}

F
Fam Zheng 已提交
516
static int vmdk_open_desc_file(BlockDriverState *bs, int flags,
517
                               uint64_t desc_offset);
F
Fam Zheng 已提交
518

519 520 521
static int vmdk_open_vmdk4(BlockDriverState *bs,
                           BlockDriverState *file,
                           int flags)
522 523 524 525 526 527
{
    int ret;
    uint32_t magic;
    uint32_t l1_size, l1_entry_sectors;
    VMDK4Header header;
    VmdkExtent *extent;
528
    int64_t l1_backup_offset = 0;
529

530
    ret = bdrv_pread(file, sizeof(magic), &header, sizeof(header));
531
    if (ret < 0) {
532
        return ret;
533
    }
534
    if (header.capacity == 0) {
535
        uint64_t desc_offset = le64_to_cpu(header.desc_offset);
536 537 538
        if (desc_offset) {
            return vmdk_open_desc_file(bs, flags, desc_offset << 9);
        }
F
Fam Zheng 已提交
539
    }
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587

    if (le64_to_cpu(header.gd_offset) == VMDK4_GD_AT_END) {
        /*
         * The footer takes precedence over the header, so read it in. The
         * footer starts at offset -1024 from the end: One sector for the
         * footer, and another one for the end-of-stream marker.
         */
        struct {
            struct {
                uint64_t val;
                uint32_t size;
                uint32_t type;
                uint8_t pad[512 - 16];
            } QEMU_PACKED footer_marker;

            uint32_t magic;
            VMDK4Header header;
            uint8_t pad[512 - 4 - sizeof(VMDK4Header)];

            struct {
                uint64_t val;
                uint32_t size;
                uint32_t type;
                uint8_t pad[512 - 16];
            } QEMU_PACKED eos_marker;
        } QEMU_PACKED footer;

        ret = bdrv_pread(file,
            bs->file->total_sectors * 512 - 1536,
            &footer, sizeof(footer));
        if (ret < 0) {
            return ret;
        }

        /* Some sanity checks for the footer */
        if (be32_to_cpu(footer.magic) != VMDK4_MAGIC ||
            le32_to_cpu(footer.footer_marker.size) != 0  ||
            le32_to_cpu(footer.footer_marker.type) != MARKER_FOOTER ||
            le64_to_cpu(footer.eos_marker.val) != 0  ||
            le32_to_cpu(footer.eos_marker.size) != 0  ||
            le32_to_cpu(footer.eos_marker.type) != MARKER_END_OF_STREAM)
        {
            return -EINVAL;
        }

        header = footer.header;
    }

588 589 590 591 592 593 594 595 596
    if (le32_to_cpu(header.version) >= 3) {
        char buf[64];
        snprintf(buf, sizeof(buf), "VMDK version %d",
                 le32_to_cpu(header.version));
        qerror_report(QERR_UNKNOWN_BLOCK_FORMAT_FEATURE,
                bs->device_name, "vmdk", buf);
        return -ENOTSUP;
    }

597
    if (le32_to_cpu(header.num_gtes_per_gt) > 512) {
598 599 600 601
        error_report("L2 table size too big");
        return -EINVAL;
    }

602
    l1_entry_sectors = le32_to_cpu(header.num_gtes_per_gt)
603
                        * le64_to_cpu(header.granularity);
604
    if (l1_entry_sectors == 0) {
605 606
        return -EINVAL;
    }
607 608
    l1_size = (le64_to_cpu(header.capacity) + l1_entry_sectors - 1)
                / l1_entry_sectors;
609 610 611
    if (le32_to_cpu(header.flags) & VMDK4_FLAG_RGD) {
        l1_backup_offset = le64_to_cpu(header.rgd_offset) << 9;
    }
612
    ret = vmdk_add_extent(bs, file, false,
613 614
                          le64_to_cpu(header.capacity),
                          le64_to_cpu(header.gd_offset) << 9,
615
                          l1_backup_offset,
616
                          l1_size,
617
                          le32_to_cpu(header.num_gtes_per_gt),
618 619 620 621 622
                          le64_to_cpu(header.granularity),
                          &extent);
    if (ret < 0) {
        return ret;
    }
F
Fam Zheng 已提交
623 624 625
    extent->compressed =
        le16_to_cpu(header.compressAlgorithm) == VMDK4_COMPRESSION_DEFLATE;
    extent->has_marker = le32_to_cpu(header.flags) & VMDK4_FLAG_MARKER;
626 627
    extent->version = le32_to_cpu(header.version);
    extent->has_zero_grain = le32_to_cpu(header.flags) & VMDK4_FLAG_ZERO_GRAIN;
628 629
    ret = vmdk_init_tables(bs, extent);
    if (ret) {
630 631
        /* free extent allocated by vmdk_add_extent */
        vmdk_free_last_extent(bs);
632 633 634 635
    }
    return ret;
}

636 637 638 639 640 641 642 643 644
/* find an option value out of descriptor file */
static int vmdk_parse_description(const char *desc, const char *opt_name,
        char *buf, int buf_size)
{
    char *opt_pos, *opt_end;
    const char *end = desc + strlen(desc);

    opt_pos = strstr(desc, opt_name);
    if (!opt_pos) {
F
Fam Zheng 已提交
645
        return VMDK_ERROR;
646 647 648 649
    }
    /* Skip "=\"" following opt_name */
    opt_pos += strlen(opt_name) + 2;
    if (opt_pos >= end) {
F
Fam Zheng 已提交
650
        return VMDK_ERROR;
651 652 653 654 655 656
    }
    opt_end = opt_pos;
    while (opt_end < end && *opt_end != '"') {
        opt_end++;
    }
    if (opt_end == end || buf_size < opt_end - opt_pos + 1) {
F
Fam Zheng 已提交
657
        return VMDK_ERROR;
658 659
    }
    pstrcpy(buf, opt_end - opt_pos + 1, opt_pos);
F
Fam Zheng 已提交
660
    return VMDK_OK;
661 662
}

663 664 665 666 667 668 669 670 671 672 673 674 675 676
/* Open an extent file and append to bs array */
static int vmdk_open_sparse(BlockDriverState *bs,
                            BlockDriverState *file,
                            int flags)
{
    uint32_t magic;

    if (bdrv_pread(file, 0, &magic, sizeof(magic)) != sizeof(magic)) {
        return -EIO;
    }

    magic = be32_to_cpu(magic);
    switch (magic) {
        case VMDK3_MAGIC:
F
Fam Zheng 已提交
677
            return vmdk_open_vmfs_sparse(bs, file, flags);
678 679 680 681 682
            break;
        case VMDK4_MAGIC:
            return vmdk_open_vmdk4(bs, file, flags);
            break;
        default:
683
            return -EMEDIUMTYPE;
684 685 686 687
            break;
    }
}

688 689 690 691 692 693 694 695 696 697
static int vmdk_parse_extents(const char *desc, BlockDriverState *bs,
        const char *desc_file_path)
{
    int ret;
    char access[11];
    char type[11];
    char fname[512];
    const char *p = desc;
    int64_t sectors = 0;
    int64_t flat_offset;
698 699
    char extent_path[PATH_MAX];
    BlockDriverState *extent_file;
700 701 702 703 704 705 706 707

    while (*p) {
        /* parse extent line:
         * RW [size in sectors] FLAT "file-name.vmdk" OFFSET
         * or
         * RW [size in sectors] SPARSE "file-name.vmdk"
         */
        flat_offset = -1;
P
Philipp Hahn 已提交
708
        ret = sscanf(p, "%10s %" SCNd64 " %10s \"%511[^\n\r\"]\" %" SCNd64,
709 710 711 712 713 714 715 716 717 718 719 720
                access, &sectors, type, fname, &flat_offset);
        if (ret < 4 || strcmp(access, "RW")) {
            goto next_line;
        } else if (!strcmp(type, "FLAT")) {
            if (ret != 5 || flat_offset < 0) {
                return -EINVAL;
            }
        } else if (ret != 4) {
            return -EINVAL;
        }

        if (sectors <= 0 ||
F
Fam Zheng 已提交
721
            (strcmp(type, "FLAT") && strcmp(type, "SPARSE") &&
P
Paolo Bonzini 已提交
722
             strcmp(type, "VMFS") && strcmp(type, "VMFSSPARSE")) ||
723 724 725 726
            (strcmp(access, "RW"))) {
            goto next_line;
        }

727 728
        path_combine(extent_path, sizeof(extent_path),
                desc_file_path, fname);
729
        ret = bdrv_file_open(&extent_file, extent_path, NULL, bs->open_flags);
730 731 732 733
        if (ret) {
            return ret;
        }

734
        /* save to extents array */
P
Paolo Bonzini 已提交
735
        if (!strcmp(type, "FLAT") || !strcmp(type, "VMFS")) {
736 737 738
            /* FLAT extent */
            VmdkExtent *extent;

739 740 741 742 743
            ret = vmdk_add_extent(bs, extent_file, true, sectors,
                            0, 0, 0, 0, sectors, &extent);
            if (ret < 0) {
                return ret;
            }
F
Fam Zheng 已提交
744
            extent->flat_start_offset = flat_offset << 9;
F
Fam Zheng 已提交
745 746
        } else if (!strcmp(type, "SPARSE") || !strcmp(type, "VMFSSPARSE")) {
            /* SPARSE extent and VMFSSPARSE extent are both "COWD" sparse file*/
747 748
            ret = vmdk_open_sparse(bs, extent_file, bs->open_flags);
            if (ret) {
F
Fam Zheng 已提交
749
                bdrv_unref(extent_file);
750 751
                return ret;
            }
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
        } else {
            fprintf(stderr,
                "VMDK: Not supported extent type \"%s\""".\n", type);
            return -ENOTSUP;
        }
next_line:
        /* move to next line */
        while (*p && *p != '\n') {
            p++;
        }
        p++;
    }
    return 0;
}

F
Fam Zheng 已提交
767
static int vmdk_open_desc_file(BlockDriverState *bs, int flags,
768
                               uint64_t desc_offset)
769 770
{
    int ret;
771
    char *buf = NULL;
772 773
    char ct[128];
    BDRVVmdkState *s = bs->opaque;
774
    int64_t size;
775

776 777 778 779 780 781 782 783 784
    size = bdrv_getlength(bs->file);
    if (size < 0) {
        return -EINVAL;
    }

    size = MIN(size, 1 << 20);  /* avoid unbounded allocation */
    buf = g_malloc0(size + 1);

    ret = bdrv_pread(bs->file, desc_offset, buf, size);
785
    if (ret < 0) {
786
        goto exit;
787 788
    }
    if (vmdk_parse_description(buf, "createType", ct, sizeof(ct))) {
789 790
        ret = -EMEDIUMTYPE;
        goto exit;
791
    }
F
Fam Zheng 已提交
792
    if (strcmp(ct, "monolithicFlat") &&
P
Paolo Bonzini 已提交
793
        strcmp(ct, "vmfs") &&
F
Fam Zheng 已提交
794
        strcmp(ct, "vmfsSparse") &&
795
        strcmp(ct, "twoGbMaxExtentSparse") &&
F
Fam Zheng 已提交
796
        strcmp(ct, "twoGbMaxExtentFlat")) {
797 798
        fprintf(stderr,
                "VMDK: Not supported image type \"%s\""".\n", ct);
799 800
        ret = -ENOTSUP;
        goto exit;
801 802
    }
    s->desc_offset = 0;
803 804 805 806
    ret = vmdk_parse_extents(buf, bs, bs->file->filename);
exit:
    g_free(buf);
    return ret;
807 808
}

809
static int vmdk_open(BlockDriverState *bs, QDict *options, int flags)
810
{
811 812
    int ret;
    BDRVVmdkState *s = bs->opaque;
813

814 815
    if (vmdk_open_sparse(bs, bs->file, flags) == 0) {
        s->desc_offset = 0x200;
P
Paolo Bonzini 已提交
816 817
    } else {
        ret = vmdk_open_desc_file(bs, flags, 0);
818
        if (ret) {
P
Paolo Bonzini 已提交
819
            goto fail;
820
        }
821
    }
P
Paolo Bonzini 已提交
822 823 824 825 826 827
    /* try to open parent images, if exist */
    ret = vmdk_parent_open(bs);
    if (ret) {
        goto fail;
    }
    s->parent_cid = vmdk_read_cid(bs, 1);
828
    qemu_co_mutex_init(&s->lock);
K
Kevin Wolf 已提交
829 830 831 832 833 834 835 836

    /* Disable migration when VMDK images are used */
    error_set(&s->migration_blocker,
              QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
              "vmdk", bs->device_name, "live migration");
    migrate_add_blocker(s->migration_blocker);

    return 0;
P
Paolo Bonzini 已提交
837 838 839 840

fail:
    vmdk_free_extents(bs);
    return ret;
B
bellard 已提交
841 842
}

F
Fam Zheng 已提交
843 844 845 846 847
static int get_whole_cluster(BlockDriverState *bs,
                VmdkExtent *extent,
                uint64_t cluster_offset,
                uint64_t offset,
                bool allocate)
848
{
849 850
    int ret = VMDK_OK;
    uint8_t *whole_grain = NULL;
851

852 853
    /* we will be here if it's first write on non-exist grain(cluster).
     * try to read from parent image, if exist */
K
Kevin Wolf 已提交
854
    if (bs->backing_hd) {
855 856
        whole_grain =
            qemu_blockalign(bs, extent->cluster_sectors << BDRV_SECTOR_BITS);
F
Fam Zheng 已提交
857
        if (!vmdk_is_cid_valid(bs)) {
858 859
            ret = VMDK_ERROR;
            goto exit;
F
Fam Zheng 已提交
860
        }
861

862 863
        /* floor offset to cluster */
        offset -= offset % (extent->cluster_sectors * 512);
K
Kevin Wolf 已提交
864
        ret = bdrv_read(bs->backing_hd, offset >> 9, whole_grain,
F
Fam Zheng 已提交
865
                extent->cluster_sectors);
K
Kevin Wolf 已提交
866
        if (ret < 0) {
867 868
            ret = VMDK_ERROR;
            goto exit;
K
Kevin Wolf 已提交
869
        }
870

871
        /* Write grain only into the active image */
F
Fam Zheng 已提交
872 873
        ret = bdrv_write(extent->file, cluster_offset, whole_grain,
                extent->cluster_sectors);
K
Kevin Wolf 已提交
874
        if (ret < 0) {
875 876
            ret = VMDK_ERROR;
            goto exit;
877 878
        }
    }
879 880 881
exit:
    qemu_vfree(whole_grain);
    return ret;
882 883
}

F
Fam Zheng 已提交
884
static int vmdk_L2update(VmdkExtent *extent, VmdkMetaData *m_data)
885
{
886 887 888
    uint32_t offset;
    QEMU_BUILD_BUG_ON(sizeof(offset) != sizeof(m_data->offset));
    offset = cpu_to_le32(m_data->offset);
889
    /* update L2 table */
F
Fam Zheng 已提交
890 891 892 893
    if (bdrv_pwrite_sync(
                extent->file,
                ((int64_t)m_data->l2_offset * 512)
                    + (m_data->l2_index * sizeof(m_data->offset)),
894
                &offset, sizeof(offset)) < 0) {
F
Fam Zheng 已提交
895
        return VMDK_ERROR;
F
Fam Zheng 已提交
896
    }
897
    /* update backup L2 table */
F
Fam Zheng 已提交
898 899 900 901 902 903
    if (extent->l1_backup_table_offset != 0) {
        m_data->l2_offset = extent->l1_backup_table[m_data->l1_index];
        if (bdrv_pwrite_sync(
                    extent->file,
                    ((int64_t)m_data->l2_offset * 512)
                        + (m_data->l2_index * sizeof(m_data->offset)),
904
                    &offset, sizeof(offset)) < 0) {
F
Fam Zheng 已提交
905
            return VMDK_ERROR;
F
Fam Zheng 已提交
906
        }
907
    }
F
Fam Zheng 已提交
908 909 910
    if (m_data->l2_cache_entry) {
        *m_data->l2_cache_entry = offset;
    }
911

F
Fam Zheng 已提交
912
    return VMDK_OK;
913 914
}

915
static int get_cluster_offset(BlockDriverState *bs,
F
Fam Zheng 已提交
916 917
                                    VmdkExtent *extent,
                                    VmdkMetaData *m_data,
918 919 920
                                    uint64_t offset,
                                    int allocate,
                                    uint64_t *cluster_offset)
B
bellard 已提交
921 922 923
{
    unsigned int l1_index, l2_offset, l2_index;
    int min_index, i, j;
924
    uint32_t min_count, *l2_table;
925
    bool zeroed = false;
926

F
Fam Zheng 已提交
927
    if (m_data) {
928
        m_data->valid = 0;
F
Fam Zheng 已提交
929
    }
930
    if (extent->flat) {
931
        *cluster_offset = extent->flat_start_offset;
F
Fam Zheng 已提交
932
        return VMDK_OK;
933
    }
934

F
Fam Zheng 已提交
935
    offset -= (extent->end_sector - extent->sectors) * SECTOR_SIZE;
F
Fam Zheng 已提交
936 937
    l1_index = (offset >> 9) / extent->l1_entry_sectors;
    if (l1_index >= extent->l1_size) {
F
Fam Zheng 已提交
938
        return VMDK_ERROR;
F
Fam Zheng 已提交
939 940 941
    }
    l2_offset = extent->l1_table[l1_index];
    if (!l2_offset) {
F
Fam Zheng 已提交
942
        return VMDK_UNALLOC;
F
Fam Zheng 已提交
943
    }
944
    for (i = 0; i < L2_CACHE_SIZE; i++) {
F
Fam Zheng 已提交
945
        if (l2_offset == extent->l2_cache_offsets[i]) {
B
bellard 已提交
946
            /* increment the hit count */
F
Fam Zheng 已提交
947
            if (++extent->l2_cache_counts[i] == 0xffffffff) {
948
                for (j = 0; j < L2_CACHE_SIZE; j++) {
F
Fam Zheng 已提交
949
                    extent->l2_cache_counts[j] >>= 1;
B
bellard 已提交
950 951
                }
            }
F
Fam Zheng 已提交
952
            l2_table = extent->l2_cache + (i * extent->l2_size);
B
bellard 已提交
953 954 955 956 957 958
            goto found;
        }
    }
    /* not found: load a new entry in the least used one */
    min_index = 0;
    min_count = 0xffffffff;
959
    for (i = 0; i < L2_CACHE_SIZE; i++) {
F
Fam Zheng 已提交
960 961
        if (extent->l2_cache_counts[i] < min_count) {
            min_count = extent->l2_cache_counts[i];
B
bellard 已提交
962 963 964
            min_index = i;
        }
    }
F
Fam Zheng 已提交
965 966 967 968 969 970 971
    l2_table = extent->l2_cache + (min_index * extent->l2_size);
    if (bdrv_pread(
                extent->file,
                (int64_t)l2_offset * 512,
                l2_table,
                extent->l2_size * sizeof(uint32_t)
            ) != extent->l2_size * sizeof(uint32_t)) {
F
Fam Zheng 已提交
972
        return VMDK_ERROR;
F
Fam Zheng 已提交
973
    }
974

F
Fam Zheng 已提交
975 976
    extent->l2_cache_offsets[min_index] = l2_offset;
    extent->l2_cache_counts[min_index] = 1;
B
bellard 已提交
977
 found:
F
Fam Zheng 已提交
978
    l2_index = ((offset >> 9) / extent->cluster_sectors) % extent->l2_size;
979
    *cluster_offset = le32_to_cpu(l2_table[l2_index]);
980

F
Fam Zheng 已提交
981 982 983 984 985 986 987 988
    if (m_data) {
        m_data->valid = 1;
        m_data->l1_index = l1_index;
        m_data->l2_index = l2_index;
        m_data->offset = *cluster_offset;
        m_data->l2_offset = l2_offset;
        m_data->l2_cache_entry = &l2_table[l2_index];
    }
989 990 991 992 993
    if (extent->has_zero_grain && *cluster_offset == VMDK_GTE_ZEROED) {
        zeroed = true;
    }

    if (!*cluster_offset || zeroed) {
994
        if (!allocate) {
995
            return zeroed ? VMDK_ZEROED : VMDK_UNALLOC;
996
        }
997

F
Fam Zheng 已提交
998
        /* Avoid the L2 tables update for the images that have snapshots. */
999
        *cluster_offset = bdrv_getlength(extent->file);
F
Fam Zheng 已提交
1000 1001 1002 1003 1004 1005
        if (!extent->compressed) {
            bdrv_truncate(
                extent->file,
                *cluster_offset + (extent->cluster_sectors << 9)
            );
        }
1006

1007
        *cluster_offset >>= 9;
1008
        l2_table[l2_index] = cpu_to_le32(*cluster_offset);
1009 1010 1011 1012 1013 1014

        /* First of all we write grain itself, to avoid race condition
         * that may to corrupt the image.
         * This problem may occur because of insufficient space on host disk
         * or inappropriate VM shutdown.
         */
F
Fam Zheng 已提交
1015
        if (get_whole_cluster(
F
Fam Zheng 已提交
1016
                bs, extent, *cluster_offset, offset, allocate) == -1) {
F
Fam Zheng 已提交
1017
            return VMDK_ERROR;
F
Fam Zheng 已提交
1018
        }
1019 1020

        if (m_data) {
1021
            m_data->offset = *cluster_offset;
1022
        }
1023
    }
1024
    *cluster_offset <<= 9;
F
Fam Zheng 已提交
1025
    return VMDK_OK;
B
bellard 已提交
1026 1027
}

F
Fam Zheng 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
static VmdkExtent *find_extent(BDRVVmdkState *s,
                                int64_t sector_num, VmdkExtent *start_hint)
{
    VmdkExtent *extent = start_hint;

    if (!extent) {
        extent = &s->extents[0];
    }
    while (extent < &s->extents[s->num_extents]) {
        if (sector_num < extent->end_sector) {
            return extent;
        }
        extent++;
    }
    return NULL;
}

1045 1046
static int coroutine_fn vmdk_co_is_allocated(BlockDriverState *bs,
        int64_t sector_num, int nb_sectors, int *pnum)
B
bellard 已提交
1047 1048
{
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
1049 1050 1051 1052 1053 1054 1055 1056
    int64_t index_in_cluster, n, ret;
    uint64_t offset;
    VmdkExtent *extent;

    extent = find_extent(s, sector_num, NULL);
    if (!extent) {
        return 0;
    }
1057
    qemu_co_mutex_lock(&s->lock);
1058 1059
    ret = get_cluster_offset(bs, extent, NULL,
                            sector_num * 512, 0, &offset);
1060
    qemu_co_mutex_unlock(&s->lock);
1061 1062

    ret = (ret == VMDK_OK || ret == VMDK_ZEROED);
1063 1064 1065

    index_in_cluster = sector_num % extent->cluster_sectors;
    n = extent->cluster_sectors - index_in_cluster;
F
Fam Zheng 已提交
1066
    if (n > nb_sectors) {
B
bellard 已提交
1067
        n = nb_sectors;
F
Fam Zheng 已提交
1068
    }
B
bellard 已提交
1069
    *pnum = n;
F
Fam Zheng 已提交
1070
    return ret;
B
bellard 已提交
1071 1072
}

1073 1074 1075 1076 1077
static int vmdk_write_extent(VmdkExtent *extent, int64_t cluster_offset,
                            int64_t offset_in_cluster, const uint8_t *buf,
                            int nb_sectors, int64_t sector_num)
{
    int ret;
F
Fam Zheng 已提交
1078 1079
    VmdkGrainMarker *data = NULL;
    uLongf buf_len;
1080 1081 1082
    const uint8_t *write_buf = buf;
    int write_len = nb_sectors * 512;

F
Fam Zheng 已提交
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
    if (extent->compressed) {
        if (!extent->has_marker) {
            ret = -EINVAL;
            goto out;
        }
        buf_len = (extent->cluster_sectors << 9) * 2;
        data = g_malloc(buf_len + sizeof(VmdkGrainMarker));
        if (compress(data->data, &buf_len, buf, nb_sectors << 9) != Z_OK ||
                buf_len == 0) {
            ret = -EINVAL;
            goto out;
        }
        data->lba = sector_num;
        data->size = buf_len;
        write_buf = (uint8_t *)data;
        write_len = buf_len + sizeof(VmdkGrainMarker);
    }
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
    ret = bdrv_pwrite(extent->file,
                        cluster_offset + offset_in_cluster,
                        write_buf,
                        write_len);
    if (ret != write_len) {
        ret = ret < 0 ? ret : -EIO;
        goto out;
    }
    ret = 0;
 out:
F
Fam Zheng 已提交
1110
    g_free(data);
1111 1112 1113 1114 1115 1116 1117 1118
    return ret;
}

static int vmdk_read_extent(VmdkExtent *extent, int64_t cluster_offset,
                            int64_t offset_in_cluster, uint8_t *buf,
                            int nb_sectors)
{
    int ret;
F
Fam Zheng 已提交
1119 1120 1121 1122 1123 1124 1125
    int cluster_bytes, buf_bytes;
    uint8_t *cluster_buf, *compressed_data;
    uint8_t *uncomp_buf;
    uint32_t data_len;
    VmdkGrainMarker *marker;
    uLongf buf_len;

1126

F
Fam Zheng 已提交
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
    if (!extent->compressed) {
        ret = bdrv_pread(extent->file,
                          cluster_offset + offset_in_cluster,
                          buf, nb_sectors * 512);
        if (ret == nb_sectors * 512) {
            return 0;
        } else {
            return -EIO;
        }
    }
    cluster_bytes = extent->cluster_sectors * 512;
    /* Read two clusters in case GrainMarker + compressed data > one cluster */
    buf_bytes = cluster_bytes * 2;
    cluster_buf = g_malloc(buf_bytes);
    uncomp_buf = g_malloc(cluster_bytes);
1142
    ret = bdrv_pread(extent->file,
F
Fam Zheng 已提交
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
                cluster_offset,
                cluster_buf, buf_bytes);
    if (ret < 0) {
        goto out;
    }
    compressed_data = cluster_buf;
    buf_len = cluster_bytes;
    data_len = cluster_bytes;
    if (extent->has_marker) {
        marker = (VmdkGrainMarker *)cluster_buf;
        compressed_data = marker->data;
        data_len = le32_to_cpu(marker->size);
    }
    if (!data_len || data_len > buf_bytes) {
        ret = -EINVAL;
        goto out;
    }
    ret = uncompress(uncomp_buf, &buf_len, compressed_data, data_len);
    if (ret != Z_OK) {
        ret = -EINVAL;
        goto out;

    }
    if (offset_in_cluster < 0 ||
            offset_in_cluster + nb_sectors * 512 > buf_len) {
        ret = -EINVAL;
        goto out;
1170
    }
F
Fam Zheng 已提交
1171 1172 1173 1174 1175 1176 1177
    memcpy(buf, uncomp_buf + offset_in_cluster, nb_sectors * 512);
    ret = 0;

 out:
    g_free(uncomp_buf);
    g_free(cluster_buf);
    return ret;
1178 1179
}

1180
static int vmdk_read(BlockDriverState *bs, int64_t sector_num,
B
bellard 已提交
1181 1182 1183
                    uint8_t *buf, int nb_sectors)
{
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
1184 1185
    int ret;
    uint64_t n, index_in_cluster;
1186
    uint64_t extent_begin_sector, extent_relative_sector_num;
F
Fam Zheng 已提交
1187
    VmdkExtent *extent = NULL;
B
bellard 已提交
1188
    uint64_t cluster_offset;
1189

B
bellard 已提交
1190
    while (nb_sectors > 0) {
F
Fam Zheng 已提交
1191 1192 1193 1194
        extent = find_extent(s, sector_num, extent);
        if (!extent) {
            return -EIO;
        }
1195 1196 1197
        ret = get_cluster_offset(
                            bs, extent, NULL,
                            sector_num << 9, 0, &cluster_offset);
1198 1199 1200
        extent_begin_sector = extent->end_sector - extent->sectors;
        extent_relative_sector_num = sector_num - extent_begin_sector;
        index_in_cluster = extent_relative_sector_num % extent->cluster_sectors;
F
Fam Zheng 已提交
1201
        n = extent->cluster_sectors - index_in_cluster;
F
Fam Zheng 已提交
1202
        if (n > nb_sectors) {
B
bellard 已提交
1203
            n = nb_sectors;
F
Fam Zheng 已提交
1204
        }
1205
        if (ret != VMDK_OK) {
1206
            /* if not allocated, try to read from parent image, if exist */
1207
            if (bs->backing_hd && ret != VMDK_ZEROED) {
F
Fam Zheng 已提交
1208
                if (!vmdk_is_cid_valid(bs)) {
1209
                    return -EINVAL;
F
Fam Zheng 已提交
1210
                }
K
Kevin Wolf 已提交
1211
                ret = bdrv_read(bs->backing_hd, sector_num, buf, n);
F
Fam Zheng 已提交
1212
                if (ret < 0) {
1213
                    return ret;
F
Fam Zheng 已提交
1214
                }
1215 1216 1217
            } else {
                memset(buf, 0, 512 * n);
            }
B
bellard 已提交
1218
        } else {
1219 1220 1221 1222
            ret = vmdk_read_extent(extent,
                            cluster_offset, index_in_cluster * 512,
                            buf, n);
            if (ret) {
1223 1224
                return ret;
            }
B
bellard 已提交
1225 1226 1227 1228 1229 1230 1231 1232
        }
        nb_sectors -= n;
        sector_num += n;
        buf += n * 512;
    }
    return 0;
}

1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
static coroutine_fn int vmdk_co_read(BlockDriverState *bs, int64_t sector_num,
                                     uint8_t *buf, int nb_sectors)
{
    int ret;
    BDRVVmdkState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
    ret = vmdk_read(bs, sector_num, buf, nb_sectors);
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

F
Fam Zheng 已提交
1244 1245 1246
/**
 * vmdk_write:
 * @zeroed:       buf is ignored (data is zero), use zeroed_grain GTE feature
1247 1248 1249 1250
 *                if possible, otherwise return -ENOTSUP.
 * @zero_dry_run: used for zeroed == true only, don't update L2 table, just try
 *                with each cluster. By dry run we can find if the zero write
 *                is possible without modifying image data.
F
Fam Zheng 已提交
1251 1252 1253
 *
 * Returns: error code with 0 for success.
 */
1254
static int vmdk_write(BlockDriverState *bs, int64_t sector_num,
F
Fam Zheng 已提交
1255 1256
                      const uint8_t *buf, int nb_sectors,
                      bool zeroed, bool zero_dry_run)
B
bellard 已提交
1257
{
1258
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
1259
    VmdkExtent *extent = NULL;
1260
    int n, ret;
F
Fam Zheng 已提交
1261
    int64_t index_in_cluster;
1262
    uint64_t extent_begin_sector, extent_relative_sector_num;
1263
    uint64_t cluster_offset;
F
Fam Zheng 已提交
1264
    VmdkMetaData m_data;
1265

1266 1267
    if (sector_num > bs->total_sectors) {
        fprintf(stderr,
1268 1269
                "(VMDK) Wrong offset: sector_num=0x%" PRIx64
                " total_sectors=0x%" PRIx64 "\n",
1270
                sector_num, bs->total_sectors);
1271
        return -EIO;
1272 1273
    }

1274
    while (nb_sectors > 0) {
F
Fam Zheng 已提交
1275 1276 1277 1278
        extent = find_extent(s, sector_num, extent);
        if (!extent) {
            return -EIO;
        }
1279
        ret = get_cluster_offset(
F
Fam Zheng 已提交
1280 1281 1282
                                bs,
                                extent,
                                &m_data,
F
Fam Zheng 已提交
1283
                                sector_num << 9, !extent->compressed,
1284
                                &cluster_offset);
F
Fam Zheng 已提交
1285
        if (extent->compressed) {
F
Fam Zheng 已提交
1286
            if (ret == VMDK_OK) {
F
Fam Zheng 已提交
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
                /* Refuse write to allocated cluster for streamOptimized */
                fprintf(stderr,
                        "VMDK: can't write to allocated cluster"
                        " for streamOptimized\n");
                return -EIO;
            } else {
                /* allocate */
                ret = get_cluster_offset(
                                        bs,
                                        extent,
                                        &m_data,
                                        sector_num << 9, 1,
                                        &cluster_offset);
            }
        }
F
Fam Zheng 已提交
1302
        if (ret == VMDK_ERROR) {
1303
            return -EINVAL;
F
Fam Zheng 已提交
1304
        }
1305 1306 1307
        extent_begin_sector = extent->end_sector - extent->sectors;
        extent_relative_sector_num = sector_num - extent_begin_sector;
        index_in_cluster = extent_relative_sector_num % extent->cluster_sectors;
F
Fam Zheng 已提交
1308 1309 1310 1311
        n = extent->cluster_sectors - index_in_cluster;
        if (n > nb_sectors) {
            n = nb_sectors;
        }
F
Fam Zheng 已提交
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
        if (zeroed) {
            /* Do zeroed write, buf is ignored */
            if (extent->has_zero_grain &&
                    index_in_cluster == 0 &&
                    n >= extent->cluster_sectors) {
                n = extent->cluster_sectors;
                if (!zero_dry_run) {
                    m_data.offset = VMDK_GTE_ZEROED;
                    /* update L2 tables */
                    if (vmdk_L2update(extent, &m_data) != VMDK_OK) {
                        return -EIO;
                    }
                }
            } else {
                return -ENOTSUP;
            }
        } else {
            ret = vmdk_write_extent(extent,
                            cluster_offset, index_in_cluster * 512,
                            buf, n, sector_num);
            if (ret) {
                return ret;
            }
            if (m_data.valid) {
                /* update L2 tables */
                if (vmdk_L2update(extent, &m_data) != VMDK_OK) {
                    return -EIO;
                }
F
Fam Zheng 已提交
1340
            }
1341
        }
1342 1343 1344
        nb_sectors -= n;
        sector_num += n;
        buf += n * 512;
1345

F
Fam Zheng 已提交
1346 1347
        /* update CID on the first write every time the virtual disk is
         * opened */
1348
        if (!s->cid_updated) {
K
Kevin Wolf 已提交
1349 1350 1351 1352
            ret = vmdk_write_cid(bs, time(NULL));
            if (ret < 0) {
                return ret;
            }
1353
            s->cid_updated = true;
1354
        }
1355 1356
    }
    return 0;
B
bellard 已提交
1357 1358
}

1359 1360 1361 1362 1363 1364
static coroutine_fn int vmdk_co_write(BlockDriverState *bs, int64_t sector_num,
                                      const uint8_t *buf, int nb_sectors)
{
    int ret;
    BDRVVmdkState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
F
Fam Zheng 已提交
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
    ret = vmdk_write(bs, sector_num, buf, nb_sectors, false, false);
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

static int coroutine_fn vmdk_co_write_zeroes(BlockDriverState *bs,
                                             int64_t sector_num,
                                             int nb_sectors)
{
    int ret;
    BDRVVmdkState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
1377 1378
    /* write zeroes could fail if sectors not aligned to cluster, test it with
     * dry_run == true before really updating image */
F
Fam Zheng 已提交
1379 1380 1381 1382
    ret = vmdk_write(bs, sector_num, NULL, nb_sectors, true, true);
    if (!ret) {
        ret = vmdk_write(bs, sector_num, NULL, nb_sectors, true, false);
    }
1383 1384 1385 1386
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

1387
static int vmdk_create_extent(const char *filename, int64_t filesize,
1388
                              bool flat, bool compress, bool zeroed_grain)
1389
{
F
Fam Zheng 已提交
1390 1391
    int ret, i;
    int fd = 0;
1392 1393
    VMDK4Header header;
    uint32_t tmp, magic, grains, gd_size, gt_size, gt_count;
1394

1395 1396 1397
    fd = qemu_open(filename,
                   O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
                   0644);
F
Fam Zheng 已提交
1398 1399
    if (fd < 0) {
        return -errno;
1400
    }
F
Fam Zheng 已提交
1401 1402 1403 1404 1405 1406
    if (flat) {
        ret = ftruncate(fd, filesize);
        if (ret < 0) {
            ret = -errno;
        }
        goto exit;
1407
    }
1408 1409
    magic = cpu_to_be32(VMDK4_MAGIC);
    memset(&header, 0, sizeof(header));
1410
    header.version = zeroed_grain ? 2 : 1;
F
Fam Zheng 已提交
1411
    header.flags = VMDK4_FLAG_RGD | VMDK4_FLAG_NL_DETECT
1412 1413
                   | (compress ? VMDK4_FLAG_COMPRESS | VMDK4_FLAG_MARKER : 0)
                   | (zeroed_grain ? VMDK4_FLAG_ZERO_GRAIN : 0);
1414
    header.compressAlgorithm = compress ? VMDK4_COMPRESSION_DEFLATE : 0;
F
Fam Zheng 已提交
1415
    header.capacity = filesize / 512;
A
Alexander Graf 已提交
1416
    header.granularity = 128;
1417
    header.num_gtes_per_gt = 512;
1418

F
Fam Zheng 已提交
1419
    grains = (filesize / 512 + header.granularity - 1) / header.granularity;
1420
    gt_size = ((header.num_gtes_per_gt * sizeof(uint32_t)) + 511) >> 9;
F
Fam Zheng 已提交
1421
    gt_count =
1422
        (grains + header.num_gtes_per_gt - 1) / header.num_gtes_per_gt;
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
    gd_size = (gt_count * sizeof(uint32_t) + 511) >> 9;

    header.desc_offset = 1;
    header.desc_size = 20;
    header.rgd_offset = header.desc_offset + header.desc_size;
    header.gd_offset = header.rgd_offset + gd_size + (gt_size * gt_count);
    header.grain_offset =
       ((header.gd_offset + gd_size + (gt_size * gt_count) +
         header.granularity - 1) / header.granularity) *
        header.granularity;
A
Alexander Graf 已提交
1433 1434 1435 1436 1437
    /* swap endianness for all header fields */
    header.version = cpu_to_le32(header.version);
    header.flags = cpu_to_le32(header.flags);
    header.capacity = cpu_to_le64(header.capacity);
    header.granularity = cpu_to_le64(header.granularity);
1438
    header.num_gtes_per_gt = cpu_to_le32(header.num_gtes_per_gt);
1439 1440 1441 1442 1443
    header.desc_offset = cpu_to_le64(header.desc_offset);
    header.desc_size = cpu_to_le64(header.desc_size);
    header.rgd_offset = cpu_to_le64(header.rgd_offset);
    header.gd_offset = cpu_to_le64(header.gd_offset);
    header.grain_offset = cpu_to_le64(header.grain_offset);
1444
    header.compressAlgorithm = cpu_to_le16(header.compressAlgorithm);
1445 1446 1447 1448 1449

    header.check_bytes[0] = 0xa;
    header.check_bytes[1] = 0x20;
    header.check_bytes[2] = 0xd;
    header.check_bytes[3] = 0xa;
1450 1451

    /* write all the data */
1452 1453
    ret = qemu_write_full(fd, &magic, sizeof(magic));
    if (ret != sizeof(magic)) {
J
Juan Quintela 已提交
1454
        ret = -errno;
1455 1456 1457 1458
        goto exit;
    }
    ret = qemu_write_full(fd, &header, sizeof(header));
    if (ret != sizeof(header)) {
J
Juan Quintela 已提交
1459
        ret = -errno;
1460 1461
        goto exit;
    }
1462

A
Alexander Graf 已提交
1463
    ret = ftruncate(fd, le64_to_cpu(header.grain_offset) << 9);
1464
    if (ret < 0) {
J
Juan Quintela 已提交
1465
        ret = -errno;
1466 1467
        goto exit;
    }
1468 1469 1470

    /* write grain directory */
    lseek(fd, le64_to_cpu(header.rgd_offset) << 9, SEEK_SET);
A
Alexander Graf 已提交
1471
    for (i = 0, tmp = le64_to_cpu(header.rgd_offset) + gd_size;
1472 1473 1474
         i < gt_count; i++, tmp += gt_size) {
        ret = qemu_write_full(fd, &tmp, sizeof(tmp));
        if (ret != sizeof(tmp)) {
J
Juan Quintela 已提交
1475
            ret = -errno;
1476 1477 1478
            goto exit;
        }
    }
1479

1480 1481
    /* write backup grain directory */
    lseek(fd, le64_to_cpu(header.gd_offset) << 9, SEEK_SET);
A
Alexander Graf 已提交
1482
    for (i = 0, tmp = le64_to_cpu(header.gd_offset) + gd_size;
1483 1484 1485
         i < gt_count; i++, tmp += gt_size) {
        ret = qemu_write_full(fd, &tmp, sizeof(tmp));
        if (ret != sizeof(tmp)) {
J
Juan Quintela 已提交
1486
            ret = -errno;
1487 1488 1489
            goto exit;
        }
    }
1490

F
Fam Zheng 已提交
1491 1492
    ret = 0;
 exit:
1493
    qemu_close(fd);
F
Fam Zheng 已提交
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
    return ret;
}

static int filename_decompose(const char *filename, char *path, char *prefix,
        char *postfix, size_t buf_len)
{
    const char *p, *q;

    if (filename == NULL || !strlen(filename)) {
        fprintf(stderr, "Vmdk: no filename provided.\n");
F
Fam Zheng 已提交
1504
        return VMDK_ERROR;
F
Fam Zheng 已提交
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
    }
    p = strrchr(filename, '/');
    if (p == NULL) {
        p = strrchr(filename, '\\');
    }
    if (p == NULL) {
        p = strrchr(filename, ':');
    }
    if (p != NULL) {
        p++;
        if (p - filename >= buf_len) {
F
Fam Zheng 已提交
1516
            return VMDK_ERROR;
F
Fam Zheng 已提交
1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528
        }
        pstrcpy(path, p - filename + 1, filename);
    } else {
        p = filename;
        path[0] = '\0';
    }
    q = strrchr(p, '.');
    if (q == NULL) {
        pstrcpy(prefix, buf_len, p);
        postfix[0] = '\0';
    } else {
        if (q - p >= buf_len) {
F
Fam Zheng 已提交
1529
            return VMDK_ERROR;
F
Fam Zheng 已提交
1530 1531 1532 1533
        }
        pstrcpy(prefix, q - p + 1, p);
        pstrcpy(postfix, buf_len, q);
    }
F
Fam Zheng 已提交
1534
    return VMDK_OK;
F
Fam Zheng 已提交
1535 1536 1537 1538 1539 1540 1541
}

static int vmdk_create(const char *filename, QEMUOptionParameter *options)
{
    int fd, idx = 0;
    char desc[BUF_SIZE];
    int64_t total_size = 0, filesize;
1542
    const char *adapter_type = NULL;
F
Fam Zheng 已提交
1543 1544 1545 1546
    const char *backing_file = NULL;
    const char *fmt = NULL;
    int flags = 0;
    int ret = 0;
1547
    bool flat, split, compress;
F
Fam Zheng 已提交
1548 1549 1550 1551 1552 1553
    char ext_desc_lines[BUF_SIZE] = "";
    char path[PATH_MAX], prefix[PATH_MAX], postfix[PATH_MAX];
    const int64_t split_size = 0x80000000;  /* VMDK has constant split size */
    const char *desc_extent_line;
    char parent_desc_line[BUF_SIZE] = "";
    uint32_t parent_cid = 0xffffffff;
1554
    uint32_t number_heads = 16;
1555
    bool zeroed_grain = false;
F
Fam Zheng 已提交
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
    const char desc_template[] =
        "# Disk DescriptorFile\n"
        "version=1\n"
        "CID=%x\n"
        "parentCID=%x\n"
        "createType=\"%s\"\n"
        "%s"
        "\n"
        "# Extent description\n"
        "%s"
        "\n"
        "# The Disk Data Base\n"
        "#DDB\n"
        "\n"
        "ddb.virtualHWVersion = \"%d\"\n"
        "ddb.geometry.cylinders = \"%" PRId64 "\"\n"
1572
        "ddb.geometry.heads = \"%d\"\n"
F
Fam Zheng 已提交
1573
        "ddb.geometry.sectors = \"63\"\n"
1574
        "ddb.adapterType = \"%s\"\n";
F
Fam Zheng 已提交
1575 1576 1577 1578 1579 1580 1581 1582

    if (filename_decompose(filename, path, prefix, postfix, PATH_MAX)) {
        return -EINVAL;
    }
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
            total_size = options->value.n;
1583 1584
        } else if (!strcmp(options->name, BLOCK_OPT_ADAPTER_TYPE)) {
            adapter_type = options->value.s;
F
Fam Zheng 已提交
1585 1586 1587 1588 1589 1590
        } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
            backing_file = options->value.s;
        } else if (!strcmp(options->name, BLOCK_OPT_COMPAT6)) {
            flags |= options->value.n ? BLOCK_FLAG_COMPAT6 : 0;
        } else if (!strcmp(options->name, BLOCK_OPT_SUBFMT)) {
            fmt = options->value.s;
1591 1592
        } else if (!strcmp(options->name, BLOCK_OPT_ZEROED_GRAIN)) {
            zeroed_grain |= options->value.n;
F
Fam Zheng 已提交
1593 1594 1595
        }
        options++;
    }
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
    if (!adapter_type) {
        adapter_type = "ide";
    } else if (strcmp(adapter_type, "ide") &&
               strcmp(adapter_type, "buslogic") &&
               strcmp(adapter_type, "lsilogic") &&
               strcmp(adapter_type, "legacyESX")) {
        fprintf(stderr, "VMDK: Unknown adapter type: '%s'.\n", adapter_type);
        return -EINVAL;
    }
    if (strcmp(adapter_type, "ide") != 0) {
        /* that's the number of heads with which vmware operates when
           creating, exporting, etc. vmdk files with a non-ide adapter type */
        number_heads = 255;
    }
F
Fam Zheng 已提交
1610 1611 1612 1613 1614 1615
    if (!fmt) {
        /* Default format to monolithicSparse */
        fmt = "monolithicSparse";
    } else if (strcmp(fmt, "monolithicFlat") &&
               strcmp(fmt, "monolithicSparse") &&
               strcmp(fmt, "twoGbMaxExtentSparse") &&
1616 1617
               strcmp(fmt, "twoGbMaxExtentFlat") &&
               strcmp(fmt, "streamOptimized")) {
F
Fam Zheng 已提交
1618 1619 1620 1621 1622 1623 1624
        fprintf(stderr, "VMDK: Unknown subformat: %s\n", fmt);
        return -EINVAL;
    }
    split = !(strcmp(fmt, "twoGbMaxExtentFlat") &&
              strcmp(fmt, "twoGbMaxExtentSparse"));
    flat = !(strcmp(fmt, "monolithicFlat") &&
             strcmp(fmt, "twoGbMaxExtentFlat"));
1625
    compress = !strcmp(fmt, "streamOptimized");
F
Fam Zheng 已提交
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636
    if (flat) {
        desc_extent_line = "RW %lld FLAT \"%s\" 0\n";
    } else {
        desc_extent_line = "RW %lld SPARSE \"%s\"\n";
    }
    if (flat && backing_file) {
        /* not supporting backing file for flat image */
        return -ENOTSUP;
    }
    if (backing_file) {
        BlockDriverState *bs = bdrv_new("");
1637
        ret = bdrv_open(bs, backing_file, NULL, 0, NULL);
F
Fam Zheng 已提交
1638
        if (ret != 0) {
F
Fam Zheng 已提交
1639
            bdrv_unref(bs);
F
Fam Zheng 已提交
1640 1641 1642
            return ret;
        }
        if (strcmp(bs->drv->format_name, "vmdk")) {
F
Fam Zheng 已提交
1643
            bdrv_unref(bs);
F
Fam Zheng 已提交
1644 1645 1646
            return -EINVAL;
        }
        parent_cid = vmdk_read_cid(bs, 0);
F
Fam Zheng 已提交
1647
        bdrv_unref(bs);
F
Fam Zheng 已提交
1648
        snprintf(parent_desc_line, sizeof(parent_desc_line),
1649
                "parentFileNameHint=\"%s\"", backing_file);
F
Fam Zheng 已提交
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
    }

    /* Create extents */
    filesize = total_size;
    while (filesize > 0) {
        char desc_line[BUF_SIZE];
        char ext_filename[PATH_MAX];
        char desc_filename[PATH_MAX];
        int64_t size = filesize;

        if (split && size > split_size) {
            size = split_size;
        }
        if (split) {
            snprintf(desc_filename, sizeof(desc_filename), "%s-%c%03d%s",
                    prefix, flat ? 'f' : 's', ++idx, postfix);
        } else if (flat) {
            snprintf(desc_filename, sizeof(desc_filename), "%s-flat%s",
                    prefix, postfix);
        } else {
            snprintf(desc_filename, sizeof(desc_filename), "%s%s",
                    prefix, postfix);
        }
        snprintf(ext_filename, sizeof(ext_filename), "%s%s",
                path, desc_filename);

1676 1677
        if (vmdk_create_extent(ext_filename, size,
                               flat, compress, zeroed_grain)) {
F
Fam Zheng 已提交
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
            return -EINVAL;
        }
        filesize -= size;

        /* Format description line */
        snprintf(desc_line, sizeof(desc_line),
                    desc_extent_line, size / 512, desc_filename);
        pstrcat(ext_desc_lines, sizeof(ext_desc_lines), desc_line);
    }
    /* generate descriptor file */
    snprintf(desc, sizeof(desc), desc_template,
            (unsigned int)time(NULL),
            parent_cid,
            fmt,
            parent_desc_line,
            ext_desc_lines,
            (flags & BLOCK_FLAG_COMPAT6 ? 6 : 4),
1695 1696
            total_size / (int64_t)(63 * number_heads * 512), number_heads,
                adapter_type);
F
Fam Zheng 已提交
1697
    if (split || flat) {
1698 1699 1700
        fd = qemu_open(filename,
                       O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
                       0644);
F
Fam Zheng 已提交
1701
    } else {
1702 1703 1704
        fd = qemu_open(filename,
                       O_WRONLY | O_BINARY | O_LARGEFILE,
                       0644);
F
Fam Zheng 已提交
1705 1706 1707 1708 1709 1710 1711 1712 1713
    }
    if (fd < 0) {
        return -errno;
    }
    /* the descriptor offset = 0x200 */
    if (!split && !flat && 0x200 != lseek(fd, 0x200, SEEK_SET)) {
        ret = -errno;
        goto exit;
    }
1714 1715
    ret = qemu_write_full(fd, desc, strlen(desc));
    if (ret != strlen(desc)) {
J
Juan Quintela 已提交
1716
        ret = -errno;
1717 1718 1719 1720
        goto exit;
    }
    ret = 0;
exit:
1721
    qemu_close(fd);
1722
    return ret;
1723 1724
}

B
bellard 已提交
1725
static void vmdk_close(BlockDriverState *bs)
B
bellard 已提交
1726
{
K
Kevin Wolf 已提交
1727 1728
    BDRVVmdkState *s = bs->opaque;

F
Fam Zheng 已提交
1729
    vmdk_free_extents(bs);
K
Kevin Wolf 已提交
1730 1731 1732

    migrate_del_blocker(s->migration_blocker);
    error_free(s->migration_blocker);
B
bellard 已提交
1733 1734
}

P
Paolo Bonzini 已提交
1735
static coroutine_fn int vmdk_co_flush(BlockDriverState *bs)
P
pbrook 已提交
1736
{
F
Fam Zheng 已提交
1737
    BDRVVmdkState *s = bs->opaque;
1738 1739
    int i, err;
    int ret = 0;
F
Fam Zheng 已提交
1740 1741

    for (i = 0; i < s->num_extents; i++) {
P
Paolo Bonzini 已提交
1742
        err = bdrv_co_flush(s->extents[i].file);
F
Fam Zheng 已提交
1743 1744 1745 1746 1747
        if (err < 0) {
            ret = err;
        }
    }
    return ret;
P
pbrook 已提交
1748 1749
}

1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772
static int64_t vmdk_get_allocated_file_size(BlockDriverState *bs)
{
    int i;
    int64_t ret = 0;
    int64_t r;
    BDRVVmdkState *s = bs->opaque;

    ret = bdrv_get_allocated_file_size(bs->file);
    if (ret < 0) {
        return ret;
    }
    for (i = 0; i < s->num_extents; i++) {
        if (s->extents[i].file == bs->file) {
            continue;
        }
        r = bdrv_get_allocated_file_size(s->extents[i].file);
        if (r < 0) {
            return r;
        }
        ret += r;
    }
    return ret;
}
1773

F
Fam Zheng 已提交
1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
static int vmdk_has_zero_init(BlockDriverState *bs)
{
    int i;
    BDRVVmdkState *s = bs->opaque;

    /* If has a flat extent and its underlying storage doesn't have zero init,
     * return 0. */
    for (i = 0; i < s->num_extents; i++) {
        if (s->extents[i].flat) {
            if (!bdrv_has_zero_init(s->extents[i].file)) {
                return 0;
            }
        }
    }
    return 1;
}

1791
static QEMUOptionParameter vmdk_create_options[] = {
1792 1793 1794 1795 1796
    {
        .name = BLOCK_OPT_SIZE,
        .type = OPT_SIZE,
        .help = "Virtual disk size"
    },
1797 1798 1799 1800 1801 1802
    {
        .name = BLOCK_OPT_ADAPTER_TYPE,
        .type = OPT_STRING,
        .help = "Virtual adapter type, can be one of "
                "ide (default), lsilogic, buslogic or legacyESX"
    },
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
    {
        .name = BLOCK_OPT_BACKING_FILE,
        .type = OPT_STRING,
        .help = "File name of a base image"
    },
    {
        .name = BLOCK_OPT_COMPAT6,
        .type = OPT_FLAG,
        .help = "VMDK version 6 image"
    },
F
Fam Zheng 已提交
1813 1814 1815 1816 1817
    {
        .name = BLOCK_OPT_SUBFMT,
        .type = OPT_STRING,
        .help =
            "VMDK flat extent format, can be one of "
1818
            "{monolithicSparse (default) | monolithicFlat | twoGbMaxExtentSparse | twoGbMaxExtentFlat | streamOptimized} "
F
Fam Zheng 已提交
1819
    },
1820 1821 1822 1823 1824
    {
        .name = BLOCK_OPT_ZEROED_GRAIN,
        .type = OPT_FLAG,
        .help = "Enable efficient zero writes using the zeroed-grain GTE feature"
    },
1825 1826 1827
    { NULL }
};

1828
static BlockDriver bdrv_vmdk = {
F
Fam Zheng 已提交
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
    .format_name                  = "vmdk",
    .instance_size                = sizeof(BDRVVmdkState),
    .bdrv_probe                   = vmdk_probe,
    .bdrv_open                    = vmdk_open,
    .bdrv_reopen_prepare          = vmdk_reopen_prepare,
    .bdrv_read                    = vmdk_co_read,
    .bdrv_write                   = vmdk_co_write,
    .bdrv_co_write_zeroes         = vmdk_co_write_zeroes,
    .bdrv_close                   = vmdk_close,
    .bdrv_create                  = vmdk_create,
    .bdrv_co_flush_to_disk        = vmdk_co_flush,
    .bdrv_co_is_allocated         = vmdk_co_is_allocated,
    .bdrv_get_allocated_file_size = vmdk_get_allocated_file_size,
    .bdrv_has_zero_init           = vmdk_has_zero_init,

    .create_options               = vmdk_create_options,
B
bellard 已提交
1845
};
1846 1847 1848 1849 1850 1851 1852

static void bdrv_vmdk_init(void)
{
    bdrv_register(&bdrv_vmdk);
}

block_init(bdrv_vmdk_init);