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/aio-wait.h"
29 #include "block/blockjob.h"
30 #include "block/blockjob_int.h"
31 #include "block/block_int.h"
32 #include "block/coroutines.h"
33 #include "block/dirty-bitmap.h"
34 #include "block/write-threshold.h"
35 #include "qemu/cutils.h"
36 #include "qemu/memalign.h"
37 #include "qapi/error.h"
38 #include "qemu/error-report.h"
39 #include "qemu/main-loop.h"
40 #include "sysemu/replay.h"
42 /* Maximum bounce buffer for copy-on-read and write zeroes, in bytes */
43 #define MAX_BOUNCE_BUFFER (32768 << BDRV_SECTOR_BITS)
45 static void bdrv_parent_cb_resize(BlockDriverState
*bs
);
46 static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState
*bs
,
47 int64_t offset
, int64_t bytes
, BdrvRequestFlags flags
);
49 static void bdrv_parent_drained_begin(BlockDriverState
*bs
, BdrvChild
*ignore
)
53 QLIST_FOREACH_SAFE(c
, &bs
->parents
, next_parent
, next
) {
57 bdrv_parent_drained_begin_single(c
);
61 void bdrv_parent_drained_end_single(BdrvChild
*c
)
65 assert(c
->quiesced_parent
);
66 c
->quiesced_parent
= false;
68 if (c
->klass
->drained_end
) {
69 c
->klass
->drained_end(c
);
73 static void bdrv_parent_drained_end(BlockDriverState
*bs
, BdrvChild
*ignore
)
77 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
81 bdrv_parent_drained_end_single(c
);
85 bool bdrv_parent_drained_poll_single(BdrvChild
*c
)
87 if (c
->klass
->drained_poll
) {
88 return c
->klass
->drained_poll(c
);
93 static bool bdrv_parent_drained_poll(BlockDriverState
*bs
, BdrvChild
*ignore
,
94 bool ignore_bds_parents
)
99 QLIST_FOREACH_SAFE(c
, &bs
->parents
, next_parent
, next
) {
100 if (c
== ignore
|| (ignore_bds_parents
&& c
->klass
->parent_is_bds
)) {
103 busy
|= bdrv_parent_drained_poll_single(c
);
109 void bdrv_parent_drained_begin_single(BdrvChild
*c
)
113 assert(!c
->quiesced_parent
);
114 c
->quiesced_parent
= true;
116 if (c
->klass
->drained_begin
) {
117 c
->klass
->drained_begin(c
);
121 static void bdrv_merge_limits(BlockLimits
*dst
, const BlockLimits
*src
)
123 dst
->pdiscard_alignment
= MAX(dst
->pdiscard_alignment
,
124 src
->pdiscard_alignment
);
125 dst
->opt_transfer
= MAX(dst
->opt_transfer
, src
->opt_transfer
);
126 dst
->max_transfer
= MIN_NON_ZERO(dst
->max_transfer
, src
->max_transfer
);
127 dst
->max_hw_transfer
= MIN_NON_ZERO(dst
->max_hw_transfer
,
128 src
->max_hw_transfer
);
129 dst
->opt_mem_alignment
= MAX(dst
->opt_mem_alignment
,
130 src
->opt_mem_alignment
);
131 dst
->min_mem_alignment
= MAX(dst
->min_mem_alignment
,
132 src
->min_mem_alignment
);
133 dst
->max_iov
= MIN_NON_ZERO(dst
->max_iov
, src
->max_iov
);
134 dst
->max_hw_iov
= MIN_NON_ZERO(dst
->max_hw_iov
, src
->max_hw_iov
);
137 typedef struct BdrvRefreshLimitsState
{
138 BlockDriverState
*bs
;
140 } BdrvRefreshLimitsState
;
142 static void bdrv_refresh_limits_abort(void *opaque
)
144 BdrvRefreshLimitsState
*s
= opaque
;
146 s
->bs
->bl
= s
->old_bl
;
149 static TransactionActionDrv bdrv_refresh_limits_drv
= {
150 .abort
= bdrv_refresh_limits_abort
,
154 /* @tran is allowed to be NULL, in this case no rollback is possible. */
155 void bdrv_refresh_limits(BlockDriverState
*bs
, Transaction
*tran
, Error
**errp
)
158 BlockDriver
*drv
= bs
->drv
;
165 BdrvRefreshLimitsState
*s
= g_new(BdrvRefreshLimitsState
, 1);
166 *s
= (BdrvRefreshLimitsState
) {
170 tran_add(tran
, &bdrv_refresh_limits_drv
, s
);
173 memset(&bs
->bl
, 0, sizeof(bs
->bl
));
179 /* Default alignment based on whether driver has byte interface */
180 bs
->bl
.request_alignment
= (drv
->bdrv_co_preadv
||
181 drv
->bdrv_aio_preadv
||
182 drv
->bdrv_co_preadv_part
) ? 1 : 512;
184 /* Take some limits from the children as a default */
186 QLIST_FOREACH(c
, &bs
->children
, next
) {
187 if (c
->role
& (BDRV_CHILD_DATA
| BDRV_CHILD_FILTERED
| BDRV_CHILD_COW
))
189 bdrv_merge_limits(&bs
->bl
, &c
->bs
->bl
);
193 if (c
->role
& BDRV_CHILD_FILTERED
) {
194 bs
->bl
.has_variable_length
|= c
->bs
->bl
.has_variable_length
;
199 bs
->bl
.min_mem_alignment
= 512;
200 bs
->bl
.opt_mem_alignment
= qemu_real_host_page_size();
202 /* Safe default since most protocols use readv()/writev()/etc */
203 bs
->bl
.max_iov
= IOV_MAX
;
206 /* Then let the driver override it */
207 if (drv
->bdrv_refresh_limits
) {
208 drv
->bdrv_refresh_limits(bs
, errp
);
214 if (bs
->bl
.request_alignment
> BDRV_MAX_ALIGNMENT
) {
215 error_setg(errp
, "Driver requires too large request alignment");
220 * The copy-on-read flag is actually a reference count so multiple users may
221 * use the feature without worrying about clobbering its previous state.
222 * Copy-on-read stays enabled until all users have called to disable it.
224 void bdrv_enable_copy_on_read(BlockDriverState
*bs
)
227 qatomic_inc(&bs
->copy_on_read
);
230 void bdrv_disable_copy_on_read(BlockDriverState
*bs
)
232 int old
= qatomic_fetch_dec(&bs
->copy_on_read
);
239 BlockDriverState
*bs
;
246 /* Returns true if BDRV_POLL_WHILE() should go into a blocking aio_poll() */
247 bool bdrv_drain_poll(BlockDriverState
*bs
, BdrvChild
*ignore_parent
,
248 bool ignore_bds_parents
)
252 if (bdrv_parent_drained_poll(bs
, ignore_parent
, ignore_bds_parents
)) {
256 if (qatomic_read(&bs
->in_flight
)) {
263 static bool bdrv_drain_poll_top_level(BlockDriverState
*bs
,
264 BdrvChild
*ignore_parent
)
266 return bdrv_drain_poll(bs
, ignore_parent
, false);
269 static void bdrv_do_drained_begin(BlockDriverState
*bs
, BdrvChild
*parent
,
271 static void bdrv_do_drained_end(BlockDriverState
*bs
, BdrvChild
*parent
);
273 static void bdrv_co_drain_bh_cb(void *opaque
)
275 BdrvCoDrainData
*data
= opaque
;
276 Coroutine
*co
= data
->co
;
277 BlockDriverState
*bs
= data
->bs
;
280 AioContext
*ctx
= bdrv_get_aio_context(bs
);
281 aio_context_acquire(ctx
);
282 bdrv_dec_in_flight(bs
);
284 bdrv_do_drained_begin(bs
, data
->parent
, data
->poll
);
287 bdrv_do_drained_end(bs
, data
->parent
);
289 aio_context_release(ctx
);
292 bdrv_drain_all_begin();
299 static void coroutine_fn
bdrv_co_yield_to_drain(BlockDriverState
*bs
,
304 BdrvCoDrainData data
;
305 Coroutine
*self
= qemu_coroutine_self();
306 AioContext
*ctx
= bdrv_get_aio_context(bs
);
307 AioContext
*co_ctx
= qemu_coroutine_get_aio_context(self
);
309 /* Calling bdrv_drain() from a BH ensures the current coroutine yields and
310 * other coroutines run if they were queued by aio_co_enter(). */
312 assert(qemu_in_coroutine());
313 data
= (BdrvCoDrainData
) {
323 bdrv_inc_in_flight(bs
);
327 * Temporarily drop the lock across yield or we would get deadlocks.
328 * bdrv_co_drain_bh_cb() reaquires the lock as needed.
330 * When we yield below, the lock for the current context will be
331 * released, so if this is actually the lock that protects bs, don't drop
335 aio_context_release(ctx
);
337 replay_bh_schedule_oneshot_event(qemu_get_aio_context(),
338 bdrv_co_drain_bh_cb
, &data
);
340 qemu_coroutine_yield();
341 /* If we are resumed from some other event (such as an aio completion or a
342 * timer callback), it is a bug in the caller that should be fixed. */
345 /* Reacquire the AioContext of bs if we dropped it */
347 aio_context_acquire(ctx
);
351 static void bdrv_do_drained_begin(BlockDriverState
*bs
, BdrvChild
*parent
,
356 if (qemu_in_coroutine()) {
357 bdrv_co_yield_to_drain(bs
, true, parent
, poll
);
363 /* Stop things in parent-to-child order */
364 if (qatomic_fetch_inc(&bs
->quiesce_counter
) == 0) {
365 bdrv_parent_drained_begin(bs
, parent
);
366 if (bs
->drv
&& bs
->drv
->bdrv_drain_begin
) {
367 bs
->drv
->bdrv_drain_begin(bs
);
372 * Wait for drained requests to finish.
374 * Calling BDRV_POLL_WHILE() only once for the top-level node is okay: The
375 * call is needed so things in this AioContext can make progress even
376 * though we don't return to the main AioContext loop - this automatically
377 * includes other nodes in the same AioContext and therefore all child
381 BDRV_POLL_WHILE(bs
, bdrv_drain_poll_top_level(bs
, parent
));
385 void bdrv_do_drained_begin_quiesce(BlockDriverState
*bs
, BdrvChild
*parent
)
387 bdrv_do_drained_begin(bs
, parent
, false);
390 void coroutine_mixed_fn
391 bdrv_drained_begin(BlockDriverState
*bs
)
394 bdrv_do_drained_begin(bs
, NULL
, true);
398 * This function does not poll, nor must any of its recursively called
401 static void bdrv_do_drained_end(BlockDriverState
*bs
, BdrvChild
*parent
)
403 int old_quiesce_counter
;
407 if (qemu_in_coroutine()) {
408 bdrv_co_yield_to_drain(bs
, false, parent
, false);
411 assert(bs
->quiesce_counter
> 0);
414 /* Re-enable things in child-to-parent order */
415 old_quiesce_counter
= qatomic_fetch_dec(&bs
->quiesce_counter
);
416 if (old_quiesce_counter
== 1) {
417 if (bs
->drv
&& bs
->drv
->bdrv_drain_end
) {
418 bs
->drv
->bdrv_drain_end(bs
);
420 bdrv_parent_drained_end(bs
, parent
);
424 void bdrv_drained_end(BlockDriverState
*bs
)
427 bdrv_do_drained_end(bs
, NULL
);
430 void bdrv_drain(BlockDriverState
*bs
)
433 bdrv_drained_begin(bs
);
434 bdrv_drained_end(bs
);
437 static void bdrv_drain_assert_idle(BlockDriverState
*bs
)
439 BdrvChild
*child
, *next
;
441 assert(qatomic_read(&bs
->in_flight
) == 0);
442 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, next
) {
443 bdrv_drain_assert_idle(child
->bs
);
447 unsigned int bdrv_drain_all_count
= 0;
449 static bool bdrv_drain_all_poll(void)
451 BlockDriverState
*bs
= NULL
;
455 /* bdrv_drain_poll() can't make changes to the graph and we are holding the
456 * main AioContext lock, so iterating bdrv_next_all_states() is safe. */
457 while ((bs
= bdrv_next_all_states(bs
))) {
458 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
459 aio_context_acquire(aio_context
);
460 result
|= bdrv_drain_poll(bs
, NULL
, true);
461 aio_context_release(aio_context
);
468 * Wait for pending requests to complete across all BlockDriverStates
470 * This function does not flush data to disk, use bdrv_flush_all() for that
471 * after calling this function.
473 * This pauses all block jobs and disables external clients. It must
474 * be paired with bdrv_drain_all_end().
476 * NOTE: no new block jobs or BlockDriverStates can be created between
477 * the bdrv_drain_all_begin() and bdrv_drain_all_end() calls.
479 void bdrv_drain_all_begin_nopoll(void)
481 BlockDriverState
*bs
= NULL
;
485 * bdrv queue is managed by record/replay,
486 * waiting for finishing the I/O requests may
489 if (replay_events_enabled()) {
493 /* AIO_WAIT_WHILE() with a NULL context can only be called from the main
494 * loop AioContext, so make sure we're in the main context. */
495 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
496 assert(bdrv_drain_all_count
< INT_MAX
);
497 bdrv_drain_all_count
++;
499 /* Quiesce all nodes, without polling in-flight requests yet. The graph
500 * cannot change during this loop. */
501 while ((bs
= bdrv_next_all_states(bs
))) {
502 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
504 aio_context_acquire(aio_context
);
505 bdrv_do_drained_begin(bs
, NULL
, false);
506 aio_context_release(aio_context
);
510 void coroutine_mixed_fn
bdrv_drain_all_begin(void)
512 BlockDriverState
*bs
= NULL
;
514 if (qemu_in_coroutine()) {
515 bdrv_co_yield_to_drain(NULL
, true, NULL
, true);
520 * bdrv queue is managed by record/replay,
521 * waiting for finishing the I/O requests may
524 if (replay_events_enabled()) {
528 bdrv_drain_all_begin_nopoll();
530 /* Now poll the in-flight requests */
531 AIO_WAIT_WHILE_UNLOCKED(NULL
, bdrv_drain_all_poll());
533 while ((bs
= bdrv_next_all_states(bs
))) {
534 bdrv_drain_assert_idle(bs
);
538 void bdrv_drain_all_end_quiesce(BlockDriverState
*bs
)
542 g_assert(bs
->quiesce_counter
> 0);
543 g_assert(!bs
->refcnt
);
545 while (bs
->quiesce_counter
) {
546 bdrv_do_drained_end(bs
, NULL
);
550 void bdrv_drain_all_end(void)
552 BlockDriverState
*bs
= NULL
;
556 * bdrv queue is managed by record/replay,
557 * waiting for finishing the I/O requests may
560 if (replay_events_enabled()) {
564 while ((bs
= bdrv_next_all_states(bs
))) {
565 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
567 aio_context_acquire(aio_context
);
568 bdrv_do_drained_end(bs
, NULL
);
569 aio_context_release(aio_context
);
572 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
573 assert(bdrv_drain_all_count
> 0);
574 bdrv_drain_all_count
--;
577 void bdrv_drain_all(void)
580 bdrv_drain_all_begin();
581 bdrv_drain_all_end();
585 * Remove an active request from the tracked requests list
587 * This function should be called when a tracked request is completing.
589 static void coroutine_fn
tracked_request_end(BdrvTrackedRequest
*req
)
591 if (req
->serialising
) {
592 qatomic_dec(&req
->bs
->serialising_in_flight
);
595 qemu_mutex_lock(&req
->bs
->reqs_lock
);
596 QLIST_REMOVE(req
, list
);
597 qemu_mutex_unlock(&req
->bs
->reqs_lock
);
600 * At this point qemu_co_queue_wait(&req->wait_queue, ...) won't be called
601 * anymore because the request has been removed from the list, so it's safe
602 * to restart the queue outside reqs_lock to minimize the critical section.
604 qemu_co_queue_restart_all(&req
->wait_queue
);
608 * Add an active request to the tracked requests list
610 static void coroutine_fn
tracked_request_begin(BdrvTrackedRequest
*req
,
611 BlockDriverState
*bs
,
614 enum BdrvTrackedRequestType type
)
616 bdrv_check_request(offset
, bytes
, &error_abort
);
618 *req
= (BdrvTrackedRequest
){
623 .co
= qemu_coroutine_self(),
624 .serialising
= false,
625 .overlap_offset
= offset
,
626 .overlap_bytes
= bytes
,
629 qemu_co_queue_init(&req
->wait_queue
);
631 qemu_mutex_lock(&bs
->reqs_lock
);
632 QLIST_INSERT_HEAD(&bs
->tracked_requests
, req
, list
);
633 qemu_mutex_unlock(&bs
->reqs_lock
);
636 static bool tracked_request_overlaps(BdrvTrackedRequest
*req
,
637 int64_t offset
, int64_t bytes
)
639 bdrv_check_request(offset
, bytes
, &error_abort
);
642 if (offset
>= req
->overlap_offset
+ req
->overlap_bytes
) {
646 if (req
->overlap_offset
>= offset
+ bytes
) {
652 /* Called with self->bs->reqs_lock held */
653 static coroutine_fn BdrvTrackedRequest
*
654 bdrv_find_conflicting_request(BdrvTrackedRequest
*self
)
656 BdrvTrackedRequest
*req
;
658 QLIST_FOREACH(req
, &self
->bs
->tracked_requests
, list
) {
659 if (req
== self
|| (!req
->serialising
&& !self
->serialising
)) {
662 if (tracked_request_overlaps(req
, self
->overlap_offset
,
663 self
->overlap_bytes
))
666 * Hitting this means there was a reentrant request, for
667 * example, a block driver issuing nested requests. This must
668 * never happen since it means deadlock.
670 assert(qemu_coroutine_self() != req
->co
);
673 * If the request is already (indirectly) waiting for us, or
674 * will wait for us as soon as it wakes up, then just go on
675 * (instead of producing a deadlock in the former case).
677 if (!req
->waiting_for
) {
686 /* Called with self->bs->reqs_lock held */
687 static void coroutine_fn
688 bdrv_wait_serialising_requests_locked(BdrvTrackedRequest
*self
)
690 BdrvTrackedRequest
*req
;
692 while ((req
= bdrv_find_conflicting_request(self
))) {
693 self
->waiting_for
= req
;
694 qemu_co_queue_wait(&req
->wait_queue
, &self
->bs
->reqs_lock
);
695 self
->waiting_for
= NULL
;
699 /* Called with req->bs->reqs_lock held */
700 static void tracked_request_set_serialising(BdrvTrackedRequest
*req
,
703 int64_t overlap_offset
= req
->offset
& ~(align
- 1);
704 int64_t overlap_bytes
=
705 ROUND_UP(req
->offset
+ req
->bytes
, align
) - overlap_offset
;
707 bdrv_check_request(req
->offset
, req
->bytes
, &error_abort
);
709 if (!req
->serialising
) {
710 qatomic_inc(&req
->bs
->serialising_in_flight
);
711 req
->serialising
= true;
714 req
->overlap_offset
= MIN(req
->overlap_offset
, overlap_offset
);
715 req
->overlap_bytes
= MAX(req
->overlap_bytes
, overlap_bytes
);
719 * Return the tracked request on @bs for the current coroutine, or
720 * NULL if there is none.
722 BdrvTrackedRequest
*coroutine_fn
bdrv_co_get_self_request(BlockDriverState
*bs
)
724 BdrvTrackedRequest
*req
;
725 Coroutine
*self
= qemu_coroutine_self();
728 QLIST_FOREACH(req
, &bs
->tracked_requests
, list
) {
729 if (req
->co
== self
) {
738 * Round a region to subcluster (if supported) or cluster boundaries
740 void coroutine_fn GRAPH_RDLOCK
741 bdrv_round_to_subclusters(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
742 int64_t *align_offset
, int64_t *align_bytes
)
746 if (bdrv_co_get_info(bs
, &bdi
) < 0 || bdi
.subcluster_size
== 0) {
747 *align_offset
= offset
;
748 *align_bytes
= bytes
;
750 int64_t c
= bdi
.subcluster_size
;
751 *align_offset
= QEMU_ALIGN_DOWN(offset
, c
);
752 *align_bytes
= QEMU_ALIGN_UP(offset
- *align_offset
+ bytes
, c
);
756 static int coroutine_fn GRAPH_RDLOCK
bdrv_get_cluster_size(BlockDriverState
*bs
)
761 ret
= bdrv_co_get_info(bs
, &bdi
);
762 if (ret
< 0 || bdi
.cluster_size
== 0) {
763 return bs
->bl
.request_alignment
;
765 return bdi
.cluster_size
;
769 void bdrv_inc_in_flight(BlockDriverState
*bs
)
772 qatomic_inc(&bs
->in_flight
);
775 void bdrv_wakeup(BlockDriverState
*bs
)
781 void bdrv_dec_in_flight(BlockDriverState
*bs
)
784 qatomic_dec(&bs
->in_flight
);
788 static void coroutine_fn
789 bdrv_wait_serialising_requests(BdrvTrackedRequest
*self
)
791 BlockDriverState
*bs
= self
->bs
;
793 if (!qatomic_read(&bs
->serialising_in_flight
)) {
797 qemu_mutex_lock(&bs
->reqs_lock
);
798 bdrv_wait_serialising_requests_locked(self
);
799 qemu_mutex_unlock(&bs
->reqs_lock
);
802 void coroutine_fn
bdrv_make_request_serialising(BdrvTrackedRequest
*req
,
807 qemu_mutex_lock(&req
->bs
->reqs_lock
);
809 tracked_request_set_serialising(req
, align
);
810 bdrv_wait_serialising_requests_locked(req
);
812 qemu_mutex_unlock(&req
->bs
->reqs_lock
);
815 int bdrv_check_qiov_request(int64_t offset
, int64_t bytes
,
816 QEMUIOVector
*qiov
, size_t qiov_offset
,
820 * Check generic offset/bytes correctness
824 error_setg(errp
, "offset is negative: %" PRIi64
, offset
);
829 error_setg(errp
, "bytes is negative: %" PRIi64
, bytes
);
833 if (bytes
> BDRV_MAX_LENGTH
) {
834 error_setg(errp
, "bytes(%" PRIi64
") exceeds maximum(%" PRIi64
")",
835 bytes
, BDRV_MAX_LENGTH
);
839 if (offset
> BDRV_MAX_LENGTH
) {
840 error_setg(errp
, "offset(%" PRIi64
") exceeds maximum(%" PRIi64
")",
841 offset
, BDRV_MAX_LENGTH
);
845 if (offset
> BDRV_MAX_LENGTH
- bytes
) {
846 error_setg(errp
, "sum of offset(%" PRIi64
") and bytes(%" PRIi64
") "
847 "exceeds maximum(%" PRIi64
")", offset
, bytes
,
857 * Check qiov and qiov_offset
860 if (qiov_offset
> qiov
->size
) {
861 error_setg(errp
, "qiov_offset(%zu) overflow io vector size(%zu)",
862 qiov_offset
, qiov
->size
);
866 if (bytes
> qiov
->size
- qiov_offset
) {
867 error_setg(errp
, "bytes(%" PRIi64
") + qiov_offset(%zu) overflow io "
868 "vector size(%zu)", bytes
, qiov_offset
, qiov
->size
);
875 int bdrv_check_request(int64_t offset
, int64_t bytes
, Error
**errp
)
877 return bdrv_check_qiov_request(offset
, bytes
, NULL
, 0, errp
);
880 static int bdrv_check_request32(int64_t offset
, int64_t bytes
,
881 QEMUIOVector
*qiov
, size_t qiov_offset
)
883 int ret
= bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, NULL
);
888 if (bytes
> BDRV_REQUEST_MAX_BYTES
) {
896 * Completely zero out a block device with the help of bdrv_pwrite_zeroes.
897 * The operation is sped up by checking the block status and only writing
898 * zeroes to the device if they currently do not return zeroes. Optional
899 * flags are passed through to bdrv_pwrite_zeroes (e.g. BDRV_REQ_MAY_UNMAP,
902 * Returns < 0 on error, 0 on success. For error codes see bdrv_pwrite().
904 int bdrv_make_zero(BdrvChild
*child
, BdrvRequestFlags flags
)
907 int64_t target_size
, bytes
, offset
= 0;
908 BlockDriverState
*bs
= child
->bs
;
911 target_size
= bdrv_getlength(bs
);
912 if (target_size
< 0) {
917 bytes
= MIN(target_size
- offset
, BDRV_REQUEST_MAX_BYTES
);
921 ret
= bdrv_block_status(bs
, offset
, bytes
, &bytes
, NULL
, NULL
);
925 if (ret
& BDRV_BLOCK_ZERO
) {
929 ret
= bdrv_pwrite_zeroes(child
, offset
, bytes
, flags
);
938 * Writes to the file and ensures that no writes are reordered across this
939 * request (acts as a barrier)
941 * Returns 0 on success, -errno in error cases.
943 int coroutine_fn
bdrv_co_pwrite_sync(BdrvChild
*child
, int64_t offset
,
944 int64_t bytes
, const void *buf
,
945 BdrvRequestFlags flags
)
949 assert_bdrv_graph_readable();
951 ret
= bdrv_co_pwrite(child
, offset
, bytes
, buf
, flags
);
956 ret
= bdrv_co_flush(child
->bs
);
964 typedef struct CoroutineIOCompletion
{
965 Coroutine
*coroutine
;
967 } CoroutineIOCompletion
;
969 static void bdrv_co_io_em_complete(void *opaque
, int ret
)
971 CoroutineIOCompletion
*co
= opaque
;
974 aio_co_wake(co
->coroutine
);
977 static int coroutine_fn GRAPH_RDLOCK
978 bdrv_driver_preadv(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
979 QEMUIOVector
*qiov
, size_t qiov_offset
, int flags
)
981 BlockDriver
*drv
= bs
->drv
;
983 unsigned int nb_sectors
;
984 QEMUIOVector local_qiov
;
986 assert_bdrv_graph_readable();
988 bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, &error_abort
);
989 assert(!(flags
& ~bs
->supported_read_flags
));
995 if (drv
->bdrv_co_preadv_part
) {
996 return drv
->bdrv_co_preadv_part(bs
, offset
, bytes
, qiov
, qiov_offset
,
1000 if (qiov_offset
> 0 || bytes
!= qiov
->size
) {
1001 qemu_iovec_init_slice(&local_qiov
, qiov
, qiov_offset
, bytes
);
1005 if (drv
->bdrv_co_preadv
) {
1006 ret
= drv
->bdrv_co_preadv(bs
, offset
, bytes
, qiov
, flags
);
1010 if (drv
->bdrv_aio_preadv
) {
1012 CoroutineIOCompletion co
= {
1013 .coroutine
= qemu_coroutine_self(),
1016 acb
= drv
->bdrv_aio_preadv(bs
, offset
, bytes
, qiov
, flags
,
1017 bdrv_co_io_em_complete
, &co
);
1022 qemu_coroutine_yield();
1028 sector_num
= offset
>> BDRV_SECTOR_BITS
;
1029 nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
1031 assert(QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
));
1032 assert(QEMU_IS_ALIGNED(bytes
, BDRV_SECTOR_SIZE
));
1033 assert(bytes
<= BDRV_REQUEST_MAX_BYTES
);
1034 assert(drv
->bdrv_co_readv
);
1036 ret
= drv
->bdrv_co_readv(bs
, sector_num
, nb_sectors
, qiov
);
1039 if (qiov
== &local_qiov
) {
1040 qemu_iovec_destroy(&local_qiov
);
1046 static int coroutine_fn GRAPH_RDLOCK
1047 bdrv_driver_pwritev(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
1048 QEMUIOVector
*qiov
, size_t qiov_offset
,
1049 BdrvRequestFlags flags
)
1051 BlockDriver
*drv
= bs
->drv
;
1052 bool emulate_fua
= false;
1054 unsigned int nb_sectors
;
1055 QEMUIOVector local_qiov
;
1057 assert_bdrv_graph_readable();
1059 bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, &error_abort
);
1065 if ((flags
& BDRV_REQ_FUA
) &&
1066 (~bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
1067 flags
&= ~BDRV_REQ_FUA
;
1071 flags
&= bs
->supported_write_flags
;
1073 if (drv
->bdrv_co_pwritev_part
) {
1074 ret
= drv
->bdrv_co_pwritev_part(bs
, offset
, bytes
, qiov
, qiov_offset
,
1079 if (qiov_offset
> 0 || bytes
!= qiov
->size
) {
1080 qemu_iovec_init_slice(&local_qiov
, qiov
, qiov_offset
, bytes
);
1084 if (drv
->bdrv_co_pwritev
) {
1085 ret
= drv
->bdrv_co_pwritev(bs
, offset
, bytes
, qiov
, flags
);
1089 if (drv
->bdrv_aio_pwritev
) {
1091 CoroutineIOCompletion co
= {
1092 .coroutine
= qemu_coroutine_self(),
1095 acb
= drv
->bdrv_aio_pwritev(bs
, offset
, bytes
, qiov
, flags
,
1096 bdrv_co_io_em_complete
, &co
);
1100 qemu_coroutine_yield();
1106 sector_num
= offset
>> BDRV_SECTOR_BITS
;
1107 nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
1109 assert(QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
));
1110 assert(QEMU_IS_ALIGNED(bytes
, BDRV_SECTOR_SIZE
));
1111 assert(bytes
<= BDRV_REQUEST_MAX_BYTES
);
1113 assert(drv
->bdrv_co_writev
);
1114 ret
= drv
->bdrv_co_writev(bs
, sector_num
, nb_sectors
, qiov
, flags
);
1117 if (ret
== 0 && emulate_fua
) {
1118 ret
= bdrv_co_flush(bs
);
1121 if (qiov
== &local_qiov
) {
1122 qemu_iovec_destroy(&local_qiov
);
1128 static int coroutine_fn GRAPH_RDLOCK
1129 bdrv_driver_pwritev_compressed(BlockDriverState
*bs
, int64_t offset
,
1130 int64_t bytes
, QEMUIOVector
*qiov
,
1133 BlockDriver
*drv
= bs
->drv
;
1134 QEMUIOVector local_qiov
;
1136 assert_bdrv_graph_readable();
1138 bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, &error_abort
);
1144 if (!block_driver_can_compress(drv
)) {
1148 if (drv
->bdrv_co_pwritev_compressed_part
) {
1149 return drv
->bdrv_co_pwritev_compressed_part(bs
, offset
, bytes
,
1153 if (qiov_offset
== 0) {
1154 return drv
->bdrv_co_pwritev_compressed(bs
, offset
, bytes
, qiov
);
1157 qemu_iovec_init_slice(&local_qiov
, qiov
, qiov_offset
, bytes
);
1158 ret
= drv
->bdrv_co_pwritev_compressed(bs
, offset
, bytes
, &local_qiov
);
1159 qemu_iovec_destroy(&local_qiov
);
1164 static int coroutine_fn GRAPH_RDLOCK
1165 bdrv_co_do_copy_on_readv(BdrvChild
*child
, int64_t offset
, int64_t bytes
,
1166 QEMUIOVector
*qiov
, size_t qiov_offset
, int flags
)
1168 BlockDriverState
*bs
= child
->bs
;
1170 /* Perform I/O through a temporary buffer so that users who scribble over
1171 * their read buffer while the operation is in progress do not end up
1172 * modifying the image file. This is critical for zero-copy guest I/O
1173 * where anything might happen inside guest memory.
1175 void *bounce_buffer
= NULL
;
1177 BlockDriver
*drv
= bs
->drv
;
1178 int64_t align_offset
;
1179 int64_t align_bytes
;
1182 int max_transfer
= MIN_NON_ZERO(bs
->bl
.max_transfer
,
1183 BDRV_REQUEST_MAX_BYTES
);
1184 int64_t progress
= 0;
1187 bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, &error_abort
);
1194 * Do not write anything when the BDS is inactive. That is not
1195 * allowed, and it would not help.
1197 skip_write
= (bs
->open_flags
& BDRV_O_INACTIVE
);
1199 /* FIXME We cannot require callers to have write permissions when all they
1200 * are doing is a read request. If we did things right, write permissions
1201 * would be obtained anyway, but internally by the copy-on-read code. As
1202 * long as it is implemented here rather than in a separate filter driver,
1203 * the copy-on-read code doesn't have its own BdrvChild, however, for which
1204 * it could request permissions. Therefore we have to bypass the permission
1205 * system for the moment. */
1206 // assert(child->perm & (BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE));
1208 /* Cover entire cluster so no additional backing file I/O is required when
1209 * allocating cluster in the image file. Note that this value may exceed
1210 * BDRV_REQUEST_MAX_BYTES (even when the original read did not), which
1211 * is one reason we loop rather than doing it all at once.
1213 bdrv_round_to_subclusters(bs
, offset
, bytes
, &align_offset
, &align_bytes
);
1214 skip_bytes
= offset
- align_offset
;
1216 trace_bdrv_co_do_copy_on_readv(bs
, offset
, bytes
,
1217 align_offset
, align_bytes
);
1219 while (align_bytes
) {
1223 ret
= 1; /* "already allocated", so nothing will be copied */
1224 pnum
= MIN(align_bytes
, max_transfer
);
1226 ret
= bdrv_is_allocated(bs
, align_offset
,
1227 MIN(align_bytes
, max_transfer
), &pnum
);
1230 * Safe to treat errors in querying allocation as if
1231 * unallocated; we'll probably fail again soon on the
1232 * read, but at least that will set a decent errno.
1234 pnum
= MIN(align_bytes
, max_transfer
);
1237 /* Stop at EOF if the image ends in the middle of the cluster */
1238 if (ret
== 0 && pnum
== 0) {
1239 assert(progress
>= bytes
);
1243 assert(skip_bytes
< pnum
);
1247 QEMUIOVector local_qiov
;
1249 /* Must copy-on-read; use the bounce buffer */
1250 pnum
= MIN(pnum
, MAX_BOUNCE_BUFFER
);
1251 if (!bounce_buffer
) {
1252 int64_t max_we_need
= MAX(pnum
, align_bytes
- pnum
);
1253 int64_t max_allowed
= MIN(max_transfer
, MAX_BOUNCE_BUFFER
);
1254 int64_t bounce_buffer_len
= MIN(max_we_need
, max_allowed
);
1256 bounce_buffer
= qemu_try_blockalign(bs
, bounce_buffer_len
);
1257 if (!bounce_buffer
) {
1262 qemu_iovec_init_buf(&local_qiov
, bounce_buffer
, pnum
);
1264 ret
= bdrv_driver_preadv(bs
, align_offset
, pnum
,
1270 bdrv_co_debug_event(bs
, BLKDBG_COR_WRITE
);
1271 if (drv
->bdrv_co_pwrite_zeroes
&&
1272 buffer_is_zero(bounce_buffer
, pnum
)) {
1273 /* FIXME: Should we (perhaps conditionally) be setting
1274 * BDRV_REQ_MAY_UNMAP, if it will allow for a sparser copy
1275 * that still correctly reads as zero? */
1276 ret
= bdrv_co_do_pwrite_zeroes(bs
, align_offset
, pnum
,
1277 BDRV_REQ_WRITE_UNCHANGED
);
1279 /* This does not change the data on the disk, it is not
1280 * necessary to flush even in cache=writethrough mode.
1282 ret
= bdrv_driver_pwritev(bs
, align_offset
, pnum
,
1284 BDRV_REQ_WRITE_UNCHANGED
);
1288 /* It might be okay to ignore write errors for guest
1289 * requests. If this is a deliberate copy-on-read
1290 * then we don't want to ignore the error. Simply
1291 * report it in all cases.
1296 if (!(flags
& BDRV_REQ_PREFETCH
)) {
1297 qemu_iovec_from_buf(qiov
, qiov_offset
+ progress
,
1298 bounce_buffer
+ skip_bytes
,
1299 MIN(pnum
- skip_bytes
, bytes
- progress
));
1301 } else if (!(flags
& BDRV_REQ_PREFETCH
)) {
1302 /* Read directly into the destination */
1303 ret
= bdrv_driver_preadv(bs
, offset
+ progress
,
1304 MIN(pnum
- skip_bytes
, bytes
- progress
),
1305 qiov
, qiov_offset
+ progress
, 0);
1311 align_offset
+= pnum
;
1312 align_bytes
-= pnum
;
1313 progress
+= pnum
- skip_bytes
;
1319 qemu_vfree(bounce_buffer
);
1324 * Forwards an already correctly aligned request to the BlockDriver. This
1325 * handles copy on read, zeroing after EOF, and fragmentation of large
1326 * reads; any other features must be implemented by the caller.
1328 static int coroutine_fn GRAPH_RDLOCK
1329 bdrv_aligned_preadv(BdrvChild
*child
, BdrvTrackedRequest
*req
,
1330 int64_t offset
, int64_t bytes
, int64_t align
,
1331 QEMUIOVector
*qiov
, size_t qiov_offset
, int flags
)
1333 BlockDriverState
*bs
= child
->bs
;
1334 int64_t total_bytes
, max_bytes
;
1336 int64_t bytes_remaining
= bytes
;
1339 bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, &error_abort
);
1340 assert(is_power_of_2(align
));
1341 assert((offset
& (align
- 1)) == 0);
1342 assert((bytes
& (align
- 1)) == 0);
1343 assert((bs
->open_flags
& BDRV_O_NO_IO
) == 0);
1344 max_transfer
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_transfer
, INT_MAX
),
1348 * TODO: We would need a per-BDS .supported_read_flags and
1349 * potential fallback support, if we ever implement any read flags
1350 * to pass through to drivers. For now, there aren't any
1351 * passthrough flags except the BDRV_REQ_REGISTERED_BUF optimization hint.
1353 assert(!(flags
& ~(BDRV_REQ_COPY_ON_READ
| BDRV_REQ_PREFETCH
|
1354 BDRV_REQ_REGISTERED_BUF
)));
1356 /* Handle Copy on Read and associated serialisation */
1357 if (flags
& BDRV_REQ_COPY_ON_READ
) {
1358 /* If we touch the same cluster it counts as an overlap. This
1359 * guarantees that allocating writes will be serialized and not race
1360 * with each other for the same cluster. For example, in copy-on-read
1361 * it ensures that the CoR read and write operations are atomic and
1362 * guest writes cannot interleave between them. */
1363 bdrv_make_request_serialising(req
, bdrv_get_cluster_size(bs
));
1365 bdrv_wait_serialising_requests(req
);
1368 if (flags
& BDRV_REQ_COPY_ON_READ
) {
1371 /* The flag BDRV_REQ_COPY_ON_READ has reached its addressee */
1372 flags
&= ~BDRV_REQ_COPY_ON_READ
;
1374 ret
= bdrv_is_allocated(bs
, offset
, bytes
, &pnum
);
1379 if (!ret
|| pnum
!= bytes
) {
1380 ret
= bdrv_co_do_copy_on_readv(child
, offset
, bytes
,
1381 qiov
, qiov_offset
, flags
);
1383 } else if (flags
& BDRV_REQ_PREFETCH
) {
1388 /* Forward the request to the BlockDriver, possibly fragmenting it */
1389 total_bytes
= bdrv_co_getlength(bs
);
1390 if (total_bytes
< 0) {
1395 assert(!(flags
& ~(bs
->supported_read_flags
| BDRV_REQ_REGISTERED_BUF
)));
1397 max_bytes
= ROUND_UP(MAX(0, total_bytes
- offset
), align
);
1398 if (bytes
<= max_bytes
&& bytes
<= max_transfer
) {
1399 ret
= bdrv_driver_preadv(bs
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1403 while (bytes_remaining
) {
1407 num
= MIN(bytes_remaining
, MIN(max_bytes
, max_transfer
));
1410 ret
= bdrv_driver_preadv(bs
, offset
+ bytes
- bytes_remaining
,
1412 qiov_offset
+ bytes
- bytes_remaining
,
1416 num
= bytes_remaining
;
1417 ret
= qemu_iovec_memset(qiov
, qiov_offset
+ bytes
- bytes_remaining
,
1418 0, bytes_remaining
);
1423 bytes_remaining
-= num
;
1427 return ret
< 0 ? ret
: 0;
1433 * |<---- align ----->| |<----- align ---->|
1434 * |<- head ->|<------------- bytes ------------->|<-- tail -->|
1436 * -*----------$-------*-------- ... --------*-----$------------*---
1438 * | offset | | end |
1439 * ALIGN_DOWN(offset) ALIGN_UP(offset) ALIGN_DOWN(end) ALIGN_UP(end)
1440 * [buf ... ) [tail_buf )
1442 * @buf is an aligned allocation needed to store @head and @tail paddings. @head
1443 * is placed at the beginning of @buf and @tail at the @end.
1445 * @tail_buf is a pointer to sub-buffer, corresponding to align-sized chunk
1446 * around tail, if tail exists.
1448 * @merge_reads is true for small requests,
1449 * if @buf_len == @head + bytes + @tail. In this case it is possible that both
1450 * head and tail exist but @buf_len == align and @tail_buf == @buf.
1452 * @write is true for write requests, false for read requests.
1454 * If padding makes the vector too long (exceeding IOV_MAX), then we need to
1455 * merge existing vector elements into a single one. @collapse_bounce_buf acts
1456 * as the bounce buffer in such cases. @pre_collapse_qiov has the pre-collapse
1457 * I/O vector elements so for read requests, the data can be copied back after
1460 typedef struct BdrvRequestPadding
{
1468 QEMUIOVector local_qiov
;
1470 uint8_t *collapse_bounce_buf
;
1471 size_t collapse_len
;
1472 QEMUIOVector pre_collapse_qiov
;
1473 } BdrvRequestPadding
;
1475 static bool bdrv_init_padding(BlockDriverState
*bs
,
1476 int64_t offset
, int64_t bytes
,
1478 BdrvRequestPadding
*pad
)
1480 int64_t align
= bs
->bl
.request_alignment
;
1483 bdrv_check_request(offset
, bytes
, &error_abort
);
1484 assert(align
<= INT_MAX
); /* documented in block/block_int.h */
1485 assert(align
<= SIZE_MAX
/ 2); /* so we can allocate the buffer */
1487 memset(pad
, 0, sizeof(*pad
));
1489 pad
->head
= offset
& (align
- 1);
1490 pad
->tail
= ((offset
+ bytes
) & (align
- 1));
1492 pad
->tail
= align
- pad
->tail
;
1495 if (!pad
->head
&& !pad
->tail
) {
1499 assert(bytes
); /* Nothing good in aligning zero-length requests */
1501 sum
= pad
->head
+ bytes
+ pad
->tail
;
1502 pad
->buf_len
= (sum
> align
&& pad
->head
&& pad
->tail
) ? 2 * align
: align
;
1503 pad
->buf
= qemu_blockalign(bs
, pad
->buf_len
);
1504 pad
->merge_reads
= sum
== pad
->buf_len
;
1506 pad
->tail_buf
= pad
->buf
+ pad
->buf_len
- align
;
1514 static int coroutine_fn GRAPH_RDLOCK
1515 bdrv_padding_rmw_read(BdrvChild
*child
, BdrvTrackedRequest
*req
,
1516 BdrvRequestPadding
*pad
, bool zero_middle
)
1518 QEMUIOVector local_qiov
;
1519 BlockDriverState
*bs
= child
->bs
;
1520 uint64_t align
= bs
->bl
.request_alignment
;
1523 assert(req
->serialising
&& pad
->buf
);
1525 if (pad
->head
|| pad
->merge_reads
) {
1526 int64_t bytes
= pad
->merge_reads
? pad
->buf_len
: align
;
1528 qemu_iovec_init_buf(&local_qiov
, pad
->buf
, bytes
);
1531 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_RMW_HEAD
);
1533 if (pad
->merge_reads
&& pad
->tail
) {
1534 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_RMW_TAIL
);
1536 ret
= bdrv_aligned_preadv(child
, req
, req
->overlap_offset
, bytes
,
1537 align
, &local_qiov
, 0, 0);
1542 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_HEAD
);
1544 if (pad
->merge_reads
&& pad
->tail
) {
1545 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_TAIL
);
1548 if (pad
->merge_reads
) {
1554 qemu_iovec_init_buf(&local_qiov
, pad
->tail_buf
, align
);
1556 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_RMW_TAIL
);
1557 ret
= bdrv_aligned_preadv(
1559 req
->overlap_offset
+ req
->overlap_bytes
- align
,
1560 align
, align
, &local_qiov
, 0, 0);
1564 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_TAIL
);
1569 memset(pad
->buf
+ pad
->head
, 0, pad
->buf_len
- pad
->head
- pad
->tail
);
1576 * Free *pad's associated buffers, and perform any necessary finalization steps.
1578 static void bdrv_padding_finalize(BdrvRequestPadding
*pad
)
1580 if (pad
->collapse_bounce_buf
) {
1583 * If padding required elements in the vector to be collapsed into a
1584 * bounce buffer, copy the bounce buffer content back
1586 qemu_iovec_from_buf(&pad
->pre_collapse_qiov
, 0,
1587 pad
->collapse_bounce_buf
, pad
->collapse_len
);
1589 qemu_vfree(pad
->collapse_bounce_buf
);
1590 qemu_iovec_destroy(&pad
->pre_collapse_qiov
);
1593 qemu_vfree(pad
->buf
);
1594 qemu_iovec_destroy(&pad
->local_qiov
);
1596 memset(pad
, 0, sizeof(*pad
));
1600 * Create pad->local_qiov by wrapping @iov in the padding head and tail, while
1601 * ensuring that the resulting vector will not exceed IOV_MAX elements.
1603 * To ensure this, when necessary, the first two or three elements of @iov are
1604 * merged into pad->collapse_bounce_buf and replaced by a reference to that
1605 * bounce buffer in pad->local_qiov.
1607 * After performing a read request, the data from the bounce buffer must be
1608 * copied back into pad->pre_collapse_qiov (e.g. by bdrv_padding_finalize()).
1610 static int bdrv_create_padded_qiov(BlockDriverState
*bs
,
1611 BdrvRequestPadding
*pad
,
1612 struct iovec
*iov
, int niov
,
1613 size_t iov_offset
, size_t bytes
)
1615 int padded_niov
, surplus_count
, collapse_count
;
1617 /* Assert this invariant */
1618 assert(niov
<= IOV_MAX
);
1621 * Cannot pad if resulting length would exceed SIZE_MAX. Returning an error
1622 * to the guest is not ideal, but there is little else we can do. At least
1623 * this will practically never happen on 64-bit systems.
1625 if (SIZE_MAX
- pad
->head
< bytes
||
1626 SIZE_MAX
- pad
->head
- bytes
< pad
->tail
)
1631 /* Length of the resulting IOV if we just concatenated everything */
1632 padded_niov
= !!pad
->head
+ niov
+ !!pad
->tail
;
1634 qemu_iovec_init(&pad
->local_qiov
, MIN(padded_niov
, IOV_MAX
));
1637 qemu_iovec_add(&pad
->local_qiov
, pad
->buf
, pad
->head
);
1641 * If padded_niov > IOV_MAX, we cannot just concatenate everything.
1642 * Instead, merge the first two or three elements of @iov to reduce the
1643 * number of vector elements as necessary.
1645 if (padded_niov
> IOV_MAX
) {
1647 * Only head and tail can have lead to the number of entries exceeding
1648 * IOV_MAX, so we can exceed it by the head and tail at most. We need
1649 * to reduce the number of elements by `surplus_count`, so we merge that
1650 * many elements plus one into one element.
1652 surplus_count
= padded_niov
- IOV_MAX
;
1653 assert(surplus_count
<= !!pad
->head
+ !!pad
->tail
);
1654 collapse_count
= surplus_count
+ 1;
1657 * Move the elements to collapse into `pad->pre_collapse_qiov`, then
1658 * advance `iov` (and associated variables) by those elements.
1660 qemu_iovec_init(&pad
->pre_collapse_qiov
, collapse_count
);
1661 qemu_iovec_concat_iov(&pad
->pre_collapse_qiov
, iov
,
1662 collapse_count
, iov_offset
, SIZE_MAX
);
1663 iov
+= collapse_count
;
1665 niov
-= collapse_count
;
1666 bytes
-= pad
->pre_collapse_qiov
.size
;
1669 * Construct the bounce buffer to match the length of the to-collapse
1670 * vector elements, and for write requests, initialize it with the data
1671 * from those elements. Then add it to `pad->local_qiov`.
1673 pad
->collapse_len
= pad
->pre_collapse_qiov
.size
;
1674 pad
->collapse_bounce_buf
= qemu_blockalign(bs
, pad
->collapse_len
);
1676 qemu_iovec_to_buf(&pad
->pre_collapse_qiov
, 0,
1677 pad
->collapse_bounce_buf
, pad
->collapse_len
);
1679 qemu_iovec_add(&pad
->local_qiov
,
1680 pad
->collapse_bounce_buf
, pad
->collapse_len
);
1683 qemu_iovec_concat_iov(&pad
->local_qiov
, iov
, niov
, iov_offset
, bytes
);
1686 qemu_iovec_add(&pad
->local_qiov
,
1687 pad
->buf
+ pad
->buf_len
- pad
->tail
, pad
->tail
);
1690 assert(pad
->local_qiov
.niov
== MIN(padded_niov
, IOV_MAX
));
1697 * Exchange request parameters with padded request if needed. Don't include RMW
1698 * read of padding, bdrv_padding_rmw_read() should be called separately if
1701 * @write is true for write requests, false for read requests.
1703 * Request parameters (@qiov, &qiov_offset, &offset, &bytes) are in-out:
1704 * - on function start they represent original request
1705 * - on failure or when padding is not needed they are unchanged
1706 * - on success when padding is needed they represent padded request
1708 static int bdrv_pad_request(BlockDriverState
*bs
,
1709 QEMUIOVector
**qiov
, size_t *qiov_offset
,
1710 int64_t *offset
, int64_t *bytes
,
1712 BdrvRequestPadding
*pad
, bool *padded
,
1713 BdrvRequestFlags
*flags
)
1716 struct iovec
*sliced_iov
;
1718 size_t sliced_head
, sliced_tail
;
1720 /* Should have been checked by the caller already */
1721 ret
= bdrv_check_request32(*offset
, *bytes
, *qiov
, *qiov_offset
);
1726 if (!bdrv_init_padding(bs
, *offset
, *bytes
, write
, pad
)) {
1733 sliced_iov
= qemu_iovec_slice(*qiov
, *qiov_offset
, *bytes
,
1734 &sliced_head
, &sliced_tail
,
1737 /* Guaranteed by bdrv_check_request32() */
1738 assert(*bytes
<= SIZE_MAX
);
1739 ret
= bdrv_create_padded_qiov(bs
, pad
, sliced_iov
, sliced_niov
,
1740 sliced_head
, *bytes
);
1742 bdrv_padding_finalize(pad
);
1745 *bytes
+= pad
->head
+ pad
->tail
;
1746 *offset
-= pad
->head
;
1747 *qiov
= &pad
->local_qiov
;
1753 /* Can't use optimization hint with bounce buffer */
1754 *flags
&= ~BDRV_REQ_REGISTERED_BUF
;
1760 int coroutine_fn
bdrv_co_preadv(BdrvChild
*child
,
1761 int64_t offset
, int64_t bytes
, QEMUIOVector
*qiov
,
1762 BdrvRequestFlags flags
)
1765 return bdrv_co_preadv_part(child
, offset
, bytes
, qiov
, 0, flags
);
1768 int coroutine_fn
bdrv_co_preadv_part(BdrvChild
*child
,
1769 int64_t offset
, int64_t bytes
,
1770 QEMUIOVector
*qiov
, size_t qiov_offset
,
1771 BdrvRequestFlags flags
)
1773 BlockDriverState
*bs
= child
->bs
;
1774 BdrvTrackedRequest req
;
1775 BdrvRequestPadding pad
;
1779 trace_bdrv_co_preadv_part(bs
, offset
, bytes
, flags
);
1781 if (!bdrv_co_is_inserted(bs
)) {
1785 ret
= bdrv_check_request32(offset
, bytes
, qiov
, qiov_offset
);
1790 if (bytes
== 0 && !QEMU_IS_ALIGNED(offset
, bs
->bl
.request_alignment
)) {
1792 * Aligning zero request is nonsense. Even if driver has special meaning
1793 * of zero-length (like qcow2_co_pwritev_compressed_part), we can't pass
1794 * it to driver due to request_alignment.
1796 * Still, no reason to return an error if someone do unaligned
1797 * zero-length read occasionally.
1802 bdrv_inc_in_flight(bs
);
1804 /* Don't do copy-on-read if we read data before write operation */
1805 if (qatomic_read(&bs
->copy_on_read
)) {
1806 flags
|= BDRV_REQ_COPY_ON_READ
;
1809 ret
= bdrv_pad_request(bs
, &qiov
, &qiov_offset
, &offset
, &bytes
, false,
1810 &pad
, NULL
, &flags
);
1815 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_READ
);
1816 ret
= bdrv_aligned_preadv(child
, &req
, offset
, bytes
,
1817 bs
->bl
.request_alignment
,
1818 qiov
, qiov_offset
, flags
);
1819 tracked_request_end(&req
);
1820 bdrv_padding_finalize(&pad
);
1823 bdrv_dec_in_flight(bs
);
1828 static int coroutine_fn GRAPH_RDLOCK
1829 bdrv_co_do_pwrite_zeroes(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
1830 BdrvRequestFlags flags
)
1832 BlockDriver
*drv
= bs
->drv
;
1836 bool need_flush
= false;
1840 int64_t max_write_zeroes
= MIN_NON_ZERO(bs
->bl
.max_pwrite_zeroes
,
1842 int alignment
= MAX(bs
->bl
.pwrite_zeroes_alignment
,
1843 bs
->bl
.request_alignment
);
1844 int max_transfer
= MIN_NON_ZERO(bs
->bl
.max_transfer
, MAX_BOUNCE_BUFFER
);
1846 assert_bdrv_graph_readable();
1847 bdrv_check_request(offset
, bytes
, &error_abort
);
1853 if ((flags
& ~bs
->supported_zero_flags
) & BDRV_REQ_NO_FALLBACK
) {
1857 /* By definition there is no user buffer so this flag doesn't make sense */
1858 if (flags
& BDRV_REQ_REGISTERED_BUF
) {
1862 /* Invalidate the cached block-status data range if this write overlaps */
1863 bdrv_bsc_invalidate_range(bs
, offset
, bytes
);
1865 assert(alignment
% bs
->bl
.request_alignment
== 0);
1866 head
= offset
% alignment
;
1867 tail
= (offset
+ bytes
) % alignment
;
1868 max_write_zeroes
= QEMU_ALIGN_DOWN(max_write_zeroes
, alignment
);
1869 assert(max_write_zeroes
>= bs
->bl
.request_alignment
);
1871 while (bytes
> 0 && !ret
) {
1872 int64_t num
= bytes
;
1874 /* Align request. Block drivers can expect the "bulk" of the request
1875 * to be aligned, and that unaligned requests do not cross cluster
1879 /* Make a small request up to the first aligned sector. For
1880 * convenience, limit this request to max_transfer even if
1881 * we don't need to fall back to writes. */
1882 num
= MIN(MIN(bytes
, max_transfer
), alignment
- head
);
1883 head
= (head
+ num
) % alignment
;
1884 assert(num
< max_write_zeroes
);
1885 } else if (tail
&& num
> alignment
) {
1886 /* Shorten the request to the last aligned sector. */
1890 /* limit request size */
1891 if (num
> max_write_zeroes
) {
1892 num
= max_write_zeroes
;
1896 /* First try the efficient write zeroes operation */
1897 if (drv
->bdrv_co_pwrite_zeroes
) {
1898 ret
= drv
->bdrv_co_pwrite_zeroes(bs
, offset
, num
,
1899 flags
& bs
->supported_zero_flags
);
1900 if (ret
!= -ENOTSUP
&& (flags
& BDRV_REQ_FUA
) &&
1901 !(bs
->supported_zero_flags
& BDRV_REQ_FUA
)) {
1905 assert(!bs
->supported_zero_flags
);
1908 if (ret
== -ENOTSUP
&& !(flags
& BDRV_REQ_NO_FALLBACK
)) {
1909 /* Fall back to bounce buffer if write zeroes is unsupported */
1910 BdrvRequestFlags write_flags
= flags
& ~BDRV_REQ_ZERO_WRITE
;
1912 if ((flags
& BDRV_REQ_FUA
) &&
1913 !(bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
1914 /* No need for bdrv_driver_pwrite() to do a fallback
1915 * flush on each chunk; use just one at the end */
1916 write_flags
&= ~BDRV_REQ_FUA
;
1919 num
= MIN(num
, max_transfer
);
1921 buf
= qemu_try_blockalign0(bs
, num
);
1927 qemu_iovec_init_buf(&qiov
, buf
, num
);
1929 ret
= bdrv_driver_pwritev(bs
, offset
, num
, &qiov
, 0, write_flags
);
1931 /* Keep bounce buffer around if it is big enough for all
1932 * all future requests.
1934 if (num
< max_transfer
) {
1945 if (ret
== 0 && need_flush
) {
1946 ret
= bdrv_co_flush(bs
);
1952 static inline int coroutine_fn GRAPH_RDLOCK
1953 bdrv_co_write_req_prepare(BdrvChild
*child
, int64_t offset
, int64_t bytes
,
1954 BdrvTrackedRequest
*req
, int flags
)
1956 BlockDriverState
*bs
= child
->bs
;
1958 bdrv_check_request(offset
, bytes
, &error_abort
);
1960 if (bdrv_is_read_only(bs
)) {
1964 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
1965 assert((bs
->open_flags
& BDRV_O_NO_IO
) == 0);
1966 assert(!(flags
& ~BDRV_REQ_MASK
));
1967 assert(!((flags
& BDRV_REQ_NO_WAIT
) && !(flags
& BDRV_REQ_SERIALISING
)));
1969 if (flags
& BDRV_REQ_SERIALISING
) {
1970 QEMU_LOCK_GUARD(&bs
->reqs_lock
);
1972 tracked_request_set_serialising(req
, bdrv_get_cluster_size(bs
));
1974 if ((flags
& BDRV_REQ_NO_WAIT
) && bdrv_find_conflicting_request(req
)) {
1978 bdrv_wait_serialising_requests_locked(req
);
1980 bdrv_wait_serialising_requests(req
);
1983 assert(req
->overlap_offset
<= offset
);
1984 assert(offset
+ bytes
<= req
->overlap_offset
+ req
->overlap_bytes
);
1985 assert(offset
+ bytes
<= bs
->total_sectors
* BDRV_SECTOR_SIZE
||
1986 child
->perm
& BLK_PERM_RESIZE
);
1988 switch (req
->type
) {
1989 case BDRV_TRACKED_WRITE
:
1990 case BDRV_TRACKED_DISCARD
:
1991 if (flags
& BDRV_REQ_WRITE_UNCHANGED
) {
1992 assert(child
->perm
& (BLK_PERM_WRITE_UNCHANGED
| BLK_PERM_WRITE
));
1994 assert(child
->perm
& BLK_PERM_WRITE
);
1996 bdrv_write_threshold_check_write(bs
, offset
, bytes
);
1998 case BDRV_TRACKED_TRUNCATE
:
1999 assert(child
->perm
& BLK_PERM_RESIZE
);
2006 static inline void coroutine_fn
2007 bdrv_co_write_req_finish(BdrvChild
*child
, int64_t offset
, int64_t bytes
,
2008 BdrvTrackedRequest
*req
, int ret
)
2010 int64_t end_sector
= DIV_ROUND_UP(offset
+ bytes
, BDRV_SECTOR_SIZE
);
2011 BlockDriverState
*bs
= child
->bs
;
2013 bdrv_check_request(offset
, bytes
, &error_abort
);
2015 qatomic_inc(&bs
->write_gen
);
2018 * Discard cannot extend the image, but in error handling cases, such as
2019 * when reverting a qcow2 cluster allocation, the discarded range can pass
2020 * the end of image file, so we cannot assert about BDRV_TRACKED_DISCARD
2021 * here. Instead, just skip it, since semantically a discard request
2022 * beyond EOF cannot expand the image anyway.
2025 (req
->type
== BDRV_TRACKED_TRUNCATE
||
2026 end_sector
> bs
->total_sectors
) &&
2027 req
->type
!= BDRV_TRACKED_DISCARD
) {
2028 bs
->total_sectors
= end_sector
;
2029 bdrv_parent_cb_resize(bs
);
2030 bdrv_dirty_bitmap_truncate(bs
, end_sector
<< BDRV_SECTOR_BITS
);
2033 switch (req
->type
) {
2034 case BDRV_TRACKED_WRITE
:
2035 stat64_max(&bs
->wr_highest_offset
, offset
+ bytes
);
2036 /* fall through, to set dirty bits */
2037 case BDRV_TRACKED_DISCARD
:
2038 bdrv_set_dirty(bs
, offset
, bytes
);
2047 * Forwards an already correctly aligned write request to the BlockDriver,
2048 * after possibly fragmenting it.
2050 static int coroutine_fn GRAPH_RDLOCK
2051 bdrv_aligned_pwritev(BdrvChild
*child
, BdrvTrackedRequest
*req
,
2052 int64_t offset
, int64_t bytes
, int64_t align
,
2053 QEMUIOVector
*qiov
, size_t qiov_offset
,
2054 BdrvRequestFlags flags
)
2056 BlockDriverState
*bs
= child
->bs
;
2057 BlockDriver
*drv
= bs
->drv
;
2060 int64_t bytes_remaining
= bytes
;
2063 bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, &error_abort
);
2069 if (bdrv_has_readonly_bitmaps(bs
)) {
2073 assert(is_power_of_2(align
));
2074 assert((offset
& (align
- 1)) == 0);
2075 assert((bytes
& (align
- 1)) == 0);
2076 max_transfer
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_transfer
, INT_MAX
),
2079 ret
= bdrv_co_write_req_prepare(child
, offset
, bytes
, req
, flags
);
2081 if (!ret
&& bs
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
&&
2082 !(flags
& BDRV_REQ_ZERO_WRITE
) && drv
->bdrv_co_pwrite_zeroes
&&
2083 qemu_iovec_is_zero(qiov
, qiov_offset
, bytes
)) {
2084 flags
|= BDRV_REQ_ZERO_WRITE
;
2085 if (bs
->detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
) {
2086 flags
|= BDRV_REQ_MAY_UNMAP
;
2089 /* Can't use optimization hint with bufferless zero write */
2090 flags
&= ~BDRV_REQ_REGISTERED_BUF
;
2094 /* Do nothing, write notifier decided to fail this request */
2095 } else if (flags
& BDRV_REQ_ZERO_WRITE
) {
2096 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_ZERO
);
2097 ret
= bdrv_co_do_pwrite_zeroes(bs
, offset
, bytes
, flags
);
2098 } else if (flags
& BDRV_REQ_WRITE_COMPRESSED
) {
2099 ret
= bdrv_driver_pwritev_compressed(bs
, offset
, bytes
,
2101 } else if (bytes
<= max_transfer
) {
2102 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV
);
2103 ret
= bdrv_driver_pwritev(bs
, offset
, bytes
, qiov
, qiov_offset
, flags
);
2105 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV
);
2106 while (bytes_remaining
) {
2107 int num
= MIN(bytes_remaining
, max_transfer
);
2108 int local_flags
= flags
;
2111 if (num
< bytes_remaining
&& (flags
& BDRV_REQ_FUA
) &&
2112 !(bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
2113 /* If FUA is going to be emulated by flush, we only
2114 * need to flush on the last iteration */
2115 local_flags
&= ~BDRV_REQ_FUA
;
2118 ret
= bdrv_driver_pwritev(bs
, offset
+ bytes
- bytes_remaining
,
2120 qiov_offset
+ bytes
- bytes_remaining
,
2125 bytes_remaining
-= num
;
2128 bdrv_co_debug_event(bs
, BLKDBG_PWRITEV_DONE
);
2133 bdrv_co_write_req_finish(child
, offset
, bytes
, req
, ret
);
2138 static int coroutine_fn GRAPH_RDLOCK
2139 bdrv_co_do_zero_pwritev(BdrvChild
*child
, int64_t offset
, int64_t bytes
,
2140 BdrvRequestFlags flags
, BdrvTrackedRequest
*req
)
2142 BlockDriverState
*bs
= child
->bs
;
2143 QEMUIOVector local_qiov
;
2144 uint64_t align
= bs
->bl
.request_alignment
;
2147 BdrvRequestPadding pad
;
2149 /* This flag doesn't make sense for padding or zero writes */
2150 flags
&= ~BDRV_REQ_REGISTERED_BUF
;
2152 padding
= bdrv_init_padding(bs
, offset
, bytes
, true, &pad
);
2154 assert(!(flags
& BDRV_REQ_NO_WAIT
));
2155 bdrv_make_request_serialising(req
, align
);
2157 bdrv_padding_rmw_read(child
, req
, &pad
, true);
2159 if (pad
.head
|| pad
.merge_reads
) {
2160 int64_t aligned_offset
= offset
& ~(align
- 1);
2161 int64_t write_bytes
= pad
.merge_reads
? pad
.buf_len
: align
;
2163 qemu_iovec_init_buf(&local_qiov
, pad
.buf
, write_bytes
);
2164 ret
= bdrv_aligned_pwritev(child
, req
, aligned_offset
, write_bytes
,
2165 align
, &local_qiov
, 0,
2166 flags
& ~BDRV_REQ_ZERO_WRITE
);
2167 if (ret
< 0 || pad
.merge_reads
) {
2168 /* Error or all work is done */
2171 offset
+= write_bytes
- pad
.head
;
2172 bytes
-= write_bytes
- pad
.head
;
2176 assert(!bytes
|| (offset
& (align
- 1)) == 0);
2177 if (bytes
>= align
) {
2178 /* Write the aligned part in the middle. */
2179 int64_t aligned_bytes
= bytes
& ~(align
- 1);
2180 ret
= bdrv_aligned_pwritev(child
, req
, offset
, aligned_bytes
, align
,
2185 bytes
-= aligned_bytes
;
2186 offset
+= aligned_bytes
;
2189 assert(!bytes
|| (offset
& (align
- 1)) == 0);
2191 assert(align
== pad
.tail
+ bytes
);
2193 qemu_iovec_init_buf(&local_qiov
, pad
.tail_buf
, align
);
2194 ret
= bdrv_aligned_pwritev(child
, req
, offset
, align
, align
,
2196 flags
& ~BDRV_REQ_ZERO_WRITE
);
2200 bdrv_padding_finalize(&pad
);
2206 * Handle a write request in coroutine context
2208 int coroutine_fn
bdrv_co_pwritev(BdrvChild
*child
,
2209 int64_t offset
, int64_t bytes
, QEMUIOVector
*qiov
,
2210 BdrvRequestFlags flags
)
2213 return bdrv_co_pwritev_part(child
, offset
, bytes
, qiov
, 0, flags
);
2216 int coroutine_fn
bdrv_co_pwritev_part(BdrvChild
*child
,
2217 int64_t offset
, int64_t bytes
, QEMUIOVector
*qiov
, size_t qiov_offset
,
2218 BdrvRequestFlags flags
)
2220 BlockDriverState
*bs
= child
->bs
;
2221 BdrvTrackedRequest req
;
2222 uint64_t align
= bs
->bl
.request_alignment
;
2223 BdrvRequestPadding pad
;
2225 bool padded
= false;
2228 trace_bdrv_co_pwritev_part(child
->bs
, offset
, bytes
, flags
);
2230 if (!bdrv_co_is_inserted(bs
)) {
2234 if (flags
& BDRV_REQ_ZERO_WRITE
) {
2235 ret
= bdrv_check_qiov_request(offset
, bytes
, qiov
, qiov_offset
, NULL
);
2237 ret
= bdrv_check_request32(offset
, bytes
, qiov
, qiov_offset
);
2243 /* If the request is misaligned then we can't make it efficient */
2244 if ((flags
& BDRV_REQ_NO_FALLBACK
) &&
2245 !QEMU_IS_ALIGNED(offset
| bytes
, align
))
2250 if (bytes
== 0 && !QEMU_IS_ALIGNED(offset
, bs
->bl
.request_alignment
)) {
2252 * Aligning zero request is nonsense. Even if driver has special meaning
2253 * of zero-length (like qcow2_co_pwritev_compressed_part), we can't pass
2254 * it to driver due to request_alignment.
2256 * Still, no reason to return an error if someone do unaligned
2257 * zero-length write occasionally.
2262 if (!(flags
& BDRV_REQ_ZERO_WRITE
)) {
2264 * Pad request for following read-modify-write cycle.
2265 * bdrv_co_do_zero_pwritev() does aligning by itself, so, we do
2266 * alignment only if there is no ZERO flag.
2268 ret
= bdrv_pad_request(bs
, &qiov
, &qiov_offset
, &offset
, &bytes
, true,
2269 &pad
, &padded
, &flags
);
2275 bdrv_inc_in_flight(bs
);
2276 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_WRITE
);
2278 if (flags
& BDRV_REQ_ZERO_WRITE
) {
2280 ret
= bdrv_co_do_zero_pwritev(child
, offset
, bytes
, flags
, &req
);
2286 * Request was unaligned to request_alignment and therefore
2287 * padded. We are going to do read-modify-write, and must
2288 * serialize the request to prevent interactions of the
2289 * widened region with other transactions.
2291 assert(!(flags
& BDRV_REQ_NO_WAIT
));
2292 bdrv_make_request_serialising(&req
, align
);
2293 bdrv_padding_rmw_read(child
, &req
, &pad
, false);
2296 ret
= bdrv_aligned_pwritev(child
, &req
, offset
, bytes
, align
,
2297 qiov
, qiov_offset
, flags
);
2299 bdrv_padding_finalize(&pad
);
2302 tracked_request_end(&req
);
2303 bdrv_dec_in_flight(bs
);
2308 int coroutine_fn
bdrv_co_pwrite_zeroes(BdrvChild
*child
, int64_t offset
,
2309 int64_t bytes
, BdrvRequestFlags flags
)
2312 trace_bdrv_co_pwrite_zeroes(child
->bs
, offset
, bytes
, flags
);
2313 assert_bdrv_graph_readable();
2315 if (!(child
->bs
->open_flags
& BDRV_O_UNMAP
)) {
2316 flags
&= ~BDRV_REQ_MAY_UNMAP
;
2319 return bdrv_co_pwritev(child
, offset
, bytes
, NULL
,
2320 BDRV_REQ_ZERO_WRITE
| flags
);
2324 * Flush ALL BDSes regardless of if they are reachable via a BlkBackend or not.
2326 int bdrv_flush_all(void)
2328 BdrvNextIterator it
;
2329 BlockDriverState
*bs
= NULL
;
2332 GLOBAL_STATE_CODE();
2335 * bdrv queue is managed by record/replay,
2336 * creating new flush request for stopping
2337 * the VM may break the determinism
2339 if (replay_events_enabled()) {
2343 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
2344 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
2347 aio_context_acquire(aio_context
);
2348 ret
= bdrv_flush(bs
);
2349 if (ret
< 0 && !result
) {
2352 aio_context_release(aio_context
);
2359 * Returns the allocation status of the specified sectors.
2360 * Drivers not implementing the functionality are assumed to not support
2361 * backing files, hence all their sectors are reported as allocated.
2363 * If 'want_zero' is true, the caller is querying for mapping
2364 * purposes, with a focus on valid BDRV_BLOCK_OFFSET_VALID, _DATA, and
2365 * _ZERO where possible; otherwise, the result favors larger 'pnum',
2366 * with a focus on accurate BDRV_BLOCK_ALLOCATED.
2368 * If 'offset' is beyond the end of the disk image the return value is
2369 * BDRV_BLOCK_EOF and 'pnum' is set to 0.
2371 * 'bytes' is the max value 'pnum' should be set to. If bytes goes
2372 * beyond the end of the disk image it will be clamped; if 'pnum' is set to
2373 * the end of the image, then the returned value will include BDRV_BLOCK_EOF.
2375 * 'pnum' is set to the number of bytes (including and immediately
2376 * following the specified offset) that are easily known to be in the
2377 * same allocated/unallocated state. Note that a second call starting
2378 * at the original offset plus returned pnum may have the same status.
2379 * The returned value is non-zero on success except at end-of-file.
2381 * Returns negative errno on failure. Otherwise, if the
2382 * BDRV_BLOCK_OFFSET_VALID bit is set, 'map' and 'file' (if non-NULL) are
2383 * set to the host mapping and BDS corresponding to the guest offset.
2385 static int coroutine_fn GRAPH_RDLOCK
2386 bdrv_co_block_status(BlockDriverState
*bs
, bool want_zero
,
2387 int64_t offset
, int64_t bytes
,
2388 int64_t *pnum
, int64_t *map
, BlockDriverState
**file
)
2391 int64_t n
; /* bytes */
2393 int64_t local_map
= 0;
2394 BlockDriverState
*local_file
= NULL
;
2395 int64_t aligned_offset
, aligned_bytes
;
2397 bool has_filtered_child
;
2400 assert_bdrv_graph_readable();
2402 total_size
= bdrv_co_getlength(bs
);
2403 if (total_size
< 0) {
2408 if (offset
>= total_size
) {
2409 ret
= BDRV_BLOCK_EOF
;
2417 n
= total_size
- offset
;
2422 /* Must be non-NULL or bdrv_co_getlength() would have failed */
2424 has_filtered_child
= bdrv_filter_child(bs
);
2425 if (!bs
->drv
->bdrv_co_block_status
&& !has_filtered_child
) {
2427 ret
= BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
;
2428 if (offset
+ bytes
== total_size
) {
2429 ret
|= BDRV_BLOCK_EOF
;
2431 if (bs
->drv
->protocol_name
) {
2432 ret
|= BDRV_BLOCK_OFFSET_VALID
;
2439 bdrv_inc_in_flight(bs
);
2441 /* Round out to request_alignment boundaries */
2442 align
= bs
->bl
.request_alignment
;
2443 aligned_offset
= QEMU_ALIGN_DOWN(offset
, align
);
2444 aligned_bytes
= ROUND_UP(offset
+ bytes
, align
) - aligned_offset
;
2446 if (bs
->drv
->bdrv_co_block_status
) {
2448 * Use the block-status cache only for protocol nodes: Format
2449 * drivers are generally quick to inquire the status, but protocol
2450 * drivers often need to get information from outside of qemu, so
2451 * we do not have control over the actual implementation. There
2452 * have been cases where inquiring the status took an unreasonably
2453 * long time, and we can do nothing in qemu to fix it.
2454 * This is especially problematic for images with large data areas,
2455 * because finding the few holes in them and giving them special
2456 * treatment does not gain much performance. Therefore, we try to
2457 * cache the last-identified data region.
2459 * Second, limiting ourselves to protocol nodes allows us to assume
2460 * the block status for data regions to be DATA | OFFSET_VALID, and
2461 * that the host offset is the same as the guest offset.
2463 * Note that it is possible that external writers zero parts of
2464 * the cached regions without the cache being invalidated, and so
2465 * we may report zeroes as data. This is not catastrophic,
2466 * however, because reporting zeroes as data is fine.
2468 if (QLIST_EMPTY(&bs
->children
) &&
2469 bdrv_bsc_is_data(bs
, aligned_offset
, pnum
))
2471 ret
= BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
;
2473 local_map
= aligned_offset
;
2475 ret
= bs
->drv
->bdrv_co_block_status(bs
, want_zero
, aligned_offset
,
2476 aligned_bytes
, pnum
, &local_map
,
2480 * Note that checking QLIST_EMPTY(&bs->children) is also done when
2481 * the cache is queried above. Technically, we do not need to check
2482 * it here; the worst that can happen is that we fill the cache for
2483 * non-protocol nodes, and then it is never used. However, filling
2484 * the cache requires an RCU update, so double check here to avoid
2485 * such an update if possible.
2487 * Check want_zero, because we only want to update the cache when we
2488 * have accurate information about what is zero and what is data.
2491 ret
== (BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
) &&
2492 QLIST_EMPTY(&bs
->children
))
2495 * When a protocol driver reports BLOCK_OFFSET_VALID, the
2496 * returned local_map value must be the same as the offset we
2497 * have passed (aligned_offset), and local_bs must be the node
2499 * Assert this, because we follow this rule when reading from
2500 * the cache (see the `local_file = bs` and
2501 * `local_map = aligned_offset` assignments above), and the
2502 * result the cache delivers must be the same as the driver
2505 assert(local_file
== bs
);
2506 assert(local_map
== aligned_offset
);
2507 bdrv_bsc_fill(bs
, aligned_offset
, *pnum
);
2511 /* Default code for filters */
2513 local_file
= bdrv_filter_bs(bs
);
2516 *pnum
= aligned_bytes
;
2517 local_map
= aligned_offset
;
2518 ret
= BDRV_BLOCK_RAW
| BDRV_BLOCK_OFFSET_VALID
;
2526 * The driver's result must be a non-zero multiple of request_alignment.
2527 * Clamp pnum and adjust map to original request.
2529 assert(*pnum
&& QEMU_IS_ALIGNED(*pnum
, align
) &&
2530 align
> offset
- aligned_offset
);
2531 if (ret
& BDRV_BLOCK_RECURSE
) {
2532 assert(ret
& BDRV_BLOCK_DATA
);
2533 assert(ret
& BDRV_BLOCK_OFFSET_VALID
);
2534 assert(!(ret
& BDRV_BLOCK_ZERO
));
2537 *pnum
-= offset
- aligned_offset
;
2538 if (*pnum
> bytes
) {
2541 if (ret
& BDRV_BLOCK_OFFSET_VALID
) {
2542 local_map
+= offset
- aligned_offset
;
2545 if (ret
& BDRV_BLOCK_RAW
) {
2546 assert(ret
& BDRV_BLOCK_OFFSET_VALID
&& local_file
);
2547 ret
= bdrv_co_block_status(local_file
, want_zero
, local_map
,
2548 *pnum
, pnum
, &local_map
, &local_file
);
2552 if (ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ZERO
)) {
2553 ret
|= BDRV_BLOCK_ALLOCATED
;
2554 } else if (bs
->drv
->supports_backing
) {
2555 BlockDriverState
*cow_bs
= bdrv_cow_bs(bs
);
2558 ret
|= BDRV_BLOCK_ZERO
;
2559 } else if (want_zero
) {
2560 int64_t size2
= bdrv_co_getlength(cow_bs
);
2562 if (size2
>= 0 && offset
>= size2
) {
2563 ret
|= BDRV_BLOCK_ZERO
;
2568 if (want_zero
&& ret
& BDRV_BLOCK_RECURSE
&&
2569 local_file
&& local_file
!= bs
&&
2570 (ret
& BDRV_BLOCK_DATA
) && !(ret
& BDRV_BLOCK_ZERO
) &&
2571 (ret
& BDRV_BLOCK_OFFSET_VALID
)) {
2575 ret2
= bdrv_co_block_status(local_file
, want_zero
, local_map
,
2576 *pnum
, &file_pnum
, NULL
, NULL
);
2578 /* Ignore errors. This is just providing extra information, it
2579 * is useful but not necessary.
2581 if (ret2
& BDRV_BLOCK_EOF
&&
2582 (!file_pnum
|| ret2
& BDRV_BLOCK_ZERO
)) {
2584 * It is valid for the format block driver to read
2585 * beyond the end of the underlying file's current
2586 * size; such areas read as zero.
2588 ret
|= BDRV_BLOCK_ZERO
;
2590 /* Limit request to the range reported by the protocol driver */
2592 ret
|= (ret2
& BDRV_BLOCK_ZERO
);
2598 bdrv_dec_in_flight(bs
);
2599 if (ret
>= 0 && offset
+ *pnum
== total_size
) {
2600 ret
|= BDRV_BLOCK_EOF
;
2613 bdrv_co_common_block_status_above(BlockDriverState
*bs
,
2614 BlockDriverState
*base
,
2621 BlockDriverState
**file
,
2625 BlockDriverState
*p
;
2630 assert(!include_base
|| base
); /* Can't include NULL base */
2631 assert_bdrv_graph_readable();
2638 if (!include_base
&& bs
== base
) {
2643 ret
= bdrv_co_block_status(bs
, want_zero
, offset
, bytes
, pnum
, map
, file
);
2645 if (ret
< 0 || *pnum
== 0 || ret
& BDRV_BLOCK_ALLOCATED
|| bs
== base
) {
2649 if (ret
& BDRV_BLOCK_EOF
) {
2650 eof
= offset
+ *pnum
;
2653 assert(*pnum
<= bytes
);
2656 for (p
= bdrv_filter_or_cow_bs(bs
); include_base
|| p
!= base
;
2657 p
= bdrv_filter_or_cow_bs(p
))
2659 ret
= bdrv_co_block_status(p
, want_zero
, offset
, bytes
, pnum
, map
,
2667 * The top layer deferred to this layer, and because this layer is
2668 * short, any zeroes that we synthesize beyond EOF behave as if they
2669 * were allocated at this layer.
2671 * We don't include BDRV_BLOCK_EOF into ret, as upper layer may be
2672 * larger. We'll add BDRV_BLOCK_EOF if needed at function end, see
2675 assert(ret
& BDRV_BLOCK_EOF
);
2680 ret
= BDRV_BLOCK_ZERO
| BDRV_BLOCK_ALLOCATED
;
2683 if (ret
& BDRV_BLOCK_ALLOCATED
) {
2685 * We've found the node and the status, we must break.
2687 * Drop BDRV_BLOCK_EOF, as it's not for upper layer, which may be
2688 * larger. We'll add BDRV_BLOCK_EOF if needed at function end, see
2691 ret
&= ~BDRV_BLOCK_EOF
;
2696 assert(include_base
);
2701 * OK, [offset, offset + *pnum) region is unallocated on this layer,
2702 * let's continue the diving.
2704 assert(*pnum
<= bytes
);
2708 if (offset
+ *pnum
== eof
) {
2709 ret
|= BDRV_BLOCK_EOF
;
2715 int coroutine_fn
bdrv_co_block_status_above(BlockDriverState
*bs
,
2716 BlockDriverState
*base
,
2717 int64_t offset
, int64_t bytes
,
2718 int64_t *pnum
, int64_t *map
,
2719 BlockDriverState
**file
)
2722 return bdrv_co_common_block_status_above(bs
, base
, false, true, offset
,
2723 bytes
, pnum
, map
, file
, NULL
);
2726 int bdrv_block_status_above(BlockDriverState
*bs
, BlockDriverState
*base
,
2727 int64_t offset
, int64_t bytes
, int64_t *pnum
,
2728 int64_t *map
, BlockDriverState
**file
)
2731 return bdrv_common_block_status_above(bs
, base
, false, true, offset
, bytes
,
2732 pnum
, map
, file
, NULL
);
2735 int bdrv_block_status(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
2736 int64_t *pnum
, int64_t *map
, BlockDriverState
**file
)
2739 return bdrv_block_status_above(bs
, bdrv_filter_or_cow_bs(bs
),
2740 offset
, bytes
, pnum
, map
, file
);
2744 * Check @bs (and its backing chain) to see if the range defined
2745 * by @offset and @bytes is known to read as zeroes.
2746 * Return 1 if that is the case, 0 otherwise and -errno on error.
2747 * This test is meant to be fast rather than accurate so returning 0
2748 * does not guarantee non-zero data.
2750 int coroutine_fn
bdrv_co_is_zero_fast(BlockDriverState
*bs
, int64_t offset
,
2754 int64_t pnum
= bytes
;
2761 ret
= bdrv_co_common_block_status_above(bs
, NULL
, false, false, offset
,
2762 bytes
, &pnum
, NULL
, NULL
, NULL
);
2768 return (pnum
== bytes
) && (ret
& BDRV_BLOCK_ZERO
);
2771 int coroutine_fn
bdrv_co_is_allocated(BlockDriverState
*bs
, int64_t offset
,
2772 int64_t bytes
, int64_t *pnum
)
2778 ret
= bdrv_co_common_block_status_above(bs
, bs
, true, false, offset
,
2779 bytes
, pnum
? pnum
: &dummy
, NULL
,
2784 return !!(ret
& BDRV_BLOCK_ALLOCATED
);
2787 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
2794 ret
= bdrv_common_block_status_above(bs
, bs
, true, false, offset
,
2795 bytes
, pnum
? pnum
: &dummy
, NULL
,
2800 return !!(ret
& BDRV_BLOCK_ALLOCATED
);
2803 /* See bdrv_is_allocated_above for documentation */
2804 int coroutine_fn
bdrv_co_is_allocated_above(BlockDriverState
*top
,
2805 BlockDriverState
*base
,
2806 bool include_base
, int64_t offset
,
2807 int64_t bytes
, int64_t *pnum
)
2813 ret
= bdrv_co_common_block_status_above(top
, base
, include_base
, false,
2814 offset
, bytes
, pnum
, NULL
, NULL
,
2820 if (ret
& BDRV_BLOCK_ALLOCATED
) {
2827 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
2829 * Return a positive depth if (a prefix of) the given range is allocated
2830 * in any image between BASE and TOP (BASE is only included if include_base
2831 * is set). Depth 1 is TOP, 2 is the first backing layer, and so forth.
2832 * BASE can be NULL to check if the given offset is allocated in any
2833 * image of the chain. Return 0 otherwise, or negative errno on
2836 * 'pnum' is set to the number of bytes (including and immediately
2837 * following the specified offset) that are known to be in the same
2838 * allocated/unallocated state. Note that a subsequent call starting
2839 * at 'offset + *pnum' may return the same allocation status (in other
2840 * words, the result is not necessarily the maximum possible range);
2841 * but 'pnum' will only be 0 when end of file is reached.
2843 int bdrv_is_allocated_above(BlockDriverState
*top
,
2844 BlockDriverState
*base
,
2845 bool include_base
, int64_t offset
,
2846 int64_t bytes
, int64_t *pnum
)
2852 ret
= bdrv_common_block_status_above(top
, base
, include_base
, false,
2853 offset
, bytes
, pnum
, NULL
, NULL
,
2859 if (ret
& BDRV_BLOCK_ALLOCATED
) {
2866 bdrv_co_readv_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
)
2868 BlockDriver
*drv
= bs
->drv
;
2869 BlockDriverState
*child_bs
= bdrv_primary_bs(bs
);
2872 assert_bdrv_graph_readable();
2874 ret
= bdrv_check_qiov_request(pos
, qiov
->size
, qiov
, 0, NULL
);
2883 bdrv_inc_in_flight(bs
);
2885 if (drv
->bdrv_co_load_vmstate
) {
2886 ret
= drv
->bdrv_co_load_vmstate(bs
, qiov
, pos
);
2887 } else if (child_bs
) {
2888 ret
= bdrv_co_readv_vmstate(child_bs
, qiov
, pos
);
2893 bdrv_dec_in_flight(bs
);
2899 bdrv_co_writev_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
)
2901 BlockDriver
*drv
= bs
->drv
;
2902 BlockDriverState
*child_bs
= bdrv_primary_bs(bs
);
2905 assert_bdrv_graph_readable();
2907 ret
= bdrv_check_qiov_request(pos
, qiov
->size
, qiov
, 0, NULL
);
2916 bdrv_inc_in_flight(bs
);
2918 if (drv
->bdrv_co_save_vmstate
) {
2919 ret
= drv
->bdrv_co_save_vmstate(bs
, qiov
, pos
);
2920 } else if (child_bs
) {
2921 ret
= bdrv_co_writev_vmstate(child_bs
, qiov
, pos
);
2926 bdrv_dec_in_flight(bs
);
2931 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
2932 int64_t pos
, int size
)
2934 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, size
);
2935 int ret
= bdrv_writev_vmstate(bs
, &qiov
, pos
);
2938 return ret
< 0 ? ret
: size
;
2941 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
2942 int64_t pos
, int size
)
2944 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, size
);
2945 int ret
= bdrv_readv_vmstate(bs
, &qiov
, pos
);
2948 return ret
< 0 ? ret
: size
;
2951 /**************************************************************/
2955 * Synchronously cancels an acb. Must be called with the BQL held and the acb
2956 * must be processed with the BQL held too (IOThreads are not allowed).
2958 * Use bdrv_aio_cancel_async() instead when possible.
2960 void bdrv_aio_cancel(BlockAIOCB
*acb
)
2962 GLOBAL_STATE_CODE();
2964 bdrv_aio_cancel_async(acb
);
2965 AIO_WAIT_WHILE_UNLOCKED(NULL
, acb
->refcnt
> 1);
2966 qemu_aio_unref(acb
);
2969 /* Async version of aio cancel. The caller is not blocked if the acb implements
2970 * cancel_async, otherwise we do nothing and let the request normally complete.
2971 * In either case the completion callback must be called. */
2972 void bdrv_aio_cancel_async(BlockAIOCB
*acb
)
2975 if (acb
->aiocb_info
->cancel_async
) {
2976 acb
->aiocb_info
->cancel_async(acb
);
2980 /**************************************************************/
2981 /* Coroutine block device emulation */
2983 int coroutine_fn
bdrv_co_flush(BlockDriverState
*bs
)
2985 BdrvChild
*primary_child
= bdrv_primary_child(bs
);
2991 assert_bdrv_graph_readable();
2992 bdrv_inc_in_flight(bs
);
2994 if (!bdrv_co_is_inserted(bs
) || bdrv_is_read_only(bs
) ||
2999 qemu_mutex_lock(&bs
->reqs_lock
);
3000 current_gen
= qatomic_read(&bs
->write_gen
);
3002 /* Wait until any previous flushes are completed */
3003 while (bs
->active_flush_req
) {
3004 qemu_co_queue_wait(&bs
->flush_queue
, &bs
->reqs_lock
);
3007 /* Flushes reach this point in nondecreasing current_gen order. */
3008 bs
->active_flush_req
= true;
3009 qemu_mutex_unlock(&bs
->reqs_lock
);
3011 /* Write back all layers by calling one driver function */
3012 if (bs
->drv
->bdrv_co_flush
) {
3013 ret
= bs
->drv
->bdrv_co_flush(bs
);
3017 /* Write back cached data to the OS even with cache=unsafe */
3018 BLKDBG_CO_EVENT(primary_child
, BLKDBG_FLUSH_TO_OS
);
3019 if (bs
->drv
->bdrv_co_flush_to_os
) {
3020 ret
= bs
->drv
->bdrv_co_flush_to_os(bs
);
3026 /* But don't actually force it to the disk with cache=unsafe */
3027 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
3028 goto flush_children
;
3031 /* Check if we really need to flush anything */
3032 if (bs
->flushed_gen
== current_gen
) {
3033 goto flush_children
;
3036 BLKDBG_CO_EVENT(primary_child
, BLKDBG_FLUSH_TO_DISK
);
3038 /* bs->drv->bdrv_co_flush() might have ejected the BDS
3039 * (even in case of apparent success) */
3043 if (bs
->drv
->bdrv_co_flush_to_disk
) {
3044 ret
= bs
->drv
->bdrv_co_flush_to_disk(bs
);
3045 } else if (bs
->drv
->bdrv_aio_flush
) {
3047 CoroutineIOCompletion co
= {
3048 .coroutine
= qemu_coroutine_self(),
3051 acb
= bs
->drv
->bdrv_aio_flush(bs
, bdrv_co_io_em_complete
, &co
);
3055 qemu_coroutine_yield();
3060 * Some block drivers always operate in either writethrough or unsafe
3061 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
3062 * know how the server works (because the behaviour is hardcoded or
3063 * depends on server-side configuration), so we can't ensure that
3064 * everything is safe on disk. Returning an error doesn't work because
3065 * that would break guests even if the server operates in writethrough
3068 * Let's hope the user knows what he's doing.
3077 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
3078 * in the case of cache=unsafe, so there are no useless flushes.
3082 QLIST_FOREACH(child
, &bs
->children
, next
) {
3083 if (child
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) {
3084 int this_child_ret
= bdrv_co_flush(child
->bs
);
3086 ret
= this_child_ret
;
3092 /* Notify any pending flushes that we have completed */
3094 bs
->flushed_gen
= current_gen
;
3097 qemu_mutex_lock(&bs
->reqs_lock
);
3098 bs
->active_flush_req
= false;
3099 /* Return value is ignored - it's ok if wait queue is empty */
3100 qemu_co_queue_next(&bs
->flush_queue
);
3101 qemu_mutex_unlock(&bs
->reqs_lock
);
3104 bdrv_dec_in_flight(bs
);
3108 int coroutine_fn
bdrv_co_pdiscard(BdrvChild
*child
, int64_t offset
,
3111 BdrvTrackedRequest req
;
3113 int64_t max_pdiscard
;
3114 int head
, tail
, align
;
3115 BlockDriverState
*bs
= child
->bs
;
3117 assert_bdrv_graph_readable();
3119 if (!bs
|| !bs
->drv
|| !bdrv_co_is_inserted(bs
)) {
3123 if (bdrv_has_readonly_bitmaps(bs
)) {
3127 ret
= bdrv_check_request(offset
, bytes
, NULL
);
3132 /* Do nothing if disabled. */
3133 if (!(bs
->open_flags
& BDRV_O_UNMAP
)) {
3137 if (!bs
->drv
->bdrv_co_pdiscard
&& !bs
->drv
->bdrv_aio_pdiscard
) {
3141 /* Invalidate the cached block-status data range if this discard overlaps */
3142 bdrv_bsc_invalidate_range(bs
, offset
, bytes
);
3144 /* Discard is advisory, but some devices track and coalesce
3145 * unaligned requests, so we must pass everything down rather than
3146 * round here. Still, most devices will just silently ignore
3147 * unaligned requests (by returning -ENOTSUP), so we must fragment
3148 * the request accordingly. */
3149 align
= MAX(bs
->bl
.pdiscard_alignment
, bs
->bl
.request_alignment
);
3150 assert(align
% bs
->bl
.request_alignment
== 0);
3151 head
= offset
% align
;
3152 tail
= (offset
+ bytes
) % align
;
3154 bdrv_inc_in_flight(bs
);
3155 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_DISCARD
);
3157 ret
= bdrv_co_write_req_prepare(child
, offset
, bytes
, &req
, 0);
3162 max_pdiscard
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_pdiscard
, INT64_MAX
),
3164 assert(max_pdiscard
>= bs
->bl
.request_alignment
);
3167 int64_t num
= bytes
;
3170 /* Make small requests to get to alignment boundaries. */
3171 num
= MIN(bytes
, align
- head
);
3172 if (!QEMU_IS_ALIGNED(num
, bs
->bl
.request_alignment
)) {
3173 num
%= bs
->bl
.request_alignment
;
3175 head
= (head
+ num
) % align
;
3176 assert(num
< max_pdiscard
);
3179 /* Shorten the request to the last aligned cluster. */
3181 } else if (!QEMU_IS_ALIGNED(tail
, bs
->bl
.request_alignment
) &&
3182 tail
> bs
->bl
.request_alignment
) {
3183 tail
%= bs
->bl
.request_alignment
;
3187 /* limit request size */
3188 if (num
> max_pdiscard
) {
3196 if (bs
->drv
->bdrv_co_pdiscard
) {
3197 ret
= bs
->drv
->bdrv_co_pdiscard(bs
, offset
, num
);
3200 CoroutineIOCompletion co
= {
3201 .coroutine
= qemu_coroutine_self(),
3204 acb
= bs
->drv
->bdrv_aio_pdiscard(bs
, offset
, num
,
3205 bdrv_co_io_em_complete
, &co
);
3210 qemu_coroutine_yield();
3214 if (ret
&& ret
!= -ENOTSUP
) {
3223 bdrv_co_write_req_finish(child
, req
.offset
, req
.bytes
, &req
, ret
);
3224 tracked_request_end(&req
);
3225 bdrv_dec_in_flight(bs
);
3229 int coroutine_fn
bdrv_co_ioctl(BlockDriverState
*bs
, int req
, void *buf
)
3231 BlockDriver
*drv
= bs
->drv
;
3232 CoroutineIOCompletion co
= {
3233 .coroutine
= qemu_coroutine_self(),
3237 assert_bdrv_graph_readable();
3239 bdrv_inc_in_flight(bs
);
3240 if (!drv
|| (!drv
->bdrv_aio_ioctl
&& !drv
->bdrv_co_ioctl
)) {
3245 if (drv
->bdrv_co_ioctl
) {
3246 co
.ret
= drv
->bdrv_co_ioctl(bs
, req
, buf
);
3248 acb
= drv
->bdrv_aio_ioctl(bs
, req
, buf
, bdrv_co_io_em_complete
, &co
);
3253 qemu_coroutine_yield();
3256 bdrv_dec_in_flight(bs
);
3260 int coroutine_fn
bdrv_co_zone_report(BlockDriverState
*bs
, int64_t offset
,
3261 unsigned int *nr_zones
,
3262 BlockZoneDescriptor
*zones
)
3264 BlockDriver
*drv
= bs
->drv
;
3265 CoroutineIOCompletion co
= {
3266 .coroutine
= qemu_coroutine_self(),
3270 bdrv_inc_in_flight(bs
);
3271 if (!drv
|| !drv
->bdrv_co_zone_report
|| bs
->bl
.zoned
== BLK_Z_NONE
) {
3275 co
.ret
= drv
->bdrv_co_zone_report(bs
, offset
, nr_zones
, zones
);
3277 bdrv_dec_in_flight(bs
);
3281 int coroutine_fn
bdrv_co_zone_mgmt(BlockDriverState
*bs
, BlockZoneOp op
,
3282 int64_t offset
, int64_t len
)
3284 BlockDriver
*drv
= bs
->drv
;
3285 CoroutineIOCompletion co
= {
3286 .coroutine
= qemu_coroutine_self(),
3290 bdrv_inc_in_flight(bs
);
3291 if (!drv
|| !drv
->bdrv_co_zone_mgmt
|| bs
->bl
.zoned
== BLK_Z_NONE
) {
3295 co
.ret
= drv
->bdrv_co_zone_mgmt(bs
, op
, offset
, len
);
3297 bdrv_dec_in_flight(bs
);
3301 int coroutine_fn
bdrv_co_zone_append(BlockDriverState
*bs
, int64_t *offset
,
3303 BdrvRequestFlags flags
)
3306 BlockDriver
*drv
= bs
->drv
;
3307 CoroutineIOCompletion co
= {
3308 .coroutine
= qemu_coroutine_self(),
3312 ret
= bdrv_check_qiov_request(*offset
, qiov
->size
, qiov
, 0, NULL
);
3317 bdrv_inc_in_flight(bs
);
3318 if (!drv
|| !drv
->bdrv_co_zone_append
|| bs
->bl
.zoned
== BLK_Z_NONE
) {
3322 co
.ret
= drv
->bdrv_co_zone_append(bs
, offset
, qiov
, flags
);
3324 bdrv_dec_in_flight(bs
);
3328 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
3331 return qemu_memalign(bdrv_opt_mem_align(bs
), size
);
3334 void *qemu_blockalign0(BlockDriverState
*bs
, size_t size
)
3337 return memset(qemu_blockalign(bs
, size
), 0, size
);
3340 void *qemu_try_blockalign(BlockDriverState
*bs
, size_t size
)
3342 size_t align
= bdrv_opt_mem_align(bs
);
3345 /* Ensure that NULL is never returned on success */
3351 return qemu_try_memalign(align
, size
);
3354 void *qemu_try_blockalign0(BlockDriverState
*bs
, size_t size
)
3356 void *mem
= qemu_try_blockalign(bs
, size
);
3360 memset(mem
, 0, size
);
3366 /* Helper that undoes bdrv_register_buf() when it fails partway through */
3367 static void GRAPH_RDLOCK
3368 bdrv_register_buf_rollback(BlockDriverState
*bs
, void *host
, size_t size
,
3369 BdrvChild
*final_child
)
3373 GLOBAL_STATE_CODE();
3374 assert_bdrv_graph_readable();
3376 QLIST_FOREACH(child
, &bs
->children
, next
) {
3377 if (child
== final_child
) {
3381 bdrv_unregister_buf(child
->bs
, host
, size
);
3384 if (bs
->drv
&& bs
->drv
->bdrv_unregister_buf
) {
3385 bs
->drv
->bdrv_unregister_buf(bs
, host
, size
);
3389 bool bdrv_register_buf(BlockDriverState
*bs
, void *host
, size_t size
,
3394 GLOBAL_STATE_CODE();
3395 GRAPH_RDLOCK_GUARD_MAINLOOP();
3397 if (bs
->drv
&& bs
->drv
->bdrv_register_buf
) {
3398 if (!bs
->drv
->bdrv_register_buf(bs
, host
, size
, errp
)) {
3402 QLIST_FOREACH(child
, &bs
->children
, next
) {
3403 if (!bdrv_register_buf(child
->bs
, host
, size
, errp
)) {
3404 bdrv_register_buf_rollback(bs
, host
, size
, child
);
3411 void bdrv_unregister_buf(BlockDriverState
*bs
, void *host
, size_t size
)
3415 GLOBAL_STATE_CODE();
3416 GRAPH_RDLOCK_GUARD_MAINLOOP();
3418 if (bs
->drv
&& bs
->drv
->bdrv_unregister_buf
) {
3419 bs
->drv
->bdrv_unregister_buf(bs
, host
, size
);
3421 QLIST_FOREACH(child
, &bs
->children
, next
) {
3422 bdrv_unregister_buf(child
->bs
, host
, size
);
3426 static int coroutine_fn GRAPH_RDLOCK
bdrv_co_copy_range_internal(
3427 BdrvChild
*src
, int64_t src_offset
, BdrvChild
*dst
,
3428 int64_t dst_offset
, int64_t bytes
,
3429 BdrvRequestFlags read_flags
, BdrvRequestFlags write_flags
,
3432 BdrvTrackedRequest req
;
3434 assert_bdrv_graph_readable();
3436 /* TODO We can support BDRV_REQ_NO_FALLBACK here */
3437 assert(!(read_flags
& BDRV_REQ_NO_FALLBACK
));
3438 assert(!(write_flags
& BDRV_REQ_NO_FALLBACK
));
3439 assert(!(read_flags
& BDRV_REQ_NO_WAIT
));
3440 assert(!(write_flags
& BDRV_REQ_NO_WAIT
));
3442 if (!dst
|| !dst
->bs
|| !bdrv_co_is_inserted(dst
->bs
)) {
3445 ret
= bdrv_check_request32(dst_offset
, bytes
, NULL
, 0);
3449 if (write_flags
& BDRV_REQ_ZERO_WRITE
) {
3450 return bdrv_co_pwrite_zeroes(dst
, dst_offset
, bytes
, write_flags
);
3453 if (!src
|| !src
->bs
|| !bdrv_co_is_inserted(src
->bs
)) {
3456 ret
= bdrv_check_request32(src_offset
, bytes
, NULL
, 0);
3461 if (!src
->bs
->drv
->bdrv_co_copy_range_from
3462 || !dst
->bs
->drv
->bdrv_co_copy_range_to
3463 || src
->bs
->encrypted
|| dst
->bs
->encrypted
) {
3468 bdrv_inc_in_flight(src
->bs
);
3469 tracked_request_begin(&req
, src
->bs
, src_offset
, bytes
,
3472 /* BDRV_REQ_SERIALISING is only for write operation */
3473 assert(!(read_flags
& BDRV_REQ_SERIALISING
));
3474 bdrv_wait_serialising_requests(&req
);
3476 ret
= src
->bs
->drv
->bdrv_co_copy_range_from(src
->bs
,
3480 read_flags
, write_flags
);
3482 tracked_request_end(&req
);
3483 bdrv_dec_in_flight(src
->bs
);
3485 bdrv_inc_in_flight(dst
->bs
);
3486 tracked_request_begin(&req
, dst
->bs
, dst_offset
, bytes
,
3487 BDRV_TRACKED_WRITE
);
3488 ret
= bdrv_co_write_req_prepare(dst
, dst_offset
, bytes
, &req
,
3491 ret
= dst
->bs
->drv
->bdrv_co_copy_range_to(dst
->bs
,
3495 read_flags
, write_flags
);
3497 bdrv_co_write_req_finish(dst
, dst_offset
, bytes
, &req
, ret
);
3498 tracked_request_end(&req
);
3499 bdrv_dec_in_flight(dst
->bs
);
3505 /* Copy range from @src to @dst.
3507 * See the comment of bdrv_co_copy_range for the parameter and return value
3509 int coroutine_fn
bdrv_co_copy_range_from(BdrvChild
*src
, int64_t src_offset
,
3510 BdrvChild
*dst
, int64_t dst_offset
,
3512 BdrvRequestFlags read_flags
,
3513 BdrvRequestFlags write_flags
)
3516 assert_bdrv_graph_readable();
3517 trace_bdrv_co_copy_range_from(src
, src_offset
, dst
, dst_offset
, bytes
,
3518 read_flags
, write_flags
);
3519 return bdrv_co_copy_range_internal(src
, src_offset
, dst
, dst_offset
,
3520 bytes
, read_flags
, write_flags
, true);
3523 /* Copy range from @src to @dst.
3525 * See the comment of bdrv_co_copy_range for the parameter and return value
3527 int coroutine_fn
bdrv_co_copy_range_to(BdrvChild
*src
, int64_t src_offset
,
3528 BdrvChild
*dst
, int64_t dst_offset
,
3530 BdrvRequestFlags read_flags
,
3531 BdrvRequestFlags write_flags
)
3534 assert_bdrv_graph_readable();
3535 trace_bdrv_co_copy_range_to(src
, src_offset
, dst
, dst_offset
, bytes
,
3536 read_flags
, write_flags
);
3537 return bdrv_co_copy_range_internal(src
, src_offset
, dst
, dst_offset
,
3538 bytes
, read_flags
, write_flags
, false);
3541 int coroutine_fn
bdrv_co_copy_range(BdrvChild
*src
, int64_t src_offset
,
3542 BdrvChild
*dst
, int64_t dst_offset
,
3543 int64_t bytes
, BdrvRequestFlags read_flags
,
3544 BdrvRequestFlags write_flags
)
3547 assert_bdrv_graph_readable();
3549 return bdrv_co_copy_range_from(src
, src_offset
,
3551 bytes
, read_flags
, write_flags
);
3554 static void bdrv_parent_cb_resize(BlockDriverState
*bs
)
3557 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
3558 if (c
->klass
->resize
) {
3559 c
->klass
->resize(c
);
3565 * Truncate file to 'offset' bytes (needed only for file protocols)
3567 * If 'exact' is true, the file must be resized to exactly the given
3568 * 'offset'. Otherwise, it is sufficient for the node to be at least
3569 * 'offset' bytes in length.
3571 int coroutine_fn
bdrv_co_truncate(BdrvChild
*child
, int64_t offset
, bool exact
,
3572 PreallocMode prealloc
, BdrvRequestFlags flags
,
3575 BlockDriverState
*bs
= child
->bs
;
3576 BdrvChild
*filtered
, *backing
;
3577 BlockDriver
*drv
= bs
->drv
;
3578 BdrvTrackedRequest req
;
3579 int64_t old_size
, new_bytes
;
3582 assert_bdrv_graph_readable();
3584 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3586 error_setg(errp
, "No medium inserted");
3590 error_setg(errp
, "Image size cannot be negative");
3594 ret
= bdrv_check_request(offset
, 0, errp
);
3599 old_size
= bdrv_co_getlength(bs
);
3601 error_setg_errno(errp
, -old_size
, "Failed to get old image size");
3605 if (bdrv_is_read_only(bs
)) {
3606 error_setg(errp
, "Image is read-only");
3610 if (offset
> old_size
) {
3611 new_bytes
= offset
- old_size
;
3616 bdrv_inc_in_flight(bs
);
3617 tracked_request_begin(&req
, bs
, offset
- new_bytes
, new_bytes
,
3618 BDRV_TRACKED_TRUNCATE
);
3620 /* If we are growing the image and potentially using preallocation for the
3621 * new area, we need to make sure that no write requests are made to it
3622 * concurrently or they might be overwritten by preallocation. */
3624 bdrv_make_request_serialising(&req
, 1);
3626 ret
= bdrv_co_write_req_prepare(child
, offset
- new_bytes
, new_bytes
, &req
,
3629 error_setg_errno(errp
, -ret
,
3630 "Failed to prepare request for truncation");
3634 filtered
= bdrv_filter_child(bs
);
3635 backing
= bdrv_cow_child(bs
);
3638 * If the image has a backing file that is large enough that it would
3639 * provide data for the new area, we cannot leave it unallocated because
3640 * then the backing file content would become visible. Instead, zero-fill
3643 * Note that if the image has a backing file, but was opened without the
3644 * backing file, taking care of keeping things consistent with that backing
3645 * file is the user's responsibility.
3647 if (new_bytes
&& backing
) {
3648 int64_t backing_len
;
3650 backing_len
= bdrv_co_getlength(backing
->bs
);
3651 if (backing_len
< 0) {
3653 error_setg_errno(errp
, -ret
, "Could not get backing file size");
3657 if (backing_len
> old_size
) {
3658 flags
|= BDRV_REQ_ZERO_WRITE
;
3662 if (drv
->bdrv_co_truncate
) {
3663 if (flags
& ~bs
->supported_truncate_flags
) {
3664 error_setg(errp
, "Block driver does not support requested flags");
3668 ret
= drv
->bdrv_co_truncate(bs
, offset
, exact
, prealloc
, flags
, errp
);
3669 } else if (filtered
) {
3670 ret
= bdrv_co_truncate(filtered
, offset
, exact
, prealloc
, flags
, errp
);
3672 error_setg(errp
, "Image format driver does not support resize");
3680 ret
= bdrv_co_refresh_total_sectors(bs
, offset
>> BDRV_SECTOR_BITS
);
3682 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
3684 offset
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
3687 * It's possible that truncation succeeded but bdrv_refresh_total_sectors
3688 * failed, but the latter doesn't affect how we should finish the request.
3689 * Pass 0 as the last parameter so that dirty bitmaps etc. are handled.
3691 bdrv_co_write_req_finish(child
, offset
- new_bytes
, new_bytes
, &req
, 0);
3694 tracked_request_end(&req
);
3695 bdrv_dec_in_flight(bs
);
3700 void bdrv_cancel_in_flight(BlockDriverState
*bs
)
3702 GLOBAL_STATE_CODE();
3703 if (!bs
|| !bs
->drv
) {
3707 if (bs
->drv
->bdrv_cancel_in_flight
) {
3708 bs
->drv
->bdrv_cancel_in_flight(bs
);
3713 bdrv_co_preadv_snapshot(BdrvChild
*child
, int64_t offset
, int64_t bytes
,
3714 QEMUIOVector
*qiov
, size_t qiov_offset
)
3716 BlockDriverState
*bs
= child
->bs
;
3717 BlockDriver
*drv
= bs
->drv
;
3720 assert_bdrv_graph_readable();
3726 if (!drv
->bdrv_co_preadv_snapshot
) {
3730 bdrv_inc_in_flight(bs
);
3731 ret
= drv
->bdrv_co_preadv_snapshot(bs
, offset
, bytes
, qiov
, qiov_offset
);
3732 bdrv_dec_in_flight(bs
);
3738 bdrv_co_snapshot_block_status(BlockDriverState
*bs
,
3739 bool want_zero
, int64_t offset
, int64_t bytes
,
3740 int64_t *pnum
, int64_t *map
,
3741 BlockDriverState
**file
)
3743 BlockDriver
*drv
= bs
->drv
;
3746 assert_bdrv_graph_readable();
3752 if (!drv
->bdrv_co_snapshot_block_status
) {
3756 bdrv_inc_in_flight(bs
);
3757 ret
= drv
->bdrv_co_snapshot_block_status(bs
, want_zero
, offset
, bytes
,
3759 bdrv_dec_in_flight(bs
);
3765 bdrv_co_pdiscard_snapshot(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
3767 BlockDriver
*drv
= bs
->drv
;
3770 assert_bdrv_graph_readable();
3776 if (!drv
->bdrv_co_pdiscard_snapshot
) {
3780 bdrv_inc_in_flight(bs
);
3781 ret
= drv
->bdrv_co_pdiscard_snapshot(bs
, offset
, bytes
);
3782 bdrv_dec_in_flight(bs
);