fix mc146818rtc wrong subsection name to avoid vmstate_subsection_load() fail
[qemu/qmp-unstable.git] / block.c
blob8717597a30e325126329de675d269fd43bc99584
1 /*
2 * QEMU System Emulator block driver
4 * Copyright (c) 2003 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
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/block-backend.h"
32 #include "sysemu/sysemu.h"
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"
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
50 #ifdef _WIN32
51 #include <windows.h>
52 #endif
54 struct BdrvDirtyBitmap {
55 HBitmap *bitmap;
56 QLIST_ENTRY(BdrvDirtyBitmap) list;
59 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
61 static BlockAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
62 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
63 BlockCompletionFunc *cb, void *opaque);
64 static BlockAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
65 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
66 BlockCompletionFunc *cb, void *opaque);
67 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
68 int64_t sector_num, int nb_sectors,
69 QEMUIOVector *iov);
70 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
71 int64_t sector_num, int nb_sectors,
72 QEMUIOVector *iov);
73 static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs,
74 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
75 BdrvRequestFlags flags);
76 static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs,
77 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
78 BdrvRequestFlags flags);
79 static BlockAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
80 int64_t sector_num,
81 QEMUIOVector *qiov,
82 int nb_sectors,
83 BdrvRequestFlags flags,
84 BlockCompletionFunc *cb,
85 void *opaque,
86 bool is_write);
87 static void coroutine_fn bdrv_co_do_rw(void *opaque);
88 static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
89 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags);
91 static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
92 QTAILQ_HEAD_INITIALIZER(bdrv_states);
94 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
95 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
97 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
98 QLIST_HEAD_INITIALIZER(bdrv_drivers);
100 /* If non-zero, use only whitelisted block drivers */
101 static int use_bdrv_whitelist;
103 #ifdef _WIN32
104 static int is_windows_drive_prefix(const char *filename)
106 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
107 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
108 filename[1] == ':');
111 int is_windows_drive(const char *filename)
113 if (is_windows_drive_prefix(filename) &&
114 filename[2] == '\0')
115 return 1;
116 if (strstart(filename, "\\\\.\\", NULL) ||
117 strstart(filename, "//./", NULL))
118 return 1;
119 return 0;
121 #endif
123 /* throttling disk I/O limits */
124 void bdrv_set_io_limits(BlockDriverState *bs,
125 ThrottleConfig *cfg)
127 int i;
129 throttle_config(&bs->throttle_state, cfg);
131 for (i = 0; i < 2; i++) {
132 qemu_co_enter_next(&bs->throttled_reqs[i]);
136 /* this function drain all the throttled IOs */
137 static bool bdrv_start_throttled_reqs(BlockDriverState *bs)
139 bool drained = false;
140 bool enabled = bs->io_limits_enabled;
141 int i;
143 bs->io_limits_enabled = false;
145 for (i = 0; i < 2; i++) {
146 while (qemu_co_enter_next(&bs->throttled_reqs[i])) {
147 drained = true;
151 bs->io_limits_enabled = enabled;
153 return drained;
156 void bdrv_io_limits_disable(BlockDriverState *bs)
158 bs->io_limits_enabled = false;
160 bdrv_start_throttled_reqs(bs);
162 throttle_destroy(&bs->throttle_state);
165 static void bdrv_throttle_read_timer_cb(void *opaque)
167 BlockDriverState *bs = opaque;
168 qemu_co_enter_next(&bs->throttled_reqs[0]);
171 static void bdrv_throttle_write_timer_cb(void *opaque)
173 BlockDriverState *bs = opaque;
174 qemu_co_enter_next(&bs->throttled_reqs[1]);
177 /* should be called before bdrv_set_io_limits if a limit is set */
178 void bdrv_io_limits_enable(BlockDriverState *bs)
180 assert(!bs->io_limits_enabled);
181 throttle_init(&bs->throttle_state,
182 bdrv_get_aio_context(bs),
183 QEMU_CLOCK_VIRTUAL,
184 bdrv_throttle_read_timer_cb,
185 bdrv_throttle_write_timer_cb,
186 bs);
187 bs->io_limits_enabled = true;
190 /* This function makes an IO wait if needed
192 * @nb_sectors: the number of sectors of the IO
193 * @is_write: is the IO a write
195 static void bdrv_io_limits_intercept(BlockDriverState *bs,
196 unsigned int bytes,
197 bool is_write)
199 /* does this io must wait */
200 bool must_wait = throttle_schedule_timer(&bs->throttle_state, is_write);
202 /* if must wait or any request of this type throttled queue the IO */
203 if (must_wait ||
204 !qemu_co_queue_empty(&bs->throttled_reqs[is_write])) {
205 qemu_co_queue_wait(&bs->throttled_reqs[is_write]);
208 /* the IO will be executed, do the accounting */
209 throttle_account(&bs->throttle_state, is_write, bytes);
212 /* if the next request must wait -> do nothing */
213 if (throttle_schedule_timer(&bs->throttle_state, is_write)) {
214 return;
217 /* else queue next request for execution */
218 qemu_co_queue_next(&bs->throttled_reqs[is_write]);
221 size_t bdrv_opt_mem_align(BlockDriverState *bs)
223 if (!bs || !bs->drv) {
224 /* 4k should be on the safe side */
225 return 4096;
228 return bs->bl.opt_mem_alignment;
231 /* check if the path starts with "<protocol>:" */
232 static int path_has_protocol(const char *path)
234 const char *p;
236 #ifdef _WIN32
237 if (is_windows_drive(path) ||
238 is_windows_drive_prefix(path)) {
239 return 0;
241 p = path + strcspn(path, ":/\\");
242 #else
243 p = path + strcspn(path, ":/");
244 #endif
246 return *p == ':';
249 int path_is_absolute(const char *path)
251 #ifdef _WIN32
252 /* specific case for names like: "\\.\d:" */
253 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
254 return 1;
256 return (*path == '/' || *path == '\\');
257 #else
258 return (*path == '/');
259 #endif
262 /* if filename is absolute, just copy it to dest. Otherwise, build a
263 path to it by considering it is relative to base_path. URL are
264 supported. */
265 void path_combine(char *dest, int dest_size,
266 const char *base_path,
267 const char *filename)
269 const char *p, *p1;
270 int len;
272 if (dest_size <= 0)
273 return;
274 if (path_is_absolute(filename)) {
275 pstrcpy(dest, dest_size, filename);
276 } else {
277 p = strchr(base_path, ':');
278 if (p)
279 p++;
280 else
281 p = base_path;
282 p1 = strrchr(base_path, '/');
283 #ifdef _WIN32
285 const char *p2;
286 p2 = strrchr(base_path, '\\');
287 if (!p1 || p2 > p1)
288 p1 = p2;
290 #endif
291 if (p1)
292 p1++;
293 else
294 p1 = base_path;
295 if (p1 > p)
296 p = p1;
297 len = p - base_path;
298 if (len > dest_size - 1)
299 len = dest_size - 1;
300 memcpy(dest, base_path, len);
301 dest[len] = '\0';
302 pstrcat(dest, dest_size, filename);
306 void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz)
308 if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) {
309 pstrcpy(dest, sz, bs->backing_file);
310 } else {
311 path_combine(dest, sz, bs->filename, bs->backing_file);
315 void bdrv_register(BlockDriver *bdrv)
317 /* Block drivers without coroutine functions need emulation */
318 if (!bdrv->bdrv_co_readv) {
319 bdrv->bdrv_co_readv = bdrv_co_readv_em;
320 bdrv->bdrv_co_writev = bdrv_co_writev_em;
322 /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if
323 * the block driver lacks aio we need to emulate that too.
325 if (!bdrv->bdrv_aio_readv) {
326 /* add AIO emulation layer */
327 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
328 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
332 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
335 BlockDriverState *bdrv_new_root(void)
337 BlockDriverState *bs = bdrv_new();
339 QTAILQ_INSERT_TAIL(&bdrv_states, bs, device_list);
340 return bs;
343 BlockDriverState *bdrv_new(void)
345 BlockDriverState *bs;
346 int i;
348 bs = g_new0(BlockDriverState, 1);
349 QLIST_INIT(&bs->dirty_bitmaps);
350 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
351 QLIST_INIT(&bs->op_blockers[i]);
353 bdrv_iostatus_disable(bs);
354 notifier_list_init(&bs->close_notifiers);
355 notifier_with_return_list_init(&bs->before_write_notifiers);
356 qemu_co_queue_init(&bs->throttled_reqs[0]);
357 qemu_co_queue_init(&bs->throttled_reqs[1]);
358 bs->refcnt = 1;
359 bs->aio_context = qemu_get_aio_context();
361 return bs;
364 void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify)
366 notifier_list_add(&bs->close_notifiers, notify);
369 BlockDriver *bdrv_find_format(const char *format_name)
371 BlockDriver *drv1;
372 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
373 if (!strcmp(drv1->format_name, format_name)) {
374 return drv1;
377 return NULL;
380 static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
382 static const char *whitelist_rw[] = {
383 CONFIG_BDRV_RW_WHITELIST
385 static const char *whitelist_ro[] = {
386 CONFIG_BDRV_RO_WHITELIST
388 const char **p;
390 if (!whitelist_rw[0] && !whitelist_ro[0]) {
391 return 1; /* no whitelist, anything goes */
394 for (p = whitelist_rw; *p; p++) {
395 if (!strcmp(drv->format_name, *p)) {
396 return 1;
399 if (read_only) {
400 for (p = whitelist_ro; *p; p++) {
401 if (!strcmp(drv->format_name, *p)) {
402 return 1;
406 return 0;
409 BlockDriver *bdrv_find_whitelisted_format(const char *format_name,
410 bool read_only)
412 BlockDriver *drv = bdrv_find_format(format_name);
413 return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL;
416 typedef struct CreateCo {
417 BlockDriver *drv;
418 char *filename;
419 QemuOpts *opts;
420 int ret;
421 Error *err;
422 } CreateCo;
424 static void coroutine_fn bdrv_create_co_entry(void *opaque)
426 Error *local_err = NULL;
427 int ret;
429 CreateCo *cco = opaque;
430 assert(cco->drv);
432 ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
433 if (local_err) {
434 error_propagate(&cco->err, local_err);
436 cco->ret = ret;
439 int bdrv_create(BlockDriver *drv, const char* filename,
440 QemuOpts *opts, Error **errp)
442 int ret;
444 Coroutine *co;
445 CreateCo cco = {
446 .drv = drv,
447 .filename = g_strdup(filename),
448 .opts = opts,
449 .ret = NOT_DONE,
450 .err = NULL,
453 if (!drv->bdrv_create) {
454 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
455 ret = -ENOTSUP;
456 goto out;
459 if (qemu_in_coroutine()) {
460 /* Fast-path if already in coroutine context */
461 bdrv_create_co_entry(&cco);
462 } else {
463 co = qemu_coroutine_create(bdrv_create_co_entry);
464 qemu_coroutine_enter(co, &cco);
465 while (cco.ret == NOT_DONE) {
466 aio_poll(qemu_get_aio_context(), true);
470 ret = cco.ret;
471 if (ret < 0) {
472 if (cco.err) {
473 error_propagate(errp, cco.err);
474 } else {
475 error_setg_errno(errp, -ret, "Could not create image");
479 out:
480 g_free(cco.filename);
481 return ret;
484 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
486 BlockDriver *drv;
487 Error *local_err = NULL;
488 int ret;
490 drv = bdrv_find_protocol(filename, true);
491 if (drv == NULL) {
492 error_setg(errp, "Could not find protocol for file '%s'", filename);
493 return -ENOENT;
496 ret = bdrv_create(drv, filename, opts, &local_err);
497 if (local_err) {
498 error_propagate(errp, local_err);
500 return ret;
503 void bdrv_refresh_limits(BlockDriverState *bs, Error **errp)
505 BlockDriver *drv = bs->drv;
506 Error *local_err = NULL;
508 memset(&bs->bl, 0, sizeof(bs->bl));
510 if (!drv) {
511 return;
514 /* Take some limits from the children as a default */
515 if (bs->file) {
516 bdrv_refresh_limits(bs->file, &local_err);
517 if (local_err) {
518 error_propagate(errp, local_err);
519 return;
521 bs->bl.opt_transfer_length = bs->file->bl.opt_transfer_length;
522 bs->bl.max_transfer_length = bs->file->bl.max_transfer_length;
523 bs->bl.opt_mem_alignment = bs->file->bl.opt_mem_alignment;
524 } else {
525 bs->bl.opt_mem_alignment = 512;
528 if (bs->backing_hd) {
529 bdrv_refresh_limits(bs->backing_hd, &local_err);
530 if (local_err) {
531 error_propagate(errp, local_err);
532 return;
534 bs->bl.opt_transfer_length =
535 MAX(bs->bl.opt_transfer_length,
536 bs->backing_hd->bl.opt_transfer_length);
537 bs->bl.max_transfer_length =
538 MIN_NON_ZERO(bs->bl.max_transfer_length,
539 bs->backing_hd->bl.max_transfer_length);
540 bs->bl.opt_mem_alignment =
541 MAX(bs->bl.opt_mem_alignment,
542 bs->backing_hd->bl.opt_mem_alignment);
545 /* Then let the driver override it */
546 if (drv->bdrv_refresh_limits) {
547 drv->bdrv_refresh_limits(bs, errp);
552 * Create a uniquely-named empty temporary file.
553 * Return 0 upon success, otherwise a negative errno value.
555 int get_tmp_filename(char *filename, int size)
557 #ifdef _WIN32
558 char temp_dir[MAX_PATH];
559 /* GetTempFileName requires that its output buffer (4th param)
560 have length MAX_PATH or greater. */
561 assert(size >= MAX_PATH);
562 return (GetTempPath(MAX_PATH, temp_dir)
563 && GetTempFileName(temp_dir, "qem", 0, filename)
564 ? 0 : -GetLastError());
565 #else
566 int fd;
567 const char *tmpdir;
568 tmpdir = getenv("TMPDIR");
569 if (!tmpdir) {
570 tmpdir = "/var/tmp";
572 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
573 return -EOVERFLOW;
575 fd = mkstemp(filename);
576 if (fd < 0) {
577 return -errno;
579 if (close(fd) != 0) {
580 unlink(filename);
581 return -errno;
583 return 0;
584 #endif
588 * Detect host devices. By convention, /dev/cdrom[N] is always
589 * recognized as a host CDROM.
591 static BlockDriver *find_hdev_driver(const char *filename)
593 int score_max = 0, score;
594 BlockDriver *drv = NULL, *d;
596 QLIST_FOREACH(d, &bdrv_drivers, list) {
597 if (d->bdrv_probe_device) {
598 score = d->bdrv_probe_device(filename);
599 if (score > score_max) {
600 score_max = score;
601 drv = d;
606 return drv;
609 BlockDriver *bdrv_find_protocol(const char *filename,
610 bool allow_protocol_prefix)
612 BlockDriver *drv1;
613 char protocol[128];
614 int len;
615 const char *p;
617 /* TODO Drivers without bdrv_file_open must be specified explicitly */
620 * XXX(hch): we really should not let host device detection
621 * override an explicit protocol specification, but moving this
622 * later breaks access to device names with colons in them.
623 * Thanks to the brain-dead persistent naming schemes on udev-
624 * based Linux systems those actually are quite common.
626 drv1 = find_hdev_driver(filename);
627 if (drv1) {
628 return drv1;
631 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
632 return &bdrv_file;
635 p = strchr(filename, ':');
636 assert(p != NULL);
637 len = p - filename;
638 if (len > sizeof(protocol) - 1)
639 len = sizeof(protocol) - 1;
640 memcpy(protocol, filename, len);
641 protocol[len] = '\0';
642 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
643 if (drv1->protocol_name &&
644 !strcmp(drv1->protocol_name, protocol)) {
645 return drv1;
648 return NULL;
651 static int find_image_format(BlockDriverState *bs, const char *filename,
652 BlockDriver **pdrv, Error **errp)
654 int score, score_max;
655 BlockDriver *drv1, *drv;
656 uint8_t buf[2048];
657 int ret = 0;
659 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
660 if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
661 *pdrv = &bdrv_raw;
662 return ret;
665 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
666 if (ret < 0) {
667 error_setg_errno(errp, -ret, "Could not read image for determining its "
668 "format");
669 *pdrv = NULL;
670 return ret;
673 score_max = 0;
674 drv = NULL;
675 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
676 if (drv1->bdrv_probe) {
677 score = drv1->bdrv_probe(buf, ret, filename);
678 if (score > score_max) {
679 score_max = score;
680 drv = drv1;
684 if (!drv) {
685 error_setg(errp, "Could not determine image format: No compatible "
686 "driver found");
687 ret = -ENOENT;
689 *pdrv = drv;
690 return ret;
694 * Set the current 'total_sectors' value
695 * Return 0 on success, -errno on error.
697 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
699 BlockDriver *drv = bs->drv;
701 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
702 if (bs->sg)
703 return 0;
705 /* query actual device if possible, otherwise just trust the hint */
706 if (drv->bdrv_getlength) {
707 int64_t length = drv->bdrv_getlength(bs);
708 if (length < 0) {
709 return length;
711 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
714 bs->total_sectors = hint;
715 return 0;
719 * Set open flags for a given discard mode
721 * Return 0 on success, -1 if the discard mode was invalid.
723 int bdrv_parse_discard_flags(const char *mode, int *flags)
725 *flags &= ~BDRV_O_UNMAP;
727 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
728 /* do nothing */
729 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
730 *flags |= BDRV_O_UNMAP;
731 } else {
732 return -1;
735 return 0;
739 * Set open flags for a given cache mode
741 * Return 0 on success, -1 if the cache mode was invalid.
743 int bdrv_parse_cache_flags(const char *mode, int *flags)
745 *flags &= ~BDRV_O_CACHE_MASK;
747 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
748 *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
749 } else if (!strcmp(mode, "directsync")) {
750 *flags |= BDRV_O_NOCACHE;
751 } else if (!strcmp(mode, "writeback")) {
752 *flags |= BDRV_O_CACHE_WB;
753 } else if (!strcmp(mode, "unsafe")) {
754 *flags |= BDRV_O_CACHE_WB;
755 *flags |= BDRV_O_NO_FLUSH;
756 } else if (!strcmp(mode, "writethrough")) {
757 /* this is the default */
758 } else {
759 return -1;
762 return 0;
766 * The copy-on-read flag is actually a reference count so multiple users may
767 * use the feature without worrying about clobbering its previous state.
768 * Copy-on-read stays enabled until all users have called to disable it.
770 void bdrv_enable_copy_on_read(BlockDriverState *bs)
772 bs->copy_on_read++;
775 void bdrv_disable_copy_on_read(BlockDriverState *bs)
777 assert(bs->copy_on_read > 0);
778 bs->copy_on_read--;
782 * Returns the flags that a temporary snapshot should get, based on the
783 * originally requested flags (the originally requested image will have flags
784 * like a backing file)
786 static int bdrv_temp_snapshot_flags(int flags)
788 return (flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
792 * Returns the flags that bs->file should get, based on the given flags for
793 * the parent BDS
795 static int bdrv_inherited_flags(int flags)
797 /* Enable protocol handling, disable format probing for bs->file */
798 flags |= BDRV_O_PROTOCOL;
800 /* Our block drivers take care to send flushes and respect unmap policy,
801 * so we can enable both unconditionally on lower layers. */
802 flags |= BDRV_O_CACHE_WB | BDRV_O_UNMAP;
804 /* Clear flags that only apply to the top layer */
805 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
807 return flags;
811 * Returns the flags that bs->backing_hd should get, based on the given flags
812 * for the parent BDS
814 static int bdrv_backing_flags(int flags)
816 /* backing files always opened read-only */
817 flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ);
819 /* snapshot=on is handled on the top layer */
820 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
822 return flags;
825 static int bdrv_open_flags(BlockDriverState *bs, int flags)
827 int open_flags = flags | BDRV_O_CACHE_WB;
830 * Clear flags that are internal to the block layer before opening the
831 * image.
833 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
836 * Snapshots should be writable.
838 if (flags & BDRV_O_TEMPORARY) {
839 open_flags |= BDRV_O_RDWR;
842 return open_flags;
845 static void bdrv_assign_node_name(BlockDriverState *bs,
846 const char *node_name,
847 Error **errp)
849 if (!node_name) {
850 return;
853 /* Check for empty string or invalid characters */
854 if (!id_wellformed(node_name)) {
855 error_setg(errp, "Invalid node name");
856 return;
859 /* takes care of avoiding namespaces collisions */
860 if (blk_by_name(node_name)) {
861 error_setg(errp, "node-name=%s is conflicting with a device id",
862 node_name);
863 return;
866 /* takes care of avoiding duplicates node names */
867 if (bdrv_find_node(node_name)) {
868 error_setg(errp, "Duplicate node name");
869 return;
872 /* copy node name into the bs and insert it into the graph list */
873 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
874 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
878 * Common part for opening disk images and files
880 * Removes all processed options from *options.
882 static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file,
883 QDict *options, int flags, BlockDriver *drv, Error **errp)
885 int ret, open_flags;
886 const char *filename;
887 const char *node_name = NULL;
888 Error *local_err = NULL;
890 assert(drv != NULL);
891 assert(bs->file == NULL);
892 assert(options != NULL && bs->options != options);
894 if (file != NULL) {
895 filename = file->filename;
896 } else {
897 filename = qdict_get_try_str(options, "filename");
900 if (drv->bdrv_needs_filename && !filename) {
901 error_setg(errp, "The '%s' block driver requires a file name",
902 drv->format_name);
903 return -EINVAL;
906 trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name);
908 node_name = qdict_get_try_str(options, "node-name");
909 bdrv_assign_node_name(bs, node_name, &local_err);
910 if (local_err) {
911 error_propagate(errp, local_err);
912 return -EINVAL;
914 qdict_del(options, "node-name");
916 /* bdrv_open() with directly using a protocol as drv. This layer is already
917 * opened, so assign it to bs (while file becomes a closed BlockDriverState)
918 * and return immediately. */
919 if (file != NULL && drv->bdrv_file_open) {
920 bdrv_swap(file, bs);
921 return 0;
924 bs->open_flags = flags;
925 bs->guest_block_size = 512;
926 bs->request_alignment = 512;
927 bs->zero_beyond_eof = true;
928 open_flags = bdrv_open_flags(bs, flags);
929 bs->read_only = !(open_flags & BDRV_O_RDWR);
930 bs->growable = !!(flags & BDRV_O_PROTOCOL);
932 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
933 error_setg(errp,
934 !bs->read_only && bdrv_is_whitelisted(drv, true)
935 ? "Driver '%s' can only be used for read-only devices"
936 : "Driver '%s' is not whitelisted",
937 drv->format_name);
938 return -ENOTSUP;
941 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
942 if (flags & BDRV_O_COPY_ON_READ) {
943 if (!bs->read_only) {
944 bdrv_enable_copy_on_read(bs);
945 } else {
946 error_setg(errp, "Can't use copy-on-read on read-only device");
947 return -EINVAL;
951 if (filename != NULL) {
952 pstrcpy(bs->filename, sizeof(bs->filename), filename);
953 } else {
954 bs->filename[0] = '\0';
956 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
958 bs->drv = drv;
959 bs->opaque = g_malloc0(drv->instance_size);
961 bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
963 /* Open the image, either directly or using a protocol */
964 if (drv->bdrv_file_open) {
965 assert(file == NULL);
966 assert(!drv->bdrv_needs_filename || filename != NULL);
967 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
968 } else {
969 if (file == NULL) {
970 error_setg(errp, "Can't use '%s' as a block driver for the "
971 "protocol level", drv->format_name);
972 ret = -EINVAL;
973 goto free_and_fail;
975 bs->file = file;
976 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
979 if (ret < 0) {
980 if (local_err) {
981 error_propagate(errp, local_err);
982 } else if (bs->filename[0]) {
983 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
984 } else {
985 error_setg_errno(errp, -ret, "Could not open image");
987 goto free_and_fail;
990 ret = refresh_total_sectors(bs, bs->total_sectors);
991 if (ret < 0) {
992 error_setg_errno(errp, -ret, "Could not refresh total sector count");
993 goto free_and_fail;
996 bdrv_refresh_limits(bs, &local_err);
997 if (local_err) {
998 error_propagate(errp, local_err);
999 ret = -EINVAL;
1000 goto free_and_fail;
1003 assert(bdrv_opt_mem_align(bs) != 0);
1004 assert((bs->request_alignment != 0) || bs->sg);
1005 return 0;
1007 free_and_fail:
1008 bs->file = NULL;
1009 g_free(bs->opaque);
1010 bs->opaque = NULL;
1011 bs->drv = NULL;
1012 return ret;
1015 static QDict *parse_json_filename(const char *filename, Error **errp)
1017 QObject *options_obj;
1018 QDict *options;
1019 int ret;
1021 ret = strstart(filename, "json:", &filename);
1022 assert(ret);
1024 options_obj = qobject_from_json(filename);
1025 if (!options_obj) {
1026 error_setg(errp, "Could not parse the JSON options");
1027 return NULL;
1030 if (qobject_type(options_obj) != QTYPE_QDICT) {
1031 qobject_decref(options_obj);
1032 error_setg(errp, "Invalid JSON object given");
1033 return NULL;
1036 options = qobject_to_qdict(options_obj);
1037 qdict_flatten(options);
1039 return options;
1043 * Fills in default options for opening images and converts the legacy
1044 * filename/flags pair to option QDict entries.
1046 static int bdrv_fill_options(QDict **options, const char **pfilename, int flags,
1047 BlockDriver *drv, Error **errp)
1049 const char *filename = *pfilename;
1050 const char *drvname;
1051 bool protocol = flags & BDRV_O_PROTOCOL;
1052 bool parse_filename = false;
1053 Error *local_err = NULL;
1055 /* Parse json: pseudo-protocol */
1056 if (filename && g_str_has_prefix(filename, "json:")) {
1057 QDict *json_options = parse_json_filename(filename, &local_err);
1058 if (local_err) {
1059 error_propagate(errp, local_err);
1060 return -EINVAL;
1063 /* Options given in the filename have lower priority than options
1064 * specified directly */
1065 qdict_join(*options, json_options, false);
1066 QDECREF(json_options);
1067 *pfilename = filename = NULL;
1070 /* Fetch the file name from the options QDict if necessary */
1071 if (protocol && filename) {
1072 if (!qdict_haskey(*options, "filename")) {
1073 qdict_put(*options, "filename", qstring_from_str(filename));
1074 parse_filename = true;
1075 } else {
1076 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1077 "the same time");
1078 return -EINVAL;
1082 /* Find the right block driver */
1083 filename = qdict_get_try_str(*options, "filename");
1084 drvname = qdict_get_try_str(*options, "driver");
1086 if (drv) {
1087 if (drvname) {
1088 error_setg(errp, "Driver specified twice");
1089 return -EINVAL;
1091 drvname = drv->format_name;
1092 qdict_put(*options, "driver", qstring_from_str(drvname));
1093 } else {
1094 if (!drvname && protocol) {
1095 if (filename) {
1096 drv = bdrv_find_protocol(filename, parse_filename);
1097 if (!drv) {
1098 error_setg(errp, "Unknown protocol");
1099 return -EINVAL;
1102 drvname = drv->format_name;
1103 qdict_put(*options, "driver", qstring_from_str(drvname));
1104 } else {
1105 error_setg(errp, "Must specify either driver or file");
1106 return -EINVAL;
1108 } else if (drvname) {
1109 drv = bdrv_find_format(drvname);
1110 if (!drv) {
1111 error_setg(errp, "Unknown driver '%s'", drvname);
1112 return -ENOENT;
1117 assert(drv || !protocol);
1119 /* Driver-specific filename parsing */
1120 if (drv && drv->bdrv_parse_filename && parse_filename) {
1121 drv->bdrv_parse_filename(filename, *options, &local_err);
1122 if (local_err) {
1123 error_propagate(errp, local_err);
1124 return -EINVAL;
1127 if (!drv->bdrv_needs_filename) {
1128 qdict_del(*options, "filename");
1132 return 0;
1135 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
1138 if (bs->backing_hd) {
1139 assert(bs->backing_blocker);
1140 bdrv_op_unblock_all(bs->backing_hd, bs->backing_blocker);
1141 } else if (backing_hd) {
1142 error_setg(&bs->backing_blocker,
1143 "device is used as backing hd of '%s'",
1144 bdrv_get_device_name(bs));
1147 bs->backing_hd = backing_hd;
1148 if (!backing_hd) {
1149 error_free(bs->backing_blocker);
1150 bs->backing_blocker = NULL;
1151 goto out;
1153 bs->open_flags &= ~BDRV_O_NO_BACKING;
1154 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename);
1155 pstrcpy(bs->backing_format, sizeof(bs->backing_format),
1156 backing_hd->drv ? backing_hd->drv->format_name : "");
1158 bdrv_op_block_all(bs->backing_hd, bs->backing_blocker);
1159 /* Otherwise we won't be able to commit due to check in bdrv_commit */
1160 bdrv_op_unblock(bs->backing_hd, BLOCK_OP_TYPE_COMMIT,
1161 bs->backing_blocker);
1162 out:
1163 bdrv_refresh_limits(bs, NULL);
1167 * Opens the backing file for a BlockDriverState if not yet open
1169 * options is a QDict of options to pass to the block drivers, or NULL for an
1170 * empty set of options. The reference to the QDict is transferred to this
1171 * function (even on failure), so if the caller intends to reuse the dictionary,
1172 * it needs to use QINCREF() before calling bdrv_file_open.
1174 int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp)
1176 char *backing_filename = g_malloc0(PATH_MAX);
1177 int ret = 0;
1178 BlockDriverState *backing_hd;
1179 Error *local_err = NULL;
1181 if (bs->backing_hd != NULL) {
1182 QDECREF(options);
1183 goto free_exit;
1186 /* NULL means an empty set of options */
1187 if (options == NULL) {
1188 options = qdict_new();
1191 bs->open_flags &= ~BDRV_O_NO_BACKING;
1192 if (qdict_haskey(options, "file.filename")) {
1193 backing_filename[0] = '\0';
1194 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
1195 QDECREF(options);
1196 goto free_exit;
1197 } else {
1198 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX);
1201 if (!bs->drv || !bs->drv->supports_backing) {
1202 ret = -EINVAL;
1203 error_setg(errp, "Driver doesn't support backing files");
1204 QDECREF(options);
1205 goto free_exit;
1208 backing_hd = bdrv_new();
1210 if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
1211 qdict_put(options, "driver", qstring_from_str(bs->backing_format));
1214 assert(bs->backing_hd == NULL);
1215 ret = bdrv_open(&backing_hd,
1216 *backing_filename ? backing_filename : NULL, NULL, options,
1217 bdrv_backing_flags(bs->open_flags), NULL, &local_err);
1218 if (ret < 0) {
1219 bdrv_unref(backing_hd);
1220 backing_hd = NULL;
1221 bs->open_flags |= BDRV_O_NO_BACKING;
1222 error_setg(errp, "Could not open backing file: %s",
1223 error_get_pretty(local_err));
1224 error_free(local_err);
1225 goto free_exit;
1227 bdrv_set_backing_hd(bs, backing_hd);
1229 free_exit:
1230 g_free(backing_filename);
1231 return ret;
1235 * Opens a disk image whose options are given as BlockdevRef in another block
1236 * device's options.
1238 * If allow_none is true, no image will be opened if filename is false and no
1239 * BlockdevRef is given. *pbs will remain unchanged and 0 will be returned.
1241 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1242 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1243 * itself, all options starting with "${bdref_key}." are considered part of the
1244 * BlockdevRef.
1246 * The BlockdevRef will be removed from the options QDict.
1248 * To conform with the behavior of bdrv_open(), *pbs has to be NULL.
1250 int bdrv_open_image(BlockDriverState **pbs, const char *filename,
1251 QDict *options, const char *bdref_key, int flags,
1252 bool allow_none, Error **errp)
1254 QDict *image_options;
1255 int ret;
1256 char *bdref_key_dot;
1257 const char *reference;
1259 assert(pbs);
1260 assert(*pbs == NULL);
1262 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1263 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1264 g_free(bdref_key_dot);
1266 reference = qdict_get_try_str(options, bdref_key);
1267 if (!filename && !reference && !qdict_size(image_options)) {
1268 if (allow_none) {
1269 ret = 0;
1270 } else {
1271 error_setg(errp, "A block device must be specified for \"%s\"",
1272 bdref_key);
1273 ret = -EINVAL;
1275 QDECREF(image_options);
1276 goto done;
1279 ret = bdrv_open(pbs, filename, reference, image_options, flags, NULL, errp);
1281 done:
1282 qdict_del(options, bdref_key);
1283 return ret;
1286 int bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp)
1288 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
1289 char *tmp_filename = g_malloc0(PATH_MAX + 1);
1290 int64_t total_size;
1291 QemuOpts *opts = NULL;
1292 QDict *snapshot_options;
1293 BlockDriverState *bs_snapshot;
1294 Error *local_err;
1295 int ret;
1297 /* if snapshot, we create a temporary backing file and open it
1298 instead of opening 'filename' directly */
1300 /* Get the required size from the image */
1301 total_size = bdrv_getlength(bs);
1302 if (total_size < 0) {
1303 ret = total_size;
1304 error_setg_errno(errp, -total_size, "Could not get image size");
1305 goto out;
1308 /* Create the temporary image */
1309 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1310 if (ret < 0) {
1311 error_setg_errno(errp, -ret, "Could not get temporary filename");
1312 goto out;
1315 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
1316 &error_abort);
1317 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size);
1318 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, &local_err);
1319 qemu_opts_del(opts);
1320 if (ret < 0) {
1321 error_setg_errno(errp, -ret, "Could not create temporary overlay "
1322 "'%s': %s", tmp_filename,
1323 error_get_pretty(local_err));
1324 error_free(local_err);
1325 goto out;
1328 /* Prepare a new options QDict for the temporary file */
1329 snapshot_options = qdict_new();
1330 qdict_put(snapshot_options, "file.driver",
1331 qstring_from_str("file"));
1332 qdict_put(snapshot_options, "file.filename",
1333 qstring_from_str(tmp_filename));
1335 bs_snapshot = bdrv_new();
1337 ret = bdrv_open(&bs_snapshot, NULL, NULL, snapshot_options,
1338 flags, &bdrv_qcow2, &local_err);
1339 if (ret < 0) {
1340 error_propagate(errp, local_err);
1341 goto out;
1344 bdrv_append(bs_snapshot, bs);
1346 out:
1347 g_free(tmp_filename);
1348 return ret;
1352 * Opens a disk image (raw, qcow2, vmdk, ...)
1354 * options is a QDict of options to pass to the block drivers, or NULL for an
1355 * empty set of options. The reference to the QDict belongs to the block layer
1356 * after the call (even on failure), so if the caller intends to reuse the
1357 * dictionary, it needs to use QINCREF() before calling bdrv_open.
1359 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1360 * If it is not NULL, the referenced BDS will be reused.
1362 * The reference parameter may be used to specify an existing block device which
1363 * should be opened. If specified, neither options nor a filename may be given,
1364 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
1366 int bdrv_open(BlockDriverState **pbs, const char *filename,
1367 const char *reference, QDict *options, int flags,
1368 BlockDriver *drv, Error **errp)
1370 int ret;
1371 BlockDriverState *file = NULL, *bs;
1372 const char *drvname;
1373 Error *local_err = NULL;
1374 int snapshot_flags = 0;
1376 assert(pbs);
1378 if (reference) {
1379 bool options_non_empty = options ? qdict_size(options) : false;
1380 QDECREF(options);
1382 if (*pbs) {
1383 error_setg(errp, "Cannot reuse an existing BDS when referencing "
1384 "another block device");
1385 return -EINVAL;
1388 if (filename || options_non_empty) {
1389 error_setg(errp, "Cannot reference an existing block device with "
1390 "additional options or a new filename");
1391 return -EINVAL;
1394 bs = bdrv_lookup_bs(reference, reference, errp);
1395 if (!bs) {
1396 return -ENODEV;
1398 bdrv_ref(bs);
1399 *pbs = bs;
1400 return 0;
1403 if (*pbs) {
1404 bs = *pbs;
1405 } else {
1406 bs = bdrv_new();
1409 /* NULL means an empty set of options */
1410 if (options == NULL) {
1411 options = qdict_new();
1414 ret = bdrv_fill_options(&options, &filename, flags, drv, &local_err);
1415 if (local_err) {
1416 goto fail;
1419 /* Find the right image format driver */
1420 drv = NULL;
1421 drvname = qdict_get_try_str(options, "driver");
1422 if (drvname) {
1423 drv = bdrv_find_format(drvname);
1424 qdict_del(options, "driver");
1425 if (!drv) {
1426 error_setg(errp, "Unknown driver: '%s'", drvname);
1427 ret = -EINVAL;
1428 goto fail;
1432 assert(drvname || !(flags & BDRV_O_PROTOCOL));
1433 if (drv && !drv->bdrv_file_open) {
1434 /* If the user explicitly wants a format driver here, we'll need to add
1435 * another layer for the protocol in bs->file */
1436 flags &= ~BDRV_O_PROTOCOL;
1439 bs->options = options;
1440 options = qdict_clone_shallow(options);
1442 /* Open image file without format layer */
1443 if ((flags & BDRV_O_PROTOCOL) == 0) {
1444 if (flags & BDRV_O_RDWR) {
1445 flags |= BDRV_O_ALLOW_RDWR;
1447 if (flags & BDRV_O_SNAPSHOT) {
1448 snapshot_flags = bdrv_temp_snapshot_flags(flags);
1449 flags = bdrv_backing_flags(flags);
1452 assert(file == NULL);
1453 ret = bdrv_open_image(&file, filename, options, "file",
1454 bdrv_inherited_flags(flags),
1455 true, &local_err);
1456 if (ret < 0) {
1457 goto fail;
1461 /* Image format probing */
1462 if (!drv && file) {
1463 ret = find_image_format(file, filename, &drv, &local_err);
1464 if (ret < 0) {
1465 goto fail;
1467 } else if (!drv) {
1468 error_setg(errp, "Must specify either driver or file");
1469 ret = -EINVAL;
1470 goto fail;
1473 /* Open the image */
1474 ret = bdrv_open_common(bs, file, options, flags, drv, &local_err);
1475 if (ret < 0) {
1476 goto fail;
1479 if (file && (bs->file != file)) {
1480 bdrv_unref(file);
1481 file = NULL;
1484 /* If there is a backing file, use it */
1485 if ((flags & BDRV_O_NO_BACKING) == 0) {
1486 QDict *backing_options;
1488 qdict_extract_subqdict(options, &backing_options, "backing.");
1489 ret = bdrv_open_backing_file(bs, backing_options, &local_err);
1490 if (ret < 0) {
1491 goto close_and_fail;
1495 bdrv_refresh_filename(bs);
1497 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1498 * temporary snapshot afterwards. */
1499 if (snapshot_flags) {
1500 ret = bdrv_append_temp_snapshot(bs, snapshot_flags, &local_err);
1501 if (local_err) {
1502 goto close_and_fail;
1506 /* Check if any unknown options were used */
1507 if (options && (qdict_size(options) != 0)) {
1508 const QDictEntry *entry = qdict_first(options);
1509 if (flags & BDRV_O_PROTOCOL) {
1510 error_setg(errp, "Block protocol '%s' doesn't support the option "
1511 "'%s'", drv->format_name, entry->key);
1512 } else {
1513 error_setg(errp, "Block format '%s' used by device '%s' doesn't "
1514 "support the option '%s'", drv->format_name,
1515 bdrv_get_device_name(bs), entry->key);
1518 ret = -EINVAL;
1519 goto close_and_fail;
1522 if (!bdrv_key_required(bs)) {
1523 if (bs->blk) {
1524 blk_dev_change_media_cb(bs->blk, true);
1526 } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1527 && !runstate_check(RUN_STATE_INMIGRATE)
1528 && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1529 error_setg(errp,
1530 "Guest must be stopped for opening of encrypted image");
1531 ret = -EBUSY;
1532 goto close_and_fail;
1535 QDECREF(options);
1536 *pbs = bs;
1537 return 0;
1539 fail:
1540 if (file != NULL) {
1541 bdrv_unref(file);
1543 QDECREF(bs->options);
1544 QDECREF(options);
1545 bs->options = NULL;
1546 if (!*pbs) {
1547 /* If *pbs is NULL, a new BDS has been created in this function and
1548 needs to be freed now. Otherwise, it does not need to be closed,
1549 since it has not really been opened yet. */
1550 bdrv_unref(bs);
1552 if (local_err) {
1553 error_propagate(errp, local_err);
1555 return ret;
1557 close_and_fail:
1558 /* See fail path, but now the BDS has to be always closed */
1559 if (*pbs) {
1560 bdrv_close(bs);
1561 } else {
1562 bdrv_unref(bs);
1564 QDECREF(options);
1565 if (local_err) {
1566 error_propagate(errp, local_err);
1568 return ret;
1571 typedef struct BlockReopenQueueEntry {
1572 bool prepared;
1573 BDRVReopenState state;
1574 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1575 } BlockReopenQueueEntry;
1578 * Adds a BlockDriverState to a simple queue for an atomic, transactional
1579 * reopen of multiple devices.
1581 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1582 * already performed, or alternatively may be NULL a new BlockReopenQueue will
1583 * be created and initialized. This newly created BlockReopenQueue should be
1584 * passed back in for subsequent calls that are intended to be of the same
1585 * atomic 'set'.
1587 * bs is the BlockDriverState to add to the reopen queue.
1589 * flags contains the open flags for the associated bs
1591 * returns a pointer to bs_queue, which is either the newly allocated
1592 * bs_queue, or the existing bs_queue being used.
1595 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
1596 BlockDriverState *bs, int flags)
1598 assert(bs != NULL);
1600 BlockReopenQueueEntry *bs_entry;
1601 if (bs_queue == NULL) {
1602 bs_queue = g_new0(BlockReopenQueue, 1);
1603 QSIMPLEQ_INIT(bs_queue);
1606 /* bdrv_open() masks this flag out */
1607 flags &= ~BDRV_O_PROTOCOL;
1609 if (bs->file) {
1610 bdrv_reopen_queue(bs_queue, bs->file, bdrv_inherited_flags(flags));
1613 bs_entry = g_new0(BlockReopenQueueEntry, 1);
1614 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1616 bs_entry->state.bs = bs;
1617 bs_entry->state.flags = flags;
1619 return bs_queue;
1623 * Reopen multiple BlockDriverStates atomically & transactionally.
1625 * The queue passed in (bs_queue) must have been built up previous
1626 * via bdrv_reopen_queue().
1628 * Reopens all BDS specified in the queue, with the appropriate
1629 * flags. All devices are prepared for reopen, and failure of any
1630 * device will cause all device changes to be abandonded, and intermediate
1631 * data cleaned up.
1633 * If all devices prepare successfully, then the changes are committed
1634 * to all devices.
1637 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1639 int ret = -1;
1640 BlockReopenQueueEntry *bs_entry, *next;
1641 Error *local_err = NULL;
1643 assert(bs_queue != NULL);
1645 bdrv_drain_all();
1647 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1648 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
1649 error_propagate(errp, local_err);
1650 goto cleanup;
1652 bs_entry->prepared = true;
1655 /* If we reach this point, we have success and just need to apply the
1656 * changes
1658 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1659 bdrv_reopen_commit(&bs_entry->state);
1662 ret = 0;
1664 cleanup:
1665 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1666 if (ret && bs_entry->prepared) {
1667 bdrv_reopen_abort(&bs_entry->state);
1669 g_free(bs_entry);
1671 g_free(bs_queue);
1672 return ret;
1676 /* Reopen a single BlockDriverState with the specified flags. */
1677 int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
1679 int ret = -1;
1680 Error *local_err = NULL;
1681 BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags);
1683 ret = bdrv_reopen_multiple(queue, &local_err);
1684 if (local_err != NULL) {
1685 error_propagate(errp, local_err);
1687 return ret;
1692 * Prepares a BlockDriverState for reopen. All changes are staged in the
1693 * 'opaque' field of the BDRVReopenState, which is used and allocated by
1694 * the block driver layer .bdrv_reopen_prepare()
1696 * bs is the BlockDriverState to reopen
1697 * flags are the new open flags
1698 * queue is the reopen queue
1700 * Returns 0 on success, non-zero on error. On error errp will be set
1701 * as well.
1703 * On failure, bdrv_reopen_abort() will be called to clean up any data.
1704 * It is the responsibility of the caller to then call the abort() or
1705 * commit() for any other BDS that have been left in a prepare() state
1708 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
1709 Error **errp)
1711 int ret = -1;
1712 Error *local_err = NULL;
1713 BlockDriver *drv;
1715 assert(reopen_state != NULL);
1716 assert(reopen_state->bs->drv != NULL);
1717 drv = reopen_state->bs->drv;
1719 /* if we are to stay read-only, do not allow permission change
1720 * to r/w */
1721 if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
1722 reopen_state->flags & BDRV_O_RDWR) {
1723 error_set(errp, QERR_DEVICE_IS_READ_ONLY,
1724 bdrv_get_device_name(reopen_state->bs));
1725 goto error;
1729 ret = bdrv_flush(reopen_state->bs);
1730 if (ret) {
1731 error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive",
1732 strerror(-ret));
1733 goto error;
1736 if (drv->bdrv_reopen_prepare) {
1737 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
1738 if (ret) {
1739 if (local_err != NULL) {
1740 error_propagate(errp, local_err);
1741 } else {
1742 error_setg(errp, "failed while preparing to reopen image '%s'",
1743 reopen_state->bs->filename);
1745 goto error;
1747 } else {
1748 /* It is currently mandatory to have a bdrv_reopen_prepare()
1749 * handler for each supported drv. */
1750 error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
1751 drv->format_name, bdrv_get_device_name(reopen_state->bs),
1752 "reopening of file");
1753 ret = -1;
1754 goto error;
1757 ret = 0;
1759 error:
1760 return ret;
1764 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
1765 * makes them final by swapping the staging BlockDriverState contents into
1766 * the active BlockDriverState contents.
1768 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
1770 BlockDriver *drv;
1772 assert(reopen_state != NULL);
1773 drv = reopen_state->bs->drv;
1774 assert(drv != NULL);
1776 /* If there are any driver level actions to take */
1777 if (drv->bdrv_reopen_commit) {
1778 drv->bdrv_reopen_commit(reopen_state);
1781 /* set BDS specific flags now */
1782 reopen_state->bs->open_flags = reopen_state->flags;
1783 reopen_state->bs->enable_write_cache = !!(reopen_state->flags &
1784 BDRV_O_CACHE_WB);
1785 reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
1787 bdrv_refresh_limits(reopen_state->bs, NULL);
1791 * Abort the reopen, and delete and free the staged changes in
1792 * reopen_state
1794 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
1796 BlockDriver *drv;
1798 assert(reopen_state != NULL);
1799 drv = reopen_state->bs->drv;
1800 assert(drv != NULL);
1802 if (drv->bdrv_reopen_abort) {
1803 drv->bdrv_reopen_abort(reopen_state);
1808 void bdrv_close(BlockDriverState *bs)
1810 BdrvAioNotifier *ban, *ban_next;
1812 if (bs->job) {
1813 block_job_cancel_sync(bs->job);
1815 bdrv_drain_all(); /* complete I/O */
1816 bdrv_flush(bs);
1817 bdrv_drain_all(); /* in case flush left pending I/O */
1818 notifier_list_notify(&bs->close_notifiers, bs);
1820 if (bs->drv) {
1821 if (bs->backing_hd) {
1822 BlockDriverState *backing_hd = bs->backing_hd;
1823 bdrv_set_backing_hd(bs, NULL);
1824 bdrv_unref(backing_hd);
1826 bs->drv->bdrv_close(bs);
1827 g_free(bs->opaque);
1828 bs->opaque = NULL;
1829 bs->drv = NULL;
1830 bs->copy_on_read = 0;
1831 bs->backing_file[0] = '\0';
1832 bs->backing_format[0] = '\0';
1833 bs->total_sectors = 0;
1834 bs->encrypted = 0;
1835 bs->valid_key = 0;
1836 bs->sg = 0;
1837 bs->growable = 0;
1838 bs->zero_beyond_eof = false;
1839 QDECREF(bs->options);
1840 bs->options = NULL;
1841 QDECREF(bs->full_open_options);
1842 bs->full_open_options = NULL;
1844 if (bs->file != NULL) {
1845 bdrv_unref(bs->file);
1846 bs->file = NULL;
1850 if (bs->blk) {
1851 blk_dev_change_media_cb(bs->blk, false);
1854 /*throttling disk I/O limits*/
1855 if (bs->io_limits_enabled) {
1856 bdrv_io_limits_disable(bs);
1859 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
1860 g_free(ban);
1862 QLIST_INIT(&bs->aio_notifiers);
1865 void bdrv_close_all(void)
1867 BlockDriverState *bs;
1869 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
1870 AioContext *aio_context = bdrv_get_aio_context(bs);
1872 aio_context_acquire(aio_context);
1873 bdrv_close(bs);
1874 aio_context_release(aio_context);
1878 /* Check if any requests are in-flight (including throttled requests) */
1879 static bool bdrv_requests_pending(BlockDriverState *bs)
1881 if (!QLIST_EMPTY(&bs->tracked_requests)) {
1882 return true;
1884 if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) {
1885 return true;
1887 if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) {
1888 return true;
1890 if (bs->file && bdrv_requests_pending(bs->file)) {
1891 return true;
1893 if (bs->backing_hd && bdrv_requests_pending(bs->backing_hd)) {
1894 return true;
1896 return false;
1899 static bool bdrv_drain_one(BlockDriverState *bs)
1901 bool bs_busy;
1903 bdrv_flush_io_queue(bs);
1904 bdrv_start_throttled_reqs(bs);
1905 bs_busy = bdrv_requests_pending(bs);
1906 bs_busy |= aio_poll(bdrv_get_aio_context(bs), bs_busy);
1907 return bs_busy;
1911 * Wait for pending requests to complete on a single BlockDriverState subtree
1913 * See the warning in bdrv_drain_all(). This function can only be called if
1914 * you are sure nothing can generate I/O because you have op blockers
1915 * installed.
1917 * Note that unlike bdrv_drain_all(), the caller must hold the BlockDriverState
1918 * AioContext.
1920 void bdrv_drain(BlockDriverState *bs)
1922 while (bdrv_drain_one(bs)) {
1923 /* Keep iterating */
1928 * Wait for pending requests to complete across all BlockDriverStates
1930 * This function does not flush data to disk, use bdrv_flush_all() for that
1931 * after calling this function.
1933 * Note that completion of an asynchronous I/O operation can trigger any
1934 * number of other I/O operations on other devices---for example a coroutine
1935 * can be arbitrarily complex and a constant flow of I/O can come until the
1936 * coroutine is complete. Because of this, it is not possible to have a
1937 * function to drain a single device's I/O queue.
1939 void bdrv_drain_all(void)
1941 /* Always run first iteration so any pending completion BHs run */
1942 bool busy = true;
1943 BlockDriverState *bs;
1945 while (busy) {
1946 busy = false;
1948 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
1949 AioContext *aio_context = bdrv_get_aio_context(bs);
1951 aio_context_acquire(aio_context);
1952 busy |= bdrv_drain_one(bs);
1953 aio_context_release(aio_context);
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)
1964 * Take care to remove bs from bdrv_states only when it's actually
1965 * in it. Note that bs->device_list.tqe_prev is initially null,
1966 * and gets set to non-null by QTAILQ_INSERT_TAIL(). Establish
1967 * the useful invariant "bs in bdrv_states iff bs->tqe_prev" by
1968 * resetting it to null on remove.
1970 if (bs->device_list.tqe_prev) {
1971 QTAILQ_REMOVE(&bdrv_states, bs, device_list);
1972 bs->device_list.tqe_prev = NULL;
1974 if (bs->node_name[0] != '\0') {
1975 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
1977 bs->node_name[0] = '\0';
1980 static void bdrv_rebind(BlockDriverState *bs)
1982 if (bs->drv && bs->drv->bdrv_rebind) {
1983 bs->drv->bdrv_rebind(bs);
1987 static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
1988 BlockDriverState *bs_src)
1990 /* move some fields that need to stay attached to the device */
1992 /* dev info */
1993 bs_dest->guest_block_size = bs_src->guest_block_size;
1994 bs_dest->copy_on_read = bs_src->copy_on_read;
1996 bs_dest->enable_write_cache = bs_src->enable_write_cache;
1998 /* i/o throttled req */
1999 memcpy(&bs_dest->throttle_state,
2000 &bs_src->throttle_state,
2001 sizeof(ThrottleState));
2002 bs_dest->throttled_reqs[0] = bs_src->throttled_reqs[0];
2003 bs_dest->throttled_reqs[1] = bs_src->throttled_reqs[1];
2004 bs_dest->io_limits_enabled = bs_src->io_limits_enabled;
2006 /* r/w error */
2007 bs_dest->on_read_error = bs_src->on_read_error;
2008 bs_dest->on_write_error = bs_src->on_write_error;
2010 /* i/o status */
2011 bs_dest->iostatus_enabled = bs_src->iostatus_enabled;
2012 bs_dest->iostatus = bs_src->iostatus;
2014 /* dirty bitmap */
2015 bs_dest->dirty_bitmaps = bs_src->dirty_bitmaps;
2017 /* reference count */
2018 bs_dest->refcnt = bs_src->refcnt;
2020 /* job */
2021 bs_dest->job = bs_src->job;
2023 /* keep the same entry in bdrv_states */
2024 bs_dest->device_list = bs_src->device_list;
2025 bs_dest->blk = bs_src->blk;
2027 memcpy(bs_dest->op_blockers, bs_src->op_blockers,
2028 sizeof(bs_dest->op_blockers));
2032 * Swap bs contents for two image chains while they are live,
2033 * while keeping required fields on the BlockDriverState that is
2034 * actually attached to a device.
2036 * This will modify the BlockDriverState fields, and swap contents
2037 * between bs_new and bs_old. Both bs_new and bs_old are modified.
2039 * bs_new must not be attached to a BlockBackend.
2041 * This function does not create any image files.
2043 void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
2045 BlockDriverState tmp;
2047 /* The code needs to swap the node_name but simply swapping node_list won't
2048 * work so first remove the nodes from the graph list, do the swap then
2049 * insert them back if needed.
2051 if (bs_new->node_name[0] != '\0') {
2052 QTAILQ_REMOVE(&graph_bdrv_states, bs_new, node_list);
2054 if (bs_old->node_name[0] != '\0') {
2055 QTAILQ_REMOVE(&graph_bdrv_states, bs_old, node_list);
2058 /* bs_new must be unattached and shouldn't have anything fancy enabled */
2059 assert(!bs_new->blk);
2060 assert(QLIST_EMPTY(&bs_new->dirty_bitmaps));
2061 assert(bs_new->job == NULL);
2062 assert(bs_new->io_limits_enabled == false);
2063 assert(!throttle_have_timer(&bs_new->throttle_state));
2065 tmp = *bs_new;
2066 *bs_new = *bs_old;
2067 *bs_old = tmp;
2069 /* there are some fields that should not be swapped, move them back */
2070 bdrv_move_feature_fields(&tmp, bs_old);
2071 bdrv_move_feature_fields(bs_old, bs_new);
2072 bdrv_move_feature_fields(bs_new, &tmp);
2074 /* bs_new must remain unattached */
2075 assert(!bs_new->blk);
2077 /* Check a few fields that should remain attached to the device */
2078 assert(bs_new->job == NULL);
2079 assert(bs_new->io_limits_enabled == false);
2080 assert(!throttle_have_timer(&bs_new->throttle_state));
2082 /* insert the nodes back into the graph node list if needed */
2083 if (bs_new->node_name[0] != '\0') {
2084 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs_new, node_list);
2086 if (bs_old->node_name[0] != '\0') {
2087 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs_old, node_list);
2090 bdrv_rebind(bs_new);
2091 bdrv_rebind(bs_old);
2095 * Add new bs contents at the top of an image chain while the chain is
2096 * live, while keeping required fields on the top layer.
2098 * This will modify the BlockDriverState fields, and swap contents
2099 * between bs_new and bs_top. Both bs_new and bs_top are modified.
2101 * bs_new must not be attached to a BlockBackend.
2103 * This function does not create any image files.
2105 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
2107 bdrv_swap(bs_new, bs_top);
2109 /* The contents of 'tmp' will become bs_top, as we are
2110 * swapping bs_new and bs_top contents. */
2111 bdrv_set_backing_hd(bs_top, bs_new);
2114 static void bdrv_delete(BlockDriverState *bs)
2116 assert(!bs->job);
2117 assert(bdrv_op_blocker_is_empty(bs));
2118 assert(!bs->refcnt);
2119 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2121 bdrv_close(bs);
2123 /* remove from list, if necessary */
2124 bdrv_make_anon(bs);
2126 g_free(bs);
2130 * Run consistency checks on an image
2132 * Returns 0 if the check could be completed (it doesn't mean that the image is
2133 * free of errors) or -errno when an internal error occurred. The results of the
2134 * check are stored in res.
2136 int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2138 if (bs->drv == NULL) {
2139 return -ENOMEDIUM;
2141 if (bs->drv->bdrv_check == NULL) {
2142 return -ENOTSUP;
2145 memset(res, 0, sizeof(*res));
2146 return bs->drv->bdrv_check(bs, res, fix);
2149 #define COMMIT_BUF_SECTORS 2048
2151 /* commit COW file into the raw image */
2152 int bdrv_commit(BlockDriverState *bs)
2154 BlockDriver *drv = bs->drv;
2155 int64_t sector, total_sectors, length, backing_length;
2156 int n, ro, open_flags;
2157 int ret = 0;
2158 uint8_t *buf = NULL;
2159 char filename[PATH_MAX];
2161 if (!drv)
2162 return -ENOMEDIUM;
2164 if (!bs->backing_hd) {
2165 return -ENOTSUP;
2168 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT, NULL) ||
2169 bdrv_op_is_blocked(bs->backing_hd, BLOCK_OP_TYPE_COMMIT, NULL)) {
2170 return -EBUSY;
2173 ro = bs->backing_hd->read_only;
2174 /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */
2175 pstrcpy(filename, sizeof(filename), bs->backing_hd->filename);
2176 open_flags = bs->backing_hd->open_flags;
2178 if (ro) {
2179 if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
2180 return -EACCES;
2184 length = bdrv_getlength(bs);
2185 if (length < 0) {
2186 ret = length;
2187 goto ro_cleanup;
2190 backing_length = bdrv_getlength(bs->backing_hd);
2191 if (backing_length < 0) {
2192 ret = backing_length;
2193 goto ro_cleanup;
2196 /* If our top snapshot is larger than the backing file image,
2197 * grow the backing file image if possible. If not possible,
2198 * we must return an error */
2199 if (length > backing_length) {
2200 ret = bdrv_truncate(bs->backing_hd, length);
2201 if (ret < 0) {
2202 goto ro_cleanup;
2206 total_sectors = length >> BDRV_SECTOR_BITS;
2208 /* qemu_try_blockalign() for bs will choose an alignment that works for
2209 * bs->backing_hd as well, so no need to compare the alignment manually. */
2210 buf = qemu_try_blockalign(bs, COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
2211 if (buf == NULL) {
2212 ret = -ENOMEM;
2213 goto ro_cleanup;
2216 for (sector = 0; sector < total_sectors; sector += n) {
2217 ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n);
2218 if (ret < 0) {
2219 goto ro_cleanup;
2221 if (ret) {
2222 ret = bdrv_read(bs, sector, buf, n);
2223 if (ret < 0) {
2224 goto ro_cleanup;
2227 ret = bdrv_write(bs->backing_hd, sector, buf, n);
2228 if (ret < 0) {
2229 goto ro_cleanup;
2234 if (drv->bdrv_make_empty) {
2235 ret = drv->bdrv_make_empty(bs);
2236 if (ret < 0) {
2237 goto ro_cleanup;
2239 bdrv_flush(bs);
2243 * Make sure all data we wrote to the backing device is actually
2244 * stable on disk.
2246 if (bs->backing_hd) {
2247 bdrv_flush(bs->backing_hd);
2250 ret = 0;
2251 ro_cleanup:
2252 qemu_vfree(buf);
2254 if (ro) {
2255 /* ignoring error return here */
2256 bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
2259 return ret;
2262 int bdrv_commit_all(void)
2264 BlockDriverState *bs;
2266 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
2267 AioContext *aio_context = bdrv_get_aio_context(bs);
2269 aio_context_acquire(aio_context);
2270 if (bs->drv && bs->backing_hd) {
2271 int ret = bdrv_commit(bs);
2272 if (ret < 0) {
2273 aio_context_release(aio_context);
2274 return ret;
2277 aio_context_release(aio_context);
2279 return 0;
2283 * Remove an active request from the tracked requests list
2285 * This function should be called when a tracked request is completing.
2287 static void tracked_request_end(BdrvTrackedRequest *req)
2289 if (req->serialising) {
2290 req->bs->serialising_in_flight--;
2293 QLIST_REMOVE(req, list);
2294 qemu_co_queue_restart_all(&req->wait_queue);
2298 * Add an active request to the tracked requests list
2300 static void tracked_request_begin(BdrvTrackedRequest *req,
2301 BlockDriverState *bs,
2302 int64_t offset,
2303 unsigned int bytes, bool is_write)
2305 *req = (BdrvTrackedRequest){
2306 .bs = bs,
2307 .offset = offset,
2308 .bytes = bytes,
2309 .is_write = is_write,
2310 .co = qemu_coroutine_self(),
2311 .serialising = false,
2312 .overlap_offset = offset,
2313 .overlap_bytes = bytes,
2316 qemu_co_queue_init(&req->wait_queue);
2318 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
2321 static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align)
2323 int64_t overlap_offset = req->offset & ~(align - 1);
2324 unsigned int overlap_bytes = ROUND_UP(req->offset + req->bytes, align)
2325 - overlap_offset;
2327 if (!req->serialising) {
2328 req->bs->serialising_in_flight++;
2329 req->serialising = true;
2332 req->overlap_offset = MIN(req->overlap_offset, overlap_offset);
2333 req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes);
2337 * Round a region to cluster boundaries
2339 void bdrv_round_to_clusters(BlockDriverState *bs,
2340 int64_t sector_num, int nb_sectors,
2341 int64_t *cluster_sector_num,
2342 int *cluster_nb_sectors)
2344 BlockDriverInfo bdi;
2346 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
2347 *cluster_sector_num = sector_num;
2348 *cluster_nb_sectors = nb_sectors;
2349 } else {
2350 int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
2351 *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
2352 *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
2353 nb_sectors, c);
2357 static int bdrv_get_cluster_size(BlockDriverState *bs)
2359 BlockDriverInfo bdi;
2360 int ret;
2362 ret = bdrv_get_info(bs, &bdi);
2363 if (ret < 0 || bdi.cluster_size == 0) {
2364 return bs->request_alignment;
2365 } else {
2366 return bdi.cluster_size;
2370 static bool tracked_request_overlaps(BdrvTrackedRequest *req,
2371 int64_t offset, unsigned int bytes)
2373 /* aaaa bbbb */
2374 if (offset >= req->overlap_offset + req->overlap_bytes) {
2375 return false;
2377 /* bbbb aaaa */
2378 if (req->overlap_offset >= offset + bytes) {
2379 return false;
2381 return true;
2384 static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
2386 BlockDriverState *bs = self->bs;
2387 BdrvTrackedRequest *req;
2388 bool retry;
2389 bool waited = false;
2391 if (!bs->serialising_in_flight) {
2392 return false;
2395 do {
2396 retry = false;
2397 QLIST_FOREACH(req, &bs->tracked_requests, list) {
2398 if (req == self || (!req->serialising && !self->serialising)) {
2399 continue;
2401 if (tracked_request_overlaps(req, self->overlap_offset,
2402 self->overlap_bytes))
2404 /* Hitting this means there was a reentrant request, for
2405 * example, a block driver issuing nested requests. This must
2406 * never happen since it means deadlock.
2408 assert(qemu_coroutine_self() != req->co);
2410 /* If the request is already (indirectly) waiting for us, or
2411 * will wait for us as soon as it wakes up, then just go on
2412 * (instead of producing a deadlock in the former case). */
2413 if (!req->waiting_for) {
2414 self->waiting_for = req;
2415 qemu_co_queue_wait(&req->wait_queue);
2416 self->waiting_for = NULL;
2417 retry = true;
2418 waited = true;
2419 break;
2423 } while (retry);
2425 return waited;
2429 * Return values:
2430 * 0 - success
2431 * -EINVAL - backing format specified, but no file
2432 * -ENOSPC - can't update the backing file because no space is left in the
2433 * image file header
2434 * -ENOTSUP - format driver doesn't support changing the backing file
2436 int bdrv_change_backing_file(BlockDriverState *bs,
2437 const char *backing_file, const char *backing_fmt)
2439 BlockDriver *drv = bs->drv;
2440 int ret;
2442 /* Backing file format doesn't make sense without a backing file */
2443 if (backing_fmt && !backing_file) {
2444 return -EINVAL;
2447 if (drv->bdrv_change_backing_file != NULL) {
2448 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2449 } else {
2450 ret = -ENOTSUP;
2453 if (ret == 0) {
2454 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2455 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2457 return ret;
2461 * Finds the image layer in the chain that has 'bs' as its backing file.
2463 * active is the current topmost image.
2465 * Returns NULL if bs is not found in active's image chain,
2466 * or if active == bs.
2468 * Returns the bottommost base image if bs == NULL.
2470 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
2471 BlockDriverState *bs)
2473 while (active && bs != active->backing_hd) {
2474 active = active->backing_hd;
2477 return active;
2480 /* Given a BDS, searches for the base layer. */
2481 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
2483 return bdrv_find_overlay(bs, NULL);
2486 typedef struct BlkIntermediateStates {
2487 BlockDriverState *bs;
2488 QSIMPLEQ_ENTRY(BlkIntermediateStates) entry;
2489 } BlkIntermediateStates;
2493 * Drops images above 'base' up to and including 'top', and sets the image
2494 * above 'top' to have base as its backing file.
2496 * Requires that the overlay to 'top' is opened r/w, so that the backing file
2497 * information in 'bs' can be properly updated.
2499 * E.g., this will convert the following chain:
2500 * bottom <- base <- intermediate <- top <- active
2502 * to
2504 * bottom <- base <- active
2506 * It is allowed for bottom==base, in which case it converts:
2508 * base <- intermediate <- top <- active
2510 * to
2512 * base <- active
2514 * If backing_file_str is non-NULL, it will be used when modifying top's
2515 * overlay image metadata.
2517 * Error conditions:
2518 * if active == top, that is considered an error
2521 int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
2522 BlockDriverState *base, const char *backing_file_str)
2524 BlockDriverState *intermediate;
2525 BlockDriverState *base_bs = NULL;
2526 BlockDriverState *new_top_bs = NULL;
2527 BlkIntermediateStates *intermediate_state, *next;
2528 int ret = -EIO;
2530 QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete;
2531 QSIMPLEQ_INIT(&states_to_delete);
2533 if (!top->drv || !base->drv) {
2534 goto exit;
2537 new_top_bs = bdrv_find_overlay(active, top);
2539 if (new_top_bs == NULL) {
2540 /* we could not find the image above 'top', this is an error */
2541 goto exit;
2544 /* special case of new_top_bs->backing_hd already pointing to base - nothing
2545 * to do, no intermediate images */
2546 if (new_top_bs->backing_hd == base) {
2547 ret = 0;
2548 goto exit;
2551 intermediate = top;
2553 /* now we will go down through the list, and add each BDS we find
2554 * into our deletion queue, until we hit the 'base'
2556 while (intermediate) {
2557 intermediate_state = g_new0(BlkIntermediateStates, 1);
2558 intermediate_state->bs = intermediate;
2559 QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry);
2561 if (intermediate->backing_hd == base) {
2562 base_bs = intermediate->backing_hd;
2563 break;
2565 intermediate = intermediate->backing_hd;
2567 if (base_bs == NULL) {
2568 /* something went wrong, we did not end at the base. safely
2569 * unravel everything, and exit with error */
2570 goto exit;
2573 /* success - we can delete the intermediate states, and link top->base */
2574 backing_file_str = backing_file_str ? backing_file_str : base_bs->filename;
2575 ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
2576 base_bs->drv ? base_bs->drv->format_name : "");
2577 if (ret) {
2578 goto exit;
2580 bdrv_set_backing_hd(new_top_bs, base_bs);
2582 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
2583 /* so that bdrv_close() does not recursively close the chain */
2584 bdrv_set_backing_hd(intermediate_state->bs, NULL);
2585 bdrv_unref(intermediate_state->bs);
2587 ret = 0;
2589 exit:
2590 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
2591 g_free(intermediate_state);
2593 return ret;
2597 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
2598 size_t size)
2600 int64_t len;
2602 if (size > INT_MAX) {
2603 return -EIO;
2606 if (!bdrv_is_inserted(bs))
2607 return -ENOMEDIUM;
2609 if (bs->growable)
2610 return 0;
2612 len = bdrv_getlength(bs);
2614 if (offset < 0)
2615 return -EIO;
2617 if ((offset > len) || (len - offset < size))
2618 return -EIO;
2620 return 0;
2623 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
2624 int nb_sectors)
2626 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
2627 return -EIO;
2630 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
2631 nb_sectors * BDRV_SECTOR_SIZE);
2634 typedef struct RwCo {
2635 BlockDriverState *bs;
2636 int64_t offset;
2637 QEMUIOVector *qiov;
2638 bool is_write;
2639 int ret;
2640 BdrvRequestFlags flags;
2641 } RwCo;
2643 static void coroutine_fn bdrv_rw_co_entry(void *opaque)
2645 RwCo *rwco = opaque;
2647 if (!rwco->is_write) {
2648 rwco->ret = bdrv_co_do_preadv(rwco->bs, rwco->offset,
2649 rwco->qiov->size, rwco->qiov,
2650 rwco->flags);
2651 } else {
2652 rwco->ret = bdrv_co_do_pwritev(rwco->bs, rwco->offset,
2653 rwco->qiov->size, rwco->qiov,
2654 rwco->flags);
2659 * Process a vectored synchronous request using coroutines
2661 static int bdrv_prwv_co(BlockDriverState *bs, int64_t offset,
2662 QEMUIOVector *qiov, bool is_write,
2663 BdrvRequestFlags flags)
2665 Coroutine *co;
2666 RwCo rwco = {
2667 .bs = bs,
2668 .offset = offset,
2669 .qiov = qiov,
2670 .is_write = is_write,
2671 .ret = NOT_DONE,
2672 .flags = flags,
2676 * In sync call context, when the vcpu is blocked, this throttling timer
2677 * will not fire; so the I/O throttling function has to be disabled here
2678 * if it has been enabled.
2680 if (bs->io_limits_enabled) {
2681 fprintf(stderr, "Disabling I/O throttling on '%s' due "
2682 "to synchronous I/O.\n", bdrv_get_device_name(bs));
2683 bdrv_io_limits_disable(bs);
2686 if (qemu_in_coroutine()) {
2687 /* Fast-path if already in coroutine context */
2688 bdrv_rw_co_entry(&rwco);
2689 } else {
2690 AioContext *aio_context = bdrv_get_aio_context(bs);
2692 co = qemu_coroutine_create(bdrv_rw_co_entry);
2693 qemu_coroutine_enter(co, &rwco);
2694 while (rwco.ret == NOT_DONE) {
2695 aio_poll(aio_context, true);
2698 return rwco.ret;
2702 * Process a synchronous request using coroutines
2704 static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
2705 int nb_sectors, bool is_write, BdrvRequestFlags flags)
2707 QEMUIOVector qiov;
2708 struct iovec iov = {
2709 .iov_base = (void *)buf,
2710 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
2713 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
2714 return -EINVAL;
2717 qemu_iovec_init_external(&qiov, &iov, 1);
2718 return bdrv_prwv_co(bs, sector_num << BDRV_SECTOR_BITS,
2719 &qiov, is_write, flags);
2722 /* return < 0 if error. See bdrv_write() for the return codes */
2723 int bdrv_read(BlockDriverState *bs, int64_t sector_num,
2724 uint8_t *buf, int nb_sectors)
2726 return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0);
2729 /* Just like bdrv_read(), but with I/O throttling temporarily disabled */
2730 int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num,
2731 uint8_t *buf, int nb_sectors)
2733 bool enabled;
2734 int ret;
2736 enabled = bs->io_limits_enabled;
2737 bs->io_limits_enabled = false;
2738 ret = bdrv_read(bs, sector_num, buf, nb_sectors);
2739 bs->io_limits_enabled = enabled;
2740 return ret;
2743 /* Return < 0 if error. Important errors are:
2744 -EIO generic I/O error (may happen for all errors)
2745 -ENOMEDIUM No media inserted.
2746 -EINVAL Invalid sector number or nb_sectors
2747 -EACCES Trying to write a read-only device
2749 int bdrv_write(BlockDriverState *bs, int64_t sector_num,
2750 const uint8_t *buf, int nb_sectors)
2752 return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
2755 int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num,
2756 int nb_sectors, BdrvRequestFlags flags)
2758 return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true,
2759 BDRV_REQ_ZERO_WRITE | flags);
2763 * Completely zero out a block device with the help of bdrv_write_zeroes.
2764 * The operation is sped up by checking the block status and only writing
2765 * zeroes to the device if they currently do not return zeroes. Optional
2766 * flags are passed through to bdrv_write_zeroes (e.g. BDRV_REQ_MAY_UNMAP).
2768 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
2770 int bdrv_make_zero(BlockDriverState *bs, BdrvRequestFlags flags)
2772 int64_t target_sectors, ret, nb_sectors, sector_num = 0;
2773 int n;
2775 target_sectors = bdrv_nb_sectors(bs);
2776 if (target_sectors < 0) {
2777 return target_sectors;
2780 for (;;) {
2781 nb_sectors = target_sectors - sector_num;
2782 if (nb_sectors <= 0) {
2783 return 0;
2785 if (nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
2786 nb_sectors = INT_MAX / BDRV_SECTOR_SIZE;
2788 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &n);
2789 if (ret < 0) {
2790 error_report("error getting block status at sector %" PRId64 ": %s",
2791 sector_num, strerror(-ret));
2792 return ret;
2794 if (ret & BDRV_BLOCK_ZERO) {
2795 sector_num += n;
2796 continue;
2798 ret = bdrv_write_zeroes(bs, sector_num, n, flags);
2799 if (ret < 0) {
2800 error_report("error writing zeroes at sector %" PRId64 ": %s",
2801 sector_num, strerror(-ret));
2802 return ret;
2804 sector_num += n;
2808 int bdrv_pread(BlockDriverState *bs, int64_t offset, void *buf, int bytes)
2810 QEMUIOVector qiov;
2811 struct iovec iov = {
2812 .iov_base = (void *)buf,
2813 .iov_len = bytes,
2815 int ret;
2817 if (bytes < 0) {
2818 return -EINVAL;
2821 qemu_iovec_init_external(&qiov, &iov, 1);
2822 ret = bdrv_prwv_co(bs, offset, &qiov, false, 0);
2823 if (ret < 0) {
2824 return ret;
2827 return bytes;
2830 int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov)
2832 int ret;
2834 ret = bdrv_prwv_co(bs, offset, qiov, true, 0);
2835 if (ret < 0) {
2836 return ret;
2839 return qiov->size;
2842 int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
2843 const void *buf, int bytes)
2845 QEMUIOVector qiov;
2846 struct iovec iov = {
2847 .iov_base = (void *) buf,
2848 .iov_len = bytes,
2851 if (bytes < 0) {
2852 return -EINVAL;
2855 qemu_iovec_init_external(&qiov, &iov, 1);
2856 return bdrv_pwritev(bs, offset, &qiov);
2860 * Writes to the file and ensures that no writes are reordered across this
2861 * request (acts as a barrier)
2863 * Returns 0 on success, -errno in error cases.
2865 int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
2866 const void *buf, int count)
2868 int ret;
2870 ret = bdrv_pwrite(bs, offset, buf, count);
2871 if (ret < 0) {
2872 return ret;
2875 /* No flush needed for cache modes that already do it */
2876 if (bs->enable_write_cache) {
2877 bdrv_flush(bs);
2880 return 0;
2883 static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
2884 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2886 /* Perform I/O through a temporary buffer so that users who scribble over
2887 * their read buffer while the operation is in progress do not end up
2888 * modifying the image file. This is critical for zero-copy guest I/O
2889 * where anything might happen inside guest memory.
2891 void *bounce_buffer;
2893 BlockDriver *drv = bs->drv;
2894 struct iovec iov;
2895 QEMUIOVector bounce_qiov;
2896 int64_t cluster_sector_num;
2897 int cluster_nb_sectors;
2898 size_t skip_bytes;
2899 int ret;
2901 /* Cover entire cluster so no additional backing file I/O is required when
2902 * allocating cluster in the image file.
2904 bdrv_round_to_clusters(bs, sector_num, nb_sectors,
2905 &cluster_sector_num, &cluster_nb_sectors);
2907 trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2908 cluster_sector_num, cluster_nb_sectors);
2910 iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
2911 iov.iov_base = bounce_buffer = qemu_try_blockalign(bs, iov.iov_len);
2912 if (bounce_buffer == NULL) {
2913 ret = -ENOMEM;
2914 goto err;
2917 qemu_iovec_init_external(&bounce_qiov, &iov, 1);
2919 ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2920 &bounce_qiov);
2921 if (ret < 0) {
2922 goto err;
2925 if (drv->bdrv_co_write_zeroes &&
2926 buffer_is_zero(bounce_buffer, iov.iov_len)) {
2927 ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
2928 cluster_nb_sectors, 0);
2929 } else {
2930 /* This does not change the data on the disk, it is not necessary
2931 * to flush even in cache=writethrough mode.
2933 ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
2934 &bounce_qiov);
2937 if (ret < 0) {
2938 /* It might be okay to ignore write errors for guest requests. If this
2939 * is a deliberate copy-on-read then we don't want to ignore the error.
2940 * Simply report it in all cases.
2942 goto err;
2945 skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
2946 qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2947 nb_sectors * BDRV_SECTOR_SIZE);
2949 err:
2950 qemu_vfree(bounce_buffer);
2951 return ret;
2955 * Forwards an already correctly aligned request to the BlockDriver. This
2956 * handles copy on read and zeroing after EOF; any other features must be
2957 * implemented by the caller.
2959 static int coroutine_fn bdrv_aligned_preadv(BlockDriverState *bs,
2960 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
2961 int64_t align, QEMUIOVector *qiov, int flags)
2963 BlockDriver *drv = bs->drv;
2964 int ret;
2966 int64_t sector_num = offset >> BDRV_SECTOR_BITS;
2967 unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
2969 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
2970 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
2971 assert(!qiov || bytes == qiov->size);
2973 /* Handle Copy on Read and associated serialisation */
2974 if (flags & BDRV_REQ_COPY_ON_READ) {
2975 /* If we touch the same cluster it counts as an overlap. This
2976 * guarantees that allocating writes will be serialized and not race
2977 * with each other for the same cluster. For example, in copy-on-read
2978 * it ensures that the CoR read and write operations are atomic and
2979 * guest writes cannot interleave between them. */
2980 mark_request_serialising(req, bdrv_get_cluster_size(bs));
2983 wait_serialising_requests(req);
2985 if (flags & BDRV_REQ_COPY_ON_READ) {
2986 int pnum;
2988 ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum);
2989 if (ret < 0) {
2990 goto out;
2993 if (!ret || pnum != nb_sectors) {
2994 ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
2995 goto out;
2999 /* Forward the request to the BlockDriver */
3000 if (!(bs->zero_beyond_eof && bs->growable)) {
3001 ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
3002 } else {
3003 /* Read zeros after EOF of growable BDSes */
3004 int64_t total_sectors, max_nb_sectors;
3006 total_sectors = bdrv_nb_sectors(bs);
3007 if (total_sectors < 0) {
3008 ret = total_sectors;
3009 goto out;
3012 max_nb_sectors = ROUND_UP(MAX(0, total_sectors - sector_num),
3013 align >> BDRV_SECTOR_BITS);
3014 if (max_nb_sectors > 0) {
3015 QEMUIOVector local_qiov;
3016 size_t local_sectors;
3018 max_nb_sectors = MIN(max_nb_sectors, SIZE_MAX / BDRV_SECTOR_BITS);
3019 local_sectors = MIN(max_nb_sectors, nb_sectors);
3021 qemu_iovec_init(&local_qiov, qiov->niov);
3022 qemu_iovec_concat(&local_qiov, qiov, 0,
3023 local_sectors * BDRV_SECTOR_SIZE);
3025 ret = drv->bdrv_co_readv(bs, sector_num, local_sectors,
3026 &local_qiov);
3028 qemu_iovec_destroy(&local_qiov);
3029 } else {
3030 ret = 0;
3033 /* Reading beyond end of file is supposed to produce zeroes */
3034 if (ret == 0 && total_sectors < sector_num + nb_sectors) {
3035 uint64_t offset = MAX(0, total_sectors - sector_num);
3036 uint64_t bytes = (sector_num + nb_sectors - offset) *
3037 BDRV_SECTOR_SIZE;
3038 qemu_iovec_memset(qiov, offset * BDRV_SECTOR_SIZE, 0, bytes);
3042 out:
3043 return ret;
3047 * Handle a read request in coroutine context
3049 static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs,
3050 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
3051 BdrvRequestFlags flags)
3053 BlockDriver *drv = bs->drv;
3054 BdrvTrackedRequest req;
3056 /* TODO Lift BDRV_SECTOR_SIZE restriction in BlockDriver interface */
3057 uint64_t align = MAX(BDRV_SECTOR_SIZE, bs->request_alignment);
3058 uint8_t *head_buf = NULL;
3059 uint8_t *tail_buf = NULL;
3060 QEMUIOVector local_qiov;
3061 bool use_local_qiov = false;
3062 int ret;
3064 if (!drv) {
3065 return -ENOMEDIUM;
3067 if (bdrv_check_byte_request(bs, offset, bytes)) {
3068 return -EIO;
3071 if (bs->copy_on_read) {
3072 flags |= BDRV_REQ_COPY_ON_READ;
3075 /* throttling disk I/O */
3076 if (bs->io_limits_enabled) {
3077 bdrv_io_limits_intercept(bs, bytes, false);
3080 /* Align read if necessary by padding qiov */
3081 if (offset & (align - 1)) {
3082 head_buf = qemu_blockalign(bs, align);
3083 qemu_iovec_init(&local_qiov, qiov->niov + 2);
3084 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
3085 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3086 use_local_qiov = true;
3088 bytes += offset & (align - 1);
3089 offset = offset & ~(align - 1);
3092 if ((offset + bytes) & (align - 1)) {
3093 if (!use_local_qiov) {
3094 qemu_iovec_init(&local_qiov, qiov->niov + 1);
3095 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3096 use_local_qiov = true;
3098 tail_buf = qemu_blockalign(bs, align);
3099 qemu_iovec_add(&local_qiov, tail_buf,
3100 align - ((offset + bytes) & (align - 1)));
3102 bytes = ROUND_UP(bytes, align);
3105 tracked_request_begin(&req, bs, offset, bytes, false);
3106 ret = bdrv_aligned_preadv(bs, &req, offset, bytes, align,
3107 use_local_qiov ? &local_qiov : qiov,
3108 flags);
3109 tracked_request_end(&req);
3111 if (use_local_qiov) {
3112 qemu_iovec_destroy(&local_qiov);
3113 qemu_vfree(head_buf);
3114 qemu_vfree(tail_buf);
3117 return ret;
3120 static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
3121 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
3122 BdrvRequestFlags flags)
3124 if (nb_sectors < 0 || nb_sectors > (UINT_MAX >> BDRV_SECTOR_BITS)) {
3125 return -EINVAL;
3128 return bdrv_co_do_preadv(bs, sector_num << BDRV_SECTOR_BITS,
3129 nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
3132 int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
3133 int nb_sectors, QEMUIOVector *qiov)
3135 trace_bdrv_co_readv(bs, sector_num, nb_sectors);
3137 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
3140 int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
3141 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
3143 trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
3145 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
3146 BDRV_REQ_COPY_ON_READ);
3149 /* if no limit is specified in the BlockLimits use a default
3150 * of 32768 512-byte sectors (16 MiB) per request.
3152 #define MAX_WRITE_ZEROES_DEFAULT 32768
3154 static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
3155 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
3157 BlockDriver *drv = bs->drv;
3158 QEMUIOVector qiov;
3159 struct iovec iov = {0};
3160 int ret = 0;
3162 int max_write_zeroes = bs->bl.max_write_zeroes ?
3163 bs->bl.max_write_zeroes : MAX_WRITE_ZEROES_DEFAULT;
3165 while (nb_sectors > 0 && !ret) {
3166 int num = nb_sectors;
3168 /* Align request. Block drivers can expect the "bulk" of the request
3169 * to be aligned.
3171 if (bs->bl.write_zeroes_alignment
3172 && num > bs->bl.write_zeroes_alignment) {
3173 if (sector_num % bs->bl.write_zeroes_alignment != 0) {
3174 /* Make a small request up to the first aligned sector. */
3175 num = bs->bl.write_zeroes_alignment;
3176 num -= sector_num % bs->bl.write_zeroes_alignment;
3177 } else if ((sector_num + num) % bs->bl.write_zeroes_alignment != 0) {
3178 /* Shorten the request to the last aligned sector. num cannot
3179 * underflow because num > bs->bl.write_zeroes_alignment.
3181 num -= (sector_num + num) % bs->bl.write_zeroes_alignment;
3185 /* limit request size */
3186 if (num > max_write_zeroes) {
3187 num = max_write_zeroes;
3190 ret = -ENOTSUP;
3191 /* First try the efficient write zeroes operation */
3192 if (drv->bdrv_co_write_zeroes) {
3193 ret = drv->bdrv_co_write_zeroes(bs, sector_num, num, flags);
3196 if (ret == -ENOTSUP) {
3197 /* Fall back to bounce buffer if write zeroes is unsupported */
3198 iov.iov_len = num * BDRV_SECTOR_SIZE;
3199 if (iov.iov_base == NULL) {
3200 iov.iov_base = qemu_try_blockalign(bs, num * BDRV_SECTOR_SIZE);
3201 if (iov.iov_base == NULL) {
3202 ret = -ENOMEM;
3203 goto fail;
3205 memset(iov.iov_base, 0, num * BDRV_SECTOR_SIZE);
3207 qemu_iovec_init_external(&qiov, &iov, 1);
3209 ret = drv->bdrv_co_writev(bs, sector_num, num, &qiov);
3211 /* Keep bounce buffer around if it is big enough for all
3212 * all future requests.
3214 if (num < max_write_zeroes) {
3215 qemu_vfree(iov.iov_base);
3216 iov.iov_base = NULL;
3220 sector_num += num;
3221 nb_sectors -= num;
3224 fail:
3225 qemu_vfree(iov.iov_base);
3226 return ret;
3230 * Forwards an already correctly aligned write request to the BlockDriver.
3232 static int coroutine_fn bdrv_aligned_pwritev(BlockDriverState *bs,
3233 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
3234 QEMUIOVector *qiov, int flags)
3236 BlockDriver *drv = bs->drv;
3237 bool waited;
3238 int ret;
3240 int64_t sector_num = offset >> BDRV_SECTOR_BITS;
3241 unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
3243 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
3244 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
3245 assert(!qiov || bytes == qiov->size);
3247 waited = wait_serialising_requests(req);
3248 assert(!waited || !req->serialising);
3249 assert(req->overlap_offset <= offset);
3250 assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);
3252 ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req);
3254 if (!ret && bs->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF &&
3255 !(flags & BDRV_REQ_ZERO_WRITE) && drv->bdrv_co_write_zeroes &&
3256 qemu_iovec_is_zero(qiov)) {
3257 flags |= BDRV_REQ_ZERO_WRITE;
3258 if (bs->detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP) {
3259 flags |= BDRV_REQ_MAY_UNMAP;
3263 if (ret < 0) {
3264 /* Do nothing, write notifier decided to fail this request */
3265 } else if (flags & BDRV_REQ_ZERO_WRITE) {
3266 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_ZERO);
3267 ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors, flags);
3268 } else {
3269 BLKDBG_EVENT(bs, BLKDBG_PWRITEV);
3270 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
3272 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_DONE);
3274 if (ret == 0 && !bs->enable_write_cache) {
3275 ret = bdrv_co_flush(bs);
3278 bdrv_set_dirty(bs, sector_num, nb_sectors);
3280 block_acct_highest_sector(&bs->stats, sector_num, nb_sectors);
3282 if (bs->growable && ret >= 0) {
3283 bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors);
3286 return ret;
3290 * Handle a write request in coroutine context
3292 static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs,
3293 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
3294 BdrvRequestFlags flags)
3296 BdrvTrackedRequest req;
3297 /* TODO Lift BDRV_SECTOR_SIZE restriction in BlockDriver interface */
3298 uint64_t align = MAX(BDRV_SECTOR_SIZE, bs->request_alignment);
3299 uint8_t *head_buf = NULL;
3300 uint8_t *tail_buf = NULL;
3301 QEMUIOVector local_qiov;
3302 bool use_local_qiov = false;
3303 int ret;
3305 if (!bs->drv) {
3306 return -ENOMEDIUM;
3308 if (bs->read_only) {
3309 return -EACCES;
3311 if (bdrv_check_byte_request(bs, offset, bytes)) {
3312 return -EIO;
3315 /* throttling disk I/O */
3316 if (bs->io_limits_enabled) {
3317 bdrv_io_limits_intercept(bs, bytes, true);
3321 * Align write if necessary by performing a read-modify-write cycle.
3322 * Pad qiov with the read parts and be sure to have a tracked request not
3323 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
3325 tracked_request_begin(&req, bs, offset, bytes, true);
3327 if (offset & (align - 1)) {
3328 QEMUIOVector head_qiov;
3329 struct iovec head_iov;
3331 mark_request_serialising(&req, align);
3332 wait_serialising_requests(&req);
3334 head_buf = qemu_blockalign(bs, align);
3335 head_iov = (struct iovec) {
3336 .iov_base = head_buf,
3337 .iov_len = align,
3339 qemu_iovec_init_external(&head_qiov, &head_iov, 1);
3341 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_HEAD);
3342 ret = bdrv_aligned_preadv(bs, &req, offset & ~(align - 1), align,
3343 align, &head_qiov, 0);
3344 if (ret < 0) {
3345 goto fail;
3347 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
3349 qemu_iovec_init(&local_qiov, qiov->niov + 2);
3350 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
3351 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3352 use_local_qiov = true;
3354 bytes += offset & (align - 1);
3355 offset = offset & ~(align - 1);
3358 if ((offset + bytes) & (align - 1)) {
3359 QEMUIOVector tail_qiov;
3360 struct iovec tail_iov;
3361 size_t tail_bytes;
3362 bool waited;
3364 mark_request_serialising(&req, align);
3365 waited = wait_serialising_requests(&req);
3366 assert(!waited || !use_local_qiov);
3368 tail_buf = qemu_blockalign(bs, align);
3369 tail_iov = (struct iovec) {
3370 .iov_base = tail_buf,
3371 .iov_len = align,
3373 qemu_iovec_init_external(&tail_qiov, &tail_iov, 1);
3375 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_TAIL);
3376 ret = bdrv_aligned_preadv(bs, &req, (offset + bytes) & ~(align - 1), align,
3377 align, &tail_qiov, 0);
3378 if (ret < 0) {
3379 goto fail;
3381 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
3383 if (!use_local_qiov) {
3384 qemu_iovec_init(&local_qiov, qiov->niov + 1);
3385 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3386 use_local_qiov = true;
3389 tail_bytes = (offset + bytes) & (align - 1);
3390 qemu_iovec_add(&local_qiov, tail_buf + tail_bytes, align - tail_bytes);
3392 bytes = ROUND_UP(bytes, align);
3395 ret = bdrv_aligned_pwritev(bs, &req, offset, bytes,
3396 use_local_qiov ? &local_qiov : qiov,
3397 flags);
3399 fail:
3400 tracked_request_end(&req);
3402 if (use_local_qiov) {
3403 qemu_iovec_destroy(&local_qiov);
3405 qemu_vfree(head_buf);
3406 qemu_vfree(tail_buf);
3408 return ret;
3411 static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
3412 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
3413 BdrvRequestFlags flags)
3415 if (nb_sectors < 0 || nb_sectors > (INT_MAX >> BDRV_SECTOR_BITS)) {
3416 return -EINVAL;
3419 return bdrv_co_do_pwritev(bs, sector_num << BDRV_SECTOR_BITS,
3420 nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
3423 int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
3424 int nb_sectors, QEMUIOVector *qiov)
3426 trace_bdrv_co_writev(bs, sector_num, nb_sectors);
3428 return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
3431 int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
3432 int64_t sector_num, int nb_sectors,
3433 BdrvRequestFlags flags)
3435 trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors, flags);
3437 if (!(bs->open_flags & BDRV_O_UNMAP)) {
3438 flags &= ~BDRV_REQ_MAY_UNMAP;
3441 return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
3442 BDRV_REQ_ZERO_WRITE | flags);
3446 * Truncate file to 'offset' bytes (needed only for file protocols)
3448 int bdrv_truncate(BlockDriverState *bs, int64_t offset)
3450 BlockDriver *drv = bs->drv;
3451 int ret;
3452 if (!drv)
3453 return -ENOMEDIUM;
3454 if (!drv->bdrv_truncate)
3455 return -ENOTSUP;
3456 if (bs->read_only)
3457 return -EACCES;
3459 ret = drv->bdrv_truncate(bs, offset);
3460 if (ret == 0) {
3461 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3462 if (bs->blk) {
3463 blk_dev_resize_cb(bs->blk);
3466 return ret;
3470 * Length of a allocated file in bytes. Sparse files are counted by actual
3471 * allocated space. Return < 0 if error or unknown.
3473 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3475 BlockDriver *drv = bs->drv;
3476 if (!drv) {
3477 return -ENOMEDIUM;
3479 if (drv->bdrv_get_allocated_file_size) {
3480 return drv->bdrv_get_allocated_file_size(bs);
3482 if (bs->file) {
3483 return bdrv_get_allocated_file_size(bs->file);
3485 return -ENOTSUP;
3489 * Return number of sectors on success, -errno on error.
3491 int64_t bdrv_nb_sectors(BlockDriverState *bs)
3493 BlockDriver *drv = bs->drv;
3495 if (!drv)
3496 return -ENOMEDIUM;
3498 if (drv->has_variable_length) {
3499 int ret = refresh_total_sectors(bs, bs->total_sectors);
3500 if (ret < 0) {
3501 return ret;
3504 return bs->total_sectors;
3508 * Return length in bytes on success, -errno on error.
3509 * The length is always a multiple of BDRV_SECTOR_SIZE.
3511 int64_t bdrv_getlength(BlockDriverState *bs)
3513 int64_t ret = bdrv_nb_sectors(bs);
3515 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
3518 /* return 0 as number of sectors if no device present or error */
3519 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3521 int64_t nb_sectors = bdrv_nb_sectors(bs);
3523 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3526 void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error,
3527 BlockdevOnError on_write_error)
3529 bs->on_read_error = on_read_error;
3530 bs->on_write_error = on_write_error;
3533 BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read)
3535 return is_read ? bs->on_read_error : bs->on_write_error;
3538 BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error)
3540 BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error;
3542 switch (on_err) {
3543 case BLOCKDEV_ON_ERROR_ENOSPC:
3544 return (error == ENOSPC) ?
3545 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT;
3546 case BLOCKDEV_ON_ERROR_STOP:
3547 return BLOCK_ERROR_ACTION_STOP;
3548 case BLOCKDEV_ON_ERROR_REPORT:
3549 return BLOCK_ERROR_ACTION_REPORT;
3550 case BLOCKDEV_ON_ERROR_IGNORE:
3551 return BLOCK_ERROR_ACTION_IGNORE;
3552 default:
3553 abort();
3557 static void send_qmp_error_event(BlockDriverState *bs,
3558 BlockErrorAction action,
3559 bool is_read, int error)
3561 IoOperationType optype;
3563 optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE;
3564 qapi_event_send_block_io_error(bdrv_get_device_name(bs), optype, action,
3565 bdrv_iostatus_is_enabled(bs),
3566 error == ENOSPC, strerror(error),
3567 &error_abort);
3570 /* This is done by device models because, while the block layer knows
3571 * about the error, it does not know whether an operation comes from
3572 * the device or the block layer (from a job, for example).
3574 void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action,
3575 bool is_read, int error)
3577 assert(error >= 0);
3579 if (action == BLOCK_ERROR_ACTION_STOP) {
3580 /* First set the iostatus, so that "info block" returns an iostatus
3581 * that matches the events raised so far (an additional error iostatus
3582 * is fine, but not a lost one).
3584 bdrv_iostatus_set_err(bs, error);
3586 /* Then raise the request to stop the VM and the event.
3587 * qemu_system_vmstop_request_prepare has two effects. First,
3588 * it ensures that the STOP event always comes after the
3589 * BLOCK_IO_ERROR event. Second, it ensures that even if management
3590 * can observe the STOP event and do a "cont" before the STOP
3591 * event is issued, the VM will not stop. In this case, vm_start()
3592 * also ensures that the STOP/RESUME pair of events is emitted.
3594 qemu_system_vmstop_request_prepare();
3595 send_qmp_error_event(bs, action, is_read, error);
3596 qemu_system_vmstop_request(RUN_STATE_IO_ERROR);
3597 } else {
3598 send_qmp_error_event(bs, action, is_read, error);
3602 int bdrv_is_read_only(BlockDriverState *bs)
3604 return bs->read_only;
3607 int bdrv_is_sg(BlockDriverState *bs)
3609 return bs->sg;
3612 int bdrv_enable_write_cache(BlockDriverState *bs)
3614 return bs->enable_write_cache;
3617 void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
3619 bs->enable_write_cache = wce;
3621 /* so a reopen() will preserve wce */
3622 if (wce) {
3623 bs->open_flags |= BDRV_O_CACHE_WB;
3624 } else {
3625 bs->open_flags &= ~BDRV_O_CACHE_WB;
3629 int bdrv_is_encrypted(BlockDriverState *bs)
3631 if (bs->backing_hd && bs->backing_hd->encrypted)
3632 return 1;
3633 return bs->encrypted;
3636 int bdrv_key_required(BlockDriverState *bs)
3638 BlockDriverState *backing_hd = bs->backing_hd;
3640 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
3641 return 1;
3642 return (bs->encrypted && !bs->valid_key);
3645 int bdrv_set_key(BlockDriverState *bs, const char *key)
3647 int ret;
3648 if (bs->backing_hd && bs->backing_hd->encrypted) {
3649 ret = bdrv_set_key(bs->backing_hd, key);
3650 if (ret < 0)
3651 return ret;
3652 if (!bs->encrypted)
3653 return 0;
3655 if (!bs->encrypted) {
3656 return -EINVAL;
3657 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
3658 return -ENOMEDIUM;
3660 ret = bs->drv->bdrv_set_key(bs, key);
3661 if (ret < 0) {
3662 bs->valid_key = 0;
3663 } else if (!bs->valid_key) {
3664 bs->valid_key = 1;
3665 if (bs->blk) {
3666 /* call the change callback now, we skipped it on open */
3667 blk_dev_change_media_cb(bs->blk, true);
3670 return ret;
3673 const char *bdrv_get_format_name(BlockDriverState *bs)
3675 return bs->drv ? bs->drv->format_name : NULL;
3678 static int qsort_strcmp(const void *a, const void *b)
3680 return strcmp(a, b);
3683 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3684 void *opaque)
3686 BlockDriver *drv;
3687 int count = 0;
3688 int i;
3689 const char **formats = NULL;
3691 QLIST_FOREACH(drv, &bdrv_drivers, list) {
3692 if (drv->format_name) {
3693 bool found = false;
3694 int i = count;
3695 while (formats && i && !found) {
3696 found = !strcmp(formats[--i], drv->format_name);
3699 if (!found) {
3700 formats = g_renew(const char *, formats, count + 1);
3701 formats[count++] = drv->format_name;
3706 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3708 for (i = 0; i < count; i++) {
3709 it(opaque, formats[i]);
3712 g_free(formats);
3715 /* This function is to find block backend bs */
3716 /* TODO convert callers to blk_by_name(), then remove */
3717 BlockDriverState *bdrv_find(const char *name)
3719 BlockBackend *blk = blk_by_name(name);
3721 return blk ? blk_bs(blk) : NULL;
3724 /* This function is to find a node in the bs graph */
3725 BlockDriverState *bdrv_find_node(const char *node_name)
3727 BlockDriverState *bs;
3729 assert(node_name);
3731 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3732 if (!strcmp(node_name, bs->node_name)) {
3733 return bs;
3736 return NULL;
3739 /* Put this QMP function here so it can access the static graph_bdrv_states. */
3740 BlockDeviceInfoList *bdrv_named_nodes_list(void)
3742 BlockDeviceInfoList *list, *entry;
3743 BlockDriverState *bs;
3745 list = NULL;
3746 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3747 entry = g_malloc0(sizeof(*entry));
3748 entry->value = bdrv_block_device_info(bs);
3749 entry->next = list;
3750 list = entry;
3753 return list;
3756 BlockDriverState *bdrv_lookup_bs(const char *device,
3757 const char *node_name,
3758 Error **errp)
3760 BlockBackend *blk;
3761 BlockDriverState *bs;
3763 if (device) {
3764 blk = blk_by_name(device);
3766 if (blk) {
3767 return blk_bs(blk);
3771 if (node_name) {
3772 bs = bdrv_find_node(node_name);
3774 if (bs) {
3775 return bs;
3779 error_setg(errp, "Cannot find device=%s nor node_name=%s",
3780 device ? device : "",
3781 node_name ? node_name : "");
3782 return NULL;
3785 /* If 'base' is in the same chain as 'top', return true. Otherwise,
3786 * return false. If either argument is NULL, return false. */
3787 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
3789 while (top && top != base) {
3790 top = top->backing_hd;
3793 return top != NULL;
3796 BlockDriverState *bdrv_next(BlockDriverState *bs)
3798 if (!bs) {
3799 return QTAILQ_FIRST(&bdrv_states);
3801 return QTAILQ_NEXT(bs, device_list);
3804 /* TODO check what callers really want: bs->node_name or blk_name() */
3805 const char *bdrv_get_device_name(const BlockDriverState *bs)
3807 return bs->blk ? blk_name(bs->blk) : "";
3810 int bdrv_get_flags(BlockDriverState *bs)
3812 return bs->open_flags;
3815 int bdrv_flush_all(void)
3817 BlockDriverState *bs;
3818 int result = 0;
3820 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
3821 AioContext *aio_context = bdrv_get_aio_context(bs);
3822 int ret;
3824 aio_context_acquire(aio_context);
3825 ret = bdrv_flush(bs);
3826 if (ret < 0 && !result) {
3827 result = ret;
3829 aio_context_release(aio_context);
3832 return result;
3835 int bdrv_has_zero_init_1(BlockDriverState *bs)
3837 return 1;
3840 int bdrv_has_zero_init(BlockDriverState *bs)
3842 assert(bs->drv);
3844 /* If BS is a copy on write image, it is initialized to
3845 the contents of the base image, which may not be zeroes. */
3846 if (bs->backing_hd) {
3847 return 0;
3849 if (bs->drv->bdrv_has_zero_init) {
3850 return bs->drv->bdrv_has_zero_init(bs);
3853 /* safe default */
3854 return 0;
3857 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
3859 BlockDriverInfo bdi;
3861 if (bs->backing_hd) {
3862 return false;
3865 if (bdrv_get_info(bs, &bdi) == 0) {
3866 return bdi.unallocated_blocks_are_zero;
3869 return false;
3872 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
3874 BlockDriverInfo bdi;
3876 if (bs->backing_hd || !(bs->open_flags & BDRV_O_UNMAP)) {
3877 return false;
3880 if (bdrv_get_info(bs, &bdi) == 0) {
3881 return bdi.can_write_zeroes_with_unmap;
3884 return false;
3887 typedef struct BdrvCoGetBlockStatusData {
3888 BlockDriverState *bs;
3889 BlockDriverState *base;
3890 int64_t sector_num;
3891 int nb_sectors;
3892 int *pnum;
3893 int64_t ret;
3894 bool done;
3895 } BdrvCoGetBlockStatusData;
3898 * Returns the allocation status of the specified sectors.
3899 * Drivers not implementing the functionality are assumed to not support
3900 * backing files, hence all their sectors are reported as allocated.
3902 * If 'sector_num' is beyond the end of the disk image the return value is 0
3903 * and 'pnum' is set to 0.
3905 * 'pnum' is set to the number of sectors (including and immediately following
3906 * the specified sector) that are known to be in the same
3907 * allocated/unallocated state.
3909 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
3910 * beyond the end of the disk image it will be clamped.
3912 static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
3913 int64_t sector_num,
3914 int nb_sectors, int *pnum)
3916 int64_t total_sectors;
3917 int64_t n;
3918 int64_t ret, ret2;
3920 total_sectors = bdrv_nb_sectors(bs);
3921 if (total_sectors < 0) {
3922 return total_sectors;
3925 if (sector_num >= total_sectors) {
3926 *pnum = 0;
3927 return 0;
3930 n = total_sectors - sector_num;
3931 if (n < nb_sectors) {
3932 nb_sectors = n;
3935 if (!bs->drv->bdrv_co_get_block_status) {
3936 *pnum = nb_sectors;
3937 ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED;
3938 if (bs->drv->protocol_name) {
3939 ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE);
3941 return ret;
3944 ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum);
3945 if (ret < 0) {
3946 *pnum = 0;
3947 return ret;
3950 if (ret & BDRV_BLOCK_RAW) {
3951 assert(ret & BDRV_BLOCK_OFFSET_VALID);
3952 return bdrv_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS,
3953 *pnum, pnum);
3956 if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) {
3957 ret |= BDRV_BLOCK_ALLOCATED;
3960 if (!(ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO)) {
3961 if (bdrv_unallocated_blocks_are_zero(bs)) {
3962 ret |= BDRV_BLOCK_ZERO;
3963 } else if (bs->backing_hd) {
3964 BlockDriverState *bs2 = bs->backing_hd;
3965 int64_t nb_sectors2 = bdrv_nb_sectors(bs2);
3966 if (nb_sectors2 >= 0 && sector_num >= nb_sectors2) {
3967 ret |= BDRV_BLOCK_ZERO;
3972 if (bs->file &&
3973 (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
3974 (ret & BDRV_BLOCK_OFFSET_VALID)) {
3975 int file_pnum;
3977 ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS,
3978 *pnum, &file_pnum);
3979 if (ret2 >= 0) {
3980 /* Ignore errors. This is just providing extra information, it
3981 * is useful but not necessary.
3983 if (!file_pnum) {
3984 /* !file_pnum indicates an offset at or beyond the EOF; it is
3985 * perfectly valid for the format block driver to point to such
3986 * offsets, so catch it and mark everything as zero */
3987 ret |= BDRV_BLOCK_ZERO;
3988 } else {
3989 /* Limit request to the range reported by the protocol driver */
3990 *pnum = file_pnum;
3991 ret |= (ret2 & BDRV_BLOCK_ZERO);
3996 return ret;
3999 /* Coroutine wrapper for bdrv_get_block_status() */
4000 static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque)
4002 BdrvCoGetBlockStatusData *data = opaque;
4003 BlockDriverState *bs = data->bs;
4005 data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors,
4006 data->pnum);
4007 data->done = true;
4011 * Synchronous wrapper around bdrv_co_get_block_status().
4013 * See bdrv_co_get_block_status() for details.
4015 int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num,
4016 int nb_sectors, int *pnum)
4018 Coroutine *co;
4019 BdrvCoGetBlockStatusData data = {
4020 .bs = bs,
4021 .sector_num = sector_num,
4022 .nb_sectors = nb_sectors,
4023 .pnum = pnum,
4024 .done = false,
4027 if (qemu_in_coroutine()) {
4028 /* Fast-path if already in coroutine context */
4029 bdrv_get_block_status_co_entry(&data);
4030 } else {
4031 AioContext *aio_context = bdrv_get_aio_context(bs);
4033 co = qemu_coroutine_create(bdrv_get_block_status_co_entry);
4034 qemu_coroutine_enter(co, &data);
4035 while (!data.done) {
4036 aio_poll(aio_context, true);
4039 return data.ret;
4042 int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num,
4043 int nb_sectors, int *pnum)
4045 int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum);
4046 if (ret < 0) {
4047 return ret;
4049 return !!(ret & BDRV_BLOCK_ALLOCATED);
4053 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
4055 * Return true if the given sector is allocated in any image between
4056 * BASE and TOP (inclusive). BASE can be NULL to check if the given
4057 * sector is allocated in any image of the chain. Return false otherwise.
4059 * 'pnum' is set to the number of sectors (including and immediately following
4060 * the specified sector) that are known to be in the same
4061 * allocated/unallocated state.
4064 int bdrv_is_allocated_above(BlockDriverState *top,
4065 BlockDriverState *base,
4066 int64_t sector_num,
4067 int nb_sectors, int *pnum)
4069 BlockDriverState *intermediate;
4070 int ret, n = nb_sectors;
4072 intermediate = top;
4073 while (intermediate && intermediate != base) {
4074 int pnum_inter;
4075 ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors,
4076 &pnum_inter);
4077 if (ret < 0) {
4078 return ret;
4079 } else if (ret) {
4080 *pnum = pnum_inter;
4081 return 1;
4085 * [sector_num, nb_sectors] is unallocated on top but intermediate
4086 * might have
4088 * [sector_num+x, nr_sectors] allocated.
4090 if (n > pnum_inter &&
4091 (intermediate == top ||
4092 sector_num + pnum_inter < intermediate->total_sectors)) {
4093 n = pnum_inter;
4096 intermediate = intermediate->backing_hd;
4099 *pnum = n;
4100 return 0;
4103 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4105 if (bs->backing_hd && bs->backing_hd->encrypted)
4106 return bs->backing_file;
4107 else if (bs->encrypted)
4108 return bs->filename;
4109 else
4110 return NULL;
4113 void bdrv_get_backing_filename(BlockDriverState *bs,
4114 char *filename, int filename_size)
4116 pstrcpy(filename, filename_size, bs->backing_file);
4119 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
4120 const uint8_t *buf, int nb_sectors)
4122 BlockDriver *drv = bs->drv;
4123 if (!drv)
4124 return -ENOMEDIUM;
4125 if (!drv->bdrv_write_compressed)
4126 return -ENOTSUP;
4127 if (bdrv_check_request(bs, sector_num, nb_sectors))
4128 return -EIO;
4130 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4132 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
4135 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4137 BlockDriver *drv = bs->drv;
4138 if (!drv)
4139 return -ENOMEDIUM;
4140 if (!drv->bdrv_get_info)
4141 return -ENOTSUP;
4142 memset(bdi, 0, sizeof(*bdi));
4143 return drv->bdrv_get_info(bs, bdi);
4146 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4148 BlockDriver *drv = bs->drv;
4149 if (drv && drv->bdrv_get_specific_info) {
4150 return drv->bdrv_get_specific_info(bs);
4152 return NULL;
4155 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
4156 int64_t pos, int size)
4158 QEMUIOVector qiov;
4159 struct iovec iov = {
4160 .iov_base = (void *) buf,
4161 .iov_len = size,
4164 qemu_iovec_init_external(&qiov, &iov, 1);
4165 return bdrv_writev_vmstate(bs, &qiov, pos);
4168 int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
4170 BlockDriver *drv = bs->drv;
4172 if (!drv) {
4173 return -ENOMEDIUM;
4174 } else if (drv->bdrv_save_vmstate) {
4175 return drv->bdrv_save_vmstate(bs, qiov, pos);
4176 } else if (bs->file) {
4177 return bdrv_writev_vmstate(bs->file, qiov, pos);
4180 return -ENOTSUP;
4183 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
4184 int64_t pos, int size)
4186 BlockDriver *drv = bs->drv;
4187 if (!drv)
4188 return -ENOMEDIUM;
4189 if (drv->bdrv_load_vmstate)
4190 return drv->bdrv_load_vmstate(bs, buf, pos, size);
4191 if (bs->file)
4192 return bdrv_load_vmstate(bs->file, buf, pos, size);
4193 return -ENOTSUP;
4196 void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
4198 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4199 return;
4202 bs->drv->bdrv_debug_event(bs, event);
4205 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4206 const char *tag)
4208 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4209 bs = bs->file;
4212 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4213 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4216 return -ENOTSUP;
4219 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4221 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4222 bs = bs->file;
4225 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4226 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4229 return -ENOTSUP;
4232 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4234 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4235 bs = bs->file;
4238 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4239 return bs->drv->bdrv_debug_resume(bs, tag);
4242 return -ENOTSUP;
4245 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4247 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4248 bs = bs->file;
4251 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4252 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4255 return false;
4258 int bdrv_is_snapshot(BlockDriverState *bs)
4260 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
4263 /* backing_file can either be relative, or absolute, or a protocol. If it is
4264 * relative, it must be relative to the chain. So, passing in bs->filename
4265 * from a BDS as backing_file should not be done, as that may be relative to
4266 * the CWD rather than the chain. */
4267 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4268 const char *backing_file)
4270 char *filename_full = NULL;
4271 char *backing_file_full = NULL;
4272 char *filename_tmp = NULL;
4273 int is_protocol = 0;
4274 BlockDriverState *curr_bs = NULL;
4275 BlockDriverState *retval = NULL;
4277 if (!bs || !bs->drv || !backing_file) {
4278 return NULL;
4281 filename_full = g_malloc(PATH_MAX);
4282 backing_file_full = g_malloc(PATH_MAX);
4283 filename_tmp = g_malloc(PATH_MAX);
4285 is_protocol = path_has_protocol(backing_file);
4287 for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) {
4289 /* If either of the filename paths is actually a protocol, then
4290 * compare unmodified paths; otherwise make paths relative */
4291 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4292 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4293 retval = curr_bs->backing_hd;
4294 break;
4296 } else {
4297 /* If not an absolute filename path, make it relative to the current
4298 * image's filename path */
4299 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4300 backing_file);
4302 /* We are going to compare absolute pathnames */
4303 if (!realpath(filename_tmp, filename_full)) {
4304 continue;
4307 /* We need to make sure the backing filename we are comparing against
4308 * is relative to the current image filename (or absolute) */
4309 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4310 curr_bs->backing_file);
4312 if (!realpath(filename_tmp, backing_file_full)) {
4313 continue;
4316 if (strcmp(backing_file_full, filename_full) == 0) {
4317 retval = curr_bs->backing_hd;
4318 break;
4323 g_free(filename_full);
4324 g_free(backing_file_full);
4325 g_free(filename_tmp);
4326 return retval;
4329 int bdrv_get_backing_file_depth(BlockDriverState *bs)
4331 if (!bs->drv) {
4332 return 0;
4335 if (!bs->backing_hd) {
4336 return 0;
4339 return 1 + bdrv_get_backing_file_depth(bs->backing_hd);
4342 /**************************************************************/
4343 /* async I/Os */
4345 BlockAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
4346 QEMUIOVector *qiov, int nb_sectors,
4347 BlockCompletionFunc *cb, void *opaque)
4349 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
4351 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0,
4352 cb, opaque, false);
4355 BlockAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
4356 QEMUIOVector *qiov, int nb_sectors,
4357 BlockCompletionFunc *cb, void *opaque)
4359 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
4361 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0,
4362 cb, opaque, true);
4365 BlockAIOCB *bdrv_aio_write_zeroes(BlockDriverState *bs,
4366 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags,
4367 BlockCompletionFunc *cb, void *opaque)
4369 trace_bdrv_aio_write_zeroes(bs, sector_num, nb_sectors, flags, opaque);
4371 return bdrv_co_aio_rw_vector(bs, sector_num, NULL, nb_sectors,
4372 BDRV_REQ_ZERO_WRITE | flags,
4373 cb, opaque, true);
4377 typedef struct MultiwriteCB {
4378 int error;
4379 int num_requests;
4380 int num_callbacks;
4381 struct {
4382 BlockCompletionFunc *cb;
4383 void *opaque;
4384 QEMUIOVector *free_qiov;
4385 } callbacks[];
4386 } MultiwriteCB;
4388 static void multiwrite_user_cb(MultiwriteCB *mcb)
4390 int i;
4392 for (i = 0; i < mcb->num_callbacks; i++) {
4393 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
4394 if (mcb->callbacks[i].free_qiov) {
4395 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
4397 g_free(mcb->callbacks[i].free_qiov);
4401 static void multiwrite_cb(void *opaque, int ret)
4403 MultiwriteCB *mcb = opaque;
4405 trace_multiwrite_cb(mcb, ret);
4407 if (ret < 0 && !mcb->error) {
4408 mcb->error = ret;
4411 mcb->num_requests--;
4412 if (mcb->num_requests == 0) {
4413 multiwrite_user_cb(mcb);
4414 g_free(mcb);
4418 static int multiwrite_req_compare(const void *a, const void *b)
4420 const BlockRequest *req1 = a, *req2 = b;
4423 * Note that we can't simply subtract req2->sector from req1->sector
4424 * here as that could overflow the return value.
4426 if (req1->sector > req2->sector) {
4427 return 1;
4428 } else if (req1->sector < req2->sector) {
4429 return -1;
4430 } else {
4431 return 0;
4436 * Takes a bunch of requests and tries to merge them. Returns the number of
4437 * requests that remain after merging.
4439 static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
4440 int num_reqs, MultiwriteCB *mcb)
4442 int i, outidx;
4444 // Sort requests by start sector
4445 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
4447 // Check if adjacent requests touch the same clusters. If so, combine them,
4448 // filling up gaps with zero sectors.
4449 outidx = 0;
4450 for (i = 1; i < num_reqs; i++) {
4451 int merge = 0;
4452 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
4454 // Handle exactly sequential writes and overlapping writes.
4455 if (reqs[i].sector <= oldreq_last) {
4456 merge = 1;
4459 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
4460 merge = 0;
4463 if (bs->bl.max_transfer_length && reqs[outidx].nb_sectors +
4464 reqs[i].nb_sectors > bs->bl.max_transfer_length) {
4465 merge = 0;
4468 if (merge) {
4469 size_t size;
4470 QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
4471 qemu_iovec_init(qiov,
4472 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
4474 // Add the first request to the merged one. If the requests are
4475 // overlapping, drop the last sectors of the first request.
4476 size = (reqs[i].sector - reqs[outidx].sector) << 9;
4477 qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
4479 // We should need to add any zeros between the two requests
4480 assert (reqs[i].sector <= oldreq_last);
4482 // Add the second request
4483 qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
4485 // Add tail of first request, if necessary
4486 if (qiov->size < reqs[outidx].qiov->size) {
4487 qemu_iovec_concat(qiov, reqs[outidx].qiov, qiov->size,
4488 reqs[outidx].qiov->size - qiov->size);
4491 reqs[outidx].nb_sectors = qiov->size >> 9;
4492 reqs[outidx].qiov = qiov;
4494 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
4495 } else {
4496 outidx++;
4497 reqs[outidx].sector = reqs[i].sector;
4498 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
4499 reqs[outidx].qiov = reqs[i].qiov;
4503 return outidx + 1;
4507 * Submit multiple AIO write requests at once.
4509 * On success, the function returns 0 and all requests in the reqs array have
4510 * been submitted. In error case this function returns -1, and any of the
4511 * requests may or may not be submitted yet. In particular, this means that the
4512 * callback will be called for some of the requests, for others it won't. The
4513 * caller must check the error field of the BlockRequest to wait for the right
4514 * callbacks (if error != 0, no callback will be called).
4516 * The implementation may modify the contents of the reqs array, e.g. to merge
4517 * requests. However, the fields opaque and error are left unmodified as they
4518 * are used to signal failure for a single request to the caller.
4520 int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
4522 MultiwriteCB *mcb;
4523 int i;
4525 /* don't submit writes if we don't have a medium */
4526 if (bs->drv == NULL) {
4527 for (i = 0; i < num_reqs; i++) {
4528 reqs[i].error = -ENOMEDIUM;
4530 return -1;
4533 if (num_reqs == 0) {
4534 return 0;
4537 // Create MultiwriteCB structure
4538 mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
4539 mcb->num_requests = 0;
4540 mcb->num_callbacks = num_reqs;
4542 for (i = 0; i < num_reqs; i++) {
4543 mcb->callbacks[i].cb = reqs[i].cb;
4544 mcb->callbacks[i].opaque = reqs[i].opaque;
4547 // Check for mergable requests
4548 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
4550 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
4552 /* Run the aio requests. */
4553 mcb->num_requests = num_reqs;
4554 for (i = 0; i < num_reqs; i++) {
4555 bdrv_co_aio_rw_vector(bs, reqs[i].sector, reqs[i].qiov,
4556 reqs[i].nb_sectors, reqs[i].flags,
4557 multiwrite_cb, mcb,
4558 true);
4561 return 0;
4564 void bdrv_aio_cancel(BlockAIOCB *acb)
4566 qemu_aio_ref(acb);
4567 bdrv_aio_cancel_async(acb);
4568 while (acb->refcnt > 1) {
4569 if (acb->aiocb_info->get_aio_context) {
4570 aio_poll(acb->aiocb_info->get_aio_context(acb), true);
4571 } else if (acb->bs) {
4572 aio_poll(bdrv_get_aio_context(acb->bs), true);
4573 } else {
4574 abort();
4577 qemu_aio_unref(acb);
4580 /* Async version of aio cancel. The caller is not blocked if the acb implements
4581 * cancel_async, otherwise we do nothing and let the request normally complete.
4582 * In either case the completion callback must be called. */
4583 void bdrv_aio_cancel_async(BlockAIOCB *acb)
4585 if (acb->aiocb_info->cancel_async) {
4586 acb->aiocb_info->cancel_async(acb);
4590 /**************************************************************/
4591 /* async block device emulation */
4593 typedef struct BlockAIOCBSync {
4594 BlockAIOCB common;
4595 QEMUBH *bh;
4596 int ret;
4597 /* vector translation state */
4598 QEMUIOVector *qiov;
4599 uint8_t *bounce;
4600 int is_write;
4601 } BlockAIOCBSync;
4603 static const AIOCBInfo bdrv_em_aiocb_info = {
4604 .aiocb_size = sizeof(BlockAIOCBSync),
4607 static void bdrv_aio_bh_cb(void *opaque)
4609 BlockAIOCBSync *acb = opaque;
4611 if (!acb->is_write && acb->ret >= 0) {
4612 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
4614 qemu_vfree(acb->bounce);
4615 acb->common.cb(acb->common.opaque, acb->ret);
4616 qemu_bh_delete(acb->bh);
4617 acb->bh = NULL;
4618 qemu_aio_unref(acb);
4621 static BlockAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
4622 int64_t sector_num,
4623 QEMUIOVector *qiov,
4624 int nb_sectors,
4625 BlockCompletionFunc *cb,
4626 void *opaque,
4627 int is_write)
4630 BlockAIOCBSync *acb;
4632 acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque);
4633 acb->is_write = is_write;
4634 acb->qiov = qiov;
4635 acb->bounce = qemu_try_blockalign(bs, qiov->size);
4636 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_aio_bh_cb, acb);
4638 if (acb->bounce == NULL) {
4639 acb->ret = -ENOMEM;
4640 } else if (is_write) {
4641 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
4642 acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
4643 } else {
4644 acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
4647 qemu_bh_schedule(acb->bh);
4649 return &acb->common;
4652 static BlockAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
4653 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
4654 BlockCompletionFunc *cb, void *opaque)
4656 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
4659 static BlockAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
4660 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
4661 BlockCompletionFunc *cb, void *opaque)
4663 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
4667 typedef struct BlockAIOCBCoroutine {
4668 BlockAIOCB common;
4669 BlockRequest req;
4670 bool is_write;
4671 bool *done;
4672 QEMUBH* bh;
4673 } BlockAIOCBCoroutine;
4675 static const AIOCBInfo bdrv_em_co_aiocb_info = {
4676 .aiocb_size = sizeof(BlockAIOCBCoroutine),
4679 static void bdrv_co_em_bh(void *opaque)
4681 BlockAIOCBCoroutine *acb = opaque;
4683 acb->common.cb(acb->common.opaque, acb->req.error);
4685 qemu_bh_delete(acb->bh);
4686 qemu_aio_unref(acb);
4689 /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
4690 static void coroutine_fn bdrv_co_do_rw(void *opaque)
4692 BlockAIOCBCoroutine *acb = opaque;
4693 BlockDriverState *bs = acb->common.bs;
4695 if (!acb->is_write) {
4696 acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
4697 acb->req.nb_sectors, acb->req.qiov, acb->req.flags);
4698 } else {
4699 acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
4700 acb->req.nb_sectors, acb->req.qiov, acb->req.flags);
4703 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4704 qemu_bh_schedule(acb->bh);
4707 static BlockAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
4708 int64_t sector_num,
4709 QEMUIOVector *qiov,
4710 int nb_sectors,
4711 BdrvRequestFlags flags,
4712 BlockCompletionFunc *cb,
4713 void *opaque,
4714 bool is_write)
4716 Coroutine *co;
4717 BlockAIOCBCoroutine *acb;
4719 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4720 acb->req.sector = sector_num;
4721 acb->req.nb_sectors = nb_sectors;
4722 acb->req.qiov = qiov;
4723 acb->req.flags = flags;
4724 acb->is_write = is_write;
4726 co = qemu_coroutine_create(bdrv_co_do_rw);
4727 qemu_coroutine_enter(co, acb);
4729 return &acb->common;
4732 static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
4734 BlockAIOCBCoroutine *acb = opaque;
4735 BlockDriverState *bs = acb->common.bs;
4737 acb->req.error = bdrv_co_flush(bs);
4738 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4739 qemu_bh_schedule(acb->bh);
4742 BlockAIOCB *bdrv_aio_flush(BlockDriverState *bs,
4743 BlockCompletionFunc *cb, void *opaque)
4745 trace_bdrv_aio_flush(bs, opaque);
4747 Coroutine *co;
4748 BlockAIOCBCoroutine *acb;
4750 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4752 co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
4753 qemu_coroutine_enter(co, acb);
4755 return &acb->common;
4758 static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
4760 BlockAIOCBCoroutine *acb = opaque;
4761 BlockDriverState *bs = acb->common.bs;
4763 acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
4764 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4765 qemu_bh_schedule(acb->bh);
4768 BlockAIOCB *bdrv_aio_discard(BlockDriverState *bs,
4769 int64_t sector_num, int nb_sectors,
4770 BlockCompletionFunc *cb, void *opaque)
4772 Coroutine *co;
4773 BlockAIOCBCoroutine *acb;
4775 trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
4777 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4778 acb->req.sector = sector_num;
4779 acb->req.nb_sectors = nb_sectors;
4780 co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
4781 qemu_coroutine_enter(co, acb);
4783 return &acb->common;
4786 void bdrv_init(void)
4788 module_call_init(MODULE_INIT_BLOCK);
4791 void bdrv_init_with_whitelist(void)
4793 use_bdrv_whitelist = 1;
4794 bdrv_init();
4797 void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs,
4798 BlockCompletionFunc *cb, void *opaque)
4800 BlockAIOCB *acb;
4802 acb = g_slice_alloc(aiocb_info->aiocb_size);
4803 acb->aiocb_info = aiocb_info;
4804 acb->bs = bs;
4805 acb->cb = cb;
4806 acb->opaque = opaque;
4807 acb->refcnt = 1;
4808 return acb;
4811 void qemu_aio_ref(void *p)
4813 BlockAIOCB *acb = p;
4814 acb->refcnt++;
4817 void qemu_aio_unref(void *p)
4819 BlockAIOCB *acb = p;
4820 assert(acb->refcnt > 0);
4821 if (--acb->refcnt == 0) {
4822 g_slice_free1(acb->aiocb_info->aiocb_size, acb);
4826 /**************************************************************/
4827 /* Coroutine block device emulation */
4829 typedef struct CoroutineIOCompletion {
4830 Coroutine *coroutine;
4831 int ret;
4832 } CoroutineIOCompletion;
4834 static void bdrv_co_io_em_complete(void *opaque, int ret)
4836 CoroutineIOCompletion *co = opaque;
4838 co->ret = ret;
4839 qemu_coroutine_enter(co->coroutine, NULL);
4842 static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
4843 int nb_sectors, QEMUIOVector *iov,
4844 bool is_write)
4846 CoroutineIOCompletion co = {
4847 .coroutine = qemu_coroutine_self(),
4849 BlockAIOCB *acb;
4851 if (is_write) {
4852 acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
4853 bdrv_co_io_em_complete, &co);
4854 } else {
4855 acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
4856 bdrv_co_io_em_complete, &co);
4859 trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
4860 if (!acb) {
4861 return -EIO;
4863 qemu_coroutine_yield();
4865 return co.ret;
4868 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
4869 int64_t sector_num, int nb_sectors,
4870 QEMUIOVector *iov)
4872 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
4875 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
4876 int64_t sector_num, int nb_sectors,
4877 QEMUIOVector *iov)
4879 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
4882 static void coroutine_fn bdrv_flush_co_entry(void *opaque)
4884 RwCo *rwco = opaque;
4886 rwco->ret = bdrv_co_flush(rwco->bs);
4889 int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
4891 int ret;
4893 if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
4894 return 0;
4897 /* Write back cached data to the OS even with cache=unsafe */
4898 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
4899 if (bs->drv->bdrv_co_flush_to_os) {
4900 ret = bs->drv->bdrv_co_flush_to_os(bs);
4901 if (ret < 0) {
4902 return ret;
4906 /* But don't actually force it to the disk with cache=unsafe */
4907 if (bs->open_flags & BDRV_O_NO_FLUSH) {
4908 goto flush_parent;
4911 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
4912 if (bs->drv->bdrv_co_flush_to_disk) {
4913 ret = bs->drv->bdrv_co_flush_to_disk(bs);
4914 } else if (bs->drv->bdrv_aio_flush) {
4915 BlockAIOCB *acb;
4916 CoroutineIOCompletion co = {
4917 .coroutine = qemu_coroutine_self(),
4920 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
4921 if (acb == NULL) {
4922 ret = -EIO;
4923 } else {
4924 qemu_coroutine_yield();
4925 ret = co.ret;
4927 } else {
4929 * Some block drivers always operate in either writethrough or unsafe
4930 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
4931 * know how the server works (because the behaviour is hardcoded or
4932 * depends on server-side configuration), so we can't ensure that
4933 * everything is safe on disk. Returning an error doesn't work because
4934 * that would break guests even if the server operates in writethrough
4935 * mode.
4937 * Let's hope the user knows what he's doing.
4939 ret = 0;
4941 if (ret < 0) {
4942 return ret;
4945 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
4946 * in the case of cache=unsafe, so there are no useless flushes.
4948 flush_parent:
4949 return bdrv_co_flush(bs->file);
4952 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4954 Error *local_err = NULL;
4955 int ret;
4957 if (!bs->drv) {
4958 return;
4961 if (!(bs->open_flags & BDRV_O_INCOMING)) {
4962 return;
4964 bs->open_flags &= ~BDRV_O_INCOMING;
4966 if (bs->drv->bdrv_invalidate_cache) {
4967 bs->drv->bdrv_invalidate_cache(bs, &local_err);
4968 } else if (bs->file) {
4969 bdrv_invalidate_cache(bs->file, &local_err);
4971 if (local_err) {
4972 error_propagate(errp, local_err);
4973 return;
4976 ret = refresh_total_sectors(bs, bs->total_sectors);
4977 if (ret < 0) {
4978 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4979 return;
4983 void bdrv_invalidate_cache_all(Error **errp)
4985 BlockDriverState *bs;
4986 Error *local_err = NULL;
4988 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
4989 AioContext *aio_context = bdrv_get_aio_context(bs);
4991 aio_context_acquire(aio_context);
4992 bdrv_invalidate_cache(bs, &local_err);
4993 aio_context_release(aio_context);
4994 if (local_err) {
4995 error_propagate(errp, local_err);
4996 return;
5001 int bdrv_flush(BlockDriverState *bs)
5003 Coroutine *co;
5004 RwCo rwco = {
5005 .bs = bs,
5006 .ret = NOT_DONE,
5009 if (qemu_in_coroutine()) {
5010 /* Fast-path if already in coroutine context */
5011 bdrv_flush_co_entry(&rwco);
5012 } else {
5013 AioContext *aio_context = bdrv_get_aio_context(bs);
5015 co = qemu_coroutine_create(bdrv_flush_co_entry);
5016 qemu_coroutine_enter(co, &rwco);
5017 while (rwco.ret == NOT_DONE) {
5018 aio_poll(aio_context, true);
5022 return rwco.ret;
5025 typedef struct DiscardCo {
5026 BlockDriverState *bs;
5027 int64_t sector_num;
5028 int nb_sectors;
5029 int ret;
5030 } DiscardCo;
5031 static void coroutine_fn bdrv_discard_co_entry(void *opaque)
5033 DiscardCo *rwco = opaque;
5035 rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
5038 /* if no limit is specified in the BlockLimits use a default
5039 * of 32768 512-byte sectors (16 MiB) per request.
5041 #define MAX_DISCARD_DEFAULT 32768
5043 int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
5044 int nb_sectors)
5046 int max_discard;
5048 if (!bs->drv) {
5049 return -ENOMEDIUM;
5050 } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
5051 return -EIO;
5052 } else if (bs->read_only) {
5053 return -EROFS;
5056 bdrv_reset_dirty(bs, sector_num, nb_sectors);
5058 /* Do nothing if disabled. */
5059 if (!(bs->open_flags & BDRV_O_UNMAP)) {
5060 return 0;
5063 if (!bs->drv->bdrv_co_discard && !bs->drv->bdrv_aio_discard) {
5064 return 0;
5067 max_discard = bs->bl.max_discard ? bs->bl.max_discard : MAX_DISCARD_DEFAULT;
5068 while (nb_sectors > 0) {
5069 int ret;
5070 int num = nb_sectors;
5072 /* align request */
5073 if (bs->bl.discard_alignment &&
5074 num >= bs->bl.discard_alignment &&
5075 sector_num % bs->bl.discard_alignment) {
5076 if (num > bs->bl.discard_alignment) {
5077 num = bs->bl.discard_alignment;
5079 num -= sector_num % bs->bl.discard_alignment;
5082 /* limit request size */
5083 if (num > max_discard) {
5084 num = max_discard;
5087 if (bs->drv->bdrv_co_discard) {
5088 ret = bs->drv->bdrv_co_discard(bs, sector_num, num);
5089 } else {
5090 BlockAIOCB *acb;
5091 CoroutineIOCompletion co = {
5092 .coroutine = qemu_coroutine_self(),
5095 acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
5096 bdrv_co_io_em_complete, &co);
5097 if (acb == NULL) {
5098 return -EIO;
5099 } else {
5100 qemu_coroutine_yield();
5101 ret = co.ret;
5104 if (ret && ret != -ENOTSUP) {
5105 return ret;
5108 sector_num += num;
5109 nb_sectors -= num;
5111 return 0;
5114 int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
5116 Coroutine *co;
5117 DiscardCo rwco = {
5118 .bs = bs,
5119 .sector_num = sector_num,
5120 .nb_sectors = nb_sectors,
5121 .ret = NOT_DONE,
5124 if (qemu_in_coroutine()) {
5125 /* Fast-path if already in coroutine context */
5126 bdrv_discard_co_entry(&rwco);
5127 } else {
5128 AioContext *aio_context = bdrv_get_aio_context(bs);
5130 co = qemu_coroutine_create(bdrv_discard_co_entry);
5131 qemu_coroutine_enter(co, &rwco);
5132 while (rwco.ret == NOT_DONE) {
5133 aio_poll(aio_context, true);
5137 return rwco.ret;
5140 /**************************************************************/
5141 /* removable device support */
5144 * Return TRUE if the media is present
5146 int bdrv_is_inserted(BlockDriverState *bs)
5148 BlockDriver *drv = bs->drv;
5150 if (!drv)
5151 return 0;
5152 if (!drv->bdrv_is_inserted)
5153 return 1;
5154 return drv->bdrv_is_inserted(bs);
5158 * Return whether the media changed since the last call to this
5159 * function, or -ENOTSUP if we don't know. Most drivers don't know.
5161 int bdrv_media_changed(BlockDriverState *bs)
5163 BlockDriver *drv = bs->drv;
5165 if (drv && drv->bdrv_media_changed) {
5166 return drv->bdrv_media_changed(bs);
5168 return -ENOTSUP;
5172 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
5174 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
5176 BlockDriver *drv = bs->drv;
5177 const char *device_name;
5179 if (drv && drv->bdrv_eject) {
5180 drv->bdrv_eject(bs, eject_flag);
5183 device_name = bdrv_get_device_name(bs);
5184 if (device_name[0] != '\0') {
5185 qapi_event_send_device_tray_moved(device_name,
5186 eject_flag, &error_abort);
5191 * Lock or unlock the media (if it is locked, the user won't be able
5192 * to eject it manually).
5194 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5196 BlockDriver *drv = bs->drv;
5198 trace_bdrv_lock_medium(bs, locked);
5200 if (drv && drv->bdrv_lock_medium) {
5201 drv->bdrv_lock_medium(bs, locked);
5205 /* needed for generic scsi interface */
5207 int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
5209 BlockDriver *drv = bs->drv;
5211 if (drv && drv->bdrv_ioctl)
5212 return drv->bdrv_ioctl(bs, req, buf);
5213 return -ENOTSUP;
5216 BlockAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
5217 unsigned long int req, void *buf,
5218 BlockCompletionFunc *cb, void *opaque)
5220 BlockDriver *drv = bs->drv;
5222 if (drv && drv->bdrv_aio_ioctl)
5223 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
5224 return NULL;
5227 void bdrv_set_guest_block_size(BlockDriverState *bs, int align)
5229 bs->guest_block_size = align;
5232 void *qemu_blockalign(BlockDriverState *bs, size_t size)
5234 return qemu_memalign(bdrv_opt_mem_align(bs), size);
5237 void *qemu_blockalign0(BlockDriverState *bs, size_t size)
5239 return memset(qemu_blockalign(bs, size), 0, size);
5242 void *qemu_try_blockalign(BlockDriverState *bs, size_t size)
5244 size_t align = bdrv_opt_mem_align(bs);
5246 /* Ensure that NULL is never returned on success */
5247 assert(align > 0);
5248 if (size == 0) {
5249 size = align;
5252 return qemu_try_memalign(align, size);
5255 void *qemu_try_blockalign0(BlockDriverState *bs, size_t size)
5257 void *mem = qemu_try_blockalign(bs, size);
5259 if (mem) {
5260 memset(mem, 0, size);
5263 return mem;
5267 * Check if all memory in this vector is sector aligned.
5269 bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
5271 int i;
5272 size_t alignment = bdrv_opt_mem_align(bs);
5274 for (i = 0; i < qiov->niov; i++) {
5275 if ((uintptr_t) qiov->iov[i].iov_base % alignment) {
5276 return false;
5278 if (qiov->iov[i].iov_len % alignment) {
5279 return false;
5283 return true;
5286 BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, int granularity,
5287 Error **errp)
5289 int64_t bitmap_size;
5290 BdrvDirtyBitmap *bitmap;
5292 assert((granularity & (granularity - 1)) == 0);
5294 granularity >>= BDRV_SECTOR_BITS;
5295 assert(granularity);
5296 bitmap_size = bdrv_nb_sectors(bs);
5297 if (bitmap_size < 0) {
5298 error_setg_errno(errp, -bitmap_size, "could not get length of device");
5299 errno = -bitmap_size;
5300 return NULL;
5302 bitmap = g_new0(BdrvDirtyBitmap, 1);
5303 bitmap->bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1);
5304 QLIST_INSERT_HEAD(&bs->dirty_bitmaps, bitmap, list);
5305 return bitmap;
5308 void bdrv_release_dirty_bitmap(BlockDriverState *bs, BdrvDirtyBitmap *bitmap)
5310 BdrvDirtyBitmap *bm, *next;
5311 QLIST_FOREACH_SAFE(bm, &bs->dirty_bitmaps, list, next) {
5312 if (bm == bitmap) {
5313 QLIST_REMOVE(bitmap, list);
5314 hbitmap_free(bitmap->bitmap);
5315 g_free(bitmap);
5316 return;
5321 BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs)
5323 BdrvDirtyBitmap *bm;
5324 BlockDirtyInfoList *list = NULL;
5325 BlockDirtyInfoList **plist = &list;
5327 QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) {
5328 BlockDirtyInfo *info = g_new0(BlockDirtyInfo, 1);
5329 BlockDirtyInfoList *entry = g_new0(BlockDirtyInfoList, 1);
5330 info->count = bdrv_get_dirty_count(bs, bm);
5331 info->granularity =
5332 ((int64_t) BDRV_SECTOR_SIZE << hbitmap_granularity(bm->bitmap));
5333 entry->value = info;
5334 *plist = entry;
5335 plist = &entry->next;
5338 return list;
5341 int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap, int64_t sector)
5343 if (bitmap) {
5344 return hbitmap_get(bitmap->bitmap, sector);
5345 } else {
5346 return 0;
5350 void bdrv_dirty_iter_init(BlockDriverState *bs,
5351 BdrvDirtyBitmap *bitmap, HBitmapIter *hbi)
5353 hbitmap_iter_init(hbi, bitmap->bitmap, 0);
5356 void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector,
5357 int nr_sectors)
5359 BdrvDirtyBitmap *bitmap;
5360 QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
5361 hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors);
5365 void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors)
5367 BdrvDirtyBitmap *bitmap;
5368 QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
5369 hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors);
5373 int64_t bdrv_get_dirty_count(BlockDriverState *bs, BdrvDirtyBitmap *bitmap)
5375 return hbitmap_count(bitmap->bitmap);
5378 /* Get a reference to bs */
5379 void bdrv_ref(BlockDriverState *bs)
5381 bs->refcnt++;
5384 /* Release a previously grabbed reference to bs.
5385 * If after releasing, reference count is zero, the BlockDriverState is
5386 * deleted. */
5387 void bdrv_unref(BlockDriverState *bs)
5389 if (!bs) {
5390 return;
5392 assert(bs->refcnt > 0);
5393 if (--bs->refcnt == 0) {
5394 bdrv_delete(bs);
5398 struct BdrvOpBlocker {
5399 Error *reason;
5400 QLIST_ENTRY(BdrvOpBlocker) list;
5403 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5405 BdrvOpBlocker *blocker;
5406 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5407 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
5408 blocker = QLIST_FIRST(&bs->op_blockers[op]);
5409 if (errp) {
5410 error_setg(errp, "Device '%s' is busy: %s",
5411 bdrv_get_device_name(bs),
5412 error_get_pretty(blocker->reason));
5414 return true;
5416 return false;
5419 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5421 BdrvOpBlocker *blocker;
5422 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5424 blocker = g_new0(BdrvOpBlocker, 1);
5425 blocker->reason = reason;
5426 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5429 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5431 BdrvOpBlocker *blocker, *next;
5432 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5433 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
5434 if (blocker->reason == reason) {
5435 QLIST_REMOVE(blocker, list);
5436 g_free(blocker);
5441 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5443 int i;
5444 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5445 bdrv_op_block(bs, i, reason);
5449 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5451 int i;
5452 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5453 bdrv_op_unblock(bs, i, reason);
5457 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5459 int i;
5461 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5462 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5463 return false;
5466 return true;
5469 void bdrv_iostatus_enable(BlockDriverState *bs)
5471 bs->iostatus_enabled = true;
5472 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
5475 /* The I/O status is only enabled if the drive explicitly
5476 * enables it _and_ the VM is configured to stop on errors */
5477 bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
5479 return (bs->iostatus_enabled &&
5480 (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
5481 bs->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
5482 bs->on_read_error == BLOCKDEV_ON_ERROR_STOP));
5485 void bdrv_iostatus_disable(BlockDriverState *bs)
5487 bs->iostatus_enabled = false;
5490 void bdrv_iostatus_reset(BlockDriverState *bs)
5492 if (bdrv_iostatus_is_enabled(bs)) {
5493 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
5494 if (bs->job) {
5495 block_job_iostatus_reset(bs->job);
5500 void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
5502 assert(bdrv_iostatus_is_enabled(bs));
5503 if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
5504 bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
5505 BLOCK_DEVICE_IO_STATUS_FAILED;
5509 void bdrv_img_create(const char *filename, const char *fmt,
5510 const char *base_filename, const char *base_fmt,
5511 char *options, uint64_t img_size, int flags,
5512 Error **errp, bool quiet)
5514 QemuOptsList *create_opts = NULL;
5515 QemuOpts *opts = NULL;
5516 const char *backing_fmt, *backing_file;
5517 int64_t size;
5518 BlockDriver *drv, *proto_drv;
5519 BlockDriver *backing_drv = NULL;
5520 Error *local_err = NULL;
5521 int ret = 0;
5523 /* Find driver and parse its options */
5524 drv = bdrv_find_format(fmt);
5525 if (!drv) {
5526 error_setg(errp, "Unknown file format '%s'", fmt);
5527 return;
5530 proto_drv = bdrv_find_protocol(filename, true);
5531 if (!proto_drv) {
5532 error_setg(errp, "Unknown protocol '%s'", filename);
5533 return;
5536 if (!drv->create_opts) {
5537 error_setg(errp, "Format driver '%s' does not support image creation",
5538 drv->format_name);
5539 return;
5542 if (!proto_drv->create_opts) {
5543 error_setg(errp, "Protocol driver '%s' does not support image creation",
5544 proto_drv->format_name);
5545 return;
5548 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5549 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5551 /* Create parameter list with default values */
5552 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5553 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size);
5555 /* Parse -o options */
5556 if (options) {
5557 if (qemu_opts_do_parse(opts, options, NULL) != 0) {
5558 error_setg(errp, "Invalid options for file format '%s'", fmt);
5559 goto out;
5563 if (base_filename) {
5564 if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename)) {
5565 error_setg(errp, "Backing file not supported for file format '%s'",
5566 fmt);
5567 goto out;
5571 if (base_fmt) {
5572 if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt)) {
5573 error_setg(errp, "Backing file format not supported for file "
5574 "format '%s'", fmt);
5575 goto out;
5579 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5580 if (backing_file) {
5581 if (!strcmp(filename, backing_file)) {
5582 error_setg(errp, "Error: Trying to create an image with the "
5583 "same filename as the backing file");
5584 goto out;
5588 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5589 if (backing_fmt) {
5590 backing_drv = bdrv_find_format(backing_fmt);
5591 if (!backing_drv) {
5592 error_setg(errp, "Unknown backing file format '%s'",
5593 backing_fmt);
5594 goto out;
5598 // The size for the image must always be specified, with one exception:
5599 // If we are using a backing file, we can obtain the size from there
5600 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5601 if (size == -1) {
5602 if (backing_file) {
5603 BlockDriverState *bs;
5604 int64_t size;
5605 int back_flags;
5607 /* backing files always opened read-only */
5608 back_flags =
5609 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
5611 bs = NULL;
5612 ret = bdrv_open(&bs, backing_file, NULL, NULL, back_flags,
5613 backing_drv, &local_err);
5614 if (ret < 0) {
5615 goto out;
5617 size = bdrv_getlength(bs);
5618 if (size < 0) {
5619 error_setg_errno(errp, -size, "Could not get size of '%s'",
5620 backing_file);
5621 bdrv_unref(bs);
5622 goto out;
5625 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size);
5627 bdrv_unref(bs);
5628 } else {
5629 error_setg(errp, "Image creation needs a size parameter");
5630 goto out;
5634 if (!quiet) {
5635 printf("Formatting '%s', fmt=%s ", filename, fmt);
5636 qemu_opts_print(opts);
5637 puts("");
5640 ret = bdrv_create(drv, filename, opts, &local_err);
5642 if (ret == -EFBIG) {
5643 /* This is generally a better message than whatever the driver would
5644 * deliver (especially because of the cluster_size_hint), since that
5645 * is most probably not much different from "image too large". */
5646 const char *cluster_size_hint = "";
5647 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
5648 cluster_size_hint = " (try using a larger cluster size)";
5650 error_setg(errp, "The image size is too large for file format '%s'"
5651 "%s", fmt, cluster_size_hint);
5652 error_free(local_err);
5653 local_err = NULL;
5656 out:
5657 qemu_opts_del(opts);
5658 qemu_opts_free(create_opts);
5659 if (local_err) {
5660 error_propagate(errp, local_err);
5664 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
5666 return bs->aio_context;
5669 void bdrv_detach_aio_context(BlockDriverState *bs)
5671 BdrvAioNotifier *baf;
5673 if (!bs->drv) {
5674 return;
5677 QLIST_FOREACH(baf, &bs->aio_notifiers, list) {
5678 baf->detach_aio_context(baf->opaque);
5681 if (bs->io_limits_enabled) {
5682 throttle_detach_aio_context(&bs->throttle_state);
5684 if (bs->drv->bdrv_detach_aio_context) {
5685 bs->drv->bdrv_detach_aio_context(bs);
5687 if (bs->file) {
5688 bdrv_detach_aio_context(bs->file);
5690 if (bs->backing_hd) {
5691 bdrv_detach_aio_context(bs->backing_hd);
5694 bs->aio_context = NULL;
5697 void bdrv_attach_aio_context(BlockDriverState *bs,
5698 AioContext *new_context)
5700 BdrvAioNotifier *ban;
5702 if (!bs->drv) {
5703 return;
5706 bs->aio_context = new_context;
5708 if (bs->backing_hd) {
5709 bdrv_attach_aio_context(bs->backing_hd, new_context);
5711 if (bs->file) {
5712 bdrv_attach_aio_context(bs->file, new_context);
5714 if (bs->drv->bdrv_attach_aio_context) {
5715 bs->drv->bdrv_attach_aio_context(bs, new_context);
5717 if (bs->io_limits_enabled) {
5718 throttle_attach_aio_context(&bs->throttle_state, new_context);
5721 QLIST_FOREACH(ban, &bs->aio_notifiers, list) {
5722 ban->attached_aio_context(new_context, ban->opaque);
5726 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5728 bdrv_drain_all(); /* ensure there are no in-flight requests */
5730 bdrv_detach_aio_context(bs);
5732 /* This function executes in the old AioContext so acquire the new one in
5733 * case it runs in a different thread.
5735 aio_context_acquire(new_context);
5736 bdrv_attach_aio_context(bs, new_context);
5737 aio_context_release(new_context);
5740 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
5741 void (*attached_aio_context)(AioContext *new_context, void *opaque),
5742 void (*detach_aio_context)(void *opaque), void *opaque)
5744 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
5745 *ban = (BdrvAioNotifier){
5746 .attached_aio_context = attached_aio_context,
5747 .detach_aio_context = detach_aio_context,
5748 .opaque = opaque
5751 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5754 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
5755 void (*attached_aio_context)(AioContext *,
5756 void *),
5757 void (*detach_aio_context)(void *),
5758 void *opaque)
5760 BdrvAioNotifier *ban, *ban_next;
5762 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5763 if (ban->attached_aio_context == attached_aio_context &&
5764 ban->detach_aio_context == detach_aio_context &&
5765 ban->opaque == opaque)
5767 QLIST_REMOVE(ban, list);
5768 g_free(ban);
5770 return;
5774 abort();
5777 void bdrv_add_before_write_notifier(BlockDriverState *bs,
5778 NotifierWithReturn *notifier)
5780 notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
5783 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5784 BlockDriverAmendStatusCB *status_cb)
5786 if (!bs->drv->bdrv_amend_options) {
5787 return -ENOTSUP;
5789 return bs->drv->bdrv_amend_options(bs, opts, status_cb);
5792 /* This function will be called by the bdrv_recurse_is_first_non_filter method
5793 * of block filter and by bdrv_is_first_non_filter.
5794 * It is used to test if the given bs is the candidate or recurse more in the
5795 * node graph.
5797 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5798 BlockDriverState *candidate)
5800 /* return false if basic checks fails */
5801 if (!bs || !bs->drv) {
5802 return false;
5805 /* the code reached a non block filter driver -> check if the bs is
5806 * the same as the candidate. It's the recursion termination condition.
5808 if (!bs->drv->is_filter) {
5809 return bs == candidate;
5811 /* Down this path the driver is a block filter driver */
5813 /* If the block filter recursion method is defined use it to recurse down
5814 * the node graph.
5816 if (bs->drv->bdrv_recurse_is_first_non_filter) {
5817 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5820 /* the driver is a block filter but don't allow to recurse -> return false
5822 return false;
5825 /* This function checks if the candidate is the first non filter bs down it's
5826 * bs chain. Since we don't have pointers to parents it explore all bs chains
5827 * from the top. Some filters can choose not to pass down the recursion.
5829 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5831 BlockDriverState *bs;
5833 /* walk down the bs forest recursively */
5834 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
5835 bool perm;
5837 /* try to recurse in this top level bs */
5838 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5840 /* candidate is the first non filter */
5841 if (perm) {
5842 return true;
5846 return false;
5849 BlockDriverState *check_to_replace_node(const char *node_name, Error **errp)
5851 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5852 AioContext *aio_context;
5854 if (!to_replace_bs) {
5855 error_setg(errp, "Node name '%s' not found", node_name);
5856 return NULL;
5859 aio_context = bdrv_get_aio_context(to_replace_bs);
5860 aio_context_acquire(aio_context);
5862 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5863 to_replace_bs = NULL;
5864 goto out;
5867 /* We don't want arbitrary node of the BDS chain to be replaced only the top
5868 * most non filter in order to prevent data corruption.
5869 * Another benefit is that this tests exclude backing files which are
5870 * blocked by the backing blockers.
5872 if (!bdrv_is_first_non_filter(to_replace_bs)) {
5873 error_setg(errp, "Only top most non filter can be replaced");
5874 to_replace_bs = NULL;
5875 goto out;
5878 out:
5879 aio_context_release(aio_context);
5880 return to_replace_bs;
5883 void bdrv_io_plug(BlockDriverState *bs)
5885 BlockDriver *drv = bs->drv;
5886 if (drv && drv->bdrv_io_plug) {
5887 drv->bdrv_io_plug(bs);
5888 } else if (bs->file) {
5889 bdrv_io_plug(bs->file);
5893 void bdrv_io_unplug(BlockDriverState *bs)
5895 BlockDriver *drv = bs->drv;
5896 if (drv && drv->bdrv_io_unplug) {
5897 drv->bdrv_io_unplug(bs);
5898 } else if (bs->file) {
5899 bdrv_io_unplug(bs->file);
5903 void bdrv_flush_io_queue(BlockDriverState *bs)
5905 BlockDriver *drv = bs->drv;
5906 if (drv && drv->bdrv_flush_io_queue) {
5907 drv->bdrv_flush_io_queue(bs);
5908 } else if (bs->file) {
5909 bdrv_flush_io_queue(bs->file);
5913 static bool append_open_options(QDict *d, BlockDriverState *bs)
5915 const QDictEntry *entry;
5916 bool found_any = false;
5918 for (entry = qdict_first(bs->options); entry;
5919 entry = qdict_next(bs->options, entry))
5921 /* Only take options for this level and exclude all non-driver-specific
5922 * options */
5923 if (!strchr(qdict_entry_key(entry), '.') &&
5924 strcmp(qdict_entry_key(entry), "node-name"))
5926 qobject_incref(qdict_entry_value(entry));
5927 qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
5928 found_any = true;
5932 return found_any;
5935 /* Updates the following BDS fields:
5936 * - exact_filename: A filename which may be used for opening a block device
5937 * which (mostly) equals the given BDS (even without any
5938 * other options; so reading and writing must return the same
5939 * results, but caching etc. may be different)
5940 * - full_open_options: Options which, when given when opening a block device
5941 * (without a filename), result in a BDS (mostly)
5942 * equalling the given one
5943 * - filename: If exact_filename is set, it is copied here. Otherwise,
5944 * full_open_options is converted to a JSON object, prefixed with
5945 * "json:" (for use through the JSON pseudo protocol) and put here.
5947 void bdrv_refresh_filename(BlockDriverState *bs)
5949 BlockDriver *drv = bs->drv;
5950 QDict *opts;
5952 if (!drv) {
5953 return;
5956 /* This BDS's file name will most probably depend on its file's name, so
5957 * refresh that first */
5958 if (bs->file) {
5959 bdrv_refresh_filename(bs->file);
5962 if (drv->bdrv_refresh_filename) {
5963 /* Obsolete information is of no use here, so drop the old file name
5964 * information before refreshing it */
5965 bs->exact_filename[0] = '\0';
5966 if (bs->full_open_options) {
5967 QDECREF(bs->full_open_options);
5968 bs->full_open_options = NULL;
5971 drv->bdrv_refresh_filename(bs);
5972 } else if (bs->file) {
5973 /* Try to reconstruct valid information from the underlying file */
5974 bool has_open_options;
5976 bs->exact_filename[0] = '\0';
5977 if (bs->full_open_options) {
5978 QDECREF(bs->full_open_options);
5979 bs->full_open_options = NULL;
5982 opts = qdict_new();
5983 has_open_options = append_open_options(opts, bs);
5985 /* If no specific options have been given for this BDS, the filename of
5986 * the underlying file should suffice for this one as well */
5987 if (bs->file->exact_filename[0] && !has_open_options) {
5988 strcpy(bs->exact_filename, bs->file->exact_filename);
5990 /* Reconstructing the full options QDict is simple for most format block
5991 * drivers, as long as the full options are known for the underlying
5992 * file BDS. The full options QDict of that file BDS should somehow
5993 * contain a representation of the filename, therefore the following
5994 * suffices without querying the (exact_)filename of this BDS. */
5995 if (bs->file->full_open_options) {
5996 qdict_put_obj(opts, "driver",
5997 QOBJECT(qstring_from_str(drv->format_name)));
5998 QINCREF(bs->file->full_open_options);
5999 qdict_put_obj(opts, "file", QOBJECT(bs->file->full_open_options));
6001 bs->full_open_options = opts;
6002 } else {
6003 QDECREF(opts);
6005 } else if (!bs->full_open_options && qdict_size(bs->options)) {
6006 /* There is no underlying file BDS (at least referenced by BDS.file),
6007 * so the full options QDict should be equal to the options given
6008 * specifically for this block device when it was opened (plus the
6009 * driver specification).
6010 * Because those options don't change, there is no need to update
6011 * full_open_options when it's already set. */
6013 opts = qdict_new();
6014 append_open_options(opts, bs);
6015 qdict_put_obj(opts, "driver",
6016 QOBJECT(qstring_from_str(drv->format_name)));
6018 if (bs->exact_filename[0]) {
6019 /* This may not work for all block protocol drivers (some may
6020 * require this filename to be parsed), but we have to find some
6021 * default solution here, so just include it. If some block driver
6022 * does not support pure options without any filename at all or
6023 * needs some special format of the options QDict, it needs to
6024 * implement the driver-specific bdrv_refresh_filename() function.
6026 qdict_put_obj(opts, "filename",
6027 QOBJECT(qstring_from_str(bs->exact_filename)));
6030 bs->full_open_options = opts;
6033 if (bs->exact_filename[0]) {
6034 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
6035 } else if (bs->full_open_options) {
6036 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
6037 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
6038 qstring_get_str(json));
6039 QDECREF(json);
6043 /* This accessor function purpose is to allow the device models to access the
6044 * BlockAcctStats structure embedded inside a BlockDriverState without being
6045 * aware of the BlockDriverState structure layout.
6046 * It will go away when the BlockAcctStats structure will be moved inside
6047 * the device models.
6049 BlockAcctStats *bdrv_get_stats(BlockDriverState *bs)
6051 return &bs->stats;