vmdk.c 64.9 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
    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];

108
    int64_t cluster_sectors;
F
Fam Zheng 已提交
109
    char *type;
F
Fam Zheng 已提交
110 111 112
} VmdkExtent;

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

126 127 128 129 130 131
typedef struct VmdkMetaData {
    uint32_t offset;
    unsigned int l1_index;
    unsigned int l2_index;
    unsigned int l2_offset;
    int valid;
F
Fam Zheng 已提交
132
    uint32_t *l2_cache_entry;
133 134
} VmdkMetaData;

F
Fam Zheng 已提交
135 136 137 138
typedef struct VmdkGrainMarker {
    uint64_t lba;
    uint32_t size;
    uint8_t  data[0];
139
} QEMU_PACKED VmdkGrainMarker;
F
Fam Zheng 已提交
140

141 142 143 144 145 146 147
enum {
    MARKER_END_OF_STREAM    = 0,
    MARKER_GRAIN_TABLE      = 1,
    MARKER_GRAIN_DIRECTORY  = 2,
    MARKER_FOOTER           = 3,
};

B
bellard 已提交
148 149 150 151
static int vmdk_probe(const uint8_t *buf, int buf_size, const char *filename)
{
    uint32_t magic;

F
Fam Zheng 已提交
152
    if (buf_size < 4) {
B
bellard 已提交
153
        return 0;
F
Fam Zheng 已提交
154
    }
B
bellard 已提交
155 156
    magic = be32_to_cpu(*(uint32_t *)buf);
    if (magic == VMDK3_MAGIC ||
157
        magic == VMDK4_MAGIC) {
B
bellard 已提交
158
        return 100;
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 196 197 198 199
    } 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 已提交
200
        return 0;
201
    }
B
bellard 已提交
202 203
}

204
#define SECTOR_SIZE 512
F
Fam Zheng 已提交
205 206 207
#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 */
208

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

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

228 229 230 231 232 233 234 235 236 237 238
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));
}

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

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

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

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

    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;
275
    BDRVVmdkState *s = bs->opaque;
K
Kevin Wolf 已提交
276
    int ret;
277

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

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

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

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

302 303 304 305 306 307
    return 0;
}

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

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

J
Jeff Cody 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335
/* 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) {
F
Fam Zheng 已提交
336
        error_setg(errp, "No reopen queue for VMDK extents");
J
Jeff Cody 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
        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;
}

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

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

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

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

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

    return 0;
}

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

401 402
    if (cluster_sectors > 0x200000) {
        /* 0x200000 * 512Bytes = 1GB for one cluster is unrealistic */
F
Fam Zheng 已提交
403 404
        error_setg(errp, "Invalid granularity, image may be corrupt");
        return -EFBIG;
405
    }
406 407 408 409 410
    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 */
F
Fam Zheng 已提交
411
        error_setg(errp, "L1 size too big");
412 413
        return -EFBIG;
    }
414

415
    s->extents = g_realloc(s->extents,
F
Fam Zheng 已提交
416 417 418 419 420 421 422 423 424 425 426 427 428
                              (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;
429
    extent->cluster_sectors = flat ? sectors : cluster_sectors;
F
Fam Zheng 已提交
430 431 432 433 434 435 436

    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;
437 438 439 440
    if (new_extent) {
        *new_extent = extent;
    }
    return 0;
F
Fam Zheng 已提交
441 442
}

F
Fam Zheng 已提交
443 444
static int vmdk_init_tables(BlockDriverState *bs, VmdkExtent *extent,
                            Error **errp)
445
{
446 447
    int ret;
    int l1_size, i;
448

B
bellard 已提交
449
    /* read the L1 table */
F
Fam Zheng 已提交
450
    l1_size = extent->l1_size * sizeof(uint32_t);
451
    extent->l1_table = g_malloc(l1_size);
452
    ret = bdrv_pread(extent->file,
F
Fam Zheng 已提交
453 454 455
                     extent->l1_table_offset,
                     extent->l1_table,
                     l1_size);
456
    if (ret < 0) {
F
Fam Zheng 已提交
457 458 459
        error_setg_errno(errp, -ret,
                         "Could not read l1 table from extent '%s'",
                         extent->file->filename);
460
        goto fail_l1;
F
Fam Zheng 已提交
461 462 463
    }
    for (i = 0; i < extent->l1_size; i++) {
        le32_to_cpus(&extent->l1_table[i]);
B
bellard 已提交
464 465
    }

F
Fam Zheng 已提交
466
    if (extent->l1_backup_table_offset) {
467
        extent->l1_backup_table = g_malloc(l1_size);
468
        ret = bdrv_pread(extent->file,
F
Fam Zheng 已提交
469 470 471
                         extent->l1_backup_table_offset,
                         extent->l1_backup_table,
                         l1_size);
472
        if (ret < 0) {
F
Fam Zheng 已提交
473 474 475
            error_setg_errno(errp, -ret,
                             "Could not read l1 backup table from extent '%s'",
                             extent->file->filename);
476
            goto fail_l1b;
F
Fam Zheng 已提交
477 478 479
        }
        for (i = 0; i < extent->l1_size; i++) {
            le32_to_cpus(&extent->l1_backup_table[i]);
480 481 482
        }
    }

F
Fam Zheng 已提交
483
    extent->l2_cache =
484
        g_malloc(extent->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
B
bellard 已提交
485
    return 0;
486
 fail_l1b:
487
    g_free(extent->l1_backup_table);
488
 fail_l1:
489
    g_free(extent->l1_table);
490 491 492
    return ret;
}

F
Fam Zheng 已提交
493 494
static int vmdk_open_vmfs_sparse(BlockDriverState *bs,
                                 BlockDriverState *file,
F
Fam Zheng 已提交
495
                                 int flags, Error **errp)
496 497 498 499 500 501
{
    int ret;
    uint32_t magic;
    VMDK3Header header;
    VmdkExtent *extent;

502
    ret = bdrv_pread(file, sizeof(magic), &header, sizeof(header));
503
    if (ret < 0) {
F
Fam Zheng 已提交
504 505 506
        error_setg_errno(errp, -ret,
                         "Could not read header from file '%s'",
                         file->filename);
507
        return ret;
508
    }
509 510 511 512 513 514 515
    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),
F
Fam Zheng 已提交
516 517
                          &extent,
                          errp);
518 519 520
    if (ret < 0) {
        return ret;
    }
F
Fam Zheng 已提交
521
    ret = vmdk_init_tables(bs, extent, errp);
522
    if (ret) {
523 524
        /* free extent allocated by vmdk_add_extent */
        vmdk_free_last_extent(bs);
525 526 527 528
    }
    return ret;
}

529 530
static int vmdk_open_desc_file(BlockDriverState *bs, int flags, char *buf,
                               Error **errp);
F
Fam Zheng 已提交
531

P
Paolo Bonzini 已提交
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
static char *vmdk_read_desc(BlockDriverState *file, uint64_t desc_offset,
                            Error **errp)
{
    int64_t size;
    char *buf;
    int ret;

    size = bdrv_getlength(file);
    if (size < 0) {
        error_setg_errno(errp, -size, "Could not access file");
        return NULL;
    }

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

    ret = bdrv_pread(file, desc_offset, buf, size);
    if (ret < 0) {
        error_setg_errno(errp, -ret, "Could not read from file");
        g_free(buf);
        return NULL;
    }

    return buf;
}

558 559
static int vmdk_open_vmdk4(BlockDriverState *bs,
                           BlockDriverState *file,
F
Fam Zheng 已提交
560
                           int flags, Error **errp)
