parallels.c 27.6 KB
Newer Older
1 2 3 4
/*
 * Block driver for Parallels disk image format
 *
 * Copyright (c) 2007 Alex Beregszaszi
5
 * Copyright (c) 2015 Denis V. Lunev <den@openvz.org>
6
 *
7 8 9 10
 * This code was originally based on comparing different disk images created
 * by Parallels. Currently it is based on opened OpenVZ sources
 * available at
 *     http://git.openvz.org/?p=ploop;a=summary
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 * 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.
 */
30

P
Peter Maydell 已提交
31
#include "qemu/osdep.h"
32
#include "qapi/error.h"
33
#include "block/block_int.h"
34
#include "block/qdict.h"
35
#include "sysemu/block-backend.h"
36
#include "qemu/module.h"
37
#include "qemu/option.h"
K
Kevin Wolf 已提交
38 39 40
#include "qapi/qmp/qdict.h"
#include "qapi/qobject-input-visitor.h"
#include "qapi/qapi-visit-block-core.h"
41
#include "qemu/bswap.h"
42
#include "qemu/bitmap.h"
J
Jeff Cody 已提交
43
#include "migration/blocker.h"
44
#include "parallels.h"
45 46 47 48

/**************************************************************/

#define HEADER_MAGIC "WithoutFreeSpace"
49
#define HEADER_MAGIC2 "WithouFreSpacExt"
50
#define HEADER_VERSION 2
51
#define HEADER_INUSE_MAGIC  (0x746F6E59)
52
#define MAX_PARALLELS_IMAGE_FACTOR (1ull << 32)
53

54 55 56 57 58 59
static QEnumLookup prealloc_mode_lookup = {
    .array = (const char *const[]) {
        "falloc",
        "truncate",
    },
    .size = PRL_PREALLOC_MODE__MAX
60 61 62 63 64 65 66 67 68 69 70 71 72
};

#define PARALLELS_OPT_PREALLOC_MODE     "prealloc-mode"
#define PARALLELS_OPT_PREALLOC_SIZE     "prealloc-size"

static QemuOptsList parallels_runtime_opts = {
    .name = "parallels",
    .head = QTAILQ_HEAD_INITIALIZER(parallels_runtime_opts.head),
    .desc = {
        {
            .name = PARALLELS_OPT_PREALLOC_SIZE,
            .type = QEMU_OPT_SIZE,
            .help = "Preallocation size on image expansion",
73
            .def_value_str = "128M",
74 75 76 77 78 79 80 81 82 83 84 85
        },
        {
            .name = PARALLELS_OPT_PREALLOC_MODE,
            .type = QEMU_OPT_STRING,
            .help = "Preallocation mode on image expansion "
                    "(allowed values: falloc, truncate)",
            .def_value_str = "falloc",
        },
        { /* end of list */ },
    },
};

K
Kevin Wolf 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
static QemuOptsList parallels_create_opts = {
    .name = "parallels-create-opts",
    .head = QTAILQ_HEAD_INITIALIZER(parallels_create_opts.head),
    .desc = {
        {
            .name = BLOCK_OPT_SIZE,
            .type = QEMU_OPT_SIZE,
            .help = "Virtual disk size",
        },
        {
            .name = BLOCK_OPT_CLUSTER_SIZE,
            .type = QEMU_OPT_SIZE,
            .help = "Parallels image cluster size",
            .def_value_str = stringify(DEFAULT_CLUSTER_SIZE),
        },
        { /* end of list */ }
    }
};

105

106 107
static int64_t bat2sect(BDRVParallelsState *s, uint32_t idx)
{
108
    return (uint64_t)le32_to_cpu(s->bat_bitmap[idx]) * s->off_multiplier;
109 110
}

111 112 113 114 115
static uint32_t bat_entry_off(uint32_t idx)
{
    return sizeof(ParallelsHeader) + sizeof(uint32_t) * idx;
}

116
static int64_t seek_to_sector(BDRVParallelsState *s, int64_t sector_num)
117
{
118
    uint32_t index, offset;
119 120 121 122

    index = sector_num / s->tracks;
    offset = sector_num % s->tracks;

C
Christoph Hellwig 已提交
123
    /* not allocated */
124
    if ((index >= s->bat_size) || (s->bat_bitmap[index] == 0)) {
125
        return -1;
126
    }
127
    return bat2sect(s, index) + offset;
128 129
}

