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