561 562 563 564 565 566
{
    int ret;
    uint32_t magic;
    uint32_t l1_size, l1_entry_sectors;
    VMDK4Header header;
    VmdkExtent *extent;
F
Fam Zheng 已提交
567
    BDRVVmdkState *s = bs->opaque;
568
    int64_t l1_backup_offset = 0;
569

570
    ret = bdrv_pread(file, sizeof(magic), &header, sizeof(header));
571
    if (ret < 0) {
F
Fam Zheng 已提交
572 573 574
        error_setg_errno(errp, -ret,
                         "Could not read header from file '%s'",
                         file->filename);
P
Paolo Bonzini 已提交
575
        return -EINVAL;
576
    }
577
    if (header.capacity == 0) {
578
        uint64_t desc_offset = le64_to_cpu(header.desc_offset);
579
        if (desc_offset) {
580 581 582 583 584 585 586
            char *buf = vmdk_read_desc(file, desc_offset << 9, errp);
            if (!buf) {
                return -EINVAL;
            }
            ret = vmdk_open_desc_file(bs, flags, buf, errp);
            g_free(buf);
            return ret;
587
        }
F
Fam Zheng 已提交
588
    }
589

F
Fam Zheng 已提交
590 591 592 593
    if (!s->create_type) {
        s->create_type = g_strdup("monolithicSparse");
    }

594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
    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;
    }

641
    if (le32_to_cpu(header.version) > 3) {
642
        char buf[64];
643
        snprintf(buf, sizeof(buf), "VMDK version %" PRId32,
644
                 le32_to_cpu(header.version));
P
Paolo Bonzini 已提交
645 646
        error_set(errp, QERR_UNKNOWN_BLOCK_FORMAT_FEATURE,
                  bs->device_name, "vmdk", buf);
647
        return -ENOTSUP;
648 649 650 651 652 653 654
    } else if (le32_to_cpu(header.version) == 3 && (flags & BDRV_O_RDWR)) {
        /* VMware KB 2064959 explains that version 3 added support for
         * persistent changed block tracking (CBT), and backup software can
         * read it as version=1 if it doesn't care about the changed area
         * information. So we are safe to enable read only. */
        error_setg(errp, "VMDK version 3 must be read only");
        return -EINVAL;
655 656
    }

657
    if (le32_to_cpu(header.num_gtes_per_gt) > 512) {
P
Paolo Bonzini 已提交
658
        error_setg(errp, "L2 table size too big");
659 660 661
        return -EINVAL;
    }

662
    l1_entry_sectors = le32_to_cpu(header.num_gtes_per_gt)
663
                        * le64_to_cpu(header.granularity);
664
    if (l1_entry_sectors == 0) {
665 666
        return -EINVAL;
    }
667 668
    l1_size = (le64_to_cpu(header.capacity) + l1_entry_sectors - 1)
                / l1_entry_sectors;
669 670 671
    if (le32_to_cpu(header.flags) & VMDK4_FLAG_RGD) {
        l1_backup_offset = le64_to_cpu(header.rgd_offset) << 9;
    }
672 673
    if (bdrv_getlength(file) <
            le64_to_cpu(header.grain_offset) * BDRV_SECTOR_SIZE) {
674 675 676
        error_setg(errp, "File truncated, expecting at least %" PRId64 " bytes",
                   (int64_t)(le64_to_cpu(header.grain_offset)
                             * BDRV_SECTOR_SIZE));
677 678 679
        return -EINVAL;
    }

680
    ret = vmdk_add_extent(bs, file, false,
681 682
                          le64_to_cpu(header.capacity),
                          le64_to_cpu(header.gd_offset) << 9,
683
                          l1_backup_offset,
684
                          l1_size,
685
                          le32_to_cpu(header.num_gtes_per_gt),
686
                          le64_to_cpu(header.granularity),
F
Fam Zheng 已提交
687 688
                          &extent,
                          errp);
689 690 691
    if (ret < 0) {
        return ret;
    }
F
Fam Zheng 已提交
692 693
    extent->compressed =
        le16_to_cpu(header.compressAlgorithm) == VMDK4_COMPRESSION_DEFLATE;
694 695 696 697
    if (extent->compressed) {
        g_free(s->create_type);
        s->create_type = g_strdup("streamOptimized");
    }
F
Fam Zheng 已提交
698
    extent->has_marker = le32_to_cpu(header.flags) & VMDK4_FLAG_MARKER;
699 700
    extent->version = le32_to_cpu(header.version);
    extent->has_zero_grain = le32_to_cpu(header.flags) & VMDK4_FLAG_ZERO_GRAIN;
F
Fam Zheng 已提交
701
    ret = vmdk_init_tables(bs, extent, errp);
702
    if (ret) {
703 704
        /* free extent allocated by vmdk_add_extent */
        vmdk_free_last_extent(bs);
705 706 707 708
    }
    return ret;
}

709 710 711 712 713 714 715 716 717
/* 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 已提交
718
        return VMDK_ERROR;
719 720 721 722
    }
    /* Skip "=\"" following opt_name */
    opt_pos += strlen(opt_name) + 2;
    if (opt_pos >= end) {
F
Fam Zheng 已提交
723
        return VMDK_ERROR;
724 725 726 727 728 729
    }
    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 已提交
730
        return VMDK_ERROR;
731 732
    }
    pstrcpy(buf, opt_end - opt_pos + 1, opt_pos);
F
Fam Zheng 已提交
733
    return VMDK_OK;
734 735
}

736 737
/* Open an extent file and append to bs array */
static int vmdk_open_sparse(BlockDriverState *bs,
738 739
                            BlockDriverState *file, int flags,
                            char *buf, Error **errp)
740 741 742
{
    uint32_t magic;

743
    magic = ldl_be_p(buf);
744 745
    switch (magic) {
        case VMDK3_MAGIC:
F
Fam Zheng 已提交
746
            return vmdk_open_vmfs_sparse(bs, file, flags, errp);
747 748
            break;
        case VMDK4_MAGIC:
F
Fam Zheng 已提交
749
            return vmdk_open_vmdk4(bs, file, flags, errp);
750 751
            break;
        default:
P
Paolo Bonzini 已提交
752 753
            error_setg(errp, "Image not in VMDK format");
            return -EINVAL;
754 755 756 757
            break;
    }
}

758
static int vmdk_parse_extents(const char *desc, BlockDriverState *bs,
F
Fam Zheng 已提交
759
                              const char *desc_file_path, Error **errp)
760 761 762 763 764 765 766 767
{
    int ret;
    char access[11];
    char type[11];
    char fname[512];
    const char *p = desc;
    int64_t sectors = 0;
    int64_t flat_offset;
768 769
    char extent_path[PATH_MAX];
    BlockDriverState *extent_file;
F
Fam Zheng 已提交
770 771
    BDRVVmdkState *s = bs->opaque;
    VmdkExtent *extent;
772 773 774 775 776 777 778 779

    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 已提交
780
        ret = sscanf(p, "%10s %" SCNd64 " %10s \"%511[^\n\r\"]\" %" SCNd64,
781 782 783 784 785
                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) {
F
Fam Zheng 已提交
786
                error_setg(errp, "Invalid extent lines: \n%s", p);
787 788
                return -EINVAL;
            }
F
Fam Zheng 已提交
789
        } else if (!strcmp(type, "VMFS")) {
790 791 792 793 794 795
            if (ret == 4) {
                flat_offset = 0;
            } else {
                error_setg(errp, "Invalid extent lines:\n%s", p);
                return -EINVAL;
            }
796
        } else if (ret != 4) {
797
            error_setg(errp, "Invalid extent lines:\n%s", p);
798 799 800 801
            return -EINVAL;
        }

        if (sectors <= 0 ||
F
Fam Zheng 已提交
802
            (strcmp(type, "FLAT") && strcmp(type, "SPARSE") &&
P
Paolo Bonzini 已提交
803
             strcmp(type, "VMFS") && strcmp(type, "VMFSSPARSE")) ||
804 805 806 807
            (strcmp(access, "RW"))) {
            goto next_line;
        }

808 809
        path_combine(extent_path, sizeof(extent_path),
                desc_file_path, fname);
M
Max Reitz 已提交
810 811 812
        extent_file = NULL;
        ret = bdrv_open(&extent_file, extent_path, NULL, NULL,
                        bs->open_flags | BDRV_O_PROTOCOL, NULL, errp);
813 814 815 816
        if (ret) {
            return ret;
        }

817
        /* save to extents array */