130 131 132 133 134 135 136
static int cluster_remainder(BDRVParallelsState *s, int64_t sector_num,
        int nb_sectors)
{
    int ret = s->tracks - sector_num % s->tracks;
    return MIN(nb_sectors, ret);
}

137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
static int64_t block_status(BDRVParallelsState *s, int64_t sector_num,
                            int nb_sectors, int *pnum)
{
    int64_t start_off = -2, prev_end_off = -2;

    *pnum = 0;
    while (nb_sectors > 0 || start_off == -2) {
        int64_t offset = seek_to_sector(s, sector_num);
        int to_end;

        if (start_off == -2) {
            start_off = offset;
            prev_end_off = offset;
        } else if (offset != prev_end_off) {
            break;
        }

        to_end = cluster_remainder(s, sector_num, nb_sectors);
        nb_sectors -= to_end;
        sector_num += to_end;
        *pnum += to_end;

        if (offset > 0) {
            prev_end_off += to_end;
        }
    }
    return start_off;
}

166 167
static int64_t allocate_clusters(BlockDriverState *bs, int64_t sector_num,
                                 int nb_sectors, int *pnum)
168
{
169
    int ret;
170
    BDRVParallelsState *s = bs->opaque;
171
    int64_t pos, space, idx, to_allocate, i, len;
172

173 174 175 176
    pos = block_status(s, sector_num, nb_sectors, pnum);
    if (pos > 0) {
        return pos;
    }
177

178
    idx = sector_num / s->tracks;
L
Laurent Vivier 已提交
179
    to_allocate = DIV_ROUND_UP(sector_num + *pnum, s->tracks) - idx;
M
Max Reitz 已提交
180 181 182 183 184 185 186 187 188 189 190 191

    /* This function is called only by parallels_co_writev(), which will never
     * pass a sector_num at or beyond the end of the image (because the block
     * layer never passes such a sector_num to that function). Therefore, idx
     * is always below s->bat_size.
     * block_status() will limit *pnum so that sector_num + *pnum will not
     * exceed the image end. Therefore, idx + to_allocate cannot exceed
     * s->bat_size.
     * Note that s->bat_size is an unsigned int, therefore idx + to_allocate
     * will always fit into a uint32_t. */
    assert(idx < s->bat_size && idx + to_allocate <= s->bat_size);

192
    space = to_allocate * s->tracks;
193 194 195 196 197
    len = bdrv_getlength(bs->file->bs);
    if (len < 0) {
        return len;
    }
    if (s->data_end + space > (len >> BDRV_SECTOR_BITS)) {
198
        space += s->prealloc_size;
199
        if (s->prealloc_mode == PRL_PREALLOC_MODE_FALLOCATE) {
200
            ret = bdrv_pwrite_zeroes(bs->file,
201 202
                                     s->data_end << BDRV_SECTOR_BITS,
                                     space << BDRV_SECTOR_BITS, 0);
203
        } else {
204
            ret = bdrv_truncate(bs->file,
205
                                (s->data_end + space) << BDRV_SECTOR_BITS,
206
                                PREALLOC_MODE_OFF, NULL);
207 208 209 210
        }
        if (ret < 0) {
            return ret;
        }
211 212
    }

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
    /* Try to read from backing to fill empty clusters
     * FIXME: 1. previous write_zeroes may be redundant
     *        2. most of data we read from backing will be rewritten by
     *           parallels_co_writev. On aligned-to-cluster write we do not need
     *           this read at all.
     *        3. it would be good to combine write of data from backing and new
     *           data into one write call */
    if (bs->backing) {
        int64_t nb_cow_sectors = to_allocate * s->tracks;
        int64_t nb_cow_bytes = nb_cow_sectors << BDRV_SECTOR_BITS;
        QEMUIOVector qiov;
        struct iovec iov = {
            .iov_len = nb_cow_bytes,
            .iov_base = qemu_blockalign(bs, nb_cow_bytes)
        };
        qemu_iovec_init_external(&qiov, &iov, 1);

        ret = bdrv_co_readv(bs->backing, idx * s->tracks, nb_cow_sectors,
                            &qiov);
        if (ret < 0) {
            qemu_vfree(iov.iov_base);
            return ret;
        }

        ret = bdrv_co_writev(bs->file, s->data_end, nb_cow_sectors, &qiov);
        qemu_vfree(iov.iov_base);
        if (ret < 0) {
            return ret;
        }
    }

244 245 246 247
    for (i = 0; i < to_allocate; i++) {
        s->bat_bitmap[idx + i] = cpu_to_le32(s->data_end / s->off_multiplier);
        s->data_end += s->tracks;
        bitmap_set(s->bat_dirty_bmap,
248
                   bat_entry_off(idx + i) / s->bat_dirty_block, 1);
249
    }
250

251
    return bat2sect(s, idx) + sector_num % s->tracks;
252 253
}

