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 #include "config-host.h" 25 #include "qemu-common.h" 26 #include "trace.h" 27 #include "block/block_int.h" 28 #include "block/blockjob.h" 29 #include "qemu/module.h" 30 #include "qapi/qmp/qjson.h" 31 #include "sysemu/sysemu.h" 32 #include "sysemu/blockdev.h" /* FIXME layering violation */ 33 #include "qemu/notify.h" 34 #include "block/coroutine.h" 35 #include "block/qapi.h" 36 #include "qmp-commands.h" 37 #include "qemu/timer.h" 38 #include "qapi-event.h" 39 40 #ifdef CONFIG_BSD 41 #include <sys/types.h> 42 #include <sys/stat.h> 43 #include <sys/ioctl.h> 44 #include <sys/queue.h> 45 #ifndef __DragonFly__ 46 #include <sys/disk.h> 47 #endif 48 #endif 49 50 #ifdef _WIN32 51 #include <windows.h> 52 #endif 53 54 struct BdrvDirtyBitmap { 55 HBitmap *bitmap; 56 QLIST_ENTRY(BdrvDirtyBitmap) list; 57 }; 58 59 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 60 61 #define COROUTINE_POOL_RESERVATION 64 /* number of coroutines to reserve */ 62 63 static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load); 64 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 65 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 66 BlockDriverCompletionFunc *cb, void *opaque); 67 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 68 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 69 BlockDriverCompletionFunc *cb, void *opaque); 70 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 71 int64_t sector_num, int nb_sectors, 72 QEMUIOVector *iov); 73 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 74 int64_t sector_num, int nb_sectors, 75 QEMUIOVector *iov); 76 static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs, 77 int64_t offset, unsigned int bytes, QEMUIOVector *qiov, 78 BdrvRequestFlags flags); 79 static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs, 80 int64_t offset, unsigned int bytes, QEMUIOVector *qiov, 81 BdrvRequestFlags flags); 82 static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 83 int64_t sector_num, 84 QEMUIOVector *qiov, 85 int nb_sectors, 86 BdrvRequestFlags flags, 87 BlockDriverCompletionFunc *cb, 88 void *opaque, 89 bool is_write); 90 static void coroutine_fn bdrv_co_do_rw(void *opaque); 91 static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 92 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags); 93 94 static QTAILQ_HEAD(, BlockDriverState) bdrv_states = 95 QTAILQ_HEAD_INITIALIZER(bdrv_states); 96 97 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 98 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 99 100 static QLIST_HEAD(, BlockDriver) bdrv_drivers = 101 QLIST_HEAD_INITIALIZER(bdrv_drivers); 102 103 /* If non-zero, use only whitelisted block drivers */ 104 static int use_bdrv_whitelist; 105 106 #ifdef _WIN32 107 static int is_windows_drive_prefix(const char *filename) 108 { 109 return (((filename[0] >= 'a' && filename[0] <= 'z') || 110 (filename[0] >= 'A' && filename[0] <= 'Z')) && 111 filename[1] == ':'); 112 } 113 114 int is_windows_drive(const char *filename) 115 { 116 if (is_windows_drive_prefix(filename) && 117 filename[2] == '\0') 118 return 1; 119 if (strstart(filename, "\\\\.\\", NULL) || 120 strstart(filename, "//./", NULL)) 121 return 1; 122 return 0; 123 } 124 #endif 125 126 /* throttling disk I/O limits */ 127 void bdrv_set_io_limits(BlockDriverState *bs, 128 ThrottleConfig *cfg) 129 { 130 int i; 131 132 throttle_config(&bs->throttle_state, cfg); 133 134 for (i = 0; i < 2; i++) { 135 qemu_co_enter_next(&bs->throttled_reqs[i]); 136 } 137 } 138 139 /* this function drain all the throttled IOs */ 140 static bool bdrv_start_throttled_reqs(BlockDriverState *bs) 141 { 142 bool drained = false; 143 bool enabled = bs->io_limits_enabled; 144 int i; 145 146 bs->io_limits_enabled = false; 147 148 for (i = 0; i < 2; i++) { 149 while (qemu_co_enter_next(&bs->throttled_reqs[i])) { 150 drained = true; 151 } 152 } 153 154 bs->io_limits_enabled = enabled; 155 156 return drained; 157 } 158 159 void bdrv_io_limits_disable(BlockDriverState *bs) 160 { 161 bs->io_limits_enabled = false; 162 163 bdrv_start_throttled_reqs(bs); 164 165 throttle_destroy(&bs->throttle_state); 166 } 167 168 static void bdrv_throttle_read_timer_cb(void *opaque) 169 { 170 BlockDriverState *bs = opaque; 171 qemu_co_enter_next(&bs->throttled_reqs[0]); 172 } 173 174 static void bdrv_throttle_write_timer_cb(void *opaque) 175 { 176 BlockDriverState *bs = opaque; 177 qemu_co_enter_next(&bs->throttled_reqs[1]); 178 } 179 180 /* should be called before bdrv_set_io_limits if a limit is set */ 181 void bdrv_io_limits_enable(BlockDriverState *bs) 182 { 183 assert(!bs->io_limits_enabled); 184 throttle_init(&bs->throttle_state, 185 bdrv_get_aio_context(bs), 186 QEMU_CLOCK_VIRTUAL, 187 bdrv_throttle_read_timer_cb, 188 bdrv_throttle_write_timer_cb, 189 bs); 190 bs->io_limits_enabled = true; 191 } 192 193 /* This function makes an IO wait if needed 194 * 195 * @nb_sectors: the number of sectors of the IO 196 * @is_write: is the IO a write 197 */ 198 static void bdrv_io_limits_intercept(BlockDriverState *bs, 199 unsigned int bytes, 200 bool is_write) 201 { 202 /* does this io must wait */ 203 bool must_wait = throttle_schedule_timer(&bs->throttle_state, is_write); 204 205 /* if must wait or any request of this type throttled queue the IO */ 206 if (must_wait || 207 !qemu_co_queue_empty(&bs->throttled_reqs[is_write])) { 208 qemu_co_queue_wait(&bs->throttled_reqs[is_write]); 209 } 210 211 /* the IO will be executed, do the accounting */ 212 throttle_account(&bs->throttle_state, is_write, bytes); 213 214 215 /* if the next request must wait -> do nothing */ 216 if (throttle_schedule_timer(&bs->throttle_state, is_write)) { 217 return; 218 } 219 220 /* else queue next request for execution */ 221 qemu_co_queue_next(&bs->throttled_reqs[is_write]); 222 } 223 224 size_t bdrv_opt_mem_align(BlockDriverState *bs) 225 { 226 if (!bs || !bs->drv) { 227 /* 4k should be on the safe side */ 228 return 4096; 229 } 230 231 return bs->bl.opt_mem_alignment; 232 } 233 234 /* check if the path starts with "<protocol>:" */ 235 static int path_has_protocol(const char *path) 236 { 237 const char *p; 238 239 #ifdef _WIN32 240 if (is_windows_drive(path) || 241 is_windows_drive_prefix(path)) { 242 return 0; 243 } 244 p = path + strcspn(path, ":/\\"); 245 #else 246 p = path + strcspn(path, ":/"); 247 #endif 248 249 return *p == ':'; 250 } 251 252 int path_is_absolute(const char *path) 253 { 254 #ifdef _WIN32 255 /* specific case for names like: "\\.\d:" */ 256 if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 257 return 1; 258 } 259 return (*path == '/' || *path == '\\'); 260 #else 261 return (*path == '/'); 262 #endif 263 } 264 265 /* if filename is absolute, just copy it to dest. Otherwise, build a 266 path to it by considering it is relative to base_path. URL are 267 supported. */ 268 void path_combine(char *dest, int dest_size, 269 const char *base_path, 270 const char *filename) 271 { 272 const char *p, *p1; 273 int len; 274 275 if (dest_size <= 0) 276 return; 277 if (path_is_absolute(filename)) { 278 pstrcpy(dest, dest_size, filename); 279 } else { 280 p = strchr(base_path, ':'); 281 if (p) 282 p++; 283 else 284 p = base_path; 285 p1 = strrchr(base_path, '/'); 286 #ifdef _WIN32 287 { 288 const char *p2; 289 p2 = strrchr(base_path, '\\'); 290 if (!p1 || p2 > p1) 291 p1 = p2; 292 } 293 #endif 294 if (p1) 295 p1++; 296 else 297 p1 = base_path; 298 if (p1 > p) 299 p = p1; 300 len = p - base_path; 301 if (len > dest_size - 1) 302 len = dest_size - 1; 303 memcpy(dest, base_path, len); 304 dest[len] = '\0'; 305 pstrcat(dest, dest_size, filename); 306 } 307 } 308 309 void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz) 310 { 311 if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) { 312 pstrcpy(dest, sz, bs->backing_file); 313 } else { 314 path_combine(dest, sz, bs->filename, bs->backing_file); 315 } 316 } 317 318 void bdrv_register(BlockDriver *bdrv) 319 { 320 /* Block drivers without coroutine functions need emulation */ 321 if (!bdrv->bdrv_co_readv) { 322 bdrv->bdrv_co_readv = bdrv_co_readv_em; 323 bdrv->bdrv_co_writev = bdrv_co_writev_em; 324 325 /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if 326 * the block driver lacks aio we need to emulate that too. 327 */ 328 if (!bdrv->bdrv_aio_readv) { 329 /* add AIO emulation layer */ 330 bdrv->bdrv_aio_readv = bdrv_aio_readv_em; 331 bdrv->bdrv_aio_writev = bdrv_aio_writev_em; 332 } 333 } 334 335 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 336 } 337 338 static bool bdrv_is_valid_name(const char *name) 339 { 340 return qemu_opts_id_wellformed(name); 341 } 342 343 /* create a new block device (by default it is empty) */ 344 BlockDriverState *bdrv_new(const char *device_name, Error **errp) 345 { 346 BlockDriverState *bs; 347 int i; 348 349 if (*device_name && !bdrv_is_valid_name(device_name)) { 350 error_setg(errp, "Invalid device name"); 351 return NULL; 352 } 353 354 if (bdrv_find(device_name)) { 355 error_setg(errp, "Device with id '%s' already exists", 356 device_name); 357 return NULL; 358 } 359 if (bdrv_find_node(device_name)) { 360 error_setg(errp, 361 "Device name '%s' conflicts with an existing node name", 362 device_name); 363 return NULL; 364 } 365 366 bs = g_new0(BlockDriverState, 1); 367 QLIST_INIT(&bs->dirty_bitmaps); 368 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name); 369 if (device_name[0] != '\0') { 370 QTAILQ_INSERT_TAIL(&bdrv_states, bs, device_list); 371 } 372 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 373 QLIST_INIT(&bs->op_blockers[i]); 374 } 375 bdrv_iostatus_disable(bs); 376 notifier_list_init(&bs->close_notifiers); 377 notifier_with_return_list_init(&bs->before_write_notifiers); 378 qemu_co_queue_init(&bs->throttled_reqs[0]); 379 qemu_co_queue_init(&bs->throttled_reqs[1]); 380 bs->refcnt = 1; 381 bs->aio_context = qemu_get_aio_context(); 382 383 return bs; 384 } 385 386 void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify) 387 { 388 notifier_list_add(&bs->close_notifiers, notify); 389 } 390 391 BlockDriver *bdrv_find_format(const char *format_name) 392 { 393 BlockDriver *drv1; 394 QLIST_FOREACH(drv1, &bdrv_drivers, list) { 395 if (!strcmp(drv1->format_name, format_name)) { 396 return drv1; 397 } 398 } 399 return NULL; 400 } 401 402 static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 403 { 404 static const char *whitelist_rw[] = { 405 CONFIG_BDRV_RW_WHITELIST 406 }; 407 static const char *whitelist_ro[] = { 408 CONFIG_BDRV_RO_WHITELIST 409 }; 410 const char **p; 411 412 if (!whitelist_rw[0] && !whitelist_ro[0]) { 413 return 1; /* no whitelist, anything goes */ 414 } 415 416 for (p = whitelist_rw; *p; p++) { 417 if (!strcmp(drv->format_name, *p)) { 418 return 1; 419 } 420 } 421 if (read_only) { 422 for (p = whitelist_ro; *p; p++) { 423 if (!strcmp(drv->format_name, *p)) { 424 return 1; 425 } 426 } 427 } 428 return 0; 429 } 430 431 BlockDriver *bdrv_find_whitelisted_format(const char *format_name, 432 bool read_only) 433 { 434 BlockDriver *drv = bdrv_find_format(format_name); 435 return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL; 436 } 437 438 typedef struct CreateCo { 439 BlockDriver *drv; 440 char *filename; 441 QemuOpts *opts; 442 int ret; 443 Error *err; 444 } CreateCo; 445 446 static void coroutine_fn bdrv_create_co_entry(void *opaque) 447 { 448 Error *local_err = NULL; 449 int ret; 450 451 CreateCo *cco = opaque; 452 assert(cco->drv); 453 454 ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err); 455 if (local_err) { 456 error_propagate(&cco->err, local_err); 457 } 458 cco->ret = ret; 459 } 460 461 int bdrv_create(BlockDriver *drv, const char* filename, 462 QemuOpts *opts, Error **errp) 463 { 464 int ret; 465 466 Coroutine *co; 467 CreateCo cco = { 468 .drv = drv, 469 .filename = g_strdup(filename), 470 .opts = opts, 471 .ret = NOT_DONE, 472 .err = NULL, 473 }; 474 475 if (!drv->bdrv_create) { 476 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 477 ret = -ENOTSUP; 478 goto out; 479 } 480 481 if (qemu_in_coroutine()) { 482 /* Fast-path if already in coroutine context */ 483 bdrv_create_co_entry(&cco); 484 } else { 485 co = qemu_coroutine_create(bdrv_create_co_entry); 486 qemu_coroutine_enter(co, &cco); 487 while (cco.ret == NOT_DONE) { 488 aio_poll(qemu_get_aio_context(), true); 489 } 490 } 491 492 ret = cco.ret; 493 if (ret < 0) { 494 if (cco.err) { 495 error_propagate(errp, cco.err); 496 } else { 497 error_setg_errno(errp, -ret, "Could not create image"); 498 } 499 } 500 501 out: 502 g_free(cco.filename); 503 return ret; 504 } 505 506 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 507 { 508 BlockDriver *drv; 509 Error *local_err = NULL; 510 int ret; 511 512 drv = bdrv_find_protocol(filename, true); 513 if (drv == NULL) { 514 error_setg(errp, "Could not find protocol for file '%s'", filename); 515 return -ENOENT; 516 } 517 518 ret = bdrv_create(drv, filename, opts, &local_err); 519 if (local_err) { 520 error_propagate(errp, local_err); 521 } 522 return ret; 523 } 524 525 void bdrv_refresh_limits(BlockDriverState *bs, Error **errp) 526 { 527 BlockDriver *drv = bs->drv; 528 Error *local_err = NULL; 529 530 memset(&bs->bl, 0, sizeof(bs->bl)); 531 532 if (!drv) { 533 return; 534 } 535 536 /* Take some limits from the children as a default */ 537 if (bs->file) { 538 bdrv_refresh_limits(bs->file, &local_err); 539 if (local_err) { 540 error_propagate(errp, local_err); 541 return; 542 } 543 bs->bl.opt_transfer_length = bs->file->bl.opt_transfer_length; 544 bs->bl.opt_mem_alignment = bs->file->bl.opt_mem_alignment; 545 } else { 546 bs->bl.opt_mem_alignment = 512; 547 } 548 549 if (bs->backing_hd) { 550 bdrv_refresh_limits(bs->backing_hd, &local_err); 551 if (local_err) { 552 error_propagate(errp, local_err); 553 return; 554 } 555 bs->bl.opt_transfer_length = 556 MAX(bs->bl.opt_transfer_length, 557 bs->backing_hd->bl.opt_transfer_length); 558 bs->bl.opt_mem_alignment = 559 MAX(bs->bl.opt_mem_alignment, 560 bs->backing_hd->bl.opt_mem_alignment); 561 } 562 563 /* Then let the driver override it */ 564 if (drv->bdrv_refresh_limits) { 565 drv->bdrv_refresh_limits(bs, errp); 566 } 567 } 568 569 /* 570 * Create a uniquely-named empty temporary file. 571 * Return 0 upon success, otherwise a negative errno value. 572 */ 573 int get_tmp_filename(char *filename, int size) 574 { 575 #ifdef _WIN32 576 char temp_dir[MAX_PATH]; 577 /* GetTempFileName requires that its output buffer (4th param) 578 have length MAX_PATH or greater. */ 579 assert(size >= MAX_PATH); 580 return (GetTempPath(MAX_PATH, temp_dir) 581 && GetTempFileName(temp_dir, "qem", 0, filename) 582 ? 0 : -GetLastError()); 583 #else 584 int fd; 585 const char *tmpdir; 586 tmpdir = getenv("TMPDIR"); 587 if (!tmpdir) { 588 tmpdir = "/var/tmp"; 589 } 590 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 591 return -EOVERFLOW; 592 } 593 fd = mkstemp(filename); 594 if (fd < 0) { 595 return -errno; 596 } 597 if (close(fd) != 0) { 598 unlink(filename); 599 return -errno; 600 } 601 return 0; 602 #endif 603 } 604 605 /* 606 * Detect host devices. By convention, /dev/cdrom[N] is always 607 * recognized as a host CDROM. 608 */ 609 static BlockDriver *find_hdev_driver(const char *filename) 610 { 611 int score_max = 0, score; 612 BlockDriver *drv = NULL, *d; 613 614 QLIST_FOREACH(d, &bdrv_drivers, list) { 615 if (d->bdrv_probe_device) { 616 score = d->bdrv_probe_device(filename); 617 if (score > score_max) { 618 score_max = score; 619 drv = d; 620 } 621 } 622 } 623 624 return drv; 625 } 626 627 BlockDriver *bdrv_find_protocol(const char *filename, 628 bool allow_protocol_prefix) 629 { 630 BlockDriver *drv1; 631 char protocol[128]; 632 int len; 633 const char *p; 634 635 /* TODO Drivers without bdrv_file_open must be specified explicitly */ 636 637 /* 638 * XXX(hch): we really should not let host device detection 639 * override an explicit protocol specification, but moving this 640 * later breaks access to device names with colons in them. 641 * Thanks to the brain-dead persistent naming schemes on udev- 642 * based Linux systems those actually are quite common. 643 */ 644 drv1 = find_hdev_driver(filename); 645 if (drv1) { 646 return drv1; 647 } 648 649 if (!path_has_protocol(filename) || !allow_protocol_prefix) { 650 return bdrv_find_format("file"); 651 } 652 653 p = strchr(filename, ':'); 654 assert(p != NULL); 655 len = p - filename; 656 if (len > sizeof(protocol) - 1) 657 len = sizeof(protocol) - 1; 658 memcpy(protocol, filename, len); 659 protocol[len] = '\0'; 660 QLIST_FOREACH(drv1, &bdrv_drivers, list) { 661 if (drv1->protocol_name && 662 !strcmp(drv1->protocol_name, protocol)) { 663 return drv1; 664 } 665 } 666 return NULL; 667 } 668 669 static int find_image_format(BlockDriverState *bs, const char *filename, 670 BlockDriver **pdrv, Error **errp) 671 { 672 int score, score_max; 673 BlockDriver *drv1, *drv; 674 uint8_t buf[2048]; 675 int ret = 0; 676 677 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 678 if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) { 679 drv = bdrv_find_format("raw"); 680 if (!drv) { 681 error_setg(errp, "Could not find raw image format"); 682 ret = -ENOENT; 683 } 684 *pdrv = drv; 685 return ret; 686 } 687 688 ret = bdrv_pread(bs, 0, buf, sizeof(buf)); 689 if (ret < 0) { 690 error_setg_errno(errp, -ret, "Could not read image for determining its " 691 "format"); 692 *pdrv = NULL; 693 return ret; 694 } 695 696 score_max = 0; 697 drv = NULL; 698 QLIST_FOREACH(drv1, &bdrv_drivers, list) { 699 if (drv1->bdrv_probe) { 700 score = drv1->bdrv_probe(buf, ret, filename); 701 if (score > score_max) { 702 score_max = score; 703 drv = drv1; 704 } 705 } 706 } 707 if (!drv) { 708 error_setg(errp, "Could not determine image format: No compatible " 709 "driver found"); 710 ret = -ENOENT; 711 } 712 *pdrv = drv; 713 return ret; 714 } 715 716 /** 717 * Set the current 'total_sectors' value 718 * Return 0 on success, -errno on error. 719 */ 720 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 721 { 722 BlockDriver *drv = bs->drv; 723 724 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 725 if (bs->sg) 726 return 0; 727 728 /* query actual device if possible, otherwise just trust the hint */ 729 if (drv->bdrv_getlength) { 730 int64_t length = drv->bdrv_getlength(bs); 731 if (length < 0) { 732 return length; 733 } 734 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 735 } 736 737 bs->total_sectors = hint; 738 return 0; 739 } 740 741 /** 742 * Set open flags for a given discard mode 743 * 744 * Return 0 on success, -1 if the discard mode was invalid. 745 */ 746 int bdrv_parse_discard_flags(const char *mode, int *flags) 747 { 748 *flags &= ~BDRV_O_UNMAP; 749 750 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 751 /* do nothing */ 752 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 753 *flags |= BDRV_O_UNMAP; 754 } else { 755 return -1; 756 } 757 758 return 0; 759 } 760 761 /** 762 * Set open flags for a given cache mode 763 * 764 * Return 0 on success, -1 if the cache mode was invalid. 765 */ 766 int bdrv_parse_cache_flags(const char *mode, int *flags) 767 { 768 *flags &= ~BDRV_O_CACHE_MASK; 769 770 if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 771 *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; 772 } else if (!strcmp(mode, "directsync")) { 773 *flags |= BDRV_O_NOCACHE; 774 } else if (!strcmp(mode, "writeback")) { 775 *flags |= BDRV_O_CACHE_WB; 776 } else if (!strcmp(mode, "unsafe")) { 777 *flags |= BDRV_O_CACHE_WB; 778 *flags |= BDRV_O_NO_FLUSH; 779 } else if (!strcmp(mode, "writethrough")) { 780 /* this is the default */ 781 } else { 782 return -1; 783 } 784 785 return 0; 786 } 787 788 /** 789 * The copy-on-read flag is actually a reference count so multiple users may 790 * use the feature without worrying about clobbering its previous state. 791 * Copy-on-read stays enabled until all users have called to disable it. 792 */ 793 void bdrv_enable_copy_on_read(BlockDriverState *bs) 794 { 795 bs->copy_on_read++; 796 } 797 798 void bdrv_disable_copy_on_read(BlockDriverState *bs) 799 { 800 assert(bs->copy_on_read > 0); 801 bs->copy_on_read--; 802 } 803 804 /* 805 * Returns the flags that a temporary snapshot should get, based on the 806 * originally requested flags (the originally requested image will have flags 807 * like a backing file) 808 */ 809 static int bdrv_temp_snapshot_flags(int flags) 810 { 811 return (flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 812 } 813 814 /* 815 * Returns the flags that bs->file should get, based on the given flags for 816 * the parent BDS 817 */ 818 static int bdrv_inherited_flags(int flags) 819 { 820 /* Enable protocol handling, disable format probing for bs->file */ 821 flags |= BDRV_O_PROTOCOL; 822 823 /* Our block drivers take care to send flushes and respect unmap policy, 824 * so we can enable both unconditionally on lower layers. */ 825 flags |= BDRV_O_CACHE_WB | BDRV_O_UNMAP; 826 827 /* Clear flags that only apply to the top layer */ 828 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); 829 830 return flags; 831 } 832 833 /* 834 * Returns the flags that bs->backing_hd should get, based on the given flags 835 * for the parent BDS 836 */ 837 static int bdrv_backing_flags(int flags) 838 { 839 /* backing files always opened read-only */ 840 flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ); 841 842 /* snapshot=on is handled on the top layer */ 843 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 844 845 return flags; 846 } 847 848 static int bdrv_open_flags(BlockDriverState *bs, int flags) 849 { 850 int open_flags = flags | BDRV_O_CACHE_WB; 851 852 /* 853 * Clear flags that are internal to the block layer before opening the 854 * image. 855 */ 856 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 857 858 /* 859 * Snapshots should be writable. 860 */ 861 if (flags & BDRV_O_TEMPORARY) { 862 open_flags |= BDRV_O_RDWR; 863 } 864 865 return open_flags; 866 } 867 868 static void bdrv_assign_node_name(BlockDriverState *bs, 869 const char *node_name, 870 Error **errp) 871 { 872 if (!node_name) { 873 return; 874 } 875 876 /* Check for empty string or invalid characters */ 877 if (!bdrv_is_valid_name(node_name)) { 878 error_setg(errp, "Invalid node name"); 879 return; 880 } 881 882 /* takes care of avoiding namespaces collisions */ 883 if (bdrv_find(node_name)) { 884 error_setg(errp, "node-name=%s is conflicting with a device id", 885 node_name); 886 return; 887 } 888 889 /* takes care of avoiding duplicates node names */ 890 if (bdrv_find_node(node_name)) { 891 error_setg(errp, "Duplicate node name"); 892 return; 893 } 894 895 /* copy node name into the bs and insert it into the graph list */ 896 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 897 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 898 } 899 900 /* 901 * Common part for opening disk images and files 902 * 903 * Removes all processed options from *options. 904 */ 905 static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file, 906 QDict *options, int flags, BlockDriver *drv, Error **errp) 907 { 908 int ret, open_flags; 909 const char *filename; 910 const char *node_name = NULL; 911 Error *local_err = NULL; 912 913 assert(drv != NULL); 914 assert(bs->file == NULL); 915 assert(options != NULL && bs->options != options); 916 917 if (file != NULL) { 918 filename = file->filename; 919 } else { 920 filename = qdict_get_try_str(options, "filename"); 921 } 922 923 if (drv->bdrv_needs_filename && !filename) { 924 error_setg(errp, "The '%s' block driver requires a file name", 925 drv->format_name); 926 return -EINVAL; 927 } 928 929 trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name); 930 931 node_name = qdict_get_try_str(options, "node-name"); 932 bdrv_assign_node_name(bs, node_name, &local_err); 933 if (local_err) { 934 error_propagate(errp, local_err); 935 return -EINVAL; 936 } 937 qdict_del(options, "node-name"); 938 939 /* bdrv_open() with directly using a protocol as drv. This layer is already 940 * opened, so assign it to bs (while file becomes a closed BlockDriverState) 941 * and return immediately. */ 942 if (file != NULL && drv->bdrv_file_open) { 943 bdrv_swap(file, bs); 944 return 0; 945 } 946 947 bs->open_flags = flags; 948 bs->guest_block_size = 512; 949 bs->request_alignment = 512; 950 bs->zero_beyond_eof = true; 951 open_flags = bdrv_open_flags(bs, flags); 952 bs->read_only = !(open_flags & BDRV_O_RDWR); 953 bs->growable = !!(flags & BDRV_O_PROTOCOL); 954 955 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 956 error_setg(errp, 957 !bs->read_only && bdrv_is_whitelisted(drv, true) 958 ? "Driver '%s' can only be used for read-only devices" 959 : "Driver '%s' is not whitelisted", 960 drv->format_name); 961 return -ENOTSUP; 962 } 963 964 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 965 if (flags & BDRV_O_COPY_ON_READ) { 966 if (!bs->read_only) { 967 bdrv_enable_copy_on_read(bs); 968 } else { 969 error_setg(errp, "Can't use copy-on-read on read-only device"); 970 return -EINVAL; 971 } 972 } 973 974 if (filename != NULL) { 975 pstrcpy(bs->filename, sizeof(bs->filename), filename); 976 } else { 977 bs->filename[0] = '\0'; 978 } 979 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 980 981 bs->drv = drv; 982 bs->opaque = g_malloc0(drv->instance_size); 983 984 bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB); 985 986 /* Open the image, either directly or using a protocol */ 987 if (drv->bdrv_file_open) { 988 assert(file == NULL); 989 assert(!drv->bdrv_needs_filename || filename != NULL); 990 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 991 } else { 992 if (file == NULL) { 993 error_setg(errp, "Can't use '%s' as a block driver for the " 994 "protocol level", drv->format_name); 995 ret = -EINVAL; 996 goto free_and_fail; 997 } 998 bs->file = file; 999 ret = drv->bdrv_open(bs, options, open_flags, &local_err); 1000 } 1001 1002 if (ret < 0) { 1003 if (local_err) { 1004 error_propagate(errp, local_err); 1005 } else if (bs->filename[0]) { 1006 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 1007 } else { 1008 error_setg_errno(errp, -ret, "Could not open image"); 1009 } 1010 goto free_and_fail; 1011 } 1012 1013 ret = refresh_total_sectors(bs, bs->total_sectors); 1014 if (ret < 0) { 1015 error_setg_errno(errp, -ret, "Could not refresh total sector count"); 1016 goto free_and_fail; 1017 } 1018 1019 bdrv_refresh_limits(bs, &local_err); 1020 if (local_err) { 1021 error_propagate(errp, local_err); 1022 ret = -EINVAL; 1023 goto free_and_fail; 1024 } 1025 1026 assert(bdrv_opt_mem_align(bs) != 0); 1027 assert((bs->request_alignment != 0) || bs->sg); 1028 return 0; 1029 1030 free_and_fail: 1031 bs->file = NULL; 1032 g_free(bs->opaque); 1033 bs->opaque = NULL; 1034 bs->drv = NULL; 1035 return ret; 1036 } 1037 1038 static QDict *parse_json_filename(const char *filename, Error **errp) 1039 { 1040 QObject *options_obj; 1041 QDict *options; 1042 int ret; 1043 1044 ret = strstart(filename, "json:", &filename); 1045 assert(ret); 1046 1047 options_obj = qobject_from_json(filename); 1048 if (!options_obj) { 1049 error_setg(errp, "Could not parse the JSON options"); 1050 return NULL; 1051 } 1052 1053 if (qobject_type(options_obj) != QTYPE_QDICT) { 1054 qobject_decref(options_obj); 1055 error_setg(errp, "Invalid JSON object given"); 1056 return NULL; 1057 } 1058 1059 options = qobject_to_qdict(options_obj); 1060 qdict_flatten(options); 1061 1062 return options; 1063 } 1064 1065 /* 1066 * Fills in default options for opening images and converts the legacy 1067 * filename/flags pair to option QDict entries. 1068 */ 1069 static int bdrv_fill_options(QDict **options, const char **pfilename, int flags, 1070 BlockDriver *drv, Error **errp) 1071 { 1072 const char *filename = *pfilename; 1073 const char *drvname; 1074 bool protocol = flags & BDRV_O_PROTOCOL; 1075 bool parse_filename = false; 1076 Error *local_err = NULL; 1077 1078 /* Parse json: pseudo-protocol */ 1079 if (filename && g_str_has_prefix(filename, "json:")) { 1080 QDict *json_options = parse_json_filename(filename, &local_err); 1081 if (local_err) { 1082 error_propagate(errp, local_err); 1083 return -EINVAL; 1084 } 1085 1086 /* Options given in the filename have lower priority than options 1087 * specified directly */ 1088 qdict_join(*options, json_options, false); 1089 QDECREF(json_options); 1090 *pfilename = filename = NULL; 1091 } 1092 1093 /* Fetch the file name from the options QDict if necessary */ 1094 if (protocol && filename) { 1095 if (!qdict_haskey(*options, "filename")) { 1096 qdict_put(*options, "filename", qstring_from_str(filename)); 1097 parse_filename = true; 1098 } else { 1099 error_setg(errp, "Can't specify 'file' and 'filename' options at " 1100 "the same time"); 1101 return -EINVAL; 1102 } 1103 } 1104 1105 /* Find the right block driver */ 1106 filename = qdict_get_try_str(*options, "filename"); 1107 drvname = qdict_get_try_str(*options, "driver"); 1108 1109 if (drv) { 1110 if (drvname) { 1111 error_setg(errp, "Driver specified twice"); 1112 return -EINVAL; 1113 } 1114 drvname = drv->format_name; 1115 qdict_put(*options, "driver", qstring_from_str(drvname)); 1116 } else { 1117 if (!drvname && protocol) { 1118 if (filename) { 1119 drv = bdrv_find_protocol(filename, parse_filename); 1120 if (!drv) { 1121 error_setg(errp, "Unknown protocol"); 1122 return -EINVAL; 1123 } 1124 1125 drvname = drv->format_name; 1126 qdict_put(*options, "driver", qstring_from_str(drvname)); 1127 } else { 1128 error_setg(errp, "Must specify either driver or file"); 1129 return -EINVAL; 1130 } 1131 } else if (drvname) { 1132 drv = bdrv_find_format(drvname); 1133 if (!drv) { 1134 error_setg(errp, "Unknown driver '%s'", drvname); 1135 return -ENOENT; 1136 } 1137 } 1138 } 1139 1140 assert(drv || !protocol); 1141 1142 /* Driver-specific filename parsing */ 1143 if (drv && drv->bdrv_parse_filename && parse_filename) { 1144 drv->bdrv_parse_filename(filename, *options, &local_err); 1145 if (local_err) { 1146 error_propagate(errp, local_err); 1147 return -EINVAL; 1148 } 1149 1150 if (!drv->bdrv_needs_filename) { 1151 qdict_del(*options, "filename"); 1152 } 1153 } 1154 1155 return 0; 1156 } 1157 1158 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd) 1159 { 1160 1161 if (bs->backing_hd) { 1162 assert(bs->backing_blocker); 1163 bdrv_op_unblock_all(bs->backing_hd, bs->backing_blocker); 1164 } else if (backing_hd) { 1165 error_setg(&bs->backing_blocker, 1166 "device is used as backing hd of '%s'", 1167 bs->device_name); 1168 } 1169 1170 bs->backing_hd = backing_hd; 1171 if (!backing_hd) { 1172 error_free(bs->backing_blocker); 1173 bs->backing_blocker = NULL; 1174 goto out; 1175 } 1176 bs->open_flags &= ~BDRV_O_NO_BACKING; 1177 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename); 1178 pstrcpy(bs->backing_format, sizeof(bs->backing_format), 1179 backing_hd->drv ? backing_hd->drv->format_name : ""); 1180 1181 bdrv_op_block_all(bs->backing_hd, bs->backing_blocker); 1182 /* Otherwise we won't be able to commit due to check in bdrv_commit */ 1183 bdrv_op_unblock(bs->backing_hd, BLOCK_OP_TYPE_COMMIT, 1184 bs->backing_blocker); 1185 out: 1186 bdrv_refresh_limits(bs, NULL); 1187 } 1188 1189 /* 1190 * Opens the backing file for a BlockDriverState if not yet open 1191 * 1192 * options is a QDict of options to pass to the block drivers, or NULL for an 1193 * empty set of options. The reference to the QDict is transferred to this 1194 * function (even on failure), so if the caller intends to reuse the dictionary, 1195 * it needs to use QINCREF() before calling bdrv_file_open. 1196 */ 1197 int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp) 1198 { 1199 char *backing_filename = g_malloc0(PATH_MAX); 1200 int ret = 0; 1201 BlockDriver *back_drv = NULL; 1202 BlockDriverState *backing_hd; 1203 Error *local_err = NULL; 1204 1205 if (bs->backing_hd != NULL) { 1206 QDECREF(options); 1207 goto free_exit; 1208 } 1209 1210 /* NULL means an empty set of options */ 1211 if (options == NULL) { 1212 options = qdict_new(); 1213 } 1214 1215 bs->open_flags &= ~BDRV_O_NO_BACKING; 1216 if (qdict_haskey(options, "file.filename")) { 1217 backing_filename[0] = '\0'; 1218 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 1219 QDECREF(options); 1220 goto free_exit; 1221 } else { 1222 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX); 1223 } 1224 1225 if (!bs->drv || !bs->drv->supports_backing) { 1226 ret = -EINVAL; 1227 error_setg(errp, "Driver doesn't support backing files"); 1228 QDECREF(options); 1229 goto free_exit; 1230 } 1231 1232 backing_hd = bdrv_new("", errp); 1233 1234 if (bs->backing_format[0] != '\0') { 1235 back_drv = bdrv_find_format(bs->backing_format); 1236 } 1237 1238 assert(bs->backing_hd == NULL); 1239 ret = bdrv_open(&backing_hd, 1240 *backing_filename ? backing_filename : NULL, NULL, options, 1241 bdrv_backing_flags(bs->open_flags), back_drv, &local_err); 1242 if (ret < 0) { 1243 bdrv_unref(backing_hd); 1244 backing_hd = NULL; 1245 bs->open_flags |= BDRV_O_NO_BACKING; 1246 error_setg(errp, "Could not open backing file: %s", 1247 error_get_pretty(local_err)); 1248 error_free(local_err); 1249 goto free_exit; 1250 } 1251 bdrv_set_backing_hd(bs, backing_hd); 1252 1253 free_exit: 1254 g_free(backing_filename); 1255 return ret; 1256 } 1257 1258 /* 1259 * Opens a disk image whose options are given as BlockdevRef in another block 1260 * device's options. 1261 * 1262 * If allow_none is true, no image will be opened if filename is false and no 1263 * BlockdevRef is given. *pbs will remain unchanged and 0 will be returned. 1264 * 1265 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 1266 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 1267 * itself, all options starting with "${bdref_key}." are considered part of the 1268 * BlockdevRef. 1269 * 1270 * The BlockdevRef will be removed from the options QDict. 1271 * 1272 * To conform with the behavior of bdrv_open(), *pbs has to be NULL. 1273 */ 1274 int bdrv_open_image(BlockDriverState **pbs, const char *filename, 1275 QDict *options, const char *bdref_key, int flags, 1276 bool allow_none, Error **errp) 1277 { 1278 QDict *image_options; 1279 int ret; 1280 char *bdref_key_dot; 1281 const char *reference; 1282 1283 assert(pbs); 1284 assert(*pbs == NULL); 1285 1286 bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1287 qdict_extract_subqdict(options, &image_options, bdref_key_dot); 1288 g_free(bdref_key_dot); 1289 1290 reference = qdict_get_try_str(options, bdref_key); 1291 if (!filename && !reference && !qdict_size(image_options)) { 1292 if (allow_none) { 1293 ret = 0; 1294 } else { 1295 error_setg(errp, "A block device must be specified for \"%s\"", 1296 bdref_key); 1297 ret = -EINVAL; 1298 } 1299 QDECREF(image_options); 1300 goto done; 1301 } 1302 1303 ret = bdrv_open(pbs, filename, reference, image_options, flags, NULL, errp); 1304 1305 done: 1306 qdict_del(options, bdref_key); 1307 return ret; 1308 } 1309 1310 int bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp) 1311 { 1312 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 1313 char *tmp_filename = g_malloc0(PATH_MAX + 1); 1314 int64_t total_size; 1315 BlockDriver *bdrv_qcow2; 1316 QemuOpts *opts = NULL; 1317 QDict *snapshot_options; 1318 BlockDriverState *bs_snapshot; 1319 Error *local_err; 1320 int ret; 1321 1322 /* if snapshot, we create a temporary backing file and open it 1323 instead of opening 'filename' directly */ 1324 1325 /* Get the required size from the image */ 1326 total_size = bdrv_getlength(bs); 1327 if (total_size < 0) { 1328 ret = total_size; 1329 error_setg_errno(errp, -total_size, "Could not get image size"); 1330 goto out; 1331 } 1332 1333 /* Create the temporary image */ 1334 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 1335 if (ret < 0) { 1336 error_setg_errno(errp, -ret, "Could not get temporary filename"); 1337 goto out; 1338 } 1339 1340 bdrv_qcow2 = bdrv_find_format("qcow2"); 1341 opts = qemu_opts_create(bdrv_qcow2->create_opts, NULL, 0, 1342 &error_abort); 1343 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size); 1344 ret = bdrv_create(bdrv_qcow2, tmp_filename, opts, &local_err); 1345 qemu_opts_del(opts); 1346 if (ret < 0) { 1347 error_setg_errno(errp, -ret, "Could not create temporary overlay " 1348 "'%s': %s", tmp_filename, 1349 error_get_pretty(local_err)); 1350 error_free(local_err); 1351 goto out; 1352 } 1353 1354 /* Prepare a new options QDict for the temporary file */ 1355 snapshot_options = qdict_new(); 1356 qdict_put(snapshot_options, "file.driver", 1357 qstring_from_str("file")); 1358 qdict_put(snapshot_options, "file.filename", 1359 qstring_from_str(tmp_filename)); 1360 1361 bs_snapshot = bdrv_new("", &error_abort); 1362 1363 ret = bdrv_open(&bs_snapshot, NULL, NULL, snapshot_options, 1364 flags, bdrv_qcow2, &local_err); 1365 if (ret < 0) { 1366 error_propagate(errp, local_err); 1367 goto out; 1368 } 1369 1370 bdrv_append(bs_snapshot, bs); 1371 1372 out: 1373 g_free(tmp_filename); 1374 return ret; 1375 } 1376 1377 /* 1378 * Opens a disk image (raw, qcow2, vmdk, ...) 1379 * 1380 * options is a QDict of options to pass to the block drivers, or NULL for an 1381 * empty set of options. The reference to the QDict belongs to the block layer 1382 * after the call (even on failure), so if the caller intends to reuse the 1383 * dictionary, it needs to use QINCREF() before calling bdrv_open. 1384 * 1385 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 1386 * If it is not NULL, the referenced BDS will be reused. 1387 * 1388 * The reference parameter may be used to specify an existing block device which 1389 * should be opened. If specified, neither options nor a filename may be given, 1390 * nor can an existing BDS be reused (that is, *pbs has to be NULL). 1391 */ 1392 int bdrv_open(BlockDriverState **pbs, const char *filename, 1393 const char *reference, QDict *options, int flags, 1394 BlockDriver *drv, Error **errp) 1395 { 1396 int ret; 1397 BlockDriverState *file = NULL, *bs; 1398 const char *drvname; 1399 Error *local_err = NULL; 1400 int snapshot_flags = 0; 1401 1402 assert(pbs); 1403 1404 if (reference) { 1405 bool options_non_empty = options ? qdict_size(options) : false; 1406 QDECREF(options); 1407 1408 if (*pbs) { 1409 error_setg(errp, "Cannot reuse an existing BDS when referencing " 1410 "another block device"); 1411 return -EINVAL; 1412 } 1413 1414 if (filename || options_non_empty) { 1415 error_setg(errp, "Cannot reference an existing block device with " 1416 "additional options or a new filename"); 1417 return -EINVAL; 1418 } 1419 1420 bs = bdrv_lookup_bs(reference, reference, errp); 1421 if (!bs) { 1422 return -ENODEV; 1423 } 1424 bdrv_ref(bs); 1425 *pbs = bs; 1426 return 0; 1427 } 1428 1429 if (*pbs) { 1430 bs = *pbs; 1431 } else { 1432 bs = bdrv_new("", &error_abort); 1433 } 1434 1435 /* NULL means an empty set of options */ 1436 if (options == NULL) { 1437 options = qdict_new(); 1438 } 1439 1440 ret = bdrv_fill_options(&options, &filename, flags, drv, &local_err); 1441 if (local_err) { 1442 goto fail; 1443 } 1444 1445 /* Find the right image format driver */ 1446 drv = NULL; 1447 drvname = qdict_get_try_str(options, "driver"); 1448 if (drvname) { 1449 drv = bdrv_find_format(drvname); 1450 qdict_del(options, "driver"); 1451 if (!drv) { 1452 error_setg(errp, "Unknown driver: '%s'", drvname); 1453 ret = -EINVAL; 1454 goto fail; 1455 } 1456 } 1457 1458 assert(drvname || !(flags & BDRV_O_PROTOCOL)); 1459 if (drv && !drv->bdrv_file_open) { 1460 /* If the user explicitly wants a format driver here, we'll need to add 1461 * another layer for the protocol in bs->file */ 1462 flags &= ~BDRV_O_PROTOCOL; 1463 } 1464 1465 bs->options = options; 1466 options = qdict_clone_shallow(options); 1467 1468 /* Open image file without format layer */ 1469 if ((flags & BDRV_O_PROTOCOL) == 0) { 1470 if (flags & BDRV_O_RDWR) { 1471 flags |= BDRV_O_ALLOW_RDWR; 1472 } 1473 if (flags & BDRV_O_SNAPSHOT) { 1474 snapshot_flags = bdrv_temp_snapshot_flags(flags); 1475 flags = bdrv_backing_flags(flags); 1476 } 1477 1478 assert(file == NULL); 1479 ret = bdrv_open_image(&file, filename, options, "file", 1480 bdrv_inherited_flags(flags), 1481 true, &local_err); 1482 if (ret < 0) { 1483 goto fail; 1484 } 1485 } 1486 1487 /* Image format probing */ 1488 if (!drv && file) { 1489 ret = find_image_format(file, filename, &drv, &local_err); 1490 if (ret < 0) { 1491 goto fail; 1492 } 1493 } else if (!drv) { 1494 error_setg(errp, "Must specify either driver or file"); 1495 ret = -EINVAL; 1496 goto fail; 1497 } 1498 1499 /* Open the image */ 1500 ret = bdrv_open_common(bs, file, options, flags, drv, &local_err); 1501 if (ret < 0) { 1502 goto fail; 1503 } 1504 1505 if (file && (bs->file != file)) { 1506 bdrv_unref(file); 1507 file = NULL; 1508 } 1509 1510 /* If there is a backing file, use it */ 1511 if ((flags & BDRV_O_NO_BACKING) == 0) { 1512 QDict *backing_options; 1513 1514 qdict_extract_subqdict(options, &backing_options, "backing."); 1515 ret = bdrv_open_backing_file(bs, backing_options, &local_err); 1516 if (ret < 0) { 1517 goto close_and_fail; 1518 } 1519 } 1520 1521 bdrv_refresh_filename(bs); 1522 1523 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 1524 * temporary snapshot afterwards. */ 1525 if (snapshot_flags) { 1526 ret = bdrv_append_temp_snapshot(bs, snapshot_flags, &local_err); 1527 if (local_err) { 1528 goto close_and_fail; 1529 } 1530 } 1531 1532 /* Check if any unknown options were used */ 1533 if (options && (qdict_size(options) != 0)) { 1534 const QDictEntry *entry = qdict_first(options); 1535 if (flags & BDRV_O_PROTOCOL) { 1536 error_setg(errp, "Block protocol '%s' doesn't support the option " 1537 "'%s'", drv->format_name, entry->key); 1538 } else { 1539 error_setg(errp, "Block format '%s' used by device '%s' doesn't " 1540 "support the option '%s'", drv->format_name, 1541 bs->device_name, entry->key); 1542 } 1543 1544 ret = -EINVAL; 1545 goto close_and_fail; 1546 } 1547 1548 if (!bdrv_key_required(bs)) { 1549 bdrv_dev_change_media_cb(bs, true); 1550 } else if (!runstate_check(RUN_STATE_PRELAUNCH) 1551 && !runstate_check(RUN_STATE_INMIGRATE) 1552 && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */ 1553 error_setg(errp, 1554 "Guest must be stopped for opening of encrypted image"); 1555 ret = -EBUSY; 1556 goto close_and_fail; 1557 } 1558 1559 QDECREF(options); 1560 *pbs = bs; 1561 return 0; 1562 1563 fail: 1564 if (file != NULL) { 1565 bdrv_unref(file); 1566 } 1567 QDECREF(bs->options); 1568 QDECREF(options); 1569 bs->options = NULL; 1570 if (!*pbs) { 1571 /* If *pbs is NULL, a new BDS has been created in this function and 1572 needs to be freed now. Otherwise, it does not need to be closed, 1573 since it has not really been opened yet. */ 1574 bdrv_unref(bs); 1575 } 1576 if (local_err) { 1577 error_propagate(errp, local_err); 1578 } 1579 return ret; 1580 1581 close_and_fail: 1582 /* See fail path, but now the BDS has to be always closed */ 1583 if (*pbs) { 1584 bdrv_close(bs); 1585 } else { 1586 bdrv_unref(bs); 1587 } 1588 QDECREF(options); 1589 if (local_err) { 1590 error_propagate(errp, local_err); 1591 } 1592 return ret; 1593 } 1594 1595 typedef struct BlockReopenQueueEntry { 1596 bool prepared; 1597 BDRVReopenState state; 1598 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1599 } BlockReopenQueueEntry; 1600 1601 /* 1602 * Adds a BlockDriverState to a simple queue for an atomic, transactional 1603 * reopen of multiple devices. 1604 * 1605 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1606 * already performed, or alternatively may be NULL a new BlockReopenQueue will 1607 * be created and initialized. This newly created BlockReopenQueue should be 1608 * passed back in for subsequent calls that are intended to be of the same 1609 * atomic 'set'. 1610 * 1611 * bs is the BlockDriverState to add to the reopen queue. 1612 * 1613 * flags contains the open flags for the associated bs 1614 * 1615 * returns a pointer to bs_queue, which is either the newly allocated 1616 * bs_queue, or the existing bs_queue being used. 1617 * 1618 */ 1619 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 1620 BlockDriverState *bs, int flags) 1621 { 1622 assert(bs != NULL); 1623 1624 BlockReopenQueueEntry *bs_entry; 1625 if (bs_queue == NULL) { 1626 bs_queue = g_new0(BlockReopenQueue, 1); 1627 QSIMPLEQ_INIT(bs_queue); 1628 } 1629 1630 /* bdrv_open() masks this flag out */ 1631 flags &= ~BDRV_O_PROTOCOL; 1632 1633 if (bs->file) { 1634 bdrv_reopen_queue(bs_queue, bs->file, bdrv_inherited_flags(flags)); 1635 } 1636 1637 bs_entry = g_new0(BlockReopenQueueEntry, 1); 1638 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1639 1640 bs_entry->state.bs = bs; 1641 bs_entry->state.flags = flags; 1642 1643 return bs_queue; 1644 } 1645 1646 /* 1647 * Reopen multiple BlockDriverStates atomically & transactionally. 1648 * 1649 * The queue passed in (bs_queue) must have been built up previous 1650 * via bdrv_reopen_queue(). 1651 * 1652 * Reopens all BDS specified in the queue, with the appropriate 1653 * flags. All devices are prepared for reopen, and failure of any 1654 * device will cause all device changes to be abandonded, and intermediate 1655 * data cleaned up. 1656 * 1657 * If all devices prepare successfully, then the changes are committed 1658 * to all devices. 1659 * 1660 */ 1661 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1662 { 1663 int ret = -1; 1664 BlockReopenQueueEntry *bs_entry, *next; 1665 Error *local_err = NULL; 1666 1667 assert(bs_queue != NULL); 1668 1669 bdrv_drain_all(); 1670 1671 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1672 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1673 error_propagate(errp, local_err); 1674 goto cleanup; 1675 } 1676 bs_entry->prepared = true; 1677 } 1678 1679 /* If we reach this point, we have success and just need to apply the 1680 * changes 1681 */ 1682 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1683 bdrv_reopen_commit(&bs_entry->state); 1684 } 1685 1686 ret = 0; 1687 1688 cleanup: 1689 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1690 if (ret && bs_entry->prepared) { 1691 bdrv_reopen_abort(&bs_entry->state); 1692 } 1693 g_free(bs_entry); 1694 } 1695 g_free(bs_queue); 1696 return ret; 1697 } 1698 1699 1700 /* Reopen a single BlockDriverState with the specified flags. */ 1701 int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1702 { 1703 int ret = -1; 1704 Error *local_err = NULL; 1705 BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags); 1706 1707 ret = bdrv_reopen_multiple(queue, &local_err); 1708 if (local_err != NULL) { 1709 error_propagate(errp, local_err); 1710 } 1711 return ret; 1712 } 1713 1714 1715 /* 1716 * Prepares a BlockDriverState for reopen. All changes are staged in the 1717 * 'opaque' field of the BDRVReopenState, which is used and allocated by 1718 * the block driver layer .bdrv_reopen_prepare() 1719 * 1720 * bs is the BlockDriverState to reopen 1721 * flags are the new open flags 1722 * queue is the reopen queue 1723 * 1724 * Returns 0 on success, non-zero on error. On error errp will be set 1725 * as well. 1726 * 1727 * On failure, bdrv_reopen_abort() will be called to clean up any data. 1728 * It is the responsibility of the caller to then call the abort() or 1729 * commit() for any other BDS that have been left in a prepare() state 1730 * 1731 */ 1732 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1733 Error **errp) 1734 { 1735 int ret = -1; 1736 Error *local_err = NULL; 1737 BlockDriver *drv; 1738 1739 assert(reopen_state != NULL); 1740 assert(reopen_state->bs->drv != NULL); 1741 drv = reopen_state->bs->drv; 1742 1743 /* if we are to stay read-only, do not allow permission change 1744 * to r/w */ 1745 if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1746 reopen_state->flags & BDRV_O_RDWR) { 1747 error_set(errp, QERR_DEVICE_IS_READ_ONLY, 1748 reopen_state->bs->device_name); 1749 goto error; 1750 } 1751 1752 1753 ret = bdrv_flush(reopen_state->bs); 1754 if (ret) { 1755 error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive", 1756 strerror(-ret)); 1757 goto error; 1758 } 1759 1760 if (drv->bdrv_reopen_prepare) { 1761 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1762 if (ret) { 1763 if (local_err != NULL) { 1764 error_propagate(errp, local_err); 1765 } else { 1766 error_setg(errp, "failed while preparing to reopen image '%s'", 1767 reopen_state->bs->filename); 1768 } 1769 goto error; 1770 } 1771 } else { 1772 /* It is currently mandatory to have a bdrv_reopen_prepare() 1773 * handler for each supported drv. */ 1774 error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, 1775 drv->format_name, reopen_state->bs->device_name, 1776 "reopening of file"); 1777 ret = -1; 1778 goto error; 1779 } 1780 1781 ret = 0; 1782 1783 error: 1784 return ret; 1785 } 1786 1787 /* 1788 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1789 * makes them final by swapping the staging BlockDriverState contents into 1790 * the active BlockDriverState contents. 1791 */ 1792 void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1793 { 1794 BlockDriver *drv; 1795 1796 assert(reopen_state != NULL); 1797 drv = reopen_state->bs->drv; 1798 assert(drv != NULL); 1799 1800 /* If there are any driver level actions to take */ 1801 if (drv->bdrv_reopen_commit) { 1802 drv->bdrv_reopen_commit(reopen_state); 1803 } 1804 1805 /* set BDS specific flags now */ 1806 reopen_state->bs->open_flags = reopen_state->flags; 1807 reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 1808 BDRV_O_CACHE_WB); 1809 reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 1810 1811 bdrv_refresh_limits(reopen_state->bs, NULL); 1812 } 1813 1814 /* 1815 * Abort the reopen, and delete and free the staged changes in 1816 * reopen_state 1817 */ 1818 void bdrv_reopen_abort(BDRVReopenState *reopen_state) 1819 { 1820 BlockDriver *drv; 1821 1822 assert(reopen_state != NULL); 1823 drv = reopen_state->bs->drv; 1824 assert(drv != NULL); 1825 1826 if (drv->bdrv_reopen_abort) { 1827 drv->bdrv_reopen_abort(reopen_state); 1828 } 1829 } 1830 1831 1832 void bdrv_close(BlockDriverState *bs) 1833 { 1834 BdrvAioNotifier *ban, *ban_next; 1835 1836 if (bs->job) { 1837 block_job_cancel_sync(bs->job); 1838 } 1839 bdrv_drain_all(); /* complete I/O */ 1840 bdrv_flush(bs); 1841 bdrv_drain_all(); /* in case flush left pending I/O */ 1842 notifier_list_notify(&bs->close_notifiers, bs); 1843 1844 if (bs->drv) { 1845 if (bs->backing_hd) { 1846 BlockDriverState *backing_hd = bs->backing_hd; 1847 bdrv_set_backing_hd(bs, NULL); 1848 bdrv_unref(backing_hd); 1849 } 1850 bs->drv->bdrv_close(bs); 1851 g_free(bs->opaque); 1852 bs->opaque = NULL; 1853 bs->drv = NULL; 1854 bs->copy_on_read = 0; 1855 bs->backing_file[0] = '\0'; 1856 bs->backing_format[0] = '\0'; 1857 bs->total_sectors = 0; 1858 bs->encrypted = 0; 1859 bs->valid_key = 0; 1860 bs->sg = 0; 1861 bs->growable = 0; 1862 bs->zero_beyond_eof = false; 1863 QDECREF(bs->options); 1864 bs->options = NULL; 1865 QDECREF(bs->full_open_options); 1866 bs->full_open_options = NULL; 1867 1868 if (bs->file != NULL) { 1869 bdrv_unref(bs->file); 1870 bs->file = NULL; 1871 } 1872 } 1873 1874 bdrv_dev_change_media_cb(bs, false); 1875 1876 /*throttling disk I/O limits*/ 1877 if (bs->io_limits_enabled) { 1878 bdrv_io_limits_disable(bs); 1879 } 1880 1881 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 1882 g_free(ban); 1883 } 1884 QLIST_INIT(&bs->aio_notifiers); 1885 } 1886 1887 void bdrv_close_all(void) 1888 { 1889 BlockDriverState *bs; 1890 1891 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 1892 AioContext *aio_context = bdrv_get_aio_context(bs); 1893 1894 aio_context_acquire(aio_context); 1895 bdrv_close(bs); 1896 aio_context_release(aio_context); 1897 } 1898 } 1899 1900 /* Check if any requests are in-flight (including throttled requests) */ 1901 static bool bdrv_requests_pending(BlockDriverState *bs) 1902 { 1903 if (!QLIST_EMPTY(&bs->tracked_requests)) { 1904 return true; 1905 } 1906 if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) { 1907 return true; 1908 } 1909 if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) { 1910 return true; 1911 } 1912 if (bs->file && bdrv_requests_pending(bs->file)) { 1913 return true; 1914 } 1915 if (bs->backing_hd && bdrv_requests_pending(bs->backing_hd)) { 1916 return true; 1917 } 1918 return false; 1919 } 1920 1921 /* 1922 * Wait for pending requests to complete across all BlockDriverStates 1923 * 1924 * This function does not flush data to disk, use bdrv_flush_all() for that 1925 * after calling this function. 1926 * 1927 * Note that completion of an asynchronous I/O operation can trigger any 1928 * number of other I/O operations on other devices---for example a coroutine 1929 * can be arbitrarily complex and a constant flow of I/O can come until the 1930 * coroutine is complete. Because of this, it is not possible to have a 1931 * function to drain a single device's I/O queue. 1932 */ 1933 void bdrv_drain_all(void) 1934 { 1935 /* Always run first iteration so any pending completion BHs run */ 1936 bool busy = true; 1937 BlockDriverState *bs; 1938 1939 while (busy) { 1940 busy = false; 1941 1942 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 1943 AioContext *aio_context = bdrv_get_aio_context(bs); 1944 bool bs_busy; 1945 1946 aio_context_acquire(aio_context); 1947 bdrv_flush_io_queue(bs); 1948 bdrv_start_throttled_reqs(bs); 1949 bs_busy = bdrv_requests_pending(bs); 1950 bs_busy |= aio_poll(aio_context, bs_busy); 1951 aio_context_release(aio_context); 1952 1953 busy |= bs_busy; 1954 } 1955 } 1956 } 1957 1958 /* make a BlockDriverState anonymous by removing from bdrv_state and 1959 * graph_bdrv_state list. 1960 Also, NULL terminate the device_name to prevent double remove */ 1961 void bdrv_make_anon(BlockDriverState *bs) 1962 { 1963 if (bs->device_name[0] != '\0') { 1964 QTAILQ_REMOVE(&bdrv_states, bs, device_list); 1965 } 1966 bs->device_name[0] = '\0'; 1967 if (bs->node_name[0] != '\0') { 1968 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 1969 } 1970 bs->node_name[0] = '\0'; 1971 } 1972 1973 static void bdrv_rebind(BlockDriverState *bs) 1974 { 1975 if (bs->drv && bs->drv->bdrv_rebind) { 1976 bs->drv->bdrv_rebind(bs); 1977 } 1978 } 1979 1980 static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 1981 BlockDriverState *bs_src) 1982 { 1983 /* move some fields that need to stay attached to the device */ 1984 1985 /* dev info */ 1986 bs_dest->dev_ops = bs_src->dev_ops; 1987 bs_dest->dev_opaque = bs_src->dev_opaque; 1988 bs_dest->dev = bs_src->dev; 1989 bs_dest->guest_block_size = bs_src->guest_block_size; 1990 bs_dest->copy_on_read = bs_src->copy_on_read; 1991 1992 bs_dest->enable_write_cache = bs_src->enable_write_cache; 1993 1994 /* i/o throttled req */ 1995 memcpy(&bs_dest->throttle_state, 1996 &bs_src->throttle_state, 1997 sizeof(ThrottleState)); 1998 bs_dest->throttled_reqs[0] = bs_src->throttled_reqs[0]; 1999 bs_dest->throttled_reqs[1] = bs_src->throttled_reqs[1]; 2000 bs_dest->io_limits_enabled = bs_src->io_limits_enabled; 2001 2002 /* r/w error */ 2003 bs_dest->on_read_error = bs_src->on_read_error; 2004 bs_dest->on_write_error = bs_src->on_write_error; 2005 2006 /* i/o status */ 2007 bs_dest->iostatus_enabled = bs_src->iostatus_enabled; 2008 bs_dest->iostatus = bs_src->iostatus; 2009 2010 /* dirty bitmap */ 2011 bs_dest->dirty_bitmaps = bs_src->dirty_bitmaps; 2012 2013 /* reference count */ 2014 bs_dest->refcnt = bs_src->refcnt; 2015 2016 /* job */ 2017 bs_dest->job = bs_src->job; 2018 2019 /* keep the same entry in bdrv_states */ 2020 pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name), 2021 bs_src->device_name); 2022 bs_dest->device_list = bs_src->device_list; 2023 memcpy(bs_dest->op_blockers, bs_src->op_blockers, 2024 sizeof(bs_dest->op_blockers)); 2025 } 2026 2027 /* 2028 * Swap bs contents for two image chains while they are live, 2029 * while keeping required fields on the BlockDriverState that is 2030 * actually attached to a device. 2031 * 2032 * This will modify the BlockDriverState fields, and swap contents 2033 * between bs_new and bs_old. Both bs_new and bs_old are modified. 2034 * 2035 * bs_new is required to be anonymous. 2036 * 2037 * This function does not create any image files. 2038 */ 2039 void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old) 2040 { 2041 BlockDriverState tmp; 2042 2043 /* The code needs to swap the node_name but simply swapping node_list won't 2044 * work so first remove the nodes from the graph list, do the swap then 2045 * insert them back if needed. 2046 */ 2047 if (bs_new->node_name[0] != '\0') { 2048 QTAILQ_REMOVE(&graph_bdrv_states, bs_new, node_list); 2049 } 2050 if (bs_old->node_name[0] != '\0') { 2051 QTAILQ_REMOVE(&graph_bdrv_states, bs_old, node_list); 2052 } 2053 2054 /* bs_new must be anonymous and shouldn't have anything fancy enabled */ 2055 assert(bs_new->device_name[0] == '\0'); 2056 assert(QLIST_EMPTY(&bs_new->dirty_bitmaps)); 2057 assert(bs_new->job == NULL); 2058 assert(bs_new->dev == NULL); 2059 assert(bs_new->io_limits_enabled == false); 2060 assert(!throttle_have_timer(&bs_new->throttle_state)); 2061 2062 tmp = *bs_new; 2063 *bs_new = *bs_old; 2064 *bs_old = tmp; 2065 2066 /* there are some fields that should not be swapped, move them back */ 2067 bdrv_move_feature_fields(&tmp, bs_old); 2068 bdrv_move_feature_fields(bs_old, bs_new); 2069 bdrv_move_feature_fields(bs_new, &tmp); 2070 2071 /* bs_new shouldn't be in bdrv_states even after the swap! */ 2072 assert(bs_new->device_name[0] == '\0'); 2073 2074 /* Check a few fields that should remain attached to the device */ 2075 assert(bs_new->dev == NULL); 2076 assert(bs_new->job == NULL); 2077 assert(bs_new->io_limits_enabled == false); 2078 assert(!throttle_have_timer(&bs_new->throttle_state)); 2079 2080 /* insert the nodes back into the graph node list if needed */ 2081 if (bs_new->node_name[0] != '\0') { 2082 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs_new, node_list); 2083 } 2084 if (bs_old->node_name[0] != '\0') { 2085 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs_old, node_list); 2086 } 2087 2088 bdrv_rebind(bs_new); 2089 bdrv_rebind(bs_old); 2090 } 2091 2092 /* 2093 * Add new bs contents at the top of an image chain while the chain is 2094 * live, while keeping required fields on the top layer. 2095 * 2096 * This will modify the BlockDriverState fields, and swap contents 2097 * between bs_new and bs_top. Both bs_new and bs_top are modified. 2098 * 2099 * bs_new is required to be anonymous. 2100 * 2101 * This function does not create any image files. 2102 */ 2103 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 2104 { 2105 bdrv_swap(bs_new, bs_top); 2106 2107 /* The contents of 'tmp' will become bs_top, as we are 2108 * swapping bs_new and bs_top contents. */ 2109 bdrv_set_backing_hd(bs_top, bs_new); 2110 } 2111 2112 static void bdrv_delete(BlockDriverState *bs) 2113 { 2114 assert(!bs->dev); 2115 assert(!bs->job); 2116 assert(bdrv_op_blocker_is_empty(bs)); 2117 assert(!bs->refcnt); 2118 assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 2119 2120 bdrv_close(bs); 2121 2122 /* remove from list, if necessary */ 2123 bdrv_make_anon(bs); 2124 2125 drive_info_del(drive_get_by_blockdev(bs)); 2126 g_free(bs); 2127 } 2128 2129 int bdrv_attach_dev(BlockDriverState *bs, void *dev) 2130 /* TODO change to DeviceState *dev when all users are qdevified */ 2131 { 2132 if (bs->dev) { 2133 return -EBUSY; 2134 } 2135 bs->dev = dev; 2136 bdrv_iostatus_reset(bs); 2137 2138 /* We're expecting I/O from the device so bump up coroutine pool size */ 2139 qemu_coroutine_adjust_pool_size(COROUTINE_POOL_RESERVATION); 2140 return 0; 2141 } 2142 2143 /* TODO qdevified devices don't use this, remove when devices are qdevified */ 2144 void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev) 2145 { 2146 if (bdrv_attach_dev(bs, dev) < 0) { 2147 abort(); 2148 } 2149 } 2150 2151 void bdrv_detach_dev(BlockDriverState *bs, void *dev) 2152 /* TODO change to DeviceState *dev when all users are qdevified */ 2153 { 2154 assert(bs->dev == dev); 2155 bs->dev = NULL; 2156 bs->dev_ops = NULL; 2157 bs->dev_opaque = NULL; 2158 bs->guest_block_size = 512; 2159 qemu_coroutine_adjust_pool_size(-COROUTINE_POOL_RESERVATION); 2160 } 2161 2162 /* TODO change to return DeviceState * when all users are qdevified */ 2163 void *bdrv_get_attached_dev(BlockDriverState *bs) 2164 { 2165 return bs->dev; 2166 } 2167 2168 void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops, 2169 void *opaque) 2170 { 2171 bs->dev_ops = ops; 2172 bs->dev_opaque = opaque; 2173 } 2174 2175 static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load) 2176 { 2177 if (bs->dev_ops && bs->dev_ops->change_media_cb) { 2178 bool tray_was_closed = !bdrv_dev_is_tray_open(bs); 2179 bs->dev_ops->change_media_cb(bs->dev_opaque, load); 2180 if (tray_was_closed) { 2181 /* tray open */ 2182 qapi_event_send_device_tray_moved(bdrv_get_device_name(bs), 2183 true, &error_abort); 2184 } 2185 if (load) { 2186 /* tray close */ 2187 qapi_event_send_device_tray_moved(bdrv_get_device_name(bs), 2188 false, &error_abort); 2189 } 2190 } 2191 } 2192 2193 bool bdrv_dev_has_removable_media(BlockDriverState *bs) 2194 { 2195 return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb); 2196 } 2197 2198 void bdrv_dev_eject_request(BlockDriverState *bs, bool force) 2199 { 2200 if (bs->dev_ops && bs->dev_ops->eject_request_cb) { 2201 bs->dev_ops->eject_request_cb(bs->dev_opaque, force); 2202 } 2203 } 2204 2205 bool bdrv_dev_is_tray_open(BlockDriverState *bs) 2206 { 2207 if (bs->dev_ops && bs->dev_ops->is_tray_open) { 2208 return bs->dev_ops->is_tray_open(bs->dev_opaque); 2209 } 2210 return false; 2211 } 2212 2213 static void bdrv_dev_resize_cb(BlockDriverState *bs) 2214 { 2215 if (bs->dev_ops && bs->dev_ops->resize_cb) { 2216 bs->dev_ops->resize_cb(bs->dev_opaque); 2217 } 2218 } 2219 2220 bool bdrv_dev_is_medium_locked(BlockDriverState *bs) 2221 { 2222 if (bs->dev_ops && bs->dev_ops->is_medium_locked) { 2223 return bs->dev_ops->is_medium_locked(bs->dev_opaque); 2224 } 2225 return false; 2226 } 2227 2228 /* 2229 * Run consistency checks on an image 2230 * 2231 * Returns 0 if the check could be completed (it doesn't mean that the image is 2232 * free of errors) or -errno when an internal error occurred. The results of the 2233 * check are stored in res. 2234 */ 2235 int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 2236 { 2237 if (bs->drv == NULL) { 2238 return -ENOMEDIUM; 2239 } 2240 if (bs->drv->bdrv_check == NULL) { 2241 return -ENOTSUP; 2242 } 2243 2244 memset(res, 0, sizeof(*res)); 2245 return bs->drv->bdrv_check(bs, res, fix); 2246 } 2247 2248 #define COMMIT_BUF_SECTORS 2048 2249 2250 /* commit COW file into the raw image */ 2251 int bdrv_commit(BlockDriverState *bs) 2252 { 2253 BlockDriver *drv = bs->drv; 2254 int64_t sector, total_sectors, length, backing_length; 2255 int n, ro, open_flags; 2256 int ret = 0; 2257 uint8_t *buf = NULL; 2258 char filename[PATH_MAX]; 2259 2260 if (!drv) 2261 return -ENOMEDIUM; 2262 2263 if (!bs->backing_hd) { 2264 return -ENOTSUP; 2265 } 2266 2267 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT, NULL) || 2268 bdrv_op_is_blocked(bs->backing_hd, BLOCK_OP_TYPE_COMMIT, NULL)) { 2269 return -EBUSY; 2270 } 2271 2272 ro = bs->backing_hd->read_only; 2273 /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */ 2274 pstrcpy(filename, sizeof(filename), bs->backing_hd->filename); 2275 open_flags = bs->backing_hd->open_flags; 2276 2277 if (ro) { 2278 if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) { 2279 return -EACCES; 2280 } 2281 } 2282 2283 length = bdrv_getlength(bs); 2284 if (length < 0) { 2285 ret = length; 2286 goto ro_cleanup; 2287 } 2288 2289 backing_length = bdrv_getlength(bs->backing_hd); 2290 if (backing_length < 0) { 2291 ret = backing_length; 2292 goto ro_cleanup; 2293 } 2294 2295 /* If our top snapshot is larger than the backing file image, 2296 * grow the backing file image if possible. If not possible, 2297 * we must return an error */ 2298 if (length > backing_length) { 2299 ret = bdrv_truncate(bs->backing_hd, length); 2300 if (ret < 0) { 2301 goto ro_cleanup; 2302 } 2303 } 2304 2305 total_sectors = length >> BDRV_SECTOR_BITS; 2306 2307 /* qemu_try_blockalign() for bs will choose an alignment that works for 2308 * bs->backing_hd as well, so no need to compare the alignment manually. */ 2309 buf = qemu_try_blockalign(bs, COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 2310 if (buf == NULL) { 2311 ret = -ENOMEM; 2312 goto ro_cleanup; 2313 } 2314 2315 for (sector = 0; sector < total_sectors; sector += n) { 2316 ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n); 2317 if (ret < 0) { 2318 goto ro_cleanup; 2319 } 2320 if (ret) { 2321 ret = bdrv_read(bs, sector, buf, n); 2322 if (ret < 0) { 2323 goto ro_cleanup; 2324 } 2325 2326 ret = bdrv_write(bs->backing_hd, sector, buf, n); 2327 if (ret < 0) { 2328 goto ro_cleanup; 2329 } 2330 } 2331 } 2332 2333 if (drv->bdrv_make_empty) { 2334 ret = drv->bdrv_make_empty(bs); 2335 if (ret < 0) { 2336 goto ro_cleanup; 2337 } 2338 bdrv_flush(bs); 2339 } 2340 2341 /* 2342 * Make sure all data we wrote to the backing device is actually 2343 * stable on disk. 2344 */ 2345 if (bs->backing_hd) { 2346 bdrv_flush(bs->backing_hd); 2347 } 2348 2349 ret = 0; 2350 ro_cleanup: 2351 qemu_vfree(buf); 2352 2353 if (ro) { 2354 /* ignoring error return here */ 2355 bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL); 2356 } 2357 2358 return ret; 2359 } 2360 2361 int bdrv_commit_all(void) 2362 { 2363 BlockDriverState *bs; 2364 2365 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 2366 AioContext *aio_context = bdrv_get_aio_context(bs); 2367 2368 aio_context_acquire(aio_context); 2369 if (bs->drv && bs->backing_hd) { 2370 int ret = bdrv_commit(bs); 2371 if (ret < 0) { 2372 aio_context_release(aio_context); 2373 return ret; 2374 } 2375 } 2376 aio_context_release(aio_context); 2377 } 2378 return 0; 2379 } 2380 2381 /** 2382 * Remove an active request from the tracked requests list 2383 * 2384 * This function should be called when a tracked request is completing. 2385 */ 2386 static void tracked_request_end(BdrvTrackedRequest *req) 2387 { 2388 if (req->serialising) { 2389 req->bs->serialising_in_flight--; 2390 } 2391 2392 QLIST_REMOVE(req, list); 2393 qemu_co_queue_restart_all(&req->wait_queue); 2394 } 2395 2396 /** 2397 * Add an active request to the tracked requests list 2398 */ 2399 static void tracked_request_begin(BdrvTrackedRequest *req, 2400 BlockDriverState *bs, 2401 int64_t offset, 2402 unsigned int bytes, bool is_write) 2403 { 2404 *req = (BdrvTrackedRequest){ 2405 .bs = bs, 2406 .offset = offset, 2407 .bytes = bytes, 2408 .is_write = is_write, 2409 .co = qemu_coroutine_self(), 2410 .serialising = false, 2411 .overlap_offset = offset, 2412 .overlap_bytes = bytes, 2413 }; 2414 2415 qemu_co_queue_init(&req->wait_queue); 2416 2417 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list); 2418 } 2419 2420 static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align) 2421 { 2422 int64_t overlap_offset = req->offset & ~(align - 1); 2423 unsigned int overlap_bytes = ROUND_UP(req->offset + req->bytes, align) 2424 - overlap_offset; 2425 2426 if (!req->serialising) { 2427 req->bs->serialising_in_flight++; 2428 req->serialising = true; 2429 } 2430 2431 req->overlap_offset = MIN(req->overlap_offset, overlap_offset); 2432 req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes); 2433 } 2434 2435 /** 2436 * Round a region to cluster boundaries 2437 */ 2438 void bdrv_round_to_clusters(BlockDriverState *bs, 2439 int64_t sector_num, int nb_sectors, 2440 int64_t *cluster_sector_num, 2441 int *cluster_nb_sectors) 2442 { 2443 BlockDriverInfo bdi; 2444 2445 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) { 2446 *cluster_sector_num = sector_num; 2447 *cluster_nb_sectors = nb_sectors; 2448 } else { 2449 int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE; 2450 *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c); 2451 *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num + 2452 nb_sectors, c); 2453 } 2454 } 2455 2456 static int bdrv_get_cluster_size(BlockDriverState *bs) 2457 { 2458 BlockDriverInfo bdi; 2459 int ret; 2460 2461 ret = bdrv_get_info(bs, &bdi); 2462 if (ret < 0 || bdi.cluster_size == 0) { 2463 return bs->request_alignment; 2464 } else { 2465 return bdi.cluster_size; 2466 } 2467 } 2468 2469 static bool tracked_request_overlaps(BdrvTrackedRequest *req, 2470 int64_t offset, unsigned int bytes) 2471 { 2472 /* aaaa bbbb */ 2473 if (offset >= req->overlap_offset + req->overlap_bytes) { 2474 return false; 2475 } 2476 /* bbbb aaaa */ 2477 if (req->overlap_offset >= offset + bytes) { 2478 return false; 2479 } 2480 return true; 2481 } 2482 2483 static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self) 2484 { 2485 BlockDriverState *bs = self->bs; 2486 BdrvTrackedRequest *req; 2487 bool retry; 2488 bool waited = false; 2489 2490 if (!bs->serialising_in_flight) { 2491 return false; 2492 } 2493 2494 do { 2495 retry = false; 2496 QLIST_FOREACH(req, &bs->tracked_requests, list) { 2497 if (req == self || (!req->serialising && !self->serialising)) { 2498 continue; 2499 } 2500 if (tracked_request_overlaps(req, self->overlap_offset, 2501 self->overlap_bytes)) 2502 { 2503 /* Hitting this means there was a reentrant request, for 2504 * example, a block driver issuing nested requests. This must 2505 * never happen since it means deadlock. 2506 */ 2507 assert(qemu_coroutine_self() != req->co); 2508 2509 /* If the request is already (indirectly) waiting for us, or 2510 * will wait for us as soon as it wakes up, then just go on 2511 * (instead of producing a deadlock in the former case). */ 2512 if (!req->waiting_for) { 2513 self->waiting_for = req; 2514 qemu_co_queue_wait(&req->wait_queue); 2515 self->waiting_for = NULL; 2516 retry = true; 2517 waited = true; 2518 break; 2519 } 2520 } 2521 } 2522 } while (retry); 2523 2524 return waited; 2525 } 2526 2527 /* 2528 * Return values: 2529 * 0 - success 2530 * -EINVAL - backing format specified, but no file 2531 * -ENOSPC - can't update the backing file because no space is left in the 2532 * image file header 2533 * -ENOTSUP - format driver doesn't support changing the backing file 2534 */ 2535 int bdrv_change_backing_file(BlockDriverState *bs, 2536 const char *backing_file, const char *backing_fmt) 2537 { 2538 BlockDriver *drv = bs->drv; 2539 int ret; 2540 2541 /* Backing file format doesn't make sense without a backing file */ 2542 if (backing_fmt && !backing_file) { 2543 return -EINVAL; 2544 } 2545 2546 if (drv->bdrv_change_backing_file != NULL) { 2547 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2548 } else { 2549 ret = -ENOTSUP; 2550 } 2551 2552 if (ret == 0) { 2553 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2554 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2555 } 2556 return ret; 2557 } 2558 2559 /* 2560 * Finds the image layer in the chain that has 'bs' as its backing file. 2561 * 2562 * active is the current topmost image. 2563 * 2564 * Returns NULL if bs is not found in active's image chain, 2565 * or if active == bs. 2566 * 2567 * Returns the bottommost base image if bs == NULL. 2568 */ 2569 BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 2570 BlockDriverState *bs) 2571 { 2572 while (active && bs != active->backing_hd) { 2573 active = active->backing_hd; 2574 } 2575 2576 return active; 2577 } 2578 2579 /* Given a BDS, searches for the base layer. */ 2580 BlockDriverState *bdrv_find_base(BlockDriverState *bs) 2581 { 2582 return bdrv_find_overlay(bs, NULL); 2583 } 2584 2585 typedef struct BlkIntermediateStates { 2586 BlockDriverState *bs; 2587 QSIMPLEQ_ENTRY(BlkIntermediateStates) entry; 2588 } BlkIntermediateStates; 2589 2590 2591 /* 2592 * Drops images above 'base' up to and including 'top', and sets the image 2593 * above 'top' to have base as its backing file. 2594 * 2595 * Requires that the overlay to 'top' is opened r/w, so that the backing file 2596 * information in 'bs' can be properly updated. 2597 * 2598 * E.g., this will convert the following chain: 2599 * bottom <- base <- intermediate <- top <- active 2600 * 2601 * to 2602 * 2603 * bottom <- base <- active 2604 * 2605 * It is allowed for bottom==base, in which case it converts: 2606 * 2607 * base <- intermediate <- top <- active 2608 * 2609 * to 2610 * 2611 * base <- active 2612 * 2613 * If backing_file_str is non-NULL, it will be used when modifying top's 2614 * overlay image metadata. 2615 * 2616 * Error conditions: 2617 * if active == top, that is considered an error 2618 * 2619 */ 2620 int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 2621 BlockDriverState *base, const char *backing_file_str) 2622 { 2623 BlockDriverState *intermediate; 2624 BlockDriverState *base_bs = NULL; 2625 BlockDriverState *new_top_bs = NULL; 2626 BlkIntermediateStates *intermediate_state, *next; 2627 int ret = -EIO; 2628 2629 QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete; 2630 QSIMPLEQ_INIT(&states_to_delete); 2631 2632 if (!top->drv || !base->drv) { 2633 goto exit; 2634 } 2635 2636 new_top_bs = bdrv_find_overlay(active, top); 2637 2638 if (new_top_bs == NULL) { 2639 /* we could not find the image above 'top', this is an error */ 2640 goto exit; 2641 } 2642 2643 /* special case of new_top_bs->backing_hd already pointing to base - nothing 2644 * to do, no intermediate images */ 2645 if (new_top_bs->backing_hd == base) { 2646 ret = 0; 2647 goto exit; 2648 } 2649 2650 intermediate = top; 2651 2652 /* now we will go down through the list, and add each BDS we find 2653 * into our deletion queue, until we hit the 'base' 2654 */ 2655 while (intermediate) { 2656 intermediate_state = g_new0(BlkIntermediateStates, 1); 2657 intermediate_state->bs = intermediate; 2658 QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry); 2659 2660 if (intermediate->backing_hd == base) { 2661 base_bs = intermediate->backing_hd; 2662 break; 2663 } 2664 intermediate = intermediate->backing_hd; 2665 } 2666 if (base_bs == NULL) { 2667 /* something went wrong, we did not end at the base. safely 2668 * unravel everything, and exit with error */ 2669 goto exit; 2670 } 2671 2672 /* success - we can delete the intermediate states, and link top->base */ 2673 backing_file_str = backing_file_str ? backing_file_str : base_bs->filename; 2674 ret = bdrv_change_backing_file(new_top_bs, backing_file_str, 2675 base_bs->drv ? base_bs->drv->format_name : ""); 2676 if (ret) { 2677 goto exit; 2678 } 2679 bdrv_set_backing_hd(new_top_bs, base_bs); 2680 2681 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 2682 /* so that bdrv_close() does not recursively close the chain */ 2683 bdrv_set_backing_hd(intermediate_state->bs, NULL); 2684 bdrv_unref(intermediate_state->bs); 2685 } 2686 ret = 0; 2687 2688 exit: 2689 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 2690 g_free(intermediate_state); 2691 } 2692 return ret; 2693 } 2694 2695 2696 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset, 2697 size_t size) 2698 { 2699 int64_t len; 2700 2701 if (size > INT_MAX) { 2702 return -EIO; 2703 } 2704 2705 if (!bdrv_is_inserted(bs)) 2706 return -ENOMEDIUM; 2707 2708 if (bs->growable) 2709 return 0; 2710 2711 len = bdrv_getlength(bs); 2712 2713 if (offset < 0) 2714 return -EIO; 2715 2716 if ((offset > len) || (len - offset < size)) 2717 return -EIO; 2718 2719 return 0; 2720 } 2721 2722 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num, 2723 int nb_sectors) 2724 { 2725 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) { 2726 return -EIO; 2727 } 2728 2729 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE, 2730 nb_sectors * BDRV_SECTOR_SIZE); 2731 } 2732 2733 typedef struct RwCo { 2734 BlockDriverState *bs; 2735 int64_t offset; 2736 QEMUIOVector *qiov; 2737 bool is_write; 2738 int ret; 2739 BdrvRequestFlags flags; 2740 } RwCo; 2741 2742 static void coroutine_fn bdrv_rw_co_entry(void *opaque) 2743 { 2744 RwCo *rwco = opaque; 2745 2746 if (!rwco->is_write) { 2747 rwco->ret = bdrv_co_do_preadv(rwco->bs, rwco->offset, 2748 rwco->qiov->size, rwco->qiov, 2749 rwco->flags); 2750 } else { 2751 rwco->ret = bdrv_co_do_pwritev(rwco->bs, rwco->offset, 2752 rwco->qiov->size, rwco->qiov, 2753 rwco->flags); 2754 } 2755 } 2756 2757 /* 2758 * Process a vectored synchronous request using coroutines 2759 */ 2760 static int bdrv_prwv_co(BlockDriverState *bs, int64_t offset, 2761 QEMUIOVector *qiov, bool is_write, 2762 BdrvRequestFlags flags) 2763 { 2764 Coroutine *co; 2765 RwCo rwco = { 2766 .bs = bs, 2767 .offset = offset, 2768 .qiov = qiov, 2769 .is_write = is_write, 2770 .ret = NOT_DONE, 2771 .flags = flags, 2772 }; 2773 2774 /** 2775 * In sync call context, when the vcpu is blocked, this throttling timer 2776 * will not fire; so the I/O throttling function has to be disabled here 2777 * if it has been enabled. 2778 */ 2779 if (bs->io_limits_enabled) { 2780 fprintf(stderr, "Disabling I/O throttling on '%s' due " 2781 "to synchronous I/O.\n", bdrv_get_device_name(bs)); 2782 bdrv_io_limits_disable(bs); 2783 } 2784 2785 if (qemu_in_coroutine()) { 2786 /* Fast-path if already in coroutine context */ 2787 bdrv_rw_co_entry(&rwco); 2788 } else { 2789 AioContext *aio_context = bdrv_get_aio_context(bs); 2790 2791 co = qemu_coroutine_create(bdrv_rw_co_entry); 2792 qemu_coroutine_enter(co, &rwco); 2793 while (rwco.ret == NOT_DONE) { 2794 aio_poll(aio_context, true); 2795 } 2796 } 2797 return rwco.ret; 2798 } 2799 2800 /* 2801 * Process a synchronous request using coroutines 2802 */ 2803 static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf, 2804 int nb_sectors, bool is_write, BdrvRequestFlags flags) 2805 { 2806 QEMUIOVector qiov; 2807 struct iovec iov = { 2808 .iov_base = (void *)buf, 2809 .iov_len = nb_sectors * BDRV_SECTOR_SIZE, 2810 }; 2811 2812 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) { 2813 return -EINVAL; 2814 } 2815 2816 qemu_iovec_init_external(&qiov, &iov, 1); 2817 return bdrv_prwv_co(bs, sector_num << BDRV_SECTOR_BITS, 2818 &qiov, is_write, flags); 2819 } 2820 2821 /* return < 0 if error. See bdrv_write() for the return codes */ 2822 int bdrv_read(BlockDriverState *bs, int64_t sector_num, 2823 uint8_t *buf, int nb_sectors) 2824 { 2825 return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0); 2826 } 2827 2828 /* Just like bdrv_read(), but with I/O throttling temporarily disabled */ 2829 int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num, 2830 uint8_t *buf, int nb_sectors) 2831 { 2832 bool enabled; 2833 int ret; 2834 2835 enabled = bs->io_limits_enabled; 2836 bs->io_limits_enabled = false; 2837 ret = bdrv_read(bs, sector_num, buf, nb_sectors); 2838 bs->io_limits_enabled = enabled; 2839 return ret; 2840 } 2841 2842 /* Return < 0 if error. Important errors are: 2843 -EIO generic I/O error (may happen for all errors) 2844 -ENOMEDIUM No media inserted. 2845 -EINVAL Invalid sector number or nb_sectors 2846 -EACCES Trying to write a read-only device 2847 */ 2848 int bdrv_write(BlockDriverState *bs, int64_t sector_num, 2849 const uint8_t *buf, int nb_sectors) 2850 { 2851 return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0); 2852 } 2853 2854 int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num, 2855 int nb_sectors, BdrvRequestFlags flags) 2856 { 2857 return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true, 2858 BDRV_REQ_ZERO_WRITE | flags); 2859 } 2860 2861 /* 2862 * Completely zero out a block device with the help of bdrv_write_zeroes. 2863 * The operation is sped up by checking the block status and only writing 2864 * zeroes to the device if they currently do not return zeroes. Optional 2865 * flags are passed through to bdrv_write_zeroes (e.g. BDRV_REQ_MAY_UNMAP). 2866 * 2867 * Returns < 0 on error, 0 on success. For error codes see bdrv_write(). 2868 */ 2869 int bdrv_make_zero(BlockDriverState *bs, BdrvRequestFlags flags) 2870 { 2871 int64_t target_sectors, ret, nb_sectors, sector_num = 0; 2872 int n; 2873 2874 target_sectors = bdrv_nb_sectors(bs); 2875 if (target_sectors < 0) { 2876 return target_sectors; 2877 } 2878 2879 for (;;) { 2880 nb_sectors = target_sectors - sector_num; 2881 if (nb_sectors <= 0) { 2882 return 0; 2883 } 2884 if (nb_sectors > INT_MAX) { 2885 nb_sectors = INT_MAX; 2886 } 2887 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &n); 2888 if (ret < 0) { 2889 error_report("error getting block status at sector %" PRId64 ": %s", 2890 sector_num, strerror(-ret)); 2891 return ret; 2892 } 2893 if (ret & BDRV_BLOCK_ZERO) { 2894 sector_num += n; 2895 continue; 2896 } 2897 ret = bdrv_write_zeroes(bs, sector_num, n, flags); 2898 if (ret < 0) { 2899 error_report("error writing zeroes at sector %" PRId64 ": %s", 2900 sector_num, strerror(-ret)); 2901 return ret; 2902 } 2903 sector_num += n; 2904 } 2905 } 2906 2907 int bdrv_pread(BlockDriverState *bs, int64_t offset, void *buf, int bytes) 2908 { 2909 QEMUIOVector qiov; 2910 struct iovec iov = { 2911 .iov_base = (void *)buf, 2912 .iov_len = bytes, 2913 }; 2914 int ret; 2915 2916 if (bytes < 0) { 2917 return -EINVAL; 2918 } 2919 2920 qemu_iovec_init_external(&qiov, &iov, 1); 2921 ret = bdrv_prwv_co(bs, offset, &qiov, false, 0); 2922 if (ret < 0) { 2923 return ret; 2924 } 2925 2926 return bytes; 2927 } 2928 2929 int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov) 2930 { 2931 int ret; 2932 2933 ret = bdrv_prwv_co(bs, offset, qiov, true, 0); 2934 if (ret < 0) { 2935 return ret; 2936 } 2937 2938 return qiov->size; 2939 } 2940 2941 int bdrv_pwrite(BlockDriverState *bs, int64_t offset, 2942 const void *buf, int bytes) 2943 { 2944 QEMUIOVector qiov; 2945 struct iovec iov = { 2946 .iov_base = (void *) buf, 2947 .iov_len = bytes, 2948 }; 2949 2950 if (bytes < 0) { 2951 return -EINVAL; 2952 } 2953 2954 qemu_iovec_init_external(&qiov, &iov, 1); 2955 return bdrv_pwritev(bs, offset, &qiov); 2956 } 2957 2958 /* 2959 * Writes to the file and ensures that no writes are reordered across this 2960 * request (acts as a barrier) 2961 * 2962 * Returns 0 on success, -errno in error cases. 2963 */ 2964 int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset, 2965 const void *buf, int count) 2966 { 2967 int ret; 2968 2969 ret = bdrv_pwrite(bs, offset, buf, count); 2970 if (ret < 0) { 2971 return ret; 2972 } 2973 2974 /* No flush needed for cache modes that already do it */ 2975 if (bs->enable_write_cache) { 2976 bdrv_flush(bs); 2977 } 2978 2979 return 0; 2980 } 2981 2982 static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs, 2983 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2984 { 2985 /* Perform I/O through a temporary buffer so that users who scribble over 2986 * their read buffer while the operation is in progress do not end up 2987 * modifying the image file. This is critical for zero-copy guest I/O 2988 * where anything might happen inside guest memory. 2989 */ 2990 void *bounce_buffer; 2991 2992 BlockDriver *drv = bs->drv; 2993 struct iovec iov; 2994 QEMUIOVector bounce_qiov; 2995 int64_t cluster_sector_num; 2996 int cluster_nb_sectors; 2997 size_t skip_bytes; 2998 int ret; 2999 3000 /* Cover entire cluster so no additional backing file I/O is required when 3001 * allocating cluster in the image file. 3002 */ 3003 bdrv_round_to_clusters(bs, sector_num, nb_sectors, 3004 &cluster_sector_num, &cluster_nb_sectors); 3005 3006 trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, 3007 cluster_sector_num, cluster_nb_sectors); 3008 3009 iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE; 3010 iov.iov_base = bounce_buffer = qemu_try_blockalign(bs, iov.iov_len); 3011 if (bounce_buffer == NULL) { 3012 ret = -ENOMEM; 3013 goto err; 3014 } 3015 3016 qemu_iovec_init_external(&bounce_qiov, &iov, 1); 3017 3018 ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors, 3019 &bounce_qiov); 3020 if (ret < 0) { 3021 goto err; 3022 } 3023 3024 if (drv->bdrv_co_write_zeroes && 3025 buffer_is_zero(bounce_buffer, iov.iov_len)) { 3026 ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num, 3027 cluster_nb_sectors, 0); 3028 } else { 3029 /* This does not change the data on the disk, it is not necessary 3030 * to flush even in cache=writethrough mode. 3031 */ 3032 ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors, 3033 &bounce_qiov); 3034 } 3035 3036 if (ret < 0) { 3037 /* It might be okay to ignore write errors for guest requests. If this 3038 * is a deliberate copy-on-read then we don't want to ignore the error. 3039 * Simply report it in all cases. 3040 */ 3041 goto err; 3042 } 3043 3044 skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE; 3045 qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, 3046 nb_sectors * BDRV_SECTOR_SIZE); 3047 3048 err: 3049 qemu_vfree(bounce_buffer); 3050 return ret; 3051 } 3052 3053 /* 3054 * Forwards an already correctly aligned request to the BlockDriver. This 3055 * handles copy on read and zeroing after EOF; any other features must be 3056 * implemented by the caller. 3057 */ 3058 static int coroutine_fn bdrv_aligned_preadv(BlockDriverState *bs, 3059 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes, 3060 int64_t align, QEMUIOVector *qiov, int flags) 3061 { 3062 BlockDriver *drv = bs->drv; 3063 int ret; 3064 3065 int64_t sector_num = offset >> BDRV_SECTOR_BITS; 3066 unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS; 3067 3068 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0); 3069 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0); 3070 assert(!qiov || bytes == qiov->size); 3071 3072 /* Handle Copy on Read and associated serialisation */ 3073 if (flags & BDRV_REQ_COPY_ON_READ) { 3074 /* If we touch the same cluster it counts as an overlap. This 3075 * guarantees that allocating writes will be serialized and not race 3076 * with each other for the same cluster. For example, in copy-on-read 3077 * it ensures that the CoR read and write operations are atomic and 3078 * guest writes cannot interleave between them. */ 3079 mark_request_serialising(req, bdrv_get_cluster_size(bs)); 3080 } 3081 3082 wait_serialising_requests(req); 3083 3084 if (flags & BDRV_REQ_COPY_ON_READ) { 3085 int pnum; 3086 3087 ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum); 3088 if (ret < 0) { 3089 goto out; 3090 } 3091 3092 if (!ret || pnum != nb_sectors) { 3093 ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov); 3094 goto out; 3095 } 3096 } 3097 3098 /* Forward the request to the BlockDriver */ 3099 if (!(bs->zero_beyond_eof && bs->growable)) { 3100 ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov); 3101 } else { 3102 /* Read zeros after EOF of growable BDSes */ 3103 int64_t total_sectors, max_nb_sectors; 3104 3105 total_sectors = bdrv_nb_sectors(bs); 3106 if (total_sectors < 0) { 3107 ret = total_sectors; 3108 goto out; 3109 } 3110 3111 max_nb_sectors = ROUND_UP(MAX(0, total_sectors - sector_num), 3112 align >> BDRV_SECTOR_BITS); 3113 if (max_nb_sectors > 0) { 3114 QEMUIOVector local_qiov; 3115 size_t local_sectors; 3116 3117 max_nb_sectors = MIN(max_nb_sectors, SIZE_MAX / BDRV_SECTOR_BITS); 3118 local_sectors = MIN(max_nb_sectors, nb_sectors); 3119 3120 qemu_iovec_init(&local_qiov, qiov->niov); 3121 qemu_iovec_concat(&local_qiov, qiov, 0, 3122 local_sectors * BDRV_SECTOR_SIZE); 3123 3124 ret = drv->bdrv_co_readv(bs, sector_num, local_sectors, 3125 &local_qiov); 3126 3127 qemu_iovec_destroy(&local_qiov); 3128 } else { 3129 ret = 0; 3130 } 3131 3132 /* Reading beyond end of file is supposed to produce zeroes */ 3133 if (ret == 0 && total_sectors < sector_num + nb_sectors) { 3134 uint64_t offset = MAX(0, total_sectors - sector_num); 3135 uint64_t bytes = (sector_num + nb_sectors - offset) * 3136 BDRV_SECTOR_SIZE; 3137 qemu_iovec_memset(qiov, offset * BDRV_SECTOR_SIZE, 0, bytes); 3138 } 3139 } 3140 3141 out: 3142 return ret; 3143 } 3144 3145 /* 3146 * Handle a read request in coroutine context 3147 */ 3148 static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs, 3149 int64_t offset, unsigned int bytes, QEMUIOVector *qiov, 3150 BdrvRequestFlags flags) 3151 { 3152 BlockDriver *drv = bs->drv; 3153 BdrvTrackedRequest req; 3154 3155 /* TODO Lift BDRV_SECTOR_SIZE restriction in BlockDriver interface */ 3156 uint64_t align = MAX(BDRV_SECTOR_SIZE, bs->request_alignment); 3157 uint8_t *head_buf = NULL; 3158 uint8_t *tail_buf = NULL; 3159 QEMUIOVector local_qiov; 3160 bool use_local_qiov = false; 3161 int ret; 3162 3163 if (!drv) { 3164 return -ENOMEDIUM; 3165 } 3166 if (bdrv_check_byte_request(bs, offset, bytes)) { 3167 return -EIO; 3168 } 3169 3170 if (bs->copy_on_read) { 3171 flags |= BDRV_REQ_COPY_ON_READ; 3172 } 3173 3174 /* throttling disk I/O */ 3175 if (bs->io_limits_enabled) { 3176 bdrv_io_limits_intercept(bs, bytes, false); 3177 } 3178 3179 /* Align read if necessary by padding qiov */ 3180 if (offset & (align - 1)) { 3181 head_buf = qemu_blockalign(bs, align); 3182 qemu_iovec_init(&local_qiov, qiov->niov + 2); 3183 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1)); 3184 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size); 3185 use_local_qiov = true; 3186 3187 bytes += offset & (align - 1); 3188 offset = offset & ~(align - 1); 3189 } 3190 3191 if ((offset + bytes) & (align - 1)) { 3192 if (!use_local_qiov) { 3193 qemu_iovec_init(&local_qiov, qiov->niov + 1); 3194 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size); 3195 use_local_qiov = true; 3196 } 3197 tail_buf = qemu_blockalign(bs, align); 3198 qemu_iovec_add(&local_qiov, tail_buf, 3199 align - ((offset + bytes) & (align - 1))); 3200 3201 bytes = ROUND_UP(bytes, align); 3202 } 3203 3204 tracked_request_begin(&req, bs, offset, bytes, false); 3205 ret = bdrv_aligned_preadv(bs, &req, offset, bytes, align, 3206 use_local_qiov ? &local_qiov : qiov, 3207 flags); 3208 tracked_request_end(&req); 3209 3210 if (use_local_qiov) { 3211 qemu_iovec_destroy(&local_qiov); 3212 qemu_vfree(head_buf); 3213 qemu_vfree(tail_buf); 3214 } 3215 3216 return ret; 3217 } 3218 3219 static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs, 3220 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 3221 BdrvRequestFlags flags) 3222 { 3223 if (nb_sectors < 0 || nb_sectors > (UINT_MAX >> BDRV_SECTOR_BITS)) { 3224 return -EINVAL; 3225 } 3226 3227 return bdrv_co_do_preadv(bs, sector_num << BDRV_SECTOR_BITS, 3228 nb_sectors << BDRV_SECTOR_BITS, qiov, flags); 3229 } 3230 3231 int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num, 3232 int nb_sectors, QEMUIOVector *qiov) 3233 { 3234 trace_bdrv_co_readv(bs, sector_num, nb_sectors); 3235 3236 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0); 3237 } 3238 3239 int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs, 3240 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 3241 { 3242 trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors); 3243 3244 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 3245 BDRV_REQ_COPY_ON_READ); 3246 } 3247 3248 /* if no limit is specified in the BlockLimits use a default 3249 * of 32768 512-byte sectors (16 MiB) per request. 3250 */ 3251 #define MAX_WRITE_ZEROES_DEFAULT 32768 3252 3253 static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 3254 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags) 3255 { 3256 BlockDriver *drv = bs->drv; 3257 QEMUIOVector qiov; 3258 struct iovec iov = {0}; 3259 int ret = 0; 3260 3261 int max_write_zeroes = bs->bl.max_write_zeroes ? 3262 bs->bl.max_write_zeroes : MAX_WRITE_ZEROES_DEFAULT; 3263 3264 while (nb_sectors > 0 && !ret) { 3265 int num = nb_sectors; 3266 3267 /* Align request. Block drivers can expect the "bulk" of the request 3268 * to be aligned. 3269 */ 3270 if (bs->bl.write_zeroes_alignment 3271 && num > bs->bl.write_zeroes_alignment) { 3272 if (sector_num % bs->bl.write_zeroes_alignment != 0) { 3273 /* Make a small request up to the first aligned sector. */ 3274 num = bs->bl.write_zeroes_alignment; 3275 num -= sector_num % bs->bl.write_zeroes_alignment; 3276 } else if ((sector_num + num) % bs->bl.write_zeroes_alignment != 0) { 3277 /* Shorten the request to the last aligned sector. num cannot 3278 * underflow because num > bs->bl.write_zeroes_alignment. 3279 */ 3280 num -= (sector_num + num) % bs->bl.write_zeroes_alignment; 3281 } 3282 } 3283 3284 /* limit request size */ 3285 if (num > max_write_zeroes) { 3286 num = max_write_zeroes; 3287 } 3288 3289 ret = -ENOTSUP; 3290 /* First try the efficient write zeroes operation */ 3291 if (drv->bdrv_co_write_zeroes) { 3292 ret = drv->bdrv_co_write_zeroes(bs, sector_num, num, flags); 3293 } 3294 3295 if (ret == -ENOTSUP) { 3296 /* Fall back to bounce buffer if write zeroes is unsupported */ 3297 iov.iov_len = num * BDRV_SECTOR_SIZE; 3298 if (iov.iov_base == NULL) { 3299 iov.iov_base = qemu_try_blockalign(bs, num * BDRV_SECTOR_SIZE); 3300 if (iov.iov_base == NULL) { 3301 ret = -ENOMEM; 3302 goto fail; 3303 } 3304 memset(iov.iov_base, 0, num * BDRV_SECTOR_SIZE); 3305 } 3306 qemu_iovec_init_external(&qiov, &iov, 1); 3307 3308 ret = drv->bdrv_co_writev(bs, sector_num, num, &qiov); 3309 3310 /* Keep bounce buffer around if it is big enough for all 3311 * all future requests. 3312 */ 3313 if (num < max_write_zeroes) { 3314 qemu_vfree(iov.iov_base); 3315 iov.iov_base = NULL; 3316 } 3317 } 3318 3319 sector_num += num; 3320 nb_sectors -= num; 3321 } 3322 3323 fail: 3324 qemu_vfree(iov.iov_base); 3325 return ret; 3326 } 3327 3328 /* 3329 * Forwards an already correctly aligned write request to the BlockDriver. 3330 */ 3331 static int coroutine_fn bdrv_aligned_pwritev(BlockDriverState *bs, 3332 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes, 3333 QEMUIOVector *qiov, int flags) 3334 { 3335 BlockDriver *drv = bs->drv; 3336 bool waited; 3337 int ret; 3338 3339 int64_t sector_num = offset >> BDRV_SECTOR_BITS; 3340 unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS; 3341 3342 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0); 3343 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0); 3344 assert(!qiov || bytes == qiov->size); 3345 3346 waited = wait_serialising_requests(req); 3347 assert(!waited || !req->serialising); 3348 assert(req->overlap_offset <= offset); 3349 assert(offset + bytes <= req->overlap_offset + req->overlap_bytes); 3350 3351 ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req); 3352 3353 if (!ret && bs->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF && 3354 !(flags & BDRV_REQ_ZERO_WRITE) && drv->bdrv_co_write_zeroes && 3355 qemu_iovec_is_zero(qiov)) { 3356 flags |= BDRV_REQ_ZERO_WRITE; 3357 if (bs->detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP) { 3358 flags |= BDRV_REQ_MAY_UNMAP; 3359 } 3360 } 3361 3362 if (ret < 0) { 3363 /* Do nothing, write notifier decided to fail this request */ 3364 } else if (flags & BDRV_REQ_ZERO_WRITE) { 3365 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_ZERO); 3366 ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors, flags); 3367 } else { 3368 BLKDBG_EVENT(bs, BLKDBG_PWRITEV); 3369 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov); 3370 } 3371 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_DONE); 3372 3373 if (ret == 0 && !bs->enable_write_cache) { 3374 ret = bdrv_co_flush(bs); 3375 } 3376 3377 bdrv_set_dirty(bs, sector_num, nb_sectors); 3378 3379 block_acct_highest_sector(&bs->stats, sector_num, nb_sectors); 3380 3381 if (bs->growable && ret >= 0) { 3382 bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors); 3383 } 3384 3385 return ret; 3386 } 3387 3388 /* 3389 * Handle a write request in coroutine context 3390 */ 3391 static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs, 3392 int64_t offset, unsigned int bytes, QEMUIOVector *qiov, 3393 BdrvRequestFlags flags) 3394 { 3395 BdrvTrackedRequest req; 3396 /* TODO Lift BDRV_SECTOR_SIZE restriction in BlockDriver interface */ 3397 uint64_t align = MAX(BDRV_SECTOR_SIZE, bs->request_alignment); 3398 uint8_t *head_buf = NULL; 3399 uint8_t *tail_buf = NULL; 3400 QEMUIOVector local_qiov; 3401 bool use_local_qiov = false; 3402 int ret; 3403 3404 if (!bs->drv) { 3405 return -ENOMEDIUM; 3406 } 3407 if (bs->read_only) { 3408 return -EACCES; 3409 } 3410 if (bdrv_check_byte_request(bs, offset, bytes)) { 3411 return -EIO; 3412 } 3413 3414 /* throttling disk I/O */ 3415 if (bs->io_limits_enabled) { 3416 bdrv_io_limits_intercept(bs, bytes, true); 3417 } 3418 3419 /* 3420 * Align write if necessary by performing a read-modify-write cycle. 3421 * Pad qiov with the read parts and be sure to have a tracked request not 3422 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle. 3423 */ 3424 tracked_request_begin(&req, bs, offset, bytes, true); 3425 3426 if (offset & (align - 1)) { 3427 QEMUIOVector head_qiov; 3428 struct iovec head_iov; 3429 3430 mark_request_serialising(&req, align); 3431 wait_serialising_requests(&req); 3432 3433 head_buf = qemu_blockalign(bs, align); 3434 head_iov = (struct iovec) { 3435 .iov_base = head_buf, 3436 .iov_len = align, 3437 }; 3438 qemu_iovec_init_external(&head_qiov, &head_iov, 1); 3439 3440 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_HEAD); 3441 ret = bdrv_aligned_preadv(bs, &req, offset & ~(align - 1), align, 3442 align, &head_qiov, 0); 3443 if (ret < 0) { 3444 goto fail; 3445 } 3446 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD); 3447 3448 qemu_iovec_init(&local_qiov, qiov->niov + 2); 3449 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1)); 3450 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size); 3451 use_local_qiov = true; 3452 3453 bytes += offset & (align - 1); 3454 offset = offset & ~(align - 1); 3455 } 3456 3457 if ((offset + bytes) & (align - 1)) { 3458 QEMUIOVector tail_qiov; 3459 struct iovec tail_iov; 3460 size_t tail_bytes; 3461 bool waited; 3462 3463 mark_request_serialising(&req, align); 3464 waited = wait_serialising_requests(&req); 3465 assert(!waited || !use_local_qiov); 3466 3467 tail_buf = qemu_blockalign(bs, align); 3468 tail_iov = (struct iovec) { 3469 .iov_base = tail_buf, 3470 .iov_len = align, 3471 }; 3472 qemu_iovec_init_external(&tail_qiov, &tail_iov, 1); 3473 3474 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_TAIL); 3475 ret = bdrv_aligned_preadv(bs, &req, (offset + bytes) & ~(align - 1), align, 3476 align, &tail_qiov, 0); 3477 if (ret < 0) { 3478 goto fail; 3479 } 3480 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL); 3481 3482 if (!use_local_qiov) { 3483 qemu_iovec_init(&local_qiov, qiov->niov + 1); 3484 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size); 3485 use_local_qiov = true; 3486 } 3487 3488 tail_bytes = (offset + bytes) & (align - 1); 3489 qemu_iovec_add(&local_qiov, tail_buf + tail_bytes, align - tail_bytes); 3490 3491 bytes = ROUND_UP(bytes, align); 3492 } 3493 3494 ret = bdrv_aligned_pwritev(bs, &req, offset, bytes, 3495 use_local_qiov ? &local_qiov : qiov, 3496 flags); 3497 3498 fail: 3499 tracked_request_end(&req); 3500 3501 if (use_local_qiov) { 3502 qemu_iovec_destroy(&local_qiov); 3503 } 3504 qemu_vfree(head_buf); 3505 qemu_vfree(tail_buf); 3506 3507 return ret; 3508 } 3509 3510 static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs, 3511 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 3512 BdrvRequestFlags flags) 3513 { 3514 if (nb_sectors < 0 || nb_sectors > (INT_MAX >> BDRV_SECTOR_BITS)) { 3515 return -EINVAL; 3516 } 3517 3518 return bdrv_co_do_pwritev(bs, sector_num << BDRV_SECTOR_BITS, 3519 nb_sectors << BDRV_SECTOR_BITS, qiov, flags); 3520 } 3521 3522 int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num, 3523 int nb_sectors, QEMUIOVector *qiov) 3524 { 3525 trace_bdrv_co_writev(bs, sector_num, nb_sectors); 3526 3527 return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0); 3528 } 3529 3530 int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, 3531 int64_t sector_num, int nb_sectors, 3532 BdrvRequestFlags flags) 3533 { 3534 trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors, flags); 3535 3536 if (!(bs->open_flags & BDRV_O_UNMAP)) { 3537 flags &= ~BDRV_REQ_MAY_UNMAP; 3538 } 3539 3540 return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL, 3541 BDRV_REQ_ZERO_WRITE | flags); 3542 } 3543 3544 /** 3545 * Truncate file to 'offset' bytes (needed only for file protocols) 3546 */ 3547 int bdrv_truncate(BlockDriverState *bs, int64_t offset) 3548 { 3549 BlockDriver *drv = bs->drv; 3550 int ret; 3551 if (!drv) 3552 return -ENOMEDIUM; 3553 if (!drv->bdrv_truncate) 3554 return -ENOTSUP; 3555 if (bs->read_only) 3556 return -EACCES; 3557 3558 ret = drv->bdrv_truncate(bs, offset); 3559 if (ret == 0) { 3560 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 3561 bdrv_dev_resize_cb(bs); 3562 } 3563 return ret; 3564 } 3565 3566 /** 3567 * Length of a allocated file in bytes. Sparse files are counted by actual 3568 * allocated space. Return < 0 if error or unknown. 3569 */ 3570 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 3571 { 3572 BlockDriver *drv = bs->drv; 3573 if (!drv) { 3574 return -ENOMEDIUM; 3575 } 3576 if (drv->bdrv_get_allocated_file_size) { 3577 return drv->bdrv_get_allocated_file_size(bs); 3578 } 3579 if (bs->file) { 3580 return bdrv_get_allocated_file_size(bs->file); 3581 } 3582 return -ENOTSUP; 3583 } 3584 3585 /** 3586 * Return number of sectors on success, -errno on error. 3587 */ 3588 int64_t bdrv_nb_sectors(BlockDriverState *bs) 3589 { 3590 BlockDriver *drv = bs->drv; 3591 3592 if (!drv) 3593 return -ENOMEDIUM; 3594 3595 if (drv->has_variable_length) { 3596 int ret = refresh_total_sectors(bs, bs->total_sectors); 3597 if (ret < 0) { 3598 return ret; 3599 } 3600 } 3601 return bs->total_sectors; 3602 } 3603 3604 /** 3605 * Return length in bytes on success, -errno on error. 3606 * The length is always a multiple of BDRV_SECTOR_SIZE. 3607 */ 3608 int64_t bdrv_getlength(BlockDriverState *bs) 3609 { 3610 int64_t ret = bdrv_nb_sectors(bs); 3611 3612 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 3613 } 3614 3615 /* return 0 as number of sectors if no device present or error */ 3616 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 3617 { 3618 int64_t nb_sectors = bdrv_nb_sectors(bs); 3619 3620 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 3621 } 3622 3623 void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error, 3624 BlockdevOnError on_write_error) 3625 { 3626 bs->on_read_error = on_read_error; 3627 bs->on_write_error = on_write_error; 3628 } 3629 3630 BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read) 3631 { 3632 return is_read ? bs->on_read_error : bs->on_write_error; 3633 } 3634 3635 BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error) 3636 { 3637 BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error; 3638 3639 switch (on_err) { 3640 case BLOCKDEV_ON_ERROR_ENOSPC: 3641 return (error == ENOSPC) ? 3642 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT; 3643 case BLOCKDEV_ON_ERROR_STOP: 3644 return BLOCK_ERROR_ACTION_STOP; 3645 case BLOCKDEV_ON_ERROR_REPORT: 3646 return BLOCK_ERROR_ACTION_REPORT; 3647 case BLOCKDEV_ON_ERROR_IGNORE: 3648 return BLOCK_ERROR_ACTION_IGNORE; 3649 default: 3650 abort(); 3651 } 3652 } 3653 3654 static void send_qmp_error_event(BlockDriverState *bs, 3655 BlockErrorAction action, 3656 bool is_read, int error) 3657 { 3658 BlockErrorAction ac; 3659 3660 ac = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE; 3661 qapi_event_send_block_io_error(bdrv_get_device_name(bs), ac, action, 3662 bdrv_iostatus_is_enabled(bs), 3663 error == ENOSPC, strerror(error), 3664 &error_abort); 3665 } 3666 3667 /* This is done by device models because, while the block layer knows 3668 * about the error, it does not know whether an operation comes from 3669 * the device or the block layer (from a job, for example). 3670 */ 3671 void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action, 3672 bool is_read, int error) 3673 { 3674 assert(error >= 0); 3675 3676 if (action == BLOCK_ERROR_ACTION_STOP) { 3677 /* First set the iostatus, so that "info block" returns an iostatus 3678 * that matches the events raised so far (an additional error iostatus 3679 * is fine, but not a lost one). 3680 */ 3681 bdrv_iostatus_set_err(bs, error); 3682 3683 /* Then raise the request to stop the VM and the event. 3684 * qemu_system_vmstop_request_prepare has two effects. First, 3685 * it ensures that the STOP event always comes after the 3686 * BLOCK_IO_ERROR event. Second, it ensures that even if management 3687 * can observe the STOP event and do a "cont" before the STOP 3688 * event is issued, the VM will not stop. In this case, vm_start() 3689 * also ensures that the STOP/RESUME pair of events is emitted. 3690 */ 3691 qemu_system_vmstop_request_prepare(); 3692 send_qmp_error_event(bs, action, is_read, error); 3693 qemu_system_vmstop_request(RUN_STATE_IO_ERROR); 3694 } else { 3695 send_qmp_error_event(bs, action, is_read, error); 3696 } 3697 } 3698 3699 int bdrv_is_read_only(BlockDriverState *bs) 3700 { 3701 return bs->read_only; 3702 } 3703 3704 int bdrv_is_sg(BlockDriverState *bs) 3705 { 3706 return bs->sg; 3707 } 3708 3709 int bdrv_enable_write_cache(BlockDriverState *bs) 3710 { 3711 return bs->enable_write_cache; 3712 } 3713 3714 void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 3715 { 3716 bs->enable_write_cache = wce; 3717 3718 /* so a reopen() will preserve wce */ 3719 if (wce) { 3720 bs->open_flags |= BDRV_O_CACHE_WB; 3721 } else { 3722 bs->open_flags &= ~BDRV_O_CACHE_WB; 3723 } 3724 } 3725 3726 int bdrv_is_encrypted(BlockDriverState *bs) 3727 { 3728 if (bs->backing_hd && bs->backing_hd->encrypted) 3729 return 1; 3730 return bs->encrypted; 3731 } 3732 3733 int bdrv_key_required(BlockDriverState *bs) 3734 { 3735 BlockDriverState *backing_hd = bs->backing_hd; 3736 3737 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key) 3738 return 1; 3739 return (bs->encrypted && !bs->valid_key); 3740 } 3741 3742 int bdrv_set_key(BlockDriverState *bs, const char *key) 3743 { 3744 int ret; 3745 if (bs->backing_hd && bs->backing_hd->encrypted) { 3746 ret = bdrv_set_key(bs->backing_hd, key); 3747 if (ret < 0) 3748 return ret; 3749 if (!bs->encrypted) 3750 return 0; 3751 } 3752 if (!bs->encrypted) { 3753 return -EINVAL; 3754 } else if (!bs->drv || !bs->drv->bdrv_set_key) { 3755 return -ENOMEDIUM; 3756 } 3757 ret = bs->drv->bdrv_set_key(bs, key); 3758 if (ret < 0) { 3759 bs->valid_key = 0; 3760 } else if (!bs->valid_key) { 3761 bs->valid_key = 1; 3762 /* call the change callback now, we skipped it on open */ 3763 bdrv_dev_change_media_cb(bs, true); 3764 } 3765 return ret; 3766 } 3767 3768 const char *bdrv_get_format_name(BlockDriverState *bs) 3769 { 3770 return bs->drv ? bs->drv->format_name : NULL; 3771 } 3772 3773 static int qsort_strcmp(const void *a, const void *b) 3774 { 3775 return strcmp(a, b); 3776 } 3777 3778 void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 3779 void *opaque) 3780 { 3781 BlockDriver *drv; 3782 int count = 0; 3783 int i; 3784 const char **formats = NULL; 3785 3786 QLIST_FOREACH(drv, &bdrv_drivers, list) { 3787 if (drv->format_name) { 3788 bool found = false; 3789 int i = count; 3790 while (formats && i && !found) { 3791 found = !strcmp(formats[--i], drv->format_name); 3792 } 3793 3794 if (!found) { 3795 formats = g_renew(const char *, formats, count + 1); 3796 formats[count++] = drv->format_name; 3797 } 3798 } 3799 } 3800 3801 qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 3802 3803 for (i = 0; i < count; i++) { 3804 it(opaque, formats[i]); 3805 } 3806 3807 g_free(formats); 3808 } 3809 3810 /* This function is to find block backend bs */ 3811 BlockDriverState *bdrv_find(const char *name) 3812 { 3813 BlockDriverState *bs; 3814 3815 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 3816 if (!strcmp(name, bs->device_name)) { 3817 return bs; 3818 } 3819 } 3820 return NULL; 3821 } 3822 3823 /* This function is to find a node in the bs graph */ 3824 BlockDriverState *bdrv_find_node(const char *node_name) 3825 { 3826 BlockDriverState *bs; 3827 3828 assert(node_name); 3829 3830 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3831 if (!strcmp(node_name, bs->node_name)) { 3832 return bs; 3833 } 3834 } 3835 return NULL; 3836 } 3837 3838 /* Put this QMP function here so it can access the static graph_bdrv_states. */ 3839 BlockDeviceInfoList *bdrv_named_nodes_list(void) 3840 { 3841 BlockDeviceInfoList *list, *entry; 3842 BlockDriverState *bs; 3843 3844 list = NULL; 3845 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3846 entry = g_malloc0(sizeof(*entry)); 3847 entry->value = bdrv_block_device_info(bs); 3848 entry->next = list; 3849 list = entry; 3850 } 3851 3852 return list; 3853 } 3854 3855 BlockDriverState *bdrv_lookup_bs(const char *device, 3856 const char *node_name, 3857 Error **errp) 3858 { 3859 BlockDriverState *bs = NULL; 3860 3861 if (device) { 3862 bs = bdrv_find(device); 3863 3864 if (bs) { 3865 return bs; 3866 } 3867 } 3868 3869 if (node_name) { 3870 bs = bdrv_find_node(node_name); 3871 3872 if (bs) { 3873 return bs; 3874 } 3875 } 3876 3877 error_setg(errp, "Cannot find device=%s nor node_name=%s", 3878 device ? device : "", 3879 node_name ? node_name : ""); 3880 return NULL; 3881 } 3882 3883 /* If 'base' is in the same chain as 'top', return true. Otherwise, 3884 * return false. If either argument is NULL, return false. */ 3885 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 3886 { 3887 while (top && top != base) { 3888 top = top->backing_hd; 3889 } 3890 3891 return top != NULL; 3892 } 3893 3894 BlockDriverState *bdrv_next(BlockDriverState *bs) 3895 { 3896 if (!bs) { 3897 return QTAILQ_FIRST(&bdrv_states); 3898 } 3899 return QTAILQ_NEXT(bs, device_list); 3900 } 3901 3902 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque) 3903 { 3904 BlockDriverState *bs; 3905 3906 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 3907 it(opaque, bs); 3908 } 3909 } 3910 3911 const char *bdrv_get_device_name(BlockDriverState *bs) 3912 { 3913 return bs->device_name; 3914 } 3915 3916 int bdrv_get_flags(BlockDriverState *bs) 3917 { 3918 return bs->open_flags; 3919 } 3920 3921 int bdrv_flush_all(void) 3922 { 3923 BlockDriverState *bs; 3924 int result = 0; 3925 3926 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 3927 AioContext *aio_context = bdrv_get_aio_context(bs); 3928 int ret; 3929 3930 aio_context_acquire(aio_context); 3931 ret = bdrv_flush(bs); 3932 if (ret < 0 && !result) { 3933 result = ret; 3934 } 3935 aio_context_release(aio_context); 3936 } 3937 3938 return result; 3939 } 3940 3941 int bdrv_has_zero_init_1(BlockDriverState *bs) 3942 { 3943 return 1; 3944 } 3945 3946 int bdrv_has_zero_init(BlockDriverState *bs) 3947 { 3948 assert(bs->drv); 3949 3950 /* If BS is a copy on write image, it is initialized to 3951 the contents of the base image, which may not be zeroes. */ 3952 if (bs->backing_hd) { 3953 return 0; 3954 } 3955 if (bs->drv->bdrv_has_zero_init) { 3956 return bs->drv->bdrv_has_zero_init(bs); 3957 } 3958 3959 /* safe default */ 3960 return 0; 3961 } 3962 3963 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 3964 { 3965 BlockDriverInfo bdi; 3966 3967 if (bs->backing_hd) { 3968 return false; 3969 } 3970 3971 if (bdrv_get_info(bs, &bdi) == 0) { 3972 return bdi.unallocated_blocks_are_zero; 3973 } 3974 3975 return false; 3976 } 3977 3978 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 3979 { 3980 BlockDriverInfo bdi; 3981 3982 if (bs->backing_hd || !(bs->open_flags & BDRV_O_UNMAP)) { 3983 return false; 3984 } 3985 3986 if (bdrv_get_info(bs, &bdi) == 0) { 3987 return bdi.can_write_zeroes_with_unmap; 3988 } 3989 3990 return false; 3991 } 3992 3993 typedef struct BdrvCoGetBlockStatusData { 3994 BlockDriverState *bs; 3995 BlockDriverState *base; 3996 int64_t sector_num; 3997 int nb_sectors; 3998 int *pnum; 3999 int64_t ret; 4000 bool done; 4001 } BdrvCoGetBlockStatusData; 4002 4003 /* 4004 * Returns true iff the specified sector is present in the disk image. Drivers 4005 * not implementing the functionality are assumed to not support backing files, 4006 * hence all their sectors are reported as allocated. 4007 * 4008 * If 'sector_num' is beyond the end of the disk image the return value is 0 4009 * and 'pnum' is set to 0. 4010 * 4011 * 'pnum' is set to the number of sectors (including and immediately following 4012 * the specified sector) that are known to be in the same 4013 * allocated/unallocated state. 4014 * 4015 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes 4016 * beyond the end of the disk image it will be clamped. 4017 */ 4018 static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs, 4019 int64_t sector_num, 4020 int nb_sectors, int *pnum) 4021 { 4022 int64_t total_sectors; 4023 int64_t n; 4024 int64_t ret, ret2; 4025 4026 total_sectors = bdrv_nb_sectors(bs); 4027 if (total_sectors < 0) { 4028 return total_sectors; 4029 } 4030 4031 if (sector_num >= total_sectors) { 4032 *pnum = 0; 4033 return 0; 4034 } 4035 4036 n = total_sectors - sector_num; 4037 if (n < nb_sectors) { 4038 nb_sectors = n; 4039 } 4040 4041 if (!bs->drv->bdrv_co_get_block_status) { 4042 *pnum = nb_sectors; 4043 ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED; 4044 if (bs->drv->protocol_name) { 4045 ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE); 4046 } 4047 return ret; 4048 } 4049 4050 ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum); 4051 if (ret < 0) { 4052 *pnum = 0; 4053 return ret; 4054 } 4055 4056 if (ret & BDRV_BLOCK_RAW) { 4057 assert(ret & BDRV_BLOCK_OFFSET_VALID); 4058 return bdrv_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS, 4059 *pnum, pnum); 4060 } 4061 4062 if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) { 4063 ret |= BDRV_BLOCK_ALLOCATED; 4064 } 4065 4066 if (!(ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO)) { 4067 if (bdrv_unallocated_blocks_are_zero(bs)) { 4068 ret |= BDRV_BLOCK_ZERO; 4069 } else if (bs->backing_hd) { 4070 BlockDriverState *bs2 = bs->backing_hd; 4071 int64_t nb_sectors2 = bdrv_nb_sectors(bs2); 4072 if (nb_sectors2 >= 0 && sector_num >= nb_sectors2) { 4073 ret |= BDRV_BLOCK_ZERO; 4074 } 4075 } 4076 } 4077 4078 if (bs->file && 4079 (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) && 4080 (ret & BDRV_BLOCK_OFFSET_VALID)) { 4081 ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS, 4082 *pnum, pnum); 4083 if (ret2 >= 0) { 4084 /* Ignore errors. This is just providing extra information, it 4085 * is useful but not necessary. 4086 */ 4087 ret |= (ret2 & BDRV_BLOCK_ZERO); 4088 } 4089 } 4090 4091 return ret; 4092 } 4093 4094 /* Coroutine wrapper for bdrv_get_block_status() */ 4095 static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque) 4096 { 4097 BdrvCoGetBlockStatusData *data = opaque; 4098 BlockDriverState *bs = data->bs; 4099 4100 data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors, 4101 data->pnum); 4102 data->done = true; 4103 } 4104 4105 /* 4106 * Synchronous wrapper around bdrv_co_get_block_status(). 4107 * 4108 * See bdrv_co_get_block_status() for details. 4109 */ 4110 int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num, 4111 int nb_sectors, int *pnum) 4112 { 4113 Coroutine *co; 4114 BdrvCoGetBlockStatusData data = { 4115 .bs = bs, 4116 .sector_num = sector_num, 4117 .nb_sectors = nb_sectors, 4118 .pnum = pnum, 4119 .done = false, 4120 }; 4121 4122 if (qemu_in_coroutine()) { 4123 /* Fast-path if already in coroutine context */ 4124 bdrv_get_block_status_co_entry(&data); 4125 } else { 4126 AioContext *aio_context = bdrv_get_aio_context(bs); 4127 4128 co = qemu_coroutine_create(bdrv_get_block_status_co_entry); 4129 qemu_coroutine_enter(co, &data); 4130 while (!data.done) { 4131 aio_poll(aio_context, true); 4132 } 4133 } 4134 return data.ret; 4135 } 4136 4137 int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, 4138 int nb_sectors, int *pnum) 4139 { 4140 int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum); 4141 if (ret < 0) { 4142 return ret; 4143 } 4144 return !!(ret & BDRV_BLOCK_ALLOCATED); 4145 } 4146 4147 /* 4148 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP] 4149 * 4150 * Return true if the given sector is allocated in any image between 4151 * BASE and TOP (inclusive). BASE can be NULL to check if the given 4152 * sector is allocated in any image of the chain. Return false otherwise. 4153 * 4154 * 'pnum' is set to the number of sectors (including and immediately following 4155 * the specified sector) that are known to be in the same 4156 * allocated/unallocated state. 4157 * 4158 */ 4159 int bdrv_is_allocated_above(BlockDriverState *top, 4160 BlockDriverState *base, 4161 int64_t sector_num, 4162 int nb_sectors, int *pnum) 4163 { 4164 BlockDriverState *intermediate; 4165 int ret, n = nb_sectors; 4166 4167 intermediate = top; 4168 while (intermediate && intermediate != base) { 4169 int pnum_inter; 4170 ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors, 4171 &pnum_inter); 4172 if (ret < 0) { 4173 return ret; 4174 } else if (ret) { 4175 *pnum = pnum_inter; 4176 return 1; 4177 } 4178 4179 /* 4180 * [sector_num, nb_sectors] is unallocated on top but intermediate 4181 * might have 4182 * 4183 * [sector_num+x, nr_sectors] allocated. 4184 */ 4185 if (n > pnum_inter && 4186 (intermediate == top || 4187 sector_num + pnum_inter < intermediate->total_sectors)) { 4188 n = pnum_inter; 4189 } 4190 4191 intermediate = intermediate->backing_hd; 4192 } 4193 4194 *pnum = n; 4195 return 0; 4196 } 4197 4198 const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 4199 { 4200 if (bs->backing_hd && bs->backing_hd->encrypted) 4201 return bs->backing_file; 4202 else if (bs->encrypted) 4203 return bs->filename; 4204 else 4205 return NULL; 4206 } 4207 4208 void bdrv_get_backing_filename(BlockDriverState *bs, 4209 char *filename, int filename_size) 4210 { 4211 pstrcpy(filename, filename_size, bs->backing_file); 4212 } 4213 4214 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, 4215 const uint8_t *buf, int nb_sectors) 4216 { 4217 BlockDriver *drv = bs->drv; 4218 if (!drv) 4219 return -ENOMEDIUM; 4220 if (!drv->bdrv_write_compressed) 4221 return -ENOTSUP; 4222 if (bdrv_check_request(bs, sector_num, nb_sectors)) 4223 return -EIO; 4224 4225 assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 4226 4227 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); 4228 } 4229 4230 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 4231 { 4232 BlockDriver *drv = bs->drv; 4233 if (!drv) 4234 return -ENOMEDIUM; 4235 if (!drv->bdrv_get_info) 4236 return -ENOTSUP; 4237 memset(bdi, 0, sizeof(*bdi)); 4238 return drv->bdrv_get_info(bs, bdi); 4239 } 4240 4241 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 4242 { 4243 BlockDriver *drv = bs->drv; 4244 if (drv && drv->bdrv_get_specific_info) { 4245 return drv->bdrv_get_specific_info(bs); 4246 } 4247 return NULL; 4248 } 4249 4250 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf, 4251 int64_t pos, int size) 4252 { 4253 QEMUIOVector qiov; 4254 struct iovec iov = { 4255 .iov_base = (void *) buf, 4256 .iov_len = size, 4257 }; 4258 4259 qemu_iovec_init_external(&qiov, &iov, 1); 4260 return bdrv_writev_vmstate(bs, &qiov, pos); 4261 } 4262 4263 int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos) 4264 { 4265 BlockDriver *drv = bs->drv; 4266 4267 if (!drv) { 4268 return -ENOMEDIUM; 4269 } else if (drv->bdrv_save_vmstate) { 4270 return drv->bdrv_save_vmstate(bs, qiov, pos); 4271 } else if (bs->file) { 4272 return bdrv_writev_vmstate(bs->file, qiov, pos); 4273 } 4274 4275 return -ENOTSUP; 4276 } 4277 4278 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf, 4279 int64_t pos, int size) 4280 { 4281 BlockDriver *drv = bs->drv; 4282 if (!drv) 4283 return -ENOMEDIUM; 4284 if (drv->bdrv_load_vmstate) 4285 return drv->bdrv_load_vmstate(bs, buf, pos, size); 4286 if (bs->file) 4287 return bdrv_load_vmstate(bs->file, buf, pos, size); 4288 return -ENOTSUP; 4289 } 4290 4291 void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event) 4292 { 4293 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 4294 return; 4295 } 4296 4297 bs->drv->bdrv_debug_event(bs, event); 4298 } 4299 4300 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 4301 const char *tag) 4302 { 4303 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 4304 bs = bs->file; 4305 } 4306 4307 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 4308 return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 4309 } 4310 4311 return -ENOTSUP; 4312 } 4313 4314 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 4315 { 4316 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 4317 bs = bs->file; 4318 } 4319 4320 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 4321 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 4322 } 4323 4324 return -ENOTSUP; 4325 } 4326 4327 int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 4328 { 4329 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 4330 bs = bs->file; 4331 } 4332 4333 if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 4334 return bs->drv->bdrv_debug_resume(bs, tag); 4335 } 4336 4337 return -ENOTSUP; 4338 } 4339 4340 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 4341 { 4342 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 4343 bs = bs->file; 4344 } 4345 4346 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 4347 return bs->drv->bdrv_debug_is_suspended(bs, tag); 4348 } 4349 4350 return false; 4351 } 4352 4353 int bdrv_is_snapshot(BlockDriverState *bs) 4354 { 4355 return !!(bs->open_flags & BDRV_O_SNAPSHOT); 4356 } 4357 4358 /* backing_file can either be relative, or absolute, or a protocol. If it is 4359 * relative, it must be relative to the chain. So, passing in bs->filename 4360 * from a BDS as backing_file should not be done, as that may be relative to 4361 * the CWD rather than the chain. */ 4362 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 4363 const char *backing_file) 4364 { 4365 char *filename_full = NULL; 4366 char *backing_file_full = NULL; 4367 char *filename_tmp = NULL; 4368 int is_protocol = 0; 4369 BlockDriverState *curr_bs = NULL; 4370 BlockDriverState *retval = NULL; 4371 4372 if (!bs || !bs->drv || !backing_file) { 4373 return NULL; 4374 } 4375 4376 filename_full = g_malloc(PATH_MAX); 4377 backing_file_full = g_malloc(PATH_MAX); 4378 filename_tmp = g_malloc(PATH_MAX); 4379 4380 is_protocol = path_has_protocol(backing_file); 4381 4382 for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) { 4383 4384 /* If either of the filename paths is actually a protocol, then 4385 * compare unmodified paths; otherwise make paths relative */ 4386 if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 4387 if (strcmp(backing_file, curr_bs->backing_file) == 0) { 4388 retval = curr_bs->backing_hd; 4389 break; 4390 } 4391 } else { 4392 /* If not an absolute filename path, make it relative to the current 4393 * image's filename path */ 4394 path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4395 backing_file); 4396 4397 /* We are going to compare absolute pathnames */ 4398 if (!realpath(filename_tmp, filename_full)) { 4399 continue; 4400 } 4401 4402 /* We need to make sure the backing filename we are comparing against 4403 * is relative to the current image filename (or absolute) */ 4404 path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4405 curr_bs->backing_file); 4406 4407 if (!realpath(filename_tmp, backing_file_full)) { 4408 continue; 4409 } 4410 4411 if (strcmp(backing_file_full, filename_full) == 0) { 4412 retval = curr_bs->backing_hd; 4413 break; 4414 } 4415 } 4416 } 4417 4418 g_free(filename_full); 4419 g_free(backing_file_full); 4420 g_free(filename_tmp); 4421 return retval; 4422 } 4423 4424 int bdrv_get_backing_file_depth(BlockDriverState *bs) 4425 { 4426 if (!bs->drv) { 4427 return 0; 4428 } 4429 4430 if (!bs->backing_hd) { 4431 return 0; 4432 } 4433 4434 return 1 + bdrv_get_backing_file_depth(bs->backing_hd); 4435 } 4436 4437 /**************************************************************/ 4438 /* async I/Os */ 4439 4440 BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, 4441 QEMUIOVector *qiov, int nb_sectors, 4442 BlockDriverCompletionFunc *cb, void *opaque) 4443 { 4444 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque); 4445 4446 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0, 4447 cb, opaque, false); 4448 } 4449 4450 BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, 4451 QEMUIOVector *qiov, int nb_sectors, 4452 BlockDriverCompletionFunc *cb, void *opaque) 4453 { 4454 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque); 4455 4456 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0, 4457 cb, opaque, true); 4458 } 4459 4460 BlockDriverAIOCB *bdrv_aio_write_zeroes(BlockDriverState *bs, 4461 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags, 4462 BlockDriverCompletionFunc *cb, void *opaque) 4463 { 4464 trace_bdrv_aio_write_zeroes(bs, sector_num, nb_sectors, flags, opaque); 4465 4466 return bdrv_co_aio_rw_vector(bs, sector_num, NULL, nb_sectors, 4467 BDRV_REQ_ZERO_WRITE | flags, 4468 cb, opaque, true); 4469 } 4470 4471 4472 typedef struct MultiwriteCB { 4473 int error; 4474 int num_requests; 4475 int num_callbacks; 4476 struct { 4477 BlockDriverCompletionFunc *cb; 4478 void *opaque; 4479 QEMUIOVector *free_qiov; 4480 } callbacks[]; 4481 } MultiwriteCB; 4482 4483 static void multiwrite_user_cb(MultiwriteCB *mcb) 4484 { 4485 int i; 4486 4487 for (i = 0; i < mcb->num_callbacks; i++) { 4488 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); 4489 if (mcb->callbacks[i].free_qiov) { 4490 qemu_iovec_destroy(mcb->callbacks[i].free_qiov); 4491 } 4492 g_free(mcb->callbacks[i].free_qiov); 4493 } 4494 } 4495 4496 static void multiwrite_cb(void *opaque, int ret) 4497 { 4498 MultiwriteCB *mcb = opaque; 4499 4500 trace_multiwrite_cb(mcb, ret); 4501 4502 if (ret < 0 && !mcb->error) { 4503 mcb->error = ret; 4504 } 4505 4506 mcb->num_requests--; 4507 if (mcb->num_requests == 0) { 4508 multiwrite_user_cb(mcb); 4509 g_free(mcb); 4510 } 4511 } 4512 4513 static int multiwrite_req_compare(const void *a, const void *b) 4514 { 4515 const BlockRequest *req1 = a, *req2 = b; 4516 4517 /* 4518 * Note that we can't simply subtract req2->sector from req1->sector 4519 * here as that could overflow the return value. 4520 */ 4521 if (req1->sector > req2->sector) { 4522 return 1; 4523 } else if (req1->sector < req2->sector) { 4524 return -1; 4525 } else { 4526 return 0; 4527 } 4528 } 4529 4530 /* 4531 * Takes a bunch of requests and tries to merge them. Returns the number of 4532 * requests that remain after merging. 4533 */ 4534 static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs, 4535 int num_reqs, MultiwriteCB *mcb) 4536 { 4537 int i, outidx; 4538 4539 // Sort requests by start sector 4540 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare); 4541 4542 // Check if adjacent requests touch the same clusters. If so, combine them, 4543 // filling up gaps with zero sectors. 4544 outidx = 0; 4545 for (i = 1; i < num_reqs; i++) { 4546 int merge = 0; 4547 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors; 4548 4549 // Handle exactly sequential writes and overlapping writes. 4550 if (reqs[i].sector <= oldreq_last) { 4551 merge = 1; 4552 } 4553 4554 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) { 4555 merge = 0; 4556 } 4557 4558 if (merge) { 4559 size_t size; 4560 QEMUIOVector *qiov = g_malloc0(sizeof(*qiov)); 4561 qemu_iovec_init(qiov, 4562 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1); 4563 4564 // Add the first request to the merged one. If the requests are 4565 // overlapping, drop the last sectors of the first request. 4566 size = (reqs[i].sector - reqs[outidx].sector) << 9; 4567 qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size); 4568 4569 // We should need to add any zeros between the two requests 4570 assert (reqs[i].sector <= oldreq_last); 4571 4572 // Add the second request 4573 qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size); 4574 4575 // Add tail of first request, if necessary 4576 if (qiov->size < reqs[outidx].qiov->size) { 4577 qemu_iovec_concat(qiov, reqs[outidx].qiov, qiov->size, 4578 reqs[outidx].qiov->size - qiov->size); 4579 } 4580 4581 reqs[outidx].nb_sectors = qiov->size >> 9; 4582 reqs[outidx].qiov = qiov; 4583 4584 mcb->callbacks[i].free_qiov = reqs[outidx].qiov; 4585 } else { 4586 outidx++; 4587 reqs[outidx].sector = reqs[i].sector; 4588 reqs[outidx].nb_sectors = reqs[i].nb_sectors; 4589 reqs[outidx].qiov = reqs[i].qiov; 4590 } 4591 } 4592 4593 return outidx + 1; 4594 } 4595 4596 /* 4597 * Submit multiple AIO write requests at once. 4598 * 4599 * On success, the function returns 0 and all requests in the reqs array have 4600 * been submitted. In error case this function returns -1, and any of the 4601 * requests may or may not be submitted yet. In particular, this means that the 4602 * callback will be called for some of the requests, for others it won't. The 4603 * caller must check the error field of the BlockRequest to wait for the right 4604 * callbacks (if error != 0, no callback will be called). 4605 * 4606 * The implementation may modify the contents of the reqs array, e.g. to merge 4607 * requests. However, the fields opaque and error are left unmodified as they 4608 * are used to signal failure for a single request to the caller. 4609 */ 4610 int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) 4611 { 4612 MultiwriteCB *mcb; 4613 int i; 4614 4615 /* don't submit writes if we don't have a medium */ 4616 if (bs->drv == NULL) { 4617 for (i = 0; i < num_reqs; i++) { 4618 reqs[i].error = -ENOMEDIUM; 4619 } 4620 return -1; 4621 } 4622 4623 if (num_reqs == 0) { 4624 return 0; 4625 } 4626 4627 // Create MultiwriteCB structure 4628 mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks)); 4629 mcb->num_requests = 0; 4630 mcb->num_callbacks = num_reqs; 4631 4632 for (i = 0; i < num_reqs; i++) { 4633 mcb->callbacks[i].cb = reqs[i].cb; 4634 mcb->callbacks[i].opaque = reqs[i].opaque; 4635 } 4636 4637 // Check for mergable requests 4638 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb); 4639 4640 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs); 4641 4642 /* Run the aio requests. */ 4643 mcb->num_requests = num_reqs; 4644 for (i = 0; i < num_reqs; i++) { 4645 bdrv_co_aio_rw_vector(bs, reqs[i].sector, reqs[i].qiov, 4646 reqs[i].nb_sectors, reqs[i].flags, 4647 multiwrite_cb, mcb, 4648 true); 4649 } 4650 4651 return 0; 4652 } 4653 4654 void bdrv_aio_cancel(BlockDriverAIOCB *acb) 4655 { 4656 qemu_aio_ref(acb); 4657 bdrv_aio_cancel_async(acb); 4658 while (acb->refcnt > 1) { 4659 if (acb->aiocb_info->get_aio_context) { 4660 aio_poll(acb->aiocb_info->get_aio_context(acb), true); 4661 } else if (acb->bs) { 4662 aio_poll(bdrv_get_aio_context(acb->bs), true); 4663 } else { 4664 abort(); 4665 } 4666 } 4667 qemu_aio_unref(acb); 4668 } 4669 4670 /* Async version of aio cancel. The caller is not blocked if the acb implements 4671 * cancel_async, otherwise we do nothing and let the request normally complete. 4672 * In either case the completion callback must be called. */ 4673 void bdrv_aio_cancel_async(BlockDriverAIOCB *acb) 4674 { 4675 if (acb->aiocb_info->cancel_async) { 4676 acb->aiocb_info->cancel_async(acb); 4677 } 4678 } 4679 4680 /**************************************************************/ 4681 /* async block device emulation */ 4682 4683 typedef struct BlockDriverAIOCBSync { 4684 BlockDriverAIOCB common; 4685 QEMUBH *bh; 4686 int ret; 4687 /* vector translation state */ 4688 QEMUIOVector *qiov; 4689 uint8_t *bounce; 4690 int is_write; 4691 } BlockDriverAIOCBSync; 4692 4693 static const AIOCBInfo bdrv_em_aiocb_info = { 4694 .aiocb_size = sizeof(BlockDriverAIOCBSync), 4695 }; 4696 4697 static void bdrv_aio_bh_cb(void *opaque) 4698 { 4699 BlockDriverAIOCBSync *acb = opaque; 4700 4701 if (!acb->is_write && acb->ret >= 0) { 4702 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size); 4703 } 4704 qemu_vfree(acb->bounce); 4705 acb->common.cb(acb->common.opaque, acb->ret); 4706 qemu_bh_delete(acb->bh); 4707 acb->bh = NULL; 4708 qemu_aio_unref(acb); 4709 } 4710 4711 static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, 4712 int64_t sector_num, 4713 QEMUIOVector *qiov, 4714 int nb_sectors, 4715 BlockDriverCompletionFunc *cb, 4716 void *opaque, 4717 int is_write) 4718 4719 { 4720 BlockDriverAIOCBSync *acb; 4721 4722 acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque); 4723 acb->is_write = is_write; 4724 acb->qiov = qiov; 4725 acb->bounce = qemu_try_blockalign(bs, qiov->size); 4726 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_aio_bh_cb, acb); 4727 4728 if (acb->bounce == NULL) { 4729 acb->ret = -ENOMEM; 4730 } else if (is_write) { 4731 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); 4732 acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors); 4733 } else { 4734 acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors); 4735 } 4736 4737 qemu_bh_schedule(acb->bh); 4738 4739 return &acb->common; 4740 } 4741 4742 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 4743 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 4744 BlockDriverCompletionFunc *cb, void *opaque) 4745 { 4746 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); 4747 } 4748 4749 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 4750 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 4751 BlockDriverCompletionFunc *cb, void *opaque) 4752 { 4753 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1); 4754 } 4755 4756 4757 typedef struct BlockDriverAIOCBCoroutine { 4758 BlockDriverAIOCB common; 4759 BlockRequest req; 4760 bool is_write; 4761 bool *done; 4762 QEMUBH* bh; 4763 } BlockDriverAIOCBCoroutine; 4764 4765 static const AIOCBInfo bdrv_em_co_aiocb_info = { 4766 .aiocb_size = sizeof(BlockDriverAIOCBCoroutine), 4767 }; 4768 4769 static void bdrv_co_em_bh(void *opaque) 4770 { 4771 BlockDriverAIOCBCoroutine *acb = opaque; 4772 4773 acb->common.cb(acb->common.opaque, acb->req.error); 4774 4775 qemu_bh_delete(acb->bh); 4776 qemu_aio_unref(acb); 4777 } 4778 4779 /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */ 4780 static void coroutine_fn bdrv_co_do_rw(void *opaque) 4781 { 4782 BlockDriverAIOCBCoroutine *acb = opaque; 4783 BlockDriverState *bs = acb->common.bs; 4784 4785 if (!acb->is_write) { 4786 acb->req.error = bdrv_co_do_readv(bs, acb->req.sector, 4787 acb->req.nb_sectors, acb->req.qiov, acb->req.flags); 4788 } else { 4789 acb->req.error = bdrv_co_do_writev(bs, acb->req.sector, 4790 acb->req.nb_sectors, acb->req.qiov, acb->req.flags); 4791 } 4792 4793 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb); 4794 qemu_bh_schedule(acb->bh); 4795 } 4796 4797 static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 4798 int64_t sector_num, 4799 QEMUIOVector *qiov, 4800 int nb_sectors, 4801 BdrvRequestFlags flags, 4802 BlockDriverCompletionFunc *cb, 4803 void *opaque, 4804 bool is_write) 4805 { 4806 Coroutine *co; 4807 BlockDriverAIOCBCoroutine *acb; 4808 4809 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 4810 acb->req.sector = sector_num; 4811 acb->req.nb_sectors = nb_sectors; 4812 acb->req.qiov = qiov; 4813 acb->req.flags = flags; 4814 acb->is_write = is_write; 4815 4816 co = qemu_coroutine_create(bdrv_co_do_rw); 4817 qemu_coroutine_enter(co, acb); 4818 4819 return &acb->common; 4820 } 4821 4822 static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque) 4823 { 4824 BlockDriverAIOCBCoroutine *acb = opaque; 4825 BlockDriverState *bs = acb->common.bs; 4826 4827 acb->req.error = bdrv_co_flush(bs); 4828 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb); 4829 qemu_bh_schedule(acb->bh); 4830 } 4831 4832 BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs, 4833 BlockDriverCompletionFunc *cb, void *opaque) 4834 { 4835 trace_bdrv_aio_flush(bs, opaque); 4836 4837 Coroutine *co; 4838 BlockDriverAIOCBCoroutine *acb; 4839 4840 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 4841 4842 co = qemu_coroutine_create(bdrv_aio_flush_co_entry); 4843 qemu_coroutine_enter(co, acb); 4844 4845 return &acb->common; 4846 } 4847 4848 static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque) 4849 { 4850 BlockDriverAIOCBCoroutine *acb = opaque; 4851 BlockDriverState *bs = acb->common.bs; 4852 4853 acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors); 4854 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb); 4855 qemu_bh_schedule(acb->bh); 4856 } 4857 4858 BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs, 4859 int64_t sector_num, int nb_sectors, 4860 BlockDriverCompletionFunc *cb, void *opaque) 4861 { 4862 Coroutine *co; 4863 BlockDriverAIOCBCoroutine *acb; 4864 4865 trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque); 4866 4867 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 4868 acb->req.sector = sector_num; 4869 acb->req.nb_sectors = nb_sectors; 4870 co = qemu_coroutine_create(bdrv_aio_discard_co_entry); 4871 qemu_coroutine_enter(co, acb); 4872 4873 return &acb->common; 4874 } 4875 4876 void bdrv_init(void) 4877 { 4878 module_call_init(MODULE_INIT_BLOCK); 4879 } 4880 4881 void bdrv_init_with_whitelist(void) 4882 { 4883 use_bdrv_whitelist = 1; 4884 bdrv_init(); 4885 } 4886 4887 void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs, 4888 BlockDriverCompletionFunc *cb, void *opaque) 4889 { 4890 BlockDriverAIOCB *acb; 4891 4892 acb = g_slice_alloc(aiocb_info->aiocb_size); 4893 acb->aiocb_info = aiocb_info; 4894 acb->bs = bs; 4895 acb->cb = cb; 4896 acb->opaque = opaque; 4897 acb->refcnt = 1; 4898 return acb; 4899 } 4900 4901 void qemu_aio_ref(void *p) 4902 { 4903 BlockDriverAIOCB *acb = p; 4904 acb->refcnt++; 4905 } 4906 4907 void qemu_aio_unref(void *p) 4908 { 4909 BlockDriverAIOCB *acb = p; 4910 assert(acb->refcnt > 0); 4911 if (--acb->refcnt == 0) { 4912 g_slice_free1(acb->aiocb_info->aiocb_size, acb); 4913 } 4914 } 4915 4916 /**************************************************************/ 4917 /* Coroutine block device emulation */ 4918 4919 typedef struct CoroutineIOCompletion { 4920 Coroutine *coroutine; 4921 int ret; 4922 } CoroutineIOCompletion; 4923 4924 static void bdrv_co_io_em_complete(void *opaque, int ret) 4925 { 4926 CoroutineIOCompletion *co = opaque; 4927 4928 co->ret = ret; 4929 qemu_coroutine_enter(co->coroutine, NULL); 4930 } 4931 4932 static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num, 4933 int nb_sectors, QEMUIOVector *iov, 4934 bool is_write) 4935 { 4936 CoroutineIOCompletion co = { 4937 .coroutine = qemu_coroutine_self(), 4938 }; 4939 BlockDriverAIOCB *acb; 4940 4941 if (is_write) { 4942 acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors, 4943 bdrv_co_io_em_complete, &co); 4944 } else { 4945 acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors, 4946 bdrv_co_io_em_complete, &co); 4947 } 4948 4949 trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb); 4950 if (!acb) { 4951 return -EIO; 4952 } 4953 qemu_coroutine_yield(); 4954 4955 return co.ret; 4956 } 4957 4958 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 4959 int64_t sector_num, int nb_sectors, 4960 QEMUIOVector *iov) 4961 { 4962 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false); 4963 } 4964 4965 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 4966 int64_t sector_num, int nb_sectors, 4967 QEMUIOVector *iov) 4968 { 4969 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true); 4970 } 4971 4972 static void coroutine_fn bdrv_flush_co_entry(void *opaque) 4973 { 4974 RwCo *rwco = opaque; 4975 4976 rwco->ret = bdrv_co_flush(rwco->bs); 4977 } 4978 4979 int coroutine_fn bdrv_co_flush(BlockDriverState *bs) 4980 { 4981 int ret; 4982 4983 if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 4984 return 0; 4985 } 4986 4987 /* Write back cached data to the OS even with cache=unsafe */ 4988 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS); 4989 if (bs->drv->bdrv_co_flush_to_os) { 4990 ret = bs->drv->bdrv_co_flush_to_os(bs); 4991 if (ret < 0) { 4992 return ret; 4993 } 4994 } 4995 4996 /* But don't actually force it to the disk with cache=unsafe */ 4997 if (bs->open_flags & BDRV_O_NO_FLUSH) { 4998 goto flush_parent; 4999 } 5000 5001 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK); 5002 if (bs->drv->bdrv_co_flush_to_disk) { 5003 ret = bs->drv->bdrv_co_flush_to_disk(bs); 5004 } else if (bs->drv->bdrv_aio_flush) { 5005 BlockDriverAIOCB *acb; 5006 CoroutineIOCompletion co = { 5007 .coroutine = qemu_coroutine_self(), 5008 }; 5009 5010 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co); 5011 if (acb == NULL) { 5012 ret = -EIO; 5013 } else { 5014 qemu_coroutine_yield(); 5015 ret = co.ret; 5016 } 5017 } else { 5018 /* 5019 * Some block drivers always operate in either writethrough or unsafe 5020 * mode and don't support bdrv_flush therefore. Usually qemu doesn't 5021 * know how the server works (because the behaviour is hardcoded or 5022 * depends on server-side configuration), so we can't ensure that 5023 * everything is safe on disk. Returning an error doesn't work because 5024 * that would break guests even if the server operates in writethrough 5025 * mode. 5026 * 5027 * Let's hope the user knows what he's doing. 5028 */ 5029 ret = 0; 5030 } 5031 if (ret < 0) { 5032 return ret; 5033 } 5034 5035 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH 5036 * in the case of cache=unsafe, so there are no useless flushes. 5037 */ 5038 flush_parent: 5039 return bdrv_co_flush(bs->file); 5040 } 5041 5042 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 5043 { 5044 Error *local_err = NULL; 5045 int ret; 5046 5047 if (!bs->drv) { 5048 return; 5049 } 5050 5051 if (bs->drv->bdrv_invalidate_cache) { 5052 bs->drv->bdrv_invalidate_cache(bs, &local_err); 5053 } else if (bs->file) { 5054 bdrv_invalidate_cache(bs->file, &local_err); 5055 } 5056 if (local_err) { 5057 error_propagate(errp, local_err); 5058 return; 5059 } 5060 5061 ret = refresh_total_sectors(bs, bs->total_sectors); 5062 if (ret < 0) { 5063 error_setg_errno(errp, -ret, "Could not refresh total sector count"); 5064 return; 5065 } 5066 } 5067 5068 void bdrv_invalidate_cache_all(Error **errp) 5069 { 5070 BlockDriverState *bs; 5071 Error *local_err = NULL; 5072 5073 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 5074 AioContext *aio_context = bdrv_get_aio_context(bs); 5075 5076 aio_context_acquire(aio_context); 5077 bdrv_invalidate_cache(bs, &local_err); 5078 aio_context_release(aio_context); 5079 if (local_err) { 5080 error_propagate(errp, local_err); 5081 return; 5082 } 5083 } 5084 } 5085 5086 void bdrv_clear_incoming_migration_all(void) 5087 { 5088 BlockDriverState *bs; 5089 5090 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 5091 AioContext *aio_context = bdrv_get_aio_context(bs); 5092 5093 aio_context_acquire(aio_context); 5094 bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING); 5095 aio_context_release(aio_context); 5096 } 5097 } 5098 5099 int bdrv_flush(BlockDriverState *bs) 5100 { 5101 Coroutine *co; 5102 RwCo rwco = { 5103 .bs = bs, 5104 .ret = NOT_DONE, 5105 }; 5106 5107 if (qemu_in_coroutine()) { 5108 /* Fast-path if already in coroutine context */ 5109 bdrv_flush_co_entry(&rwco); 5110 } else { 5111 AioContext *aio_context = bdrv_get_aio_context(bs); 5112 5113 co = qemu_coroutine_create(bdrv_flush_co_entry); 5114 qemu_coroutine_enter(co, &rwco); 5115 while (rwco.ret == NOT_DONE) { 5116 aio_poll(aio_context, true); 5117 } 5118 } 5119 5120 return rwco.ret; 5121 } 5122 5123 typedef struct DiscardCo { 5124 BlockDriverState *bs; 5125 int64_t sector_num; 5126 int nb_sectors; 5127 int ret; 5128 } DiscardCo; 5129 static void coroutine_fn bdrv_discard_co_entry(void *opaque) 5130 { 5131 DiscardCo *rwco = opaque; 5132 5133 rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors); 5134 } 5135 5136 /* if no limit is specified in the BlockLimits use a default 5137 * of 32768 512-byte sectors (16 MiB) per request. 5138 */ 5139 #define MAX_DISCARD_DEFAULT 32768 5140 5141 int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, 5142 int nb_sectors) 5143 { 5144 int max_discard; 5145 5146 if (!bs->drv) { 5147 return -ENOMEDIUM; 5148 } else if (bdrv_check_request(bs, sector_num, nb_sectors)) { 5149 return -EIO; 5150 } else if (bs->read_only) { 5151 return -EROFS; 5152 } 5153 5154 bdrv_reset_dirty(bs, sector_num, nb_sectors); 5155 5156 /* Do nothing if disabled. */ 5157 if (!(bs->open_flags & BDRV_O_UNMAP)) { 5158 return 0; 5159 } 5160 5161 if (!bs->drv->bdrv_co_discard && !bs->drv->bdrv_aio_discard) { 5162 return 0; 5163 } 5164 5165 max_discard = bs->bl.max_discard ? bs->bl.max_discard : MAX_DISCARD_DEFAULT; 5166 while (nb_sectors > 0) { 5167 int ret; 5168 int num = nb_sectors; 5169 5170 /* align request */ 5171 if (bs->bl.discard_alignment && 5172 num >= bs->bl.discard_alignment && 5173 sector_num % bs->bl.discard_alignment) { 5174 if (num > bs->bl.discard_alignment) { 5175 num = bs->bl.discard_alignment; 5176 } 5177 num -= sector_num % bs->bl.discard_alignment; 5178 } 5179 5180 /* limit request size */ 5181 if (num > max_discard) { 5182 num = max_discard; 5183 } 5184 5185 if (bs->drv->bdrv_co_discard) { 5186 ret = bs->drv->bdrv_co_discard(bs, sector_num, num); 5187 } else { 5188 BlockDriverAIOCB *acb; 5189 CoroutineIOCompletion co = { 5190 .coroutine = qemu_coroutine_self(), 5191 }; 5192 5193 acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors, 5194 bdrv_co_io_em_complete, &co); 5195 if (acb == NULL) { 5196 return -EIO; 5197 } else { 5198 qemu_coroutine_yield(); 5199 ret = co.ret; 5200 } 5201 } 5202 if (ret && ret != -ENOTSUP) { 5203 return ret; 5204 } 5205 5206 sector_num += num; 5207 nb_sectors -= num; 5208 } 5209 return 0; 5210 } 5211 5212 int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 5213 { 5214 Coroutine *co; 5215 DiscardCo rwco = { 5216 .bs = bs, 5217 .sector_num = sector_num, 5218 .nb_sectors = nb_sectors, 5219 .ret = NOT_DONE, 5220 }; 5221 5222 if (qemu_in_coroutine()) { 5223 /* Fast-path if already in coroutine context */ 5224 bdrv_discard_co_entry(&rwco); 5225 } else { 5226 AioContext *aio_context = bdrv_get_aio_context(bs); 5227 5228 co = qemu_coroutine_create(bdrv_discard_co_entry); 5229 qemu_coroutine_enter(co, &rwco); 5230 while (rwco.ret == NOT_DONE) { 5231 aio_poll(aio_context, true); 5232 } 5233 } 5234 5235 return rwco.ret; 5236 } 5237 5238 /**************************************************************/ 5239 /* removable device support */ 5240 5241 /** 5242 * Return TRUE if the media is present 5243 */ 5244 int bdrv_is_inserted(BlockDriverState *bs) 5245 { 5246 BlockDriver *drv = bs->drv; 5247 5248 if (!drv) 5249 return 0; 5250 if (!drv->bdrv_is_inserted) 5251 return 1; 5252 return drv->bdrv_is_inserted(bs); 5253 } 5254 5255 /** 5256 * Return whether the media changed since the last call to this 5257 * function, or -ENOTSUP if we don't know. Most drivers don't know. 5258 */ 5259 int bdrv_media_changed(BlockDriverState *bs) 5260 { 5261 BlockDriver *drv = bs->drv; 5262 5263 if (drv && drv->bdrv_media_changed) { 5264 return drv->bdrv_media_changed(bs); 5265 } 5266 return -ENOTSUP; 5267 } 5268 5269 /** 5270 * If eject_flag is TRUE, eject the media. Otherwise, close the tray 5271 */ 5272 void bdrv_eject(BlockDriverState *bs, bool eject_flag) 5273 { 5274 BlockDriver *drv = bs->drv; 5275 5276 if (drv && drv->bdrv_eject) { 5277 drv->bdrv_eject(bs, eject_flag); 5278 } 5279 5280 if (bs->device_name[0] != '\0') { 5281 qapi_event_send_device_tray_moved(bdrv_get_device_name(bs), 5282 eject_flag, &error_abort); 5283 } 5284 } 5285 5286 /** 5287 * Lock or unlock the media (if it is locked, the user won't be able 5288 * to eject it manually). 5289 */ 5290 void bdrv_lock_medium(BlockDriverState *bs, bool locked) 5291 { 5292 BlockDriver *drv = bs->drv; 5293 5294 trace_bdrv_lock_medium(bs, locked); 5295 5296 if (drv && drv->bdrv_lock_medium) { 5297 drv->bdrv_lock_medium(bs, locked); 5298 } 5299 } 5300 5301 /* needed for generic scsi interface */ 5302 5303 int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) 5304 { 5305 BlockDriver *drv = bs->drv; 5306 5307 if (drv && drv->bdrv_ioctl) 5308 return drv->bdrv_ioctl(bs, req, buf); 5309 return -ENOTSUP; 5310 } 5311 5312 BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, 5313 unsigned long int req, void *buf, 5314 BlockDriverCompletionFunc *cb, void *opaque) 5315 { 5316 BlockDriver *drv = bs->drv; 5317 5318 if (drv && drv->bdrv_aio_ioctl) 5319 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque); 5320 return NULL; 5321 } 5322 5323 void bdrv_set_guest_block_size(BlockDriverState *bs, int align) 5324 { 5325 bs->guest_block_size = align; 5326 } 5327 5328 void *qemu_blockalign(BlockDriverState *bs, size_t size) 5329 { 5330 return qemu_memalign(bdrv_opt_mem_align(bs), size); 5331 } 5332 5333 void *qemu_try_blockalign(BlockDriverState *bs, size_t size) 5334 { 5335 size_t align = bdrv_opt_mem_align(bs); 5336 5337 /* Ensure that NULL is never returned on success */ 5338 assert(align > 0); 5339 if (size == 0) { 5340 size = align; 5341 } 5342 5343 return qemu_try_memalign(align, size); 5344 } 5345 5346 /* 5347 * Check if all memory in this vector is sector aligned. 5348 */ 5349 bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov) 5350 { 5351 int i; 5352 size_t alignment = bdrv_opt_mem_align(bs); 5353 5354 for (i = 0; i < qiov->niov; i++) { 5355 if ((uintptr_t) qiov->iov[i].iov_base % alignment) { 5356 return false; 5357 } 5358 if (qiov->iov[i].iov_len % alignment) { 5359 return false; 5360 } 5361 } 5362 5363 return true; 5364 } 5365 5366 BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, int granularity, 5367 Error **errp) 5368 { 5369 int64_t bitmap_size; 5370 BdrvDirtyBitmap *bitmap; 5371 5372 assert((granularity & (granularity - 1)) == 0); 5373 5374 granularity >>= BDRV_SECTOR_BITS; 5375 assert(granularity); 5376 bitmap_size = bdrv_nb_sectors(bs); 5377 if (bitmap_size < 0) { 5378 error_setg_errno(errp, -bitmap_size, "could not get length of device"); 5379 errno = -bitmap_size; 5380 return NULL; 5381 } 5382 bitmap = g_new0(BdrvDirtyBitmap, 1); 5383 bitmap->bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1); 5384 QLIST_INSERT_HEAD(&bs->dirty_bitmaps, bitmap, list); 5385 return bitmap; 5386 } 5387 5388 void bdrv_release_dirty_bitmap(BlockDriverState *bs, BdrvDirtyBitmap *bitmap) 5389 { 5390 BdrvDirtyBitmap *bm, *next; 5391 QLIST_FOREACH_SAFE(bm, &bs->dirty_bitmaps, list, next) { 5392 if (bm == bitmap) { 5393 QLIST_REMOVE(bitmap, list); 5394 hbitmap_free(bitmap->bitmap); 5395 g_free(bitmap); 5396 return; 5397 } 5398 } 5399 } 5400 5401 BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs) 5402 { 5403 BdrvDirtyBitmap *bm; 5404 BlockDirtyInfoList *list = NULL; 5405 BlockDirtyInfoList **plist = &list; 5406 5407 QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) { 5408 BlockDirtyInfo *info = g_new0(BlockDirtyInfo, 1); 5409 BlockDirtyInfoList *entry = g_new0(BlockDirtyInfoList, 1); 5410 info->count = bdrv_get_dirty_count(bs, bm); 5411 info->granularity = 5412 ((int64_t) BDRV_SECTOR_SIZE << hbitmap_granularity(bm->bitmap)); 5413 entry->value = info; 5414 *plist = entry; 5415 plist = &entry->next; 5416 } 5417 5418 return list; 5419 } 5420 5421 int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap, int64_t sector) 5422 { 5423 if (bitmap) { 5424 return hbitmap_get(bitmap->bitmap, sector); 5425 } else { 5426 return 0; 5427 } 5428 } 5429 5430 void bdrv_dirty_iter_init(BlockDriverState *bs, 5431 BdrvDirtyBitmap *bitmap, HBitmapIter *hbi) 5432 { 5433 hbitmap_iter_init(hbi, bitmap->bitmap, 0); 5434 } 5435 5436 void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 5437 int nr_sectors) 5438 { 5439 BdrvDirtyBitmap *bitmap; 5440 QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) { 5441 hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors); 5442 } 5443 } 5444 5445 void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors) 5446 { 5447 BdrvDirtyBitmap *bitmap; 5448 QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) { 5449 hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors); 5450 } 5451 } 5452 5453 int64_t bdrv_get_dirty_count(BlockDriverState *bs, BdrvDirtyBitmap *bitmap) 5454 { 5455 return hbitmap_count(bitmap->bitmap); 5456 } 5457 5458 /* Get a reference to bs */ 5459 void bdrv_ref(BlockDriverState *bs) 5460 { 5461 bs->refcnt++; 5462 } 5463 5464 /* Release a previously grabbed reference to bs. 5465 * If after releasing, reference count is zero, the BlockDriverState is 5466 * deleted. */ 5467 void bdrv_unref(BlockDriverState *bs) 5468 { 5469 if (!bs) { 5470 return; 5471 } 5472 assert(bs->refcnt > 0); 5473 if (--bs->refcnt == 0) { 5474 bdrv_delete(bs); 5475 } 5476 } 5477 5478 struct BdrvOpBlocker { 5479 Error *reason; 5480 QLIST_ENTRY(BdrvOpBlocker) list; 5481 }; 5482 5483 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 5484 { 5485 BdrvOpBlocker *blocker; 5486 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 5487 if (!QLIST_EMPTY(&bs->op_blockers[op])) { 5488 blocker = QLIST_FIRST(&bs->op_blockers[op]); 5489 if (errp) { 5490 error_setg(errp, "Device '%s' is busy: %s", 5491 bs->device_name, error_get_pretty(blocker->reason)); 5492 } 5493 return true; 5494 } 5495 return false; 5496 } 5497 5498 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 5499 { 5500 BdrvOpBlocker *blocker; 5501 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 5502 5503 blocker = g_new0(BdrvOpBlocker, 1); 5504 blocker->reason = reason; 5505 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 5506 } 5507 5508 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 5509 { 5510 BdrvOpBlocker *blocker, *next; 5511 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 5512 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 5513 if (blocker->reason == reason) { 5514 QLIST_REMOVE(blocker, list); 5515 g_free(blocker); 5516 } 5517 } 5518 } 5519 5520 void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 5521 { 5522 int i; 5523 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 5524 bdrv_op_block(bs, i, reason); 5525 } 5526 } 5527 5528 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 5529 { 5530 int i; 5531 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 5532 bdrv_op_unblock(bs, i, reason); 5533 } 5534 } 5535 5536 bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 5537 { 5538 int i; 5539 5540 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 5541 if (!QLIST_EMPTY(&bs->op_blockers[i])) { 5542 return false; 5543 } 5544 } 5545 return true; 5546 } 5547 5548 void bdrv_iostatus_enable(BlockDriverState *bs) 5549 { 5550 bs->iostatus_enabled = true; 5551 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 5552 } 5553 5554 /* The I/O status is only enabled if the drive explicitly 5555 * enables it _and_ the VM is configured to stop on errors */ 5556 bool bdrv_iostatus_is_enabled(const BlockDriverState *bs) 5557 { 5558 return (bs->iostatus_enabled && 5559 (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || 5560 bs->on_write_error == BLOCKDEV_ON_ERROR_STOP || 5561 bs->on_read_error == BLOCKDEV_ON_ERROR_STOP)); 5562 } 5563 5564 void bdrv_iostatus_disable(BlockDriverState *bs) 5565 { 5566 bs->iostatus_enabled = false; 5567 } 5568 5569 void bdrv_iostatus_reset(BlockDriverState *bs) 5570 { 5571 if (bdrv_iostatus_is_enabled(bs)) { 5572 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 5573 if (bs->job) { 5574 block_job_iostatus_reset(bs->job); 5575 } 5576 } 5577 } 5578 5579 void bdrv_iostatus_set_err(BlockDriverState *bs, int error) 5580 { 5581 assert(bdrv_iostatus_is_enabled(bs)); 5582 if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { 5583 bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : 5584 BLOCK_DEVICE_IO_STATUS_FAILED; 5585 } 5586 } 5587 5588 void bdrv_img_create(const char *filename, const char *fmt, 5589 const char *base_filename, const char *base_fmt, 5590 char *options, uint64_t img_size, int flags, 5591 Error **errp, bool quiet) 5592 { 5593 QemuOptsList *create_opts = NULL; 5594 QemuOpts *opts = NULL; 5595 const char *backing_fmt, *backing_file; 5596 int64_t size; 5597 BlockDriver *drv, *proto_drv; 5598 BlockDriver *backing_drv = NULL; 5599 Error *local_err = NULL; 5600 int ret = 0; 5601 5602 /* Find driver and parse its options */ 5603 drv = bdrv_find_format(fmt); 5604 if (!drv) { 5605 error_setg(errp, "Unknown file format '%s'", fmt); 5606 return; 5607 } 5608 5609 proto_drv = bdrv_find_protocol(filename, true); 5610 if (!proto_drv) { 5611 error_setg(errp, "Unknown protocol '%s'", filename); 5612 return; 5613 } 5614 5615 create_opts = qemu_opts_append(create_opts, drv->create_opts); 5616 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 5617 5618 /* Create parameter list with default values */ 5619 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 5620 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size); 5621 5622 /* Parse -o options */ 5623 if (options) { 5624 if (qemu_opts_do_parse(opts, options, NULL) != 0) { 5625 error_setg(errp, "Invalid options for file format '%s'", fmt); 5626 goto out; 5627 } 5628 } 5629 5630 if (base_filename) { 5631 if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename)) { 5632 error_setg(errp, "Backing file not supported for file format '%s'", 5633 fmt); 5634 goto out; 5635 } 5636 } 5637 5638 if (base_fmt) { 5639 if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt)) { 5640 error_setg(errp, "Backing file format not supported for file " 5641 "format '%s'", fmt); 5642 goto out; 5643 } 5644 } 5645 5646 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 5647 if (backing_file) { 5648 if (!strcmp(filename, backing_file)) { 5649 error_setg(errp, "Error: Trying to create an image with the " 5650 "same filename as the backing file"); 5651 goto out; 5652 } 5653 } 5654 5655 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 5656 if (backing_fmt) { 5657 backing_drv = bdrv_find_format(backing_fmt); 5658 if (!backing_drv) { 5659 error_setg(errp, "Unknown backing file format '%s'", 5660 backing_fmt); 5661 goto out; 5662 } 5663 } 5664 5665 // The size for the image must always be specified, with one exception: 5666 // If we are using a backing file, we can obtain the size from there 5667 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0); 5668 if (size == -1) { 5669 if (backing_file) { 5670 BlockDriverState *bs; 5671 int64_t size; 5672 int back_flags; 5673 5674 /* backing files always opened read-only */ 5675 back_flags = 5676 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 5677 5678 bs = NULL; 5679 ret = bdrv_open(&bs, backing_file, NULL, NULL, back_flags, 5680 backing_drv, &local_err); 5681 if (ret < 0) { 5682 error_setg_errno(errp, -ret, "Could not open '%s': %s", 5683 backing_file, 5684 error_get_pretty(local_err)); 5685 error_free(local_err); 5686 local_err = NULL; 5687 goto out; 5688 } 5689 size = bdrv_getlength(bs); 5690 if (size < 0) { 5691 error_setg_errno(errp, -size, "Could not get size of '%s'", 5692 backing_file); 5693 bdrv_unref(bs); 5694 goto out; 5695 } 5696 5697 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size); 5698 5699 bdrv_unref(bs); 5700 } else { 5701 error_setg(errp, "Image creation needs a size parameter"); 5702 goto out; 5703 } 5704 } 5705 5706 if (!quiet) { 5707 printf("Formatting '%s', fmt=%s ", filename, fmt); 5708 qemu_opts_print(opts); 5709 puts(""); 5710 } 5711 5712 ret = bdrv_create(drv, filename, opts, &local_err); 5713 5714 if (ret == -EFBIG) { 5715 /* This is generally a better message than whatever the driver would 5716 * deliver (especially because of the cluster_size_hint), since that 5717 * is most probably not much different from "image too large". */ 5718 const char *cluster_size_hint = ""; 5719 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 5720 cluster_size_hint = " (try using a larger cluster size)"; 5721 } 5722 error_setg(errp, "The image size is too large for file format '%s'" 5723 "%s", fmt, cluster_size_hint); 5724 error_free(local_err); 5725 local_err = NULL; 5726 } 5727 5728 out: 5729 qemu_opts_del(opts); 5730 qemu_opts_free(create_opts); 5731 if (local_err) { 5732 error_propagate(errp, local_err); 5733 } 5734 } 5735 5736 AioContext *bdrv_get_aio_context(BlockDriverState *bs) 5737 { 5738 return bs->aio_context; 5739 } 5740 5741 void bdrv_detach_aio_context(BlockDriverState *bs) 5742 { 5743 BdrvAioNotifier *baf; 5744 5745 if (!bs->drv) { 5746 return; 5747 } 5748 5749 QLIST_FOREACH(baf, &bs->aio_notifiers, list) { 5750 baf->detach_aio_context(baf->opaque); 5751 } 5752 5753 if (bs->io_limits_enabled) { 5754 throttle_detach_aio_context(&bs->throttle_state); 5755 } 5756 if (bs->drv->bdrv_detach_aio_context) { 5757 bs->drv->bdrv_detach_aio_context(bs); 5758 } 5759 if (bs->file) { 5760 bdrv_detach_aio_context(bs->file); 5761 } 5762 if (bs->backing_hd) { 5763 bdrv_detach_aio_context(bs->backing_hd); 5764 } 5765 5766 bs->aio_context = NULL; 5767 } 5768 5769 void bdrv_attach_aio_context(BlockDriverState *bs, 5770 AioContext *new_context) 5771 { 5772 BdrvAioNotifier *ban; 5773 5774 if (!bs->drv) { 5775 return; 5776 } 5777 5778 bs->aio_context = new_context; 5779 5780 if (bs->backing_hd) { 5781 bdrv_attach_aio_context(bs->backing_hd, new_context); 5782 } 5783 if (bs->file) { 5784 bdrv_attach_aio_context(bs->file, new_context); 5785 } 5786 if (bs->drv->bdrv_attach_aio_context) { 5787 bs->drv->bdrv_attach_aio_context(bs, new_context); 5788 } 5789 if (bs->io_limits_enabled) { 5790 throttle_attach_aio_context(&bs->throttle_state, new_context); 5791 } 5792 5793 QLIST_FOREACH(ban, &bs->aio_notifiers, list) { 5794 ban->attached_aio_context(new_context, ban->opaque); 5795 } 5796 } 5797 5798 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 5799 { 5800 bdrv_drain_all(); /* ensure there are no in-flight requests */ 5801 5802 bdrv_detach_aio_context(bs); 5803 5804 /* This function executes in the old AioContext so acquire the new one in 5805 * case it runs in a different thread. 5806 */ 5807 aio_context_acquire(new_context); 5808 bdrv_attach_aio_context(bs, new_context); 5809 aio_context_release(new_context); 5810 } 5811 5812 void bdrv_add_aio_context_notifier(BlockDriverState *bs, 5813 void (*attached_aio_context)(AioContext *new_context, void *opaque), 5814 void (*detach_aio_context)(void *opaque), void *opaque) 5815 { 5816 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 5817 *ban = (BdrvAioNotifier){ 5818 .attached_aio_context = attached_aio_context, 5819 .detach_aio_context = detach_aio_context, 5820 .opaque = opaque 5821 }; 5822 5823 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 5824 } 5825 5826 void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 5827 void (*attached_aio_context)(AioContext *, 5828 void *), 5829 void (*detach_aio_context)(void *), 5830 void *opaque) 5831 { 5832 BdrvAioNotifier *ban, *ban_next; 5833 5834 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 5835 if (ban->attached_aio_context == attached_aio_context && 5836 ban->detach_aio_context == detach_aio_context && 5837 ban->opaque == opaque) 5838 { 5839 QLIST_REMOVE(ban, list); 5840 g_free(ban); 5841 5842 return; 5843 } 5844 } 5845 5846 abort(); 5847 } 5848 5849 void bdrv_add_before_write_notifier(BlockDriverState *bs, 5850 NotifierWithReturn *notifier) 5851 { 5852 notifier_with_return_list_add(&bs->before_write_notifiers, notifier); 5853 } 5854 5855 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts) 5856 { 5857 if (!bs->drv->bdrv_amend_options) { 5858 return -ENOTSUP; 5859 } 5860 return bs->drv->bdrv_amend_options(bs, opts); 5861 } 5862 5863 /* This function will be called by the bdrv_recurse_is_first_non_filter method 5864 * of block filter and by bdrv_is_first_non_filter. 5865 * It is used to test if the given bs is the candidate or recurse more in the 5866 * node graph. 5867 */ 5868 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 5869 BlockDriverState *candidate) 5870 { 5871 /* return false if basic checks fails */ 5872 if (!bs || !bs->drv) { 5873 return false; 5874 } 5875 5876 /* the code reached a non block filter driver -> check if the bs is 5877 * the same as the candidate. It's the recursion termination condition. 5878 */ 5879 if (!bs->drv->is_filter) { 5880 return bs == candidate; 5881 } 5882 /* Down this path the driver is a block filter driver */ 5883 5884 /* If the block filter recursion method is defined use it to recurse down 5885 * the node graph. 5886 */ 5887 if (bs->drv->bdrv_recurse_is_first_non_filter) { 5888 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 5889 } 5890 5891 /* the driver is a block filter but don't allow to recurse -> return false 5892 */ 5893 return false; 5894 } 5895 5896 /* This function checks if the candidate is the first non filter bs down it's 5897 * bs chain. Since we don't have pointers to parents it explore all bs chains 5898 * from the top. Some filters can choose not to pass down the recursion. 5899 */ 5900 bool bdrv_is_first_non_filter(BlockDriverState *candidate) 5901 { 5902 BlockDriverState *bs; 5903 5904 /* walk down the bs forest recursively */ 5905 QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 5906 bool perm; 5907 5908 /* try to recurse in this top level bs */ 5909 perm = bdrv_recurse_is_first_non_filter(bs, candidate); 5910 5911 /* candidate is the first non filter */ 5912 if (perm) { 5913 return true; 5914 } 5915 } 5916 5917 return false; 5918 } 5919 5920 BlockDriverState *check_to_replace_node(const char *node_name, Error **errp) 5921 { 5922 BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 5923 if (!to_replace_bs) { 5924 error_setg(errp, "Node name '%s' not found", node_name); 5925 return NULL; 5926 } 5927 5928 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 5929 return NULL; 5930 } 5931 5932 /* We don't want arbitrary node of the BDS chain to be replaced only the top 5933 * most non filter in order to prevent data corruption. 5934 * Another benefit is that this tests exclude backing files which are 5935 * blocked by the backing blockers. 5936 */ 5937 if (!bdrv_is_first_non_filter(to_replace_bs)) { 5938 error_setg(errp, "Only top most non filter can be replaced"); 5939 return NULL; 5940 } 5941 5942 return to_replace_bs; 5943 } 5944 5945 void bdrv_io_plug(BlockDriverState *bs) 5946 { 5947 BlockDriver *drv = bs->drv; 5948 if (drv && drv->bdrv_io_plug) { 5949 drv->bdrv_io_plug(bs); 5950 } else if (bs->file) { 5951 bdrv_io_plug(bs->file); 5952 } 5953 } 5954 5955 void bdrv_io_unplug(BlockDriverState *bs) 5956 { 5957 BlockDriver *drv = bs->drv; 5958 if (drv && drv->bdrv_io_unplug) { 5959 drv->bdrv_io_unplug(bs); 5960 } else if (bs->file) { 5961 bdrv_io_unplug(bs->file); 5962 } 5963 } 5964 5965 void bdrv_flush_io_queue(BlockDriverState *bs) 5966 { 5967 BlockDriver *drv = bs->drv; 5968 if (drv && drv->bdrv_flush_io_queue) { 5969 drv->bdrv_flush_io_queue(bs); 5970 } else if (bs->file) { 5971 bdrv_flush_io_queue(bs->file); 5972 } 5973 } 5974 5975 static bool append_open_options(QDict *d, BlockDriverState *bs) 5976 { 5977 const QDictEntry *entry; 5978 bool found_any = false; 5979 5980 for (entry = qdict_first(bs->options); entry; 5981 entry = qdict_next(bs->options, entry)) 5982 { 5983 /* Only take options for this level and exclude all non-driver-specific 5984 * options */ 5985 if (!strchr(qdict_entry_key(entry), '.') && 5986 strcmp(qdict_entry_key(entry), "node-name")) 5987 { 5988 qobject_incref(qdict_entry_value(entry)); 5989 qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry)); 5990 found_any = true; 5991 } 5992 } 5993 5994 return found_any; 5995 } 5996 5997 /* Updates the following BDS fields: 5998 * - exact_filename: A filename which may be used for opening a block device 5999 * which (mostly) equals the given BDS (even without any 6000 * other options; so reading and writing must return the same 6001 * results, but caching etc. may be different) 6002 * - full_open_options: Options which, when given when opening a block device 6003 * (without a filename), result in a BDS (mostly) 6004 * equalling the given one 6005 * - filename: If exact_filename is set, it is copied here. Otherwise, 6006 * full_open_options is converted to a JSON object, prefixed with 6007 * "json:" (for use through the JSON pseudo protocol) and put here. 6008 */ 6009 void bdrv_refresh_filename(BlockDriverState *bs) 6010 { 6011 BlockDriver *drv = bs->drv; 6012 QDict *opts; 6013 6014 if (!drv) { 6015 return; 6016 } 6017 6018 /* This BDS's file name will most probably depend on its file's name, so 6019 * refresh that first */ 6020 if (bs->file) { 6021 bdrv_refresh_filename(bs->file); 6022 } 6023 6024 if (drv->bdrv_refresh_filename) { 6025 /* Obsolete information is of no use here, so drop the old file name 6026 * information before refreshing it */ 6027 bs->exact_filename[0] = '\0'; 6028 if (bs->full_open_options) { 6029 QDECREF(bs->full_open_options); 6030 bs->full_open_options = NULL; 6031 } 6032 6033 drv->bdrv_refresh_filename(bs); 6034 } else if (bs->file) { 6035 /* Try to reconstruct valid information from the underlying file */ 6036 bool has_open_options; 6037 6038 bs->exact_filename[0] = '\0'; 6039 if (bs->full_open_options) { 6040 QDECREF(bs->full_open_options); 6041 bs->full_open_options = NULL; 6042 } 6043 6044 opts = qdict_new(); 6045 has_open_options = append_open_options(opts, bs); 6046 6047 /* If no specific options have been given for this BDS, the filename of 6048 * the underlying file should suffice for this one as well */ 6049 if (bs->file->exact_filename[0] && !has_open_options) { 6050 strcpy(bs->exact_filename, bs->file->exact_filename); 6051 } 6052 /* Reconstructing the full options QDict is simple for most format block 6053 * drivers, as long as the full options are known for the underlying 6054 * file BDS. The full options QDict of that file BDS should somehow 6055 * contain a representation of the filename, therefore the following 6056 * suffices without querying the (exact_)filename of this BDS. */ 6057 if (bs->file->full_open_options) { 6058 qdict_put_obj(opts, "driver", 6059 QOBJECT(qstring_from_str(drv->format_name))); 6060 QINCREF(bs->file->full_open_options); 6061 qdict_put_obj(opts, "file", QOBJECT(bs->file->full_open_options)); 6062 6063 bs->full_open_options = opts; 6064 } else { 6065 QDECREF(opts); 6066 } 6067 } else if (!bs->full_open_options && qdict_size(bs->options)) { 6068 /* There is no underlying file BDS (at least referenced by BDS.file), 6069 * so the full options QDict should be equal to the options given 6070 * specifically for this block device when it was opened (plus the 6071 * driver specification). 6072 * Because those options don't change, there is no need to update 6073 * full_open_options when it's already set. */ 6074 6075 opts = qdict_new(); 6076 append_open_options(opts, bs); 6077 qdict_put_obj(opts, "driver", 6078 QOBJECT(qstring_from_str(drv->format_name))); 6079 6080 if (bs->exact_filename[0]) { 6081 /* This may not work for all block protocol drivers (some may 6082 * require this filename to be parsed), but we have to find some 6083 * default solution here, so just include it. If some block driver 6084 * does not support pure options without any filename at all or 6085 * needs some special format of the options QDict, it needs to 6086 * implement the driver-specific bdrv_refresh_filename() function. 6087 */ 6088 qdict_put_obj(opts, "filename", 6089 QOBJECT(qstring_from_str(bs->exact_filename))); 6090 } 6091 6092 bs->full_open_options = opts; 6093 } 6094 6095 if (bs->exact_filename[0]) { 6096 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 6097 } else if (bs->full_open_options) { 6098 QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 6099 snprintf(bs->filename, sizeof(bs->filename), "json:%s", 6100 qstring_get_str(json)); 6101 QDECREF(json); 6102 } 6103 } 6104 6105 /* This accessor function purpose is to allow the device models to access the 6106 * BlockAcctStats structure embedded inside a BlockDriverState without being 6107 * aware of the BlockDriverState structure layout. 6108 * It will go away when the BlockAcctStats structure will be moved inside 6109 * the device models. 6110 */ 6111 BlockAcctStats *bdrv_get_stats(BlockDriverState *bs) 6112 { 6113 return &bs->stats; 6114 } 6115