P
Paolo Bonzini 已提交
818
        if (!strcmp(type, "FLAT") || !strcmp(type, "VMFS")) {
819 820
            /* FLAT extent */

821
            ret = vmdk_add_extent(bs, extent_file, true, sectors,
F
Fam Zheng 已提交
822
                            0, 0, 0, 0, 0, &extent, errp);
823 824 825
            if (ret < 0) {
                return ret;
            }
F
Fam Zheng 已提交
826
            extent->flat_start_offset = flat_offset << 9;
F
Fam Zheng 已提交
827 828
        } else if (!strcmp(type, "SPARSE") || !strcmp(type, "VMFSSPARSE")) {
            /* SPARSE extent and VMFSSPARSE extent are both "COWD" sparse file*/
829 830 831 832 833 834
            char *buf = vmdk_read_desc(extent_file, 0, errp);
            if (!buf) {
                ret = -EINVAL;
            } else {
                ret = vmdk_open_sparse(bs, extent_file, bs->open_flags, buf, errp);
            }
835
            if (ret) {
836
                g_free(buf);
F
Fam Zheng 已提交
837
                bdrv_unref(extent_file);
838 839
                return ret;
            }
F
Fam Zheng 已提交
840
            extent = &s->extents[s->num_extents - 1];
841
        } else {
F
Fam Zheng 已提交
842
            error_setg(errp, "Unsupported extent type '%s'", type);
843 844
            return -ENOTSUP;
        }
F
Fam Zheng 已提交
845
        extent->type = g_strdup(type);
846 847
next_line:
        /* move to next line */
F
Fam Zheng 已提交
848 849 850 851 852
        while (*p) {
            if (*p == '\n') {
                p++;
                break;
            }
853 854 855 856 857 858
            p++;
        }
    }
    return 0;
}

859 860
static int vmdk_open_desc_file(BlockDriverState *bs, int flags, char *buf,
                               Error **errp)
861 862 863 864 865 866
{
    int ret;
    char ct[128];
    BDRVVmdkState *s = bs->opaque;

    if (vmdk_parse_description(buf, "createType", ct, sizeof(ct))) {
P
Paolo Bonzini 已提交
867 868
        error_setg(errp, "invalid VMDK image descriptor");
        ret = -EINVAL;
869
        goto exit;
870
    }
F
Fam Zheng 已提交
871
    if (strcmp(ct, "monolithicFlat") &&
P
Paolo Bonzini 已提交
872
        strcmp(ct, "vmfs") &&
F
Fam Zheng 已提交
873
        strcmp(ct, "vmfsSparse") &&
874
        strcmp(ct, "twoGbMaxExtentSparse") &&
F
Fam Zheng 已提交
875
        strcmp(ct, "twoGbMaxExtentFlat")) {
F
Fam Zheng 已提交
876
        error_setg(errp, "Unsupported image type '%s'", ct);
877 878
        ret = -ENOTSUP;
        goto exit;
879
    }
F
Fam Zheng 已提交
880
    s->create_type = g_strdup(ct);
881
    s->desc_offset = 0;
F
Fam Zheng 已提交
882
    ret = vmdk_parse_extents(buf, bs, bs->file->filename, errp);
883 884
exit:
    return ret;
885 886
}

M
Max Reitz 已提交
887 888
static int vmdk_open(BlockDriverState *bs, QDict *options, int flags,
                     Error **errp)
889
{
890
    char *buf = NULL;
891 892
    int ret;
    BDRVVmdkState *s = bs->opaque;
893
    uint32_t magic;
894

895 896 897 898 899
    buf = vmdk_read_desc(bs->file, 0, errp);
    if (!buf) {
        return -EINVAL;
    }

900 901 902 903 904 905 906 907 908 909
    magic = ldl_be_p(buf);
    switch (magic) {
        case VMDK3_MAGIC:
        case VMDK4_MAGIC:
            ret = vmdk_open_sparse(bs, bs->file, flags, buf, errp);
            s->desc_offset = 0x200;
            break;
        default:
            ret = vmdk_open_desc_file(bs, flags, buf, errp);
            break;
910
    }
911 912 913 914
    if (ret) {
        goto fail;
    }

P
Paolo Bonzini 已提交
915 916 917 918 919
    /* try to open parent images, if exist */
    ret = vmdk_parent_open(bs);
    if (ret) {
        goto fail;
    }
F
Fam Zheng 已提交
920
    s->cid = vmdk_read_cid(bs, 0);
P
Paolo Bonzini 已提交
921
    s->parent_cid = vmdk_read_cid(bs, 1);
922
    qemu_co_mutex_init(&s->lock);
K
Kevin Wolf 已提交
923 924 925 926 927 928

    /* 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);
929
    g_free(buf);
K
Kevin Wolf 已提交
930
    return 0;
P
Paolo Bonzini 已提交
931 932

fail:
933
    g_free(buf);
F
Fam Zheng 已提交
934 935
    g_free(s->create_type);
    s->create_type = NULL;
P
Paolo Bonzini 已提交
936 937
    vmdk_free_extents(bs);
    return ret;
B
bellard 已提交
938 939
}

940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956

static int vmdk_refresh_limits(BlockDriverState *bs)
{
    BDRVVmdkState *s = bs->opaque;
    int i;

    for (i = 0; i < s->num_extents; i++) {
        if (!s->extents[i].flat) {
            bs->bl.write_zeroes_alignment =
                MAX(bs->bl.write_zeroes_alignment,
                    s->extents[i].cluster_sectors);
        }
    }

    return 0;
}

F
Fam Zheng 已提交
957 958 959 960 961
static int get_whole_cluster(BlockDriverState *bs,
                VmdkExtent *extent,
                uint64_t cluster_offset,
                uint64_t offset,
                bool allocate)
962
{
963 964
    int ret = VMDK_OK;
    uint8_t *whole_grain = NULL;
965

966 967
    /* 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 已提交
968
    if (bs->backing_hd) {
969 970
        whole_grain =
            qemu_blockalign(bs, extent->cluster_sectors << BDRV_SECTOR_BITS);
F
Fam Zheng 已提交
971
        if (!vmdk_is_cid_valid(bs)) {
972 973
            ret = VMDK_ERROR;
            goto exit;
F
Fam Zheng 已提交
974
        }
975

976 977
        /* floor offset to cluster */
        offset -= offset % (extent->cluster_sectors * 512);
K
Kevin Wolf 已提交
978
        ret = bdrv_read(bs->backing_hd, offset >> 9, whole_grain,
F
Fam Zheng 已提交
979
                extent->cluster_sectors);
K
Kevin Wolf 已提交
980
        if (ret < 0) {
981 982
            ret = VMDK_ERROR;
            goto exit;
K
Kevin Wolf 已提交
983
        }
984

985
        /* Write grain only into the active image */
F
Fam Zheng 已提交
986 987
        ret = bdrv_write(extent->file, cluster_offset, whole_grain,
                extent->cluster_sectors);
K
Kevin Wolf 已提交
988
        if (ret < 0) {
989 990
            ret = VMDK_ERROR;
            goto exit;
991 992
        }
    }
993 994 995
exit:
    qemu_vfree(whole_grain);
    return ret;
996 997
}

F
Fam Zheng 已提交
998
static int vmdk_L2update(VmdkExtent *extent, VmdkMetaData *m_data)
999
{
1000 1001 1002
    uint32_t offset;
    QEMU_BUILD_BUG_ON(sizeof(offset) != sizeof(m_data->offset));
    offset = cpu_to_le32(m_data->offset);
1003
    /* update L2 table */
F
Fam Zheng 已提交
1004 1005 1006 1007
    if (bdrv_pwrite_sync(
                extent->file,
                ((int64_t)m_data->l2_offset * 512)
                    + (m_data->l2_index * sizeof(m_data->offset)),
1008
                &offset, sizeof(offset)) < 0) {
F
Fam Zheng 已提交
1009
        return VMDK_ERROR;
F
Fam Zheng 已提交
1010
    }
1011
    /* update backup L2 table */
F
Fam Zheng 已提交
1012 1013 1014 1015 1016 1017
    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)),
