2 * Block layer I/O functions
4 * Copyright (c) 2003 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
27 #include "sysemu/block-backend.h"
28 #include "block/blockjob.h"
29 #include "block/block_int.h"
30 #include "qemu/cutils.h"
31 #include "qapi/error.h"
32 #include "qemu/error-report.h"
34 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
36 static BlockAIOCB
*bdrv_co_aio_prw_vector(BdrvChild
*child
,
39 BdrvRequestFlags flags
,
40 BlockCompletionFunc
*cb
,
43 static void coroutine_fn
bdrv_co_do_rw(void *opaque
);
44 static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState
*bs
,
45 int64_t offset
, int count
, BdrvRequestFlags flags
);
47 static void bdrv_parent_drained_begin(BlockDriverState
*bs
)
51 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
52 if (c
->role
->drained_begin
) {
53 c
->role
->drained_begin(c
);
58 static void bdrv_parent_drained_end(BlockDriverState
*bs
)
62 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
63 if (c
->role
->drained_end
) {
64 c
->role
->drained_end(c
);
69 static void bdrv_merge_limits(BlockLimits
*dst
, const BlockLimits
*src
)
71 dst
->opt_transfer
= MAX(dst
->opt_transfer
, src
->opt_transfer
);
72 dst
->max_transfer
= MIN_NON_ZERO(dst
->max_transfer
, src
->max_transfer
);
73 dst
->opt_mem_alignment
= MAX(dst
->opt_mem_alignment
,
74 src
->opt_mem_alignment
);
75 dst
->min_mem_alignment
= MAX(dst
->min_mem_alignment
,
76 src
->min_mem_alignment
);
77 dst
->max_iov
= MIN_NON_ZERO(dst
->max_iov
, src
->max_iov
);
80 void bdrv_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
82 BlockDriver
*drv
= bs
->drv
;
83 Error
*local_err
= NULL
;
85 memset(&bs
->bl
, 0, sizeof(bs
->bl
));
91 /* Default alignment based on whether driver has byte interface */
92 bs
->bl
.request_alignment
= drv
->bdrv_co_preadv
? 1 : 512;
94 /* Take some limits from the children as a default */
96 bdrv_refresh_limits(bs
->file
->bs
, &local_err
);
98 error_propagate(errp
, local_err
);
101 bdrv_merge_limits(&bs
->bl
, &bs
->file
->bs
->bl
);
103 bs
->bl
.min_mem_alignment
= 512;
104 bs
->bl
.opt_mem_alignment
= getpagesize();
106 /* Safe default since most protocols use readv()/writev()/etc */
107 bs
->bl
.max_iov
= IOV_MAX
;
111 bdrv_refresh_limits(bs
->backing
->bs
, &local_err
);
113 error_propagate(errp
, local_err
);
116 bdrv_merge_limits(&bs
->bl
, &bs
->backing
->bs
->bl
);
119 /* Then let the driver override it */
120 if (drv
->bdrv_refresh_limits
) {
121 drv
->bdrv_refresh_limits(bs
, errp
);
126 * The copy-on-read flag is actually a reference count so multiple users may
127 * use the feature without worrying about clobbering its previous state.
128 * Copy-on-read stays enabled until all users have called to disable it.
130 void bdrv_enable_copy_on_read(BlockDriverState
*bs
)
135 void bdrv_disable_copy_on_read(BlockDriverState
*bs
)
137 assert(bs
->copy_on_read
> 0);
141 /* Check if any requests are in-flight (including throttled requests) */
142 bool bdrv_requests_pending(BlockDriverState
*bs
)
146 if (!QLIST_EMPTY(&bs
->tracked_requests
)) {
150 QLIST_FOREACH(child
, &bs
->children
, next
) {
151 if (bdrv_requests_pending(child
->bs
)) {
159 static void bdrv_drain_recurse(BlockDriverState
*bs
)
163 if (bs
->drv
&& bs
->drv
->bdrv_drain
) {
164 bs
->drv
->bdrv_drain(bs
);
166 QLIST_FOREACH(child
, &bs
->children
, next
) {
167 bdrv_drain_recurse(child
->bs
);
173 BlockDriverState
*bs
;
178 static void bdrv_drain_poll(BlockDriverState
*bs
)
184 busy
= bdrv_requests_pending(bs
);
185 busy
|= aio_poll(bdrv_get_aio_context(bs
), busy
);
189 static void bdrv_co_drain_bh_cb(void *opaque
)
191 BdrvCoDrainData
*data
= opaque
;
192 Coroutine
*co
= data
->co
;
194 qemu_bh_delete(data
->bh
);
195 bdrv_drain_poll(data
->bs
);
197 qemu_coroutine_enter(co
);
200 static void coroutine_fn
bdrv_co_yield_to_drain(BlockDriverState
*bs
)
202 BdrvCoDrainData data
;
204 /* Calling bdrv_drain() from a BH ensures the current coroutine yields and
205 * other coroutines run if they were queued from
206 * qemu_co_queue_run_restart(). */
208 assert(qemu_in_coroutine());
209 data
= (BdrvCoDrainData
) {
210 .co
= qemu_coroutine_self(),
213 .bh
= aio_bh_new(bdrv_get_aio_context(bs
), bdrv_co_drain_bh_cb
, &data
),
215 qemu_bh_schedule(data
.bh
);
217 qemu_coroutine_yield();
218 /* If we are resumed from some other event (such as an aio completion or a
219 * timer callback), it is a bug in the caller that should be fixed. */
223 void bdrv_drained_begin(BlockDriverState
*bs
)
225 if (!bs
->quiesce_counter
++) {
226 aio_disable_external(bdrv_get_aio_context(bs
));
227 bdrv_parent_drained_begin(bs
);
230 bdrv_io_unplugged_begin(bs
);
231 bdrv_drain_recurse(bs
);
232 if (qemu_in_coroutine()) {
233 bdrv_co_yield_to_drain(bs
);
237 bdrv_io_unplugged_end(bs
);
240 void bdrv_drained_end(BlockDriverState
*bs
)
242 assert(bs
->quiesce_counter
> 0);
243 if (--bs
->quiesce_counter
> 0) {
247 bdrv_parent_drained_end(bs
);
248 aio_enable_external(bdrv_get_aio_context(bs
));
252 * Wait for pending requests to complete on a single BlockDriverState subtree,
253 * and suspend block driver's internal I/O until next request arrives.
255 * Note that unlike bdrv_drain_all(), the caller must hold the BlockDriverState
258 * Only this BlockDriverState's AioContext is run, so in-flight requests must
259 * not depend on events in other AioContexts. In that case, use
260 * bdrv_drain_all() instead.
262 void coroutine_fn
bdrv_co_drain(BlockDriverState
*bs
)
264 assert(qemu_in_coroutine());
265 bdrv_drained_begin(bs
);
266 bdrv_drained_end(bs
);
269 void bdrv_drain(BlockDriverState
*bs
)
271 bdrv_drained_begin(bs
);
272 bdrv_drained_end(bs
);
276 * Wait for pending requests to complete across all BlockDriverStates
278 * This function does not flush data to disk, use bdrv_flush_all() for that
279 * after calling this function.
281 void bdrv_drain_all(void)
283 /* Always run first iteration so any pending completion BHs run */
285 BlockDriverState
*bs
;
287 BlockJob
*job
= NULL
;
288 GSList
*aio_ctxs
= NULL
, *ctx
;
290 while ((job
= block_job_next(job
))) {
291 AioContext
*aio_context
= blk_get_aio_context(job
->blk
);
293 aio_context_acquire(aio_context
);
294 block_job_pause(job
);
295 aio_context_release(aio_context
);
298 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
299 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
301 aio_context_acquire(aio_context
);
302 bdrv_parent_drained_begin(bs
);
303 bdrv_io_unplugged_begin(bs
);
304 bdrv_drain_recurse(bs
);
305 aio_context_release(aio_context
);
307 if (!g_slist_find(aio_ctxs
, aio_context
)) {
308 aio_ctxs
= g_slist_prepend(aio_ctxs
, aio_context
);
312 /* Note that completion of an asynchronous I/O operation can trigger any
313 * number of other I/O operations on other devices---for example a
314 * coroutine can submit an I/O request to another device in response to
315 * request completion. Therefore we must keep looping until there was no
316 * more activity rather than simply draining each device independently.
321 for (ctx
= aio_ctxs
; ctx
!= NULL
; ctx
= ctx
->next
) {
322 AioContext
*aio_context
= ctx
->data
;
324 aio_context_acquire(aio_context
);
325 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
326 if (aio_context
== bdrv_get_aio_context(bs
)) {
327 if (bdrv_requests_pending(bs
)) {
329 aio_poll(aio_context
, busy
);
333 busy
|= aio_poll(aio_context
, false);
334 aio_context_release(aio_context
);
338 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
339 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
341 aio_context_acquire(aio_context
);
342 bdrv_io_unplugged_end(bs
);
343 bdrv_parent_drained_end(bs
);
344 aio_context_release(aio_context
);
346 g_slist_free(aio_ctxs
);
349 while ((job
= block_job_next(job
))) {
350 AioContext
*aio_context
= blk_get_aio_context(job
->blk
);
352 aio_context_acquire(aio_context
);
353 block_job_resume(job
);
354 aio_context_release(aio_context
);
359 * Remove an active request from the tracked requests list
361 * This function should be called when a tracked request is completing.
363 static void tracked_request_end(BdrvTrackedRequest
*req
)
365 if (req
->serialising
) {
366 req
->bs
->serialising_in_flight
--;
369 QLIST_REMOVE(req
, list
);
370 qemu_co_queue_restart_all(&req
->wait_queue
);
374 * Add an active request to the tracked requests list
376 static void tracked_request_begin(BdrvTrackedRequest
*req
,
377 BlockDriverState
*bs
,
380 enum BdrvTrackedRequestType type
)
382 *req
= (BdrvTrackedRequest
){
387 .co
= qemu_coroutine_self(),
388 .serialising
= false,
389 .overlap_offset
= offset
,
390 .overlap_bytes
= bytes
,
393 qemu_co_queue_init(&req
->wait_queue
);
395 QLIST_INSERT_HEAD(&bs
->tracked_requests
, req
, list
);
398 static void mark_request_serialising(BdrvTrackedRequest
*req
, uint64_t align
)
400 int64_t overlap_offset
= req
->offset
& ~(align
- 1);
401 unsigned int overlap_bytes
= ROUND_UP(req
->offset
+ req
->bytes
, align
)
404 if (!req
->serialising
) {
405 req
->bs
->serialising_in_flight
++;
406 req
->serialising
= true;
409 req
->overlap_offset
= MIN(req
->overlap_offset
, overlap_offset
);
410 req
->overlap_bytes
= MAX(req
->overlap_bytes
, overlap_bytes
);
414 * Round a region to cluster boundaries (sector-based)
416 void bdrv_round_sectors_to_clusters(BlockDriverState
*bs
,
417 int64_t sector_num
, int nb_sectors
,
418 int64_t *cluster_sector_num
,
419 int *cluster_nb_sectors
)
423 if (bdrv_get_info(bs
, &bdi
) < 0 || bdi
.cluster_size
== 0) {
424 *cluster_sector_num
= sector_num
;
425 *cluster_nb_sectors
= nb_sectors
;
427 int64_t c
= bdi
.cluster_size
/ BDRV_SECTOR_SIZE
;
428 *cluster_sector_num
= QEMU_ALIGN_DOWN(sector_num
, c
);
429 *cluster_nb_sectors
= QEMU_ALIGN_UP(sector_num
- *cluster_sector_num
+
435 * Round a region to cluster boundaries
437 void bdrv_round_to_clusters(BlockDriverState
*bs
,
438 int64_t offset
, unsigned int bytes
,
439 int64_t *cluster_offset
,
440 unsigned int *cluster_bytes
)
444 if (bdrv_get_info(bs
, &bdi
) < 0 || bdi
.cluster_size
== 0) {
445 *cluster_offset
= offset
;
446 *cluster_bytes
= bytes
;
448 int64_t c
= bdi
.cluster_size
;
449 *cluster_offset
= QEMU_ALIGN_DOWN(offset
, c
);
450 *cluster_bytes
= QEMU_ALIGN_UP(offset
- *cluster_offset
+ bytes
, c
);
454 static int bdrv_get_cluster_size(BlockDriverState
*bs
)
459 ret
= bdrv_get_info(bs
, &bdi
);
460 if (ret
< 0 || bdi
.cluster_size
== 0) {
461 return bs
->bl
.request_alignment
;
463 return bdi
.cluster_size
;
467 static bool tracked_request_overlaps(BdrvTrackedRequest
*req
,
468 int64_t offset
, unsigned int bytes
)
471 if (offset
>= req
->overlap_offset
+ req
->overlap_bytes
) {
475 if (req
->overlap_offset
>= offset
+ bytes
) {
481 static bool coroutine_fn
wait_serialising_requests(BdrvTrackedRequest
*self
)
483 BlockDriverState
*bs
= self
->bs
;
484 BdrvTrackedRequest
*req
;
488 if (!bs
->serialising_in_flight
) {
494 QLIST_FOREACH(req
, &bs
->tracked_requests
, list
) {
495 if (req
== self
|| (!req
->serialising
&& !self
->serialising
)) {
498 if (tracked_request_overlaps(req
, self
->overlap_offset
,
499 self
->overlap_bytes
))
501 /* Hitting this means there was a reentrant request, for
502 * example, a block driver issuing nested requests. This must
503 * never happen since it means deadlock.
505 assert(qemu_coroutine_self() != req
->co
);
507 /* If the request is already (indirectly) waiting for us, or
508 * will wait for us as soon as it wakes up, then just go on
509 * (instead of producing a deadlock in the former case). */
510 if (!req
->waiting_for
) {
511 self
->waiting_for
= req
;
512 qemu_co_queue_wait(&req
->wait_queue
);
513 self
->waiting_for
= NULL
;
525 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
528 if (size
> BDRV_REQUEST_MAX_SECTORS
<< BDRV_SECTOR_BITS
) {
532 if (!bdrv_is_inserted(bs
)) {
543 static int bdrv_check_request(BlockDriverState
*bs
, int64_t sector_num
,
546 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
550 return bdrv_check_byte_request(bs
, sector_num
* BDRV_SECTOR_SIZE
,
551 nb_sectors
* BDRV_SECTOR_SIZE
);
554 typedef struct RwCo
{
560 BdrvRequestFlags flags
;
563 static void coroutine_fn
bdrv_rw_co_entry(void *opaque
)
567 if (!rwco
->is_write
) {
568 rwco
->ret
= bdrv_co_preadv(rwco
->child
, rwco
->offset
,
569 rwco
->qiov
->size
, rwco
->qiov
,
572 rwco
->ret
= bdrv_co_pwritev(rwco
->child
, rwco
->offset
,
573 rwco
->qiov
->size
, rwco
->qiov
,
579 * Process a vectored synchronous request using coroutines
581 static int bdrv_prwv_co(BdrvChild
*child
, int64_t offset
,
582 QEMUIOVector
*qiov
, bool is_write
,
583 BdrvRequestFlags flags
)
590 .is_write
= is_write
,
595 if (qemu_in_coroutine()) {
596 /* Fast-path if already in coroutine context */
597 bdrv_rw_co_entry(&rwco
);
599 AioContext
*aio_context
= bdrv_get_aio_context(child
->bs
);
601 co
= qemu_coroutine_create(bdrv_rw_co_entry
, &rwco
);
602 qemu_coroutine_enter(co
);
603 while (rwco
.ret
== NOT_DONE
) {
604 aio_poll(aio_context
, true);
611 * Process a synchronous request using coroutines
613 static int bdrv_rw_co(BdrvChild
*child
, int64_t sector_num
, uint8_t *buf
,
614 int nb_sectors
, bool is_write
, BdrvRequestFlags flags
)
618 .iov_base
= (void *)buf
,
619 .iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
,
622 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
626 qemu_iovec_init_external(&qiov
, &iov
, 1);
627 return bdrv_prwv_co(child
, sector_num
<< BDRV_SECTOR_BITS
,
628 &qiov
, is_write
, flags
);
631 /* return < 0 if error. See bdrv_write() for the return codes */
632 int bdrv_read(BdrvChild
*child
, int64_t sector_num
,
633 uint8_t *buf
, int nb_sectors
)
635 return bdrv_rw_co(child
, sector_num
, buf
, nb_sectors
, false, 0);
638 /* Return < 0 if error. Important errors are:
639 -EIO generic I/O error (may happen for all errors)
640 -ENOMEDIUM No media inserted.
641 -EINVAL Invalid sector number or nb_sectors
642 -EACCES Trying to write a read-only device
644 int bdrv_write(BdrvChild
*child
, int64_t sector_num
,
645 const uint8_t *buf
, int nb_sectors
)
647 return bdrv_rw_co(child
, sector_num
, (uint8_t *)buf
, nb_sectors
, true, 0);
650 int bdrv_pwrite_zeroes(BdrvChild
*child
, int64_t offset
,
651 int count
, BdrvRequestFlags flags
)
659 qemu_iovec_init_external(&qiov
, &iov
, 1);
660 return bdrv_prwv_co(child
, offset
, &qiov
, true,
661 BDRV_REQ_ZERO_WRITE
| flags
);
665 * Completely zero out a block device with the help of bdrv_pwrite_zeroes.
666 * The operation is sped up by checking the block status and only writing
667 * zeroes to the device if they currently do not return zeroes. Optional
668 * flags are passed through to bdrv_pwrite_zeroes (e.g. BDRV_REQ_MAY_UNMAP,
671 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
673 int bdrv_make_zero(BdrvChild
*child
, BdrvRequestFlags flags
)
675 int64_t target_sectors
, ret
, nb_sectors
, sector_num
= 0;
676 BlockDriverState
*bs
= child
->bs
;
677 BlockDriverState
*file
;
680 target_sectors
= bdrv_nb_sectors(bs
);
681 if (target_sectors
< 0) {
682 return target_sectors
;
686 nb_sectors
= MIN(target_sectors
- sector_num
, BDRV_REQUEST_MAX_SECTORS
);
687 if (nb_sectors
<= 0) {
690 ret
= bdrv_get_block_status(bs
, sector_num
, nb_sectors
, &n
, &file
);
692 error_report("error getting block status at sector %" PRId64
": %s",
693 sector_num
, strerror(-ret
));
696 if (ret
& BDRV_BLOCK_ZERO
) {
700 ret
= bdrv_pwrite_zeroes(child
, sector_num
<< BDRV_SECTOR_BITS
,
701 n
<< BDRV_SECTOR_BITS
, flags
);
703 error_report("error writing zeroes at sector %" PRId64
": %s",
704 sector_num
, strerror(-ret
));
711 int bdrv_preadv(BdrvChild
*child
, int64_t offset
, QEMUIOVector
*qiov
)
715 ret
= bdrv_prwv_co(child
, offset
, qiov
, false, 0);
723 int bdrv_pread(BdrvChild
*child
, int64_t offset
, void *buf
, int bytes
)
727 .iov_base
= (void *)buf
,
735 qemu_iovec_init_external(&qiov
, &iov
, 1);
736 return bdrv_preadv(child
, offset
, &qiov
);
739 int bdrv_pwritev(BdrvChild
*child
, int64_t offset
, QEMUIOVector
*qiov
)
743 ret
= bdrv_prwv_co(child
, offset
, qiov
, true, 0);
751 int bdrv_pwrite(BdrvChild
*child
, int64_t offset
, const void *buf
, int bytes
)
755 .iov_base
= (void *) buf
,
763 qemu_iovec_init_external(&qiov
, &iov
, 1);
764 return bdrv_pwritev(child
, offset
, &qiov
);
768 * Writes to the file and ensures that no writes are reordered across this
769 * request (acts as a barrier)
771 * Returns 0 on success, -errno in error cases.
773 int bdrv_pwrite_sync(BdrvChild
*child
, int64_t offset
,
774 const void *buf
, int count
)
778 ret
= bdrv_pwrite(child
, offset
, buf
, count
);
783 ret
= bdrv_flush(child
->bs
);
791 typedef struct CoroutineIOCompletion
{
792 Coroutine
*coroutine
;
794 } CoroutineIOCompletion
;
796 static void bdrv_co_io_em_complete(void *opaque
, int ret
)
798 CoroutineIOCompletion
*co
= opaque
;
801 qemu_coroutine_enter(co
->coroutine
);
804 static int coroutine_fn
bdrv_driver_preadv(BlockDriverState
*bs
,
805 uint64_t offset
, uint64_t bytes
,
806 QEMUIOVector
*qiov
, int flags
)
808 BlockDriver
*drv
= bs
->drv
;
810 unsigned int nb_sectors
;
812 assert(!(flags
& ~BDRV_REQ_MASK
));
814 if (drv
->bdrv_co_preadv
) {
815 return drv
->bdrv_co_preadv(bs
, offset
, bytes
, qiov
, flags
);
818 sector_num
= offset
>> BDRV_SECTOR_BITS
;
819 nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
821 assert((offset
& (BDRV_SECTOR_SIZE
- 1)) == 0);
822 assert((bytes
& (BDRV_SECTOR_SIZE
- 1)) == 0);
823 assert((bytes
>> BDRV_SECTOR_BITS
) <= BDRV_REQUEST_MAX_SECTORS
);
825 if (drv
->bdrv_co_readv
) {
826 return drv
->bdrv_co_readv(bs
, sector_num
, nb_sectors
, qiov
);
829 CoroutineIOCompletion co
= {
830 .coroutine
= qemu_coroutine_self(),
833 acb
= bs
->drv
->bdrv_aio_readv(bs
, sector_num
, qiov
, nb_sectors
,
834 bdrv_co_io_em_complete
, &co
);
838 qemu_coroutine_yield();
844 static int coroutine_fn
bdrv_driver_pwritev(BlockDriverState
*bs
,
845 uint64_t offset
, uint64_t bytes
,
846 QEMUIOVector
*qiov
, int flags
)
848 BlockDriver
*drv
= bs
->drv
;
850 unsigned int nb_sectors
;
853 assert(!(flags
& ~BDRV_REQ_MASK
));
855 if (drv
->bdrv_co_pwritev
) {
856 ret
= drv
->bdrv_co_pwritev(bs
, offset
, bytes
, qiov
,
857 flags
& bs
->supported_write_flags
);
858 flags
&= ~bs
->supported_write_flags
;
862 sector_num
= offset
>> BDRV_SECTOR_BITS
;
863 nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
865 assert((offset
& (BDRV_SECTOR_SIZE
- 1)) == 0);
866 assert((bytes
& (BDRV_SECTOR_SIZE
- 1)) == 0);
867 assert((bytes
>> BDRV_SECTOR_BITS
) <= BDRV_REQUEST_MAX_SECTORS
);
869 if (drv
->bdrv_co_writev_flags
) {
870 ret
= drv
->bdrv_co_writev_flags(bs
, sector_num
, nb_sectors
, qiov
,
871 flags
& bs
->supported_write_flags
);
872 flags
&= ~bs
->supported_write_flags
;
873 } else if (drv
->bdrv_co_writev
) {
874 assert(!bs
->supported_write_flags
);
875 ret
= drv
->bdrv_co_writev(bs
, sector_num
, nb_sectors
, qiov
);
878 CoroutineIOCompletion co
= {
879 .coroutine
= qemu_coroutine_self(),
882 acb
= bs
->drv
->bdrv_aio_writev(bs
, sector_num
, qiov
, nb_sectors
,
883 bdrv_co_io_em_complete
, &co
);
887 qemu_coroutine_yield();
893 if (ret
== 0 && (flags
& BDRV_REQ_FUA
)) {
894 ret
= bdrv_co_flush(bs
);
900 static int coroutine_fn
bdrv_co_do_copy_on_readv(BlockDriverState
*bs
,
901 int64_t offset
, unsigned int bytes
, QEMUIOVector
*qiov
)
903 /* Perform I/O through a temporary buffer so that users who scribble over
904 * their read buffer while the operation is in progress do not end up
905 * modifying the image file. This is critical for zero-copy guest I/O
906 * where anything might happen inside guest memory.
910 BlockDriver
*drv
= bs
->drv
;
912 QEMUIOVector bounce_qiov
;
913 int64_t cluster_offset
;
914 unsigned int cluster_bytes
;
918 /* Cover entire cluster so no additional backing file I/O is required when
919 * allocating cluster in the image file.
921 bdrv_round_to_clusters(bs
, offset
, bytes
, &cluster_offset
, &cluster_bytes
);
923 trace_bdrv_co_do_copy_on_readv(bs
, offset
, bytes
,
924 cluster_offset
, cluster_bytes
);
926 iov
.iov_len
= cluster_bytes
;
927 iov
.iov_base
= bounce_buffer
= qemu_try_blockalign(bs
, iov
.iov_len
);
928 if (bounce_buffer
== NULL
) {
933 qemu_iovec_init_external(&bounce_qiov
, &iov
, 1);
935 ret
= bdrv_driver_preadv(bs
, cluster_offset
, cluster_bytes
,
941 if (drv
->bdrv_co_pwrite_zeroes
&&
942 buffer_is_zero(bounce_buffer
, iov
.iov_len
)) {
943 /* FIXME: Should we (perhaps conditionally) be setting
944 * BDRV_REQ_MAY_UNMAP, if it will allow for a sparser copy
945 * that still correctly reads as zero? */
946 ret
= bdrv_co_do_pwrite_zeroes(bs
, cluster_offset
, cluster_bytes
, 0);
948 /* This does not change the data on the disk, it is not necessary
949 * to flush even in cache=writethrough mode.
951 ret
= bdrv_driver_pwritev(bs
, cluster_offset
, cluster_bytes
,
956 /* It might be okay to ignore write errors for guest requests. If this
957 * is a deliberate copy-on-read then we don't want to ignore the error.
958 * Simply report it in all cases.
963 skip_bytes
= offset
- cluster_offset
;
964 qemu_iovec_from_buf(qiov
, 0, bounce_buffer
+ skip_bytes
, bytes
);
967 qemu_vfree(bounce_buffer
);
972 * Forwards an already correctly aligned request to the BlockDriver. This
973 * handles copy on read, zeroing after EOF, and fragmentation of large
974 * reads; any other features must be implemented by the caller.
976 static int coroutine_fn
bdrv_aligned_preadv(BlockDriverState
*bs
,
977 BdrvTrackedRequest
*req
, int64_t offset
, unsigned int bytes
,
978 int64_t align
, QEMUIOVector
*qiov
, int flags
)
980 int64_t total_bytes
, max_bytes
;
982 uint64_t bytes_remaining
= bytes
;
985 assert(is_power_of_2(align
));
986 assert((offset
& (align
- 1)) == 0);
987 assert((bytes
& (align
- 1)) == 0);
988 assert(!qiov
|| bytes
== qiov
->size
);
989 assert((bs
->open_flags
& BDRV_O_NO_IO
) == 0);
990 max_transfer
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_transfer
, INT_MAX
),
993 /* TODO: We would need a per-BDS .supported_read_flags and
994 * potential fallback support, if we ever implement any read flags
995 * to pass through to drivers. For now, there aren't any
996 * passthrough flags. */
997 assert(!(flags
& ~(BDRV_REQ_NO_SERIALISING
| BDRV_REQ_COPY_ON_READ
)));
999 /* Handle Copy on Read and associated serialisation */
1000 if (flags
& BDRV_REQ_COPY_ON_READ
) {
1001 /* If we touch the same cluster it counts as an overlap. This
1002 * guarantees that allocating writes will be serialized and not race
1003 * with each other for the same cluster. For example, in copy-on-read
1004 * it ensures that the CoR read and write operations are atomic and
1005 * guest writes cannot interleave between them. */
1006 mark_request_serialising(req
, bdrv_get_cluster_size(bs
));
1009 if (!(flags
& BDRV_REQ_NO_SERIALISING
)) {
1010 wait_serialising_requests(req
);
1013 if (flags
& BDRV_REQ_COPY_ON_READ
) {
1014 int64_t start_sector
= offset
>> BDRV_SECTOR_BITS
;
1015 int64_t end_sector
= DIV_ROUND_UP(offset
+ bytes
, BDRV_SECTOR_SIZE
);
1016 unsigned int nb_sectors
= end_sector
- start_sector
;
1019 ret
= bdrv_is_allocated(bs
, start_sector
, nb_sectors
, &pnum
);
1024 if (!ret
|| pnum
!= nb_sectors
) {
1025 ret
= bdrv_co_do_copy_on_readv(bs
, offset
, bytes
, qiov
);
1030 /* Forward the request to the BlockDriver, possibly fragmenting it */
1031 total_bytes
= bdrv_getlength(bs
);
1032 if (total_bytes
< 0) {
1037 max_bytes
= ROUND_UP(MAX(0, total_bytes
- offset
), align
);
1038 if (bytes
<= max_bytes
&& bytes
<= max_transfer
) {
1039 ret
= bdrv_driver_preadv(bs
, offset
, bytes
, qiov
, 0);
1043 while (bytes_remaining
) {
1047 QEMUIOVector local_qiov
;
1049 num
= MIN(bytes_remaining
, MIN(max_bytes
, max_transfer
));
1051 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1052 qemu_iovec_concat(&local_qiov
, qiov
, bytes
- bytes_remaining
, num
);
1054 ret
= bdrv_driver_preadv(bs
, offset
+ bytes
- bytes_remaining
,
1055 num
, &local_qiov
, 0);
1057 qemu_iovec_destroy(&local_qiov
);
1059 num
= bytes_remaining
;
1060 ret
= qemu_iovec_memset(qiov
, bytes
- bytes_remaining
, 0,
1066 bytes_remaining
-= num
;
1070 return ret
< 0 ? ret
: 0;
1074 * Handle a read request in coroutine context
1076 int coroutine_fn
bdrv_co_preadv(BdrvChild
*child
,
1077 int64_t offset
, unsigned int bytes
, QEMUIOVector
*qiov
,
1078 BdrvRequestFlags flags
)
1080 BlockDriverState
*bs
= child
->bs
;
1081 BlockDriver
*drv
= bs
->drv
;
1082 BdrvTrackedRequest req
;
1084 uint64_t align
= bs
->bl
.request_alignment
;
1085 uint8_t *head_buf
= NULL
;
1086 uint8_t *tail_buf
= NULL
;
1087 QEMUIOVector local_qiov
;
1088 bool use_local_qiov
= false;
1095 ret
= bdrv_check_byte_request(bs
, offset
, bytes
);
1100 /* Don't do copy-on-read if we read data before write operation */
1101 if (bs
->copy_on_read
&& !(flags
& BDRV_REQ_NO_SERIALISING
)) {
1102 flags
|= BDRV_REQ_COPY_ON_READ
;
1105 /* Align read if necessary by padding qiov */
1106 if (offset
& (align
- 1)) {
1107 head_buf
= qemu_blockalign(bs
, align
);
1108 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 2);
1109 qemu_iovec_add(&local_qiov
, head_buf
, offset
& (align
- 1));
1110 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1111 use_local_qiov
= true;
1113 bytes
+= offset
& (align
- 1);
1114 offset
= offset
& ~(align
- 1);
1117 if ((offset
+ bytes
) & (align
- 1)) {
1118 if (!use_local_qiov
) {
1119 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 1);
1120 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1121 use_local_qiov
= true;
1123 tail_buf
= qemu_blockalign(bs
, align
);
1124 qemu_iovec_add(&local_qiov
, tail_buf
,
1125 align
- ((offset
+ bytes
) & (align
- 1)));
1127 bytes
= ROUND_UP(bytes
, align
);
1130 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_READ
);
1131 ret
= bdrv_aligned_preadv(bs
, &req
, offset
, bytes
, align
,
1132 use_local_qiov
? &local_qiov
: qiov
,
1134 tracked_request_end(&req
);
1136 if (use_local_qiov
) {
1137 qemu_iovec_destroy(&local_qiov
);
1138 qemu_vfree(head_buf
);
1139 qemu_vfree(tail_buf
);
1145 static int coroutine_fn
bdrv_co_do_readv(BdrvChild
*child
,
1146 int64_t sector_num
, int nb_sectors
, QEMUIOVector
*qiov
,
1147 BdrvRequestFlags flags
)
1149 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
1153 return bdrv_co_preadv(child
, sector_num
<< BDRV_SECTOR_BITS
,
1154 nb_sectors
<< BDRV_SECTOR_BITS
, qiov
, flags
);
1157 int coroutine_fn
bdrv_co_readv(BdrvChild
*child
, int64_t sector_num
,
1158 int nb_sectors
, QEMUIOVector
*qiov
)
1160 trace_bdrv_co_readv(child
->bs
, sector_num
, nb_sectors
);
1162 return bdrv_co_do_readv(child
, sector_num
, nb_sectors
, qiov
, 0);
1165 /* Maximum buffer for write zeroes fallback, in bytes */
1166 #define MAX_WRITE_ZEROES_BOUNCE_BUFFER (32768 << BDRV_SECTOR_BITS)
1168 static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState
*bs
,
1169 int64_t offset
, int count
, BdrvRequestFlags flags
)
1171 BlockDriver
*drv
= bs
->drv
;
1173 struct iovec iov
= {0};
1175 bool need_flush
= false;
1179 int max_write_zeroes
= MIN_NON_ZERO(bs
->bl
.max_pwrite_zeroes
, INT_MAX
);
1180 int alignment
= MAX(bs
->bl
.pwrite_zeroes_alignment
,
1181 bs
->bl
.request_alignment
);
1183 assert(alignment
% bs
->bl
.request_alignment
== 0);
1184 head
= offset
% alignment
;
1185 tail
= (offset
+ count
) % alignment
;
1186 max_write_zeroes
= QEMU_ALIGN_DOWN(max_write_zeroes
, alignment
);
1187 assert(max_write_zeroes
>= bs
->bl
.request_alignment
);
1189 while (count
> 0 && !ret
) {
1192 /* Align request. Block drivers can expect the "bulk" of the request
1193 * to be aligned, and that unaligned requests do not cross cluster
1197 /* Make a small request up to the first aligned sector. */
1198 num
= MIN(count
, alignment
- head
);
1200 } else if (tail
&& num
> alignment
) {
1201 /* Shorten the request to the last aligned sector. */
1205 /* limit request size */
1206 if (num
> max_write_zeroes
) {
1207 num
= max_write_zeroes
;
1211 /* First try the efficient write zeroes operation */
1212 if (drv
->bdrv_co_pwrite_zeroes
) {
1213 ret
= drv
->bdrv_co_pwrite_zeroes(bs
, offset
, num
,
1214 flags
& bs
->supported_zero_flags
);
1215 if (ret
!= -ENOTSUP
&& (flags
& BDRV_REQ_FUA
) &&
1216 !(bs
->supported_zero_flags
& BDRV_REQ_FUA
)) {
1220 assert(!bs
->supported_zero_flags
);
1223 if (ret
== -ENOTSUP
) {
1224 /* Fall back to bounce buffer if write zeroes is unsupported */
1225 int max_transfer
= MIN_NON_ZERO(bs
->bl
.max_transfer
,
1226 MAX_WRITE_ZEROES_BOUNCE_BUFFER
);
1227 BdrvRequestFlags write_flags
= flags
& ~BDRV_REQ_ZERO_WRITE
;
1229 if ((flags
& BDRV_REQ_FUA
) &&
1230 !(bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
1231 /* No need for bdrv_driver_pwrite() to do a fallback
1232 * flush on each chunk; use just one at the end */
1233 write_flags
&= ~BDRV_REQ_FUA
;
1236 num
= MIN(num
, max_transfer
);
1238 if (iov
.iov_base
== NULL
) {
1239 iov
.iov_base
= qemu_try_blockalign(bs
, num
);
1240 if (iov
.iov_base
== NULL
) {
1244 memset(iov
.iov_base
, 0, num
);
1246 qemu_iovec_init_external(&qiov
, &iov
, 1);
1248 ret
= bdrv_driver_pwritev(bs
, offset
, num
, &qiov
, write_flags
);
1250 /* Keep bounce buffer around if it is big enough for all
1251 * all future requests.
1253 if (num
< max_transfer
) {
1254 qemu_vfree(iov
.iov_base
);
1255 iov
.iov_base
= NULL
;
1264 if (ret
== 0 && need_flush
) {
1265 ret
= bdrv_co_flush(bs
);
1267 qemu_vfree(iov
.iov_base
);
1272 * Forwards an already correctly aligned write request to the BlockDriver,
1273 * after possibly fragmenting it.
1275 static int coroutine_fn
bdrv_aligned_pwritev(BlockDriverState
*bs
,
1276 BdrvTrackedRequest
*req
, int64_t offset
, unsigned int bytes
,
1277 int64_t align
, QEMUIOVector
*qiov
, int flags
)
1279 BlockDriver
*drv
= bs
->drv
;
1283 int64_t start_sector
= offset
>> BDRV_SECTOR_BITS
;
1284 int64_t end_sector
= DIV_ROUND_UP(offset
+ bytes
, BDRV_SECTOR_SIZE
);
1285 uint64_t bytes_remaining
= bytes
;
1288 assert(is_power_of_2(align
));
1289 assert((offset
& (align
- 1)) == 0);
1290 assert((bytes
& (align
- 1)) == 0);
1291 assert(!qiov
|| bytes
== qiov
->size
);
1292 assert((bs
->open_flags
& BDRV_O_NO_IO
) == 0);
1293 assert(!(flags
& ~BDRV_REQ_MASK
));
1294 max_transfer
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_transfer
, INT_MAX
),
1297 waited
= wait_serialising_requests(req
);
1298 assert(!waited
|| !req
->serialising
);
1299 assert(req
->overlap_offset
<= offset
);
1300 assert(offset
+ bytes
<= req
->overlap_offset
+ req
->overlap_bytes
);
1302 ret
= notifier_with_return_list_notify(&bs
->before_write_notifiers
, req
);
1304 if (!ret
&& bs
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
&&
1305 !(flags
& BDRV_REQ_ZERO_WRITE
) && drv
->bdrv_co_pwrite_zeroes
&&
1306 qemu_iovec_is_zero(qiov
)) {
1307 flags
|= BDRV_REQ_ZERO_WRITE
;
1308 if (bs
->detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
) {
1309 flags
|= BDRV_REQ_MAY_UNMAP
;
1314 /* Do nothing, write notifier decided to fail this request */
1315 } else if (flags
& BDRV_REQ_ZERO_WRITE
) {
1316 bdrv_debug_event(bs
, BLKDBG_PWRITEV_ZERO
);
1317 ret
= bdrv_co_do_pwrite_zeroes(bs
, offset
, bytes
, flags
);
1318 } else if (bytes
<= max_transfer
) {
1319 bdrv_debug_event(bs
, BLKDBG_PWRITEV
);
1320 ret
= bdrv_driver_pwritev(bs
, offset
, bytes
, qiov
, flags
);
1322 bdrv_debug_event(bs
, BLKDBG_PWRITEV
);
1323 while (bytes_remaining
) {
1324 int num
= MIN(bytes_remaining
, max_transfer
);
1325 QEMUIOVector local_qiov
;
1326 int local_flags
= flags
;
1329 if (num
< bytes_remaining
&& (flags
& BDRV_REQ_FUA
) &&
1330 !(bs
->supported_write_flags
& BDRV_REQ_FUA
)) {
1331 /* If FUA is going to be emulated by flush, we only
1332 * need to flush on the last iteration */
1333 local_flags
&= ~BDRV_REQ_FUA
;
1335 qemu_iovec_init(&local_qiov
, qiov
->niov
);
1336 qemu_iovec_concat(&local_qiov
, qiov
, bytes
- bytes_remaining
, num
);
1338 ret
= bdrv_driver_pwritev(bs
, offset
+ bytes
- bytes_remaining
,
1339 num
, &local_qiov
, local_flags
);
1340 qemu_iovec_destroy(&local_qiov
);
1344 bytes_remaining
-= num
;
1347 bdrv_debug_event(bs
, BLKDBG_PWRITEV_DONE
);
1350 bdrv_set_dirty(bs
, start_sector
, end_sector
- start_sector
);
1352 if (bs
->wr_highest_offset
< offset
+ bytes
) {
1353 bs
->wr_highest_offset
= offset
+ bytes
;
1357 bs
->total_sectors
= MAX(bs
->total_sectors
, end_sector
);
1364 static int coroutine_fn
bdrv_co_do_zero_pwritev(BlockDriverState
*bs
,
1367 BdrvRequestFlags flags
,
1368 BdrvTrackedRequest
*req
)
1370 uint8_t *buf
= NULL
;
1371 QEMUIOVector local_qiov
;
1373 uint64_t align
= bs
->bl
.request_alignment
;
1374 unsigned int head_padding_bytes
, tail_padding_bytes
;
1377 head_padding_bytes
= offset
& (align
- 1);
1378 tail_padding_bytes
= align
- ((offset
+ bytes
) & (align
- 1));
1381 assert(flags
& BDRV_REQ_ZERO_WRITE
);
1382 if (head_padding_bytes
|| tail_padding_bytes
) {
1383 buf
= qemu_blockalign(bs
, align
);
1384 iov
= (struct iovec
) {
1388 qemu_iovec_init_external(&local_qiov
, &iov
, 1);
1390 if (head_padding_bytes
) {
1391 uint64_t zero_bytes
= MIN(bytes
, align
- head_padding_bytes
);
1393 /* RMW the unaligned part before head. */
1394 mark_request_serialising(req
, align
);
1395 wait_serialising_requests(req
);
1396 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_HEAD
);
1397 ret
= bdrv_aligned_preadv(bs
, req
, offset
& ~(align
- 1), align
,
1398 align
, &local_qiov
, 0);
1402 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_HEAD
);
1404 memset(buf
+ head_padding_bytes
, 0, zero_bytes
);
1405 ret
= bdrv_aligned_pwritev(bs
, req
, offset
& ~(align
- 1), align
,
1407 flags
& ~BDRV_REQ_ZERO_WRITE
);
1411 offset
+= zero_bytes
;
1412 bytes
-= zero_bytes
;
1415 assert(!bytes
|| (offset
& (align
- 1)) == 0);
1416 if (bytes
>= align
) {
1417 /* Write the aligned part in the middle. */
1418 uint64_t aligned_bytes
= bytes
& ~(align
- 1);
1419 ret
= bdrv_aligned_pwritev(bs
, req
, offset
, aligned_bytes
, align
,
1424 bytes
-= aligned_bytes
;
1425 offset
+= aligned_bytes
;
1428 assert(!bytes
|| (offset
& (align
- 1)) == 0);
1430 assert(align
== tail_padding_bytes
+ bytes
);
1431 /* RMW the unaligned part after tail. */
1432 mark_request_serialising(req
, align
);
1433 wait_serialising_requests(req
);
1434 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_TAIL
);
1435 ret
= bdrv_aligned_preadv(bs
, req
, offset
, align
,
1436 align
, &local_qiov
, 0);
1440 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_TAIL
);
1442 memset(buf
, 0, bytes
);
1443 ret
= bdrv_aligned_pwritev(bs
, req
, offset
, align
, align
,
1444 &local_qiov
, flags
& ~BDRV_REQ_ZERO_WRITE
);
1453 * Handle a write request in coroutine context
1455 int coroutine_fn
bdrv_co_pwritev(BdrvChild
*child
,
1456 int64_t offset
, unsigned int bytes
, QEMUIOVector
*qiov
,
1457 BdrvRequestFlags flags
)
1459 BlockDriverState
*bs
= child
->bs
;
1460 BdrvTrackedRequest req
;
1461 uint64_t align
= bs
->bl
.request_alignment
;
1462 uint8_t *head_buf
= NULL
;
1463 uint8_t *tail_buf
= NULL
;
1464 QEMUIOVector local_qiov
;
1465 bool use_local_qiov
= false;
1471 if (bs
->read_only
) {
1474 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
1476 ret
= bdrv_check_byte_request(bs
, offset
, bytes
);
1482 * Align write if necessary by performing a read-modify-write cycle.
1483 * Pad qiov with the read parts and be sure to have a tracked request not
1484 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
1486 tracked_request_begin(&req
, bs
, offset
, bytes
, BDRV_TRACKED_WRITE
);
1489 ret
= bdrv_co_do_zero_pwritev(bs
, offset
, bytes
, flags
, &req
);
1493 if (offset
& (align
- 1)) {
1494 QEMUIOVector head_qiov
;
1495 struct iovec head_iov
;
1497 mark_request_serialising(&req
, align
);
1498 wait_serialising_requests(&req
);
1500 head_buf
= qemu_blockalign(bs
, align
);
1501 head_iov
= (struct iovec
) {
1502 .iov_base
= head_buf
,
1505 qemu_iovec_init_external(&head_qiov
, &head_iov
, 1);
1507 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_HEAD
);
1508 ret
= bdrv_aligned_preadv(bs
, &req
, offset
& ~(align
- 1), align
,
1509 align
, &head_qiov
, 0);
1513 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_HEAD
);
1515 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 2);
1516 qemu_iovec_add(&local_qiov
, head_buf
, offset
& (align
- 1));
1517 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1518 use_local_qiov
= true;
1520 bytes
+= offset
& (align
- 1);
1521 offset
= offset
& ~(align
- 1);
1523 /* We have read the tail already if the request is smaller
1524 * than one aligned block.
1526 if (bytes
< align
) {
1527 qemu_iovec_add(&local_qiov
, head_buf
+ bytes
, align
- bytes
);
1532 if ((offset
+ bytes
) & (align
- 1)) {
1533 QEMUIOVector tail_qiov
;
1534 struct iovec tail_iov
;
1538 mark_request_serialising(&req
, align
);
1539 waited
= wait_serialising_requests(&req
);
1540 assert(!waited
|| !use_local_qiov
);
1542 tail_buf
= qemu_blockalign(bs
, align
);
1543 tail_iov
= (struct iovec
) {
1544 .iov_base
= tail_buf
,
1547 qemu_iovec_init_external(&tail_qiov
, &tail_iov
, 1);
1549 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_TAIL
);
1550 ret
= bdrv_aligned_preadv(bs
, &req
, (offset
+ bytes
) & ~(align
- 1), align
,
1551 align
, &tail_qiov
, 0);
1555 bdrv_debug_event(bs
, BLKDBG_PWRITEV_RMW_AFTER_TAIL
);
1557 if (!use_local_qiov
) {
1558 qemu_iovec_init(&local_qiov
, qiov
->niov
+ 1);
1559 qemu_iovec_concat(&local_qiov
, qiov
, 0, qiov
->size
);
1560 use_local_qiov
= true;
1563 tail_bytes
= (offset
+ bytes
) & (align
- 1);
1564 qemu_iovec_add(&local_qiov
, tail_buf
+ tail_bytes
, align
- tail_bytes
);
1566 bytes
= ROUND_UP(bytes
, align
);
1569 ret
= bdrv_aligned_pwritev(bs
, &req
, offset
, bytes
, align
,
1570 use_local_qiov
? &local_qiov
: qiov
,
1575 if (use_local_qiov
) {
1576 qemu_iovec_destroy(&local_qiov
);
1578 qemu_vfree(head_buf
);
1579 qemu_vfree(tail_buf
);
1581 tracked_request_end(&req
);
1585 static int coroutine_fn
bdrv_co_do_writev(BdrvChild
*child
,
1586 int64_t sector_num
, int nb_sectors
, QEMUIOVector
*qiov
,
1587 BdrvRequestFlags flags
)
1589 if (nb_sectors
< 0 || nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
1593 return bdrv_co_pwritev(child
, sector_num
<< BDRV_SECTOR_BITS
,
1594 nb_sectors
<< BDRV_SECTOR_BITS
, qiov
, flags
);
1597 int coroutine_fn
bdrv_co_writev(BdrvChild
*child
, int64_t sector_num
,
1598 int nb_sectors
, QEMUIOVector
*qiov
)
1600 trace_bdrv_co_writev(child
->bs
, sector_num
, nb_sectors
);
1602 return bdrv_co_do_writev(child
, sector_num
, nb_sectors
, qiov
, 0);
1605 int coroutine_fn
bdrv_co_pwrite_zeroes(BdrvChild
*child
, int64_t offset
,
1606 int count
, BdrvRequestFlags flags
)
1608 trace_bdrv_co_pwrite_zeroes(child
->bs
, offset
, count
, flags
);
1610 if (!(child
->bs
->open_flags
& BDRV_O_UNMAP
)) {
1611 flags
&= ~BDRV_REQ_MAY_UNMAP
;
1614 return bdrv_co_pwritev(child
, offset
, count
, NULL
,
1615 BDRV_REQ_ZERO_WRITE
| flags
);
1618 typedef struct BdrvCoGetBlockStatusData
{
1619 BlockDriverState
*bs
;
1620 BlockDriverState
*base
;
1621 BlockDriverState
**file
;
1627 } BdrvCoGetBlockStatusData
;
1630 * Returns the allocation status of the specified sectors.
1631 * Drivers not implementing the functionality are assumed to not support
1632 * backing files, hence all their sectors are reported as allocated.
1634 * If 'sector_num' is beyond the end of the disk image the return value is 0
1635 * and 'pnum' is set to 0.
1637 * 'pnum' is set to the number of sectors (including and immediately following
1638 * the specified sector) that are known to be in the same
1639 * allocated/unallocated state.
1641 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1642 * beyond the end of the disk image it will be clamped.
1644 * If returned value is positive and BDRV_BLOCK_OFFSET_VALID bit is set, 'file'
1645 * points to the BDS which the sector range is allocated in.
1647 static int64_t coroutine_fn
bdrv_co_get_block_status(BlockDriverState
*bs
,
1649 int nb_sectors
, int *pnum
,
1650 BlockDriverState
**file
)
1652 int64_t total_sectors
;
1656 total_sectors
= bdrv_nb_sectors(bs
);
1657 if (total_sectors
< 0) {
1658 return total_sectors
;
1661 if (sector_num
>= total_sectors
) {
1666 n
= total_sectors
- sector_num
;
1667 if (n
< nb_sectors
) {
1671 if (!bs
->drv
->bdrv_co_get_block_status
) {
1673 ret
= BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
;
1674 if (bs
->drv
->protocol_name
) {
1675 ret
|= BDRV_BLOCK_OFFSET_VALID
| (sector_num
* BDRV_SECTOR_SIZE
);
1681 ret
= bs
->drv
->bdrv_co_get_block_status(bs
, sector_num
, nb_sectors
, pnum
,
1688 if (ret
& BDRV_BLOCK_RAW
) {
1689 assert(ret
& BDRV_BLOCK_OFFSET_VALID
);
1690 return bdrv_get_block_status(bs
->file
->bs
, ret
>> BDRV_SECTOR_BITS
,
1694 if (ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ZERO
)) {
1695 ret
|= BDRV_BLOCK_ALLOCATED
;
1697 if (bdrv_unallocated_blocks_are_zero(bs
)) {
1698 ret
|= BDRV_BLOCK_ZERO
;
1699 } else if (bs
->backing
) {
1700 BlockDriverState
*bs2
= bs
->backing
->bs
;
1701 int64_t nb_sectors2
= bdrv_nb_sectors(bs2
);
1702 if (nb_sectors2
>= 0 && sector_num
>= nb_sectors2
) {
1703 ret
|= BDRV_BLOCK_ZERO
;
1708 if (*file
&& *file
!= bs
&&
1709 (ret
& BDRV_BLOCK_DATA
) && !(ret
& BDRV_BLOCK_ZERO
) &&
1710 (ret
& BDRV_BLOCK_OFFSET_VALID
)) {
1711 BlockDriverState
*file2
;
1714 ret2
= bdrv_co_get_block_status(*file
, ret
>> BDRV_SECTOR_BITS
,
1715 *pnum
, &file_pnum
, &file2
);
1717 /* Ignore errors. This is just providing extra information, it
1718 * is useful but not necessary.
1721 /* !file_pnum indicates an offset at or beyond the EOF; it is
1722 * perfectly valid for the format block driver to point to such
1723 * offsets, so catch it and mark everything as zero */
1724 ret
|= BDRV_BLOCK_ZERO
;
1726 /* Limit request to the range reported by the protocol driver */
1728 ret
|= (ret2
& BDRV_BLOCK_ZERO
);
1736 static int64_t coroutine_fn
bdrv_co_get_block_status_above(BlockDriverState
*bs
,
1737 BlockDriverState
*base
,
1741 BlockDriverState
**file
)
1743 BlockDriverState
*p
;
1747 for (p
= bs
; p
!= base
; p
= backing_bs(p
)) {
1748 ret
= bdrv_co_get_block_status(p
, sector_num
, nb_sectors
, pnum
, file
);
1749 if (ret
< 0 || ret
& BDRV_BLOCK_ALLOCATED
) {
1752 /* [sector_num, pnum] unallocated on this layer, which could be only
1753 * the first part of [sector_num, nb_sectors]. */
1754 nb_sectors
= MIN(nb_sectors
, *pnum
);
1759 /* Coroutine wrapper for bdrv_get_block_status_above() */
1760 static void coroutine_fn
bdrv_get_block_status_above_co_entry(void *opaque
)
1762 BdrvCoGetBlockStatusData
*data
= opaque
;
1764 data
->ret
= bdrv_co_get_block_status_above(data
->bs
, data
->base
,
1773 * Synchronous wrapper around bdrv_co_get_block_status_above().
1775 * See bdrv_co_get_block_status_above() for details.
1777 int64_t bdrv_get_block_status_above(BlockDriverState
*bs
,
1778 BlockDriverState
*base
,
1780 int nb_sectors
, int *pnum
,
1781 BlockDriverState
**file
)
1784 BdrvCoGetBlockStatusData data
= {
1788 .sector_num
= sector_num
,
1789 .nb_sectors
= nb_sectors
,
1794 if (qemu_in_coroutine()) {
1795 /* Fast-path if already in coroutine context */
1796 bdrv_get_block_status_above_co_entry(&data
);
1798 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
1800 co
= qemu_coroutine_create(bdrv_get_block_status_above_co_entry
,
1802 qemu_coroutine_enter(co
);
1803 while (!data
.done
) {
1804 aio_poll(aio_context
, true);
1810 int64_t bdrv_get_block_status(BlockDriverState
*bs
,
1812 int nb_sectors
, int *pnum
,
1813 BlockDriverState
**file
)
1815 return bdrv_get_block_status_above(bs
, backing_bs(bs
),
1816 sector_num
, nb_sectors
, pnum
, file
);
1819 int coroutine_fn
bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
1820 int nb_sectors
, int *pnum
)
1822 BlockDriverState
*file
;
1823 int64_t ret
= bdrv_get_block_status(bs
, sector_num
, nb_sectors
, pnum
,
1828 return !!(ret
& BDRV_BLOCK_ALLOCATED
);
1832 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
1834 * Return true if the given sector is allocated in any image between
1835 * BASE and TOP (inclusive). BASE can be NULL to check if the given
1836 * sector is allocated in any image of the chain. Return false otherwise.
1838 * 'pnum' is set to the number of sectors (including and immediately following
1839 * the specified sector) that are known to be in the same
1840 * allocated/unallocated state.
1843 int bdrv_is_allocated_above(BlockDriverState
*top
,
1844 BlockDriverState
*base
,
1846 int nb_sectors
, int *pnum
)
1848 BlockDriverState
*intermediate
;
1849 int ret
, n
= nb_sectors
;
1852 while (intermediate
&& intermediate
!= base
) {
1854 ret
= bdrv_is_allocated(intermediate
, sector_num
, nb_sectors
,
1864 * [sector_num, nb_sectors] is unallocated on top but intermediate
1867 * [sector_num+x, nr_sectors] allocated.
1869 if (n
> pnum_inter
&&
1870 (intermediate
== top
||
1871 sector_num
+ pnum_inter
< intermediate
->total_sectors
)) {
1875 intermediate
= backing_bs(intermediate
);
1882 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1883 const uint8_t *buf
, int nb_sectors
)
1885 BlockDriver
*drv
= bs
->drv
;
1891 if (!drv
->bdrv_write_compressed
) {
1894 ret
= bdrv_check_request(bs
, sector_num
, nb_sectors
);
1899 assert(QLIST_EMPTY(&bs
->dirty_bitmaps
));
1901 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1904 typedef struct BdrvVmstateCo
{
1905 BlockDriverState
*bs
;
1912 static int coroutine_fn
1913 bdrv_co_rw_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
,
1916 BlockDriver
*drv
= bs
->drv
;
1920 } else if (drv
->bdrv_load_vmstate
) {
1921 return is_read
? drv
->bdrv_load_vmstate(bs
, qiov
, pos
)
1922 : drv
->bdrv_save_vmstate(bs
, qiov
, pos
);
1923 } else if (bs
->file
) {
1924 return bdrv_co_rw_vmstate(bs
->file
->bs
, qiov
, pos
, is_read
);
1930 static void coroutine_fn
bdrv_co_rw_vmstate_entry(void *opaque
)
1932 BdrvVmstateCo
*co
= opaque
;
1933 co
->ret
= bdrv_co_rw_vmstate(co
->bs
, co
->qiov
, co
->pos
, co
->is_read
);
1937 bdrv_rw_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
,
1940 if (qemu_in_coroutine()) {
1941 return bdrv_co_rw_vmstate(bs
, qiov
, pos
, is_read
);
1943 BdrvVmstateCo data
= {
1948 .ret
= -EINPROGRESS
,
1950 Coroutine
*co
= qemu_coroutine_create(bdrv_co_rw_vmstate_entry
, &data
);
1952 qemu_coroutine_enter(co
);
1953 while (data
.ret
== -EINPROGRESS
) {
1954 aio_poll(bdrv_get_aio_context(bs
), true);
1960 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1961 int64_t pos
, int size
)
1964 struct iovec iov
= {
1965 .iov_base
= (void *) buf
,
1970 qemu_iovec_init_external(&qiov
, &iov
, 1);
1972 ret
= bdrv_writev_vmstate(bs
, &qiov
, pos
);
1980 int bdrv_writev_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
)
1982 return bdrv_rw_vmstate(bs
, qiov
, pos
, false);
1985 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1986 int64_t pos
, int size
)
1989 struct iovec iov
= {
1995 qemu_iovec_init_external(&qiov
, &iov
, 1);
1996 ret
= bdrv_readv_vmstate(bs
, &qiov
, pos
);
2004 int bdrv_readv_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
, int64_t pos
)
2006 return bdrv_rw_vmstate(bs
, qiov
, pos
, true);
2009 /**************************************************************/
2012 BlockAIOCB
*bdrv_aio_readv(BdrvChild
*child
, int64_t sector_num
,
2013 QEMUIOVector
*qiov
, int nb_sectors
,
2014 BlockCompletionFunc
*cb
, void *opaque
)
2016 trace_bdrv_aio_readv(child
->bs
, sector_num
, nb_sectors
, opaque
);
2018 assert(nb_sectors
<< BDRV_SECTOR_BITS
== qiov
->size
);
2019 return bdrv_co_aio_prw_vector(child
, sector_num
<< BDRV_SECTOR_BITS
, qiov
,
2020 0, cb
, opaque
, false);
2023 BlockAIOCB
*bdrv_aio_writev(BdrvChild
*child
, int64_t sector_num
,
2024 QEMUIOVector
*qiov
, int nb_sectors
,
2025 BlockCompletionFunc
*cb
, void *opaque
)
2027 trace_bdrv_aio_writev(child
->bs
, sector_num
, nb_sectors
, opaque
);
2029 assert(nb_sectors
<< BDRV_SECTOR_BITS
== qiov
->size
);
2030 return bdrv_co_aio_prw_vector(child
, sector_num
<< BDRV_SECTOR_BITS
, qiov
,
2031 0, cb
, opaque
, true);
2034 void bdrv_aio_cancel(BlockAIOCB
*acb
)
2037 bdrv_aio_cancel_async(acb
);
2038 while (acb
->refcnt
> 1) {
2039 if (acb
->aiocb_info
->get_aio_context
) {
2040 aio_poll(acb
->aiocb_info
->get_aio_context(acb
), true);
2041 } else if (acb
->bs
) {
2042 aio_poll(bdrv_get_aio_context(acb
->bs
), true);
2047 qemu_aio_unref(acb
);
2050 /* Async version of aio cancel. The caller is not blocked if the acb implements
2051 * cancel_async, otherwise we do nothing and let the request normally complete.
2052 * In either case the completion callback must be called. */
2053 void bdrv_aio_cancel_async(BlockAIOCB
*acb
)
2055 if (acb
->aiocb_info
->cancel_async
) {
2056 acb
->aiocb_info
->cancel_async(acb
);
2060 /**************************************************************/
2061 /* async block device emulation */
2063 typedef struct BlockRequest
{
2065 /* Used during read, write, trim */
2072 /* Used during ioctl */
2078 BlockCompletionFunc
*cb
;
2084 typedef struct BlockAIOCBCoroutine
{
2092 } BlockAIOCBCoroutine
;
2094 static const AIOCBInfo bdrv_em_co_aiocb_info
= {
2095 .aiocb_size
= sizeof(BlockAIOCBCoroutine
),
2098 static void bdrv_co_complete(BlockAIOCBCoroutine
*acb
)
2100 if (!acb
->need_bh
) {
2101 acb
->common
.cb(acb
->common
.opaque
, acb
->req
.error
);
2102 qemu_aio_unref(acb
);
2106 static void bdrv_co_em_bh(void *opaque
)
2108 BlockAIOCBCoroutine
*acb
= opaque
;
2110 assert(!acb
->need_bh
);
2111 qemu_bh_delete(acb
->bh
);
2112 bdrv_co_complete(acb
);
2115 static void bdrv_co_maybe_schedule_bh(BlockAIOCBCoroutine
*acb
)
2117 acb
->need_bh
= false;
2118 if (acb
->req
.error
!= -EINPROGRESS
) {
2119 BlockDriverState
*bs
= acb
->common
.bs
;
2121 acb
->bh
= aio_bh_new(bdrv_get_aio_context(bs
), bdrv_co_em_bh
, acb
);
2122 qemu_bh_schedule(acb
->bh
);
2126 /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
2127 static void coroutine_fn
bdrv_co_do_rw(void *opaque
)
2129 BlockAIOCBCoroutine
*acb
= opaque
;
2131 if (!acb
->is_write
) {
2132 acb
->req
.error
= bdrv_co_preadv(acb
->child
, acb
->req
.offset
,
2133 acb
->req
.qiov
->size
, acb
->req
.qiov
, acb
->req
.flags
);
2135 acb
->req
.error
= bdrv_co_pwritev(acb
->child
, acb
->req
.offset
,
2136 acb
->req
.qiov
->size
, acb
->req
.qiov
, acb
->req
.flags
);
2139 bdrv_co_complete(acb
);
2142 static BlockAIOCB
*bdrv_co_aio_prw_vector(BdrvChild
*child
,
2145 BdrvRequestFlags flags
,
2146 BlockCompletionFunc
*cb
,
2151 BlockAIOCBCoroutine
*acb
;
2153 acb
= qemu_aio_get(&bdrv_em_co_aiocb_info
, child
->bs
, cb
, opaque
);
2155 acb
->need_bh
= true;
2156 acb
->req
.error
= -EINPROGRESS
;
2157 acb
->req
.offset
= offset
;
2158 acb
->req
.qiov
= qiov
;
2159 acb
->req
.flags
= flags
;
2160 acb
->is_write
= is_write
;
2162 co
= qemu_coroutine_create(bdrv_co_do_rw
, acb
);
2163 qemu_coroutine_enter(co
);
2165 bdrv_co_maybe_schedule_bh(acb
);
2166 return &acb
->common
;
2169 static void coroutine_fn
bdrv_aio_flush_co_entry(void *opaque
)
2171 BlockAIOCBCoroutine
*acb
= opaque
;
2172 BlockDriverState
*bs
= acb
->common
.bs
;
2174 acb
->req
.error
= bdrv_co_flush(bs
);
2175 bdrv_co_complete(acb
);
2178 BlockAIOCB
*bdrv_aio_flush(BlockDriverState
*bs
,
2179 BlockCompletionFunc
*cb
, void *opaque
)
2181 trace_bdrv_aio_flush(bs
, opaque
);
2184 BlockAIOCBCoroutine
*acb
;
2186 acb
= qemu_aio_get(&bdrv_em_co_aiocb_info
, bs
, cb
, opaque
);
2187 acb
->need_bh
= true;
2188 acb
->req
.error
= -EINPROGRESS
;
2190 co
= qemu_coroutine_create(bdrv_aio_flush_co_entry
, acb
);
2191 qemu_coroutine_enter(co
);
2193 bdrv_co_maybe_schedule_bh(acb
);
2194 return &acb
->common
;
2197 static void coroutine_fn
bdrv_aio_pdiscard_co_entry(void *opaque
)
2199 BlockAIOCBCoroutine
*acb
= opaque
;
2200 BlockDriverState
*bs
= acb
->common
.bs
;
2202 acb
->req
.error
= bdrv_co_pdiscard(bs
, acb
->req
.offset
, acb
->req
.bytes
);
2203 bdrv_co_complete(acb
);
2206 BlockAIOCB
*bdrv_aio_pdiscard(BlockDriverState
*bs
, int64_t offset
, int count
,
2207 BlockCompletionFunc
*cb
, void *opaque
)
2210 BlockAIOCBCoroutine
*acb
;
2212 trace_bdrv_aio_pdiscard(bs
, offset
, count
, opaque
);
2214 acb
= qemu_aio_get(&bdrv_em_co_aiocb_info
, bs
, cb
, opaque
);
2215 acb
->need_bh
= true;
2216 acb
->req
.error
= -EINPROGRESS
;
2217 acb
->req
.offset
= offset
;
2218 acb
->req
.bytes
= count
;
2219 co
= qemu_coroutine_create(bdrv_aio_pdiscard_co_entry
, acb
);
2220 qemu_coroutine_enter(co
);
2222 bdrv_co_maybe_schedule_bh(acb
);
2223 return &acb
->common
;
2226 void *qemu_aio_get(const AIOCBInfo
*aiocb_info
, BlockDriverState
*bs
,
2227 BlockCompletionFunc
*cb
, void *opaque
)
2231 acb
= g_malloc(aiocb_info
->aiocb_size
);
2232 acb
->aiocb_info
= aiocb_info
;
2235 acb
->opaque
= opaque
;
2240 void qemu_aio_ref(void *p
)
2242 BlockAIOCB
*acb
= p
;
2246 void qemu_aio_unref(void *p
)
2248 BlockAIOCB
*acb
= p
;
2249 assert(acb
->refcnt
> 0);
2250 if (--acb
->refcnt
== 0) {
2255 /**************************************************************/
2256 /* Coroutine block device emulation */
2258 typedef struct FlushCo
{
2259 BlockDriverState
*bs
;
2264 static void coroutine_fn
bdrv_flush_co_entry(void *opaque
)
2266 FlushCo
*rwco
= opaque
;
2268 rwco
->ret
= bdrv_co_flush(rwco
->bs
);
2271 int coroutine_fn
bdrv_co_flush(BlockDriverState
*bs
)
2274 BdrvTrackedRequest req
;
2276 if (!bs
|| !bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
) ||
2281 tracked_request_begin(&req
, bs
, 0, 0, BDRV_TRACKED_FLUSH
);
2283 int current_gen
= bs
->write_gen
;
2285 /* Wait until any previous flushes are completed */
2286 while (bs
->flush_started_gen
!= bs
->flushed_gen
) {
2287 qemu_co_queue_wait(&bs
->flush_queue
);
2290 bs
->flush_started_gen
= current_gen
;
2292 /* Write back all layers by calling one driver function */
2293 if (bs
->drv
->bdrv_co_flush
) {
2294 ret
= bs
->drv
->bdrv_co_flush(bs
);
2298 /* Write back cached data to the OS even with cache=unsafe */
2299 BLKDBG_EVENT(bs
->file
, BLKDBG_FLUSH_TO_OS
);
2300 if (bs
->drv
->bdrv_co_flush_to_os
) {
2301 ret
= bs
->drv
->bdrv_co_flush_to_os(bs
);
2307 /* But don't actually force it to the disk with cache=unsafe */
2308 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
2312 /* Check if we really need to flush anything */
2313 if (bs
->flushed_gen
== current_gen
) {
2317 BLKDBG_EVENT(bs
->file
, BLKDBG_FLUSH_TO_DISK
);
2318 if (bs
->drv
->bdrv_co_flush_to_disk
) {
2319 ret
= bs
->drv
->bdrv_co_flush_to_disk(bs
);
2320 } else if (bs
->drv
->bdrv_aio_flush
) {
2322 CoroutineIOCompletion co
= {
2323 .coroutine
= qemu_coroutine_self(),
2326 acb
= bs
->drv
->bdrv_aio_flush(bs
, bdrv_co_io_em_complete
, &co
);
2330 qemu_coroutine_yield();
2335 * Some block drivers always operate in either writethrough or unsafe
2336 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
2337 * know how the server works (because the behaviour is hardcoded or
2338 * depends on server-side configuration), so we can't ensure that
2339 * everything is safe on disk. Returning an error doesn't work because
2340 * that would break guests even if the server operates in writethrough
2343 * Let's hope the user knows what he's doing.
2352 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
2353 * in the case of cache=unsafe, so there are no useless flushes.
2356 ret
= bs
->file
? bdrv_co_flush(bs
->file
->bs
) : 0;
2358 /* Notify any pending flushes that we have completed */
2359 bs
->flushed_gen
= current_gen
;
2360 qemu_co_queue_restart_all(&bs
->flush_queue
);
2362 tracked_request_end(&req
);
2366 int bdrv_flush(BlockDriverState
*bs
)
2369 FlushCo flush_co
= {
2374 if (qemu_in_coroutine()) {
2375 /* Fast-path if already in coroutine context */
2376 bdrv_flush_co_entry(&flush_co
);
2378 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
2380 co
= qemu_coroutine_create(bdrv_flush_co_entry
, &flush_co
);
2381 qemu_coroutine_enter(co
);
2382 while (flush_co
.ret
== NOT_DONE
) {
2383 aio_poll(aio_context
, true);
2387 return flush_co
.ret
;
2390 typedef struct DiscardCo
{
2391 BlockDriverState
*bs
;
2396 static void coroutine_fn
bdrv_pdiscard_co_entry(void *opaque
)
2398 DiscardCo
*rwco
= opaque
;
2400 rwco
->ret
= bdrv_co_pdiscard(rwco
->bs
, rwco
->offset
, rwco
->count
);
2403 int coroutine_fn
bdrv_co_pdiscard(BlockDriverState
*bs
, int64_t offset
,
2406 BdrvTrackedRequest req
;
2407 int max_pdiscard
, ret
;
2414 ret
= bdrv_check_byte_request(bs
, offset
, count
);
2417 } else if (bs
->read_only
) {
2420 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
2422 /* Do nothing if disabled. */
2423 if (!(bs
->open_flags
& BDRV_O_UNMAP
)) {
2427 if (!bs
->drv
->bdrv_co_pdiscard
&& !bs
->drv
->bdrv_aio_pdiscard
) {
2431 /* Discard is advisory, so ignore any unaligned head or tail */
2432 align
= MAX(bs
->bl
.pdiscard_alignment
, bs
->bl
.request_alignment
);
2433 assert(align
% bs
->bl
.request_alignment
== 0);
2434 head
= offset
% align
;
2436 head
= MIN(count
, align
- head
);
2440 count
= QEMU_ALIGN_DOWN(count
, align
);
2445 tracked_request_begin(&req
, bs
, offset
, count
, BDRV_TRACKED_DISCARD
);
2447 ret
= notifier_with_return_list_notify(&bs
->before_write_notifiers
, &req
);
2452 max_pdiscard
= QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs
->bl
.max_pdiscard
, INT_MAX
),
2454 assert(max_pdiscard
);
2458 int num
= MIN(count
, max_pdiscard
);
2460 if (bs
->drv
->bdrv_co_pdiscard
) {
2461 ret
= bs
->drv
->bdrv_co_pdiscard(bs
, offset
, num
);
2464 CoroutineIOCompletion co
= {
2465 .coroutine
= qemu_coroutine_self(),
2468 acb
= bs
->drv
->bdrv_aio_pdiscard(bs
, offset
, num
,
2469 bdrv_co_io_em_complete
, &co
);
2474 qemu_coroutine_yield();
2478 if (ret
&& ret
!= -ENOTSUP
) {
2488 bdrv_set_dirty(bs
, req
.offset
>> BDRV_SECTOR_BITS
,
2489 req
.bytes
>> BDRV_SECTOR_BITS
);
2490 tracked_request_end(&req
);
2494 int bdrv_pdiscard(BlockDriverState
*bs
, int64_t offset
, int count
)
2504 if (qemu_in_coroutine()) {
2505 /* Fast-path if already in coroutine context */
2506 bdrv_pdiscard_co_entry(&rwco
);
2508 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
2510 co
= qemu_coroutine_create(bdrv_pdiscard_co_entry
, &rwco
);
2511 qemu_coroutine_enter(co
);
2512 while (rwco
.ret
== NOT_DONE
) {
2513 aio_poll(aio_context
, true);
2520 static int bdrv_co_do_ioctl(BlockDriverState
*bs
, int req
, void *buf
)
2522 BlockDriver
*drv
= bs
->drv
;
2523 BdrvTrackedRequest tracked_req
;
2524 CoroutineIOCompletion co
= {
2525 .coroutine
= qemu_coroutine_self(),
2529 tracked_request_begin(&tracked_req
, bs
, 0, 0, BDRV_TRACKED_IOCTL
);
2530 if (!drv
|| !drv
->bdrv_aio_ioctl
) {
2535 acb
= drv
->bdrv_aio_ioctl(bs
, req
, buf
, bdrv_co_io_em_complete
, &co
);
2540 qemu_coroutine_yield();
2542 tracked_request_end(&tracked_req
);
2547 BlockDriverState
*bs
;
2553 static void coroutine_fn
bdrv_co_ioctl_entry(void *opaque
)
2555 BdrvIoctlCoData
*data
= opaque
;
2556 data
->ret
= bdrv_co_do_ioctl(data
->bs
, data
->req
, data
->buf
);
2559 /* needed for generic scsi interface */
2560 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
2562 BdrvIoctlCoData data
= {
2566 .ret
= -EINPROGRESS
,
2569 if (qemu_in_coroutine()) {
2570 /* Fast-path if already in coroutine context */
2571 bdrv_co_ioctl_entry(&data
);
2573 Coroutine
*co
= qemu_coroutine_create(bdrv_co_ioctl_entry
, &data
);
2575 qemu_coroutine_enter(co
);
2576 while (data
.ret
== -EINPROGRESS
) {
2577 aio_poll(bdrv_get_aio_context(bs
), true);
2583 static void coroutine_fn
bdrv_co_aio_ioctl_entry(void *opaque
)
2585 BlockAIOCBCoroutine
*acb
= opaque
;
2586 acb
->req
.error
= bdrv_co_do_ioctl(acb
->common
.bs
,
2587 acb
->req
.req
, acb
->req
.buf
);
2588 bdrv_co_complete(acb
);
2591 BlockAIOCB
*bdrv_aio_ioctl(BlockDriverState
*bs
,
2592 unsigned long int req
, void *buf
,
2593 BlockCompletionFunc
*cb
, void *opaque
)
2595 BlockAIOCBCoroutine
*acb
= qemu_aio_get(&bdrv_em_co_aiocb_info
,
2599 acb
->need_bh
= true;
2600 acb
->req
.error
= -EINPROGRESS
;
2603 co
= qemu_coroutine_create(bdrv_co_aio_ioctl_entry
, acb
);
2604 qemu_coroutine_enter(co
);
2606 bdrv_co_maybe_schedule_bh(acb
);
2607 return &acb
->common
;
2610 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
2612 return qemu_memalign(bdrv_opt_mem_align(bs
), size
);
2615 void *qemu_blockalign0(BlockDriverState
*bs
, size_t size
)
2617 return memset(qemu_blockalign(bs
, size
), 0, size
);
2620 void *qemu_try_blockalign(BlockDriverState
*bs
, size_t size
)
2622 size_t align
= bdrv_opt_mem_align(bs
);
2624 /* Ensure that NULL is never returned on success */
2630 return qemu_try_memalign(align
, size
);
2633 void *qemu_try_blockalign0(BlockDriverState
*bs
, size_t size
)
2635 void *mem
= qemu_try_blockalign(bs
, size
);
2638 memset(mem
, 0, size
);
2645 * Check if all memory in this vector is sector aligned.
2647 bool bdrv_qiov_is_aligned(BlockDriverState
*bs
, QEMUIOVector
*qiov
)
2650 size_t alignment
= bdrv_min_mem_align(bs
);
2652 for (i
= 0; i
< qiov
->niov
; i
++) {
2653 if ((uintptr_t) qiov
->iov
[i
].iov_base
% alignment
) {
2656 if (qiov
->iov
[i
].iov_len
% alignment
) {
2664 void bdrv_add_before_write_notifier(BlockDriverState
*bs
,
2665 NotifierWithReturn
*notifier
)
2667 notifier_with_return_list_add(&bs
->before_write_notifiers
, notifier
);
2670 void bdrv_io_plug(BlockDriverState
*bs
)
2674 QLIST_FOREACH(child
, &bs
->children
, next
) {
2675 bdrv_io_plug(child
->bs
);
2678 if (bs
->io_plugged
++ == 0 && bs
->io_plug_disabled
== 0) {
2679 BlockDriver
*drv
= bs
->drv
;
2680 if (drv
&& drv
->bdrv_io_plug
) {
2681 drv
->bdrv_io_plug(bs
);
2686 void bdrv_io_unplug(BlockDriverState
*bs
)
2690 assert(bs
->io_plugged
);
2691 if (--bs
->io_plugged
== 0 && bs
->io_plug_disabled
== 0) {
2692 BlockDriver
*drv
= bs
->drv
;
2693 if (drv
&& drv
->bdrv_io_unplug
) {
2694 drv
->bdrv_io_unplug(bs
);
2698 QLIST_FOREACH(child
, &bs
->children
, next
) {
2699 bdrv_io_unplug(child
->bs
);
2703 void bdrv_io_unplugged_begin(BlockDriverState
*bs
)
2707 if (bs
->io_plug_disabled
++ == 0 && bs
->io_plugged
> 0) {
2708 BlockDriver
*drv
= bs
->drv
;
2709 if (drv
&& drv
->bdrv_io_unplug
) {
2710 drv
->bdrv_io_unplug(bs
);
2714 QLIST_FOREACH(child
, &bs
->children
, next
) {
2715 bdrv_io_unplugged_begin(child
->bs
);
2719 void bdrv_io_unplugged_end(BlockDriverState
*bs
)
2723 assert(bs
->io_plug_disabled
);
2724 QLIST_FOREACH(child
, &bs
->children
, next
) {
2725 bdrv_io_unplugged_end(child
->bs
);
2728 if (--bs
->io_plug_disabled
== 0 && bs
->io_plugged
> 0) {
2729 BlockDriver
*drv
= bs
->drv
;
2730 if (drv
&& drv
->bdrv_io_plug
) {
2731 drv
->bdrv_io_plug(bs
);