254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271

static coroutine_fn int parallels_co_flush_to_os(BlockDriverState *bs)
{
    BDRVParallelsState *s = bs->opaque;
    unsigned long size = DIV_ROUND_UP(s->header_size, s->bat_dirty_block);
    unsigned long bit;

    qemu_co_mutex_lock(&s->lock);

    bit = find_first_bit(s->bat_dirty_bmap, size);
    while (bit < size) {
        uint32_t off = bit * s->bat_dirty_block;
        uint32_t to_write = s->bat_dirty_block;
        int ret;

        if (off + to_write > s->header_size) {
            to_write = s->header_size - off;
        }
272
        ret = bdrv_pwrite(bs->file, off, (uint8_t *)s->header + off,
K
Kevin Wolf 已提交
273
                          to_write);
274 275 276 277 278 279 280 281 282 283 284 285 286
        if (ret < 0) {
            qemu_co_mutex_unlock(&s->lock);
            return ret;
        }
        bit = find_next_bit(s->bat_dirty_bmap, size, bit + 1);
    }
    bitmap_zero(s->bat_dirty_bmap, size);

    qemu_co_mutex_unlock(&s->lock);
    return 0;
}


287 288 289 290 291 292 293
static int coroutine_fn parallels_co_block_status(BlockDriverState *bs,
                                                  bool want_zero,
                                                  int64_t offset,
                                                  int64_t bytes,
                                                  int64_t *pnum,
                                                  int64_t *map,
                                                  BlockDriverState **file)
294 295
{
    BDRVParallelsState *s = bs->opaque;
296
    int count;
297

298
    assert(QEMU_IS_ALIGNED(offset | bytes, BDRV_SECTOR_SIZE));
299
    qemu_co_mutex_lock(&s->lock);
300 301
    offset = block_status(s, offset >> BDRV_SECTOR_BITS,
                          bytes >> BDRV_SECTOR_BITS, &count);
302 303
    qemu_co_mutex_unlock(&s->lock);

304
    *pnum = count * BDRV_SECTOR_SIZE;
305 306 307 308
    if (offset < 0) {
        return 0;
    }

309
    *map = offset * BDRV_SECTOR_SIZE;
310
    *file = bs->file->bs;
311
    return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID;
312 313
}

314
static coroutine_fn int parallels_co_writev(BlockDriverState *bs,
315 316
                                            int64_t sector_num, int nb_sectors,
                                            QEMUIOVector *qiov, int flags)
317 318 319 320 321 322
{
    BDRVParallelsState *s = bs->opaque;
    uint64_t bytes_done = 0;
    QEMUIOVector hd_qiov;
    int ret = 0;

323
    assert(!flags);
324 325 326 327 328 329 330
    qemu_iovec_init(&hd_qiov, qiov->niov);

    while (nb_sectors > 0) {
        int64_t position;
        int n, nbytes;

        qemu_co_mutex_lock(&s->lock);
331
        position = allocate_clusters(bs, sector_num, nb_sectors, &n);
332 333 334 335 336 337 338 339 340 341 342
        qemu_co_mutex_unlock(&s->lock);
        if (position < 0) {
            ret = (int)position;
            break;
        }

        nbytes = n << BDRV_SECTOR_BITS;

        qemu_iovec_reset(&hd_qiov);
        qemu_iovec_concat(&hd_qiov, qiov, bytes_done, nbytes);

343
        ret = bdrv_co_writev(bs->file, position, n, &hd_qiov);
344 345 346 347 348 349 350 351 352 353 354 355 356
        if (ret < 0) {
            break;
        }

        nb_sectors -= n;
        sector_num += n;
        bytes_done += nbytes;
    }

    qemu_iovec_destroy(&hd_qiov);
    return ret;
}