1018
                    &offset, sizeof(offset)) < 0) {
F
Fam Zheng 已提交
1019
            return VMDK_ERROR;
F
Fam Zheng 已提交
1020
        }
1021
    }
F
Fam Zheng 已提交
1022 1023 1024
    if (m_data->l2_cache_entry) {
        *m_data->l2_cache_entry = offset;
    }
1025

F
Fam Zheng 已提交
1026
    return VMDK_OK;
1027 1028
}

1029
static int get_cluster_offset(BlockDriverState *bs,
F
Fam Zheng 已提交
1030 1031
                                    VmdkExtent *extent,
                                    VmdkMetaData *m_data,
1032 1033 1034
                                    uint64_t offset,
                                    int allocate,
                                    uint64_t *cluster_offset)
B
bellard 已提交
1035 1036 1037
{
    unsigned int l1_index, l2_offset, l2_index;
    int min_index, i, j;
1038
    uint32_t min_count, *l2_table;
1039
    bool zeroed = false;
1040

F
Fam Zheng 已提交
1041
    if (m_data) {
1042
        m_data->valid = 0;
F
Fam Zheng 已提交
1043
    }
1044
    if (extent->flat) {
1045
        *cluster_offset = extent->flat_start_offset;
F
Fam Zheng 已提交
1046
        return VMDK_OK;
1047
    }
1048

F
Fam Zheng 已提交
1049
    offset -= (extent->end_sector - extent->sectors) * SECTOR_SIZE;
F
Fam Zheng 已提交
1050 1051
    l1_index = (offset >> 9) / extent->l1_entry_sectors;
    if (l1_index >= extent->l1_size) {
F
Fam Zheng 已提交
1052
        return VMDK_ERROR;
F
Fam Zheng 已提交
1053 1054 1055
    }
    l2_offset = extent->l1_table[l1_index];
    if (!l2_offset) {
F
Fam Zheng 已提交
1056
        return VMDK_UNALLOC;
F
Fam Zheng 已提交
1057
    }
1058
    for (i = 0; i < L2_CACHE_SIZE; i++) {
F
Fam Zheng 已提交
1059
        if (l2_offset == extent->l2_cache_offsets[i]) {
B
bellard 已提交
1060
            /* increment the hit count */
F
Fam Zheng 已提交
1061
            if (++extent->l2_cache_counts[i] == 0xffffffff) {
1062
                for (j = 0; j < L2_CACHE_SIZE; j++) {
F
Fam Zheng 已提交
1063
                    extent->l2_cache_counts[j] >>= 1;
B
bellard 已提交
1064 1065
                }
            }
F
Fam Zheng 已提交
1066
            l2_table = extent->l2_cache + (i * extent->l2_size);
B
bellard 已提交
1067 1068 1069 1070 1071 1072
            goto found;
        }
    }
    /* not found: load a new entry in the least used one */
    min_index = 0;
    min_count = 0xffffffff;
1073
    for (i = 0; i < L2_CACHE_SIZE; i++) {
F
Fam Zheng 已提交
1074 1075
        if (extent->l2_cache_counts[i] < min_count) {
            min_count = extent->l2_cache_counts[i];
B
bellard 已提交
1076 1077 1078
            min_index = i;
        }
    }
F
Fam Zheng 已提交
1079 1080 1081 1082 1083 1084 1085
    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 已提交
1086
        return VMDK_ERROR;
F
Fam Zheng 已提交
1087
    }
1088

F
Fam Zheng 已提交
1089 1090
    extent->l2_cache_offsets[min_index] = l2_offset;
    extent->l2_cache_counts[min_index] = 1;
B
bellard 已提交
1091
 found:
F
Fam Zheng 已提交
1092
    l2_index = ((offset >> 9) / extent->cluster_sectors) % extent->l2_size;
1093
    *cluster_offset = le32_to_cpu(l2_table[l2_index]);
1094

F
Fam Zheng 已提交
1095 1096 1097 1098 1099 1100 1101 1102
    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];
    }
1103 1104 1105 1106 1107
    if (extent->has_zero_grain && *cluster_offset == VMDK_GTE_ZEROED) {
        zeroed = true;
    }

    if (!*cluster_offset || zeroed) {
1108
        if (!allocate) {
1109
            return zeroed ? VMDK_ZEROED : VMDK_UNALLOC;
1110
        }
1111

F
Fam Zheng 已提交
1112
        /* Avoid the L2 tables update for the images that have snapshots. */
1113
        *cluster_offset = bdrv_getlength(extent->file);
F
Fam Zheng 已提交
1114 1115 1116 1117 1118 1119
        if (!extent->compressed) {
            bdrv_truncate(
                extent->file,
                *cluster_offset + (extent->cluster_sectors << 9)
            );
        }
1120

1121
        *cluster_offset >>= 9;
1122
        l2_table[l2_index] = cpu_to_le32(*cluster_offset);
1123 1124 1125 1126 1127 1128

        /* 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 已提交
1129
        if (get_whole_cluster(
F
Fam Zheng 已提交
1130
                bs, extent, *cluster_offset, offset, allocate) == -1) {
F
Fam Zheng 已提交
1131
            return VMDK_ERROR;
F
Fam Zheng 已提交
1132
        }
1133 1134

        if (m_data) {
1135
            m_data->offset = *cluster_offset;
1136
        }
1137
    }
1138
    *cluster_offset <<= 9;
F
Fam Zheng 已提交
1139
    return VMDK_OK;
B
bellard 已提交
1140 1141
}

F
Fam Zheng 已提交
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
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;
}

1159
static int64_t coroutine_fn vmdk_co_get_block_status(BlockDriverState *bs,
1160
        int64_t sector_num, int nb_sectors, int *pnum)
B
bellard 已提交
1161 1162
{
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
1163 1164 1165 1166 1167 1168 1169 1170
    int64_t index_in_cluster, n, ret;
    uint64_t offset;
    VmdkExtent *extent;

    extent = find_extent(s, sector_num, NULL);
    if (!extent) {
        return 0;
    }
1171
    qemu_co_mutex_lock(&s->lock);
1172 1173
    ret = get_cluster_offset(bs, extent, NULL,
                            sector_num * 512, 0, &offset);
1174
    qemu_co_mutex_unlock(&s->lock);
1175

1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
    switch (ret) {
    case VMDK_ERROR:
        ret = -EIO;
        break;
    case VMDK_UNALLOC:
        ret = 0;
        break;
    case VMDK_ZEROED:
        ret = BDRV_BLOCK_ZERO;
        break;
    case VMDK_OK:
        ret = BDRV_BLOCK_DATA;
1188
        if (extent->file == bs->file && !extent->compressed) {
1189 1190 1191 1192 1193
            ret |= BDRV_BLOCK_OFFSET_VALID | offset;
        }

        break;
    }
1194 1195 1196

    index_in_cluster = sector_num % extent->cluster_sectors;
    n = extent->cluster_sectors - index_in_cluster;
F
Fam Zheng 已提交
1197
    if (n > nb_sectors) {
B
bellard 已提交
1198
        n = nb_sectors;
F
Fam Zheng 已提交
1199
    }
B
bellard 已提交
1200
    *pnum = n;
F
Fam Zheng 已提交
1201
    return ret;
B
bellard 已提交
1202 1203
}

1204 1205 1206 1207 1208
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 已提交
1209 1210
    VmdkGrainMarker *data = NULL;
    uLongf buf_len;
1211 1212 1213
    const uint8_t *write_buf = buf;
    int write_len = nb_sectors * 512;

F
Fam Zheng 已提交
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
    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);
    }
1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
    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 已提交
1241
    g_free(data);
1242 1243 1244 1245 1246 1247 1248 1249
    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 已提交
1250 1251 1252 1253 1254 1255 1256
    int cluster_bytes, buf_bytes;
    uint8_t *cluster_buf, *compressed_data;
    uint8_t *uncomp_buf;
    uint32_t data_len;
    VmdkGrainMarker *marker;
    uLongf buf_len;

1257

F
Fam Zheng 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
    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);
1273
    ret = bdrv_pread(extent->file,
F
Fam Zheng 已提交
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
                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;
1301
    }
F
Fam Zheng 已提交
1302 1303 1304 1305 1306 1307 1308
    memcpy(buf, uncomp_buf + offset_in_cluster, nb_sectors * 512);
    ret = 0;

 out:
    g_free(uncomp_buf);
    g_free(cluster_buf);
    return ret;
1309 1310
}

1311
static int vmdk_read(BlockDriverState *bs, int64_t sector_num,
B
bellard 已提交
1312 1313 1314
                    uint8_t *buf, int nb_sectors)
{
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
1315 1316
    int ret;
    uint64_t n, index_in_cluster;
1317
    uint64_t extent_begin_sector, extent_relative_sector_num;
F
Fam Zheng 已提交
1318
    VmdkExtent *extent = NULL;
B
bellard 已提交
1319
    uint64_t cluster_offset;
1320

B
bellard 已提交
1321
    while (nb_sectors > 0) {
F
Fam Zheng 已提交
1322 1323 1324 1325
        extent = find_extent(s, sector_num, extent);
        if (!extent) {
            return -EIO;
        }
1326 1327 1328
        ret = get_cluster_offset(
                            bs, extent, NULL,
                            sector_num << 9, 0, &cluster_offset);
1329 1330 1331
        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 已提交
1332
        n = extent->cluster_sectors - index_in_cluster;
F
Fam Zheng 已提交
1333
        if (n > nb_sectors) {
B
bellard 已提交
1334
            n = nb_sectors;
F
Fam Zheng 已提交
1335
        }
1336
        if (ret != VMDK_OK) {
1337
            /* if not allocated, try to read from parent image, if exist */
1338
            if (bs->backing_hd && ret != VMDK_ZEROED) {
F
Fam Zheng 已提交
1339
                if (!vmdk_is_cid_valid(bs)) {
1340
                    return -EINVAL;
F
Fam Zheng 已提交
1341
                }
K
Kevin Wolf 已提交
1342
                ret = bdrv_read(bs->backing_hd, sector_num, buf, n);
F
Fam Zheng 已提交
1343
                if (ret < 0) {
1344
                    return ret;
F
Fam Zheng 已提交
1345
                }
1346 1347 1348
            } else {
                memset(buf, 0, 512 * n);
            }
B
bellard 已提交
1349
        } else {
1350 1351 1352 1353
            ret = vmdk_read_extent(extent,
                            cluster_offset, index_in_cluster * 512,
                            buf, n);
            if (ret) {
1354 1355
                return ret;
            }
B
bellard 已提交
1356 1357 1358 1359 1360 1361 1362 1363
        }
        nb_sectors -= n;
        sector_num += n;
        buf += n * 512;
    }
    return 0;
}

