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 "qemu/cutils.h"
33 #include "qapi/error.h"
34 #include "qemu/error-report.h"
36 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
38 /* Maximum bounce buffer for copy-on-read and write zeroes, in bytes */
39 #define MAX_BOUNCE_BUFFER (32768 << BDRV_SECTOR_BITS)
41 static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState
*bs
,
42 int64_t offset
, int bytes
, BdrvRequestFlags flags
);
44 void bdrv_parent_drained_begin(BlockDriverState
*bs
, BdrvChild
*ignore
)
48 QLIST_FOREACH_SAFE(c
, &bs
->parents
, next_parent
, next
) {
52 if (c
->role
->drained_begin
) {
53 c
->role
->drained_begin(c
);
58 void bdrv_parent_drained_end(BlockDriverState
*bs
, BdrvChild
*ignore
)
62 QLIST_FOREACH_SAFE(c
, &bs
->parents
, next_parent
, next
) {
66 if (c
->role
->drained_end
) {
67 c
->role
->drained_end(c
);
72 static void bdrv_merge_limits(BlockLimits
*dst
, const BlockLimits
*src
)
74 dst
->opt_transfer
= MAX(dst
->opt_transfer
, src
->opt_transfer
);
75 dst
->max_transfer
= MIN_NON_ZERO(dst
->max_transfer
, src
->max_transfer
);
76 dst
->opt_mem_alignment
= MAX(dst
->opt_mem_alignment
,
77 src
->opt_mem_alignment
);
78 dst
->min_mem_alignment
= MAX(dst
->min_mem_alignment
,
79 src
->min_mem_alignment
);
80 dst
->max_iov
= MIN_NON_ZERO(dst
->max_iov
, src
->max_iov
);
83 void bdrv_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
85 BlockDriver
*drv
= bs
->drv
;
86 Error
*local_err
= NULL
;
88 memset(&bs
->bl
, 0, sizeof(bs
->bl
));
94 /* Default alignment based on whether driver has byte interface */
95 bs
->bl
.request_alignment
= (drv
->bdrv_co_preadv
||
96 drv
->bdrv_aio_preadv
) ? 1 : 512;
98 /* Take some limits from the children as a default */
100 bdrv_refresh_limits(bs
->file
->bs
, &local_err
);
102 error_propagate(errp
, local_err
);
105 bdrv_merge_limits(&bs
->bl
, &bs
->file
->bs
->bl
);
107 bs
->bl
.min_mem_alignment
= 512;
108 bs
->bl
.opt_mem_alignment
= getpagesize();
110 /* Safe default since most protocols use readv()/writev()/etc */
111 bs
->bl
.max_iov
= IOV_MAX
;
115 bdrv_refresh_limits(bs
->backing
->bs
, &local_err
);
117 error_propagate(errp
, local_err
);
120 bdrv_merge_limits(&bs
->bl
, &bs
->backing
->bs
->bl
);
123 /* Then let the driver override it */
124 if (drv
->bdrv_refresh_limits
) {
125 drv
->bdrv_refresh_limits(bs
, errp
);
130 * The copy-on-read flag is actually a reference count so multiple users may
131 * use the feature without worrying about clobbering its previous state.
132 * Copy-on-read stays enabled until all users have called to disable it.
134 void bdrv_enable_copy_on_read(BlockDriverState
*bs
)
136 atomic_inc(&bs
->copy_on_read
);
139 void bdrv_disable_copy_on_read(BlockDriverState
*bs
)
141 int old
= atomic_fetch_dec(&bs
->copy_on_read
);
147 BlockDriverState
*bs
;
154 static void coroutine_fn
bdrv_drain_invoke_entry(void *opaque
)
156 BdrvCoDrainData
*data
= opaque
;
157 BlockDriverState
*bs
= data
->bs
;
160 bs
->drv
->bdrv_co_drain_begin(bs
);
162 bs
->drv
->bdrv_co_drain_end(bs
);
165 /* Set data->done before reading bs->wakeup. */
166 atomic_mb_set(&data
->done
, true);
170 /* Recursively call BlockDriver.bdrv_co_drain_begin/end callbacks */
171 static void bdrv_drain_invoke(BlockDriverState
*bs
, bool begin
, bool recursive
)
173 BdrvChild
*child
, *tmp
;
174 BdrvCoDrainData data
= { .bs
= bs
, .done
= false, .begin
= begin
};
176 if (!bs
->drv
|| (begin
&& !bs
->drv
->bdrv_co_drain_begin
) ||
177 (!begin
&& !bs
->drv
->bdrv_co_drain_end
)) {
181 data
.co
= qemu_coroutine_create(bdrv_drain_invoke_entry
, &data
);
182 bdrv_coroutine_enter(bs
, data
.co
);
183 BDRV_POLL_WHILE(bs
, !data
.done
);
186 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, tmp
) {
187 bdrv_drain_invoke(child
->bs
, begin
, true);
192 static bool bdrv_drain_recurse(BlockDriverState
*bs
)
194 BdrvChild
*child
, *tmp
;
197 /* Wait for drained requests to finish */
198 waited
= BDRV_POLL_WHILE(bs
, atomic_read(&bs
->in_flight
) > 0);
200 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, tmp
) {
201 BlockDriverState
*bs
= child
->bs
;
203 qemu_get_current_aio_context() == qemu_get_aio_context();
204 assert(bs
->refcnt
> 0);
206 /* In case the recursive bdrv_drain_recurse processes a
207 * block_job_defer_to_main_loop BH and modifies the graph,
208 * let's hold a reference to bs until we are done.
210 * IOThread doesn't have such a BH, and it is not safe to call
211 * bdrv_unref without BQL, so skip doing it there.
215 waited
|= bdrv_drain_recurse(bs
);
224 static void bdrv_do_drained_begin(BlockDriverState
*bs
, bool recursive
,
226 static void bdrv_do_drained_end(BlockDriverState
*bs
, bool recursive
,
229 static void bdrv_co_drain_bh_cb(void *opaque
)
231 BdrvCoDrainData
*data
= opaque
;
232 Coroutine
*co
= data
->co
;
233 BlockDriverState
*bs
= data
->bs
;
235 bdrv_dec_in_flight(bs
);
237 bdrv_do_drained_begin(bs
, data
->recursive
, data
->parent
);
239 bdrv_do_drained_end(bs
, data
->recursive
, data
->parent
);
246 static void coroutine_fn
bdrv_co_yield_to_drain(BlockDriverState
*bs
,
247 bool begin
, bool recursive
,
250 BdrvCoDrainData data
;
252 /* Calling bdrv_drain() from a BH ensures the current coroutine yields and
253 * other coroutines run if they were queued by aio_co_enter(). */
255 assert(qemu_in_coroutine());
256 data
= (BdrvCoDrainData
) {
257 .co
= qemu_coroutine_self(),
261 .recursive
= recursive
,
264 bdrv_inc_in_flight(bs
);
265 aio_bh_schedule_oneshot(bdrv_get_aio_context(bs
),
266 bdrv_co_drain_bh_cb
, &data
);
268 qemu_coroutine_yield();
269 /* If we are resumed from some other event (such as an aio completion or a
270 * timer callback), it is a bug in the caller that should be fixed. */
274 void bdrv_do_drained_begin(BlockDriverState
*bs
, bool recursive
,
277 BdrvChild
*child
, *next
;
279 if (qemu_in_coroutine()) {
280 bdrv_co_yield_to_drain(bs
, true, recursive
, parent
);
284 /* Stop things in parent-to-child order */
285 if (atomic_fetch_inc(&bs
->quiesce_counter
) == 0) {
286 aio_disable_external(bdrv_get_aio_context(bs
));
289 bdrv_parent_drained_begin(bs
, parent
);
290 bdrv_drain_invoke(bs
, true, false);
291 bdrv_drain_recurse(bs
);
294 bs
->recursive_quiesce_counter
++;
295 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, next
) {
296 bdrv_do_drained_begin(child
->bs
, true, child
);
301 void bdrv_drained_begin(BlockDriverState
*bs
)
303 bdrv_do_drained_begin(bs
, false, NULL
);
306 void bdrv_subtree_drained_begin(BlockDriverState
*bs
)
308 bdrv_do_drained_begin(bs
, true, NULL
);
311 void bdrv_do_drained_end(BlockDriverState
*bs
, bool recursive
,
314 BdrvChild
*child
, *next
;
315 int old_quiesce_counter
;
317 if (qemu_in_coroutine()) {
318 bdrv_co_yield_to_drain(bs
, false, recursive
, parent
);
321 assert(bs
->quiesce_counter
> 0);
322 old_quiesce_counter
= atomic_fetch_dec(&bs
->quiesce_counter
);
324 /* Re-enable things in child-to-parent order */
325 bdrv_drain_invoke(bs
, false, false);
326 bdrv_parent_drained_end(bs
, parent
);
327 if (old_quiesce_counter
== 1) {
328 aio_enable_external(bdrv_get_aio_context(bs
));
332 bs
->recursive_quiesce_counter
--;
333 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, next
) {
334 bdrv_do_drained_end(child
->bs
, true, child
);
339 void bdrv_drained_end(BlockDriverState
*bs
)
341 bdrv_do_drained_end(bs
, false, NULL
);
344 void bdrv_subtree_drained_end(BlockDriverState
*bs
)
346 bdrv_do_drained_end(bs
, true, NULL
);
349 void bdrv_apply_subtree_drain(BdrvChild
*child
, BlockDriverState
*new_parent
)
353 for (i
= 0; i
< new_parent
->recursive_quiesce_counter
; i
++) {
354 bdrv_do_drained_begin(child
->bs
, true, child
);
358 void bdrv_unapply_subtree_drain(BdrvChild
*child
, BlockDriverState
*old_parent
)
362 for (i
= 0; i
< old_parent
->recursive_quiesce_counter
; i
++) {
363 bdrv_do_drained_end(child
->bs
, true, child
);
368 * Wait for pending requests to complete on a single BlockDriverState subtree,
369 * and suspend block driver's internal I/O until next request arrives.
371 * Note that unlike bdrv_drain_all(), the caller must hold the BlockDriverState
374 * Only this BlockDriverState's AioContext is run, so in-flight requests must
375 * not depend on events in other AioContexts. In that case, use
376 * bdrv_drain_all() instead.
378 void coroutine_fn
bdrv_co_drain(BlockDriverState
*bs
)
380 assert(qemu_in_coroutine());
381 bdrv_drained_begin(bs
);
382 bdrv_drained_end(bs
);
385 void bdrv_drain(BlockDriverState
*bs
)
387 bdrv_drained_begin(bs
);
388 bdrv_drained_end(bs
);
392 * Wait for pending requests to complete across all BlockDriverStates
394 * This function does not flush data to disk, use bdrv_flush_all() for that
395 * after calling this function.
397 * This pauses all block jobs and disables external clients. It must
398 * be paired with bdrv_drain_all_end().
400 * NOTE: no new block jobs or BlockDriverStates can be created between
401 * the bdrv_drain_all_begin() and bdrv_drain_all_end() calls.
403 void bdrv_drain_all_begin(void)
405 /* Always run first iteration so any pending completion BHs run */
407 BlockDriverState
*bs
;
409 GSList
*aio_ctxs
= NULL
, *ctx
;
411 /* BDRV_POLL_WHILE() for a node can only be called from its own I/O thread
412 * or the main loop AioContext. We potentially use BDRV_POLL_WHILE() on
413 * nodes in several different AioContexts, so make sure we're in the main
415 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
417 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
418 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
420 /* Stop things in parent-to-child order */
421 aio_context_acquire(aio_context
);
422 aio_disable_external(aio_context
);
423 bdrv_parent_drained_begin(bs
, NULL
);
424 bdrv_drain_invoke(bs
, true, true);
425 aio_context_release(aio_context
);
427 if (!g_slist_find(aio_ctxs
, aio_context
)) {
428 aio_ctxs
= g_slist_prepend(aio_ctxs
, aio_context
);
432 /* Note that completion of an asynchronous I/O operation can trigger any
433 * number of other I/O operations on other devices---for example a
434 * coroutine can submit an I/O request to another device in response to
435 * request completion. Therefore we must keep looping until there was no
436 * more activity rather than simply draining each device independently.
441 for (ctx
= aio_ctxs
; ctx
!= NULL
; ctx
= ctx
->next
) {
442 AioContext
*aio_context
= ctx
->data
;
444 aio_context_acquire(aio_context
);
445 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
446 if (aio_context
== bdrv_get_aio_context(bs
)) {
447 waited
|= bdrv_drain_recurse(bs
);
450 aio_context_release(aio_context
);
454 g_slist_free(aio_ctxs
);
457 void bdrv_drain_all_end(void)
459 BlockDriverState
*bs
;
462 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
463 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
465 /* Re-enable things in child-to-parent order */
466 aio_context_acquire(aio_context
);
467 bdrv_drain_invoke(bs
, false, true);
468 bdrv_parent_drained_end(bs
, NULL
);
469 aio_enable_external(aio_context
);
470 aio_context_release(aio_context
);
474 void bdrv_drain_all(void)
476 bdrv_drain_all_begin();
477 bdrv_drain_all_end();
481 * Remove an active request from the tracked requests list
483 * This function should be called when a tracked request is completing.
485 static void tracked_request_end(BdrvTrackedRequest
*req
)
487 if (req
->serialising
) {
488 atomic_dec(&req
->bs
->serialising_in_flight
);
491 qemu_co_mutex_lock(&req
->bs
->reqs_lock
);
492 QLIST_REMOVE(req
, list
);
493 qemu_co_queue_restart_all(&req
->wait_queue
);
494 qemu_co_mutex_unlock(&req
->bs
->reqs_lock
);
498 * Add an active request to the tracked requests list
500 static void tracked_request_begin(BdrvTrackedRequest
*req
,
501 BlockDriverState
*bs
,
504 enum BdrvTrackedRequestType type
)
506 *req
= (BdrvTrackedRequest
){
511 .co
= qemu_coroutine_self(),
512 .serialising
= false,
513 .overlap_offset
= offset
,
514 .overlap_bytes
= bytes
,
517 qemu_co_queue_init(&req
->wait_queue
);
519 qemu_co_mutex_lock(&bs
->reqs_lock
);
520 QLIST_INSERT_HEAD(&bs
->tracked_requests
, req
, list
);
521 qemu_co_mutex_unlock(&bs
->reqs_lock
);
524 static void mark_request_serialising(BdrvTrackedRequest
*req
, uint64_t align
)
526 int64_t overlap_offset
= req
->offset
& ~(align
- 1);
527 unsigned int overlap_bytes
= ROUND_UP(req
->offset
+ req
->bytes
, align
)
530 if (!req
->serialising
) {
531 atomic_inc(&req
->bs
->serialising_in_flight
);
532 req
->serialising
= true;
535 req
->overlap_offset
= MIN(req
->overlap_offset
, overlap_offset
);
536 req
->overlap_bytes
= MAX(req
->overlap_bytes
, overlap_bytes
);
540 * Round a region to cluster boundaries
542 void bdrv_round_to_clusters(BlockDriverState
*bs
,
543 int64_t offset
, int64_t bytes
,
544 int64_t *cluster_offset
,
545 int64_t *cluster_bytes
)
549 if (bdrv_get_info(bs
, &bdi
) < 0 || bdi
.cluster_size
== 0) {
550 *cluster_offset
= offset
;
551 *cluster_bytes
= bytes
;
553 int64_t c
= bdi
.cluster_size
;
554 *cluster_offset
= QEMU_ALIGN_DOWN(offset
, c
);
555 *cluster_bytes
= QEMU_ALIGN_UP(offset
- *cluster_offset
+ bytes
, c
);
559 static int bdrv_get_cluster_size(BlockDriverState
*bs
)
564 ret
= bdrv_get_info(bs
, &bdi
);
565 if (ret
< 0 || bdi
.cluster_size
== 0) {
566 return bs
->bl
.request_alignment
;
568 return bdi
.cluster_size
;
572 static bool tracked_request_overlaps(BdrvTrackedRequest
*req
,
573 int64_t offset
, unsigned int bytes
)
576 if (offset
>= req
->overlap_offset
+ req
->overlap_bytes
) {
580 if (req
->overlap_offset
>= offset
+ bytes
) {
586 void bdrv_inc_in_flight(BlockDriverState
*bs
)
588 atomic_inc(&bs
->in_flight
);
591 void bdrv_wakeup(BlockDriverState
*bs
)
593 aio_wait_kick(bdrv_get_aio_wait(bs
));
596 void bdrv_dec_in_flight(BlockDriverState
*bs
)
598 atomic_dec(&bs
->in_flight
);
602 static bool coroutine_fn
wait_serialising_requests(BdrvTrackedRequest
*self
)
604 BlockDriverState
*bs
= self
->bs
;
605 BdrvTrackedRequest
*req
;
609 if (!atomic_read(&bs
->serialising_in_flight
)) {
615 qemu_co_mutex_lock(&bs
->reqs_lock
);
616 QLIST_FOREACH(req
, &bs
->tracked_requests
, list
) {
617 if (req
== self
|| (!req
->serialising
&& !self
->serialising
)) {
620 if (tracked_request_overlaps(req
, self
->overlap_offset
,
621 self
->overlap_bytes
))
623 /* Hitting this means there was a reentrant request, for
624 * example, a block driver issuing nested requests. This must
625 * never happen since it means deadlock.
627 assert(qemu_coroutine_self() != req
->co
);
629 /* If the request is already (indirectly) waiting for us, or
630 * will wait for us as soon as it wakes up, then just go on
631 * (instead of producing a deadlock in the former case). */
632 if (!req
->waiting_for
) {
633 self
->waiting_for
= req
;
634 qemu_co_queue_wait(&req
->wait_queue
, &bs
->reqs_lock
);
635 self
->waiting_for
= NULL
;
642 qemu_co_mutex_unlock(&bs
->reqs_lock
);
648 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
651 if (size
> BDRV_REQUEST_MAX_SECTORS
<< BDRV_SECTOR_BITS
) {
655 if (!bdrv_is_inserted(bs
)) {
666 typedef struct RwCo
{
672 BdrvRequestFlags flags
;
675 static void coroutine_fn
bdrv_rw_co_entry(void *opaque
)
679 if (!rwco
->is_write
) {
680 rwco
->ret
= bdrv_co_preadv(rwco
->child
, rwco
->offset
,
681 rwco
->qiov
->size
, rwco
->qiov
,
684 rwco
->ret
= bdrv_co_pwritev(rwco
->child
, rwco
->offset
,
685 rwco
->qiov
->size
, rwco
->qiov
,
691 * Process a vectored synchronous request using coroutines
693 static int bdrv_prwv_co(BdrvChild
*child
, int64_t offset
,
694 QEMUIOVector
*qiov
, bool is_write
,
695 BdrvRequestFlags flags
)
702 .is_write
= is_write
,
707 if (qemu_in_coroutine()) {
708 /* Fast-path if already in coroutine context */
709 bdrv_rw_co_entry(&rwco
);
711 co
= qemu_coroutine_create(bdrv_rw_co_entry
, &rwco
);
712 bdrv_coroutine_enter(child
->bs
, co
);
713 BDRV_POLL_WHILE(child
->bs
, rwco
.ret
== NOT_DONE
);
719 * Process a synchronous request using coroutines
721 static int bdrv_rw_co(BdrvChild
*child
, int64_t sector_num
, uint8_t *buf
,
722 int nb_sectors
, bool is_write
, BdrvRequestFlags flags
)
726 .iov_base
= (void *)buf
,
727 .iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
,
730 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
734 qemu_iovec_init_external(&qiov
, &iov
, 1);
735 return bdrv_prwv_co(child
, sector_num
<< BDRV_SECTOR_BITS
,
736 &qiov
, is_write
, flags
);
739 /* return < 0 if error. See bdrv_write() for the return codes */
740 int bdrv_read(BdrvChild
*child
, int64_t sector_num
,
741 uint8_t *buf
, int nb_sectors
)
743 return bdrv_rw_co(child
, sector_num
, buf
, nb_sectors
, false, 0);
746 /* Return < 0 if error. Important errors are:
747 -EIO generic I/O error (may happen for all errors)
748 -ENOMEDIUM No media inserted.
749 -EINVAL Invalid sector number or nb_sectors
750 -EACCES Trying to write a read-only device
752 int bdrv_write(BdrvChild
*child
, int64_t sector_num
,
753 const uint8_t *buf
, int nb_sectors
)
755 return bdrv_rw_co(child
, sector_num
, (uint8_t *)buf
, nb_sectors
, true, 0);
758 int bdrv_pwrite_zeroes(BdrvChild
*child
, int64_t offset
,
759 int bytes
, BdrvRequestFlags flags
)
767 qemu_iovec_init_external(&qiov
, &iov
, 1);
768 return bdrv_prwv_co(child
, offset
, &qiov
, true,
769 BDRV_REQ_ZERO_WRITE
| flags
);
773 * Completely zero out a block device with the help of bdrv_pwrite_zeroes.
774 * The operation is sped up by checking the block status and only writing
775 * zeroes to the device if they currently do not return zeroes. Optional
776 * flags are passed through to bdrv_pwrite_zeroes (e.g. BDRV_REQ_MAY_UNMAP,
779 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
781 int bdrv_make_zero(BdrvChild
*child
, BdrvRequestFlags flags
)
784 int64_t target_size
, bytes
, offset
= 0;
785 BlockDriverState
*bs
= child
->bs
;
787 target_size
= bdrv_getlength(bs
);
788 if (target_size
< 0) {
793 bytes
= MIN(target_size
- offset
, BDRV_REQUEST_MAX_BYTES
);
797 ret
= bdrv_block_status(bs
, offset
, bytes
, &bytes
, NULL
, NULL
);
799 error_report("error getting block status at offset %" PRId64
": %s",
800 offset
, strerror(-ret
));
803 if (ret
& BDRV_BLOCK_ZERO
) {
807 ret
= bdrv_pwrite_zeroes(child
, offset
, bytes
, flags
);
809 error_report("error writing zeroes at offset %" PRId64
": %s",
810 offset
, strerror(-ret
));
817 int bdrv_preadv(BdrvChild
*child
, int64_t offset
, QEMUIOVector
*qiov
)
821 ret
= bdrv_prwv_co(child
, offset
, qiov
, false, 0);
829 int bdrv_pread(BdrvChild
*child
, int64_t offset
, void *buf
, int bytes
)
833 .iov_base
= (void *)buf
,
841 qemu_iovec_init_external(&qiov
, &iov
, 1);
842 return bdrv_preadv(child
, offset
, &qiov
);
845 int bdrv_pwritev(BdrvChild
*child
, int64_t offset
, QEMUIOVector
*qiov
)
849 ret
= bdrv_prwv_co(child
, offset
, qiov
, true, 0);
857 int bdrv_pwrite(BdrvChild
*child
, int64_t offset
, const void *buf
, int bytes
)
861 .iov_base
= (void *) buf
,
869 qemu_iovec_init_external(&qiov
, &iov
, 1);
870 return bdrv_pwritev(child
, offset
, &qiov
);
874 * Writes to the file and ensures that no writes are reordered across this
875 * request (acts as a barrier)
877 * Returns 0 on success, -errno in error cases.
879 int bdrv_pwrite_sync(BdrvChild
*child
, int64_t offset
,
880 const void *buf
, int count
)
884 ret
= bdrv_pwrite(child
, offset
, buf
, count
);
889 ret
= bdrv_flush(child
->bs
);
897 typedef struct CoroutineIOCompletion
{
898 Coroutine
*coroutine
;
900 } CoroutineIOCompletion
;
902 static void bdrv_co_io_em_complete(void *opaque
, int ret
)
904 CoroutineIOCompletion
*co
= opaque
;
907 aio_co_wake(co
->coroutine
);
910 static int coroutine_fn
bdrv_driver_preadv(BlockDriverState
*bs
,
911 uint64_t offset
, uint64_t bytes
,
912 QEMUIOVector
*qiov
, int flags
)
914 BlockDriver
*drv
= bs
->drv
;
916 unsigned int nb_sectors
;
918 assert(!(flags
& ~BDRV_REQ_MASK
));
924 if (drv
->bdrv_co_preadv
) {
925 return drv
->bdrv_co_preadv(bs
, offset
, bytes
, qiov
, flags
);
928 if (drv
->bdrv_aio_preadv
) {
930 CoroutineIOCompletion co
= {
931 .coroutine
= qemu_coroutine_self(),
934 acb
= drv
->bdrv_aio_preadv(bs
, offset
, bytes
, qiov
, flags
,
935 bdrv_co_io_em_complete
, &co
);
939 qemu_coroutine_yield();
944 sector_num
= offset
>> BDRV_SECTOR_BITS
;
945 nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
947 assert((offset
& (BDRV_SECTOR_SIZE
- 1)) == 0);
948 assert((bytes
& (BDRV_SECTOR_SIZE
- 1)) == 0);
949 assert((bytes
>> BDRV_SECTOR_BITS
) <= BDRV_REQUEST_MAX_SECTORS
);
950 assert(drv
->bdrv_co_readv
);
952 return drv
->bdrv_co_readv(bs
, sector_num
, nb_sectors
, qiov
);
955 static int coroutine_fn
bdrv_driver_pwritev(BlockDriverState
*bs
,
956 uint64_t offset
, uint64_t bytes
,
957 QEMUIOVector
*qiov
, int flags
)
959 BlockDriver
*drv
= bs
->drv
;
961 unsigned int nb_sectors
;
964 assert(!(flags
& ~BDRV_REQ_MASK
));
970 if (drv
->bdrv_co_pwritev
) {
971 ret
= drv
->bdrv_co_pwritev(bs
, offset
, bytes
, qiov
,
972 flags
& bs
->supported_write_flags
);
973 flags
&= ~bs
->supported_write_flags
;
977 if (drv
->bdrv_aio_pwritev
) {
979 CoroutineIOCompletion co
= {
980 .coroutine
= qemu_coroutine_self(),
983 acb
= drv
->bdrv_aio_pwritev(bs
, offset
, bytes
, qiov
,
984 flags
& bs
->supported_write_flags
,
985 bdrv_co_io_em_complete
, &co
);
986 flags
&= ~bs
->supported_write_flags
;
990 qemu_coroutine_yield();
996 sector_num
= offset
>> BDRV_SECTOR_BITS
;
997 nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
999 assert((offset
& (BDRV_SECTOR_SIZE
- 1)) == 0);
1000 assert((bytes
& (BDRV_SECTOR_SIZE
- 1)) == 0);
1001 assert((bytes
>> BDRV_SECTOR_BITS
) <= BDRV_REQUEST_MAX_SECTORS
);
1003 assert(drv
->bdrv_co_writev
);
1004 ret
= drv
->bdrv_co_writev(bs
, sector_num
, nb_sectors
, qiov
,
1005 flags
& bs
->supported_write_flags
);
1006 flags
&= ~bs
->supported_write_flags
;
1009 if (ret
== 0 && (flags
& BDRV_REQ_FUA
)) {
1010 ret
= bdrv_co_flush(bs
);
1016 static int coroutine_fn
1017 bdrv_driver_pwritev_compressed(BlockDriverState
*bs
, uint64_t offset
,
1018 uint64_t bytes
, QEMUIOVector
*qiov
)
1020 BlockDriver
*drv
= bs
->drv
;
1026 if (!drv
->bdrv_co_pwritev_compressed
) {
1030 return drv
->bdrv_co_pwritev_compressed(bs
, offset
, bytes
, qiov
);
1033 static int coroutine_fn
bdrv_co_do_copy_on_readv(BdrvChild
*child
,
1034 int64_t offset
, unsigned int bytes
, QEMUIOVector
*qiov
)
1036 BlockDriverState
*bs
= child
->bs
;
1038 /* Perform I/O through a temporary buffer so that users who scribble over
1039 * their read buffer while the operation is in progress do not end up
1040 * modifying the image file. This is critical for zero-copy guest I/O
1041 * where anything might happen inside guest memory.
1043 void *bounce_buffer
;
1045 BlockDriver
*drv
= bs
->drv
;
1047 QEMUIOVector local_qiov
;
1048 int64_t cluster_offset
;
1049 int64_t cluster_bytes
;
1052 int max_transfer
= MIN_NON_ZERO(bs
->bl
.max_transfer
,
1053 BDRV_REQUEST_MAX_BYTES
);
1054 unsigned int progress
= 0;
1060 /* FIXME We cannot require callers to have write permissions when all they
1061 * are doing is a read request. If we did things right, write permissions
1062 * would be obtained anyway, but internally by the copy-on-read code. As
1063 * long as it is implemented here rather than in a separate filter driver,
1064 * the copy-on-read code doesn't have its own BdrvChild, however, for which
1065 * it could request permissions. Therefore we have to bypass the permission
1066 * system for the moment. */
1067 // assert(child->perm & (BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE));
1069 /* Cover entire cluster so no additional backing file I/O is required when
1070 * allocating cluster in the image file. Note that this value may exceed
1071 * BDRV_REQUEST_MAX_BYTES (even when the original read did not), which
1072 * is one reason we loop rather than doing it all at once.
1074 bdrv_round_to_clusters(bs
, offset
, bytes
, &cluster_offset
, &cluster_bytes
);
1075 skip_bytes
= offset
- cluster_offset
;
1077 trace_bdrv_co_do_copy_on_readv(bs
, offset
, bytes
,
1078 cluster_offset
, cluster_bytes
);
1080 bounce_buffer
= qemu_try_blockalign(bs
,
1081 MIN(MIN(max_transfer
, cluster_bytes
),
1082 MAX_BOUNCE_BUFFER
));
1083 if (bounce_buffer
== NULL
) {
1088 while (cluster_bytes
) {
1091 ret
= bdrv_is_allocated(bs
, cluster_offset
,
1092 MIN(cluster_bytes
, max_transfer
), &pnum
);
1094 /* Safe to treat errors in querying allocation as if
1095 * unallocated; we'll probably fail again soon on the
1096 * read, but at least that will set a decent errno.
1098 pnum
= MIN(cluster_bytes
, max_transfer
);
1101 assert(skip_bytes
< pnum
);
1104 /* Must copy-on-read; use the bounce buffer */
1105 iov
.iov_base
= bounce_buffer
;
1106 iov
.iov_len
= pnum
= MIN(pnum
, MAX_BOUNCE_BUFFER
);
1107 qemu_iovec_init_external(&local_qiov
, &iov
, 1);
1109 ret
= bdrv_driver_preadv(bs
, cluster_offset
, pnum
,
1115 bdrv_debug_event(bs
, BLKDBG_COR_WRITE
);
1116 if (drv
->bdrv_co_pwrite_zeroes
&&
1117 buffer_is_zero(bounce_buffer
, pnum
)) {
1118 /* FIXME: Should we (perhaps conditionally) be setting
1119 * BDRV_REQ_MAY_UNMAP, if it will allow for a sparser copy
1120 * that still correctly reads as zero? */
1121 ret
= bdrv_co_do_pwrite_zeroes(bs
, cluster_offset
, pnum
,
1122 BDRV_REQ_WRITE_UNCHANGED
);
1124 /* This does not change the data on the disk, it is not
1125 * necessary to flush even in cache=writethrough mode.
1127 ret
= bdrv_driver_pwritev(bs
, cluster_offset
, pnum
,
1129 BDRV_REQ_WRITE_UNCHANGED
);
1133 /* It might be okay to ignore write errors for guest
1134 * requests. If this is a deliberate copy-on-read
1135 * then we don't want to ignore the error. Simply
1136 * report it in all cases.
1141 qemu_iovec_from_buf(qiov
, progress
, bounce_buffer
+ skip_bytes
,
1144 /* Read directly into the destination */
1145 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1146 qemu_iovec_concat(&local_qiov
, qiov
, progress
, pnum
- skip_bytes
);
1147 ret
= bdrv_driver_preadv(bs
, offset
+ progress
, local_qiov
.size
,
1149 qemu_iovec_destroy(&local_qiov
);
1155 cluster_offset
+= pnum
;
1156 cluster_bytes
-= pnum
;
1157 progress
+= pnum
- skip_bytes
;
1163 qemu_vfree(bounce_buffer
);
1168 * Forwards an already correctly aligned request to the BlockDriver. This
1169 * handles copy on read, zeroing after EOF, and fragmentation of large
1170 * reads; any other features must be implemented by the caller.
1172 static int coroutine_fn
bdrv_aligned_preadv(BdrvChild
*child
,
1173 BdrvTrackedRequest
*req
, int64_t offset
, unsigned int bytes
,
1174 int64_t align
, QEMUIOVector
*qiov
, int flags
)
1176 BlockDriverState
*bs
= child
->bs
;
1177 int64_t total_bytes
, max_bytes
;
1179 uint64_t bytes_remaining
= bytes
;
1182 assert(is_power_of_2(align
));
1183 assert((offset
& (align
- 1)) == 0);
1184 assert((bytes
& (align
- 1)) == 0);
1185 assert(!qiov
|| bytes
== qiov
->size
);
1186 assert((bs
->open_flags
& BDRV_O_NO_IO
) == 0);
1187 max_transfer
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_transfer
, INT_MAX
),
1190 /* TODO: We would need a per-BDS .supported_read_flags and
1191 * potential fallback support, if we ever implement any read flags
1192 * to pass through to drivers. For now, there aren't any
1193 * passthrough flags. */
1194 assert(!(flags
& ~(BDRV_REQ_NO_SERIALISING
| BDRV_REQ_COPY_ON_READ
)));
1196 /* Handle Copy on Read and associated serialisation */
1197 if (flags
& BDRV_REQ_COPY_ON_READ
) {
1198 /* If we touch the same cluster it counts as an overlap. This
1199 * guarantees that allocating writes will be serialized and not race
1200 * with each other for the same cluster. For example, in copy-on-read
1201 * it ensures that the CoR read and write operations are atomic and
1202 * guest writes cannot interleave between them. */
1203 mark_request_serialising(req
, bdrv_get_cluster_size(bs
));
1206 if (!(flags
& BDRV_REQ_NO_SERIALISING
)) {
1207 wait_serialising_requests(req
);
1210 if (flags
& BDRV_REQ_COPY_ON_READ
) {
1213 ret
= bdrv_is_allocated(bs
, offset
, bytes
, &pnum
);
1218 if (!ret
|| pnum
!= bytes
) {
1219 ret
= bdrv_co_do_copy_on_readv(child
, offset
, bytes
, qiov
);
1224 /* Forward the request to the BlockDriver, possibly fragmenting it */
1225 total_bytes
= bdrv_getlength(bs
);
1226 if (total_bytes
< 0) {
1231 max_bytes
= ROUND_UP(MAX(0, total_bytes
- offset
), align
);
1232 if (bytes
<= max_bytes
&& bytes
<= max_transfer
) {
1233 ret
= bdrv_driver_preadv(bs
, offset
, bytes
, qiov
, 0);
1237 while (bytes_remaining
) {
1241 QEMUIOVector local_qiov
;
1243 num
= MIN(bytes_remaining
, MIN(max_bytes
, max_transfer
));
1245 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1246 qemu_iovec_concat(&local_qiov
, qiov
, bytes
- bytes_remaining
, num
);
1248 ret
= bdrv_driver_preadv(bs
, offset
+ bytes
- bytes_remaining
,
1249 num
, &local_qiov
, 0);
1251 qemu_iovec_destroy(&local_qiov
);
1253 num
= bytes_remaining
;
1254 ret
= qemu_iovec_memset(qiov
, bytes
- bytes_remaining
, 0,
1260 bytes_remaining
-= num
;
1264 return ret
< 0 ? ret
: 0;
1268 * Handle a read request in coroutine context
1270 int coroutine_fn
bdrv_co_preadv(BdrvChild
*child
,
1271 int64_t offset
, unsigned int bytes
, QEMUIOVector
*qiov
,
1272 BdrvRequestFlags flags
)
1274 BlockDriverState
*bs
= child
->bs
;
1275 BlockDriver
*drv
= bs
->drv
;
1276 BdrvTrackedRequest req
;
1278 uint64_t align
= bs
->bl
.request_alignment
;
1279 uint8_t *head_buf
= NULL
;
1280 uint8_t *tail_buf
= NULL
;
1281 QEMUIOVector local_qiov
;
1282 bool use_local_qiov
= false;
1285 trace_bdrv_co_preadv(child
->bs
, offset
, bytes
, flags
);
1291 ret
= bdrv_check_byte_request(bs
, offset
, bytes
);
1296 bdrv_inc_in_flight(bs
);
1298 /* Don't do copy-on-read if we read data before write operation */
1299 if (atomic_read(&bs
->copy_on_read
) && !(flags
& BDRV_REQ_NO_SERIALISING
)) {
1300 flags
|= BDRV_REQ_COPY_ON_READ
;
1303 /* Align read if necessary by padding qiov */
1304 if (offset
& (align
- 1)) {
1305 head_buf
= qemu_blockalign(bs
, align
);
1306 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 2);
1307 qemu_iovec_add(&local_qiov
, head_buf
, offset
& (align
- 1));
1308 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1309 use_local_qiov
= true;
1311 bytes
+= offset
& (align
- 1);
1312 offset
= offset
& ~(align
- 1);
1315 if ((offset
+ bytes
) & (align
- 1)) {
1316 if (!use_local_qiov
) {
1317 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 1);
1318 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1319 use_local_qiov
= true;
1321 tail_buf
= qemu_blockalign(bs
, align
);
1322 qemu_iovec_add(&local_qiov
, tail_buf
,
1323 align
- ((offset
+ bytes
) & (align
- 1)));
1325 bytes
= ROUND_UP(bytes
, align
);
1328 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_READ
);
1329 ret
= bdrv_aligned_preadv(child
, &req
, offset
, bytes
, align
,
1330 use_local_qiov
? &local_qiov
: qiov
,
1332 tracked_request_end(&req
);
1333 bdrv_dec_in_flight(bs
);
1335 if (use_local_qiov
) {
1336 qemu_iovec_destroy(&local_qiov
);
1337 qemu_vfree(head_buf
);
1338 qemu_vfree(tail_buf
);
1344 static int coroutine_fn
bdrv_co_do_readv(BdrvChild
*child
,
1345 int64_t sector_num
, int nb_sectors
, QEMUIOVector
*qiov
,
1346 BdrvRequestFlags flags
)
1348 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
1352 return bdrv_co_preadv(child
, sector_num
<< BDRV_SECTOR_BITS
,
1353 nb_sectors
<< BDRV_SECTOR_BITS
, qiov
, flags
);
1356 int coroutine_fn
bdrv_co_readv(BdrvChild
*child
, int64_t sector_num
,
1357 int nb_sectors
, QEMUIOVector
*qiov
)
1359 return bdrv_co_do_readv(child
, sector_num
, nb_sectors
, qiov
, 0);
1362 static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState
*bs
,
1363 int64_t offset
, int bytes
, BdrvRequestFlags flags
)
1365 BlockDriver
*drv
= bs
->drv
;
1367 struct iovec iov
= {0};
1369 bool need_flush
= false;
1373 int max_write_zeroes
= MIN_NON_ZERO(bs
->bl
.max_pwrite_zeroes
, INT_MAX
);
1374 int alignment
= MAX(bs
->bl
.pwrite_zeroes_alignment
,
1375 bs
->bl
.request_alignment
);
1376 int max_transfer
= MIN_NON_ZERO(bs
->bl
.max_transfer
, MAX_BOUNCE_BUFFER
);
1382 assert(alignment
% bs
->bl
.request_alignment
== 0);
1383 head
= offset
% alignment
;
1384 tail
= (offset
+ bytes
) % alignment
;
1385 max_write_zeroes
= QEMU_ALIGN_DOWN(max_write_zeroes
, alignment
);
1386 assert(max_write_zeroes
>= bs
->bl
.request_alignment
);
1388 while (bytes
> 0 && !ret
) {
1391 /* Align request. Block drivers can expect the "bulk" of the request
1392 * to be aligned, and that unaligned requests do not cross cluster
1396 /* Make a small request up to the first aligned sector. For
1397 * convenience, limit this request to max_transfer even if
1398 * we don't need to fall back to writes. */
1399 num
= MIN(MIN(bytes
, max_transfer
), alignment
- head
);
1400 head
= (head
+ num
) % alignment
;
1401 assert(num
< max_write_zeroes
);
1402 } else if (tail
&& num
> alignment
) {
1403 /* Shorten the request to the last aligned sector. */
1407 /* limit request size */
1408 if (num
> max_write_zeroes
) {
1409 num
= max_write_zeroes
;
1413 /* First try the efficient write zeroes operation */
1414 if (drv
->bdrv_co_pwrite_zeroes
) {
1415 ret
= drv
->bdrv_co_pwrite_zeroes(bs
, offset
, num
,
1416 flags
& bs
->supported_zero_flags
);
1417 if (ret
!= -ENOTSUP
&& (flags
& BDRV_REQ_FUA
) &&
1418 !(bs
->supported_zero_flags
& BDRV_REQ_FUA
)) {
1422 assert(!bs
->supported_zero_flags
);
1425 if (ret
== -ENOTSUP
) {
1426 /* Fall back to bounce buffer if write zeroes is unsupported */
1427 BdrvRequestFlags write_flags
= flags
& ~BDRV_REQ_ZERO_WRITE
;
1429 if ((flags
& BDRV_REQ_FUA
) &&
1430 !(bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
1431 /* No need for bdrv_driver_pwrite() to do a fallback
1432 * flush on each chunk; use just one at the end */
1433 write_flags
&= ~BDRV_REQ_FUA
;
1436 num
= MIN(num
, max_transfer
);
1438 if (iov
.iov_base
== NULL
) {
1439 iov
.iov_base
= qemu_try_blockalign(bs
, num
);
1440 if (iov
.iov_base
== NULL
) {
1444 memset(iov
.iov_base
, 0, num
);
1446 qemu_iovec_init_external(&qiov
, &iov
, 1);
1448 ret
= bdrv_driver_pwritev(bs
, offset
, num
, &qiov
, write_flags
);
1450 /* Keep bounce buffer around if it is big enough for all
1451 * all future requests.
1453 if (num
< max_transfer
) {
1454 qemu_vfree(iov
.iov_base
);
1455 iov
.iov_base
= NULL
;
1464 if (ret
== 0 && need_flush
) {
1465 ret
= bdrv_co_flush(bs
);
1467 qemu_vfree(iov
.iov_base
);
1472 * Forwards an already correctly aligned write request to the BlockDriver,
1473 * after possibly fragmenting it.
1475 static int coroutine_fn
bdrv_aligned_pwritev(BdrvChild
*child
,
1476 BdrvTrackedRequest
*req
, int64_t offset
, unsigned int bytes
,
1477 int64_t align
, QEMUIOVector
*qiov
, int flags
)
1479 BlockDriverState
*bs
= child
->bs
;
1480 BlockDriver
*drv
= bs
->drv
;
1484 int64_t end_sector
= DIV_ROUND_UP(offset
+ bytes
, BDRV_SECTOR_SIZE
);
1485 uint64_t bytes_remaining
= bytes
;
1492 if (bdrv_has_readonly_bitmaps(bs
)) {
1496 assert(is_power_of_2(align
));
1497 assert((offset
& (align
- 1)) == 0);
1498 assert((bytes
& (align
- 1)) == 0);
1499 assert(!qiov
|| bytes
== qiov
->size
);
1500 assert((bs
->open_flags
& BDRV_O_NO_IO
) == 0);
1501 assert(!(flags
& ~BDRV_REQ_MASK
));
1502 max_transfer
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_transfer
, INT_MAX
),
1505 waited
= wait_serialising_requests(req
);
1506 assert(!waited
|| !req
->serialising
);
1507 assert(req
->overlap_offset
<= offset
);
1508 assert(offset
+ bytes
<= req
->overlap_offset
+ req
->overlap_bytes
);
1509 if (flags
& BDRV_REQ_WRITE_UNCHANGED
) {
1510 assert(child
->perm
& (BLK_PERM_WRITE_UNCHANGED
| BLK_PERM_WRITE
));
1512 assert(child
->perm
& BLK_PERM_WRITE
);
1514 assert(end_sector
<= bs
->total_sectors
|| child
->perm
& BLK_PERM_RESIZE
);
1516 ret
= notifier_with_return_list_notify(&bs
->before_write_notifiers
, req
);
1518 if (!ret
&& bs
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
&&
1519 !(flags
& BDRV_REQ_ZERO_WRITE
) && drv
->bdrv_co_pwrite_zeroes
&&
1520 qemu_iovec_is_zero(qiov
)) {
1521 flags
|= BDRV_REQ_ZERO_WRITE
;
1522 if (bs
->detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
) {
1523 flags
|= BDRV_REQ_MAY_UNMAP
;
1528 /* Do nothing, write notifier decided to fail this request */
1529 } else if (flags
& BDRV_REQ_ZERO_WRITE
) {
1530 bdrv_debug_event(bs
, BLKDBG_PWRITEV_ZERO
);
1531 ret
= bdrv_co_do_pwrite_zeroes(bs
, offset
, bytes
, flags
);
1532 } else if (flags
& BDRV_REQ_WRITE_COMPRESSED
) {
1533 ret
= bdrv_driver_pwritev_compressed(bs
, offset
, bytes
, qiov
);
1534 } else if (bytes
<= max_transfer
) {
1535 bdrv_debug_event(bs
, BLKDBG_PWRITEV
);
1536 ret
= bdrv_driver_pwritev(bs
, offset
, bytes
, qiov
, flags
);
1538 bdrv_debug_event(bs
, BLKDBG_PWRITEV
);
1539 while (bytes_remaining
) {
1540 int num
= MIN(bytes_remaining
, max_transfer
);
1541 QEMUIOVector local_qiov
;
1542 int local_flags
= flags
;
1545 if (num
< bytes_remaining
&& (flags
& BDRV_REQ_FUA
) &&
1546 !(bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
1547 /* If FUA is going to be emulated by flush, we only
1548 * need to flush on the last iteration */
1549 local_flags
&= ~BDRV_REQ_FUA
;
1551 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1552 qemu_iovec_concat(&local_qiov
, qiov
, bytes
- bytes_remaining
, num
);
1554 ret
= bdrv_driver_pwritev(bs
, offset
+ bytes
- bytes_remaining
,
1555 num
, &local_qiov
, local_flags
);
1556 qemu_iovec_destroy(&local_qiov
);
1560 bytes_remaining
-= num
;
1563 bdrv_debug_event(bs
, BLKDBG_PWRITEV_DONE
);
1565 atomic_inc(&bs
->write_gen
);
1566 bdrv_set_dirty(bs
, offset
, bytes
);
1568 stat64_max(&bs
->wr_highest_offset
, offset
+ bytes
);
1571 bs
->total_sectors
= MAX(bs
->total_sectors
, end_sector
);
1578 static int coroutine_fn
bdrv_co_do_zero_pwritev(BdrvChild
*child
,
1581 BdrvRequestFlags flags
,
1582 BdrvTrackedRequest
*req
)
1584 BlockDriverState
*bs
= child
->bs
;
1585 uint8_t *buf
= NULL
;
1586 QEMUIOVector local_qiov
;
1588 uint64_t align
= bs
->bl
.request_alignment
;
1589 unsigned int head_padding_bytes
, tail_padding_bytes
;
1592 head_padding_bytes
= offset
& (align
- 1);
1593 tail_padding_bytes
= (align
- (offset
+ bytes
)) & (align
- 1);
1596 assert(flags
& BDRV_REQ_ZERO_WRITE
);
1597 if (head_padding_bytes
|| tail_padding_bytes
) {
1598 buf
= qemu_blockalign(bs
, align
);
1599 iov
= (struct iovec
) {
1603 qemu_iovec_init_external(&local_qiov
, &iov
, 1);
1605 if (head_padding_bytes
) {
1606 uint64_t zero_bytes
= MIN(bytes
, align
- head_padding_bytes
);
1608 /* RMW the unaligned part before head. */
1609 mark_request_serialising(req
, align
);
1610 wait_serialising_requests(req
);
1611 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_HEAD
);
1612 ret
= bdrv_aligned_preadv(child
, req
, offset
& ~(align
- 1), align
,
1613 align
, &local_qiov
, 0);
1617 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_HEAD
);
1619 memset(buf
+ head_padding_bytes
, 0, zero_bytes
);
1620 ret
= bdrv_aligned_pwritev(child
, req
, offset
& ~(align
- 1), align
,
1622 flags
& ~BDRV_REQ_ZERO_WRITE
);
1626 offset
+= zero_bytes
;
1627 bytes
-= zero_bytes
;
1630 assert(!bytes
|| (offset
& (align
- 1)) == 0);
1631 if (bytes
>= align
) {
1632 /* Write the aligned part in the middle. */
1633 uint64_t aligned_bytes
= bytes
& ~(align
- 1);
1634 ret
= bdrv_aligned_pwritev(child
, req
, offset
, aligned_bytes
, align
,
1639 bytes
-= aligned_bytes
;
1640 offset
+= aligned_bytes
;
1643 assert(!bytes
|| (offset
& (align
- 1)) == 0);
1645 assert(align
== tail_padding_bytes
+ bytes
);
1646 /* RMW the unaligned part after tail. */
1647 mark_request_serialising(req
, align
);
1648 wait_serialising_requests(req
);
1649 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_TAIL
);
1650 ret
= bdrv_aligned_preadv(child
, req
, offset
, align
,
1651 align
, &local_qiov
, 0);
1655 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_TAIL
);
1657 memset(buf
, 0, bytes
);
1658 ret
= bdrv_aligned_pwritev(child
, req
, offset
, align
, align
,
1659 &local_qiov
, flags
& ~BDRV_REQ_ZERO_WRITE
);
1668 * Handle a write request in coroutine context
1670 int coroutine_fn
bdrv_co_pwritev(BdrvChild
*child
,
1671 int64_t offset
, unsigned int bytes
, QEMUIOVector
*qiov
,
1672 BdrvRequestFlags flags
)
1674 BlockDriverState
*bs
= child
->bs
;
1675 BdrvTrackedRequest req
;
1676 uint64_t align
= bs
->bl
.request_alignment
;
1677 uint8_t *head_buf
= NULL
;
1678 uint8_t *tail_buf
= NULL
;
1679 QEMUIOVector local_qiov
;
1680 bool use_local_qiov
= false;
1683 trace_bdrv_co_pwritev(child
->bs
, offset
, bytes
, flags
);
1688 if (bs
->read_only
) {
1691 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
1693 ret
= bdrv_check_byte_request(bs
, offset
, bytes
);
1698 bdrv_inc_in_flight(bs
);
1700 * Align write if necessary by performing a read-modify-write cycle.
1701 * Pad qiov with the read parts and be sure to have a tracked request not
1702 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
1704 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_WRITE
);
1706 if (flags
& BDRV_REQ_ZERO_WRITE
) {
1707 ret
= bdrv_co_do_zero_pwritev(child
, offset
, bytes
, flags
, &req
);
1711 if (offset
& (align
- 1)) {
1712 QEMUIOVector head_qiov
;
1713 struct iovec head_iov
;
1715 mark_request_serialising(&req
, align
);
1716 wait_serialising_requests(&req
);
1718 head_buf
= qemu_blockalign(bs
, align
);
1719 head_iov
= (struct iovec
) {
1720 .iov_base
= head_buf
,
1723 qemu_iovec_init_external(&head_qiov
, &head_iov
, 1);
1725 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_HEAD
);
1726 ret
= bdrv_aligned_preadv(child
, &req
, offset
& ~(align
- 1), align
,
1727 align
, &head_qiov
, 0);
1731 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_HEAD
);
1733 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 2);
1734 qemu_iovec_add(&local_qiov
, head_buf
, offset
& (align
- 1));
1735 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1736 use_local_qiov
= true;
1738 bytes
+= offset
& (align
- 1);
1739 offset
= offset
& ~(align
- 1);
1741 /* We have read the tail already if the request is smaller
1742 * than one aligned block.
1744 if (bytes
< align
) {
1745 qemu_iovec_add(&local_qiov
, head_buf
+ bytes
, align
- bytes
);
1750 if ((offset
+ bytes
) & (align
- 1)) {
1751 QEMUIOVector tail_qiov
;
1752 struct iovec tail_iov
;
1756 mark_request_serialising(&req
, align
);
1757 waited
= wait_serialising_requests(&req
);
1758 assert(!waited
|| !use_local_qiov
);
1760 tail_buf
= qemu_blockalign(bs
, align
);
1761 tail_iov
= (struct iovec
) {
1762 .iov_base
= tail_buf
,
1765 qemu_iovec_init_external(&tail_qiov
, &tail_iov
, 1);
1767 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_TAIL
);
1768 ret
= bdrv_aligned_preadv(child
, &req
, (offset
+ bytes
) & ~(align
- 1),
1769 align
, align
, &tail_qiov
, 0);
1773 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_TAIL
);
1775 if (!use_local_qiov
) {
1776 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 1);
1777 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1778 use_local_qiov
= true;
1781 tail_bytes
= (offset
+ bytes
) & (align
- 1);
1782 qemu_iovec_add(&local_qiov
, tail_buf
+ tail_bytes
, align
- tail_bytes
);
1784 bytes
= ROUND_UP(bytes
, align
);
1787 ret
= bdrv_aligned_pwritev(child
, &req
, offset
, bytes
, align
,
1788 use_local_qiov
? &local_qiov
: qiov
,
1793 if (use_local_qiov
) {
1794 qemu_iovec_destroy(&local_qiov
);
1796 qemu_vfree(head_buf
);
1797 qemu_vfree(tail_buf
);
1799 tracked_request_end(&req
);
1800 bdrv_dec_in_flight(bs
);
1804 static int coroutine_fn
bdrv_co_do_writev(BdrvChild
*child
,
1805 int64_t sector_num
, int nb_sectors
, QEMUIOVector
*qiov
,
1806 BdrvRequestFlags flags
)
1808 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
1812 return bdrv_co_pwritev(child
, sector_num
<< BDRV_SECTOR_BITS
,
1813 nb_sectors
<< BDRV_SECTOR_BITS
, qiov
, flags
);
1816 int coroutine_fn
bdrv_co_writev(BdrvChild
*child
, int64_t sector_num
,
1817 int nb_sectors
, QEMUIOVector
*qiov
)
1819 return bdrv_co_do_writev(child
, sector_num
, nb_sectors
, qiov
, 0);
1822 int coroutine_fn
bdrv_co_pwrite_zeroes(BdrvChild
*child
, int64_t offset
,
1823 int bytes
, BdrvRequestFlags flags
)
1825 trace_bdrv_co_pwrite_zeroes(child
->bs
, offset
, bytes
, flags
);
1827 if (!(child
->bs
->open_flags
& BDRV_O_UNMAP
)) {
1828 flags
&= ~BDRV_REQ_MAY_UNMAP
;
1831 return bdrv_co_pwritev(child
, offset
, bytes
, NULL
,
1832 BDRV_REQ_ZERO_WRITE
| flags
);
1836 * Flush ALL BDSes regardless of if they are reachable via a BlkBackend or not.
1838 int bdrv_flush_all(void)
1840 BdrvNextIterator it
;
1841 BlockDriverState
*bs
= NULL
;
1844 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
1845 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
1848 aio_context_acquire(aio_context
);
1849 ret
= bdrv_flush(bs
);
1850 if (ret
< 0 && !result
) {
1853 aio_context_release(aio_context
);
1860 typedef struct BdrvCoBlockStatusData
{
1861 BlockDriverState
*bs
;
1862 BlockDriverState
*base
;
1868 BlockDriverState
**file
;
1871 } BdrvCoBlockStatusData
;
1873 int coroutine_fn
bdrv_co_block_status_from_file(BlockDriverState
*bs
,
1879 BlockDriverState
**file
)
1881 assert(bs
->file
&& bs
->file
->bs
);
1884 *file
= bs
->file
->bs
;
1885 return BDRV_BLOCK_RAW
| BDRV_BLOCK_OFFSET_VALID
;
1888 int coroutine_fn
bdrv_co_block_status_from_backing(BlockDriverState
*bs
,
1894 BlockDriverState
**file
)
1896 assert(bs
->backing
&& bs
->backing
->bs
);
1899 *file
= bs
->backing
->bs
;
1900 return BDRV_BLOCK_RAW
| BDRV_BLOCK_OFFSET_VALID
;
1904 * Returns the allocation status of the specified sectors.
1905 * Drivers not implementing the functionality are assumed to not support
1906 * backing files, hence all their sectors are reported as allocated.
1908 * If 'want_zero' is true, the caller is querying for mapping
1909 * purposes, with a focus on valid BDRV_BLOCK_OFFSET_VALID, _DATA, and
1910 * _ZERO where possible; otherwise, the result favors larger 'pnum',
1911 * with a focus on accurate BDRV_BLOCK_ALLOCATED.
1913 * If 'offset' is beyond the end of the disk image the return value is
1914 * BDRV_BLOCK_EOF and 'pnum' is set to 0.
1916 * 'bytes' is the max value 'pnum' should be set to. If bytes goes
1917 * beyond the end of the disk image it will be clamped; if 'pnum' is set to
1918 * the end of the image, then the returned value will include BDRV_BLOCK_EOF.
1920 * 'pnum' is set to the number of bytes (including and immediately
1921 * following the specified offset) that are easily known to be in the
1922 * same allocated/unallocated state. Note that a second call starting
1923 * at the original offset plus returned pnum may have the same status.
1924 * The returned value is non-zero on success except at end-of-file.
1926 * Returns negative errno on failure. Otherwise, if the
1927 * BDRV_BLOCK_OFFSET_VALID bit is set, 'map' and 'file' (if non-NULL) are
1928 * set to the host mapping and BDS corresponding to the guest offset.
1930 static int coroutine_fn
bdrv_co_block_status(BlockDriverState
*bs
,
1932 int64_t offset
, int64_t bytes
,
1933 int64_t *pnum
, int64_t *map
,
1934 BlockDriverState
**file
)
1937 int64_t n
; /* bytes */
1939 int64_t local_map
= 0;
1940 BlockDriverState
*local_file
= NULL
;
1941 int64_t aligned_offset
, aligned_bytes
;
1946 total_size
= bdrv_getlength(bs
);
1947 if (total_size
< 0) {
1952 if (offset
>= total_size
) {
1953 ret
= BDRV_BLOCK_EOF
;
1961 n
= total_size
- offset
;
1966 /* Must be non-NULL or bdrv_getlength() would have failed */
1968 if (!bs
->drv
->bdrv_co_block_status
) {
1970 ret
= BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
;
1971 if (offset
+ bytes
== total_size
) {
1972 ret
|= BDRV_BLOCK_EOF
;
1974 if (bs
->drv
->protocol_name
) {
1975 ret
|= BDRV_BLOCK_OFFSET_VALID
;
1982 bdrv_inc_in_flight(bs
);
1984 /* Round out to request_alignment boundaries */
1985 align
= bs
->bl
.request_alignment
;
1986 aligned_offset
= QEMU_ALIGN_DOWN(offset
, align
);
1987 aligned_bytes
= ROUND_UP(offset
+ bytes
, align
) - aligned_offset
;
1989 ret
= bs
->drv
->bdrv_co_block_status(bs
, want_zero
, aligned_offset
,
1990 aligned_bytes
, pnum
, &local_map
,
1998 * The driver's result must be a non-zero multiple of request_alignment.
1999 * Clamp pnum and adjust map to original request.
2001 assert(*pnum
&& QEMU_IS_ALIGNED(*pnum
, align
) &&
2002 align
> offset
- aligned_offset
);
2003 *pnum
-= offset
- aligned_offset
;
2004 if (*pnum
> bytes
) {
2007 if (ret
& BDRV_BLOCK_OFFSET_VALID
) {
2008 local_map
+= offset
- aligned_offset
;
2011 if (ret
& BDRV_BLOCK_RAW
) {
2012 assert(ret
& BDRV_BLOCK_OFFSET_VALID
&& local_file
);
2013 ret
= bdrv_co_block_status(local_file
, want_zero
, local_map
,
2014 *pnum
, pnum
, &local_map
, &local_file
);
2018 if (ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ZERO
)) {
2019 ret
|= BDRV_BLOCK_ALLOCATED
;
2020 } else if (want_zero
) {
2021 if (bdrv_unallocated_blocks_are_zero(bs
)) {
2022 ret
|= BDRV_BLOCK_ZERO
;
2023 } else if (bs
->backing
) {
2024 BlockDriverState
*bs2
= bs
->backing
->bs
;
2025 int64_t size2
= bdrv_getlength(bs2
);
2027 if (size2
>= 0 && offset
>= size2
) {
2028 ret
|= BDRV_BLOCK_ZERO
;
2033 if (want_zero
&& local_file
&& local_file
!= bs
&&
2034 (ret
& BDRV_BLOCK_DATA
) && !(ret
& BDRV_BLOCK_ZERO
) &&
2035 (ret
& BDRV_BLOCK_OFFSET_VALID
)) {
2039 ret2
= bdrv_co_block_status(local_file
, want_zero
, local_map
,
2040 *pnum
, &file_pnum
, NULL
, NULL
);
2042 /* Ignore errors. This is just providing extra information, it
2043 * is useful but not necessary.
2045 if (ret2
& BDRV_BLOCK_EOF
&&
2046 (!file_pnum
|| ret2
& BDRV_BLOCK_ZERO
)) {
2048 * It is valid for the format block driver to read
2049 * beyond the end of the underlying file's current
2050 * size; such areas read as zero.
2052 ret
|= BDRV_BLOCK_ZERO
;
2054 /* Limit request to the range reported by the protocol driver */
2056 ret
|= (ret2
& BDRV_BLOCK_ZERO
);
2062 bdrv_dec_in_flight(bs
);
2063 if (ret
>= 0 && offset
+ *pnum
== total_size
) {
2064 ret
|= BDRV_BLOCK_EOF
;
2076 static int coroutine_fn
bdrv_co_block_status_above(BlockDriverState
*bs
,
2077 BlockDriverState
*base
,
2083 BlockDriverState
**file
)
2085 BlockDriverState
*p
;
2090 for (p
= bs
; p
!= base
; p
= backing_bs(p
)) {
2091 ret
= bdrv_co_block_status(p
, want_zero
, offset
, bytes
, pnum
, map
,
2096 if (ret
& BDRV_BLOCK_ZERO
&& ret
& BDRV_BLOCK_EOF
&& !first
) {
2098 * Reading beyond the end of the file continues to read
2099 * zeroes, but we can only widen the result to the
2100 * unallocated length we learned from an earlier
2105 if (ret
& (BDRV_BLOCK_ZERO
| BDRV_BLOCK_DATA
)) {
2108 /* [offset, pnum] unallocated on this layer, which could be only
2109 * the first part of [offset, bytes]. */
2110 bytes
= MIN(bytes
, *pnum
);
2116 /* Coroutine wrapper for bdrv_block_status_above() */
2117 static void coroutine_fn
bdrv_block_status_above_co_entry(void *opaque
)
2119 BdrvCoBlockStatusData
*data
= opaque
;
2121 data
->ret
= bdrv_co_block_status_above(data
->bs
, data
->base
,
2123 data
->offset
, data
->bytes
,
2124 data
->pnum
, data
->map
, data
->file
);
2129 * Synchronous wrapper around bdrv_co_block_status_above().
2131 * See bdrv_co_block_status_above() for details.
2133 static int bdrv_common_block_status_above(BlockDriverState
*bs
,
2134 BlockDriverState
*base
,
2135 bool want_zero
, int64_t offset
,
2136 int64_t bytes
, int64_t *pnum
,
2138 BlockDriverState
**file
)
2141 BdrvCoBlockStatusData data
= {
2144 .want_zero
= want_zero
,
2153 if (qemu_in_coroutine()) {
2154 /* Fast-path if already in coroutine context */
2155 bdrv_block_status_above_co_entry(&data
);
2157 co
= qemu_coroutine_create(bdrv_block_status_above_co_entry
, &data
);
2158 bdrv_coroutine_enter(bs
, co
);
2159 BDRV_POLL_WHILE(bs
, !data
.done
);
2164 int bdrv_block_status_above(BlockDriverState
*bs
, BlockDriverState
*base
,
2165 int64_t offset
, int64_t bytes
, int64_t *pnum
,
2166 int64_t *map
, BlockDriverState
**file
)
2168 return bdrv_common_block_status_above(bs
, base
, true, offset
, bytes
,
2172 int bdrv_block_status(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
2173 int64_t *pnum
, int64_t *map
, BlockDriverState
**file
)
2175 return bdrv_block_status_above(bs
, backing_bs(bs
),
2176 offset
, bytes
, pnum
, map
, file
);
2179 int coroutine_fn
bdrv_is_allocated(BlockDriverState
*bs
, int64_t offset
,
2180 int64_t bytes
, int64_t *pnum
)
2185 ret
= bdrv_common_block_status_above(bs
, backing_bs(bs
), false, offset
,
2186 bytes
, pnum
? pnum
: &dummy
, NULL
,
2191 return !!(ret
& BDRV_BLOCK_ALLOCATED
);
2195 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
2197 * Return true if (a prefix of) the given range is allocated in any image
2198 * between BASE and TOP (inclusive). BASE can be NULL to check if the given
2199 * offset is allocated in any image of the chain. Return false otherwise,
2200 * or negative errno on failure.
2202 * 'pnum' is set to the number of bytes (including and immediately
2203 * following the specified offset) that are known to be in the same
2204 * allocated/unallocated state. Note that a subsequent call starting
2205 * at 'offset + *pnum' may return the same allocation status (in other
2206 * words, the result is not necessarily the maximum possible range);
2207 * but 'pnum' will only be 0 when end of file is reached.
2210 int bdrv_is_allocated_above(BlockDriverState
*top
,
2211 BlockDriverState
*base
,
2212 int64_t offset
, int64_t bytes
, int64_t *pnum
)
2214 BlockDriverState
*intermediate
;
2219 while (intermediate
&& intermediate
!= base
) {
2223 ret
= bdrv_is_allocated(intermediate
, offset
, bytes
, &pnum_inter
);
2232 size_inter
= bdrv_getlength(intermediate
);
2233 if (size_inter
< 0) {
2236 if (n
> pnum_inter
&&
2237 (intermediate
== top
|| offset
+ pnum_inter
< size_inter
)) {
2241 intermediate
= backing_bs(intermediate
);
2248 typedef struct BdrvVmstateCo
{
2249 BlockDriverState
*bs
;
2256 static int coroutine_fn
2257 bdrv_co_rw_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
,
2260 BlockDriver
*drv
= bs
->drv
;
2263 bdrv_inc_in_flight(bs
);
2267 } else if (drv
->bdrv_load_vmstate
) {
2269 ret
= drv
->bdrv_load_vmstate(bs
, qiov
, pos
);
2271 ret
= drv
->bdrv_save_vmstate(bs
, qiov
, pos
);
2273 } else if (bs
->file
) {
2274 ret
= bdrv_co_rw_vmstate(bs
->file
->bs
, qiov
, pos
, is_read
);
2277 bdrv_dec_in_flight(bs
);
2281 static void coroutine_fn
bdrv_co_rw_vmstate_entry(void *opaque
)
2283 BdrvVmstateCo
*co
= opaque
;
2284 co
->ret
= bdrv_co_rw_vmstate(co
->bs
, co
->qiov
, co
->pos
, co
->is_read
);
2288 bdrv_rw_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
,
2291 if (qemu_in_coroutine()) {
2292 return bdrv_co_rw_vmstate(bs
, qiov
, pos
, is_read
);
2294 BdrvVmstateCo data
= {
2299 .ret
= -EINPROGRESS
,
2301 Coroutine
*co
= qemu_coroutine_create(bdrv_co_rw_vmstate_entry
, &data
);
2303 bdrv_coroutine_enter(bs
, co
);
2304 BDRV_POLL_WHILE(bs
, data
.ret
== -EINPROGRESS
);
2309 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
2310 int64_t pos
, int size
)
2313 struct iovec iov
= {
2314 .iov_base
= (void *) buf
,
2319 qemu_iovec_init_external(&qiov
, &iov
, 1);
2321 ret
= bdrv_writev_vmstate(bs
, &qiov
, pos
);
2329 int bdrv_writev_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
)
2331 return bdrv_rw_vmstate(bs
, qiov
, pos
, false);
2334 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
2335 int64_t pos
, int size
)
2338 struct iovec iov
= {
2344 qemu_iovec_init_external(&qiov
, &iov
, 1);
2345 ret
= bdrv_readv_vmstate(bs
, &qiov
, pos
);
2353 int bdrv_readv_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
)
2355 return bdrv_rw_vmstate(bs
, qiov
, pos
, true);
2358 /**************************************************************/
2361 void bdrv_aio_cancel(BlockAIOCB
*acb
)
2364 bdrv_aio_cancel_async(acb
);
2365 while (acb
->refcnt
> 1) {
2366 if (acb
->aiocb_info
->get_aio_context
) {
2367 aio_poll(acb
->aiocb_info
->get_aio_context(acb
), true);
2368 } else if (acb
->bs
) {
2369 /* qemu_aio_ref and qemu_aio_unref are not thread-safe, so
2370 * assert that we're not using an I/O thread. Thread-safe
2371 * code should use bdrv_aio_cancel_async exclusively.
2373 assert(bdrv_get_aio_context(acb
->bs
) == qemu_get_aio_context());
2374 aio_poll(bdrv_get_aio_context(acb
->bs
), true);
2379 qemu_aio_unref(acb
);
2382 /* Async version of aio cancel. The caller is not blocked if the acb implements
2383 * cancel_async, otherwise we do nothing and let the request normally complete.
2384 * In either case the completion callback must be called. */
2385 void bdrv_aio_cancel_async(BlockAIOCB
*acb
)
2387 if (acb
->aiocb_info
->cancel_async
) {
2388 acb
->aiocb_info
->cancel_async(acb
);
2392 /**************************************************************/
2393 /* Coroutine block device emulation */
2395 typedef struct FlushCo
{
2396 BlockDriverState
*bs
;
2401 static void coroutine_fn
bdrv_flush_co_entry(void *opaque
)
2403 FlushCo
*rwco
= opaque
;
2405 rwco
->ret
= bdrv_co_flush(rwco
->bs
);
2408 int coroutine_fn
bdrv_co_flush(BlockDriverState
*bs
)
2413 bdrv_inc_in_flight(bs
);
2415 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
) ||
2420 qemu_co_mutex_lock(&bs
->reqs_lock
);
2421 current_gen
= atomic_read(&bs
->write_gen
);
2423 /* Wait until any previous flushes are completed */
2424 while (bs
->active_flush_req
) {
2425 qemu_co_queue_wait(&bs
->flush_queue
, &bs
->reqs_lock
);
2428 /* Flushes reach this point in nondecreasing current_gen order. */
2429 bs
->active_flush_req
= true;
2430 qemu_co_mutex_unlock(&bs
->reqs_lock
);
2432 /* Write back all layers by calling one driver function */
2433 if (bs
->drv
->bdrv_co_flush
) {
2434 ret
= bs
->drv
->bdrv_co_flush(bs
);
2438 /* Write back cached data to the OS even with cache=unsafe */
2439 BLKDBG_EVENT(bs
->file
, BLKDBG_FLUSH_TO_OS
);
2440 if (bs
->drv
->bdrv_co_flush_to_os
) {
2441 ret
= bs
->drv
->bdrv_co_flush_to_os(bs
);
2447 /* But don't actually force it to the disk with cache=unsafe */
2448 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
2452 /* Check if we really need to flush anything */
2453 if (bs
->flushed_gen
== current_gen
) {
2457 BLKDBG_EVENT(bs
->file
, BLKDBG_FLUSH_TO_DISK
);
2459 /* bs->drv->bdrv_co_flush() might have ejected the BDS
2460 * (even in case of apparent success) */
2464 if (bs
->drv
->bdrv_co_flush_to_disk
) {
2465 ret
= bs
->drv
->bdrv_co_flush_to_disk(bs
);
2466 } else if (bs
->drv
->bdrv_aio_flush
) {
2468 CoroutineIOCompletion co
= {
2469 .coroutine
= qemu_coroutine_self(),
2472 acb
= bs
->drv
->bdrv_aio_flush(bs
, bdrv_co_io_em_complete
, &co
);
2476 qemu_coroutine_yield();
2481 * Some block drivers always operate in either writethrough or unsafe
2482 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
2483 * know how the server works (because the behaviour is hardcoded or
2484 * depends on server-side configuration), so we can't ensure that
2485 * everything is safe on disk. Returning an error doesn't work because
2486 * that would break guests even if the server operates in writethrough
2489 * Let's hope the user knows what he's doing.
2498 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
2499 * in the case of cache=unsafe, so there are no useless flushes.
2502 ret
= bs
->file
? bdrv_co_flush(bs
->file
->bs
) : 0;
2504 /* Notify any pending flushes that we have completed */
2506 bs
->flushed_gen
= current_gen
;
2509 qemu_co_mutex_lock(&bs
->reqs_lock
);
2510 bs
->active_flush_req
= false;
2511 /* Return value is ignored - it's ok if wait queue is empty */
2512 qemu_co_queue_next(&bs
->flush_queue
);
2513 qemu_co_mutex_unlock(&bs
->reqs_lock
);
2516 bdrv_dec_in_flight(bs
);
2520 int bdrv_flush(BlockDriverState
*bs
)
2523 FlushCo flush_co
= {
2528 if (qemu_in_coroutine()) {
2529 /* Fast-path if already in coroutine context */
2530 bdrv_flush_co_entry(&flush_co
);
2532 co
= qemu_coroutine_create(bdrv_flush_co_entry
, &flush_co
);
2533 bdrv_coroutine_enter(bs
, co
);
2534 BDRV_POLL_WHILE(bs
, flush_co
.ret
== NOT_DONE
);
2537 return flush_co
.ret
;
2540 typedef struct DiscardCo
{
2541 BlockDriverState
*bs
;
2546 static void coroutine_fn
bdrv_pdiscard_co_entry(void *opaque
)
2548 DiscardCo
*rwco
= opaque
;
2550 rwco
->ret
= bdrv_co_pdiscard(rwco
->bs
, rwco
->offset
, rwco
->bytes
);
2553 int coroutine_fn
bdrv_co_pdiscard(BlockDriverState
*bs
, int64_t offset
,
2556 BdrvTrackedRequest req
;
2557 int max_pdiscard
, ret
;
2558 int head
, tail
, align
;
2564 if (bdrv_has_readonly_bitmaps(bs
)) {
2568 ret
= bdrv_check_byte_request(bs
, offset
, bytes
);
2571 } else if (bs
->read_only
) {
2574 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
2576 /* Do nothing if disabled. */
2577 if (!(bs
->open_flags
& BDRV_O_UNMAP
)) {
2581 if (!bs
->drv
->bdrv_co_pdiscard
&& !bs
->drv
->bdrv_aio_pdiscard
) {
2585 /* Discard is advisory, but some devices track and coalesce
2586 * unaligned requests, so we must pass everything down rather than
2587 * round here. Still, most devices will just silently ignore
2588 * unaligned requests (by returning -ENOTSUP), so we must fragment
2589 * the request accordingly. */
2590 align
= MAX(bs
->bl
.pdiscard_alignment
, bs
->bl
.request_alignment
);
2591 assert(align
% bs
->bl
.request_alignment
== 0);
2592 head
= offset
% align
;
2593 tail
= (offset
+ bytes
) % align
;
2595 bdrv_inc_in_flight(bs
);
2596 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_DISCARD
);
2598 ret
= notifier_with_return_list_notify(&bs
->before_write_notifiers
, &req
);
2603 max_pdiscard
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_pdiscard
, INT_MAX
),
2605 assert(max_pdiscard
>= bs
->bl
.request_alignment
);
2611 /* Make small requests to get to alignment boundaries. */
2612 num
= MIN(bytes
, align
- head
);
2613 if (!QEMU_IS_ALIGNED(num
, bs
->bl
.request_alignment
)) {
2614 num
%= bs
->bl
.request_alignment
;
2616 head
= (head
+ num
) % align
;
2617 assert(num
< max_pdiscard
);
2620 /* Shorten the request to the last aligned cluster. */
2622 } else if (!QEMU_IS_ALIGNED(tail
, bs
->bl
.request_alignment
) &&
2623 tail
> bs
->bl
.request_alignment
) {
2624 tail
%= bs
->bl
.request_alignment
;
2628 /* limit request size */
2629 if (num
> max_pdiscard
) {
2637 if (bs
->drv
->bdrv_co_pdiscard
) {
2638 ret
= bs
->drv
->bdrv_co_pdiscard(bs
, offset
, num
);
2641 CoroutineIOCompletion co
= {
2642 .coroutine
= qemu_coroutine_self(),
2645 acb
= bs
->drv
->bdrv_aio_pdiscard(bs
, offset
, num
,
2646 bdrv_co_io_em_complete
, &co
);
2651 qemu_coroutine_yield();
2655 if (ret
&& ret
!= -ENOTSUP
) {
2664 atomic_inc(&bs
->write_gen
);
2665 bdrv_set_dirty(bs
, req
.offset
, req
.bytes
);
2666 tracked_request_end(&req
);
2667 bdrv_dec_in_flight(bs
);
2671 int bdrv_pdiscard(BlockDriverState
*bs
, int64_t offset
, int bytes
)
2681 if (qemu_in_coroutine()) {
2682 /* Fast-path if already in coroutine context */
2683 bdrv_pdiscard_co_entry(&rwco
);
2685 co
= qemu_coroutine_create(bdrv_pdiscard_co_entry
, &rwco
);
2686 bdrv_coroutine_enter(bs
, co
);
2687 BDRV_POLL_WHILE(bs
, rwco
.ret
== NOT_DONE
);
2693 int bdrv_co_ioctl(BlockDriverState
*bs
, int req
, void *buf
)
2695 BlockDriver
*drv
= bs
->drv
;
2696 CoroutineIOCompletion co
= {
2697 .coroutine
= qemu_coroutine_self(),
2701 bdrv_inc_in_flight(bs
);
2702 if (!drv
|| (!drv
->bdrv_aio_ioctl
&& !drv
->bdrv_co_ioctl
)) {
2707 if (drv
->bdrv_co_ioctl
) {
2708 co
.ret
= drv
->bdrv_co_ioctl(bs
, req
, buf
);
2710 acb
= drv
->bdrv_aio_ioctl(bs
, req
, buf
, bdrv_co_io_em_complete
, &co
);
2715 qemu_coroutine_yield();
2718 bdrv_dec_in_flight(bs
);
2722 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
2724 return qemu_memalign(bdrv_opt_mem_align(bs
), size
);
2727 void *qemu_blockalign0(BlockDriverState
*bs
, size_t size
)
2729 return memset(qemu_blockalign(bs
, size
), 0, size
);
2732 void *qemu_try_blockalign(BlockDriverState
*bs
, size_t size
)
2734 size_t align
= bdrv_opt_mem_align(bs
);
2736 /* Ensure that NULL is never returned on success */
2742 return qemu_try_memalign(align
, size
);
2745 void *qemu_try_blockalign0(BlockDriverState
*bs
, size_t size
)
2747 void *mem
= qemu_try_blockalign(bs
, size
);
2750 memset(mem
, 0, size
);
2757 * Check if all memory in this vector is sector aligned.
2759 bool bdrv_qiov_is_aligned(BlockDriverState
*bs
, QEMUIOVector
*qiov
)
2762 size_t alignment
= bdrv_min_mem_align(bs
);
2764 for (i
= 0; i
< qiov
->niov
; i
++) {
2765 if ((uintptr_t) qiov
->iov
[i
].iov_base
% alignment
) {
2768 if (qiov
->iov
[i
].iov_len
% alignment
) {
2776 void bdrv_add_before_write_notifier(BlockDriverState
*bs
,
2777 NotifierWithReturn
*notifier
)
2779 notifier_with_return_list_add(&bs
->before_write_notifiers
, notifier
);
2782 void bdrv_io_plug(BlockDriverState
*bs
)
2786 QLIST_FOREACH(child
, &bs
->children
, next
) {
2787 bdrv_io_plug(child
->bs
);
2790 if (atomic_fetch_inc(&bs
->io_plugged
) == 0) {
2791 BlockDriver
*drv
= bs
->drv
;
2792 if (drv
&& drv
->bdrv_io_plug
) {
2793 drv
->bdrv_io_plug(bs
);
2798 void bdrv_io_unplug(BlockDriverState
*bs
)
2802 assert(bs
->io_plugged
);
2803 if (atomic_fetch_dec(&bs
->io_plugged
) == 1) {
2804 BlockDriver
*drv
= bs
->drv
;
2805 if (drv
&& drv
->bdrv_io_unplug
) {
2806 drv
->bdrv_io_unplug(bs
);
2810 QLIST_FOREACH(child
, &bs
->children
, next
) {
2811 bdrv_io_unplug(child
->bs
);
2815 void bdrv_register_buf(BlockDriverState
*bs
, void *host
, size_t size
)
2819 if (bs
->drv
&& bs
->drv
->bdrv_register_buf
) {
2820 bs
->drv
->bdrv_register_buf(bs
, host
, size
);
2822 QLIST_FOREACH(child
, &bs
->children
, next
) {
2823 bdrv_register_buf(child
->bs
, host
, size
);
2827 void bdrv_unregister_buf(BlockDriverState
*bs
, void *host
)
2831 if (bs
->drv
&& bs
->drv
->bdrv_unregister_buf
) {
2832 bs
->drv
->bdrv_unregister_buf(bs
, host
);
2834 QLIST_FOREACH(child
, &bs
->children
, next
) {
2835 bdrv_unregister_buf(child
->bs
, host
);
2839 static int coroutine_fn
bdrv_co_copy_range_internal(BdrvChild
*src
,
2840 uint64_t src_offset
,
2842 uint64_t dst_offset
,
2844 BdrvRequestFlags flags
,
2849 if (!src
|| !dst
|| !src
->bs
|| !dst
->bs
) {
2852 ret
= bdrv_check_byte_request(src
->bs
, src_offset
, bytes
);
2857 ret
= bdrv_check_byte_request(dst
->bs
, dst_offset
, bytes
);
2861 if (flags
& BDRV_REQ_ZERO_WRITE
) {
2862 return bdrv_co_pwrite_zeroes(dst
, dst_offset
, bytes
, flags
);
2865 if (!src
->bs
->drv
->bdrv_co_copy_range_from
2866 || !dst
->bs
->drv
->bdrv_co_copy_range_to
2867 || src
->bs
->encrypted
|| dst
->bs
->encrypted
) {
2871 return src
->bs
->drv
->bdrv_co_copy_range_from(src
->bs
,
2876 return dst
->bs
->drv
->bdrv_co_copy_range_to(dst
->bs
,
2883 /* Copy range from @src to @dst.
2885 * See the comment of bdrv_co_copy_range for the parameter and return value
2887 int coroutine_fn
bdrv_co_copy_range_from(BdrvChild
*src
, uint64_t src_offset
,
2888 BdrvChild
*dst
, uint64_t dst_offset
,
2889 uint64_t bytes
, BdrvRequestFlags flags
)
2891 return bdrv_co_copy_range_internal(src
, src_offset
, dst
, dst_offset
,
2892 bytes
, flags
, true);
2895 /* Copy range from @src to @dst.
2897 * See the comment of bdrv_co_copy_range for the parameter and return value
2899 int coroutine_fn
bdrv_co_copy_range_to(BdrvChild
*src
, uint64_t src_offset
,
2900 BdrvChild
*dst
, uint64_t dst_offset
,
2901 uint64_t bytes
, BdrvRequestFlags flags
)
2903 return bdrv_co_copy_range_internal(src
, src_offset
, dst
, dst_offset
,
2904 bytes
, flags
, false);
2907 int coroutine_fn
bdrv_co_copy_range(BdrvChild
*src
, uint64_t src_offset
,
2908 BdrvChild
*dst
, uint64_t dst_offset
,
2909 uint64_t bytes
, BdrvRequestFlags flags
)
2911 BdrvTrackedRequest src_req
, dst_req
;
2912 BlockDriverState
*src_bs
= src
->bs
;
2913 BlockDriverState
*dst_bs
= dst
->bs
;
2916 bdrv_inc_in_flight(src_bs
);
2917 bdrv_inc_in_flight(dst_bs
);
2918 tracked_request_begin(&src_req
, src_bs
, src_offset
,
2919 bytes
, BDRV_TRACKED_READ
);
2920 tracked_request_begin(&dst_req
, dst_bs
, dst_offset
,
2921 bytes
, BDRV_TRACKED_WRITE
);
2923 wait_serialising_requests(&src_req
);
2924 wait_serialising_requests(&dst_req
);
2925 ret
= bdrv_co_copy_range_from(src
, src_offset
,
2929 tracked_request_end(&src_req
);
2930 tracked_request_end(&dst_req
);
2931 bdrv_dec_in_flight(src_bs
);
2932 bdrv_dec_in_flight(dst_bs
);