357 358
static coroutine_fn int parallels_co_readv(BlockDriverState *bs,
        int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
359
{
360
    BDRVParallelsState *s = bs->opaque;
361 362 363 364 365
    uint64_t bytes_done = 0;
    QEMUIOVector hd_qiov;
    int ret = 0;

    qemu_iovec_init(&hd_qiov, qiov->niov);
366

367
    while (nb_sectors > 0) {
368 369 370 371
        int64_t position;
        int n, nbytes;

        qemu_co_mutex_lock(&s->lock);
372
        position = block_status(s, sector_num, nb_sectors, &n);
373 374 375 376
        qemu_co_mutex_unlock(&s->lock);

        nbytes = n << BDRV_SECTOR_BITS;

377 378 379
        qemu_iovec_reset(&hd_qiov);
        qemu_iovec_concat(&hd_qiov, qiov, bytes_done, nbytes);

380
        if (position < 0) {
381 382 383 384 385 386 387 388
            if (bs->backing) {
                ret = bdrv_co_readv(bs->backing, sector_num, n, &hd_qiov);
                if (ret < 0) {
                    break;
                }
            } else {
                qemu_iovec_memset(&hd_qiov, 0, 0, nbytes);
            }
389
        } else {
390
            ret = bdrv_co_readv(bs->file, position, n, &hd_qiov);
391
            if (ret < 0) {
392
                break;
393
            }
C
Christoph Hellwig 已提交
394
        }
395

396 397
        nb_sectors -= n;
        sector_num += n;
398
        bytes_done += nbytes;
399 400
    }

401
    qemu_iovec_destroy(&hd_qiov);
402 403 404
    return ret;
}

405

406 407 408
static int coroutine_fn parallels_co_check(BlockDriverState *bs,
                                           BdrvCheckResult *res,
                                           BdrvCheckMode fix)
409 410 411 412 413 414 415 416
{
    BDRVParallelsState *s = bs->opaque;
    int64_t size, prev_off, high_off;
    int ret;
    uint32_t i;
    bool flush_bat = false;
    int cluster_size = s->tracks << BDRV_SECTOR_BITS;

K
Kevin Wolf 已提交
417
    size = bdrv_getlength(bs->file->bs);
418 419 420 421 422
    if (size < 0) {
        res->check_errors++;
        return size;
    }

423
    qemu_co_mutex_lock(&s->lock);
424 425 426 427 428 429 430 431 432 433 434
    if (s->header_unclean) {
        fprintf(stderr, "%s image was not closed correctly\n",
                fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR");
        res->corruptions++;
        if (fix & BDRV_FIX_ERRORS) {
            /* parallels_close will do the job right */
            res->corruptions_fixed++;
            s->header_unclean = false;
        }
    }

435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
    res->bfi.total_clusters = s->bat_size;
    res->bfi.compressed_clusters = 0; /* compression is not supported */

    high_off = 0;
    prev_off = 0;
    for (i = 0; i < s->bat_size; i++) {
        int64_t off = bat2sect(s, i) << BDRV_SECTOR_BITS;
        if (off == 0) {
            prev_off = 0;
            continue;
        }

        /* cluster outside the image */
        if (off > size) {
            fprintf(stderr, "%s cluster %u is outside image\n",
                    fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR", i);
            res->corruptions++;
            if (fix & BDRV_FIX_ERRORS) {
                prev_off = 0;
                s->bat_bitmap[i] = 0;
                res->corruptions_fixed++;
                flush_bat = true;
                continue;
            }
        }

        res->bfi.allocated_clusters++;
        if (off > high_off) {
            high_off = off;
        }

        if (prev_off != 0 && (prev_off + cluster_size) != off) {
            res->bfi.fragmented_clusters++;
        }
        prev_off = off;
    }

472
    ret = 0;
473
    if (flush_bat) {
474
        ret = bdrv_pwrite_sync(bs->file, 0, s->header, s->header_size);
475 476
        if (ret < 0) {
            res->check_errors++;
477
            goto out;
478 479 480 481 482 483 484 485 486 487 488 489
        }
    }

    res->image_end_offset = high_off + cluster_size;
    if (size > res->image_end_offset) {
        int64_t count;
        count = DIV_ROUND_UP(size - res->image_end_offset, cluster_size);
        fprintf(stderr, "%s space leaked at the end of the image %" PRId64 "\n",
                fix & BDRV_FIX_LEAKS ? "Repairing" : "ERROR",
                size - res->image_end_offset);
        res->leaks += count;
        if (fix & BDRV_FIX_LEAKS) {
490
            Error *local_err = NULL;
491 492
            ret = bdrv_truncate(bs->file, res->image_end_offset,
                                PREALLOC_MODE_OFF, &local_err);
493
            if (ret < 0) {
494
                error_report_err(local_err);
495
                res->check_errors++;
496
                goto out;
497 498 499 500 501
            }
            res->leaks_fixed += count;
        }
    }

502 503 504
out:
    qemu_co_mutex_unlock(&s->lock);
    return ret;
505 506 507
}


K
Kevin Wolf 已提交
508 509
static int coroutine_fn parallels_co_create(BlockdevCreateOptions* opts,
                                            Error **errp)
510
{
K
Kevin Wolf 已提交
511 512 513
    BlockdevCreateOptionsParallels *parallels_opts;
    BlockDriverState *bs;
    BlockBackend *blk;
514
    int64_t total_size, cl_size;
515
    uint32_t bat_entries, bat_sectors;
516
    ParallelsHeader header;
K
Kevin Wolf 已提交
517
    uint8_t tmp[BDRV_SECTOR_SIZE];
518 519
    int ret;

K
Kevin Wolf 已提交
520 521 522 523 524 525 526 527 528 529 530 531
    assert(opts->driver == BLOCKDEV_DRIVER_PARALLELS);
    parallels_opts = &opts->u.parallels;

    /* Sanity checks */
    total_size = parallels_opts->size;

    if (parallels_opts->has_cluster_size) {
        cl_size = parallels_opts->cluster_size;
    } else {
        cl_size = DEFAULT_CLUSTER_SIZE;
    }

532 533 534 535 536
    /* XXX What is the real limit here? This is an insanely large maximum. */
    if (cl_size >= INT64_MAX / MAX_PARALLELS_IMAGE_FACTOR) {
        error_setg(errp, "Cluster size is too large");
        return -EINVAL;
    }
537
    if (total_size >= MAX_PARALLELS_IMAGE_FACTOR * cl_size) {
K
Kevin Wolf 已提交
538
        error_setg(errp, "Image size is too large for this cluster size");
539 540
        return -E2BIG;
    }
541

K
Kevin Wolf 已提交
542 543 544
    if (!QEMU_IS_ALIGNED(total_size, BDRV_SECTOR_SIZE)) {
        error_setg(errp, "Image size must be a multiple of 512 bytes");
        return -EINVAL;
545 546
    }

K
Kevin Wolf 已提交
547 548 549 550 551 552 553 554
    if (!QEMU_IS_ALIGNED(cl_size, BDRV_SECTOR_SIZE)) {
        error_setg(errp, "Cluster size must be a multiple of 512 bytes");
        return -EINVAL;
    }

    /* Create BlockBackend to write to the image */
    bs = bdrv_open_blockdev_ref(parallels_opts->file, errp);
    if (bs == NULL) {
555
        return -EIO;
556
    }
557

K
Kevin Wolf 已提交
558 559 560 561 562 563
    blk = blk_new(BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL);
    ret = blk_insert_bs(blk, bs, errp);
    if (ret < 0) {
        goto out;
    }
    blk_set_allow_write_beyond_eof(blk, true);
564

K
Kevin Wolf 已提交
565 566
    /* Create image format */
    ret = blk_truncate(blk, 0, PREALLOC_MODE_OFF, errp);
567
    if (ret < 0) {
K
Kevin Wolf 已提交
568
        goto out;
569 570
    }

571
    bat_entries = DIV_ROUND_UP(total_size, cl_size);
572
    bat_sectors = DIV_ROUND_UP(bat_entry_off(bat_entries), cl_size);
573
    bat_sectors = (bat_sectors *  cl_size) >> BDRV_SECTOR_BITS;
574 575 576 577 578

    memset(&header, 0, sizeof(header));
    memcpy(header.magic, HEADER_MAGIC2, sizeof(header.magic));
    header.version = cpu_to_le32(HEADER_VERSION);
    /* don't care much about geometry, it is not used on image level */
579 580 581
    header.heads = cpu_to_le32(HEADS_NUMBER);
    header.cylinders = cpu_to_le32(total_size / BDRV_SECTOR_SIZE
                                   / HEADS_NUMBER / SEC_IN_CYL);
582
    header.tracks = cpu_to_le32(cl_size >> BDRV_SECTOR_BITS);
583
    header.bat_entries = cpu_to_le32(bat_entries);
584
    header.nb_sectors = cpu_to_le64(DIV_ROUND_UP(total_size, BDRV_SECTOR_SIZE));
585
    header.data_off = cpu_to_le32(bat_sectors);
586 587 588 589 590

    /* write all the data */
    memset(tmp, 0, sizeof(tmp));
    memcpy(tmp, &header, sizeof(header));

K
Kevin Wolf 已提交
591
    ret = blk_pwrite(blk, 0, tmp, BDRV_SECTOR_SIZE, 0);
592 593 594
    if (ret < 0) {
        goto exit;
    }
K
Kevin Wolf 已提交
595
    ret = blk_pwrite_zeroes(blk, BDRV_SECTOR_SIZE,
E
Eric Blake 已提交
596
                            (bat_sectors - 1) << BDRV_SECTOR_BITS, 0);
597 598 599 600
    if (ret < 0) {
        goto exit;
    }

K
Kevin Wolf 已提交
601 602 603 604
    ret = 0;
out:
    blk_unref(blk);
    bdrv_unref(bs);
605 606 607 608
    return ret;

exit:
    error_setg_errno(errp, -ret, "Failed to create Parallels image");
K
Kevin Wolf 已提交
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 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
    goto out;
}

static int coroutine_fn parallels_co_create_opts(const char *filename,
                                                 QemuOpts *opts,
                                                 Error **errp)
{
    BlockdevCreateOptions *create_options = NULL;
    Error *local_err = NULL;
    BlockDriverState *bs = NULL;
    QDict *qdict = NULL;
    QObject *qobj;
    Visitor *v;
    int ret;

    static const QDictRenames opt_renames[] = {
        { BLOCK_OPT_CLUSTER_SIZE,       "cluster-size" },
        { NULL, NULL },
    };

    /* Parse options and convert legacy syntax */
    qdict = qemu_opts_to_qdict_filtered(opts, NULL, &parallels_create_opts,
                                        true);

    if (!qdict_rename_keys(qdict, opt_renames, errp)) {
        ret = -EINVAL;
        goto done;
    }

    /* Create and open the file (protocol layer) */
    ret = bdrv_create_file(filename, opts, &local_err);
    if (ret < 0) {
        error_propagate(errp, local_err);
        goto done;
    }

    bs = bdrv_open(filename, NULL, NULL,
                   BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
    if (bs == NULL) {
        ret = -EIO;
        goto done;
    }

    /* Now get the QAPI type BlockdevCreateOptions */
    qdict_put_str(qdict, "driver", "parallels");
    qdict_put_str(qdict, "file", bs->node_name);

656
    qobj = qdict_crumple_for_keyval_qiv(qdict, errp);
657
    qobject_unref(qdict);
658
    qdict = qobject_to(QDict, qobj);
K
Kevin Wolf 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
    if (qdict == NULL) {
        ret = -EINVAL;
        goto done;
    }

    v = qobject_input_visitor_new_keyval(QOBJECT(qdict));
    visit_type_BlockdevCreateOptions(v, NULL, &create_options, &local_err);
    visit_free(v);

    if (local_err) {
        error_propagate(errp, local_err);
        ret = -EINVAL;
        goto done;
    }

    /* Silently round up sizes */
    create_options->u.parallels.size =
        ROUND_UP(create_options->u.parallels.size, BDRV_SECTOR_SIZE);
    create_options->u.parallels.cluster_size =
        ROUND_UP(create_options->u.parallels.cluster_size, BDRV_SECTOR_SIZE);

    /* Create the Parallels image (format layer) */
    ret = parallels_co_create(create_options, errp);
    if (ret < 0) {
        goto done;
    }
    ret = 0;

done:
688
    qobject_unref(qdict);
K
Kevin Wolf 已提交
689 690 691
    bdrv_unref(bs);
    qapi_free_BlockdevCreateOptions(create_options);
    return ret;
692 693
}

694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712

static int parallels_probe(const uint8_t *buf, int buf_size,
                           const char *filename)
{
    const ParallelsHeader *ph = (const void *)buf;

    if (buf_size < sizeof(ParallelsHeader)) {
        return 0;
    }

    if ((!memcmp(ph->magic, HEADER_MAGIC, 16) ||
           !memcmp(ph->magic, HEADER_MAGIC2, 16)) &&
           (le32_to_cpu(ph->version) == HEADER_VERSION)) {
        return 100;
    }

    return 0;
}

713 714 715
static int parallels_update_header(BlockDriverState *bs)
{
    BDRVParallelsState *s = bs->opaque;
K
Kevin Wolf 已提交
716 717
    unsigned size = MAX(bdrv_opt_mem_align(bs->file->bs),
                        sizeof(ParallelsHeader));
718 719 720 721

    if (size > s->header_size) {
        size = s->header_size;
    }
722
    return bdrv_pwrite_sync(bs->file, 0, s->header, size);
723 724
}

725 726 727 728 729
static int parallels_open(BlockDriverState *bs, QDict *options, int flags,
                          Error **errp)
{
    BDRVParallelsState *s = bs->opaque;
    ParallelsHeader ph;
730
    int ret, size, i;
731 732 733
    QemuOpts *opts = NULL;
    Error *local_err = NULL;
    char *buf;
734

735 736 737 738 739 740
    bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file,
                               false, errp);
    if (!bs->file) {
        return -EINVAL;
    }

741
    ret = bdrv_pread(bs->file, 0, &ph, sizeof(ph));
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
    if (ret < 0) {
        goto fail;
    }

    bs->total_sectors = le64_to_cpu(ph.nb_sectors);

    if (le32_to_cpu(ph.version) != HEADER_VERSION) {
        goto fail_format;
    }
    if (!memcmp(ph.magic, HEADER_MAGIC, 16)) {
        s->off_multiplier = 1;
        bs->total_sectors = 0xffffffff & bs->total_sectors;
    } else if (!memcmp(ph.magic, HEADER_MAGIC2, 16)) {
        s->off_multiplier = le32_to_cpu(ph.tracks);
    } else {
        goto fail_format;
    }

    s->tracks = le32_to_cpu(ph.tracks);
    if (s->tracks == 0) {
        error_setg(errp, "Invalid image: Zero sectors per track");
        ret = -EINVAL;
        goto fail;
    }
    if (s->tracks > INT32_MAX/513) {
        error_setg(errp, "Invalid image: Too big cluster");
        ret = -EFBIG;
        goto fail;
    }

    s->bat_size = le32_to_cpu(ph.bat_entries);
    if (s->bat_size > INT_MAX / sizeof(uint32_t)) {
        error_setg(errp, "Catalog too large");
        ret = -EFBIG;
        goto fail;
    }

779
    size = bat_entry_off(s->bat_size);
K
Kevin Wolf 已提交
780 781
    s->header_size = ROUND_UP(size, bdrv_opt_mem_align(bs->file->bs));
    s->header = qemu_try_blockalign(bs->file->bs, s->header_size);
782 783 784 785
    if (s->header == NULL) {
        ret = -ENOMEM;
        goto fail;
    }
786 787 788 789 790
    s->data_end = le32_to_cpu(ph.data_off);
    if (s->data_end == 0) {
        s->data_end = ROUND_UP(bat_entry_off(s->bat_size), BDRV_SECTOR_SIZE);
    }
    if (s->data_end < s->header_size) {
791 792 793 794 795
        /* there is not enough unused space to fit to block align between BAT
           and actual data. We can't avoid read-modify-write... */
        s->header_size = size;
    }

796
    ret = bdrv_pread(bs->file, 0, s->header, s->header_size);
797 798 799 800 801
    if (ret < 0) {
        goto fail;
    }
    s->bat_bitmap = (uint32_t *)(s->header + 1);

802 803 804 805 806 807 808
    for (i = 0; i < s->bat_size; i++) {
        int64_t off = bat2sect(s, i);
        if (off >= s->data_end) {
            s->data_end = off + s->tracks;
        }
    }

809 810 811 812 813 814 815 816 817 818 819
    if (le32_to_cpu(ph.inuse) == HEADER_INUSE_MAGIC) {
        /* Image was not closed correctly. The check is mandatory */
        s->header_unclean = true;
        if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) {
            error_setg(errp, "parallels: Image was not closed correctly; "
                       "cannot be opened read/write");
            ret = -EACCES;
            goto fail;
        }
    }

820 821 822 823 824 825 826 827 828 829 830 831 832 833
    opts = qemu_opts_create(&parallels_runtime_opts, NULL, 0, &local_err);
    if (local_err != NULL) {
        goto fail_options;
    }

    qemu_opts_absorb_qdict(opts, options, &local_err);
    if (local_err != NULL) {
        goto fail_options;
    }

    s->prealloc_size =
        qemu_opt_get_size_del(opts, PARALLELS_OPT_PREALLOC_SIZE, 0);
    s->prealloc_size = MAX(s->tracks, s->prealloc_size >> BDRV_SECTOR_BITS);
    buf = qemu_opt_get_del(opts, PARALLELS_OPT_PREALLOC_MODE);
834
    s->prealloc_mode = qapi_enum_parse(&prealloc_mode_lookup, buf,
835 836
                                       PRL_PREALLOC_MODE_FALLOCATE,
                                       &local_err);
837 838 839 840
    g_free(buf);
    if (local_err != NULL) {
        goto fail_options;
    }
841

842
    if (!bdrv_has_zero_init(bs->file->bs)) {
843 844 845
        s->prealloc_mode = PRL_PREALLOC_MODE_FALLOCATE;
    }

846
    if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_INACTIVE)) {
847 848 849 850 851 852 853
        s->header->inuse = cpu_to_le32(HEADER_INUSE_MAGIC);
        ret = parallels_update_header(bs);
        if (ret < 0) {
            goto fail;
        }
    }

854 855 856 857
    s->bat_dirty_block = 4 * getpagesize();
    s->bat_dirty_bmap =
        bitmap_new(DIV_ROUND_UP(s->header_size, s->bat_dirty_block));

J
Jeff Cody 已提交
858 859 860 861 862 863 864 865 866 867
    /* Disable migration until bdrv_invalidate_cache method is added */
    error_setg(&s->migration_blocker, "The Parallels format used by node '%s' "
               "does not support live migration",
               bdrv_get_device_or_node_name(bs));
    ret = migrate_add_blocker(s->migration_blocker, &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        error_free(s->migration_blocker);
        goto fail;
    }
868 869 870 871 872 873 874 875 876
    qemu_co_mutex_init(&s->lock);
    return 0;

fail_format:
    error_setg(errp, "Image not in Parallels format");
    ret = -EINVAL;
fail:
    qemu_vfree(s->header);
    return ret;
877 878 879 880 881

fail_options:
    error_propagate(errp, local_err);
    ret = -EINVAL;
    goto fail;
882 883 884
}