1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
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 已提交
1375 1376 1377
/**
 * vmdk_write:
 * @zeroed:       buf is ignored (data is zero), use zeroed_grain GTE feature
1378 1379 1380 1381
 *                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 已提交
1382 1383 1384
 *
 * Returns: error code with 0 for success.
 */
1385
static int vmdk_write(BlockDriverState *bs, int64_t sector_num,
F
Fam Zheng 已提交
1386 1387
                      const uint8_t *buf, int nb_sectors,
                      bool zeroed, bool zero_dry_run)
B
bellard 已提交
1388
{
1389
    BDRVVmdkState *s = bs->opaque;
F
Fam Zheng 已提交
1390
    VmdkExtent *extent = NULL;
F
Fam Zheng 已提交
1391 1392
    int ret;
    int64_t index_in_cluster, n;
1393
    uint64_t extent_begin_sector, extent_relative_sector_num;
1394
    uint64_t cluster_offset;
F
Fam Zheng 已提交
1395
    VmdkMetaData m_data;
1396

1397
    if (sector_num > bs->total_sectors) {
F
Fam Zheng 已提交
1398
        error_report("Wrong offset: sector_num=0x%" PRIx64
1399
                " total_sectors=0x%" PRIx64 "\n",
1400
                sector_num, bs->total_sectors);
1401
        return -EIO;
1402 1403
    }

1404
    while (nb_sectors > 0) {
F
Fam Zheng 已提交
1405 1406 1407 1408
        extent = find_extent(s, sector_num, extent);
        if (!extent) {
            return -EIO;
        }
1409
        ret = get_cluster_offset(
F
Fam Zheng 已提交
1410 1411 1412
                                bs,
                                extent,
                                &m_data,
F
Fam Zheng 已提交
1413
                                sector_num << 9, !extent->compressed,
1414
                                &cluster_offset);
F
Fam Zheng 已提交
1415
        if (extent->compressed) {
F
Fam Zheng 已提交
1416
            if (ret == VMDK_OK) {
F
Fam Zheng 已提交
1417
                /* Refuse write to allocated cluster for streamOptimized */
F
Fam Zheng 已提交
1418 1419
                error_report("Could not write to allocated cluster"
                              " for streamOptimized");
F
Fam Zheng 已提交
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
                return -EIO;
            } else {
                /* allocate */
                ret = get_cluster_offset(
                                        bs,
                                        extent,
                                        &m_data,
                                        sector_num << 9, 1,
                                        &cluster_offset);
            }
        }
F
Fam Zheng 已提交
1431
        if (ret == VMDK_ERROR) {
1432
            return -EINVAL;
F
Fam Zheng 已提交
1433
        }
1434 1435 1436
        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 已提交
1437 1438 1439 1440
        n = extent->cluster_sectors - index_in_cluster;
        if (n > nb_sectors) {
            n = nb_sectors;
        }
F
Fam Zheng 已提交
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468
        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 已提交
1469
            }
1470
        }
1471 1472 1473
        nb_sectors -= n;
        sector_num += n;
        buf += n * 512;
1474

F
Fam Zheng 已提交
1475 1476
        /* update CID on the first write every time the virtual disk is
         * opened */
1477
        if (!s->cid_updated) {
K
Kevin Wolf 已提交
1478 1479 1480 1481
            ret = vmdk_write_cid(bs, time(NULL));
            if (ret < 0) {
                return ret;
            }
1482
            s->cid_updated = true;
1483
        }
1484 1485
    }
    return 0;
B
bellard 已提交
1486 1487
}

1488 1489 1490 1491 1492 1493
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 已提交
1494 1495 1496 1497 1498
    ret = vmdk_write(bs, sector_num, buf, nb_sectors, false, false);
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
static int vmdk_write_compressed(BlockDriverState *bs,
                                 int64_t sector_num,
                                 const uint8_t *buf,
                                 int nb_sectors)
{
    BDRVVmdkState *s = bs->opaque;
    if (s->num_extents == 1 && s->extents[0].compressed) {
        return vmdk_write(bs, sector_num, buf, nb_sectors, false, false);
    } else {
        return -ENOTSUP;
    }
}

F
Fam Zheng 已提交
1512 1513
static int coroutine_fn vmdk_co_write_zeroes(BlockDriverState *bs,
                                             int64_t sector_num,
1514 1515
                                             int nb_sectors,
                                             BdrvRequestFlags flags)
