2 * Block layer I/O functions
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
25 #include "qemu/osdep.h"
27 #include "sysemu/block-backend.h"
28 #include "block/blockjob.h"
29 #include "block/blockjob_int.h"
30 #include "block/block_int.h"
31 #include "qemu/cutils.h"
32 #include "qapi/error.h"
33 #include "qemu/error-report.h"
35 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
37 static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
38 int64_t offset, int bytes, BdrvRequestFlags flags);
40 void bdrv_parent_drained_begin(BlockDriverState *bs)
44 QLIST_FOREACH(c, &bs->parents, next_parent) {
45 if (c->role->drained_begin) {
46 c->role->drained_begin(c);
51 void bdrv_parent_drained_end(BlockDriverState *bs)
55 QLIST_FOREACH(c, &bs->parents, next_parent) {
56 if (c->role->drained_end) {
57 c->role->drained_end(c);
62 static void bdrv_merge_limits(BlockLimits *dst, const BlockLimits *src)
64 dst->opt_transfer = MAX(dst->opt_transfer, src->opt_transfer);
65 dst->max_transfer = MIN_NON_ZERO(dst->max_transfer, src->max_transfer);
66 dst->opt_mem_alignment = MAX(dst->opt_mem_alignment,
67 src->opt_mem_alignment);
68 dst->min_mem_alignment = MAX(dst->min_mem_alignment,
69 src->min_mem_alignment);
70 dst->max_iov = MIN_NON_ZERO(dst->max_iov, src->max_iov);
73 void bdrv_refresh_limits(BlockDriverState *bs, Error **errp)
75 BlockDriver *drv = bs->drv;
76 Error *local_err = NULL;
78 memset(&bs->bl, 0, sizeof(bs->bl));
84 /* Default alignment based on whether driver has byte interface */
85 bs->bl.request_alignment = drv->bdrv_co_preadv ? 1 : 512;
87 /* Take some limits from the children as a default */
89 bdrv_refresh_limits(bs->file->bs, &local_err);
91 error_propagate(errp, local_err);
94 bdrv_merge_limits(&bs->bl, &bs->file->bs->bl);
96 bs->bl.min_mem_alignment = 512;
97 bs->bl.opt_mem_alignment = getpagesize();
99 /* Safe default since most protocols use readv()/writev()/etc */
100 bs->bl.max_iov = IOV_MAX;
104 bdrv_refresh_limits(bs->backing->bs, &local_err);
106 error_propagate(errp, local_err);
109 bdrv_merge_limits(&bs->bl, &bs->backing->bs->bl);
112 /* Then let the driver override it */
113 if (drv->bdrv_refresh_limits) {
114 drv->bdrv_refresh_limits(bs, errp);
119 * The copy-on-read flag is actually a reference count so multiple users may
120 * use the feature without worrying about clobbering its previous state.
121 * Copy-on-read stays enabled until all users have called to disable it.
123 void bdrv_enable_copy_on_read(BlockDriverState *bs)
125 atomic_inc(&bs->copy_on_read);
128 void bdrv_disable_copy_on_read(BlockDriverState *bs)
130 int old = atomic_fetch_dec(&bs->copy_on_read);
134 /* Check if any requests are in-flight (including throttled requests) */
135 bool bdrv_requests_pending(BlockDriverState *bs)
139 if (atomic_read(&bs->in_flight)) {
143 QLIST_FOREACH(child, &bs->children, next) {
144 if (bdrv_requests_pending(child->bs)) {
154 BlockDriverState *bs;
158 static void coroutine_fn bdrv_drain_invoke_entry(void *opaque)
160 BdrvCoDrainData *data = opaque;
161 BlockDriverState *bs = data->bs;
163 bs->drv->bdrv_co_drain(bs);
165 /* Set data->done before reading bs->wakeup. */
166 atomic_mb_set(&data->done, true);
170 static void bdrv_drain_invoke(BlockDriverState *bs)
172 BdrvCoDrainData data = { .bs = bs, .done = false };
174 if (!bs->drv || !bs->drv->bdrv_co_drain) {
178 data.co = qemu_coroutine_create(bdrv_drain_invoke_entry, &data);
179 bdrv_coroutine_enter(bs, data.co);
180 BDRV_POLL_WHILE(bs, !data.done);
183 static bool bdrv_drain_recurse(BlockDriverState *bs)
185 BdrvChild *child, *tmp;
188 waited = BDRV_POLL_WHILE(bs, atomic_read(&bs->in_flight) > 0);
190 /* Ensure any pending metadata writes are submitted to bs->file. */
191 bdrv_drain_invoke(bs);
193 QLIST_FOREACH_SAFE(child, &bs->children, next, tmp) {
194 BlockDriverState *bs = child->bs;
196 qemu_get_current_aio_context() == qemu_get_aio_context();
197 assert(bs->refcnt > 0);
199 /* In case the recursive bdrv_drain_recurse processes a
200 * block_job_defer_to_main_loop BH and modifies the graph,
201 * let's hold a reference to bs until we are done.
203 * IOThread doesn't have such a BH, and it is not safe to call
204 * bdrv_unref without BQL, so skip doing it there.
208 waited |= bdrv_drain_recurse(bs);
217 static void bdrv_co_drain_bh_cb(void *opaque)
219 BdrvCoDrainData *data = opaque;
220 Coroutine *co = data->co;
221 BlockDriverState *bs = data->bs;
223 bdrv_dec_in_flight(bs);
224 bdrv_drained_begin(bs);
229 static void coroutine_fn bdrv_co_yield_to_drain(BlockDriverState *bs)
231 BdrvCoDrainData data;
233 /* Calling bdrv_drain() from a BH ensures the current coroutine yields and
234 * other coroutines run if they were queued from
235 * qemu_co_queue_run_restart(). */
237 assert(qemu_in_coroutine());
238 data = (BdrvCoDrainData) {
239 .co = qemu_coroutine_self(),
243 bdrv_inc_in_flight(bs);
244 aio_bh_schedule_oneshot(bdrv_get_aio_context(bs),
245 bdrv_co_drain_bh_cb, &data);
247 qemu_coroutine_yield();
248 /* If we are resumed from some other event (such as an aio completion or a
249 * timer callback), it is a bug in the caller that should be fixed. */
253 void bdrv_drained_begin(BlockDriverState *bs)
255 if (qemu_in_coroutine()) {
256 bdrv_co_yield_to_drain(bs);
260 if (atomic_fetch_inc(&bs->quiesce_counter) == 0) {
261 aio_disable_external(bdrv_get_aio_context(bs));
262 bdrv_parent_drained_begin(bs);
265 bdrv_drain_recurse(bs);
268 void bdrv_drained_end(BlockDriverState *bs)
270 assert(bs->quiesce_counter > 0);
271 if (atomic_fetch_dec(&bs->quiesce_counter) > 1) {
275 bdrv_parent_drained_end(bs);
276 aio_enable_external(bdrv_get_aio_context(bs));
280 * Wait for pending requests to complete on a single BlockDriverState subtree,
281 * and suspend block driver's internal I/O until next request arrives.
283 * Note that unlike bdrv_drain_all(), the caller must hold the BlockDriverState
286 * Only this BlockDriverState's AioContext is run, so in-flight requests must
287 * not depend on events in other AioContexts. In that case, use
288 * bdrv_drain_all() instead.
290 void coroutine_fn bdrv_co_drain(BlockDriverState *bs)
292 assert(qemu_in_coroutine());
293 bdrv_drained_begin(bs);
294 bdrv_drained_end(bs);
297 void bdrv_drain(BlockDriverState *bs)
299 bdrv_drained_begin(bs);
300 bdrv_drained_end(bs);
304 * Wait for pending requests to complete across all BlockDriverStates
306 * This function does not flush data to disk, use bdrv_flush_all() for that
307 * after calling this function.
309 * This pauses all block jobs and disables external clients. It must
310 * be paired with bdrv_drain_all_end().
312 * NOTE: no new block jobs or BlockDriverStates can be created between
313 * the bdrv_drain_all_begin() and bdrv_drain_all_end() calls.
315 void bdrv_drain_all_begin(void)
317 /* Always run first iteration so any pending completion BHs run */
319 BlockDriverState *bs;
321 GSList *aio_ctxs = NULL, *ctx;
323 block_job_pause_all();
325 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
326 AioContext *aio_context = bdrv_get_aio_context(bs);
328 aio_context_acquire(aio_context);
329 bdrv_parent_drained_begin(bs);
330 aio_disable_external(aio_context);
331 aio_context_release(aio_context);
333 if (!g_slist_find(aio_ctxs, aio_context)) {
334 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
338 /* Note that completion of an asynchronous I/O operation can trigger any
339 * number of other I/O operations on other devices---for example a
340 * coroutine can submit an I/O request to another device in response to
341 * request completion. Therefore we must keep looping until there was no
342 * more activity rather than simply draining each device independently.
347 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
348 AioContext *aio_context = ctx->data;
350 aio_context_acquire(aio_context);
351 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
352 if (aio_context == bdrv_get_aio_context(bs)) {
353 waited |= bdrv_drain_recurse(bs);
356 aio_context_release(aio_context);
360 g_slist_free(aio_ctxs);
363 void bdrv_drain_all_end(void)
365 BlockDriverState *bs;
368 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
369 AioContext *aio_context = bdrv_get_aio_context(bs);
371 aio_context_acquire(aio_context);
372 aio_enable_external(aio_context);
373 bdrv_parent_drained_end(bs);
374 aio_context_release(aio_context);
377 block_job_resume_all();
380 void bdrv_drain_all(void)
382 bdrv_drain_all_begin();
383 bdrv_drain_all_end();
387 * Remove an active request from the tracked requests list
389 * This function should be called when a tracked request is completing.
391 static void tracked_request_end(BdrvTrackedRequest *req)
393 if (req->serialising) {
394 atomic_dec(&req->bs->serialising_in_flight);
397 qemu_co_mutex_lock(&req->bs->reqs_lock);
398 QLIST_REMOVE(req, list);
399 qemu_co_queue_restart_all(&req->wait_queue);
400 qemu_co_mutex_unlock(&req->bs->reqs_lock);
404 * Add an active request to the tracked requests list
406 static void tracked_request_begin(BdrvTrackedRequest *req,
407 BlockDriverState *bs,
410 enum BdrvTrackedRequestType type)
412 *req = (BdrvTrackedRequest){
417 .co = qemu_coroutine_self(),
418 .serialising = false,
419 .overlap_offset = offset,
420 .overlap_bytes = bytes,
423 qemu_co_queue_init(&req->wait_queue);
425 qemu_co_mutex_lock(&bs->reqs_lock);
426 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
427 qemu_co_mutex_unlock(&bs->reqs_lock);
430 static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align)
432 int64_t overlap_offset = req->offset & ~(align - 1);
433 unsigned int overlap_bytes = ROUND_UP(req->offset + req->bytes, align)
436 if (!req->serialising) {
437 atomic_inc(&req->bs->serialising_in_flight);
438 req->serialising = true;
441 req->overlap_offset = MIN(req->overlap_offset, overlap_offset);
442 req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes);
446 * Round a region to cluster boundaries
448 void bdrv_round_to_clusters(BlockDriverState *bs,
449 int64_t offset, unsigned int bytes,
450 int64_t *cluster_offset,
451 unsigned int *cluster_bytes)
455 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
456 *cluster_offset = offset;
457 *cluster_bytes = bytes;
459 int64_t c = bdi.cluster_size;
460 *cluster_offset = QEMU_ALIGN_DOWN(offset, c);
461 *cluster_bytes = QEMU_ALIGN_UP(offset - *cluster_offset + bytes, c);
465 static int bdrv_get_cluster_size(BlockDriverState *bs)
470 ret = bdrv_get_info(bs, &bdi);
471 if (ret < 0 || bdi.cluster_size == 0) {
472 return bs->bl.request_alignment;
474 return bdi.cluster_size;
478 static bool tracked_request_overlaps(BdrvTrackedRequest *req,
479 int64_t offset, unsigned int bytes)
482 if (offset >= req->overlap_offset + req->overlap_bytes) {
486 if (req->overlap_offset >= offset + bytes) {
492 void bdrv_inc_in_flight(BlockDriverState *bs)
494 atomic_inc(&bs->in_flight);
497 static void dummy_bh_cb(void *opaque)
501 void bdrv_wakeup(BlockDriverState *bs)
503 /* The barrier (or an atomic op) is in the caller. */
504 if (atomic_read(&bs->wakeup)) {
505 aio_bh_schedule_oneshot(qemu_get_aio_context(), dummy_bh_cb, NULL);
509 void bdrv_dec_in_flight(BlockDriverState *bs)
511 atomic_dec(&bs->in_flight);
515 static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
517 BlockDriverState *bs = self->bs;
518 BdrvTrackedRequest *req;
522 if (!atomic_read(&bs->serialising_in_flight)) {
528 qemu_co_mutex_lock(&bs->reqs_lock);
529 QLIST_FOREACH(req, &bs->tracked_requests, list) {
530 if (req == self || (!req->serialising && !self->serialising)) {
533 if (tracked_request_overlaps(req, self->overlap_offset,
534 self->overlap_bytes))
536 /* Hitting this means there was a reentrant request, for
537 * example, a block driver issuing nested requests. This must
538 * never happen since it means deadlock.
540 assert(qemu_coroutine_self() != req->co);
542 /* If the request is already (indirectly) waiting for us, or
543 * will wait for us as soon as it wakes up, then just go on
544 * (instead of producing a deadlock in the former case). */
545 if (!req->waiting_for) {
546 self->waiting_for = req;
547 qemu_co_queue_wait(&req->wait_queue, &bs->reqs_lock);
548 self->waiting_for = NULL;
555 qemu_co_mutex_unlock(&bs->reqs_lock);
561 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
564 if (size > BDRV_REQUEST_MAX_SECTORS << BDRV_SECTOR_BITS) {
568 if (!bdrv_is_inserted(bs)) {
579 typedef struct RwCo {
585 BdrvRequestFlags flags;
588 static void coroutine_fn bdrv_rw_co_entry(void *opaque)
592 if (!rwco->is_write) {
593 rwco->ret = bdrv_co_preadv(rwco->child, rwco->offset,
594 rwco->qiov->size, rwco->qiov,
597 rwco->ret = bdrv_co_pwritev(rwco->child, rwco->offset,
598 rwco->qiov->size, rwco->qiov,
604 * Process a vectored synchronous request using coroutines
606 static int bdrv_prwv_co(BdrvChild *child, int64_t offset,
607 QEMUIOVector *qiov, bool is_write,
608 BdrvRequestFlags flags)
615 .is_write = is_write,
620 if (qemu_in_coroutine()) {
621 /* Fast-path if already in coroutine context */
622 bdrv_rw_co_entry(&rwco);
624 co = qemu_coroutine_create(bdrv_rw_co_entry, &rwco);
625 bdrv_coroutine_enter(child->bs, co);
626 BDRV_POLL_WHILE(child->bs, rwco.ret == NOT_DONE);
632 * Process a synchronous request using coroutines
634 static int bdrv_rw_co(BdrvChild *child, int64_t sector_num, uint8_t *buf,
635 int nb_sectors, bool is_write, BdrvRequestFlags flags)
639 .iov_base = (void *)buf,
640 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
643 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
647 qemu_iovec_init_external(&qiov, &iov, 1);
648 return bdrv_prwv_co(child, sector_num << BDRV_SECTOR_BITS,
649 &qiov, is_write, flags);
652 /* return < 0 if error. See bdrv_write() for the return codes */
653 int bdrv_read(BdrvChild *child, int64_t sector_num,
654 uint8_t *buf, int nb_sectors)
656 return bdrv_rw_co(child, sector_num, buf, nb_sectors, false, 0);
659 /* Return < 0 if error. Important errors are:
660 -EIO generic I/O error (may happen for all errors)
661 -ENOMEDIUM No media inserted.
662 -EINVAL Invalid sector number or nb_sectors
663 -EACCES Trying to write a read-only device
665 int bdrv_write(BdrvChild *child, int64_t sector_num,
666 const uint8_t *buf, int nb_sectors)
668 return bdrv_rw_co(child, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
671 int bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset,
672 int bytes, BdrvRequestFlags flags)
680 qemu_iovec_init_external(&qiov, &iov, 1);
681 return bdrv_prwv_co(child, offset, &qiov, true,
682 BDRV_REQ_ZERO_WRITE | flags);
686 * Completely zero out a block device with the help of bdrv_pwrite_zeroes.
687 * The operation is sped up by checking the block status and only writing
688 * zeroes to the device if they currently do not return zeroes. Optional
689 * flags are passed through to bdrv_pwrite_zeroes (e.g. BDRV_REQ_MAY_UNMAP,
692 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
694 int bdrv_make_zero(BdrvChild *child, BdrvRequestFlags flags)
696 int64_t target_sectors, ret, nb_sectors, sector_num = 0;
697 BlockDriverState *bs = child->bs;
698 BlockDriverState *file;
701 target_sectors = bdrv_nb_sectors(bs);
702 if (target_sectors < 0) {
703 return target_sectors;
707 nb_sectors = MIN(target_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
708 if (nb_sectors <= 0) {
711 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &n, &file);
713 error_report("error getting block status at sector %" PRId64 ": %s",
714 sector_num, strerror(-ret));
717 if (ret & BDRV_BLOCK_ZERO) {
721 ret = bdrv_pwrite_zeroes(child, sector_num << BDRV_SECTOR_BITS,
722 n << BDRV_SECTOR_BITS, flags);
724 error_report("error writing zeroes at sector %" PRId64 ": %s",
725 sector_num, strerror(-ret));
732 int bdrv_preadv(BdrvChild *child, int64_t offset, QEMUIOVector *qiov)
736 ret = bdrv_prwv_co(child, offset, qiov, false, 0);
744 int bdrv_pread(BdrvChild *child, int64_t offset, void *buf, int bytes)
748 .iov_base = (void *)buf,
756 qemu_iovec_init_external(&qiov, &iov, 1);
757 return bdrv_preadv(child, offset, &qiov);
760 int bdrv_pwritev(BdrvChild *child, int64_t offset, QEMUIOVector *qiov)
764 ret = bdrv_prwv_co(child, offset, qiov, true, 0);
772 int bdrv_pwrite(BdrvChild *child, int64_t offset, const void *buf, int bytes)
776 .iov_base = (void *) buf,
784 qemu_iovec_init_external(&qiov, &iov, 1);
785 return bdrv_pwritev(child, offset, &qiov);
789 * Writes to the file and ensures that no writes are reordered across this
790 * request (acts as a barrier)
792 * Returns 0 on success, -errno in error cases.
794 int bdrv_pwrite_sync(BdrvChild *child, int64_t offset,
795 const void *buf, int count)
799 ret = bdrv_pwrite(child, offset, buf, count);
804 ret = bdrv_flush(child->bs);
812 typedef struct CoroutineIOCompletion {
813 Coroutine *coroutine;
815 } CoroutineIOCompletion;
817 static void bdrv_co_io_em_complete(void *opaque, int ret)
819 CoroutineIOCompletion *co = opaque;
822 aio_co_wake(co->coroutine);
825 static int coroutine_fn bdrv_driver_preadv(BlockDriverState *bs,
826 uint64_t offset, uint64_t bytes,
827 QEMUIOVector *qiov, int flags)
829 BlockDriver *drv = bs->drv;
831 unsigned int nb_sectors;
833 assert(!(flags & ~BDRV_REQ_MASK));
835 if (drv->bdrv_co_preadv) {
836 return drv->bdrv_co_preadv(bs, offset, bytes, qiov, flags);
839 sector_num = offset >> BDRV_SECTOR_BITS;
840 nb_sectors = bytes >> BDRV_SECTOR_BITS;
842 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
843 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
844 assert((bytes >> BDRV_SECTOR_BITS) <= BDRV_REQUEST_MAX_SECTORS);
846 if (drv->bdrv_co_readv) {
847 return drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
850 CoroutineIOCompletion co = {
851 .coroutine = qemu_coroutine_self(),
854 acb = bs->drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
855 bdrv_co_io_em_complete, &co);
859 qemu_coroutine_yield();
865 static int coroutine_fn bdrv_driver_pwritev(BlockDriverState *bs,
866 uint64_t offset, uint64_t bytes,
867 QEMUIOVector *qiov, int flags)
869 BlockDriver *drv = bs->drv;
871 unsigned int nb_sectors;
874 assert(!(flags & ~BDRV_REQ_MASK));
876 if (drv->bdrv_co_pwritev) {
877 ret = drv->bdrv_co_pwritev(bs, offset, bytes, qiov,
878 flags & bs->supported_write_flags);
879 flags &= ~bs->supported_write_flags;
883 sector_num = offset >> BDRV_SECTOR_BITS;
884 nb_sectors = bytes >> BDRV_SECTOR_BITS;
886 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
887 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
888 assert((bytes >> BDRV_SECTOR_BITS) <= BDRV_REQUEST_MAX_SECTORS);
890 if (drv->bdrv_co_writev_flags) {
891 ret = drv->bdrv_co_writev_flags(bs, sector_num, nb_sectors, qiov,
892 flags & bs->supported_write_flags);
893 flags &= ~bs->supported_write_flags;
894 } else if (drv->bdrv_co_writev) {
895 assert(!bs->supported_write_flags);
896 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
899 CoroutineIOCompletion co = {
900 .coroutine = qemu_coroutine_self(),
903 acb = bs->drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
904 bdrv_co_io_em_complete, &co);
908 qemu_coroutine_yield();
914 if (ret == 0 && (flags & BDRV_REQ_FUA)) {
915 ret = bdrv_co_flush(bs);
921 static int coroutine_fn
922 bdrv_driver_pwritev_compressed(BlockDriverState *bs, uint64_t offset,
923 uint64_t bytes, QEMUIOVector *qiov)
925 BlockDriver *drv = bs->drv;
927 if (!drv->bdrv_co_pwritev_compressed) {
931 return drv->bdrv_co_pwritev_compressed(bs, offset, bytes, qiov);
934 static int coroutine_fn bdrv_co_do_copy_on_readv(BdrvChild *child,
935 int64_t offset, unsigned int bytes, QEMUIOVector *qiov)
937 BlockDriverState *bs = child->bs;
939 /* Perform I/O through a temporary buffer so that users who scribble over
940 * their read buffer while the operation is in progress do not end up
941 * modifying the image file. This is critical for zero-copy guest I/O
942 * where anything might happen inside guest memory.
946 BlockDriver *drv = bs->drv;
948 QEMUIOVector bounce_qiov;
949 int64_t cluster_offset;
950 unsigned int cluster_bytes;
954 /* FIXME We cannot require callers to have write permissions when all they
955 * are doing is a read request. If we did things right, write permissions
956 * would be obtained anyway, but internally by the copy-on-read code. As
957 * long as it is implemented here rather than in a separate filter driver,
958 * the copy-on-read code doesn't have its own BdrvChild, however, for which
959 * it could request permissions. Therefore we have to bypass the permission
960 * system for the moment. */
961 // assert(child->perm & (BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE));
963 /* Cover entire cluster so no additional backing file I/O is required when
964 * allocating cluster in the image file.
966 bdrv_round_to_clusters(bs, offset, bytes, &cluster_offset, &cluster_bytes);
968 trace_bdrv_co_do_copy_on_readv(bs, offset, bytes,
969 cluster_offset, cluster_bytes);
971 iov.iov_len = cluster_bytes;
972 iov.iov_base = bounce_buffer = qemu_try_blockalign(bs, iov.iov_len);
973 if (bounce_buffer == NULL) {
978 qemu_iovec_init_external(&bounce_qiov, &iov, 1);
980 ret = bdrv_driver_preadv(bs, cluster_offset, cluster_bytes,
986 if (drv->bdrv_co_pwrite_zeroes &&
987 buffer_is_zero(bounce_buffer, iov.iov_len)) {
988 /* FIXME: Should we (perhaps conditionally) be setting
989 * BDRV_REQ_MAY_UNMAP, if it will allow for a sparser copy
990 * that still correctly reads as zero? */
991 ret = bdrv_co_do_pwrite_zeroes(bs, cluster_offset, cluster_bytes, 0);
993 /* This does not change the data on the disk, it is not necessary
994 * to flush even in cache=writethrough mode.
996 ret = bdrv_driver_pwritev(bs, cluster_offset, cluster_bytes,
1001 /* It might be okay to ignore write errors for guest requests. If this
1002 * is a deliberate copy-on-read then we don't want to ignore the error.
1003 * Simply report it in all cases.
1008 skip_bytes = offset - cluster_offset;
1009 qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, bytes);
1012 qemu_vfree(bounce_buffer);
1017 * Forwards an already correctly aligned request to the BlockDriver. This
1018 * handles copy on read, zeroing after EOF, and fragmentation of large
1019 * reads; any other features must be implemented by the caller.
1021 static int coroutine_fn bdrv_aligned_preadv(BdrvChild *child,
1022 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
1023 int64_t align, QEMUIOVector *qiov, int flags)
1025 BlockDriverState *bs = child->bs;
1026 int64_t total_bytes, max_bytes;
1028 uint64_t bytes_remaining = bytes;
1031 assert(is_power_of_2(align));
1032 assert((offset & (align - 1)) == 0);
1033 assert((bytes & (align - 1)) == 0);
1034 assert(!qiov || bytes == qiov->size);
1035 assert((bs->open_flags & BDRV_O_NO_IO) == 0);
1036 max_transfer = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_transfer, INT_MAX),
1039 /* TODO: We would need a per-BDS .supported_read_flags and
1040 * potential fallback support, if we ever implement any read flags
1041 * to pass through to drivers. For now, there aren't any
1042 * passthrough flags. */
1043 assert(!(flags & ~(BDRV_REQ_NO_SERIALISING | BDRV_REQ_COPY_ON_READ)));
1045 /* Handle Copy on Read and associated serialisation */
1046 if (flags & BDRV_REQ_COPY_ON_READ) {
1047 /* If we touch the same cluster it counts as an overlap. This
1048 * guarantees that allocating writes will be serialized and not race
1049 * with each other for the same cluster. For example, in copy-on-read
1050 * it ensures that the CoR read and write operations are atomic and
1051 * guest writes cannot interleave between them. */
1052 mark_request_serialising(req, bdrv_get_cluster_size(bs));
1055 if (!(flags & BDRV_REQ_NO_SERIALISING)) {
1056 wait_serialising_requests(req);
1059 if (flags & BDRV_REQ_COPY_ON_READ) {
1060 /* TODO: Simplify further once bdrv_is_allocated no longer
1061 * requires sector alignment */
1062 int64_t start = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE);
1063 int64_t end = QEMU_ALIGN_UP(offset + bytes, BDRV_SECTOR_SIZE);
1066 ret = bdrv_is_allocated(bs, start, end - start, &pnum);
1071 if (!ret || pnum != end - start) {
1072 ret = bdrv_co_do_copy_on_readv(child, offset, bytes, qiov);
1077 /* Forward the request to the BlockDriver, possibly fragmenting it */
1078 total_bytes = bdrv_getlength(bs);
1079 if (total_bytes < 0) {
1084 max_bytes = ROUND_UP(MAX(0, total_bytes - offset), align);
1085 if (bytes <= max_bytes && bytes <= max_transfer) {
1086 ret = bdrv_driver_preadv(bs, offset, bytes, qiov, 0);
1090 while (bytes_remaining) {
1094 QEMUIOVector local_qiov;
1096 num = MIN(bytes_remaining, MIN(max_bytes, max_transfer));
1098 qemu_iovec_init(&local_qiov, qiov->niov);
1099 qemu_iovec_concat(&local_qiov, qiov, bytes - bytes_remaining, num);
1101 ret = bdrv_driver_preadv(bs, offset + bytes - bytes_remaining,
1102 num, &local_qiov, 0);
1104 qemu_iovec_destroy(&local_qiov);
1106 num = bytes_remaining;
1107 ret = qemu_iovec_memset(qiov, bytes - bytes_remaining, 0,
1113 bytes_remaining -= num;
1117 return ret < 0 ? ret : 0;
1121 * Handle a read request in coroutine context
1123 int coroutine_fn bdrv_co_preadv(BdrvChild *child,
1124 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
1125 BdrvRequestFlags flags)
1127 BlockDriverState *bs = child->bs;
1128 BlockDriver *drv = bs->drv;
1129 BdrvTrackedRequest req;
1131 uint64_t align = bs->bl.request_alignment;
1132 uint8_t *head_buf = NULL;
1133 uint8_t *tail_buf = NULL;
1134 QEMUIOVector local_qiov;
1135 bool use_local_qiov = false;
1138 trace_bdrv_co_preadv(child->bs, offset, bytes, flags);
1144 ret = bdrv_check_byte_request(bs, offset, bytes);
1149 bdrv_inc_in_flight(bs);
1151 /* Don't do copy-on-read if we read data before write operation */
1152 if (atomic_read(&bs->copy_on_read) && !(flags & BDRV_REQ_NO_SERIALISING)) {
1153 flags |= BDRV_REQ_COPY_ON_READ;
1156 /* Align read if necessary by padding qiov */
1157 if (offset & (align - 1)) {
1158 head_buf = qemu_blockalign(bs, align);
1159 qemu_iovec_init(&local_qiov, qiov->niov + 2);
1160 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
1161 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1162 use_local_qiov = true;
1164 bytes += offset & (align - 1);
1165 offset = offset & ~(align - 1);
1168 if ((offset + bytes) & (align - 1)) {
1169 if (!use_local_qiov) {
1170 qemu_iovec_init(&local_qiov, qiov->niov + 1);
1171 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1172 use_local_qiov = true;
1174 tail_buf = qemu_blockalign(bs, align);
1175 qemu_iovec_add(&local_qiov, tail_buf,
1176 align - ((offset + bytes) & (align - 1)));
1178 bytes = ROUND_UP(bytes, align);
1181 tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_READ);
1182 ret = bdrv_aligned_preadv(child, &req, offset, bytes, align,
1183 use_local_qiov ? &local_qiov : qiov,
1185 tracked_request_end(&req);
1186 bdrv_dec_in_flight(bs);
1188 if (use_local_qiov) {
1189 qemu_iovec_destroy(&local_qiov);
1190 qemu_vfree(head_buf);
1191 qemu_vfree(tail_buf);
1197 static int coroutine_fn bdrv_co_do_readv(BdrvChild *child,
1198 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
1199 BdrvRequestFlags flags)
1201 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
1205 return bdrv_co_preadv(child, sector_num << BDRV_SECTOR_BITS,
1206 nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
1209 int coroutine_fn bdrv_co_readv(BdrvChild *child, int64_t sector_num,
1210 int nb_sectors, QEMUIOVector *qiov)
1212 return bdrv_co_do_readv(child, sector_num, nb_sectors, qiov, 0);
1215 /* Maximum buffer for write zeroes fallback, in bytes */
1216 #define MAX_WRITE_ZEROES_BOUNCE_BUFFER (32768 << BDRV_SECTOR_BITS)
1218 static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
1219 int64_t offset, int bytes, BdrvRequestFlags flags)
1221 BlockDriver *drv = bs->drv;
1223 struct iovec iov = {0};
1225 bool need_flush = false;
1229 int max_write_zeroes = MIN_NON_ZERO(bs->bl.max_pwrite_zeroes, INT_MAX);
1230 int alignment = MAX(bs->bl.pwrite_zeroes_alignment,
1231 bs->bl.request_alignment);
1232 int max_transfer = MIN_NON_ZERO(bs->bl.max_transfer,
1233 MAX_WRITE_ZEROES_BOUNCE_BUFFER);
1235 assert(alignment % bs->bl.request_alignment == 0);
1236 head = offset % alignment;
1237 tail = (offset + bytes) % alignment;
1238 max_write_zeroes = QEMU_ALIGN_DOWN(max_write_zeroes, alignment);
1239 assert(max_write_zeroes >= bs->bl.request_alignment);
1241 while (bytes > 0 && !ret) {
1244 /* Align request. Block drivers can expect the "bulk" of the request
1245 * to be aligned, and that unaligned requests do not cross cluster
1249 /* Make a small request up to the first aligned sector. For
1250 * convenience, limit this request to max_transfer even if
1251 * we don't need to fall back to writes. */
1252 num = MIN(MIN(bytes, max_transfer), alignment - head);
1253 head = (head + num) % alignment;
1254 assert(num < max_write_zeroes);
1255 } else if (tail && num > alignment) {
1256 /* Shorten the request to the last aligned sector. */
1260 /* limit request size */
1261 if (num > max_write_zeroes) {
1262 num = max_write_zeroes;
1266 /* First try the efficient write zeroes operation */
1267 if (drv->bdrv_co_pwrite_zeroes) {
1268 ret = drv->bdrv_co_pwrite_zeroes(bs, offset, num,
1269 flags & bs->supported_zero_flags);
1270 if (ret != -ENOTSUP && (flags & BDRV_REQ_FUA) &&
1271 !(bs->supported_zero_flags & BDRV_REQ_FUA)) {
1275 assert(!bs->supported_zero_flags);
1278 if (ret == -ENOTSUP) {
1279 /* Fall back to bounce buffer if write zeroes is unsupported */
1280 BdrvRequestFlags write_flags = flags & ~BDRV_REQ_ZERO_WRITE;
1282 if ((flags & BDRV_REQ_FUA) &&
1283 !(bs->supported_write_flags & BDRV_REQ_FUA)) {
1284 /* No need for bdrv_driver_pwrite() to do a fallback
1285 * flush on each chunk; use just one at the end */
1286 write_flags &= ~BDRV_REQ_FUA;
1289 num = MIN(num, max_transfer);
1291 if (iov.iov_base == NULL) {
1292 iov.iov_base = qemu_try_blockalign(bs, num);
1293 if (iov.iov_base == NULL) {
1297 memset(iov.iov_base, 0, num);
1299 qemu_iovec_init_external(&qiov, &iov, 1);
1301 ret = bdrv_driver_pwritev(bs, offset, num, &qiov, write_flags);
1303 /* Keep bounce buffer around if it is big enough for all
1304 * all future requests.
1306 if (num < max_transfer) {
1307 qemu_vfree(iov.iov_base);
1308 iov.iov_base = NULL;
1317 if (ret == 0 && need_flush) {
1318 ret = bdrv_co_flush(bs);
1320 qemu_vfree(iov.iov_base);
1325 * Forwards an already correctly aligned write request to the BlockDriver,
1326 * after possibly fragmenting it.
1328 static int coroutine_fn bdrv_aligned_pwritev(BdrvChild *child,
1329 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
1330 int64_t align, QEMUIOVector *qiov, int flags)
1332 BlockDriverState *bs = child->bs;
1333 BlockDriver *drv = bs->drv;
1337 int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE);
1338 uint64_t bytes_remaining = bytes;
1341 if (bdrv_has_readonly_bitmaps(bs)) {
1345 assert(is_power_of_2(align));
1346 assert((offset & (align - 1)) == 0);
1347 assert((bytes & (align - 1)) == 0);
1348 assert(!qiov || bytes == qiov->size);
1349 assert((bs->open_flags & BDRV_O_NO_IO) == 0);
1350 assert(!(flags & ~BDRV_REQ_MASK));
1351 max_transfer = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_transfer, INT_MAX),
1354 waited = wait_serialising_requests(req);
1355 assert(!waited || !req->serialising);
1356 assert(req->overlap_offset <= offset);
1357 assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);
1358 assert(child->perm & BLK_PERM_WRITE);
1359 assert(end_sector <= bs->total_sectors || child->perm & BLK_PERM_RESIZE);
1361 ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req);
1363 if (!ret && bs->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF &&
1364 !(flags & BDRV_REQ_ZERO_WRITE) && drv->bdrv_co_pwrite_zeroes &&
1365 qemu_iovec_is_zero(qiov)) {
1366 flags |= BDRV_REQ_ZERO_WRITE;
1367 if (bs->detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP) {
1368 flags |= BDRV_REQ_MAY_UNMAP;
1373 /* Do nothing, write notifier decided to fail this request */
1374 } else if (flags & BDRV_REQ_ZERO_WRITE) {
1375 bdrv_debug_event(bs, BLKDBG_PWRITEV_ZERO);
1376 ret = bdrv_co_do_pwrite_zeroes(bs, offset, bytes, flags);
1377 } else if (flags & BDRV_REQ_WRITE_COMPRESSED) {
1378 ret = bdrv_driver_pwritev_compressed(bs, offset, bytes, qiov);
1379 } else if (bytes <= max_transfer) {
1380 bdrv_debug_event(bs, BLKDBG_PWRITEV);
1381 ret = bdrv_driver_pwritev(bs, offset, bytes, qiov, flags);
1383 bdrv_debug_event(bs, BLKDBG_PWRITEV);
1384 while (bytes_remaining) {
1385 int num = MIN(bytes_remaining, max_transfer);
1386 QEMUIOVector local_qiov;
1387 int local_flags = flags;
1390 if (num < bytes_remaining && (flags & BDRV_REQ_FUA) &&
1391 !(bs->supported_write_flags & BDRV_REQ_FUA)) {
1392 /* If FUA is going to be emulated by flush, we only
1393 * need to flush on the last iteration */
1394 local_flags &= ~BDRV_REQ_FUA;
1396 qemu_iovec_init(&local_qiov, qiov->niov);
1397 qemu_iovec_concat(&local_qiov, qiov, bytes - bytes_remaining, num);
1399 ret = bdrv_driver_pwritev(bs, offset + bytes - bytes_remaining,
1400 num, &local_qiov, local_flags);
1401 qemu_iovec_destroy(&local_qiov);
1405 bytes_remaining -= num;
1408 bdrv_debug_event(bs, BLKDBG_PWRITEV_DONE);
1410 atomic_inc(&bs->write_gen);
1411 bdrv_set_dirty(bs, offset, bytes);
1413 stat64_max(&bs->wr_highest_offset, offset + bytes);
1416 bs->total_sectors = MAX(bs->total_sectors, end_sector);
1423 static int coroutine_fn bdrv_co_do_zero_pwritev(BdrvChild *child,
1426 BdrvRequestFlags flags,
1427 BdrvTrackedRequest *req)
1429 BlockDriverState *bs = child->bs;
1430 uint8_t *buf = NULL;
1431 QEMUIOVector local_qiov;
1433 uint64_t align = bs->bl.request_alignment;
1434 unsigned int head_padding_bytes, tail_padding_bytes;
1437 head_padding_bytes = offset & (align - 1);
1438 tail_padding_bytes = (align - (offset + bytes)) & (align - 1);
1441 assert(flags & BDRV_REQ_ZERO_WRITE);
1442 if (head_padding_bytes || tail_padding_bytes) {
1443 buf = qemu_blockalign(bs, align);
1444 iov = (struct iovec) {
1448 qemu_iovec_init_external(&local_qiov, &iov, 1);
1450 if (head_padding_bytes) {
1451 uint64_t zero_bytes = MIN(bytes, align - head_padding_bytes);
1453 /* RMW the unaligned part before head. */
1454 mark_request_serialising(req, align);
1455 wait_serialising_requests(req);
1456 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_HEAD);
1457 ret = bdrv_aligned_preadv(child, req, offset & ~(align - 1), align,
1458 align, &local_qiov, 0);
1462 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
1464 memset(buf + head_padding_bytes, 0, zero_bytes);
1465 ret = bdrv_aligned_pwritev(child, req, offset & ~(align - 1), align,
1467 flags & ~BDRV_REQ_ZERO_WRITE);
1471 offset += zero_bytes;
1472 bytes -= zero_bytes;
1475 assert(!bytes || (offset & (align - 1)) == 0);
1476 if (bytes >= align) {
1477 /* Write the aligned part in the middle. */
1478 uint64_t aligned_bytes = bytes & ~(align - 1);
1479 ret = bdrv_aligned_pwritev(child, req, offset, aligned_bytes, align,
1484 bytes -= aligned_bytes;
1485 offset += aligned_bytes;
1488 assert(!bytes || (offset & (align - 1)) == 0);
1490 assert(align == tail_padding_bytes + bytes);
1491 /* RMW the unaligned part after tail. */
1492 mark_request_serialising(req, align);
1493 wait_serialising_requests(req);
1494 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_TAIL);
1495 ret = bdrv_aligned_preadv(child, req, offset, align,
1496 align, &local_qiov, 0);
1500 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
1502 memset(buf, 0, bytes);
1503 ret = bdrv_aligned_pwritev(child, req, offset, align, align,
1504 &local_qiov, flags & ~BDRV_REQ_ZERO_WRITE);
1513 * Handle a write request in coroutine context
1515 int coroutine_fn bdrv_co_pwritev(BdrvChild *child,
1516 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
1517 BdrvRequestFlags flags)
1519 BlockDriverState *bs = child->bs;
1520 BdrvTrackedRequest req;
1521 uint64_t align = bs->bl.request_alignment;
1522 uint8_t *head_buf = NULL;
1523 uint8_t *tail_buf = NULL;
1524 QEMUIOVector local_qiov;
1525 bool use_local_qiov = false;
1528 trace_bdrv_co_pwritev(child->bs, offset, bytes, flags);
1533 if (bs->read_only) {
1536 assert(!(bs->open_flags & BDRV_O_INACTIVE));
1538 ret = bdrv_check_byte_request(bs, offset, bytes);
1543 bdrv_inc_in_flight(bs);
1545 * Align write if necessary by performing a read-modify-write cycle.
1546 * Pad qiov with the read parts and be sure to have a tracked request not
1547 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
1549 tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_WRITE);
1552 ret = bdrv_co_do_zero_pwritev(child, offset, bytes, flags, &req);
1556 if (offset & (align - 1)) {
1557 QEMUIOVector head_qiov;
1558 struct iovec head_iov;
1560 mark_request_serialising(&req, align);
1561 wait_serialising_requests(&req);
1563 head_buf = qemu_blockalign(bs, align);
1564 head_iov = (struct iovec) {
1565 .iov_base = head_buf,
1568 qemu_iovec_init_external(&head_qiov, &head_iov, 1);
1570 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_HEAD);
1571 ret = bdrv_aligned_preadv(child, &req, offset & ~(align - 1), align,
1572 align, &head_qiov, 0);
1576 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
1578 qemu_iovec_init(&local_qiov, qiov->niov + 2);
1579 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
1580 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1581 use_local_qiov = true;
1583 bytes += offset & (align - 1);
1584 offset = offset & ~(align - 1);
1586 /* We have read the tail already if the request is smaller
1587 * than one aligned block.
1589 if (bytes < align) {
1590 qemu_iovec_add(&local_qiov, head_buf + bytes, align - bytes);
1595 if ((offset + bytes) & (align - 1)) {
1596 QEMUIOVector tail_qiov;
1597 struct iovec tail_iov;
1601 mark_request_serialising(&req, align);
1602 waited = wait_serialising_requests(&req);
1603 assert(!waited || !use_local_qiov);
1605 tail_buf = qemu_blockalign(bs, align);
1606 tail_iov = (struct iovec) {
1607 .iov_base = tail_buf,
1610 qemu_iovec_init_external(&tail_qiov, &tail_iov, 1);
1612 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_TAIL);
1613 ret = bdrv_aligned_preadv(child, &req, (offset + bytes) & ~(align - 1),
1614 align, align, &tail_qiov, 0);
1618 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
1620 if (!use_local_qiov) {
1621 qemu_iovec_init(&local_qiov, qiov->niov + 1);
1622 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1623 use_local_qiov = true;
1626 tail_bytes = (offset + bytes) & (align - 1);
1627 qemu_iovec_add(&local_qiov, tail_buf + tail_bytes, align - tail_bytes);
1629 bytes = ROUND_UP(bytes, align);
1632 ret = bdrv_aligned_pwritev(child, &req, offset, bytes, align,
1633 use_local_qiov ? &local_qiov : qiov,
1638 if (use_local_qiov) {
1639 qemu_iovec_destroy(&local_qiov);
1641 qemu_vfree(head_buf);
1642 qemu_vfree(tail_buf);
1644 tracked_request_end(&req);
1645 bdrv_dec_in_flight(bs);
1649 static int coroutine_fn bdrv_co_do_writev(BdrvChild *child,
1650 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
1651 BdrvRequestFlags flags)
1653 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
1657 return bdrv_co_pwritev(child, sector_num << BDRV_SECTOR_BITS,
1658 nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
1661 int coroutine_fn bdrv_co_writev(BdrvChild *child, int64_t sector_num,
1662 int nb_sectors, QEMUIOVector *qiov)
1664 return bdrv_co_do_writev(child, sector_num, nb_sectors, qiov, 0);
1667 int coroutine_fn bdrv_co_pwrite_zeroes(BdrvChild *child, int64_t offset,
1668 int bytes, BdrvRequestFlags flags)
1670 trace_bdrv_co_pwrite_zeroes(child->bs, offset, bytes, flags);
1672 if (!(child->bs->open_flags & BDRV_O_UNMAP)) {
1673 flags &= ~BDRV_REQ_MAY_UNMAP;
1676 return bdrv_co_pwritev(child, offset, bytes, NULL,
1677 BDRV_REQ_ZERO_WRITE | flags);
1681 * Flush ALL BDSes regardless of if they are reachable via a BlkBackend or not.
1683 int bdrv_flush_all(void)
1685 BdrvNextIterator it;
1686 BlockDriverState *bs = NULL;
1689 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
1690 AioContext *aio_context = bdrv_get_aio_context(bs);
1693 aio_context_acquire(aio_context);
1694 ret = bdrv_flush(bs);
1695 if (ret < 0 && !result) {
1698 aio_context_release(aio_context);
1705 typedef struct BdrvCoGetBlockStatusData {
1706 BlockDriverState *bs;
1707 BlockDriverState *base;
1708 BlockDriverState **file;
1714 } BdrvCoGetBlockStatusData;
1716 int64_t coroutine_fn bdrv_co_get_block_status_from_file(BlockDriverState *bs,
1720 BlockDriverState **file)
1722 assert(bs->file && bs->file->bs);
1724 *file = bs->file->bs;
1725 return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID |
1726 (sector_num << BDRV_SECTOR_BITS);
1729 int64_t coroutine_fn bdrv_co_get_block_status_from_backing(BlockDriverState *bs,
1733 BlockDriverState **file)
1735 assert(bs->backing && bs->backing->bs);
1737 *file = bs->backing->bs;
1738 return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID |
1739 (sector_num << BDRV_SECTOR_BITS);
1743 * Returns the allocation status of the specified sectors.
1744 * Drivers not implementing the functionality are assumed to not support
1745 * backing files, hence all their sectors are reported as allocated.
1747 * If 'sector_num' is beyond the end of the disk image the return value is
1748 * BDRV_BLOCK_EOF and 'pnum' is set to 0.
1750 * 'pnum' is set to the number of sectors (including and immediately following
1751 * the specified sector) that are known to be in the same
1752 * allocated/unallocated state.
1754 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1755 * beyond the end of the disk image it will be clamped; if 'pnum' is set to
1756 * the end of the image, then the returned value will include BDRV_BLOCK_EOF.
1758 * If returned value is positive and BDRV_BLOCK_OFFSET_VALID bit is set, 'file'
1759 * points to the BDS which the sector range is allocated in.
1761 static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
1763 int nb_sectors, int *pnum,
1764 BlockDriverState **file)
1766 int64_t total_sectors;
1771 total_sectors = bdrv_nb_sectors(bs);
1772 if (total_sectors < 0) {
1773 return total_sectors;
1776 if (sector_num >= total_sectors) {
1778 return BDRV_BLOCK_EOF;
1781 n = total_sectors - sector_num;
1782 if (n < nb_sectors) {
1786 if (!bs->drv->bdrv_co_get_block_status) {
1788 ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED;
1789 if (sector_num + nb_sectors == total_sectors) {
1790 ret |= BDRV_BLOCK_EOF;
1792 if (bs->drv->protocol_name) {
1793 ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE);
1799 bdrv_inc_in_flight(bs);
1800 ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum,
1807 if (ret & BDRV_BLOCK_RAW) {
1808 assert(ret & BDRV_BLOCK_OFFSET_VALID && *file);
1809 ret = bdrv_co_get_block_status(*file, ret >> BDRV_SECTOR_BITS,
1814 if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) {
1815 ret |= BDRV_BLOCK_ALLOCATED;
1817 if (bdrv_unallocated_blocks_are_zero(bs)) {
1818 ret |= BDRV_BLOCK_ZERO;
1819 } else if (bs->backing) {
1820 BlockDriverState *bs2 = bs->backing->bs;
1821 int64_t nb_sectors2 = bdrv_nb_sectors(bs2);
1822 if (nb_sectors2 >= 0 && sector_num >= nb_sectors2) {
1823 ret |= BDRV_BLOCK_ZERO;
1828 if (*file && *file != bs &&
1829 (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
1830 (ret & BDRV_BLOCK_OFFSET_VALID)) {
1831 BlockDriverState *file2;
1834 ret2 = bdrv_co_get_block_status(*file, ret >> BDRV_SECTOR_BITS,
1835 *pnum, &file_pnum, &file2);
1837 /* Ignore errors. This is just providing extra information, it
1838 * is useful but not necessary.
1840 if (ret2 & BDRV_BLOCK_EOF &&
1841 (!file_pnum || ret2 & BDRV_BLOCK_ZERO)) {
1843 * It is valid for the format block driver to read
1844 * beyond the end of the underlying file's current
1845 * size; such areas read as zero.
1847 ret |= BDRV_BLOCK_ZERO;
1849 /* Limit request to the range reported by the protocol driver */
1851 ret |= (ret2 & BDRV_BLOCK_ZERO);
1857 bdrv_dec_in_flight(bs);
1858 if (ret >= 0 && sector_num + *pnum == total_sectors) {
1859 ret |= BDRV_BLOCK_EOF;
1864 static int64_t coroutine_fn bdrv_co_get_block_status_above(BlockDriverState *bs,
1865 BlockDriverState *base,
1869 BlockDriverState **file)
1871 BlockDriverState *p;
1876 for (p = bs; p != base; p = backing_bs(p)) {
1877 ret = bdrv_co_get_block_status(p, sector_num, nb_sectors, pnum, file);
1881 if (ret & BDRV_BLOCK_ZERO && ret & BDRV_BLOCK_EOF && !first) {
1883 * Reading beyond the end of the file continues to read
1884 * zeroes, but we can only widen the result to the
1885 * unallocated length we learned from an earlier
1890 if (ret & (BDRV_BLOCK_ZERO | BDRV_BLOCK_DATA)) {
1893 /* [sector_num, pnum] unallocated on this layer, which could be only
1894 * the first part of [sector_num, nb_sectors]. */
1895 nb_sectors = MIN(nb_sectors, *pnum);
1901 /* Coroutine wrapper for bdrv_get_block_status_above() */
1902 static void coroutine_fn bdrv_get_block_status_above_co_entry(void *opaque)
1904 BdrvCoGetBlockStatusData *data = opaque;
1906 data->ret = bdrv_co_get_block_status_above(data->bs, data->base,
1915 * Synchronous wrapper around bdrv_co_get_block_status_above().
1917 * See bdrv_co_get_block_status_above() for details.
1919 int64_t bdrv_get_block_status_above(BlockDriverState *bs,
1920 BlockDriverState *base,
1922 int nb_sectors, int *pnum,
1923 BlockDriverState **file)
1926 BdrvCoGetBlockStatusData data = {
1930 .sector_num = sector_num,
1931 .nb_sectors = nb_sectors,
1936 if (qemu_in_coroutine()) {
1937 /* Fast-path if already in coroutine context */
1938 bdrv_get_block_status_above_co_entry(&data);
1940 co = qemu_coroutine_create(bdrv_get_block_status_above_co_entry,
1942 bdrv_coroutine_enter(bs, co);
1943 BDRV_POLL_WHILE(bs, !data.done);
1948 int64_t bdrv_get_block_status(BlockDriverState *bs,
1950 int nb_sectors, int *pnum,
1951 BlockDriverState **file)
1953 return bdrv_get_block_status_above(bs, backing_bs(bs),
1954 sector_num, nb_sectors, pnum, file);
1957 int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t offset,
1958 int64_t bytes, int64_t *pnum)
1960 BlockDriverState *file;
1961 int64_t sector_num = offset >> BDRV_SECTOR_BITS;
1962 int nb_sectors = bytes >> BDRV_SECTOR_BITS;
1966 assert(QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE));
1967 assert(QEMU_IS_ALIGNED(bytes, BDRV_SECTOR_SIZE) && bytes < INT_MAX);
1968 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &psectors,
1974 *pnum = psectors * BDRV_SECTOR_SIZE;
1976 return !!(ret & BDRV_BLOCK_ALLOCATED);
1980 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
1982 * Return true if (a prefix of) the given range is allocated in any image
1983 * between BASE and TOP (inclusive). BASE can be NULL to check if the given
1984 * offset is allocated in any image of the chain. Return false otherwise,
1985 * or negative errno on failure.
1987 * 'pnum' is set to the number of bytes (including and immediately
1988 * following the specified offset) that are known to be in the same
1989 * allocated/unallocated state. Note that a subsequent call starting
1990 * at 'offset + *pnum' may return the same allocation status (in other
1991 * words, the result is not necessarily the maximum possible range);
1992 * but 'pnum' will only be 0 when end of file is reached.
1995 int bdrv_is_allocated_above(BlockDriverState *top,
1996 BlockDriverState *base,
1997 int64_t offset, int64_t bytes, int64_t *pnum)
1999 BlockDriverState *intermediate;
2004 while (intermediate && intermediate != base) {
2008 ret = bdrv_is_allocated(intermediate, offset, bytes, &pnum_inter);
2017 size_inter = bdrv_getlength(intermediate);
2018 if (size_inter < 0) {
2021 if (n > pnum_inter &&
2022 (intermediate == top || offset + pnum_inter < size_inter)) {
2026 intermediate = backing_bs(intermediate);
2033 typedef struct BdrvVmstateCo {
2034 BlockDriverState *bs;
2041 static int coroutine_fn
2042 bdrv_co_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
2045 BlockDriver *drv = bs->drv;
2048 bdrv_inc_in_flight(bs);
2052 } else if (drv->bdrv_load_vmstate) {
2054 ret = drv->bdrv_load_vmstate(bs, qiov, pos);
2056 ret = drv->bdrv_save_vmstate(bs, qiov, pos);
2058 } else if (bs->file) {
2059 ret = bdrv_co_rw_vmstate(bs->file->bs, qiov, pos, is_read);
2062 bdrv_dec_in_flight(bs);
2066 static void coroutine_fn bdrv_co_rw_vmstate_entry(void *opaque)
2068 BdrvVmstateCo *co = opaque;
2069 co->ret = bdrv_co_rw_vmstate(co->bs, co->qiov, co->pos, co->is_read);
2073 bdrv_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
2076 if (qemu_in_coroutine()) {
2077 return bdrv_co_rw_vmstate(bs, qiov, pos, is_read);
2079 BdrvVmstateCo data = {
2084 .ret = -EINPROGRESS,
2086 Coroutine *co = qemu_coroutine_create(bdrv_co_rw_vmstate_entry, &data);
2088 bdrv_coroutine_enter(bs, co);
2089 BDRV_POLL_WHILE(bs, data.ret == -EINPROGRESS);
2094 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
2095 int64_t pos, int size)
2098 struct iovec iov = {
2099 .iov_base = (void *) buf,
2104 qemu_iovec_init_external(&qiov, &iov, 1);
2106 ret = bdrv_writev_vmstate(bs, &qiov, pos);
2114 int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
2116 return bdrv_rw_vmstate(bs, qiov, pos, false);
2119 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
2120 int64_t pos, int size)
2123 struct iovec iov = {
2129 qemu_iovec_init_external(&qiov, &iov, 1);
2130 ret = bdrv_readv_vmstate(bs, &qiov, pos);
2138 int bdrv_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
2140 return bdrv_rw_vmstate(bs, qiov, pos, true);
2143 /**************************************************************/
2146 void bdrv_aio_cancel(BlockAIOCB *acb)
2149 bdrv_aio_cancel_async(acb);
2150 while (acb->refcnt > 1) {
2151 if (acb->aiocb_info->get_aio_context) {
2152 aio_poll(acb->aiocb_info->get_aio_context(acb), true);
2153 } else if (acb->bs) {
2154 /* qemu_aio_ref and qemu_aio_unref are not thread-safe, so
2155 * assert that we're not using an I/O thread. Thread-safe
2156 * code should use bdrv_aio_cancel_async exclusively.
2158 assert(bdrv_get_aio_context(acb->bs) == qemu_get_aio_context());
2159 aio_poll(bdrv_get_aio_context(acb->bs), true);
2164 qemu_aio_unref(acb);
2167 /* Async version of aio cancel. The caller is not blocked if the acb implements
2168 * cancel_async, otherwise we do nothing and let the request normally complete.
2169 * In either case the completion callback must be called. */
2170 void bdrv_aio_cancel_async(BlockAIOCB *acb)
2172 if (acb->aiocb_info->cancel_async) {
2173 acb->aiocb_info->cancel_async(acb);
2177 /**************************************************************/
2178 /* Coroutine block device emulation */
2180 typedef struct FlushCo {
2181 BlockDriverState *bs;
2186 static void coroutine_fn bdrv_flush_co_entry(void *opaque)
2188 FlushCo *rwco = opaque;
2190 rwco->ret = bdrv_co_flush(rwco->bs);
2193 int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
2198 bdrv_inc_in_flight(bs);
2200 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs) ||
2205 qemu_co_mutex_lock(&bs->reqs_lock);
2206 current_gen = atomic_read(&bs->write_gen);
2208 /* Wait until any previous flushes are completed */
2209 while (bs->active_flush_req) {
2210 qemu_co_queue_wait(&bs->flush_queue, &bs->reqs_lock);
2213 /* Flushes reach this point in nondecreasing current_gen order. */
2214 bs->active_flush_req = true;
2215 qemu_co_mutex_unlock(&bs->reqs_lock);
2217 /* Write back all layers by calling one driver function */
2218 if (bs->drv->bdrv_co_flush) {
2219 ret = bs->drv->bdrv_co_flush(bs);
2223 /* Write back cached data to the OS even with cache=unsafe */
2224 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
2225 if (bs->drv->bdrv_co_flush_to_os) {
2226 ret = bs->drv->bdrv_co_flush_to_os(bs);
2232 /* But don't actually force it to the disk with cache=unsafe */
2233 if (bs->open_flags & BDRV_O_NO_FLUSH) {
2237 /* Check if we really need to flush anything */
2238 if (bs->flushed_gen == current_gen) {
2242 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
2243 if (bs->drv->bdrv_co_flush_to_disk) {
2244 ret = bs->drv->bdrv_co_flush_to_disk(bs);
2245 } else if (bs->drv->bdrv_aio_flush) {
2247 CoroutineIOCompletion co = {
2248 .coroutine = qemu_coroutine_self(),
2251 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
2255 qemu_coroutine_yield();
2260 * Some block drivers always operate in either writethrough or unsafe
2261 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
2262 * know how the server works (because the behaviour is hardcoded or
2263 * depends on server-side configuration), so we can't ensure that
2264 * everything is safe on disk. Returning an error doesn't work because
2265 * that would break guests even if the server operates in writethrough
2268 * Let's hope the user knows what he's doing.
2277 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
2278 * in the case of cache=unsafe, so there are no useless flushes.
2281 ret = bs->file ? bdrv_co_flush(bs->file->bs) : 0;
2283 /* Notify any pending flushes that we have completed */
2285 bs->flushed_gen = current_gen;
2288 qemu_co_mutex_lock(&bs->reqs_lock);
2289 bs->active_flush_req = false;
2290 /* Return value is ignored - it's ok if wait queue is empty */
2291 qemu_co_queue_next(&bs->flush_queue);
2292 qemu_co_mutex_unlock(&bs->reqs_lock);
2295 bdrv_dec_in_flight(bs);
2299 int bdrv_flush(BlockDriverState *bs)
2302 FlushCo flush_co = {
2307 if (qemu_in_coroutine()) {
2308 /* Fast-path if already in coroutine context */
2309 bdrv_flush_co_entry(&flush_co);
2311 co = qemu_coroutine_create(bdrv_flush_co_entry, &flush_co);
2312 bdrv_coroutine_enter(bs, co);
2313 BDRV_POLL_WHILE(bs, flush_co.ret == NOT_DONE);
2316 return flush_co.ret;
2319 typedef struct DiscardCo {
2320 BlockDriverState *bs;
2325 static void coroutine_fn bdrv_pdiscard_co_entry(void *opaque)
2327 DiscardCo *rwco = opaque;
2329 rwco->ret = bdrv_co_pdiscard(rwco->bs, rwco->offset, rwco->bytes);
2332 int coroutine_fn bdrv_co_pdiscard(BlockDriverState *bs, int64_t offset,
2335 BdrvTrackedRequest req;
2336 int max_pdiscard, ret;
2337 int head, tail, align;
2343 if (bdrv_has_readonly_bitmaps(bs)) {
2347 ret = bdrv_check_byte_request(bs, offset, bytes);
2350 } else if (bs->read_only) {
2353 assert(!(bs->open_flags & BDRV_O_INACTIVE));
2355 /* Do nothing if disabled. */
2356 if (!(bs->open_flags & BDRV_O_UNMAP)) {
2360 if (!bs->drv->bdrv_co_pdiscard && !bs->drv->bdrv_aio_pdiscard) {
2364 /* Discard is advisory, but some devices track and coalesce
2365 * unaligned requests, so we must pass everything down rather than
2366 * round here. Still, most devices will just silently ignore
2367 * unaligned requests (by returning -ENOTSUP), so we must fragment
2368 * the request accordingly. */
2369 align = MAX(bs->bl.pdiscard_alignment, bs->bl.request_alignment);
2370 assert(align % bs->bl.request_alignment == 0);
2371 head = offset % align;
2372 tail = (offset + bytes) % align;
2374 bdrv_inc_in_flight(bs);
2375 tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_DISCARD);
2377 ret = notifier_with_return_list_notify(&bs->before_write_notifiers, &req);
2382 max_pdiscard = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_pdiscard, INT_MAX),
2384 assert(max_pdiscard >= bs->bl.request_alignment);
2390 /* Make small requests to get to alignment boundaries. */
2391 num = MIN(bytes, align - head);
2392 if (!QEMU_IS_ALIGNED(num, bs->bl.request_alignment)) {
2393 num %= bs->bl.request_alignment;
2395 head = (head + num) % align;
2396 assert(num < max_pdiscard);
2399 /* Shorten the request to the last aligned cluster. */
2401 } else if (!QEMU_IS_ALIGNED(tail, bs->bl.request_alignment) &&
2402 tail > bs->bl.request_alignment) {
2403 tail %= bs->bl.request_alignment;
2407 /* limit request size */
2408 if (num > max_pdiscard) {
2412 if (bs->drv->bdrv_co_pdiscard) {
2413 ret = bs->drv->bdrv_co_pdiscard(bs, offset, num);
2416 CoroutineIOCompletion co = {
2417 .coroutine = qemu_coroutine_self(),
2420 acb = bs->drv->bdrv_aio_pdiscard(bs, offset, num,
2421 bdrv_co_io_em_complete, &co);
2426 qemu_coroutine_yield();
2430 if (ret && ret != -ENOTSUP) {
2439 atomic_inc(&bs->write_gen);
2440 bdrv_set_dirty(bs, req.offset, req.bytes);
2441 tracked_request_end(&req);
2442 bdrv_dec_in_flight(bs);
2446 int bdrv_pdiscard(BlockDriverState *bs, int64_t offset, int bytes)
2456 if (qemu_in_coroutine()) {
2457 /* Fast-path if already in coroutine context */
2458 bdrv_pdiscard_co_entry(&rwco);
2460 co = qemu_coroutine_create(bdrv_pdiscard_co_entry, &rwco);
2461 bdrv_coroutine_enter(bs, co);
2462 BDRV_POLL_WHILE(bs, rwco.ret == NOT_DONE);
2468 int bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf)
2470 BlockDriver *drv = bs->drv;
2471 CoroutineIOCompletion co = {
2472 .coroutine = qemu_coroutine_self(),
2476 bdrv_inc_in_flight(bs);
2477 if (!drv || (!drv->bdrv_aio_ioctl && !drv->bdrv_co_ioctl)) {
2482 if (drv->bdrv_co_ioctl) {
2483 co.ret = drv->bdrv_co_ioctl(bs, req, buf);
2485 acb = drv->bdrv_aio_ioctl(bs, req, buf, bdrv_co_io_em_complete, &co);
2490 qemu_coroutine_yield();
2493 bdrv_dec_in_flight(bs);
2497 void *qemu_blockalign(BlockDriverState *bs, size_t size)
2499 return qemu_memalign(bdrv_opt_mem_align(bs), size);
2502 void *qemu_blockalign0(BlockDriverState *bs, size_t size)
2504 return memset(qemu_blockalign(bs, size), 0, size);
2507 void *qemu_try_blockalign(BlockDriverState *bs, size_t size)
2509 size_t align = bdrv_opt_mem_align(bs);
2511 /* Ensure that NULL is never returned on success */
2517 return qemu_try_memalign(align, size);
2520 void *qemu_try_blockalign0(BlockDriverState *bs, size_t size)
2522 void *mem = qemu_try_blockalign(bs, size);
2525 memset(mem, 0, size);
2532 * Check if all memory in this vector is sector aligned.
2534 bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
2537 size_t alignment = bdrv_min_mem_align(bs);
2539 for (i = 0; i < qiov->niov; i++) {
2540 if ((uintptr_t) qiov->iov[i].iov_base % alignment) {
2543 if (qiov->iov[i].iov_len % alignment) {
2551 void bdrv_add_before_write_notifier(BlockDriverState *bs,
2552 NotifierWithReturn *notifier)
2554 notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
2557 void bdrv_io_plug(BlockDriverState *bs)
2561 QLIST_FOREACH(child, &bs->children, next) {
2562 bdrv_io_plug(child->bs);
2565 if (atomic_fetch_inc(&bs->io_plugged) == 0) {
2566 BlockDriver *drv = bs->drv;
2567 if (drv && drv->bdrv_io_plug) {
2568 drv->bdrv_io_plug(bs);
2573 void bdrv_io_unplug(BlockDriverState *bs)
2577 assert(bs->io_plugged);
2578 if (atomic_fetch_dec(&bs->io_plugged) == 1) {
2579 BlockDriver *drv = bs->drv;
2580 if (drv && drv->bdrv_io_unplug) {
2581 drv->bdrv_io_unplug(bs);
2585 QLIST_FOREACH(child, &bs->children, next) {
2586 bdrv_io_unplug(child->bs);