885 886 887
static void parallels_close(BlockDriverState *bs)
{
    BDRVParallelsState *s = bs->opaque;
888

889
    if ((bs->open_flags & BDRV_O_RDWR) && !(bs->open_flags & BDRV_O_INACTIVE)) {
890 891
        s->header->inuse = 0;
        parallels_update_header(bs);
892 893
        bdrv_truncate(bs->file, s->data_end << BDRV_SECTOR_BITS,
                      PREALLOC_MODE_OFF, NULL);
894 895
    }

896
    g_free(s->bat_dirty_bmap);
897
    qemu_vfree(s->header);
J
Jeff Cody 已提交
898 899 900

    migrate_del_blocker(s->migration_blocker);
    error_free(s->migration_blocker);
901 902
}

903
static BlockDriver bdrv_parallels = {
904 905 906
    .format_name	= "parallels",
    .instance_size	= sizeof(BDRVParallelsState),
    .bdrv_probe		= parallels_probe,
907
    .bdrv_open		= parallels_open,
908
    .bdrv_close		= parallels_close,
909
    .bdrv_child_perm          = bdrv_format_default_perms,
910
    .bdrv_co_block_status     = parallels_co_block_status,
911
    .bdrv_has_zero_init       = bdrv_has_zero_init_1,
912
    .bdrv_co_flush_to_os      = parallels_co_flush_to_os,
913
    .bdrv_co_readv  = parallels_co_readv,
914
    .bdrv_co_writev = parallels_co_writev,
915
    .supports_backing = true,
K
Kevin Wolf 已提交
916
    .bdrv_co_create      = parallels_co_create,
917
    .bdrv_co_create_opts = parallels_co_create_opts,
918
    .bdrv_co_check  = parallels_co_check,
919
    .create_opts    = &parallels_create_opts,
920
};
921 922 923 924 925 926 927

static void bdrv_parallels_init(void)
{
    bdrv_register(&bdrv_parallels);
}

block_init(bdrv_parallels_init);