F
Fam Zheng 已提交
1516 1517 1518 1519
{
    int ret;
    BDRVVmdkState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
1520 1521
    /* write zeroes could fail if sectors not aligned to cluster, test it with
     * dry_run == true before really updating image */
F
Fam Zheng 已提交
1522 1523 1524 1525
    ret = vmdk_write(bs, sector_num, NULL, nb_sectors, true, true);
    if (!ret) {
        ret = vmdk_write(bs, sector_num, NULL, nb_sectors, true, false);
    }
1526 1527 1528 1529
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

1530
static int vmdk_create_extent(const char *filename, int64_t filesize,
1531 1532
                              bool flat, bool compress, bool zeroed_grain,
                              Error **errp)
1533
{
F
Fam Zheng 已提交
1534
    int ret, i;
1535
    BlockDriverState *bs = NULL;
1536
    VMDK4Header header;
F
Fam Zheng 已提交
1537
    Error *local_err = NULL;
1538 1539 1540
    uint32_t tmp, magic, grains, gd_sectors, gt_size, gt_count;
    uint32_t *gd_buf = NULL;
    int gd_buf_size;
1541

1542 1543 1544 1545
    ret = bdrv_create_file(filename, NULL, &local_err);
    if (ret < 0) {
        error_propagate(errp, local_err);
        goto exit;
1546
    }
1547

M
Max Reitz 已提交
1548 1549 1550
    assert(bs == NULL);
    ret = bdrv_open(&bs, filename, NULL, NULL, BDRV_O_RDWR | BDRV_O_PROTOCOL,
                    NULL, &local_err);
1551 1552 1553 1554 1555
    if (ret < 0) {
        error_propagate(errp, local_err);
        goto exit;
    }

F
Fam Zheng 已提交
1556
    if (flat) {
1557
        ret = bdrv_truncate(bs, filesize);
F
Fam Zheng 已提交
1558
        if (ret < 0) {
1559
            error_setg_errno(errp, -ret, "Could not truncate file");
F
Fam Zheng 已提交
1560 1561
        }
        goto exit;
1562
    }
1563 1564
    magic = cpu_to_be32(VMDK4_MAGIC);
    memset(&header, 0, sizeof(header));
1565
    header.version = zeroed_grain ? 2 : 1;
F
Fam Zheng 已提交
1566
    header.flags = VMDK4_FLAG_RGD | VMDK4_FLAG_NL_DETECT
1567 1568
                   | (compress ? VMDK4_FLAG_COMPRESS | VMDK4_FLAG_MARKER : 0)
                   | (zeroed_grain ? VMDK4_FLAG_ZERO_GRAIN : 0);
1569
    header.compressAlgorithm = compress ? VMDK4_COMPRESSION_DEFLATE : 0;
1570
    header.capacity = filesize / BDRV_SECTOR_SIZE;
A
Alexander Graf 已提交
1571
    header.granularity = 128;
1572
    header.num_gtes_per_gt = BDRV_SECTOR_SIZE;
1573

1574 1575 1576 1577 1578
    grains = DIV_ROUND_UP(filesize / BDRV_SECTOR_SIZE, header.granularity);
    gt_size = DIV_ROUND_UP(header.num_gtes_per_gt * sizeof(uint32_t),
                           BDRV_SECTOR_SIZE);
    gt_count = DIV_ROUND_UP(grains, header.num_gtes_per_gt);
    gd_sectors = DIV_ROUND_UP(gt_count * sizeof(uint32_t), BDRV_SECTOR_SIZE);
1579 1580 1581 1582

    header.desc_offset = 1;
    header.desc_size = 20;
    header.rgd_offset = header.desc_offset + header.desc_size;
1583
    header.gd_offset = header.rgd_offset + gd_sectors + (gt_size * gt_count);
1584
    header.grain_offset =
1585 1586
        ROUND_UP(header.gd_offset + gd_sectors + (gt_size * gt_count),
                 header.granularity);
A
Alexander Graf 已提交
1587 1588 1589 1590 1591
    /* 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);
1592
    header.num_gtes_per_gt = cpu_to_le32(header.num_gtes_per_gt);
1593 1594 1595 1596 1597
    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);
1598
    header.compressAlgorithm = cpu_to_le16(header.compressAlgorithm);
1599 1600 1601 1602 1603

    header.check_bytes[0] = 0xa;
    header.check_bytes[1] = 0x20;
    header.check_bytes[2] = 0xd;
    header.check_bytes[3] = 0xa;
1604 1605

    /* write all the data */
1606 1607 1608
    ret = bdrv_pwrite(bs, 0, &magic, sizeof(magic));
    if (ret < 0) {
        error_set(errp, QERR_IO_ERROR);
1609 1610
        goto exit;
    }
1611 1612 1613
    ret = bdrv_pwrite(bs, sizeof(magic), &header, sizeof(header));
    if (ret < 0) {
        error_set(errp, QERR_IO_ERROR);
1614 1615
        goto exit;
    }
1616

1617
    ret = bdrv_truncate(bs, le64_to_cpu(header.grain_offset) << 9);
1618
    if (ret < 0) {
1619
        error_setg_errno(errp, -ret, "Could not truncate file");
1620 1621
        goto exit;
    }
1622 1623

    /* write grain directory */
1624 1625 1626
    gd_buf_size = gd_sectors * BDRV_SECTOR_SIZE;
    gd_buf = g_malloc0(gd_buf_size);
    for (i = 0, tmp = le64_to_cpu(header.rgd_offset) + gd_sectors;
1627
         i < gt_count; i++, tmp += gt_size) {
1628 1629 1630 1631 1632 1633 1634
        gd_buf[i] = cpu_to_le32(tmp);
    }
    ret = bdrv_pwrite(bs, le64_to_cpu(header.rgd_offset) * BDRV_SECTOR_SIZE,
                      gd_buf, gd_buf_size);
    if (ret < 0) {
        error_set(errp, QERR_IO_ERROR);
        goto exit;
1635
    }
1636

1637
    /* write backup grain directory */
1638
    for (i = 0, tmp = le64_to_cpu(header.gd_offset) + gd_sectors;
1639
         i < gt_count; i++, tmp += gt_size) {
1640 1641 1642 1643 1644 1645 1646
        gd_buf[i] = cpu_to_le32(tmp);
    }
    ret = bdrv_pwrite(bs, le64_to_cpu(header.gd_offset) * BDRV_SECTOR_SIZE,
                      gd_buf, gd_buf_size);
    if (ret < 0) {
        error_set(errp, QERR_IO_ERROR);
        goto exit;
1647
    }
1648

F
Fam Zheng 已提交
1649
    ret = 0;
1650 1651 1652 1653 1654
exit:
    if (bs) {
        bdrv_unref(bs);
    }
    g_free(gd_buf);
F
Fam Zheng 已提交
1655 1656 1657 1658
    return ret;
}

static int filename_decompose(const char *filename, char *path, char *prefix,
F
Fam Zheng 已提交
1659
                              char *postfix, size_t buf_len, Error **errp)
F
Fam Zheng 已提交
1660 1661 1662 1663
{
    const char *p, *q;

    if (filename == NULL || !strlen(filename)) {
F
Fam Zheng 已提交
1664
        error_setg(errp, "No filename provided");
F
Fam Zheng 已提交
1665
        return VMDK_ERROR;
F
Fam Zheng 已提交
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
    }
    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 已提交
1677
            return VMDK_ERROR;
F
Fam Zheng 已提交
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
        }
        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 已提交
1690
            return VMDK_ERROR;
F
Fam Zheng 已提交
1691 1692 1693 1694
        }
        pstrcpy(prefix, q - p + 1, p);
        pstrcpy(postfix, buf_len, q);
    }
F
Fam Zheng 已提交
1695
    return VMDK_OK;
F
Fam Zheng 已提交
1696 1697
}

1698 1699
static int vmdk_create(const char *filename, QEMUOptionParameter *options,
                       Error **errp)
