qemu/block.c
<<
>>
Prefs
   1/*
   2 * QEMU System Emulator block driver
   3 *
   4 * Copyright (c) 2003 Fabrice Bellard
   5 *
   6 * Permission is hereby granted, free of charge, to any person obtaining a copy
   7 * of this software and associated documentation files (the "Software"), to deal
   8 * in the Software without restriction, including without limitation the rights
   9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10 * copies of the Software, and to permit persons to whom the Software is
  11 * furnished to do so, subject to the following conditions:
  12 *
  13 * The above copyright notice and this permission notice shall be included in
  14 * all copies or substantial portions of the Software.
  15 *
  16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22 * THE SOFTWARE.
  23 */
  24
  25#include "qemu/osdep.h"
  26#include "block/trace.h"
  27#include "block/block_int.h"
  28#include "block/blockjob.h"
  29#include "block/nbd.h"
  30#include "block/qdict.h"
  31#include "qemu/error-report.h"
  32#include "module_block.h"
  33#include "qemu/module.h"
  34#include "qapi/error.h"
  35#include "qapi/qmp/qdict.h"
  36#include "qapi/qmp/qjson.h"
  37#include "qapi/qmp/qnull.h"
  38#include "qapi/qmp/qstring.h"
  39#include "qapi/qobject-output-visitor.h"
  40#include "qapi/qapi-visit-block-core.h"
  41#include "sysemu/block-backend.h"
  42#include "sysemu/sysemu.h"
  43#include "qemu/notify.h"
  44#include "qemu/option.h"
  45#include "qemu/coroutine.h"
  46#include "block/qapi.h"
  47#include "qemu/timer.h"
  48#include "qemu/cutils.h"
  49#include "qemu/id.h"
  50
  51#ifdef CONFIG_BSD
  52#include <sys/ioctl.h>
  53#include <sys/queue.h>
  54#ifndef __DragonFly__
  55#include <sys/disk.h>
  56#endif
  57#endif
  58
  59#ifdef _WIN32
  60#include <windows.h>
  61#endif
  62
  63#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
  64
  65static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
  66    QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
  67
  68static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
  69    QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
  70
  71static QLIST_HEAD(, BlockDriver) bdrv_drivers =
  72    QLIST_HEAD_INITIALIZER(bdrv_drivers);
  73
  74static BlockDriverState *bdrv_open_inherit(const char *filename,
  75                                           const char *reference,
  76                                           QDict *options, int flags,
  77                                           BlockDriverState *parent,
  78                                           const BdrvChildRole *child_role,
  79                                           Error **errp);
  80
  81/* If non-zero, use only whitelisted block drivers */
  82static int use_bdrv_whitelist;
  83
  84#ifdef _WIN32
  85static int is_windows_drive_prefix(const char *filename)
  86{
  87    return (((filename[0] >= 'a' && filename[0] <= 'z') ||
  88             (filename[0] >= 'A' && filename[0] <= 'Z')) &&
  89            filename[1] == ':');
  90}
  91
  92int is_windows_drive(const char *filename)
  93{
  94    if (is_windows_drive_prefix(filename) &&
  95        filename[2] == '\0')
  96        return 1;
  97    if (strstart(filename, "\\\\.\\", NULL) ||
  98        strstart(filename, "//./", NULL))
  99        return 1;
 100    return 0;
 101}
 102#endif
 103
 104size_t bdrv_opt_mem_align(BlockDriverState *bs)
 105{
 106    if (!bs || !bs->drv) {
 107        /* page size or 4k (hdd sector size) should be on the safe side */
 108        return MAX(4096, getpagesize());
 109    }
 110
 111    return bs->bl.opt_mem_alignment;
 112}
 113
 114size_t bdrv_min_mem_align(BlockDriverState *bs)
 115{
 116    if (!bs || !bs->drv) {
 117        /* page size or 4k (hdd sector size) should be on the safe side */
 118        return MAX(4096, getpagesize());
 119    }
 120
 121    return bs->bl.min_mem_alignment;
 122}
 123
 124/* check if the path starts with "<protocol>:" */
 125int path_has_protocol(const char *path)
 126{
 127    const char *p;
 128
 129#ifdef _WIN32
 130    if (is_windows_drive(path) ||
 131        is_windows_drive_prefix(path)) {
 132        return 0;
 133    }
 134    p = path + strcspn(path, ":/\\");
 135#else
 136    p = path + strcspn(path, ":/");
 137#endif
 138
 139    return *p == ':';
 140}
 141
 142int path_is_absolute(const char *path)
 143{
 144#ifdef _WIN32
 145    /* specific case for names like: "\\.\d:" */
 146    if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
 147        return 1;
 148    }
 149    return (*path == '/' || *path == '\\');
 150#else
 151    return (*path == '/');
 152#endif
 153}
 154
 155/* if filename is absolute, just copy it to dest. Otherwise, build a
 156   path to it by considering it is relative to base_path. URL are
 157   supported. */
 158void path_combine(char *dest, int dest_size,
 159                  const char *base_path,
 160                  const char *filename)
 161{
 162    const char *p, *p1;
 163    int len;
 164
 165    if (dest_size <= 0)
 166        return;
 167    if (path_is_absolute(filename)) {
 168        pstrcpy(dest, dest_size, filename);
 169    } else {
 170        const char *protocol_stripped = NULL;
 171
 172        if (path_has_protocol(base_path)) {
 173            protocol_stripped = strchr(base_path, ':');
 174            if (protocol_stripped) {
 175                protocol_stripped++;
 176            }
 177        }
 178        p = protocol_stripped ?: base_path;
 179
 180        p1 = strrchr(base_path, '/');
 181#ifdef _WIN32
 182        {
 183            const char *p2;
 184            p2 = strrchr(base_path, '\\');
 185            if (!p1 || p2 > p1)
 186                p1 = p2;
 187        }
 188#endif
 189        if (p1)
 190            p1++;
 191        else
 192            p1 = base_path;
 193        if (p1 > p)
 194            p = p1;
 195        len = p - base_path;
 196        if (len > dest_size - 1)
 197            len = dest_size - 1;
 198        memcpy(dest, base_path, len);
 199        dest[len] = '\0';
 200        pstrcat(dest, dest_size, filename);
 201    }
 202}
 203
 204/*
 205 * Helper function for bdrv_parse_filename() implementations to remove optional
 206 * protocol prefixes (especially "file:") from a filename and for putting the
 207 * stripped filename into the options QDict if there is such a prefix.
 208 */
 209void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
 210                                      QDict *options)
 211{
 212    if (strstart(filename, prefix, &filename)) {
 213        /* Stripping the explicit protocol prefix may result in a protocol
 214         * prefix being (wrongly) detected (if the filename contains a colon) */
 215        if (path_has_protocol(filename)) {
 216            QString *fat_filename;
 217
 218            /* This means there is some colon before the first slash; therefore,
 219             * this cannot be an absolute path */
 220            assert(!path_is_absolute(filename));
 221
 222            /* And we can thus fix the protocol detection issue by prefixing it
 223             * by "./" */
 224            fat_filename = qstring_from_str("./");
 225            qstring_append(fat_filename, filename);
 226
 227            assert(!path_has_protocol(qstring_get_str(fat_filename)));
 228
 229            qdict_put(options, "filename", fat_filename);
 230        } else {
 231            /* If no protocol prefix was detected, we can use the shortened
 232             * filename as-is */
 233            qdict_put_str(options, "filename", filename);
 234        }
 235    }
 236}
 237
 238
 239/* Returns whether the image file is opened as read-only. Note that this can
 240 * return false and writing to the image file is still not possible because the
 241 * image is inactivated. */
 242bool bdrv_is_read_only(BlockDriverState *bs)
 243{
 244    return bs->read_only;
 245}
 246
 247int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
 248                           bool ignore_allow_rdw, Error **errp)
 249{
 250    /* Do not set read_only if copy_on_read is enabled */
 251    if (bs->copy_on_read && read_only) {
 252        error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
 253                   bdrv_get_device_or_node_name(bs));
 254        return -EINVAL;
 255    }
 256
 257    /* Do not clear read_only if it is prohibited */
 258    if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
 259        !ignore_allow_rdw)
 260    {
 261        error_setg(errp, "Node '%s' is read only",
 262                   bdrv_get_device_or_node_name(bs));
 263        return -EPERM;
 264    }
 265
 266    return 0;
 267}
 268
 269/* TODO Remove (deprecated since 2.11)
 270 * Block drivers are not supposed to automatically change bs->read_only.
 271 * Instead, they should just check whether they can provide what the user
 272 * explicitly requested and error out if read-write is requested, but they can
 273 * only provide read-only access. */
 274int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
 275{
 276    int ret = 0;
 277
 278    ret = bdrv_can_set_read_only(bs, read_only, false, errp);
 279    if (ret < 0) {
 280        return ret;
 281    }
 282
 283    bs->read_only = read_only;
 284    return 0;
 285}
 286
 287void bdrv_get_full_backing_filename_from_filename(const char *backed,
 288                                                  const char *backing,
 289                                                  char *dest, size_t sz,
 290                                                  Error **errp)
 291{
 292    if (backing[0] == '\0' || path_has_protocol(backing) ||
 293        path_is_absolute(backing))
 294    {
 295        pstrcpy(dest, sz, backing);
 296    } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
 297        error_setg(errp, "Cannot use relative backing file names for '%s'",
 298                   backed);
 299    } else {
 300        path_combine(dest, sz, backed, backing);
 301    }
 302}
 303
 304void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
 305                                    Error **errp)
 306{
 307    char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
 308
 309    bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
 310                                                 dest, sz, errp);
 311}
 312
 313void bdrv_register(BlockDriver *bdrv)
 314{
 315    QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
 316}
 317
 318BlockDriverState *bdrv_new(void)
 319{
 320    BlockDriverState *bs;
 321    int i;
 322
 323    bs = g_new0(BlockDriverState, 1);
 324    QLIST_INIT(&bs->dirty_bitmaps);
 325    for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
 326        QLIST_INIT(&bs->op_blockers[i]);
 327    }
 328    notifier_with_return_list_init(&bs->before_write_notifiers);
 329    qemu_co_mutex_init(&bs->reqs_lock);
 330    qemu_mutex_init(&bs->dirty_bitmap_mutex);
 331    bs->refcnt = 1;
 332    bs->aio_context = qemu_get_aio_context();
 333
 334    qemu_co_queue_init(&bs->flush_queue);
 335
 336    for (i = 0; i < bdrv_drain_all_count; i++) {
 337        bdrv_drained_begin(bs);
 338    }
 339
 340    QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
 341
 342    return bs;
 343}
 344
 345static BlockDriver *bdrv_do_find_format(const char *format_name)
 346{
 347    BlockDriver *drv1;
 348
 349    QLIST_FOREACH(drv1, &bdrv_drivers, list) {
 350        if (!strcmp(drv1->format_name, format_name)) {
 351            return drv1;
 352        }
 353    }
 354
 355    return NULL;
 356}
 357
 358BlockDriver *bdrv_find_format(const char *format_name)
 359{
 360    BlockDriver *drv1;
 361    int i;
 362
 363    drv1 = bdrv_do_find_format(format_name);
 364    if (drv1) {
 365        return drv1;
 366    }
 367
 368    /* The driver isn't registered, maybe we need to load a module */
 369    for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
 370        if (!strcmp(block_driver_modules[i].format_name, format_name)) {
 371            block_module_load_one(block_driver_modules[i].library_name);
 372            break;
 373        }
 374    }
 375
 376    return bdrv_do_find_format(format_name);
 377}
 378
 379int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
 380{
 381    static const char *whitelist_rw[] = {
 382        CONFIG_BDRV_RW_WHITELIST
 383    };
 384    static const char *whitelist_ro[] = {
 385        CONFIG_BDRV_RO_WHITELIST
 386    };
 387    const char **p;
 388
 389    if (!whitelist_rw[0] && !whitelist_ro[0]) {
 390        return 1;               /* no whitelist, anything goes */
 391    }
 392
 393    for (p = whitelist_rw; *p; p++) {
 394        if (!strcmp(drv->format_name, *p)) {
 395            return 1;
 396        }
 397    }
 398    if (read_only) {
 399        for (p = whitelist_ro; *p; p++) {
 400            if (!strcmp(drv->format_name, *p)) {
 401                return 1;
 402            }
 403        }
 404    }
 405    return 0;
 406}
 407
 408bool bdrv_uses_whitelist(void)
 409{
 410    return use_bdrv_whitelist;
 411}
 412
 413typedef struct CreateCo {
 414    BlockDriver *drv;
 415    char *filename;
 416    QemuOpts *opts;
 417    int ret;
 418    Error *err;
 419} CreateCo;
 420
 421static void coroutine_fn bdrv_create_co_entry(void *opaque)
 422{
 423    Error *local_err = NULL;
 424    int ret;
 425
 426    CreateCo *cco = opaque;
 427    assert(cco->drv);
 428
 429    ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
 430    error_propagate(&cco->err, local_err);
 431    cco->ret = ret;
 432}
 433
 434int bdrv_create(BlockDriver *drv, const char* filename,
 435                QemuOpts *opts, Error **errp)
 436{
 437    int ret;
 438
 439    Coroutine *co;
 440    CreateCo cco = {
 441        .drv = drv,
 442        .filename = g_strdup(filename),
 443        .opts = opts,
 444        .ret = NOT_DONE,
 445        .err = NULL,
 446    };
 447
 448    if (!drv->bdrv_co_create_opts) {
 449        error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
 450        ret = -ENOTSUP;
 451        goto out;
 452    }
 453
 454    if (qemu_in_coroutine()) {
 455        /* Fast-path if already in coroutine context */
 456        bdrv_create_co_entry(&cco);
 457    } else {
 458        co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
 459        qemu_coroutine_enter(co);
 460        while (cco.ret == NOT_DONE) {
 461            aio_poll(qemu_get_aio_context(), true);
 462        }
 463    }
 464
 465    ret = cco.ret;
 466    if (ret < 0) {
 467        if (cco.err) {
 468            error_propagate(errp, cco.err);
 469        } else {
 470            error_setg_errno(errp, -ret, "Could not create image");
 471        }
 472    }
 473
 474out:
 475    g_free(cco.filename);
 476    return ret;
 477}
 478
 479int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
 480{
 481    BlockDriver *drv;
 482    Error *local_err = NULL;
 483    int ret;
 484
 485    drv = bdrv_find_protocol(filename, true, errp);
 486    if (drv == NULL) {
 487        return -ENOENT;
 488    }
 489
 490    ret = bdrv_create(drv, filename, opts, &local_err);
 491    error_propagate(errp, local_err);
 492    return ret;
 493}
 494
 495/**
 496 * Try to get @bs's logical and physical block size.
 497 * On success, store them in @bsz struct and return 0.
 498 * On failure return -errno.
 499 * @bs must not be empty.
 500 */
 501int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
 502{
 503    BlockDriver *drv = bs->drv;
 504
 505    if (drv && drv->bdrv_probe_blocksizes) {
 506        return drv->bdrv_probe_blocksizes(bs, bsz);
 507    } else if (drv && drv->is_filter && bs->file) {
 508        return bdrv_probe_blocksizes(bs->file->bs, bsz);
 509    }
 510
 511    return -ENOTSUP;
 512}
 513
 514/**
 515 * Try to get @bs's geometry (cyls, heads, sectors).
 516 * On success, store them in @geo struct and return 0.
 517 * On failure return -errno.
 518 * @bs must not be empty.
 519 */
 520int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
 521{
 522    BlockDriver *drv = bs->drv;
 523
 524    if (drv && drv->bdrv_probe_geometry) {
 525        return drv->bdrv_probe_geometry(bs, geo);
 526    } else if (drv && drv->is_filter && bs->file) {
 527        return bdrv_probe_geometry(bs->file->bs, geo);
 528    }
 529
 530    return -ENOTSUP;
 531}
 532
 533/*
 534 * Create a uniquely-named empty temporary file.
 535 * Return 0 upon success, otherwise a negative errno value.
 536 */
 537int get_tmp_filename(char *filename, int size)
 538{
 539#ifdef _WIN32
 540    char temp_dir[MAX_PATH];
 541    /* GetTempFileName requires that its output buffer (4th param)
 542       have length MAX_PATH or greater.  */
 543    assert(size >= MAX_PATH);
 544    return (GetTempPath(MAX_PATH, temp_dir)
 545            && GetTempFileName(temp_dir, "qem", 0, filename)
 546            ? 0 : -GetLastError());
 547#else
 548    int fd;
 549    const char *tmpdir;
 550    tmpdir = getenv("TMPDIR");
 551    if (!tmpdir) {
 552        tmpdir = "/var/tmp";
 553    }
 554    if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
 555        return -EOVERFLOW;
 556    }
 557    fd = mkstemp(filename);
 558    if (fd < 0) {
 559        return -errno;
 560    }
 561    if (close(fd) != 0) {
 562        unlink(filename);
 563        return -errno;
 564    }
 565    return 0;
 566#endif
 567}
 568
 569/*
 570 * Detect host devices. By convention, /dev/cdrom[N] is always
 571 * recognized as a host CDROM.
 572 */
 573static BlockDriver *find_hdev_driver(const char *filename)
 574{
 575    int score_max = 0, score;
 576    BlockDriver *drv = NULL, *d;
 577
 578    QLIST_FOREACH(d, &bdrv_drivers, list) {
 579        if (d->bdrv_probe_device) {
 580            score = d->bdrv_probe_device(filename);
 581            if (score > score_max) {
 582                score_max = score;
 583                drv = d;
 584            }
 585        }
 586    }
 587
 588    return drv;
 589}
 590
 591static BlockDriver *bdrv_do_find_protocol(const char *protocol)
 592{
 593    BlockDriver *drv1;
 594
 595    QLIST_FOREACH(drv1, &bdrv_drivers, list) {
 596        if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
 597            return drv1;
 598        }
 599    }
 600
 601    return NULL;
 602}
 603
 604BlockDriver *bdrv_find_protocol(const char *filename,
 605                                bool allow_protocol_prefix,
 606                                Error **errp)
 607{
 608    BlockDriver *drv1;
 609    char protocol[128];
 610    int len;
 611    const char *p;
 612    int i;
 613
 614    /* TODO Drivers without bdrv_file_open must be specified explicitly */
 615
 616    /*
 617     * XXX(hch): we really should not let host device detection
 618     * override an explicit protocol specification, but moving this
 619     * later breaks access to device names with colons in them.
 620     * Thanks to the brain-dead persistent naming schemes on udev-
 621     * based Linux systems those actually are quite common.
 622     */
 623    drv1 = find_hdev_driver(filename);
 624    if (drv1) {
 625        return drv1;
 626    }
 627
 628    if (!path_has_protocol(filename) || !allow_protocol_prefix) {
 629        return &bdrv_file;
 630    }
 631
 632    p = strchr(filename, ':');
 633    assert(p != NULL);
 634    len = p - filename;
 635    if (len > sizeof(protocol) - 1)
 636        len = sizeof(protocol) - 1;
 637    memcpy(protocol, filename, len);
 638    protocol[len] = '\0';
 639
 640    drv1 = bdrv_do_find_protocol(protocol);
 641    if (drv1) {
 642        return drv1;
 643    }
 644
 645    for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
 646        if (block_driver_modules[i].protocol_name &&
 647            !strcmp(block_driver_modules[i].protocol_name, protocol)) {
 648            block_module_load_one(block_driver_modules[i].library_name);
 649            break;
 650        }
 651    }
 652
 653    drv1 = bdrv_do_find_protocol(protocol);
 654    if (!drv1) {
 655        error_setg(errp, "Unknown protocol '%s'", protocol);
 656    }
 657    return drv1;
 658}
 659
 660/*
 661 * Guess image format by probing its contents.
 662 * This is not a good idea when your image is raw (CVE-2008-2004), but
 663 * we do it anyway for backward compatibility.
 664 *
 665 * @buf         contains the image's first @buf_size bytes.
 666 * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
 667 *              but can be smaller if the image file is smaller)
 668 * @filename    is its filename.
 669 *
 670 * For all block drivers, call the bdrv_probe() method to get its
 671 * probing score.
 672 * Return the first block driver with the highest probing score.
 673 */
 674BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
 675                            const char *filename)
 676{
 677    int score_max = 0, score;
 678    BlockDriver *drv = NULL, *d;
 679
 680    QLIST_FOREACH(d, &bdrv_drivers, list) {
 681        if (d->bdrv_probe) {
 682            score = d->bdrv_probe(buf, buf_size, filename);
 683            if (score > score_max) {
 684                score_max = score;
 685                drv = d;
 686            }
 687        }
 688    }
 689
 690    return drv;
 691}
 692
 693static int find_image_format(BlockBackend *file, const char *filename,
 694                             BlockDriver **pdrv, Error **errp)
 695{
 696    BlockDriver *drv;
 697    uint8_t buf[BLOCK_PROBE_BUF_SIZE];
 698    int ret = 0;
 699
 700    /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
 701    if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
 702        *pdrv = &bdrv_raw;
 703        return ret;
 704    }
 705
 706    ret = blk_pread(file, 0, buf, sizeof(buf));
 707    if (ret < 0) {
 708        error_setg_errno(errp, -ret, "Could not read image for determining its "
 709                         "format");
 710        *pdrv = NULL;
 711        return ret;
 712    }
 713
 714    drv = bdrv_probe_all(buf, ret, filename);
 715    if (!drv) {
 716        error_setg(errp, "Could not determine image format: No compatible "
 717                   "driver found");
 718        ret = -ENOENT;
 719    }
 720    *pdrv = drv;
 721    return ret;
 722}
 723
 724/**
 725 * Set the current 'total_sectors' value
 726 * Return 0 on success, -errno on error.
 727 */
 728int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
 729{
 730    BlockDriver *drv = bs->drv;
 731
 732    if (!drv) {
 733        return -ENOMEDIUM;
 734    }
 735
 736    /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
 737    if (bdrv_is_sg(bs))
 738        return 0;
 739
 740    /* query actual device if possible, otherwise just trust the hint */
 741    if (drv->bdrv_getlength) {
 742        int64_t length = drv->bdrv_getlength(bs);
 743        if (length < 0) {
 744            return length;
 745        }
 746        hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
 747    }
 748
 749    bs->total_sectors = hint;
 750    return 0;
 751}
 752
 753/**
 754 * Combines a QDict of new block driver @options with any missing options taken
 755 * from @old_options, so that leaving out an option defaults to its old value.
 756 */
 757static void bdrv_join_options(BlockDriverState *bs, QDict *options,
 758                              QDict *old_options)
 759{
 760    if (bs->drv && bs->drv->bdrv_join_options) {
 761        bs->drv->bdrv_join_options(options, old_options);
 762    } else {
 763        qdict_join(options, old_options, false);
 764    }
 765}
 766
 767/**
 768 * Set open flags for a given discard mode
 769 *
 770 * Return 0 on success, -1 if the discard mode was invalid.
 771 */
 772int bdrv_parse_discard_flags(const char *mode, int *flags)
 773{
 774    *flags &= ~BDRV_O_UNMAP;
 775
 776    if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
 777        /* do nothing */
 778    } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
 779        *flags |= BDRV_O_UNMAP;
 780    } else {
 781        return -1;
 782    }
 783
 784    return 0;
 785}
 786
 787/**
 788 * Set open flags for a given cache mode
 789 *
 790 * Return 0 on success, -1 if the cache mode was invalid.
 791 */
 792int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
 793{
 794    *flags &= ~BDRV_O_CACHE_MASK;
 795
 796    if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
 797        *writethrough = false;
 798        *flags |= BDRV_O_NOCACHE;
 799    } else if (!strcmp(mode, "directsync")) {
 800        *writethrough = true;
 801        *flags |= BDRV_O_NOCACHE;
 802    } else if (!strcmp(mode, "writeback")) {
 803        *writethrough = false;
 804    } else if (!strcmp(mode, "unsafe")) {
 805        *writethrough = false;
 806        *flags |= BDRV_O_NO_FLUSH;
 807    } else if (!strcmp(mode, "writethrough")) {
 808        *writethrough = true;
 809    } else {
 810        return -1;
 811    }
 812
 813    return 0;
 814}
 815
 816static char *bdrv_child_get_parent_desc(BdrvChild *c)
 817{
 818    BlockDriverState *parent = c->opaque;
 819    return g_strdup(bdrv_get_device_or_node_name(parent));
 820}
 821
 822static void bdrv_child_cb_drained_begin(BdrvChild *child)
 823{
 824    BlockDriverState *bs = child->opaque;
 825    bdrv_do_drained_begin_quiesce(bs, NULL, false);
 826}
 827
 828static bool bdrv_child_cb_drained_poll(BdrvChild *child)
 829{
 830    BlockDriverState *bs = child->opaque;
 831    return bdrv_drain_poll(bs, false, NULL, false);
 832}
 833
 834static void bdrv_child_cb_drained_end(BdrvChild *child)
 835{
 836    BlockDriverState *bs = child->opaque;
 837    bdrv_drained_end(bs);
 838}
 839
 840static void bdrv_child_cb_attach(BdrvChild *child)
 841{
 842    BlockDriverState *bs = child->opaque;
 843    bdrv_apply_subtree_drain(child, bs);
 844}
 845
 846static void bdrv_child_cb_detach(BdrvChild *child)
 847{
 848    BlockDriverState *bs = child->opaque;
 849    bdrv_unapply_subtree_drain(child, bs);
 850}
 851
 852static int bdrv_child_cb_inactivate(BdrvChild *child)
 853{
 854    BlockDriverState *bs = child->opaque;
 855    assert(bs->open_flags & BDRV_O_INACTIVE);
 856    return 0;
 857}
 858
 859/*
 860 * Returns the options and flags that a temporary snapshot should get, based on
 861 * the originally requested flags (the originally requested image will have
 862 * flags like a backing file)
 863 */
 864static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
 865                                       int parent_flags, QDict *parent_options)
 866{
 867    *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
 868
 869    /* For temporary files, unconditional cache=unsafe is fine */
 870    qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
 871    qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
 872
 873    /* Copy the read-only option from the parent */
 874    qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
 875
 876    /* aio=native doesn't work for cache.direct=off, so disable it for the
 877     * temporary snapshot */
 878    *child_flags &= ~BDRV_O_NATIVE_AIO;
 879}
 880
 881/*
 882 * Returns the options and flags that bs->file should get if a protocol driver
 883 * is expected, based on the given options and flags for the parent BDS
 884 */
 885static void bdrv_inherited_options(int *child_flags, QDict *child_options,
 886                                   int parent_flags, QDict *parent_options)
 887{
 888    int flags = parent_flags;
 889
 890    /* Enable protocol handling, disable format probing for bs->file */
 891    flags |= BDRV_O_PROTOCOL;
 892
 893    /* If the cache mode isn't explicitly set, inherit direct and no-flush from
 894     * the parent. */
 895    qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
 896    qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
 897    qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
 898
 899    /* Inherit the read-only option from the parent if it's not set */
 900    qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
 901
 902    /* Our block drivers take care to send flushes and respect unmap policy,
 903     * so we can default to enable both on lower layers regardless of the
 904     * corresponding parent options. */
 905    qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
 906
 907    /* Clear flags that only apply to the top layer */
 908    flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
 909               BDRV_O_NO_IO);
 910
 911    *child_flags = flags;
 912}
 913
 914const BdrvChildRole child_file = {
 915    .parent_is_bds   = true,
 916    .get_parent_desc = bdrv_child_get_parent_desc,
 917    .inherit_options = bdrv_inherited_options,
 918    .drained_begin   = bdrv_child_cb_drained_begin,
 919    .drained_poll    = bdrv_child_cb_drained_poll,
 920    .drained_end     = bdrv_child_cb_drained_end,
 921    .attach          = bdrv_child_cb_attach,
 922    .detach          = bdrv_child_cb_detach,
 923    .inactivate      = bdrv_child_cb_inactivate,
 924};
 925
 926/*
 927 * Returns the options and flags that bs->file should get if the use of formats
 928 * (and not only protocols) is permitted for it, based on the given options and
 929 * flags for the parent BDS
 930 */
 931static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
 932                                       int parent_flags, QDict *parent_options)
 933{
 934    child_file.inherit_options(child_flags, child_options,
 935                               parent_flags, parent_options);
 936
 937    *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
 938}
 939
 940const BdrvChildRole child_format = {
 941    .parent_is_bds   = true,
 942    .get_parent_desc = bdrv_child_get_parent_desc,
 943    .inherit_options = bdrv_inherited_fmt_options,
 944    .drained_begin   = bdrv_child_cb_drained_begin,
 945    .drained_poll    = bdrv_child_cb_drained_poll,
 946    .drained_end     = bdrv_child_cb_drained_end,
 947    .attach          = bdrv_child_cb_attach,
 948    .detach          = bdrv_child_cb_detach,
 949    .inactivate      = bdrv_child_cb_inactivate,
 950};
 951
 952static void bdrv_backing_attach(BdrvChild *c)
 953{
 954    BlockDriverState *parent = c->opaque;
 955    BlockDriverState *backing_hd = c->bs;
 956
 957    assert(!parent->backing_blocker);
 958    error_setg(&parent->backing_blocker,
 959               "node is used as backing hd of '%s'",
 960               bdrv_get_device_or_node_name(parent));
 961
 962    parent->open_flags &= ~BDRV_O_NO_BACKING;
 963    pstrcpy(parent->backing_file, sizeof(parent->backing_file),
 964            backing_hd->filename);
 965    pstrcpy(parent->backing_format, sizeof(parent->backing_format),
 966            backing_hd->drv ? backing_hd->drv->format_name : "");
 967
 968    bdrv_op_block_all(backing_hd, parent->backing_blocker);
 969    /* Otherwise we won't be able to commit or stream */
 970    bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
 971                    parent->backing_blocker);
 972    bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
 973                    parent->backing_blocker);
 974    /*
 975     * We do backup in 3 ways:
 976     * 1. drive backup
 977     *    The target bs is new opened, and the source is top BDS
 978     * 2. blockdev backup
 979     *    Both the source and the target are top BDSes.
 980     * 3. internal backup(used for block replication)
 981     *    Both the source and the target are backing file
 982     *
 983     * In case 1 and 2, neither the source nor the target is the backing file.
 984     * In case 3, we will block the top BDS, so there is only one block job
 985     * for the top BDS and its backing chain.
 986     */
 987    bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
 988                    parent->backing_blocker);
 989    bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
 990                    parent->backing_blocker);
 991
 992    bdrv_child_cb_attach(c);
 993}
 994
 995static void bdrv_backing_detach(BdrvChild *c)
 996{
 997    BlockDriverState *parent = c->opaque;
 998
 999    assert(parent->backing_blocker);
1000    bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1001    error_free(parent->backing_blocker);
1002    parent->backing_blocker = NULL;
1003
1004    bdrv_child_cb_detach(c);
1005}
1006
1007/*
1008 * Returns the options and flags that bs->backing should get, based on the
1009 * given options and flags for the parent BDS
1010 */
1011static void bdrv_backing_options(int *child_flags, QDict *child_options,
1012                                 int parent_flags, QDict *parent_options)
1013{
1014    int flags = parent_flags;
1015
1016    /* The cache mode is inherited unmodified for backing files; except WCE,
1017     * which is only applied on the top level (BlockBackend) */
1018    qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1019    qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1020    qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1021
1022    /* backing files always opened read-only */
1023    qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1024    flags &= ~BDRV_O_COPY_ON_READ;
1025
1026    /* snapshot=on is handled on the top layer */
1027    flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1028
1029    *child_flags = flags;
1030}
1031
1032static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1033                                        const char *filename, Error **errp)
1034{
1035    BlockDriverState *parent = c->opaque;
1036    int orig_flags = bdrv_get_flags(parent);
1037    int ret;
1038
1039    if (!(orig_flags & BDRV_O_RDWR)) {
1040        ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
1041        if (ret < 0) {
1042            return ret;
1043        }
1044    }
1045
1046    ret = bdrv_change_backing_file(parent, filename,
1047                                   base->drv ? base->drv->format_name : "");
1048    if (ret < 0) {
1049        error_setg_errno(errp, -ret, "Could not update backing file link");
1050    }
1051
1052    if (!(orig_flags & BDRV_O_RDWR)) {
1053        bdrv_reopen(parent, orig_flags, NULL);
1054    }
1055
1056    return ret;
1057}
1058
1059const BdrvChildRole child_backing = {
1060    .parent_is_bds   = true,
1061    .get_parent_desc = bdrv_child_get_parent_desc,
1062    .attach          = bdrv_backing_attach,
1063    .detach          = bdrv_backing_detach,
1064    .inherit_options = bdrv_backing_options,
1065    .drained_begin   = bdrv_child_cb_drained_begin,
1066    .drained_poll    = bdrv_child_cb_drained_poll,
1067    .drained_end     = bdrv_child_cb_drained_end,
1068    .inactivate      = bdrv_child_cb_inactivate,
1069    .update_filename = bdrv_backing_update_filename,
1070};
1071
1072static int bdrv_open_flags(BlockDriverState *bs, int flags)
1073{
1074    int open_flags = flags;
1075
1076    /*
1077     * Clear flags that are internal to the block layer before opening the
1078     * image.
1079     */
1080    open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1081
1082    /*
1083     * Snapshots should be writable.
1084     */
1085    if (flags & BDRV_O_TEMPORARY) {
1086        open_flags |= BDRV_O_RDWR;
1087    }
1088
1089    return open_flags;
1090}
1091
1092static void update_flags_from_options(int *flags, QemuOpts *opts)
1093{
1094    *flags &= ~BDRV_O_CACHE_MASK;
1095
1096    assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
1097    if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1098        *flags |= BDRV_O_NO_FLUSH;
1099    }
1100
1101    assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
1102    if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1103        *flags |= BDRV_O_NOCACHE;
1104    }
1105
1106    *flags &= ~BDRV_O_RDWR;
1107
1108    assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1109    if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1110        *flags |= BDRV_O_RDWR;
1111    }
1112
1113}
1114
1115static void update_options_from_flags(QDict *options, int flags)
1116{
1117    if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1118        qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1119    }
1120    if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1121        qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1122                       flags & BDRV_O_NO_FLUSH);
1123    }
1124    if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1125        qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1126    }
1127}
1128
1129static void bdrv_assign_node_name(BlockDriverState *bs,
1130                                  const char *node_name,
1131                                  Error **errp)
1132{
1133    char *gen_node_name = NULL;
1134
1135    if (!node_name) {
1136        node_name = gen_node_name = id_generate(ID_BLOCK);
1137    } else if (!id_wellformed(node_name)) {
1138        /*
1139         * Check for empty string or invalid characters, but not if it is
1140         * generated (generated names use characters not available to the user)
1141         */
1142        error_setg(errp, "Invalid node name");
1143        return;
1144    }
1145
1146    /* takes care of avoiding namespaces collisions */
1147    if (blk_by_name(node_name)) {
1148        error_setg(errp, "node-name=%s is conflicting with a device id",
1149                   node_name);
1150        goto out;
1151    }
1152
1153    /* takes care of avoiding duplicates node names */
1154    if (bdrv_find_node(node_name)) {
1155        error_setg(errp, "Duplicate node name");
1156        goto out;
1157    }
1158
1159    /* Make sure that the node name isn't truncated */
1160    if (strlen(node_name) >= sizeof(bs->node_name)) {
1161        error_setg(errp, "Node name too long");
1162        goto out;
1163    }
1164
1165    /* copy node name into the bs and insert it into the graph list */
1166    pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1167    QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1168out:
1169    g_free(gen_node_name);
1170}
1171
1172static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1173                            const char *node_name, QDict *options,
1174                            int open_flags, Error **errp)
1175{
1176    Error *local_err = NULL;
1177    int i, ret;
1178
1179    bdrv_assign_node_name(bs, node_name, &local_err);
1180    if (local_err) {
1181        error_propagate(errp, local_err);
1182        return -EINVAL;
1183    }
1184
1185    bs->drv = drv;
1186    bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1187    bs->opaque = g_malloc0(drv->instance_size);
1188
1189    if (drv->bdrv_file_open) {
1190        assert(!drv->bdrv_needs_filename || bs->filename[0]);
1191        ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1192    } else if (drv->bdrv_open) {
1193        ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1194    } else {
1195        ret = 0;
1196    }
1197
1198    if (ret < 0) {
1199        if (local_err) {
1200            error_propagate(errp, local_err);
1201        } else if (bs->filename[0]) {
1202            error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1203        } else {
1204            error_setg_errno(errp, -ret, "Could not open image");
1205        }
1206        goto open_failed;
1207    }
1208
1209    ret = refresh_total_sectors(bs, bs->total_sectors);
1210    if (ret < 0) {
1211        error_setg_errno(errp, -ret, "Could not refresh total sector count");
1212        return ret;
1213    }
1214
1215    bdrv_refresh_limits(bs, &local_err);
1216    if (local_err) {
1217        error_propagate(errp, local_err);
1218        return -EINVAL;
1219    }
1220
1221    assert(bdrv_opt_mem_align(bs) != 0);
1222    assert(bdrv_min_mem_align(bs) != 0);
1223    assert(is_power_of_2(bs->bl.request_alignment));
1224
1225    for (i = 0; i < bs->quiesce_counter; i++) {
1226        if (drv->bdrv_co_drain_begin) {
1227            drv->bdrv_co_drain_begin(bs);
1228        }
1229    }
1230
1231    return 0;
1232open_failed:
1233    bs->drv = NULL;
1234    if (bs->file != NULL) {
1235        bdrv_unref_child(bs, bs->file);
1236        bs->file = NULL;
1237    }
1238    g_free(bs->opaque);
1239    bs->opaque = NULL;
1240    return ret;
1241}
1242
1243BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1244                                       int flags, Error **errp)
1245{
1246    BlockDriverState *bs;
1247    int ret;
1248
1249    bs = bdrv_new();
1250    bs->open_flags = flags;
1251    bs->explicit_options = qdict_new();
1252    bs->options = qdict_new();
1253    bs->opaque = NULL;
1254
1255    update_options_from_flags(bs->options, flags);
1256
1257    ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1258    if (ret < 0) {
1259        qobject_unref(bs->explicit_options);
1260        bs->explicit_options = NULL;
1261        qobject_unref(bs->options);
1262        bs->options = NULL;
1263        bdrv_unref(bs);
1264        return NULL;
1265    }
1266
1267    return bs;
1268}
1269
1270QemuOptsList bdrv_runtime_opts = {
1271    .name = "bdrv_common",
1272    .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1273    .desc = {
1274        {
1275            .name = "node-name",
1276            .type = QEMU_OPT_STRING,
1277            .help = "Node name of the block device node",
1278        },
1279        {
1280            .name = "driver",
1281            .type = QEMU_OPT_STRING,
1282            .help = "Block driver to use for the node",
1283        },
1284        {
1285            .name = BDRV_OPT_CACHE_DIRECT,
1286            .type = QEMU_OPT_BOOL,
1287            .help = "Bypass software writeback cache on the host",
1288        },
1289        {
1290            .name = BDRV_OPT_CACHE_NO_FLUSH,
1291            .type = QEMU_OPT_BOOL,
1292            .help = "Ignore flush requests",
1293        },
1294        {
1295            .name = BDRV_OPT_READ_ONLY,
1296            .type = QEMU_OPT_BOOL,
1297            .help = "Node is opened in read-only mode",
1298        },
1299        {
1300            .name = "detect-zeroes",
1301            .type = QEMU_OPT_STRING,
1302            .help = "try to optimize zero writes (off, on, unmap)",
1303        },
1304        {
1305            .name = "discard",
1306            .type = QEMU_OPT_STRING,
1307            .help = "discard operation (ignore/off, unmap/on)",
1308        },
1309        {
1310            .name = BDRV_OPT_FORCE_SHARE,
1311            .type = QEMU_OPT_BOOL,
1312            .help = "always accept other writers (default: off)",
1313        },
1314        { /* end of list */ }
1315    },
1316};
1317
1318/*
1319 * Common part for opening disk images and files
1320 *
1321 * Removes all processed options from *options.
1322 */
1323static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1324                            QDict *options, Error **errp)
1325{
1326    int ret, open_flags;
1327    const char *filename;
1328    const char *driver_name = NULL;
1329    const char *node_name = NULL;
1330    const char *discard;
1331    const char *detect_zeroes;
1332    QemuOpts *opts;
1333    BlockDriver *drv;
1334    Error *local_err = NULL;
1335
1336    assert(bs->file == NULL);
1337    assert(options != NULL && bs->options != options);
1338
1339    opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1340    qemu_opts_absorb_qdict(opts, options, &local_err);
1341    if (local_err) {
1342        error_propagate(errp, local_err);
1343        ret = -EINVAL;
1344        goto fail_opts;
1345    }
1346
1347    update_flags_from_options(&bs->open_flags, opts);
1348
1349    driver_name = qemu_opt_get(opts, "driver");
1350    drv = bdrv_find_format(driver_name);
1351    assert(drv != NULL);
1352
1353    bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1354
1355    if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1356        error_setg(errp,
1357                   BDRV_OPT_FORCE_SHARE
1358                   "=on can only be used with read-only images");
1359        ret = -EINVAL;
1360        goto fail_opts;
1361    }
1362
1363    if (file != NULL) {
1364        filename = blk_bs(file)->filename;
1365    } else {
1366        /*
1367         * Caution: while qdict_get_try_str() is fine, getting
1368         * non-string types would require more care.  When @options
1369         * come from -blockdev or blockdev_add, its members are typed
1370         * according to the QAPI schema, but when they come from
1371         * -drive, they're all QString.
1372         */
1373        filename = qdict_get_try_str(options, "filename");
1374    }
1375
1376    if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1377        error_setg(errp, "The '%s' block driver requires a file name",
1378                   drv->format_name);
1379        ret = -EINVAL;
1380        goto fail_opts;
1381    }
1382
1383    trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1384                           drv->format_name);
1385
1386    bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1387
1388    if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1389        error_setg(errp,
1390                   !bs->read_only && bdrv_is_whitelisted(drv, true)
1391                        ? "Driver '%s' can only be used for read-only devices"
1392                        : "Driver '%s' is not whitelisted",
1393                   drv->format_name);
1394        ret = -ENOTSUP;
1395        goto fail_opts;
1396    }
1397
1398    /* bdrv_new() and bdrv_close() make it so */
1399    assert(atomic_read(&bs->copy_on_read) == 0);
1400
1401    if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1402        if (!bs->read_only) {
1403            bdrv_enable_copy_on_read(bs);
1404        } else {
1405            error_setg(errp, "Can't use copy-on-read on read-only device");
1406            ret = -EINVAL;
1407            goto fail_opts;
1408        }
1409    }
1410
1411    discard = qemu_opt_get(opts, "discard");
1412    if (discard != NULL) {
1413        if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1414            error_setg(errp, "Invalid discard option");
1415            ret = -EINVAL;
1416            goto fail_opts;
1417        }
1418    }
1419
1420    detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1421    if (detect_zeroes) {
1422        BlockdevDetectZeroesOptions value =
1423            qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1424                            detect_zeroes,
1425                            BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1426                            &local_err);
1427        if (local_err) {
1428            error_propagate(errp, local_err);
1429            ret = -EINVAL;
1430            goto fail_opts;
1431        }
1432
1433        if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1434            !(bs->open_flags & BDRV_O_UNMAP))
1435        {
1436            error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1437                             "without setting discard operation to unmap");
1438            ret = -EINVAL;
1439            goto fail_opts;
1440        }
1441
1442        bs->detect_zeroes = value;
1443    }
1444
1445    if (filename != NULL) {
1446        pstrcpy(bs->filename, sizeof(bs->filename), filename);
1447    } else {
1448        bs->filename[0] = '\0';
1449    }
1450    pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1451
1452    /* Open the image, either directly or using a protocol */
1453    open_flags = bdrv_open_flags(bs, bs->open_flags);
1454    node_name = qemu_opt_get(opts, "node-name");
1455
1456    assert(!drv->bdrv_file_open || file == NULL);
1457    ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1458    if (ret < 0) {
1459        goto fail_opts;
1460    }
1461
1462    qemu_opts_del(opts);
1463    return 0;
1464
1465fail_opts:
1466    qemu_opts_del(opts);
1467    return ret;
1468}
1469
1470static QDict *parse_json_filename(const char *filename, Error **errp)
1471{
1472    QObject *options_obj;
1473    QDict *options;
1474    int ret;
1475
1476    ret = strstart(filename, "json:", &filename);
1477    assert(ret);
1478
1479    options_obj = qobject_from_json(filename, errp);
1480    if (!options_obj) {
1481        /* Work around qobject_from_json() lossage TODO fix that */
1482        if (errp && !*errp) {
1483            error_setg(errp, "Could not parse the JSON options");
1484            return NULL;
1485        }
1486        error_prepend(errp, "Could not parse the JSON options: ");
1487        return NULL;
1488    }
1489
1490    options = qobject_to(QDict, options_obj);
1491    if (!options) {
1492        qobject_unref(options_obj);
1493        error_setg(errp, "Invalid JSON object given");
1494        return NULL;
1495    }
1496
1497    qdict_flatten(options);
1498
1499    return options;
1500}
1501
1502static void parse_json_protocol(QDict *options, const char **pfilename,
1503                                Error **errp)
1504{
1505    QDict *json_options;
1506    Error *local_err = NULL;
1507
1508    /* Parse json: pseudo-protocol */
1509    if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1510        return;
1511    }
1512
1513    json_options = parse_json_filename(*pfilename, &local_err);
1514    if (local_err) {
1515        error_propagate(errp, local_err);
1516        return;
1517    }
1518
1519    /* Options given in the filename have lower priority than options
1520     * specified directly */
1521    qdict_join(options, json_options, false);
1522    qobject_unref(json_options);
1523    *pfilename = NULL;
1524}
1525
1526/*
1527 * Fills in default options for opening images and converts the legacy
1528 * filename/flags pair to option QDict entries.
1529 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1530 * block driver has been specified explicitly.
1531 */
1532static int bdrv_fill_options(QDict **options, const char *filename,
1533                             int *flags, Error **errp)
1534{
1535    const char *drvname;
1536    bool protocol = *flags & BDRV_O_PROTOCOL;
1537    bool parse_filename = false;
1538    BlockDriver *drv = NULL;
1539    Error *local_err = NULL;
1540
1541    /*
1542     * Caution: while qdict_get_try_str() is fine, getting non-string
1543     * types would require more care.  When @options come from
1544     * -blockdev or blockdev_add, its members are typed according to
1545     * the QAPI schema, but when they come from -drive, they're all
1546     * QString.
1547     */
1548    drvname = qdict_get_try_str(*options, "driver");
1549    if (drvname) {
1550        drv = bdrv_find_format(drvname);
1551        if (!drv) {
1552            error_setg(errp, "Unknown driver '%s'", drvname);
1553            return -ENOENT;
1554        }
1555        /* If the user has explicitly specified the driver, this choice should
1556         * override the BDRV_O_PROTOCOL flag */
1557        protocol = drv->bdrv_file_open;
1558    }
1559
1560    if (protocol) {
1561        *flags |= BDRV_O_PROTOCOL;
1562    } else {
1563        *flags &= ~BDRV_O_PROTOCOL;
1564    }
1565
1566    /* Translate cache options from flags into options */
1567    update_options_from_flags(*options, *flags);
1568
1569    /* Fetch the file name from the options QDict if necessary */
1570    if (protocol && filename) {
1571        if (!qdict_haskey(*options, "filename")) {
1572            qdict_put_str(*options, "filename", filename);
1573            parse_filename = true;
1574        } else {
1575            error_setg(errp, "Can't specify 'file' and 'filename' options at "
1576                             "the same time");
1577            return -EINVAL;
1578        }
1579    }
1580
1581    /* Find the right block driver */
1582    /* See cautionary note on accessing @options above */
1583    filename = qdict_get_try_str(*options, "filename");
1584
1585    if (!drvname && protocol) {
1586        if (filename) {
1587            drv = bdrv_find_protocol(filename, parse_filename, errp);
1588            if (!drv) {
1589                return -EINVAL;
1590            }
1591
1592            drvname = drv->format_name;
1593            qdict_put_str(*options, "driver", drvname);
1594        } else {
1595            error_setg(errp, "Must specify either driver or file");
1596            return -EINVAL;
1597        }
1598    }
1599
1600    assert(drv || !protocol);
1601
1602    /* Driver-specific filename parsing */
1603    if (drv && drv->bdrv_parse_filename && parse_filename) {
1604        drv->bdrv_parse_filename(filename, *options, &local_err);
1605        if (local_err) {
1606            error_propagate(errp, local_err);
1607            return -EINVAL;
1608        }
1609
1610        if (!drv->bdrv_needs_filename) {
1611            qdict_del(*options, "filename");
1612        }
1613    }
1614
1615    return 0;
1616}
1617
1618static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1619                                 uint64_t perm, uint64_t shared,
1620                                 GSList *ignore_children, Error **errp);
1621static void bdrv_child_abort_perm_update(BdrvChild *c);
1622static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1623
1624typedef struct BlockReopenQueueEntry {
1625     bool prepared;
1626     BDRVReopenState state;
1627     QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1628} BlockReopenQueueEntry;
1629
1630/*
1631 * Return the flags that @bs will have after the reopens in @q have
1632 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1633 * return the current flags.
1634 */
1635static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1636{
1637    BlockReopenQueueEntry *entry;
1638
1639    if (q != NULL) {
1640        QSIMPLEQ_FOREACH(entry, q, entry) {
1641            if (entry->state.bs == bs) {
1642                return entry->state.flags;
1643            }
1644        }
1645    }
1646
1647    return bs->open_flags;
1648}
1649
1650/* Returns whether the image file can be written to after the reopen queue @q
1651 * has been successfully applied, or right now if @q is NULL. */
1652static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1653                                          BlockReopenQueue *q)
1654{
1655    int flags = bdrv_reopen_get_flags(q, bs);
1656
1657    return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1658}
1659
1660/*
1661 * Return whether the BDS can be written to.  This is not necessarily
1662 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1663 * be written to but do not count as read-only images.
1664 */
1665bool bdrv_is_writable(BlockDriverState *bs)
1666{
1667    return bdrv_is_writable_after_reopen(bs, NULL);
1668}
1669
1670static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1671                            BdrvChild *c, const BdrvChildRole *role,
1672                            BlockReopenQueue *reopen_queue,
1673                            uint64_t parent_perm, uint64_t parent_shared,
1674                            uint64_t *nperm, uint64_t *nshared)
1675{
1676    if (bs->drv && bs->drv->bdrv_child_perm) {
1677        bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1678                                 parent_perm, parent_shared,
1679                                 nperm, nshared);
1680    }
1681    /* TODO Take force_share from reopen_queue */
1682    if (child_bs && child_bs->force_share) {
1683        *nshared = BLK_PERM_ALL;
1684    }
1685}
1686
1687/*
1688 * Check whether permissions on this node can be changed in a way that
1689 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1690 * permissions of all its parents. This involves checking whether all necessary
1691 * permission changes to child nodes can be performed.
1692 *
1693 * A call to this function must always be followed by a call to bdrv_set_perm()
1694 * or bdrv_abort_perm_update().
1695 */
1696static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1697                           uint64_t cumulative_perms,
1698                           uint64_t cumulative_shared_perms,
1699                           GSList *ignore_children, Error **errp)
1700{
1701    BlockDriver *drv = bs->drv;
1702    BdrvChild *c;
1703    int ret;
1704
1705    /* Write permissions never work with read-only images */
1706    if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1707        !bdrv_is_writable_after_reopen(bs, q))
1708    {
1709        error_setg(errp, "Block node is read-only");
1710        return -EPERM;
1711    }
1712
1713    /* Check this node */
1714    if (!drv) {
1715        return 0;
1716    }
1717
1718    if (drv->bdrv_check_perm) {
1719        return drv->bdrv_check_perm(bs, cumulative_perms,
1720                                    cumulative_shared_perms, errp);
1721    }
1722
1723    /* Drivers that never have children can omit .bdrv_child_perm() */
1724    if (!drv->bdrv_child_perm) {
1725        assert(QLIST_EMPTY(&bs->children));
1726        return 0;
1727    }
1728
1729    /* Check all children */
1730    QLIST_FOREACH(c, &bs->children, next) {
1731        uint64_t cur_perm, cur_shared;
1732        bdrv_child_perm(bs, c->bs, c, c->role, q,
1733                        cumulative_perms, cumulative_shared_perms,
1734                        &cur_perm, &cur_shared);
1735        ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1736                                    ignore_children, errp);
1737        if (ret < 0) {
1738            return ret;
1739        }
1740    }
1741
1742    return 0;
1743}
1744
1745/*
1746 * Notifies drivers that after a previous bdrv_check_perm() call, the
1747 * permission update is not performed and any preparations made for it (e.g.
1748 * taken file locks) need to be undone.
1749 *
1750 * This function recursively notifies all child nodes.
1751 */
1752static void bdrv_abort_perm_update(BlockDriverState *bs)
1753{
1754    BlockDriver *drv = bs->drv;
1755    BdrvChild *c;
1756
1757    if (!drv) {
1758        return;
1759    }
1760
1761    if (drv->bdrv_abort_perm_update) {
1762        drv->bdrv_abort_perm_update(bs);
1763    }
1764
1765    QLIST_FOREACH(c, &bs->children, next) {
1766        bdrv_child_abort_perm_update(c);
1767    }
1768}
1769
1770static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1771                          uint64_t cumulative_shared_perms)
1772{
1773    BlockDriver *drv = bs->drv;
1774    BdrvChild *c;
1775
1776    if (!drv) {
1777        return;
1778    }
1779
1780    /* Update this node */
1781    if (drv->bdrv_set_perm) {
1782        drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1783    }
1784
1785    /* Drivers that never have children can omit .bdrv_child_perm() */
1786    if (!drv->bdrv_child_perm) {
1787        assert(QLIST_EMPTY(&bs->children));
1788        return;
1789    }
1790
1791    /* Update all children */
1792    QLIST_FOREACH(c, &bs->children, next) {
1793        uint64_t cur_perm, cur_shared;
1794        bdrv_child_perm(bs, c->bs, c, c->role, NULL,
1795                        cumulative_perms, cumulative_shared_perms,
1796                        &cur_perm, &cur_shared);
1797        bdrv_child_set_perm(c, cur_perm, cur_shared);
1798    }
1799}
1800
1801static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1802                                     uint64_t *shared_perm)
1803{
1804    BdrvChild *c;
1805    uint64_t cumulative_perms = 0;
1806    uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1807
1808    QLIST_FOREACH(c, &bs->parents, next_parent) {
1809        cumulative_perms |= c->perm;
1810        cumulative_shared_perms &= c->shared_perm;
1811    }
1812
1813    *perm = cumulative_perms;
1814    *shared_perm = cumulative_shared_perms;
1815}
1816
1817static char *bdrv_child_user_desc(BdrvChild *c)
1818{
1819    if (c->role->get_parent_desc) {
1820        return c->role->get_parent_desc(c);
1821    }
1822
1823    return g_strdup("another user");
1824}
1825
1826char *bdrv_perm_names(uint64_t perm)
1827{
1828    struct perm_name {
1829        uint64_t perm;
1830        const char *name;
1831    } permissions[] = {
1832        { BLK_PERM_CONSISTENT_READ, "consistent read" },
1833        { BLK_PERM_WRITE,           "write" },
1834        { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1835        { BLK_PERM_RESIZE,          "resize" },
1836        { BLK_PERM_GRAPH_MOD,       "change children" },
1837        { 0, NULL }
1838    };
1839
1840    char *result = g_strdup("");
1841    struct perm_name *p;
1842
1843    for (p = permissions; p->name; p++) {
1844        if (perm & p->perm) {
1845            char *old = result;
1846            result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1847            g_free(old);
1848        }
1849    }
1850
1851    return result;
1852}
1853
1854/*
1855 * Checks whether a new reference to @bs can be added if the new user requires
1856 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1857 * set, the BdrvChild objects in this list are ignored in the calculations;
1858 * this allows checking permission updates for an existing reference.
1859 *
1860 * Needs to be followed by a call to either bdrv_set_perm() or
1861 * bdrv_abort_perm_update(). */
1862static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1863                                  uint64_t new_used_perm,
1864                                  uint64_t new_shared_perm,
1865                                  GSList *ignore_children, Error **errp)
1866{
1867    BdrvChild *c;
1868    uint64_t cumulative_perms = new_used_perm;
1869    uint64_t cumulative_shared_perms = new_shared_perm;
1870
1871    /* There is no reason why anyone couldn't tolerate write_unchanged */
1872    assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1873
1874    QLIST_FOREACH(c, &bs->parents, next_parent) {
1875        if (g_slist_find(ignore_children, c)) {
1876            continue;
1877        }
1878
1879        if ((new_used_perm & c->shared_perm) != new_used_perm) {
1880            char *user = bdrv_child_user_desc(c);
1881            char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1882            error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1883                             "allow '%s' on %s",
1884                       user, c->name, perm_names, bdrv_get_node_name(c->bs));
1885            g_free(user);
1886            g_free(perm_names);
1887            return -EPERM;
1888        }
1889
1890        if ((c->perm & new_shared_perm) != c->perm) {
1891            char *user = bdrv_child_user_desc(c);
1892            char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1893            error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1894                             "'%s' on %s",
1895                       user, c->name, perm_names, bdrv_get_node_name(c->bs));
1896            g_free(user);
1897            g_free(perm_names);
1898            return -EPERM;
1899        }
1900
1901        cumulative_perms |= c->perm;
1902        cumulative_shared_perms &= c->shared_perm;
1903    }
1904
1905    return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
1906                           ignore_children, errp);
1907}
1908
1909/* Needs to be followed by a call to either bdrv_child_set_perm() or
1910 * bdrv_child_abort_perm_update(). */
1911static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1912                                 uint64_t perm, uint64_t shared,
1913                                 GSList *ignore_children, Error **errp)
1914{
1915    int ret;
1916
1917    ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
1918    ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
1919    g_slist_free(ignore_children);
1920
1921    return ret;
1922}
1923
1924static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
1925{
1926    uint64_t cumulative_perms, cumulative_shared_perms;
1927
1928    c->perm = perm;
1929    c->shared_perm = shared;
1930
1931    bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
1932                             &cumulative_shared_perms);
1933    bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
1934}
1935
1936static void bdrv_child_abort_perm_update(BdrvChild *c)
1937{
1938    bdrv_abort_perm_update(c->bs);
1939}
1940
1941int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1942                            Error **errp)
1943{
1944    int ret;
1945
1946    ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
1947    if (ret < 0) {
1948        bdrv_child_abort_perm_update(c);
1949        return ret;
1950    }
1951
1952    bdrv_child_set_perm(c, perm, shared);
1953
1954    return 0;
1955}
1956
1957void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
1958                               const BdrvChildRole *role,
1959                               BlockReopenQueue *reopen_queue,
1960                               uint64_t perm, uint64_t shared,
1961                               uint64_t *nperm, uint64_t *nshared)
1962{
1963    if (c == NULL) {
1964        *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1965        *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
1966        return;
1967    }
1968
1969    *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
1970             (c->perm & DEFAULT_PERM_UNCHANGED);
1971    *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
1972               (c->shared_perm & DEFAULT_PERM_UNCHANGED);
1973}
1974
1975void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
1976                               const BdrvChildRole *role,
1977                               BlockReopenQueue *reopen_queue,
1978                               uint64_t perm, uint64_t shared,
1979                               uint64_t *nperm, uint64_t *nshared)
1980{
1981    bool backing = (role == &child_backing);
1982    assert(role == &child_backing || role == &child_file);
1983
1984    if (!backing) {
1985        int flags = bdrv_reopen_get_flags(reopen_queue, bs);
1986
1987        /* Apart from the modifications below, the same permissions are
1988         * forwarded and left alone as for filters */
1989        bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1990                                  &perm, &shared);
1991
1992        /* Format drivers may touch metadata even if the guest doesn't write */
1993        if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
1994            perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
1995        }
1996
1997        /* bs->file always needs to be consistent because of the metadata. We
1998         * can never allow other users to resize or write to it. */
1999        if (!(flags & BDRV_O_NO_IO)) {
2000            perm |= BLK_PERM_CONSISTENT_READ;
2001        }
2002        shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2003    } else {
2004        /* We want consistent read from backing files if the parent needs it.
2005         * No other operations are performed on backing files. */
2006        perm &= BLK_PERM_CONSISTENT_READ;
2007
2008        /* If the parent can deal with changing data, we're okay with a
2009         * writable and resizable backing file. */
2010        /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2011        if (shared & BLK_PERM_WRITE) {
2012            shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2013        } else {
2014            shared = 0;
2015        }
2016
2017        shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2018                  BLK_PERM_WRITE_UNCHANGED;
2019    }
2020
2021    if (bs->open_flags & BDRV_O_INACTIVE) {
2022        shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2023    }
2024
2025    *nperm = perm;
2026    *nshared = shared;
2027}
2028
2029static void bdrv_replace_child_noperm(BdrvChild *child,
2030                                      BlockDriverState *new_bs)
2031{
2032    BlockDriverState *old_bs = child->bs;
2033    int i;
2034
2035    if (old_bs && new_bs) {
2036        assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2037    }
2038    if (old_bs) {
2039        /* Detach first so that the recursive drain sections coming from @child
2040         * are already gone and we only end the drain sections that came from
2041         * elsewhere. */
2042        if (child->role->detach) {
2043            child->role->detach(child);
2044        }
2045        if (old_bs->quiesce_counter && child->role->drained_end) {
2046            int num = old_bs->quiesce_counter;
2047            if (child->role->parent_is_bds) {
2048                num -= bdrv_drain_all_count;
2049            }
2050            assert(num >= 0);
2051            for (i = 0; i < num; i++) {
2052                child->role->drained_end(child);
2053            }
2054        }
2055        QLIST_REMOVE(child, next_parent);
2056    }
2057
2058    child->bs = new_bs;
2059
2060    if (new_bs) {
2061        QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2062        if (new_bs->quiesce_counter && child->role->drained_begin) {
2063            int num = new_bs->quiesce_counter;
2064            if (child->role->parent_is_bds) {
2065                num -= bdrv_drain_all_count;
2066            }
2067            assert(num >= 0);
2068            for (i = 0; i < num; i++) {
2069                bdrv_parent_drained_begin_single(child, true);
2070            }
2071        }
2072
2073        /* Attach only after starting new drained sections, so that recursive
2074         * drain sections coming from @child don't get an extra .drained_begin
2075         * callback. */
2076        if (child->role->attach) {
2077            child->role->attach(child);
2078        }
2079    }
2080}
2081
2082/*
2083 * Updates @child to change its reference to point to @new_bs, including
2084 * checking and applying the necessary permisson updates both to the old node
2085 * and to @new_bs.
2086 *
2087 * NULL is passed as @new_bs for removing the reference before freeing @child.
2088 *
2089 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2090 * function uses bdrv_set_perm() to update the permissions according to the new
2091 * reference that @new_bs gets.
2092 */
2093static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2094{
2095    BlockDriverState *old_bs = child->bs;
2096    uint64_t perm, shared_perm;
2097
2098    bdrv_replace_child_noperm(child, new_bs);
2099
2100    if (old_bs) {
2101        /* Update permissions for old node. This is guaranteed to succeed
2102         * because we're just taking a parent away, so we're loosening
2103         * restrictions. */
2104        bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
2105        bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
2106        bdrv_set_perm(old_bs, perm, shared_perm);
2107    }
2108
2109    if (new_bs) {
2110        bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2111        bdrv_set_perm(new_bs, perm, shared_perm);
2112    }
2113}
2114
2115BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2116                                  const char *child_name,
2117                                  const BdrvChildRole *child_role,
2118                                  uint64_t perm, uint64_t shared_perm,
2119                                  void *opaque, Error **errp)
2120{
2121    BdrvChild *child;
2122    int ret;
2123
2124    ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2125    if (ret < 0) {
2126        bdrv_abort_perm_update(child_bs);
2127        return NULL;
2128    }
2129
2130    child = g_new(BdrvChild, 1);
2131    *child = (BdrvChild) {
2132        .bs             = NULL,
2133        .name           = g_strdup(child_name),
2134        .role           = child_role,
2135        .perm           = perm,
2136        .shared_perm    = shared_perm,
2137        .opaque         = opaque,
2138    };
2139
2140    /* This performs the matching bdrv_set_perm() for the above check. */
2141    bdrv_replace_child(child, child_bs);
2142
2143    return child;
2144}
2145
2146BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2147                             BlockDriverState *child_bs,
2148                             const char *child_name,
2149                             const BdrvChildRole *child_role,
2150                             Error **errp)
2151{
2152    BdrvChild *child;
2153    uint64_t perm, shared_perm;
2154
2155    bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2156
2157    assert(parent_bs->drv);
2158    assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2159    bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2160                    perm, shared_perm, &perm, &shared_perm);
2161
2162    child = bdrv_root_attach_child(child_bs, child_name, child_role,
2163                                   perm, shared_perm, parent_bs, errp);
2164    if (child == NULL) {
2165        return NULL;
2166    }
2167
2168    QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2169    return child;
2170}
2171
2172static void bdrv_detach_child(BdrvChild *child)
2173{
2174    if (child->next.le_prev) {
2175        QLIST_REMOVE(child, next);
2176        child->next.le_prev = NULL;
2177    }
2178
2179    bdrv_replace_child(child, NULL);
2180
2181    g_free(child->name);
2182    g_free(child);
2183}
2184
2185void bdrv_root_unref_child(BdrvChild *child)
2186{
2187    BlockDriverState *child_bs;
2188
2189    child_bs = child->bs;
2190    bdrv_detach_child(child);
2191    bdrv_unref(child_bs);
2192}
2193
2194void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2195{
2196    if (child == NULL) {
2197        return;
2198    }
2199
2200    if (child->bs->inherits_from == parent) {
2201        BdrvChild *c;
2202
2203        /* Remove inherits_from only when the last reference between parent and
2204         * child->bs goes away. */
2205        QLIST_FOREACH(c, &parent->children, next) {
2206            if (c != child && c->bs == child->bs) {
2207                break;
2208            }
2209        }
2210        if (c == NULL) {
2211            child->bs->inherits_from = NULL;
2212        }
2213    }
2214
2215    bdrv_root_unref_child(child);
2216}
2217
2218
2219static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2220{
2221    BdrvChild *c;
2222    QLIST_FOREACH(c, &bs->parents, next_parent) {
2223        if (c->role->change_media) {
2224            c->role->change_media(c, load);
2225        }
2226    }
2227}
2228
2229/*
2230 * Sets the backing file link of a BDS. A new reference is created; callers
2231 * which don't need their own reference any more must call bdrv_unref().
2232 */
2233void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2234                         Error **errp)
2235{
2236    if (backing_hd) {
2237        bdrv_ref(backing_hd);
2238    }
2239
2240    if (bs->backing) {
2241        bdrv_unref_child(bs, bs->backing);
2242    }
2243
2244    if (!backing_hd) {
2245        bs->backing = NULL;
2246        goto out;
2247    }
2248
2249    bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
2250                                    errp);
2251    if (!bs->backing) {
2252        bdrv_unref(backing_hd);
2253    }
2254
2255    bdrv_refresh_filename(bs);
2256
2257out:
2258    bdrv_refresh_limits(bs, NULL);
2259}
2260
2261/*
2262 * Opens the backing file for a BlockDriverState if not yet open
2263 *
2264 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2265 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2266 * itself, all options starting with "${bdref_key}." are considered part of the
2267 * BlockdevRef.
2268 *
2269 * TODO Can this be unified with bdrv_open_image()?
2270 */
2271int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2272                           const char *bdref_key, Error **errp)
2273{
2274    char *backing_filename = g_malloc0(PATH_MAX);
2275    char *bdref_key_dot;
2276    const char *reference = NULL;
2277    int ret = 0;
2278    BlockDriverState *backing_hd;
2279    QDict *options;
2280    QDict *tmp_parent_options = NULL;
2281    Error *local_err = NULL;
2282
2283    if (bs->backing != NULL) {
2284        goto free_exit;
2285    }
2286
2287    /* NULL means an empty set of options */
2288    if (parent_options == NULL) {
2289        tmp_parent_options = qdict_new();
2290        parent_options = tmp_parent_options;
2291    }
2292
2293    bs->open_flags &= ~BDRV_O_NO_BACKING;
2294
2295    bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2296    qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2297    g_free(bdref_key_dot);
2298
2299    /*
2300     * Caution: while qdict_get_try_str() is fine, getting non-string
2301     * types would require more care.  When @parent_options come from
2302     * -blockdev or blockdev_add, its members are typed according to
2303     * the QAPI schema, but when they come from -drive, they're all
2304     * QString.
2305     */
2306    reference = qdict_get_try_str(parent_options, bdref_key);
2307    if (reference || qdict_haskey(options, "file.filename")) {
2308        backing_filename[0] = '\0';
2309    } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2310        qobject_unref(options);
2311        goto free_exit;
2312    } else {
2313        bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2314                                       &local_err);
2315        if (local_err) {
2316            ret = -EINVAL;
2317            error_propagate(errp, local_err);
2318            qobject_unref(options);
2319            goto free_exit;
2320        }
2321    }
2322
2323    if (!bs->drv || !bs->drv->supports_backing) {
2324        ret = -EINVAL;
2325        error_setg(errp, "Driver doesn't support backing files");
2326        qobject_unref(options);
2327        goto free_exit;
2328    }
2329
2330    if (!reference &&
2331        bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2332        qdict_put_str(options, "driver", bs->backing_format);
2333    }
2334
2335    backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2336                                   reference, options, 0, bs, &child_backing,
2337                                   errp);
2338    if (!backing_hd) {
2339        bs->open_flags |= BDRV_O_NO_BACKING;
2340        error_prepend(errp, "Could not open backing file: ");
2341        ret = -EINVAL;
2342        goto free_exit;
2343    }
2344    bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2345
2346    /* Hook up the backing file link; drop our reference, bs owns the
2347     * backing_hd reference now */
2348    bdrv_set_backing_hd(bs, backing_hd, &local_err);
2349    bdrv_unref(backing_hd);
2350    if (local_err) {
2351        error_propagate(errp, local_err);
2352        ret = -EINVAL;
2353        goto free_exit;
2354    }
2355
2356    qdict_del(parent_options, bdref_key);
2357
2358free_exit:
2359    g_free(backing_filename);
2360    qobject_unref(tmp_parent_options);
2361    return ret;
2362}
2363
2364static BlockDriverState *
2365bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2366                   BlockDriverState *parent, const BdrvChildRole *child_role,
2367                   bool allow_none, Error **errp)
2368{
2369    BlockDriverState *bs = NULL;
2370    QDict *image_options;
2371    char *bdref_key_dot;
2372    const char *reference;
2373
2374    assert(child_role != NULL);
2375
2376    bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2377    qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2378    g_free(bdref_key_dot);
2379
2380    /*
2381     * Caution: while qdict_get_try_str() is fine, getting non-string
2382     * types would require more care.  When @options come from
2383     * -blockdev or blockdev_add, its members are typed according to
2384     * the QAPI schema, but when they come from -drive, they're all
2385     * QString.
2386     */
2387    reference = qdict_get_try_str(options, bdref_key);
2388    if (!filename && !reference && !qdict_size(image_options)) {
2389        if (!allow_none) {
2390            error_setg(errp, "A block device must be specified for \"%s\"",
2391                       bdref_key);
2392        }
2393        qobject_unref(image_options);
2394        goto done;
2395    }
2396
2397    bs = bdrv_open_inherit(filename, reference, image_options, 0,
2398                           parent, child_role, errp);
2399    if (!bs) {
2400        goto done;
2401    }
2402
2403done:
2404    qdict_del(options, bdref_key);
2405    return bs;
2406}
2407
2408/*
2409 * Opens a disk image whose options are given as BlockdevRef in another block
2410 * device's options.
2411 *
2412 * If allow_none is true, no image will be opened if filename is false and no
2413 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2414 *
2415 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2416 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2417 * itself, all options starting with "${bdref_key}." are considered part of the
2418 * BlockdevRef.
2419 *
2420 * The BlockdevRef will be removed from the options QDict.
2421 */
2422BdrvChild *bdrv_open_child(const char *filename,
2423                           QDict *options, const char *bdref_key,
2424                           BlockDriverState *parent,
2425                           const BdrvChildRole *child_role,
2426                           bool allow_none, Error **errp)
2427{
2428    BdrvChild *c;
2429    BlockDriverState *bs;
2430
2431    bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2432                            allow_none, errp);
2433    if (bs == NULL) {
2434        return NULL;
2435    }
2436
2437    c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2438    if (!c) {
2439        bdrv_unref(bs);
2440        return NULL;
2441    }
2442
2443    return c;
2444}
2445
2446/* TODO Future callers may need to specify parent/child_role in order for
2447 * option inheritance to work. Existing callers use it for the root node. */
2448BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2449{
2450    BlockDriverState *bs = NULL;
2451    Error *local_err = NULL;
2452    QObject *obj = NULL;
2453    QDict *qdict = NULL;
2454    const char *reference = NULL;
2455    Visitor *v = NULL;
2456
2457    if (ref->type == QTYPE_QSTRING) {
2458        reference = ref->u.reference;
2459    } else {
2460        BlockdevOptions *options = &ref->u.definition;
2461        assert(ref->type == QTYPE_QDICT);
2462
2463        v = qobject_output_visitor_new(&obj);
2464        visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2465        if (local_err) {
2466            error_propagate(errp, local_err);
2467            goto fail;
2468        }
2469        visit_complete(v, &obj);
2470
2471        qdict = qobject_to(QDict, obj);
2472        qdict_flatten(qdict);
2473
2474        /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2475         * compatibility with other callers) rather than what we want as the
2476         * real defaults. Apply the defaults here instead. */
2477        qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2478        qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2479        qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2480    }
2481
2482    bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2483    obj = NULL;
2484
2485fail:
2486    qobject_unref(obj);
2487    visit_free(v);
2488    return bs;
2489}
2490
2491static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2492                                                   int flags,
2493                                                   QDict *snapshot_options,
2494                                                   Error **errp)
2495{
2496    /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
2497    char *tmp_filename = g_malloc0(PATH_MAX + 1);
2498    int64_t total_size;
2499    QemuOpts *opts = NULL;
2500    BlockDriverState *bs_snapshot = NULL;
2501    Error *local_err = NULL;
2502    int ret;
2503
2504    /* if snapshot, we create a temporary backing file and open it
2505       instead of opening 'filename' directly */
2506
2507    /* Get the required size from the image */
2508    total_size = bdrv_getlength(bs);
2509    if (total_size < 0) {
2510        error_setg_errno(errp, -total_size, "Could not get image size");
2511        goto out;
2512    }
2513
2514    /* Create the temporary image */
2515    ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2516    if (ret < 0) {
2517        error_setg_errno(errp, -ret, "Could not get temporary filename");
2518        goto out;
2519    }
2520
2521    opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2522                            &error_abort);
2523    qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2524    ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
2525    qemu_opts_del(opts);
2526    if (ret < 0) {
2527        error_prepend(errp, "Could not create temporary overlay '%s': ",
2528                      tmp_filename);
2529        goto out;
2530    }
2531
2532    /* Prepare options QDict for the temporary file */
2533    qdict_put_str(snapshot_options, "file.driver", "file");
2534    qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2535    qdict_put_str(snapshot_options, "driver", "qcow2");
2536
2537    bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
2538    snapshot_options = NULL;
2539    if (!bs_snapshot) {
2540        goto out;
2541    }
2542
2543    /* bdrv_append() consumes a strong reference to bs_snapshot
2544     * (i.e. it will call bdrv_unref() on it) even on error, so in
2545     * order to be able to return one, we have to increase
2546     * bs_snapshot's refcount here */
2547    bdrv_ref(bs_snapshot);
2548    bdrv_append(bs_snapshot, bs, &local_err);
2549    if (local_err) {
2550        error_propagate(errp, local_err);
2551        bs_snapshot = NULL;
2552        goto out;
2553    }
2554
2555out:
2556    qobject_unref(snapshot_options);
2557    g_free(tmp_filename);
2558    return bs_snapshot;
2559}
2560
2561/*
2562 * Opens a disk image (raw, qcow2, vmdk, ...)
2563 *
2564 * options is a QDict of options to pass to the block drivers, or NULL for an
2565 * empty set of options. The reference to the QDict belongs to the block layer
2566 * after the call (even on failure), so if the caller intends to reuse the
2567 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
2568 *
2569 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2570 * If it is not NULL, the referenced BDS will be reused.
2571 *
2572 * The reference parameter may be used to specify an existing block device which
2573 * should be opened. If specified, neither options nor a filename may be given,
2574 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2575 */
2576static BlockDriverState *bdrv_open_inherit(const char *filename,
2577                                           const char *reference,
2578                                           QDict *options, int flags,
2579                                           BlockDriverState *parent,
2580                                           const BdrvChildRole *child_role,
2581                                           Error **errp)
2582{
2583    int ret;
2584    BlockBackend *file = NULL;
2585    BlockDriverState *bs;
2586    BlockDriver *drv = NULL;
2587    const char *drvname;
2588    const char *backing;
2589    Error *local_err = NULL;
2590    QDict *snapshot_options = NULL;
2591    int snapshot_flags = 0;
2592
2593    assert(!child_role || !flags);
2594    assert(!child_role == !parent);
2595
2596    if (reference) {
2597        bool options_non_empty = options ? qdict_size(options) : false;
2598        qobject_unref(options);
2599
2600        if (filename || options_non_empty) {
2601            error_setg(errp, "Cannot reference an existing block device with "
2602                       "additional options or a new filename");
2603            return NULL;
2604        }
2605
2606        bs = bdrv_lookup_bs(reference, reference, errp);
2607        if (!bs) {
2608            return NULL;
2609        }
2610
2611        bdrv_ref(bs);
2612        return bs;
2613    }
2614
2615    bs = bdrv_new();
2616
2617    /* NULL means an empty set of options */
2618    if (options == NULL) {
2619        options = qdict_new();
2620    }
2621
2622    /* json: syntax counts as explicit options, as if in the QDict */
2623    parse_json_protocol(options, &filename, &local_err);
2624    if (local_err) {
2625        goto fail;
2626    }
2627
2628    bs->explicit_options = qdict_clone_shallow(options);
2629
2630    if (child_role) {
2631        bs->inherits_from = parent;
2632        child_role->inherit_options(&flags, options,
2633                                    parent->open_flags, parent->options);
2634    }
2635
2636    ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2637    if (local_err) {
2638        goto fail;
2639    }
2640
2641    /*
2642     * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2643     * Caution: getting a boolean member of @options requires care.
2644     * When @options come from -blockdev or blockdev_add, members are
2645     * typed according to the QAPI schema, but when they come from
2646     * -drive, they're all QString.
2647     */
2648    if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2649        !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2650        flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2651    } else {
2652        flags &= ~BDRV_O_RDWR;
2653    }
2654
2655    if (flags & BDRV_O_SNAPSHOT) {
2656        snapshot_options = qdict_new();
2657        bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2658                                   flags, options);
2659        /* Let bdrv_backing_options() override "read-only" */
2660        qdict_del(options, BDRV_OPT_READ_ONLY);
2661        bdrv_backing_options(&flags, options, flags, options);
2662    }
2663
2664    bs->open_flags = flags;
2665    bs->options = options;
2666    options = qdict_clone_shallow(options);
2667
2668    /* Find the right image format driver */
2669    /* See cautionary note on accessing @options above */
2670    drvname = qdict_get_try_str(options, "driver");
2671    if (drvname) {
2672        drv = bdrv_find_format(drvname);
2673        if (!drv) {
2674            error_setg(errp, "Unknown driver: '%s'", drvname);
2675            goto fail;
2676        }
2677    }
2678
2679    assert(drvname || !(flags & BDRV_O_PROTOCOL));
2680
2681    /* See cautionary note on accessing @options above */
2682    backing = qdict_get_try_str(options, "backing");
2683    if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2684        (backing && *backing == '\0'))
2685    {
2686        if (backing) {
2687            warn_report("Use of \"backing\": \"\" is deprecated; "
2688                        "use \"backing\": null instead");
2689        }
2690        flags |= BDRV_O_NO_BACKING;
2691        qdict_del(options, "backing");
2692    }
2693
2694    /* Open image file without format layer. This BlockBackend is only used for
2695     * probing, the block drivers will do their own bdrv_open_child() for the
2696     * same BDS, which is why we put the node name back into options. */
2697    if ((flags & BDRV_O_PROTOCOL) == 0) {
2698        BlockDriverState *file_bs;
2699
2700        file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2701                                     &child_file, true, &local_err);
2702        if (local_err) {
2703            goto fail;
2704        }
2705        if (file_bs != NULL) {
2706            /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2707             * looking at the header to guess the image format. This works even
2708             * in cases where a guest would not see a consistent state. */
2709            file = blk_new(0, BLK_PERM_ALL);
2710            blk_insert_bs(file, file_bs, &local_err);
2711            bdrv_unref(file_bs);
2712            if (local_err) {
2713                goto fail;
2714            }
2715
2716            qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
2717        }
2718    }
2719
2720    /* Image format probing */
2721    bs->probed = !drv;
2722    if (!drv && file) {
2723        ret = find_image_format(file, filename, &drv, &local_err);
2724        if (ret < 0) {
2725            goto fail;
2726        }
2727        /*
2728         * This option update would logically belong in bdrv_fill_options(),
2729         * but we first need to open bs->file for the probing to work, while
2730         * opening bs->file already requires the (mostly) final set of options
2731         * so that cache mode etc. can be inherited.
2732         *
2733         * Adding the driver later is somewhat ugly, but it's not an option
2734         * that would ever be inherited, so it's correct. We just need to make
2735         * sure to update both bs->options (which has the full effective
2736         * options for bs) and options (which has file.* already removed).
2737         */
2738        qdict_put_str(bs->options, "driver", drv->format_name);
2739        qdict_put_str(options, "driver", drv->format_name);
2740    } else if (!drv) {
2741        error_setg(errp, "Must specify either driver or file");
2742        goto fail;
2743    }
2744
2745    /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2746    assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2747    /* file must be NULL if a protocol BDS is about to be created
2748     * (the inverse results in an error message from bdrv_open_common()) */
2749    assert(!(flags & BDRV_O_PROTOCOL) || !file);
2750
2751    /* Open the image */
2752    ret = bdrv_open_common(bs, file, options, &local_err);
2753    if (ret < 0) {
2754        goto fail;
2755    }
2756
2757    if (file) {
2758        blk_unref(file);
2759        file = NULL;
2760    }
2761
2762    /* If there is a backing file, use it */
2763    if ((flags & BDRV_O_NO_BACKING) == 0) {
2764        ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2765        if (ret < 0) {
2766            goto close_and_fail;
2767        }
2768    }
2769
2770    bdrv_refresh_filename(bs);
2771
2772    /* Check if any unknown options were used */
2773    if (qdict_size(options) != 0) {
2774        const QDictEntry *entry = qdict_first(options);
2775        if (flags & BDRV_O_PROTOCOL) {
2776            error_setg(errp, "Block protocol '%s' doesn't support the option "
2777                       "'%s'", drv->format_name, entry->key);
2778        } else {
2779            error_setg(errp,
2780                       "Block format '%s' does not support the option '%s'",
2781                       drv->format_name, entry->key);
2782        }
2783
2784        goto close_and_fail;
2785    }
2786
2787    bdrv_parent_cb_change_media(bs, true);
2788
2789    qobject_unref(options);
2790    options = NULL;
2791
2792    /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2793     * temporary snapshot afterwards. */
2794    if (snapshot_flags) {
2795        BlockDriverState *snapshot_bs;
2796        snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2797                                                snapshot_options, &local_err);
2798        snapshot_options = NULL;
2799        if (local_err) {
2800            goto close_and_fail;
2801        }
2802        /* We are not going to return bs but the overlay on top of it
2803         * (snapshot_bs); thus, we have to drop the strong reference to bs
2804         * (which we obtained by calling bdrv_new()). bs will not be deleted,
2805         * though, because the overlay still has a reference to it. */
2806        bdrv_unref(bs);
2807        bs = snapshot_bs;
2808    }
2809
2810    return bs;
2811
2812fail:
2813    blk_unref(file);
2814    qobject_unref(snapshot_options);
2815    qobject_unref(bs->explicit_options);
2816    qobject_unref(bs->options);
2817    qobject_unref(options);
2818    bs->options = NULL;
2819    bs->explicit_options = NULL;
2820    bdrv_unref(bs);
2821    error_propagate(errp, local_err);
2822    return NULL;
2823
2824close_and_fail:
2825    bdrv_unref(bs);
2826    qobject_unref(snapshot_options);
2827    qobject_unref(options);
2828    error_propagate(errp, local_err);
2829    return NULL;
2830}
2831
2832BlockDriverState *bdrv_open(const char *filename, const char *reference,
2833                            QDict *options, int flags, Error **errp)
2834{
2835    return bdrv_open_inherit(filename, reference, options, flags, NULL,
2836                             NULL, errp);
2837}
2838
2839/*
2840 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2841 * reopen of multiple devices.
2842 *
2843 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2844 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2845 * be created and initialized. This newly created BlockReopenQueue should be
2846 * passed back in for subsequent calls that are intended to be of the same
2847 * atomic 'set'.
2848 *
2849 * bs is the BlockDriverState to add to the reopen queue.
2850 *
2851 * options contains the changed options for the associated bs
2852 * (the BlockReopenQueue takes ownership)
2853 *
2854 * flags contains the open flags for the associated bs
2855 *
2856 * returns a pointer to bs_queue, which is either the newly allocated
2857 * bs_queue, or the existing bs_queue being used.
2858 *
2859 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
2860 */
2861static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2862                                                 BlockDriverState *bs,
2863                                                 QDict *options,
2864                                                 int flags,
2865                                                 const BdrvChildRole *role,
2866                                                 QDict *parent_options,
2867                                                 int parent_flags)
2868{
2869    assert(bs != NULL);
2870
2871    BlockReopenQueueEntry *bs_entry;
2872    BdrvChild *child;
2873    QDict *old_options, *explicit_options;
2874
2875    /* Make sure that the caller remembered to use a drained section. This is
2876     * important to avoid graph changes between the recursive queuing here and
2877     * bdrv_reopen_multiple(). */
2878    assert(bs->quiesce_counter > 0);
2879
2880    if (bs_queue == NULL) {
2881        bs_queue = g_new0(BlockReopenQueue, 1);
2882        QSIMPLEQ_INIT(bs_queue);
2883    }
2884
2885    if (!options) {
2886        options = qdict_new();
2887    }
2888
2889    /* Check if this BlockDriverState is already in the queue */
2890    QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2891        if (bs == bs_entry->state.bs) {
2892            break;
2893        }
2894    }
2895
2896    /*
2897     * Precedence of options:
2898     * 1. Explicitly passed in options (highest)
2899     * 2. Set in flags (only for top level)
2900     * 3. Retained from explicitly set options of bs
2901     * 4. Inherited from parent node
2902     * 5. Retained from effective options of bs
2903     */
2904
2905    if (!parent_options) {
2906        /*
2907         * Any setting represented by flags is always updated. If the
2908         * corresponding QDict option is set, it takes precedence. Otherwise
2909         * the flag is translated into a QDict option. The old setting of bs is
2910         * not considered.
2911         */
2912        update_options_from_flags(options, flags);
2913    }
2914
2915    /* Old explicitly set values (don't overwrite by inherited value) */
2916    if (bs_entry) {
2917        old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
2918    } else {
2919        old_options = qdict_clone_shallow(bs->explicit_options);
2920    }
2921    bdrv_join_options(bs, options, old_options);
2922    qobject_unref(old_options);
2923
2924    explicit_options = qdict_clone_shallow(options);
2925
2926    /* Inherit from parent node */
2927    if (parent_options) {
2928        QemuOpts *opts;
2929        QDict *options_copy;
2930        assert(!flags);
2931        role->inherit_options(&flags, options, parent_flags, parent_options);
2932        options_copy = qdict_clone_shallow(options);
2933        opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2934        qemu_opts_absorb_qdict(opts, options_copy, NULL);
2935        update_flags_from_options(&flags, opts);
2936        qemu_opts_del(opts);
2937        qobject_unref(options_copy);
2938    }
2939
2940    /* Old values are used for options that aren't set yet */
2941    old_options = qdict_clone_shallow(bs->options);
2942    bdrv_join_options(bs, options, old_options);
2943    qobject_unref(old_options);
2944
2945    /* bdrv_open_inherit() sets and clears some additional flags internally */
2946    flags &= ~BDRV_O_PROTOCOL;
2947    if (flags & BDRV_O_RDWR) {
2948        flags |= BDRV_O_ALLOW_RDWR;
2949    }
2950
2951    if (!bs_entry) {
2952        bs_entry = g_new0(BlockReopenQueueEntry, 1);
2953        QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
2954    } else {
2955        qobject_unref(bs_entry->state.options);
2956        qobject_unref(bs_entry->state.explicit_options);
2957    }
2958
2959    bs_entry->state.bs = bs;
2960    bs_entry->state.options = options;
2961    bs_entry->state.explicit_options = explicit_options;
2962    bs_entry->state.flags = flags;
2963
2964    /* This needs to be overwritten in bdrv_reopen_prepare() */
2965    bs_entry->state.perm = UINT64_MAX;
2966    bs_entry->state.shared_perm = 0;
2967
2968    QLIST_FOREACH(child, &bs->children, next) {
2969        QDict *new_child_options;
2970        char *child_key_dot;
2971
2972        /* reopen can only change the options of block devices that were
2973         * implicitly created and inherited options. For other (referenced)
2974         * block devices, a syntax like "backing.foo" results in an error. */
2975        if (child->bs->inherits_from != bs) {
2976            continue;
2977        }
2978
2979        child_key_dot = g_strdup_printf("%s.", child->name);
2980        qdict_extract_subqdict(options, &new_child_options, child_key_dot);
2981        g_free(child_key_dot);
2982
2983        bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
2984                                child->role, options, flags);
2985    }
2986
2987    return bs_queue;
2988}
2989
2990BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
2991                                    BlockDriverState *bs,
2992                                    QDict *options, int flags)
2993{
2994    return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
2995                                   NULL, NULL, 0);
2996}
2997
2998/*
2999 * Reopen multiple BlockDriverStates atomically & transactionally.
3000 *
3001 * The queue passed in (bs_queue) must have been built up previous
3002 * via bdrv_reopen_queue().
3003 *
3004 * Reopens all BDS specified in the queue, with the appropriate
3005 * flags.  All devices are prepared for reopen, and failure of any
3006 * device will cause all device changes to be abandoned, and intermediate
3007 * data cleaned up.
3008 *
3009 * If all devices prepare successfully, then the changes are committed
3010 * to all devices.
3011 *
3012 * All affected nodes must be drained between bdrv_reopen_queue() and
3013 * bdrv_reopen_multiple().
3014 */
3015int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3016{
3017    int ret = -1;
3018    BlockReopenQueueEntry *bs_entry, *next;
3019    Error *local_err = NULL;
3020
3021    assert(bs_queue != NULL);
3022
3023    QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3024        assert(bs_entry->state.bs->quiesce_counter > 0);
3025        if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3026            error_propagate(errp, local_err);
3027            goto cleanup;
3028        }
3029        bs_entry->prepared = true;
3030    }
3031
3032    /* If we reach this point, we have success and just need to apply the
3033     * changes
3034     */
3035    QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3036        bdrv_reopen_commit(&bs_entry->state);
3037    }
3038
3039    ret = 0;
3040
3041cleanup:
3042    QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3043        if (ret && bs_entry->prepared) {
3044            bdrv_reopen_abort(&bs_entry->state);
3045        } else if (ret) {
3046            qobject_unref(bs_entry->state.explicit_options);
3047        }
3048        qobject_unref(bs_entry->state.options);
3049        g_free(bs_entry);
3050    }
3051    g_free(bs_queue);
3052
3053    return ret;
3054}
3055
3056
3057/* Reopen a single BlockDriverState with the specified flags. */
3058int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3059{
3060    int ret = -1;
3061    Error *local_err = NULL;
3062    BlockReopenQueue *queue;
3063
3064    bdrv_subtree_drained_begin(bs);
3065
3066    queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
3067    ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
3068    if (local_err != NULL) {
3069        error_propagate(errp, local_err);
3070    }
3071
3072    bdrv_subtree_drained_end(bs);
3073
3074    return ret;
3075}
3076
3077static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3078                                                          BdrvChild *c)
3079{
3080    BlockReopenQueueEntry *entry;
3081
3082    QSIMPLEQ_FOREACH(entry, q, entry) {
3083        BlockDriverState *bs = entry->state.bs;
3084        BdrvChild *child;
3085
3086        QLIST_FOREACH(child, &bs->children, next) {
3087            if (child == c) {
3088                return entry;
3089            }
3090        }
3091    }
3092
3093    return NULL;
3094}
3095
3096static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3097                             uint64_t *perm, uint64_t *shared)
3098{
3099    BdrvChild *c;
3100    BlockReopenQueueEntry *parent;
3101    uint64_t cumulative_perms = 0;
3102    uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3103
3104    QLIST_FOREACH(c, &bs->parents, next_parent) {
3105        parent = find_parent_in_reopen_queue(q, c);
3106        if (!parent) {
3107            cumulative_perms |= c->perm;
3108            cumulative_shared_perms &= c->shared_perm;
3109        } else {
3110            uint64_t nperm, nshared;
3111
3112            bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3113                            parent->state.perm, parent->state.shared_perm,
3114                            &nperm, &nshared);
3115
3116            cumulative_perms |= nperm;
3117            cumulative_shared_perms &= nshared;
3118        }
3119    }
3120    *perm = cumulative_perms;
3121    *shared = cumulative_shared_perms;
3122}
3123
3124/*
3125 * Prepares a BlockDriverState for reopen. All changes are staged in the
3126 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3127 * the block driver layer .bdrv_reopen_prepare()
3128 *
3129 * bs is the BlockDriverState to reopen
3130 * flags are the new open flags
3131 * queue is the reopen queue
3132 *
3133 * Returns 0 on success, non-zero on error.  On error errp will be set
3134 * as well.
3135 *
3136 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3137 * It is the responsibility of the caller to then call the abort() or
3138 * commit() for any other BDS that have been left in a prepare() state
3139 *
3140 */
3141int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3142                        Error **errp)
3143{
3144    int ret = -1;
3145    Error *local_err = NULL;
3146    BlockDriver *drv;
3147    QemuOpts *opts;
3148    const char *value;
3149    bool read_only;
3150
3151    assert(reopen_state != NULL);
3152    assert(reopen_state->bs->drv != NULL);
3153    drv = reopen_state->bs->drv;
3154
3155    /* Process generic block layer options */
3156    opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3157    qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3158    if (local_err) {
3159        error_propagate(errp, local_err);
3160        ret = -EINVAL;
3161        goto error;
3162    }
3163
3164    update_flags_from_options(&reopen_state->flags, opts);
3165
3166    /* node-name and driver must be unchanged. Put them back into the QDict, so
3167     * that they are checked at the end of this function. */
3168    value = qemu_opt_get(opts, "node-name");
3169    if (value) {
3170        qdict_put_str(reopen_state->options, "node-name", value);
3171    }
3172
3173    value = qemu_opt_get(opts, "driver");
3174    if (value) {
3175        qdict_put_str(reopen_state->options, "driver", value);
3176    }
3177
3178    /* If we are to stay read-only, do not allow permission change
3179     * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3180     * not set, or if the BDS still has copy_on_read enabled */
3181    read_only = !(reopen_state->flags & BDRV_O_RDWR);
3182    ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
3183    if (local_err) {
3184        error_propagate(errp, local_err);
3185        goto error;
3186    }
3187
3188    /* Calculate required permissions after reopening */
3189    bdrv_reopen_perm(queue, reopen_state->bs,
3190                     &reopen_state->perm, &reopen_state->shared_perm);
3191
3192    ret = bdrv_flush(reopen_state->bs);
3193    if (ret) {
3194        error_setg_errno(errp, -ret, "Error flushing drive");
3195        goto error;
3196    }
3197
3198    if (drv->bdrv_reopen_prepare) {
3199        ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3200        if (ret) {
3201            if (local_err != NULL) {
3202                error_propagate(errp, local_err);
3203            } else {
3204                error_setg(errp, "failed while preparing to reopen image '%s'",
3205                           reopen_state->bs->filename);
3206            }
3207            goto error;
3208        }
3209    } else {
3210        /* It is currently mandatory to have a bdrv_reopen_prepare()
3211         * handler for each supported drv. */
3212        error_setg(errp, "Block format '%s' used by node '%s' "
3213                   "does not support reopening files", drv->format_name,
3214                   bdrv_get_device_or_node_name(reopen_state->bs));
3215        ret = -1;
3216        goto error;
3217    }
3218
3219    /* Options that are not handled are only okay if they are unchanged
3220     * compared to the old state. It is expected that some options are only
3221     * used for the initial open, but not reopen (e.g. filename) */
3222    if (qdict_size(reopen_state->options)) {
3223        const QDictEntry *entry = qdict_first(reopen_state->options);
3224
3225        do {
3226            QObject *new = entry->value;
3227            QObject *old = qdict_get(reopen_state->bs->options, entry->key);
3228
3229            /*
3230             * TODO: When using -drive to specify blockdev options, all values
3231             * will be strings; however, when using -blockdev, blockdev-add or
3232             * filenames using the json:{} pseudo-protocol, they will be
3233             * correctly typed.
3234             * In contrast, reopening options are (currently) always strings
3235             * (because you can only specify them through qemu-io; all other
3236             * callers do not specify any options).
3237             * Therefore, when using anything other than -drive to create a BDS,
3238             * this cannot detect non-string options as unchanged, because
3239             * qobject_is_equal() always returns false for objects of different
3240             * type.  In the future, this should be remedied by correctly typing
3241             * all options.  For now, this is not too big of an issue because
3242             * the user can simply omit options which cannot be changed anyway,
3243             * so they will stay unchanged.
3244             */
3245            if (!qobject_is_equal(new, old)) {
3246                error_setg(errp, "Cannot change the option '%s'", entry->key);
3247                ret = -EINVAL;
3248                goto error;
3249            }
3250        } while ((entry = qdict_next(reopen_state->options, entry)));
3251    }
3252
3253    ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3254                          reopen_state->shared_perm, NULL, errp);
3255    if (ret < 0) {
3256        goto error;
3257    }
3258
3259    ret = 0;
3260
3261error:
3262    qemu_opts_del(opts);
3263    return ret;
3264}
3265
3266/*
3267 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3268 * makes them final by swapping the staging BlockDriverState contents into
3269 * the active BlockDriverState contents.
3270 */
3271void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3272{
3273    BlockDriver *drv;
3274    BlockDriverState *bs;
3275    bool old_can_write, new_can_write;
3276
3277    assert(reopen_state != NULL);
3278    bs = reopen_state->bs;
3279    drv = bs->drv;
3280    assert(drv != NULL);
3281
3282    old_can_write =
3283        !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3284
3285    /* If there are any driver level actions to take */
3286    if (drv->bdrv_reopen_commit) {
3287        drv->bdrv_reopen_commit(reopen_state);
3288    }
3289
3290    /* set BDS specific flags now */
3291    qobject_unref(bs->explicit_options);
3292
3293    bs->explicit_options   = reopen_state->explicit_options;
3294    bs->open_flags         = reopen_state->flags;
3295    bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3296
3297    bdrv_refresh_limits(bs, NULL);
3298
3299    bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3300                  reopen_state->shared_perm);
3301
3302    new_can_write =
3303        !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3304    if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3305        Error *local_err = NULL;
3306        if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3307            /* This is not fatal, bitmaps just left read-only, so all following
3308             * writes will fail. User can remove read-only bitmaps to unblock
3309             * writes.
3310             */
3311            error_reportf_err(local_err,
3312                              "%s: Failed to make dirty bitmaps writable: ",
3313                              bdrv_get_node_name(bs));
3314        }
3315    }
3316}
3317
3318/*
3319 * Abort the reopen, and delete and free the staged changes in
3320 * reopen_state
3321 */
3322void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3323{
3324    BlockDriver *drv;
3325
3326    assert(reopen_state != NULL);
3327    drv = reopen_state->bs->drv;
3328    assert(drv != NULL);
3329
3330    if (drv->bdrv_reopen_abort) {
3331        drv->bdrv_reopen_abort(reopen_state);
3332    }
3333
3334    qobject_unref(reopen_state->explicit_options);
3335
3336    bdrv_abort_perm_update(reopen_state->bs);
3337}
3338
3339
3340static void bdrv_close(BlockDriverState *bs)
3341{
3342    BdrvAioNotifier *ban, *ban_next;
3343    BdrvChild *child, *next;
3344
3345    assert(!bs->job);
3346    assert(!bs->refcnt);
3347
3348    bdrv_drained_begin(bs); /* complete I/O */
3349    bdrv_flush(bs);
3350    bdrv_drain(bs); /* in case flush left pending I/O */
3351
3352    if (bs->drv) {
3353        bs->drv->bdrv_close(bs);
3354        bs->drv = NULL;
3355    }
3356
3357    bdrv_set_backing_hd(bs, NULL, &error_abort);
3358
3359    if (bs->file != NULL) {
3360        bdrv_unref_child(bs, bs->file);
3361        bs->file = NULL;
3362    }
3363
3364    QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3365        /* TODO Remove bdrv_unref() from drivers' close function and use
3366         * bdrv_unref_child() here */
3367        if (child->bs->inherits_from == bs) {
3368            child->bs->inherits_from = NULL;
3369        }
3370        bdrv_detach_child(child);
3371    }
3372
3373    g_free(bs->opaque);
3374    bs->opaque = NULL;
3375    atomic_set(&bs->copy_on_read, 0);
3376    bs->backing_file[0] = '\0';
3377    bs->backing_format[0] = '\0';
3378    bs->total_sectors = 0;
3379    bs->encrypted = false;
3380    bs->sg = false;
3381    qobject_unref(bs->options);
3382    qobject_unref(bs->explicit_options);
3383    bs->options = NULL;
3384    bs->explicit_options = NULL;
3385    qobject_unref(bs->full_open_options);
3386    bs->full_open_options = NULL;
3387
3388    bdrv_release_named_dirty_bitmaps(bs);
3389    assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3390
3391    QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3392        g_free(ban);
3393    }
3394    QLIST_INIT(&bs->aio_notifiers);
3395    bdrv_drained_end(bs);
3396}
3397
3398void bdrv_close_all(void)
3399{
3400    assert(job_next(NULL) == NULL);
3401    nbd_export_close_all();
3402
3403    /* Drop references from requests still in flight, such as canceled block
3404     * jobs whose AIO context has not been polled yet */
3405    bdrv_drain_all();
3406
3407    blk_remove_all_bs();
3408    blockdev_close_all_bdrv_states();
3409
3410    assert(QTAILQ_EMPTY(&all_bdrv_states));
3411}
3412
3413static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3414{
3415    BdrvChild *to_c;
3416
3417    if (c->role->stay_at_node) {
3418        return false;
3419    }
3420
3421    /* If the child @c belongs to the BDS @to, replacing the current
3422     * c->bs by @to would mean to create a loop.
3423     *
3424     * Such a case occurs when appending a BDS to a backing chain.
3425     * For instance, imagine the following chain:
3426     *
3427     *   guest device -> node A -> further backing chain...
3428     *
3429     * Now we create a new BDS B which we want to put on top of this
3430     * chain, so we first attach A as its backing node:
3431     *
3432     *                   node B
3433     *                     |
3434     *                     v
3435     *   guest device -> node A -> further backing chain...
3436     *
3437     * Finally we want to replace A by B.  When doing that, we want to
3438     * replace all pointers to A by pointers to B -- except for the
3439     * pointer from B because (1) that would create a loop, and (2)
3440     * that pointer should simply stay intact:
3441     *
3442     *   guest device -> node B
3443     *                     |
3444     *                     v
3445     *                   node A -> further backing chain...
3446     *
3447     * In general, when replacing a node A (c->bs) by a node B (@to),
3448     * if A is a child of B, that means we cannot replace A by B there
3449     * because that would create a loop.  Silently detaching A from B
3450     * is also not really an option.  So overall just leaving A in
3451     * place there is the most sensible choice. */
3452    QLIST_FOREACH(to_c, &to->children, next) {
3453        if (to_c == c) {
3454            return false;
3455        }
3456    }
3457
3458    return true;
3459}
3460
3461void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3462                       Error **errp)
3463{
3464    BdrvChild *c, *next;
3465    GSList *list = NULL, *p;
3466    uint64_t old_perm, old_shared;
3467    uint64_t perm = 0, shared = BLK_PERM_ALL;
3468    int ret;
3469
3470    assert(!atomic_read(&from->in_flight));
3471    assert(!atomic_read(&to->in_flight));
3472
3473    /* Make sure that @from doesn't go away until we have successfully attached
3474     * all of its parents to @to. */
3475    bdrv_ref(from);
3476
3477    /* Put all parents into @list and calculate their cumulative permissions */
3478    QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3479        assert(c->bs == from);
3480        if (!should_update_child(c, to)) {
3481            continue;
3482        }
3483        list = g_slist_prepend(list, c);
3484        perm |= c->perm;
3485        shared &= c->shared_perm;
3486    }
3487
3488    /* Check whether the required permissions can be granted on @to, ignoring
3489     * all BdrvChild in @list so that they can't block themselves. */
3490    ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3491    if (ret < 0) {
3492        bdrv_abort_perm_update(to);
3493        goto out;
3494    }
3495
3496    /* Now actually perform the change. We performed the permission check for
3497     * all elements of @list at once, so set the permissions all at once at the
3498     * very end. */
3499    for (p = list; p != NULL; p = p->next) {
3500        c = p->data;
3501
3502        bdrv_ref(to);
3503        bdrv_replace_child_noperm(c, to);
3504        bdrv_unref(from);
3505    }
3506
3507    bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3508    bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3509
3510out:
3511    g_slist_free(list);
3512    bdrv_unref(from);
3513}
3514
3515/*
3516 * Add new bs contents at the top of an image chain while the chain is
3517 * live, while keeping required fields on the top layer.
3518 *
3519 * This will modify the BlockDriverState fields, and swap contents
3520 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3521 *
3522 * bs_new must not be attached to a BlockBackend.
3523 *
3524 * This function does not create any image files.
3525 *
3526 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3527 * that's what the callers commonly need. bs_new will be referenced by the old
3528 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3529 * reference of its own, it must call bdrv_ref().
3530 */
3531void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3532                 Error **errp)
3533{
3534    Error *local_err = NULL;
3535
3536    bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3537    if (local_err) {
3538        error_propagate(errp, local_err);
3539        goto out;
3540    }
3541
3542    bdrv_replace_node(bs_top, bs_new, &local_err);
3543    if (local_err) {
3544        error_propagate(errp, local_err);
3545        bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3546        goto out;
3547    }
3548
3549    /* bs_new is now referenced by its new parents, we don't need the
3550     * additional reference any more. */
3551out:
3552    bdrv_unref(bs_new);
3553}
3554
3555static void bdrv_delete(BlockDriverState *bs)
3556{
3557    assert(!bs->job);
3558    assert(bdrv_op_blocker_is_empty(bs));
3559    assert(!bs->refcnt);
3560
3561    bdrv_close(bs);
3562
3563    /* remove from list, if necessary */
3564    if (bs->node_name[0] != '\0') {
3565        QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3566    }
3567    QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3568
3569    g_free(bs);
3570}
3571
3572/*
3573 * Run consistency checks on an image
3574 *
3575 * Returns 0 if the check could be completed (it doesn't mean that the image is
3576 * free of errors) or -errno when an internal error occurred. The results of the
3577 * check are stored in res.
3578 */
3579static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3580                                      BdrvCheckResult *res, BdrvCheckMode fix)
3581{
3582    if (bs->drv == NULL) {
3583        return -ENOMEDIUM;
3584    }
3585    if (bs->drv->bdrv_co_check == NULL) {
3586        return -ENOTSUP;
3587    }
3588
3589    memset(res, 0, sizeof(*res));
3590    return bs->drv->bdrv_co_check(bs, res, fix);
3591}
3592
3593typedef struct CheckCo {
3594    BlockDriverState *bs;
3595    BdrvCheckResult *res;
3596    BdrvCheckMode fix;
3597    int ret;
3598} CheckCo;
3599
3600static void bdrv_check_co_entry(void *opaque)
3601{
3602    CheckCo *cco = opaque;
3603    cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3604}
3605
3606int bdrv_check(BlockDriverState *bs,
3607               BdrvCheckResult *res, BdrvCheckMode fix)
3608{
3609    Coroutine *co;
3610    CheckCo cco = {
3611        .bs = bs,
3612        .res = res,
3613        .ret = -EINPROGRESS,
3614        .fix = fix,
3615    };
3616
3617    if (qemu_in_coroutine()) {
3618        /* Fast-path if already in coroutine context */
3619        bdrv_check_co_entry(&cco);
3620    } else {
3621        co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
3622        qemu_coroutine_enter(co);
3623        BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3624    }
3625
3626    return cco.ret;
3627}
3628
3629/*
3630 * Return values:
3631 * 0        - success
3632 * -EINVAL  - backing format specified, but no file
3633 * -ENOSPC  - can't update the backing file because no space is left in the
3634 *            image file header
3635 * -ENOTSUP - format driver doesn't support changing the backing file
3636 */
3637int bdrv_change_backing_file(BlockDriverState *bs,
3638    const char *backing_file, const char *backing_fmt)
3639{
3640    BlockDriver *drv = bs->drv;
3641    int ret;
3642
3643    if (!drv) {
3644        return -ENOMEDIUM;
3645    }
3646
3647    /* Backing file format doesn't make sense without a backing file */
3648    if (backing_fmt && !backing_file) {
3649        return -EINVAL;
3650    }
3651
3652    if (drv->bdrv_change_backing_file != NULL) {
3653        ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3654    } else {
3655        ret = -ENOTSUP;
3656    }
3657
3658    if (ret == 0) {
3659        pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3660        pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3661    }
3662    return ret;
3663}
3664
3665/*
3666 * Finds the image layer in the chain that has 'bs' as its backing file.
3667 *
3668 * active is the current topmost image.
3669 *
3670 * Returns NULL if bs is not found in active's image chain,
3671 * or if active == bs.
3672 *
3673 * Returns the bottommost base image if bs == NULL.
3674 */
3675BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3676                                    BlockDriverState *bs)
3677{
3678    while (active && bs != backing_bs(active)) {
3679        active = backing_bs(active);
3680    }
3681
3682    return active;
3683}
3684
3685/* Given a BDS, searches for the base layer. */
3686BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3687{
3688    return bdrv_find_overlay(bs, NULL);
3689}
3690
3691/*
3692 * Drops images above 'base' up to and including 'top', and sets the image
3693 * above 'top' to have base as its backing file.
3694 *
3695 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3696 * information in 'bs' can be properly updated.
3697 *
3698 * E.g., this will convert the following chain:
3699 * bottom <- base <- intermediate <- top <- active
3700 *
3701 * to
3702 *
3703 * bottom <- base <- active
3704 *
3705 * It is allowed for bottom==base, in which case it converts:
3706 *
3707 * base <- intermediate <- top <- active
3708 *
3709 * to
3710 *
3711 * base <- active
3712 *
3713 * If backing_file_str is non-NULL, it will be used when modifying top's
3714 * overlay image metadata.
3715 *
3716 * Error conditions:
3717 *  if active == top, that is considered an error
3718 *
3719 */
3720int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3721                           const char *backing_file_str)
3722{
3723    BdrvChild *c, *next;
3724    Error *local_err = NULL;
3725    int ret = -EIO;
3726
3727    bdrv_ref(top);
3728
3729    if (!top->drv || !base->drv) {
3730        goto exit;
3731    }
3732
3733    /* Make sure that base is in the backing chain of top */
3734    if (!bdrv_chain_contains(top, base)) {
3735        goto exit;
3736    }
3737
3738    /* success - we can delete the intermediate states, and link top->base */
3739    /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3740     * we've figured out how they should work. */
3741    backing_file_str = backing_file_str ? backing_file_str : base->filename;
3742
3743    QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3744        /* Check whether we are allowed to switch c from top to base */
3745        GSList *ignore_children = g_slist_prepend(NULL, c);
3746        bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3747                               ignore_children, &local_err);
3748        g_slist_free(ignore_children);
3749        if (local_err) {
3750            ret = -EPERM;
3751            error_report_err(local_err);
3752            goto exit;
3753        }
3754
3755        /* If so, update the backing file path in the image file */
3756        if (c->role->update_filename) {
3757            ret = c->role->update_filename(c, base, backing_file_str,
3758                                           &local_err);
3759            if (ret < 0) {
3760                bdrv_abort_perm_update(base);
3761                error_report_err(local_err);
3762                goto exit;
3763            }
3764        }
3765
3766        /* Do the actual switch in the in-memory graph.
3767         * Completes bdrv_check_update_perm() transaction internally. */
3768        bdrv_ref(base);
3769        bdrv_replace_child(c, base);
3770        bdrv_unref(top);
3771    }
3772
3773    ret = 0;
3774exit:
3775    bdrv_unref(top);
3776    return ret;
3777}
3778
3779/**
3780 * Length of a allocated file in bytes. Sparse files are counted by actual
3781 * allocated space. Return < 0 if error or unknown.
3782 */
3783int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3784{
3785    BlockDriver *drv = bs->drv;
3786    if (!drv) {
3787        return -ENOMEDIUM;
3788    }
3789    if (drv->bdrv_get_allocated_file_size) {
3790        return drv->bdrv_get_allocated_file_size(bs);
3791    }
3792    if (bs->file) {
3793        return bdrv_get_allocated_file_size(bs->file->bs);
3794    }
3795    return -ENOTSUP;
3796}
3797
3798/*
3799 * bdrv_measure:
3800 * @drv: Format driver
3801 * @opts: Creation options for new image
3802 * @in_bs: Existing image containing data for new image (may be NULL)
3803 * @errp: Error object
3804 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
3805 *          or NULL on error
3806 *
3807 * Calculate file size required to create a new image.
3808 *
3809 * If @in_bs is given then space for allocated clusters and zero clusters
3810 * from that image are included in the calculation.  If @opts contains a
3811 * backing file that is shared by @in_bs then backing clusters may be omitted
3812 * from the calculation.
3813 *
3814 * If @in_bs is NULL then the calculation includes no allocated clusters
3815 * unless a preallocation option is given in @opts.
3816 *
3817 * Note that @in_bs may use a different BlockDriver from @drv.
3818 *
3819 * If an error occurs the @errp pointer is set.
3820 */
3821BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
3822                               BlockDriverState *in_bs, Error **errp)
3823{
3824    if (!drv->bdrv_measure) {
3825        error_setg(errp, "Block driver '%s' does not support size measurement",
3826                   drv->format_name);
3827        return NULL;
3828    }
3829
3830    return drv->bdrv_measure(opts, in_bs, errp);
3831}
3832
3833/**
3834 * Return number of sectors on success, -errno on error.
3835 */
3836int64_t bdrv_nb_sectors(BlockDriverState *bs)
3837{
3838    BlockDriver *drv = bs->drv;
3839
3840    if (!drv)
3841        return -ENOMEDIUM;
3842
3843    if (drv->has_variable_length) {
3844        int ret = refresh_total_sectors(bs, bs->total_sectors);
3845        if (ret < 0) {
3846            return ret;
3847        }
3848    }
3849    return bs->total_sectors;
3850}
3851
3852/**
3853 * Return length in bytes on success, -errno on error.
3854 * The length is always a multiple of BDRV_SECTOR_SIZE.
3855 */
3856int64_t bdrv_getlength(BlockDriverState *bs)
3857{
3858    int64_t ret = bdrv_nb_sectors(bs);
3859
3860    ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
3861    return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
3862}
3863
3864/* return 0 as number of sectors if no device present or error */
3865void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3866{
3867    int64_t nb_sectors = bdrv_nb_sectors(bs);
3868
3869    *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3870}
3871
3872bool bdrv_is_sg(BlockDriverState *bs)
3873{
3874    return bs->sg;
3875}
3876
3877bool bdrv_is_encrypted(BlockDriverState *bs)
3878{
3879    if (bs->backing && bs->backing->bs->encrypted) {
3880        return true;
3881    }
3882    return bs->encrypted;
3883}
3884
3885const char *bdrv_get_format_name(BlockDriverState *bs)
3886{
3887    return bs->drv ? bs->drv->format_name : NULL;
3888}
3889
3890static int qsort_strcmp(const void *a, const void *b)
3891{
3892    return strcmp(*(char *const *)a, *(char *const *)b);
3893}
3894
3895void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3896                         void *opaque)
3897{
3898    BlockDriver *drv;
3899    int count = 0;
3900    int i;
3901    const char **formats = NULL;
3902
3903    QLIST_FOREACH(drv, &bdrv_drivers, list) {
3904        if (drv->format_name) {
3905            bool found = false;
3906            int i = count;
3907            while (formats && i && !found) {
3908                found = !strcmp(formats[--i], drv->format_name);
3909            }
3910
3911            if (!found) {
3912                formats = g_renew(const char *, formats, count + 1);
3913                formats[count++] = drv->format_name;
3914            }
3915        }
3916    }
3917
3918    for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3919        const char *format_name = block_driver_modules[i].format_name;
3920
3921        if (format_name) {
3922            bool found = false;
3923            int j = count;
3924
3925            while (formats && j && !found) {
3926                found = !strcmp(formats[--j], format_name);
3927            }
3928
3929            if (!found) {
3930                formats = g_renew(const char *, formats, count + 1);
3931                formats[count++] = format_name;
3932            }
3933        }
3934    }
3935
3936    qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3937
3938    for (i = 0; i < count; i++) {
3939        it(opaque, formats[i]);
3940    }
3941
3942    g_free(formats);
3943}
3944
3945/* This function is to find a node in the bs graph */
3946BlockDriverState *bdrv_find_node(const char *node_name)
3947{
3948    BlockDriverState *bs;
3949
3950    assert(node_name);
3951
3952    QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3953        if (!strcmp(node_name, bs->node_name)) {
3954            return bs;
3955        }
3956    }
3957    return NULL;
3958}
3959
3960/* Put this QMP function here so it can access the static graph_bdrv_states. */
3961BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3962{
3963    BlockDeviceInfoList *list, *entry;
3964    BlockDriverState *bs;
3965
3966    list = NULL;
3967    QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3968        BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
3969        if (!info) {
3970            qapi_free_BlockDeviceInfoList(list);
3971            return NULL;
3972        }
3973        entry = g_malloc0(sizeof(*entry));
3974        entry->value = info;
3975        entry->next = list;
3976        list = entry;
3977    }
3978
3979    return list;
3980}
3981
3982BlockDriverState *bdrv_lookup_bs(const char *device,
3983                                 const char *node_name,
3984                                 Error **errp)
3985{
3986    BlockBackend *blk;
3987    BlockDriverState *bs;
3988
3989    if (device) {
3990        blk = blk_by_name(device);
3991
3992        if (blk) {
3993            bs = blk_bs(blk);
3994            if (!bs) {
3995                error_setg(errp, "Device '%s' has no medium", device);
3996            }
3997
3998            return bs;
3999        }
4000    }
4001
4002    if (node_name) {
4003        bs = bdrv_find_node(node_name);
4004
4005        if (bs) {
4006            return bs;
4007        }
4008    }
4009
4010    error_setg(errp, "Cannot find device=%s nor node_name=%s",
4011                     device ? device : "",
4012                     node_name ? node_name : "");
4013    return NULL;
4014}
4015
4016/* If 'base' is in the same chain as 'top', return true. Otherwise,
4017 * return false.  If either argument is NULL, return false. */
4018bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
4019{
4020    while (top && top != base) {
4021        top = backing_bs(top);
4022    }
4023
4024    return top != NULL;
4025}
4026
4027BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4028{
4029    if (!bs) {
4030        return QTAILQ_FIRST(&graph_bdrv_states);
4031    }
4032    return QTAILQ_NEXT(bs, node_list);
4033}
4034
4035BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4036{
4037    if (!bs) {
4038        return QTAILQ_FIRST(&all_bdrv_states);
4039    }
4040    return QTAILQ_NEXT(bs, bs_list);
4041}
4042
4043const char *bdrv_get_node_name(const BlockDriverState *bs)
4044{
4045    return bs->node_name;
4046}
4047
4048const char *bdrv_get_parent_name(const BlockDriverState *bs)
4049{
4050    BdrvChild *c;
4051    const char *name;
4052
4053    /* If multiple parents have a name, just pick the first one. */
4054    QLIST_FOREACH(c, &bs->parents, next_parent) {
4055        if (c->role->get_name) {
4056            name = c->role->get_name(c);
4057            if (name && *name) {
4058                return name;
4059            }
4060        }
4061    }
4062
4063    return NULL;
4064}
4065
4066/* TODO check what callers really want: bs->node_name or blk_name() */
4067const char *bdrv_get_device_name(const BlockDriverState *bs)
4068{
4069    return bdrv_get_parent_name(bs) ?: "";
4070}
4071
4072/* This can be used to identify nodes that might not have a device
4073 * name associated. Since node and device names live in the same
4074 * namespace, the result is unambiguous. The exception is if both are
4075 * absent, then this returns an empty (non-null) string. */
4076const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
4077{
4078    return bdrv_get_parent_name(bs) ?: bs->node_name;
4079}
4080
4081int bdrv_get_flags(BlockDriverState *bs)
4082{
4083    return bs->open_flags;
4084}
4085
4086int bdrv_has_zero_init_1(BlockDriverState *bs)
4087{
4088    return 1;
4089}
4090
4091int bdrv_has_zero_init(BlockDriverState *bs)
4092{
4093    if (!bs->drv) {
4094        return 0;
4095    }
4096
4097    /* If BS is a copy on write image, it is initialized to
4098       the contents of the base image, which may not be zeroes.  */
4099    if (bs->backing) {
4100        return 0;
4101    }
4102    if (bs->drv->bdrv_has_zero_init) {
4103        return bs->drv->bdrv_has_zero_init(bs);
4104    }
4105    if (bs->file && bs->drv->is_filter) {
4106        return bdrv_has_zero_init(bs->file->bs);
4107    }
4108
4109    /* safe default */
4110    return 0;
4111}
4112
4113bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4114{
4115    BlockDriverInfo bdi;
4116
4117    if (bs->backing) {
4118        return false;
4119    }
4120
4121    if (bdrv_get_info(bs, &bdi) == 0) {
4122        return bdi.unallocated_blocks_are_zero;
4123    }
4124
4125    return false;
4126}
4127
4128bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4129{
4130    if (!(bs->open_flags & BDRV_O_UNMAP)) {
4131        return false;
4132    }
4133
4134    return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
4135}
4136
4137const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4138{
4139    if (bs->backing && bs->backing->bs->encrypted)
4140        return bs->backing_file;
4141    else if (bs->encrypted)
4142        return bs->filename;
4143    else
4144        return NULL;
4145}
4146
4147void bdrv_get_backing_filename(BlockDriverState *bs,
4148                               char *filename, int filename_size)
4149{
4150    pstrcpy(filename, filename_size, bs->backing_file);
4151}
4152
4153int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4154{
4155    BlockDriver *drv = bs->drv;
4156    /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4157    if (!drv) {
4158        return -ENOMEDIUM;
4159    }
4160    if (!drv->bdrv_get_info) {
4161        if (bs->file && drv->is_filter) {
4162            return bdrv_get_info(bs->file->bs, bdi);
4163        }
4164        return -ENOTSUP;
4165    }
4166    memset(bdi, 0, sizeof(*bdi));
4167    return drv->bdrv_get_info(bs, bdi);
4168}
4169
4170ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4171{
4172    BlockDriver *drv = bs->drv;
4173    if (drv && drv->bdrv_get_specific_info) {
4174        return drv->bdrv_get_specific_info(bs);
4175    }
4176    return NULL;
4177}
4178
4179void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4180{
4181    if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4182        return;
4183    }
4184
4185    bs->drv->bdrv_debug_event(bs, event);
4186}
4187
4188int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4189                          const char *tag)
4190{
4191    while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4192        bs = bs->file ? bs->file->bs : NULL;
4193    }
4194
4195    if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4196        return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4197    }
4198
4199    return -ENOTSUP;
4200}
4201
4202int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4203{
4204    while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4205        bs = bs->file ? bs->file->bs : NULL;
4206    }
4207
4208    if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4209        return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4210    }
4211
4212    return -ENOTSUP;
4213}
4214
4215int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4216{
4217    while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4218        bs = bs->file ? bs->file->bs : NULL;
4219    }
4220
4221    if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4222        return bs->drv->bdrv_debug_resume(bs, tag);
4223    }
4224
4225    return -ENOTSUP;
4226}
4227
4228bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4229{
4230    while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4231        bs = bs->file ? bs->file->bs : NULL;
4232    }
4233
4234    if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4235        return bs->drv->bdrv_debug_is_suspended(bs, tag);
4236    }
4237
4238    return false;
4239}
4240
4241/* backing_file can either be relative, or absolute, or a protocol.  If it is
4242 * relative, it must be relative to the chain.  So, passing in bs->filename
4243 * from a BDS as backing_file should not be done, as that may be relative to
4244 * the CWD rather than the chain. */
4245BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4246        const char *backing_file)
4247{
4248    char *filename_full = NULL;
4249    char *backing_file_full = NULL;
4250    char *filename_tmp = NULL;
4251    int is_protocol = 0;
4252    BlockDriverState *curr_bs = NULL;
4253    BlockDriverState *retval = NULL;
4254    Error *local_error = NULL;
4255
4256    if (!bs || !bs->drv || !backing_file) {
4257        return NULL;
4258    }
4259
4260    filename_full     = g_malloc(PATH_MAX);
4261    backing_file_full = g_malloc(PATH_MAX);
4262    filename_tmp      = g_malloc(PATH_MAX);
4263
4264    is_protocol = path_has_protocol(backing_file);
4265
4266    for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4267
4268        /* If either of the filename paths is actually a protocol, then
4269         * compare unmodified paths; otherwise make paths relative */
4270        if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4271            if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4272                retval = curr_bs->backing->bs;
4273                break;
4274            }
4275            /* Also check against the full backing filename for the image */
4276            bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4277                                           &local_error);
4278            if (local_error == NULL) {
4279                if (strcmp(backing_file, backing_file_full) == 0) {
4280                    retval = curr_bs->backing->bs;
4281                    break;
4282                }
4283            } else {
4284                error_free(local_error);
4285                local_error = NULL;
4286            }
4287        } else {
4288            /* If not an absolute filename path, make it relative to the current
4289             * image's filename path */
4290            path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4291                         backing_file);
4292
4293            /* We are going to compare absolute pathnames */
4294            if (!realpath(filename_tmp, filename_full)) {
4295                continue;
4296            }
4297
4298            /* We need to make sure the backing filename we are comparing against
4299             * is relative to the current image filename (or absolute) */
4300            path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4301                         curr_bs->backing_file);
4302
4303            if (!realpath(filename_tmp, backing_file_full)) {
4304                continue;
4305            }
4306
4307            if (strcmp(backing_file_full, filename_full) == 0) {
4308                retval = curr_bs->backing->bs;
4309                break;
4310            }
4311        }
4312    }
4313
4314    g_free(filename_full);
4315    g_free(backing_file_full);
4316    g_free(filename_tmp);
4317    return retval;
4318}
4319
4320void bdrv_init(void)
4321{
4322    module_call_init(MODULE_INIT_BLOCK);
4323}
4324
4325void bdrv_init_with_whitelist(void)
4326{
4327    use_bdrv_whitelist = 1;
4328    bdrv_init();
4329}
4330
4331static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4332                                                  Error **errp)
4333{
4334    BdrvChild *child, *parent;
4335    uint64_t perm, shared_perm;
4336    Error *local_err = NULL;
4337    int ret;
4338
4339    if (!bs->drv)  {
4340        return;
4341    }
4342
4343    if (!(bs->open_flags & BDRV_O_INACTIVE)) {
4344        return;
4345    }
4346
4347    QLIST_FOREACH(child, &bs->children, next) {
4348        bdrv_co_invalidate_cache(child->bs, &local_err);
4349        if (local_err) {
4350            error_propagate(errp, local_err);
4351            return;
4352        }
4353    }
4354
4355    /*
4356     * Update permissions, they may differ for inactive nodes.
4357     *
4358     * Note that the required permissions of inactive images are always a
4359     * subset of the permissions required after activating the image. This
4360     * allows us to just get the permissions upfront without restricting
4361     * drv->bdrv_invalidate_cache().
4362     *
4363     * It also means that in error cases, we don't have to try and revert to
4364     * the old permissions (which is an operation that could fail, too). We can
4365     * just keep the extended permissions for the next time that an activation
4366     * of the image is tried.
4367     */
4368    bs->open_flags &= ~BDRV_O_INACTIVE;
4369    bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4370    ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4371    if (ret < 0) {
4372        bs->open_flags |= BDRV_O_INACTIVE;
4373        error_propagate(errp, local_err);
4374        return;
4375    }
4376    bdrv_set_perm(bs, perm, shared_perm);
4377
4378    if (bs->drv->bdrv_co_invalidate_cache) {
4379        bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
4380        if (local_err) {
4381            bs->open_flags |= BDRV_O_INACTIVE;
4382            error_propagate(errp, local_err);
4383            return;
4384        }
4385    }
4386
4387    ret = refresh_total_sectors(bs, bs->total_sectors);
4388    if (ret < 0) {
4389        bs->open_flags |= BDRV_O_INACTIVE;
4390        error_setg_errno(errp, -ret, "Could not refresh total sector count");
4391        return;
4392    }
4393
4394    QLIST_FOREACH(parent, &bs->parents, next_parent) {
4395        if (parent->role->activate) {
4396            parent->role->activate(parent, &local_err);
4397            if (local_err) {
4398                bs->open_flags |= BDRV_O_INACTIVE;
4399                error_propagate(errp, local_err);
4400                return;
4401            }
4402        }
4403    }
4404}
4405
4406typedef struct InvalidateCacheCo {
4407    BlockDriverState *bs;
4408    Error **errp;
4409    bool done;
4410} InvalidateCacheCo;
4411
4412static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4413{
4414    InvalidateCacheCo *ico = opaque;
4415    bdrv_co_invalidate_cache(ico->bs, ico->errp);
4416    ico->done = true;
4417}
4418
4419void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4420{
4421    Coroutine *co;
4422    InvalidateCacheCo ico = {
4423        .bs = bs,
4424        .done = false,
4425        .errp = errp
4426    };
4427
4428    if (qemu_in_coroutine()) {
4429        /* Fast-path if already in coroutine context */
4430        bdrv_invalidate_cache_co_entry(&ico);
4431    } else {
4432        co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
4433        qemu_coroutine_enter(co);
4434        BDRV_POLL_WHILE(bs, !ico.done);
4435    }
4436}
4437
4438void bdrv_invalidate_cache_all(Error **errp)
4439{
4440    BlockDriverState *bs;
4441    Error *local_err = NULL;
4442    BdrvNextIterator it;
4443
4444    for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4445        AioContext *aio_context = bdrv_get_aio_context(bs);
4446
4447        aio_context_acquire(aio_context);
4448        bdrv_invalidate_cache(bs, &local_err);
4449        aio_context_release(aio_context);
4450        if (local_err) {
4451            error_propagate(errp, local_err);
4452            bdrv_next_cleanup(&it);
4453            return;
4454        }
4455    }
4456}
4457
4458static int bdrv_inactivate_recurse(BlockDriverState *bs,
4459                                   bool setting_flag)
4460{
4461    BdrvChild *child, *parent;
4462    int ret;
4463
4464    if (!bs->drv) {
4465        return -ENOMEDIUM;
4466    }
4467
4468    if (!setting_flag && bs->drv->bdrv_inactivate) {
4469        ret = bs->drv->bdrv_inactivate(bs);
4470        if (ret < 0) {
4471            return ret;
4472        }
4473    }
4474
4475    if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
4476        uint64_t perm, shared_perm;
4477
4478        QLIST_FOREACH(parent, &bs->parents, next_parent) {
4479            if (parent->role->inactivate) {
4480                ret = parent->role->inactivate(parent);
4481                if (ret < 0) {
4482                    return ret;
4483                }
4484            }
4485        }
4486
4487        bs->open_flags |= BDRV_O_INACTIVE;
4488
4489        /* Update permissions, they may differ for inactive nodes */
4490        bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4491        bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
4492        bdrv_set_perm(bs, perm, shared_perm);
4493    }
4494
4495    QLIST_FOREACH(child, &bs->children, next) {
4496        ret = bdrv_inactivate_recurse(child->bs, setting_flag);
4497        if (ret < 0) {
4498            return ret;
4499        }
4500    }
4501
4502    /* At this point persistent bitmaps should be already stored by the format
4503     * driver */
4504    bdrv_release_persistent_dirty_bitmaps(bs);
4505
4506    return 0;
4507}
4508
4509int bdrv_inactivate_all(void)
4510{
4511    BlockDriverState *bs = NULL;
4512    BdrvNextIterator it;
4513    int ret = 0;
4514    int pass;
4515    GSList *aio_ctxs = NULL, *ctx;
4516
4517    for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4518        AioContext *aio_context = bdrv_get_aio_context(bs);
4519
4520        if (!g_slist_find(aio_ctxs, aio_context)) {
4521            aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4522            aio_context_acquire(aio_context);
4523        }
4524    }
4525
4526    /* We do two passes of inactivation. The first pass calls to drivers'
4527     * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4528     * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4529     * is allowed. */
4530    for (pass = 0; pass < 2; pass++) {
4531        for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4532            ret = bdrv_inactivate_recurse(bs, pass);
4533            if (ret < 0) {
4534                bdrv_next_cleanup(&it);
4535                goto out;
4536            }
4537        }
4538    }
4539
4540out:
4541    for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4542        AioContext *aio_context = ctx->data;
4543        aio_context_release(aio_context);
4544    }
4545    g_slist_free(aio_ctxs);
4546
4547    return ret;
4548}
4549
4550/**************************************************************/
4551/* removable device support */
4552
4553/**
4554 * Return TRUE if the media is present
4555 */
4556bool bdrv_is_inserted(BlockDriverState *bs)
4557{
4558    BlockDriver *drv = bs->drv;
4559    BdrvChild *child;
4560
4561    if (!drv) {
4562        return false;
4563    }
4564    if (drv->bdrv_is_inserted) {
4565        return drv->bdrv_is_inserted(bs);
4566    }
4567    QLIST_FOREACH(child, &bs->children, next) {
4568        if (!bdrv_is_inserted(child->bs)) {
4569            return false;
4570        }
4571    }
4572    return true;
4573}
4574
4575/**
4576 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4577 */
4578void bdrv_eject(BlockDriverState *bs, bool eject_flag)
4579{
4580    BlockDriver *drv = bs->drv;
4581
4582    if (drv && drv->bdrv_eject) {
4583        drv->bdrv_eject(bs, eject_flag);
4584    }
4585}
4586
4587/**
4588 * Lock or unlock the media (if it is locked, the user won't be able
4589 * to eject it manually).
4590 */
4591void bdrv_lock_medium(BlockDriverState *bs, bool locked)
4592{
4593    BlockDriver *drv = bs->drv;
4594
4595    trace_bdrv_lock_medium(bs, locked);
4596
4597    if (drv && drv->bdrv_lock_medium) {
4598        drv->bdrv_lock_medium(bs, locked);
4599    }
4600}
4601
4602/* Get a reference to bs */
4603void bdrv_ref(BlockDriverState *bs)
4604{
4605    bs->refcnt++;
4606}
4607
4608/* Release a previously grabbed reference to bs.
4609 * If after releasing, reference count is zero, the BlockDriverState is
4610 * deleted. */
4611void bdrv_unref(BlockDriverState *bs)
4612{
4613    if (!bs) {
4614        return;
4615    }
4616    assert(bs->refcnt > 0);
4617    if (--bs->refcnt == 0) {
4618        bdrv_delete(bs);
4619    }
4620}
4621
4622struct BdrvOpBlocker {
4623    Error *reason;
4624    QLIST_ENTRY(BdrvOpBlocker) list;
4625};
4626
4627bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4628{
4629    BdrvOpBlocker *blocker;
4630    assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4631    if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4632        blocker = QLIST_FIRST(&bs->op_blockers[op]);
4633        error_propagate(errp, error_copy(blocker->reason));
4634        error_prepend(errp, "Node '%s' is busy: ",
4635                      bdrv_get_device_or_node_name(bs));
4636        return true;
4637    }
4638    return false;
4639}
4640
4641void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4642{
4643    BdrvOpBlocker *blocker;
4644    assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4645
4646    blocker = g_new0(BdrvOpBlocker, 1);
4647    blocker->reason = reason;
4648    QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4649}
4650
4651void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4652{
4653    BdrvOpBlocker *blocker, *next;
4654    assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4655    QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4656        if (blocker->reason == reason) {
4657            QLIST_REMOVE(blocker, list);
4658            g_free(blocker);
4659        }
4660    }
4661}
4662
4663void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4664{
4665    int i;
4666    for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4667        bdrv_op_block(bs, i, reason);
4668    }
4669}
4670
4671void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4672{
4673    int i;
4674    for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4675        bdrv_op_unblock(bs, i, reason);
4676    }
4677}
4678
4679bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4680{
4681    int i;
4682
4683    for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4684        if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4685            return false;
4686        }
4687    }
4688    return true;
4689}
4690
4691void bdrv_img_create(const char *filename, const char *fmt,
4692                     const char *base_filename, const char *base_fmt,
4693                     char *options, uint64_t img_size, int flags, bool quiet,
4694                     Error **errp)
4695{
4696    QemuOptsList *create_opts = NULL;
4697    QemuOpts *opts = NULL;
4698    const char *backing_fmt, *backing_file;
4699    int64_t size;
4700    BlockDriver *drv, *proto_drv;
4701    Error *local_err = NULL;
4702    int ret = 0;
4703
4704    /* Find driver and parse its options */
4705    drv = bdrv_find_format(fmt);
4706    if (!drv) {
4707        error_setg(errp, "Unknown file format '%s'", fmt);
4708        return;
4709    }
4710
4711    proto_drv = bdrv_find_protocol(filename, true, errp);
4712    if (!proto_drv) {
4713        return;
4714    }
4715
4716    if (!drv->create_opts) {
4717        error_setg(errp, "Format driver '%s' does not support image creation",
4718                   drv->format_name);
4719        return;
4720    }
4721
4722    if (!proto_drv->create_opts) {
4723        error_setg(errp, "Protocol driver '%s' does not support image creation",
4724                   proto_drv->format_name);
4725        return;
4726    }
4727
4728    create_opts = qemu_opts_append(create_opts, drv->create_opts);
4729    create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4730
4731    /* Create parameter list with default values */
4732    opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4733    qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4734
4735    /* Parse -o options */
4736    if (options) {
4737        qemu_opts_do_parse(opts, options, NULL, &local_err);
4738        if (local_err) {
4739            error_report_err(local_err);
4740            local_err = NULL;
4741            error_setg(errp, "Invalid options for file format '%s'", fmt);
4742            goto out;
4743        }
4744    }
4745
4746    if (base_filename) {
4747        qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
4748        if (local_err) {
4749            error_setg(errp, "Backing file not supported for file format '%s'",
4750                       fmt);
4751            goto out;
4752        }
4753    }
4754
4755    if (base_fmt) {
4756        qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
4757        if (local_err) {
4758            error_setg(errp, "Backing file format not supported for file "
4759                             "format '%s'", fmt);
4760            goto out;
4761        }
4762    }
4763
4764    backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
4765    if (backing_file) {
4766        if (!strcmp(filename, backing_file)) {
4767            error_setg(errp, "Error: Trying to create an image with the "
4768                             "same filename as the backing file");
4769            goto out;
4770        }
4771    }
4772
4773    backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4774
4775    /* The size for the image must always be specified, unless we have a backing
4776     * file and we have not been forbidden from opening it. */
4777    size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
4778    if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
4779        BlockDriverState *bs;
4780        char *full_backing = g_new0(char, PATH_MAX);
4781        int back_flags;
4782        QDict *backing_options = NULL;
4783
4784        bdrv_get_full_backing_filename_from_filename(filename, backing_file,
4785                                                     full_backing, PATH_MAX,
4786                                                     &local_err);
4787        if (local_err) {
4788            g_free(full_backing);
4789            goto out;
4790        }
4791
4792        /* backing files always opened read-only */
4793        back_flags = flags;
4794        back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4795
4796        backing_options = qdict_new();
4797        if (backing_fmt) {
4798            qdict_put_str(backing_options, "driver", backing_fmt);
4799        }
4800        qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4801
4802        bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
4803                       &local_err);
4804        g_free(full_backing);
4805        if (!bs && size != -1) {
4806            /* Couldn't open BS, but we have a size, so it's nonfatal */
4807            warn_reportf_err(local_err,
4808                            "Could not verify backing image. "
4809                            "This may become an error in future versions.\n");
4810            local_err = NULL;
4811        } else if (!bs) {
4812            /* Couldn't open bs, do not have size */
4813            error_append_hint(&local_err,
4814                              "Could not open backing image to determine size.\n");
4815            goto out;
4816        } else {
4817            if (size == -1) {
4818                /* Opened BS, have no size */
4819                size = bdrv_getlength(bs);
4820                if (size < 0) {
4821                    error_setg_errno(errp, -size, "Could not get size of '%s'",
4822                                     backing_file);
4823                    bdrv_unref(bs);
4824                    goto out;
4825                }
4826                qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
4827            }
4828            bdrv_unref(bs);
4829        }
4830    } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
4831
4832    if (size == -1) {
4833        error_setg(errp, "Image creation needs a size parameter");
4834        goto out;
4835    }
4836
4837    if (!quiet) {
4838        printf("Formatting '%s', fmt=%s ", filename, fmt);
4839        qemu_opts_print(opts, " ");
4840        puts("");
4841    }
4842
4843    ret = bdrv_create(drv, filename, opts, &local_err);
4844
4845    if (ret == -EFBIG) {
4846        /* This is generally a better message than whatever the driver would
4847         * deliver (especially because of the cluster_size_hint), since that
4848         * is most probably not much different from "image too large". */
4849        const char *cluster_size_hint = "";
4850        if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4851            cluster_size_hint = " (try using a larger cluster size)";
4852        }
4853        error_setg(errp, "The image size is too large for file format '%s'"
4854                   "%s", fmt, cluster_size_hint);
4855        error_free(local_err);
4856        local_err = NULL;
4857    }
4858
4859out:
4860    qemu_opts_del(opts);
4861    qemu_opts_free(create_opts);
4862    error_propagate(errp, local_err);
4863}
4864
4865AioContext *bdrv_get_aio_context(BlockDriverState *bs)
4866{
4867    return bs ? bs->aio_context : qemu_get_aio_context();
4868}
4869
4870AioWait *bdrv_get_aio_wait(BlockDriverState *bs)
4871{
4872    return bs ? &bs->wait : NULL;
4873}
4874
4875void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4876{
4877    aio_co_enter(bdrv_get_aio_context(bs), co);
4878}
4879
4880static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4881{
4882    QLIST_REMOVE(ban, list);
4883    g_free(ban);
4884}
4885
4886void bdrv_detach_aio_context(BlockDriverState *bs)
4887{
4888    BdrvAioNotifier *baf, *baf_tmp;
4889    BdrvChild *child;
4890
4891    if (!bs->drv) {
4892        return;
4893    }
4894
4895    assert(!bs->walking_aio_notifiers);
4896    bs->walking_aio_notifiers = true;
4897    QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4898        if (baf->deleted) {
4899            bdrv_do_remove_aio_context_notifier(baf);
4900        } else {
4901            baf->detach_aio_context(baf->opaque);
4902        }
4903    }
4904    /* Never mind iterating again to check for ->deleted.  bdrv_close() will
4905     * remove remaining aio notifiers if we aren't called again.
4906     */
4907    bs->walking_aio_notifiers = false;
4908
4909    if (bs->drv->bdrv_detach_aio_context) {
4910        bs->drv->bdrv_detach_aio_context(bs);
4911    }
4912    QLIST_FOREACH(child, &bs->children, next) {
4913        bdrv_detach_aio_context(child->bs);
4914    }
4915
4916    bs->aio_context = NULL;
4917}
4918
4919void bdrv_attach_aio_context(BlockDriverState *bs,
4920                             AioContext *new_context)
4921{
4922    BdrvAioNotifier *ban, *ban_tmp;
4923    BdrvChild *child;
4924
4925    if (!bs->drv) {
4926        return;
4927    }
4928
4929    bs->aio_context = new_context;
4930
4931    QLIST_FOREACH(child, &bs->children, next) {
4932        bdrv_attach_aio_context(child->bs, new_context);
4933    }
4934    if (bs->drv->bdrv_attach_aio_context) {
4935        bs->drv->bdrv_attach_aio_context(bs, new_context);
4936    }
4937
4938    assert(!bs->walking_aio_notifiers);
4939    bs->walking_aio_notifiers = true;
4940    QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4941        if (ban->deleted) {
4942            bdrv_do_remove_aio_context_notifier(ban);
4943        } else {
4944            ban->attached_aio_context(new_context, ban->opaque);
4945        }
4946    }
4947    bs->walking_aio_notifiers = false;
4948}
4949
4950void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4951{
4952    AioContext *ctx = bdrv_get_aio_context(bs);
4953
4954    aio_disable_external(ctx);
4955    bdrv_parent_drained_begin(bs, NULL, false);
4956    bdrv_drain(bs); /* ensure there are no in-flight requests */
4957
4958    while (aio_poll(ctx, false)) {
4959        /* wait for all bottom halves to execute */
4960    }
4961
4962    bdrv_detach_aio_context(bs);
4963
4964    /* This function executes in the old AioContext so acquire the new one in
4965     * case it runs in a different thread.
4966     */
4967    aio_context_acquire(new_context);
4968    bdrv_attach_aio_context(bs, new_context);
4969    bdrv_parent_drained_end(bs, NULL, false);
4970    aio_enable_external(ctx);
4971    aio_context_release(new_context);
4972}
4973
4974void bdrv_add_aio_context_notifier(BlockDriverState *bs,
4975        void (*attached_aio_context)(AioContext *new_context, void *opaque),
4976        void (*detach_aio_context)(void *opaque), void *opaque)
4977{
4978    BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
4979    *ban = (BdrvAioNotifier){
4980        .attached_aio_context = attached_aio_context,
4981        .detach_aio_context   = detach_aio_context,
4982        .opaque               = opaque
4983    };
4984
4985    QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
4986}
4987
4988void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
4989                                      void (*attached_aio_context)(AioContext *,
4990                                                                   void *),
4991                                      void (*detach_aio_context)(void *),
4992                                      void *opaque)
4993{
4994    BdrvAioNotifier *ban, *ban_next;
4995
4996    QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4997        if (ban->attached_aio_context == attached_aio_context &&
4998            ban->detach_aio_context   == detach_aio_context   &&
4999            ban->opaque               == opaque               &&
5000            ban->deleted              == false)
5001        {
5002            if (bs->walking_aio_notifiers) {
5003                ban->deleted = true;
5004            } else {
5005                bdrv_do_remove_aio_context_notifier(ban);
5006            }
5007            return;
5008        }
5009    }
5010
5011    abort();
5012}
5013
5014int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5015                       BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5016                       Error **errp)
5017{
5018    if (!bs->drv) {
5019        error_setg(errp, "Node is ejected");
5020        return -ENOMEDIUM;
5021    }
5022    if (!bs->drv->bdrv_amend_options) {
5023        error_setg(errp, "Block driver '%s' does not support option amendment",
5024                   bs->drv->format_name);
5025        return -ENOTSUP;
5026    }
5027    return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
5028}
5029
5030/* This function will be called by the bdrv_recurse_is_first_non_filter method
5031 * of block filter and by bdrv_is_first_non_filter.
5032 * It is used to test if the given bs is the candidate or recurse more in the
5033 * node graph.
5034 */
5035bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5036                                      BlockDriverState *candidate)
5037{
5038    /* return false if basic checks fails */
5039    if (!bs || !bs->drv) {
5040        return false;
5041    }
5042
5043    /* the code reached a non block filter driver -> check if the bs is
5044     * the same as the candidate. It's the recursion termination condition.
5045     */
5046    if (!bs->drv->is_filter) {
5047        return bs == candidate;
5048    }
5049    /* Down this path the driver is a block filter driver */
5050
5051    /* If the block filter recursion method is defined use it to recurse down
5052     * the node graph.
5053     */
5054    if (bs->drv->bdrv_recurse_is_first_non_filter) {
5055        return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5056    }
5057
5058    /* the driver is a block filter but don't allow to recurse -> return false
5059     */
5060    return false;
5061}
5062
5063/* This function checks if the candidate is the first non filter bs down it's
5064 * bs chain. Since we don't have pointers to parents it explore all bs chains
5065 * from the top. Some filters can choose not to pass down the recursion.
5066 */
5067bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5068{
5069    BlockDriverState *bs;
5070    BdrvNextIterator it;
5071
5072    /* walk down the bs forest recursively */
5073    for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5074        bool perm;
5075
5076        /* try to recurse in this top level bs */
5077        perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5078
5079        /* candidate is the first non filter */
5080        if (perm) {
5081            bdrv_next_cleanup(&it);
5082            return true;
5083        }
5084    }
5085
5086    return false;
5087}
5088
5089BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5090                                        const char *node_name, Error **errp)
5091{
5092    BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5093    AioContext *aio_context;
5094
5095    if (!to_replace_bs) {
5096        error_setg(errp, "Node name '%s' not found", node_name);
5097        return NULL;
5098    }
5099
5100    aio_context = bdrv_get_aio_context(to_replace_bs);
5101    aio_context_acquire(aio_context);
5102
5103    if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5104        to_replace_bs = NULL;
5105        goto out;
5106    }
5107
5108    /* We don't want arbitrary node of the BDS chain to be replaced only the top
5109     * most non filter in order to prevent data corruption.
5110     * Another benefit is that this tests exclude backing files which are
5111     * blocked by the backing blockers.
5112     */
5113    if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
5114        error_setg(errp, "Only top most non filter can be replaced");
5115        to_replace_bs = NULL;
5116        goto out;
5117    }
5118
5119out:
5120    aio_context_release(aio_context);
5121    return to_replace_bs;
5122}
5123
5124static bool append_open_options(QDict *d, BlockDriverState *bs)
5125{
5126    const QDictEntry *entry;
5127    QemuOptDesc *desc;
5128    BdrvChild *child;
5129    bool found_any = false;
5130    const char *p;
5131
5132    for (entry = qdict_first(bs->options); entry;
5133         entry = qdict_next(bs->options, entry))
5134    {
5135        /* Exclude options for children */
5136        QLIST_FOREACH(child, &bs->children, next) {
5137            if (strstart(qdict_entry_key(entry), child->name, &p)
5138                && (!*p || *p == '.'))
5139            {
5140                break;
5141            }
5142        }
5143        if (child) {
5144            continue;
5145        }
5146
5147        /* And exclude all non-driver-specific options */
5148        for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
5149            if (!strcmp(qdict_entry_key(entry), desc->name)) {
5150                break;
5151            }
5152        }
5153        if (desc->name) {
5154            continue;
5155        }
5156
5157        qdict_put_obj(d, qdict_entry_key(entry),
5158                      qobject_ref(qdict_entry_value(entry)));
5159        found_any = true;
5160    }
5161
5162    return found_any;
5163}
5164
5165/* Updates the following BDS fields:
5166 *  - exact_filename: A filename which may be used for opening a block device
5167 *                    which (mostly) equals the given BDS (even without any
5168 *                    other options; so reading and writing must return the same
5169 *                    results, but caching etc. may be different)
5170 *  - full_open_options: Options which, when given when opening a block device
5171 *                       (without a filename), result in a BDS (mostly)
5172 *                       equalling the given one
5173 *  - filename: If exact_filename is set, it is copied here. Otherwise,
5174 *              full_open_options is converted to a JSON object, prefixed with
5175 *              "json:" (for use through the JSON pseudo protocol) and put here.
5176 */
5177void bdrv_refresh_filename(BlockDriverState *bs)
5178{
5179    BlockDriver *drv = bs->drv;
5180    QDict *opts;
5181
5182    if (!drv) {
5183        return;
5184    }
5185
5186    /* This BDS's file name will most probably depend on its file's name, so
5187     * refresh that first */
5188    if (bs->file) {
5189        bdrv_refresh_filename(bs->file->bs);
5190    }
5191
5192    if (drv->bdrv_refresh_filename) {
5193        /* Obsolete information is of no use here, so drop the old file name
5194         * information before refreshing it */
5195        bs->exact_filename[0] = '\0';
5196        if (bs->full_open_options) {
5197            qobject_unref(bs->full_open_options);
5198            bs->full_open_options = NULL;
5199        }
5200
5201        opts = qdict_new();
5202        append_open_options(opts, bs);
5203        drv->bdrv_refresh_filename(bs, opts);
5204        qobject_unref(opts);
5205    } else if (bs->file) {
5206        /* Try to reconstruct valid information from the underlying file */
5207        bool has_open_options;
5208
5209        bs->exact_filename[0] = '\0';
5210        if (bs->full_open_options) {
5211            qobject_unref(bs->full_open_options);
5212            bs->full_open_options = NULL;
5213        }
5214
5215        opts = qdict_new();
5216        has_open_options = append_open_options(opts, bs);
5217
5218        /* If no specific options have been given for this BDS, the filename of
5219         * the underlying file should suffice for this one as well */
5220        if (bs->file->bs->exact_filename[0] && !has_open_options) {
5221            strcpy(bs->exact_filename, bs->file->bs->exact_filename);
5222        }
5223        /* Reconstructing the full options QDict is simple for most format block
5224         * drivers, as long as the full options are known for the underlying
5225         * file BDS. The full options QDict of that file BDS should somehow
5226         * contain a representation of the filename, therefore the following
5227         * suffices without querying the (exact_)filename of this BDS. */
5228        if (bs->file->bs->full_open_options) {
5229            qdict_put_str(opts, "driver", drv->format_name);
5230            qdict_put(opts, "file",
5231                      qobject_ref(bs->file->bs->full_open_options));
5232
5233            bs->full_open_options = opts;
5234        } else {
5235            qobject_unref(opts);
5236        }
5237    } else if (!bs->full_open_options && qdict_size(bs->options)) {
5238        /* There is no underlying file BDS (at least referenced by BDS.file),
5239         * so the full options QDict should be equal to the options given
5240         * specifically for this block device when it was opened (plus the
5241         * driver specification).
5242         * Because those options don't change, there is no need to update
5243         * full_open_options when it's already set. */
5244
5245        opts = qdict_new();
5246        append_open_options(opts, bs);
5247        qdict_put_str(opts, "driver", drv->format_name);
5248
5249        if (bs->exact_filename[0]) {
5250            /* This may not work for all block protocol drivers (some may
5251             * require this filename to be parsed), but we have to find some
5252             * default solution here, so just include it. If some block driver
5253             * does not support pure options without any filename at all or
5254             * needs some special format of the options QDict, it needs to
5255             * implement the driver-specific bdrv_refresh_filename() function.
5256             */
5257            qdict_put_str(opts, "filename", bs->exact_filename);
5258        }
5259
5260        bs->full_open_options = opts;
5261    }
5262
5263    if (bs->exact_filename[0]) {
5264        pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5265    } else if (bs->full_open_options) {
5266        QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5267        snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5268                 qstring_get_str(json));
5269        qobject_unref(json);
5270    }
5271}
5272
5273/*
5274 * Hot add/remove a BDS's child. So the user can take a child offline when
5275 * it is broken and take a new child online
5276 */
5277void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5278                    Error **errp)
5279{
5280
5281    if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5282        error_setg(errp, "The node %s does not support adding a child",
5283                   bdrv_get_device_or_node_name(parent_bs));
5284        return;
5285    }
5286
5287    if (!QLIST_EMPTY(&child_bs->parents)) {
5288        error_setg(errp, "The node %s already has a parent",
5289                   child_bs->node_name);
5290        return;
5291    }
5292
5293    parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5294}
5295
5296void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5297{
5298    BdrvChild *tmp;
5299
5300    if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5301        error_setg(errp, "The node %s does not support removing a child",
5302                   bdrv_get_device_or_node_name(parent_bs));
5303        return;
5304    }
5305
5306    QLIST_FOREACH(tmp, &parent_bs->children, next) {
5307        if (tmp == child) {
5308            break;
5309        }
5310    }
5311
5312    if (!tmp) {
5313        error_setg(errp, "The node %s does not have a child named %s",
5314                   bdrv_get_device_or_node_name(parent_bs),
5315                   bdrv_get_device_or_node_name(child->bs));
5316        return;
5317    }
5318
5319    parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5320}
5321
5322bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5323                                     uint32_t granularity, Error **errp)
5324{
5325    BlockDriver *drv = bs->drv;
5326
5327    if (!drv) {
5328        error_setg_errno(errp, ENOMEDIUM,
5329                         "Can't store persistent bitmaps to %s",
5330                         bdrv_get_device_or_node_name(bs));
5331        return false;
5332    }
5333
5334    if (!drv->bdrv_can_store_new_dirty_bitmap) {
5335        error_setg_errno(errp, ENOTSUP,
5336                         "Can't store persistent bitmaps to %s",
5337                         bdrv_get_device_or_node_name(bs));
5338        return false;
5339    }
5340
5341    return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
5342}
5343