F
Fam Zheng 已提交
1700
{
1701 1702
    int idx = 0;
    BlockDriverState *new_bs = NULL;
F
Fam Zheng 已提交
1703
    Error *local_err = NULL;
1704
    char *desc = NULL;
F
Fam Zheng 已提交
1705
    int64_t total_size = 0, filesize;
1706
    const char *adapter_type = NULL;
F
Fam Zheng 已提交
1707 1708 1709 1710
    const char *backing_file = NULL;
    const char *fmt = NULL;
    int flags = 0;
    int ret = 0;
1711
    bool flat, split, compress;
1712
    GString *ext_desc_lines;
F
Fam Zheng 已提交
1713 1714 1715 1716 1717
    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;
1718
    uint32_t number_heads = 16;
1719
    bool zeroed_grain = false;
1720
    uint32_t desc_offset = 0, desc_len;
F
Fam Zheng 已提交
1721 1722 1723
    const char desc_template[] =
        "# Disk DescriptorFile\n"
        "version=1\n"
1724 1725
        "CID=%" PRIx32 "\n"
        "parentCID=%" PRIx32 "\n"
F
Fam Zheng 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
        "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"
1737
        "ddb.geometry.heads = \"%" PRIu32 "\"\n"
F
Fam Zheng 已提交
1738
        "ddb.geometry.sectors = \"63\"\n"
1739
        "ddb.adapterType = \"%s\"\n";
F
Fam Zheng 已提交
1740

1741 1742
    ext_desc_lines = g_string_new(NULL);

F
Fam Zheng 已提交
1743
    if (filename_decompose(filename, path, prefix, postfix, PATH_MAX, errp)) {
1744 1745
        ret = -EINVAL;
        goto exit;
F
Fam Zheng 已提交
1746 1747 1748 1749 1750
    }
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
            total_size = options->value.n;
1751 1752
        } else if (!strcmp(options->name, BLOCK_OPT_ADAPTER_TYPE)) {
            adapter_type = options->value.s;
F
Fam Zheng 已提交
1753 1754 1755 1756 1757 1758
        } 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;
1759 1760
        } else if (!strcmp(options->name, BLOCK_OPT_ZEROED_GRAIN)) {
            zeroed_grain |= options->value.n;
F
Fam Zheng 已提交
1761 1762 1763
        }
        options++;
    }
1764 1765 1766 1767 1768 1769
    if (!adapter_type) {
        adapter_type = "ide";
    } else if (strcmp(adapter_type, "ide") &&
               strcmp(adapter_type, "buslogic") &&
               strcmp(adapter_type, "lsilogic") &&
               strcmp(adapter_type, "legacyESX")) {
F
Fam Zheng 已提交
1770
        error_setg(errp, "Unknown adapter type: '%s'", adapter_type);
1771 1772
        ret = -EINVAL;
        goto exit;
1773 1774 1775 1776 1777 1778
    }
    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 已提交
1779 1780 1781 1782 1783 1784
    if (!fmt) {
        /* Default format to monolithicSparse */
        fmt = "monolithicSparse";
    } else if (strcmp(fmt, "monolithicFlat") &&
               strcmp(fmt, "monolithicSparse") &&
               strcmp(fmt, "twoGbMaxExtentSparse") &&
1785 1786
               strcmp(fmt, "twoGbMaxExtentFlat") &&
               strcmp(fmt, "streamOptimized")) {
F
Fam Zheng 已提交
1787
        error_setg(errp, "Unknown subformat: '%s'", fmt);
1788 1789
        ret = -EINVAL;
        goto exit;
F
Fam Zheng 已提交
1790 1791 1792 1793 1794
    }
    split = !(strcmp(fmt, "twoGbMaxExtentFlat") &&
              strcmp(fmt, "twoGbMaxExtentSparse"));
    flat = !(strcmp(fmt, "monolithicFlat") &&
             strcmp(fmt, "twoGbMaxExtentFlat"));
1795
    compress = !strcmp(fmt, "streamOptimized");
F
Fam Zheng 已提交
1796
    if (flat) {
1797
        desc_extent_line = "RW %" PRId64 " FLAT \"%s\" 0\n";
F
Fam Zheng 已提交
1798
    } else {
1799
        desc_extent_line = "RW %" PRId64 " SPARSE \"%s\"\n";
F
Fam Zheng 已提交
1800 1801
    }
    if (flat && backing_file) {
F
Fam Zheng 已提交
1802
        error_setg(errp, "Flat image can't have backing file");
1803 1804
        ret = -ENOTSUP;
        goto exit;
F
Fam Zheng 已提交
1805
    }
1806 1807
    if (flat && zeroed_grain) {
        error_setg(errp, "Flat image can't enable zeroed grain");
1808 1809
        ret = -ENOTSUP;
        goto exit;
1810
    }
F
Fam Zheng 已提交
1811
    if (backing_file) {
1812
        BlockDriverState *bs = NULL;
1813 1814
        ret = bdrv_open(&bs, backing_file, NULL, NULL, BDRV_O_NO_BACKING, NULL,
                        errp);
F
Fam Zheng 已提交
1815
        if (ret != 0) {
1816
            goto exit;
F
Fam Zheng 已提交
1817 1818
        }
        if (strcmp(bs->drv->format_name, "vmdk")) {
F
Fam Zheng 已提交
1819
            bdrv_unref(bs);
1820 1821
            ret = -EINVAL;
            goto exit;
F
Fam Zheng 已提交
1822 1823
        }
        parent_cid = vmdk_read_cid(bs, 0);
F
Fam Zheng 已提交
1824
        bdrv_unref(bs);
F
Fam Zheng 已提交
1825
        snprintf(parent_desc_line, sizeof(parent_desc_line),
1826
                "parentFileNameHint=\"%s\"", backing_file);
F
Fam Zheng 已提交
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
    }

    /* 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);

1853
        if (vmdk_create_extent(ext_filename, size,
1854
                               flat, compress, zeroed_grain, errp)) {
1855 1856
            ret = -EINVAL;
            goto exit;
F
Fam Zheng 已提交
1857 1858 1859 1860 1861
        }
        filesize -= size;

        /* Format description line */
        snprintf(desc_line, sizeof(desc_line),
1862
                    desc_extent_line, size / BDRV_SECTOR_SIZE, desc_filename);
1863
        g_string_append(ext_desc_lines, desc_line);
F
Fam Zheng 已提交
1864 1865
    }
    /* generate descriptor file */
1866
    desc = g_strdup_printf(desc_template,
1867
                           (uint32_t)time(NULL),
1868 1869 1870 1871 1872
                           parent_cid,
                           fmt,
                           parent_desc_line,
                           ext_desc_lines->str,
                           (flags & BLOCK_FLAG_COMPAT6 ? 6 : 4),
1873 1874
                           total_size /
                               (int64_t)(63 * number_heads * BDRV_SECTOR_SIZE),
1875 1876
                           number_heads,
                           adapter_type);
1877 1878 1879 1880
    desc_len = strlen(desc);
    /* the descriptor offset = 0x200 */
    if (!split && !flat) {
        desc_offset = 0x200;
F
Fam Zheng 已提交
1881
    } else {
1882 1883
        ret = bdrv_create_file(filename, options, &local_err);
        if (ret < 0) {
F
Fam Zheng 已提交
1884
            error_propagate(errp, local_err);
1885 1886
            goto exit;
        }
F
Fam Zheng 已提交
1887
    }
M
Max Reitz 已提交
1888 1889 1890
    assert(new_bs == NULL);
    ret = bdrv_open(&new_bs, filename, NULL, NULL,
                    BDRV_O_RDWR | BDRV_O_PROTOCOL, NULL, &local_err);
1891
    if (ret < 0) {
F
Fam Zheng 已提交
1892
        error_propagate(errp, local_err);
1893
        goto exit;
F
Fam Zheng 已提交
1894
    }
1895 1896 1897 1898
    ret = bdrv_pwrite(new_bs, desc_offset, desc, desc_len);
    if (ret < 0) {
        error_setg_errno(errp, -ret, "Could not write description");
        goto exit;
F
Fam Zheng 已提交
1899
    }
1900 1901 1902 1903 1904
    /* bdrv_pwrite write padding zeros to align to sector, we don't need that
     * for description file */
    if (desc_offset == 0) {
        ret = bdrv_truncate(new_bs, desc_len);
        if (ret < 0) {
1905
            error_setg_errno(errp, -ret, "Could not truncate file");
1906
        }
1907
    }
1908
exit:
1909 1910 1911
    if (new_bs) {
        bdrv_unref(new_bs);
    }
1912 1913
    g_free(desc);
    g_string_free(ext_desc_lines, true);
1914
    return ret;
1915 1916
}

B
bellard 已提交
1917
static void vmdk_close(BlockDriverState *bs)
B
bellard 已提交
1918
{
K
Kevin Wolf 已提交
1919 1920
    BDRVVmdkState *s = bs->opaque;

F
Fam Zheng 已提交
1921
    vmdk_free_extents(bs);
F
Fam Zheng 已提交
1922
    g_free(s->create_type);
K
Kevin Wolf 已提交
1923 1924 1925

    migrate_del_blocker(s->migration_blocker);
    error_free(s->migration_blocker);
B
bellard 已提交
1926 1927
}

P
Paolo Bonzini 已提交
1928
static coroutine_fn int vmdk_co_flush(BlockDriverState *bs)
P
pbrook 已提交
1929
{
F
Fam Zheng 已提交
1930
    BDRVVmdkState *s = bs->opaque;
1931 1932
    int i, err;
    int ret = 0;
F
Fam Zheng 已提交
1933 1934

    for (i = 0; i < s->num_extents; i++) {
P
Paolo Bonzini 已提交
1935
        err = bdrv_co_flush(s->extents[i].file);
F
Fam Zheng 已提交
1936 1937 1938 1939 1940
        if (err < 0) {
            ret = err;
        }
    }
    return ret;
P
pbrook 已提交
1941 1942
}

1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965
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;
}
1966

F
Fam Zheng 已提交
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983
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;
}

F
Fam Zheng 已提交
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
static ImageInfo *vmdk_get_extent_info(VmdkExtent *extent)
{
    ImageInfo *info = g_new0(ImageInfo, 1);

    *info = (ImageInfo){
        .filename         = g_strdup(extent->file->filename),
        .format           = g_strdup(extent->type),
        .virtual_size     = extent->sectors * BDRV_SECTOR_SIZE,
        .compressed       = extent->compressed,
        .has_compressed   = extent->compressed,
        .cluster_size     = extent->cluster_sectors * BDRV_SECTOR_SIZE,
        .has_cluster_size = !extent->flat,
    };

    return info;
}

2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047
static int vmdk_check(BlockDriverState *bs, BdrvCheckResult *result,
                      BdrvCheckMode fix)
{
    BDRVVmdkState *s = bs->opaque;
    VmdkExtent *extent = NULL;
    int64_t sector_num = 0;
    int64_t total_sectors = bdrv_getlength(bs) / BDRV_SECTOR_SIZE;
    int ret;
    uint64_t cluster_offset;

    if (fix) {
        return -ENOTSUP;
    }

    for (;;) {
        if (sector_num >= total_sectors) {
            return 0;
        }
        extent = find_extent(s, sector_num, extent);
        if (!extent) {
            fprintf(stderr,
                    "ERROR: could not find extent for sector %" PRId64 "\n",
                    sector_num);
            break;
        }
        ret = get_cluster_offset(bs, extent, NULL,
                                 sector_num << BDRV_SECTOR_BITS,
                                 0, &cluster_offset);
        if (ret == VMDK_ERROR) {
            fprintf(stderr,
                    "ERROR: could not get cluster_offset for sector %"
                    PRId64 "\n", sector_num);
            break;
        }
        if (ret == VMDK_OK && cluster_offset >= bdrv_getlength(extent->file)) {
            fprintf(stderr,
                    "ERROR: cluster offset for sector %"
                    PRId64 " points after EOF\n", sector_num);
            break;
        }
        sector_num += extent->cluster_sectors;
    }

    result->corruptions++;
    return 0;
}

F
Fam Zheng 已提交
2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
static ImageInfoSpecific *vmdk_get_specific_info(BlockDriverState *bs)
{
    int i;
    BDRVVmdkState *s = bs->opaque;
    ImageInfoSpecific *spec_info = g_new0(ImageInfoSpecific, 1);
    ImageInfoList **next;

    *spec_info = (ImageInfoSpecific){
        .kind = IMAGE_INFO_SPECIFIC_KIND_VMDK,
        {
            .vmdk = g_new0(ImageInfoSpecificVmdk, 1),
        },
    };

    *spec_info->vmdk = (ImageInfoSpecificVmdk) {
        .create_type = g_strdup(s->create_type),
        .cid = s->cid,
        .parent_cid = s->parent_cid,
    };

    next = &spec_info->vmdk->extents;
    for (i = 0; i < s->num_extents; i++) {
        *next = g_new0(ImageInfoList, 1);
        (*next)->value = vmdk_get_extent_info(&s->extents[i]);
        (*next)->next = NULL;
        next = &(*next)->next;
    }

    return spec_info;
}

F
Fam Zheng 已提交
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
static int vmdk_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
{
    int i;
    BDRVVmdkState *s = bs->opaque;
    assert(s->num_extents);
    bdi->needs_compressed_writes = s->extents[0].compressed;
    if (!s->extents[0].flat) {
        bdi->cluster_size = s->extents[0].cluster_sectors << BDRV_SECTOR_BITS;
    }
    /* See if we have multiple extents but they have different cases */
    for (i = 1; i < s->num_extents; i++) {
        if (bdi->needs_compressed_writes != s->extents[i].compressed ||
            (bdi->cluster_size && bdi->cluster_size !=
                s->extents[i].cluster_sectors << BDRV_SECTOR_BITS)) {
            return -ENOTSUP;
        }
    }
    return 0;
}

2099
static QEMUOptionParameter vmdk_create_options[] = {
2100 2101 2102 2103 2104
    {
        .name = BLOCK_OPT_SIZE,
        .type = OPT_SIZE,
        .help = "Virtual disk size"
    },
2105 2106 2107 2108 2109 2110
    {
        .name = BLOCK_OPT_ADAPTER_TYPE,
        .type = OPT_STRING,
        .help = "Virtual adapter type, can be one of "
                "ide (default), lsilogic, buslogic or legacyESX"
    },
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
    {
        .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 已提交
2121 2122 2123 2124 2125
    {
        .name = BLOCK_OPT_SUBFMT,
        .type = OPT_STRING,
        .help =
            "VMDK flat extent format, can be one of "
2126
            "{monolithicSparse (default) | monolithicFlat | twoGbMaxExtentSparse | twoGbMaxExtentFlat | streamOptimized} "
F
Fam Zheng 已提交
2127
    },
2128 2129 2130 2131 2132
    {
        .name = BLOCK_OPT_ZEROED_GRAIN,
        .type = OPT_FLAG,
        .help = "Enable efficient zero writes using the zeroed-grain GTE feature"
    },
2133 2134 2135
    { NULL }
};

2136
static BlockDriver bdrv_vmdk = {
F
Fam Zheng 已提交
2137 2138 2139 2140
    .format_name                  = "vmdk",
    .instance_size                = sizeof(BDRVVmdkState),
    .bdrv_probe                   = vmdk_probe,
    .bdrv_open                    = vmdk_open,
2141
    .bdrv_check                   = vmdk_check,
F
Fam Zheng 已提交
2142 2143 2144
    .bdrv_reopen_prepare          = vmdk_reopen_prepare,
    .bdrv_read                    = vmdk_co_read,
    .bdrv_write                   = vmdk_co_write,
2145
    .bdrv_write_compressed        = vmdk_write_compressed,
F
Fam Zheng 已提交
2146 2147 2148 2149
    .bdrv_co_write_zeroes         = vmdk_co_write_zeroes,
    .bdrv_close                   = vmdk_close,
    .bdrv_create                  = vmdk_create,
    .bdrv_co_flush_to_disk        = vmdk_co_flush,
2150
    .bdrv_co_get_block_status     = vmdk_co_get_block_status,
F
Fam Zheng 已提交
2151 2152
    .bdrv_get_allocated_file_size = vmdk_get_allocated_file_size,
    .bdrv_has_zero_init           = vmdk_has_zero_init,
F
Fam Zheng 已提交
2153
    .bdrv_get_specific_info       = vmdk_get_specific_info,
2154
    .bdrv_refresh_limits          = vmdk_refresh_limits,
F
Fam Zheng 已提交
2155
    .bdrv_get_info                = vmdk_get_info,
F
Fam Zheng 已提交
2156 2157

    .create_options               = vmdk_create_options,
B
bellard 已提交
2158
};
2159 2160 2161 2162 2163 2164 2165

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

block_init(bdrv_vmdk_init);