2022-03-03 18:15:48 +03:00
|
|
|
/*
|
|
|
|
* QEMU System Emulator block driver
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef BLOCK_IO_H
|
|
|
|
#define BLOCK_IO_H
|
|
|
|
|
2022-12-21 16:35:49 +03:00
|
|
|
#include "block/aio-wait.h"
|
|
|
|
#include "block/block-common.h"
|
|
|
|
#include "qemu/coroutine.h"
|
|
|
|
#include "qemu/iov.h"
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* I/O API functions. These functions are thread-safe, and therefore
|
2023-12-05 21:20:03 +03:00
|
|
|
* can run in any thread.
|
2022-03-03 18:15:48 +03:00
|
|
|
*
|
|
|
|
* These functions can only call functions from I/O and Common categories,
|
|
|
|
* but can be invoked by GS, "I/O or GS" and I/O APIs.
|
|
|
|
*
|
|
|
|
* All functions in this category must use the macro
|
|
|
|
* IO_CODE();
|
|
|
|
* to catch when they are accidentally called by the wrong API.
|
|
|
|
*/
|
|
|
|
|
2022-12-07 16:18:37 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset, int64_t bytes,
|
|
|
|
BdrvRequestFlags flags);
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
int bdrv_make_zero(BdrvChild *child, BdrvRequestFlags flags);
|
2022-12-07 16:18:37 +03:00
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_pread(BdrvChild *child, int64_t offset, int64_t bytes, void *buf,
|
|
|
|
BdrvRequestFlags flags);
|
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_pwrite(BdrvChild *child, int64_t offset,int64_t bytes,
|
|
|
|
const void *buf, BdrvRequestFlags flags);
|
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_pwrite_sync(BdrvChild *child, int64_t offset, int64_t bytes,
|
|
|
|
const void *buf, BdrvRequestFlags flags);
|
|
|
|
|
2023-02-03 18:21:51 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_pwrite_sync(BdrvChild *child, int64_t offset, int64_t bytes,
|
|
|
|
const void *buf, BdrvRequestFlags flags);
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
/*
|
|
|
|
* Efficiently zero a region of the disk image. Note that this is a regular
|
|
|
|
* I/O request like read or write and should have a reasonable size. This
|
|
|
|
* function is not suitable for zeroing the entire image in a single request
|
|
|
|
* because it may allocate memory for the entire region.
|
|
|
|
*/
|
2023-02-03 18:21:48 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_pwrite_zeroes(BdrvChild *child, int64_t offset, int64_t bytes,
|
|
|
|
BdrvRequestFlags flags);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
2023-02-03 18:21:42 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_truncate(BdrvChild *child, int64_t offset, bool exact,
|
|
|
|
PreallocMode prealloc, BdrvRequestFlags flags, Error **errp);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
2023-02-03 18:22:02 +03:00
|
|
|
int64_t coroutine_fn GRAPH_RDLOCK bdrv_co_nb_sectors(BlockDriverState *bs);
|
2023-04-07 18:33:03 +03:00
|
|
|
int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs);
|
2023-01-13 23:42:04 +03:00
|
|
|
|
2023-02-03 18:22:02 +03:00
|
|
|
int64_t coroutine_fn GRAPH_RDLOCK bdrv_co_getlength(BlockDriverState *bs);
|
|
|
|
int64_t co_wrapper_mixed_bdrv_rdlock bdrv_getlength(BlockDriverState *bs);
|
2023-01-13 23:42:04 +03:00
|
|
|
|
2023-05-04 14:57:43 +03:00
|
|
|
int64_t coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_get_allocated_file_size(BlockDriverState *bs);
|
|
|
|
|
|
|
|
int64_t co_wrapper_bdrv_rdlock
|
|
|
|
bdrv_get_allocated_file_size(BlockDriverState *bs);
|
2023-01-13 23:42:07 +03:00
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
|
|
|
|
BlockDriverState *in_bs, Error **errp);
|
block/export: Fix graph locking in blk_get_geometry() call
blk_get_geometry() eventually calls bdrv_nb_sectors(), which is a
co_wrapper_mixed_bdrv_rdlock. This means that when it is called from
coroutine context, it already assume to have the graph locked.
However, virtio_blk_sect_range_ok() in block/export/virtio-blk-handler.c
(used by vhost-user-blk and VDUSE exports) runs in a coroutine, but
doesn't take the graph lock - blk_*() functions are generally expected
to do that internally. This causes an assertion failure when accessing
an export for the first time if it runs in an iothread.
This is an example of the crash:
$ ./storage-daemon/qemu-storage-daemon --object iothread,id=th0 --blockdev file,filename=/home/kwolf/images/hd.img,node-name=disk --export vhost-user-blk,addr.type=unix,addr.path=/tmp/vhost.sock,node-name=disk,id=exp0,iothread=th0
qemu-storage-daemon: ../block/graph-lock.c:268: void assert_bdrv_graph_readable(void): Assertion `qemu_in_main_thread() || reader_count()' failed.
(gdb) bt
#0 0x00007ffff6eafe5c in __pthread_kill_implementation () from /lib64/libc.so.6
#1 0x00007ffff6e5fa76 in raise () from /lib64/libc.so.6
#2 0x00007ffff6e497fc in abort () from /lib64/libc.so.6
#3 0x00007ffff6e4971b in __assert_fail_base.cold () from /lib64/libc.so.6
#4 0x00007ffff6e58656 in __assert_fail () from /lib64/libc.so.6
#5 0x00005555556337a3 in assert_bdrv_graph_readable () at ../block/graph-lock.c:268
#6 0x00005555555fd5a2 in bdrv_co_nb_sectors (bs=0x5555564c5ef0) at ../block.c:5847
#7 0x00005555555ee949 in bdrv_nb_sectors (bs=0x5555564c5ef0) at block/block-gen.c:256
#8 0x00005555555fd6b9 in bdrv_get_geometry (bs=0x5555564c5ef0, nb_sectors_ptr=0x7fffef7fedd0) at ../block.c:5884
#9 0x000055555562ad6d in blk_get_geometry (blk=0x5555564cb200, nb_sectors_ptr=0x7fffef7fedd0) at ../block/block-backend.c:1624
#10 0x00005555555ddb74 in virtio_blk_sect_range_ok (blk=0x5555564cb200, block_size=512, sector=0, size=512) at ../block/export/virtio-blk-handler.c:44
#11 0x00005555555dd80d in virtio_blk_process_req (handler=0x5555564cbb98, in_iov=0x7fffe8003830, out_iov=0x7fffe8003860, in_num=1, out_num=0) at ../block/export/virtio-blk-handler.c:189
#12 0x00005555555dd546 in vu_blk_virtio_process_req (opaque=0x7fffe8003800) at ../block/export/vhost-user-blk-server.c:66
#13 0x00005555557bf4a1 in coroutine_trampoline (i0=-402635264, i1=32767) at ../util/coroutine-ucontext.c:177
#14 0x00007ffff6e75c20 in ?? () from /lib64/libc.so.6
#15 0x00007fffefffa870 in ?? ()
#16 0x0000000000000000 in ?? ()
Fix this by creating a new blk_co_get_geometry() that takes the lock,
and changing blk_get_geometry() to be a co_wrapper_mixed around it.
To make the resulting code cleaner, virtio-blk-handler.c can directly
call the coroutine version now (though that wouldn't be necessary for
fixing the bug, taking the lock in blk_co_get_geometry() is what fixes
it).
Fixes: 8ab8140a04cf771d63e9754d6ba6c1e676bfe507
Reported-by: Lukáš Doktor <ldoktor@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20230327113959.60071-1-kwolf@redhat.com>
Reviewed-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2023-03-27 14:39:59 +03:00
|
|
|
|
2023-02-03 18:22:00 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_delete_file(BlockDriverState *bs, Error **errp);
|
|
|
|
|
|
|
|
void coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_delete_file_noerr(BlockDriverState *bs);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* async block I/O */
|
|
|
|
void bdrv_aio_cancel_async(BlockAIOCB *acb);
|
|
|
|
|
|
|
|
/* sg packet commands */
|
2023-02-03 18:21:44 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/* Ensure contents are flushed to disk. */
|
2023-02-03 18:21:46 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK bdrv_co_flush(BlockDriverState *bs);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
2023-02-03 18:21:47 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK bdrv_co_pdiscard(BdrvChild *child, int64_t offset,
|
|
|
|
int64_t bytes);
|
|
|
|
|
block/block-backend: add block layer APIs resembling Linux ZonedBlockDevice ioctls
Add zoned device option to host_device BlockDriver. It will be presented only
for zoned host block devices. By adding zone management operations to the
host_block_device BlockDriver, users can use the new block layer APIs
including Report Zone and four zone management operations
(open, close, finish, reset, reset_all).
Qemu-io uses the new APIs to perform zoned storage commands of the device:
zone_report(zrp), zone_open(zo), zone_close(zc), zone_reset(zrs),
zone_finish(zf).
For example, to test zone_report, use following command:
$ ./build/qemu-io --image-opts -n driver=host_device, filename=/dev/nullb0
-c "zrp offset nr_zones"
Signed-off-by: Sam Li <faithilikerun@gmail.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Dmitry Fomichev <dmitry.fomichev@wdc.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20230508045533.175575-4-faithilikerun@gmail.com
Message-id: 20230324090605.28361-4-faithilikerun@gmail.com
[Adjust commit message prefix as suggested by Philippe Mathieu-Daudé
<philmd@linaro.org> and remove spurious ret = -errno in
raw_co_zone_mgmt().
--Stefan]
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2023-05-08 07:55:28 +03:00
|
|
|
/* Report zone information of zone block device. */
|
|
|
|
int coroutine_fn GRAPH_RDLOCK bdrv_co_zone_report(BlockDriverState *bs,
|
|
|
|
int64_t offset,
|
|
|
|
unsigned int *nr_zones,
|
|
|
|
BlockZoneDescriptor *zones);
|
|
|
|
int coroutine_fn GRAPH_RDLOCK bdrv_co_zone_mgmt(BlockDriverState *bs,
|
|
|
|
BlockZoneOp op,
|
|
|
|
int64_t offset, int64_t len);
|
2023-05-08 08:15:08 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK bdrv_co_zone_append(BlockDriverState *bs,
|
|
|
|
int64_t *offset,
|
|
|
|
QEMUIOVector *qiov,
|
|
|
|
BdrvRequestFlags flags);
|
block/block-backend: add block layer APIs resembling Linux ZonedBlockDevice ioctls
Add zoned device option to host_device BlockDriver. It will be presented only
for zoned host block devices. By adding zone management operations to the
host_block_device BlockDriver, users can use the new block layer APIs
including Report Zone and four zone management operations
(open, close, finish, reset, reset_all).
Qemu-io uses the new APIs to perform zoned storage commands of the device:
zone_report(zrp), zone_open(zo), zone_close(zc), zone_reset(zrs),
zone_finish(zf).
For example, to test zone_report, use following command:
$ ./build/qemu-io --image-opts -n driver=host_device, filename=/dev/nullb0
-c "zrp offset nr_zones"
Signed-off-by: Sam Li <faithilikerun@gmail.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Dmitry Fomichev <dmitry.fomichev@wdc.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20230508045533.175575-4-faithilikerun@gmail.com
Message-id: 20230324090605.28361-4-faithilikerun@gmail.com
[Adjust commit message prefix as suggested by Philippe Mathieu-Daudé
<philmd@linaro.org> and remove spurious ret = -errno in
raw_co_zone_mgmt().
--Stefan]
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2023-05-08 07:55:28 +03:00
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs);
|
2023-09-04 13:03:04 +03:00
|
|
|
|
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_block_status(BlockDriverState *bs, int64_t offset, int64_t bytes,
|
|
|
|
int64_t *pnum, int64_t *map, BlockDriverState **file);
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_block_status(BlockDriverState *bs, int64_t offset, int64_t bytes,
|
|
|
|
int64_t *pnum, int64_t *map, BlockDriverState **file);
|
2022-11-28 17:23:24 +03:00
|
|
|
|
2023-02-03 18:21:43 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_block_status_above(BlockDriverState *bs, BlockDriverState *base,
|
|
|
|
int64_t offset, int64_t bytes, int64_t *pnum,
|
|
|
|
int64_t *map, BlockDriverState **file);
|
2023-09-04 13:03:04 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_block_status_above(BlockDriverState *bs, BlockDriverState *base,
|
|
|
|
int64_t offset, int64_t bytes, int64_t *pnum,
|
|
|
|
int64_t *map, BlockDriverState **file);
|
2022-11-28 17:23:24 +03:00
|
|
|
|
2023-02-03 18:21:43 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_is_allocated(BlockDriverState *bs, int64_t offset, int64_t bytes,
|
|
|
|
int64_t *pnum);
|
2023-09-04 13:03:05 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_is_allocated(BlockDriverState *bs, int64_t offset,
|
|
|
|
int64_t bytes, int64_t *pnum);
|
2022-11-28 17:23:24 +03:00
|
|
|
|
2023-02-03 18:21:43 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_is_allocated_above(BlockDriverState *top, BlockDriverState *base,
|
|
|
|
bool include_base, int64_t offset, int64_t bytes,
|
|
|
|
int64_t *pnum);
|
2023-09-04 13:03:05 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_is_allocated_above(BlockDriverState *bs, BlockDriverState *base,
|
|
|
|
bool include_base, int64_t offset,
|
|
|
|
int64_t bytes, int64_t *pnum);
|
2022-11-28 17:23:24 +03:00
|
|
|
|
2023-02-03 18:21:48 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_is_zero_fast(BlockDriverState *bs, int64_t offset, int64_t bytes);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
2023-09-29 17:51:53 +03:00
|
|
|
int GRAPH_RDLOCK
|
|
|
|
bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
|
|
|
|
Error **errp);
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
bool bdrv_is_read_only(BlockDriverState *bs);
|
|
|
|
bool bdrv_is_writable(BlockDriverState *bs);
|
|
|
|
bool bdrv_is_sg(BlockDriverState *bs);
|
2022-04-27 14:40:54 +03:00
|
|
|
int bdrv_get_flags(BlockDriverState *bs);
|
2023-01-13 23:42:02 +03:00
|
|
|
|
2023-02-03 18:21:57 +03:00
|
|
|
bool coroutine_fn GRAPH_RDLOCK bdrv_co_is_inserted(BlockDriverState *bs);
|
|
|
|
bool co_wrapper_bdrv_rdlock bdrv_is_inserted(BlockDriverState *bs);
|
2023-01-13 23:42:02 +03:00
|
|
|
|
2023-02-03 18:21:58 +03:00
|
|
|
void coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_lock_medium(BlockDriverState *bs, bool locked);
|
|
|
|
|
|
|
|
void coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_eject(BlockDriverState *bs, bool eject_flag);
|
2023-01-13 23:42:09 +03:00
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
const char *bdrv_get_format_name(BlockDriverState *bs);
|
|
|
|
|
2023-10-27 18:53:12 +03:00
|
|
|
bool GRAPH_RDLOCK bdrv_supports_compressed_writes(BlockDriverState *bs);
|
2022-03-03 18:15:48 +03:00
|
|
|
const char *bdrv_get_node_name(const BlockDriverState *bs);
|
2023-09-29 17:51:47 +03:00
|
|
|
|
|
|
|
const char * GRAPH_RDLOCK
|
|
|
|
bdrv_get_device_name(const BlockDriverState *bs);
|
|
|
|
|
|
|
|
const char * GRAPH_RDLOCK
|
|
|
|
bdrv_get_device_or_node_name(const BlockDriverState *bs);
|
2023-01-13 23:42:08 +03:00
|
|
|
|
2023-05-04 14:57:44 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
|
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
|
2023-01-13 23:42:08 +03:00
|
|
|
|
2023-09-29 17:51:54 +03:00
|
|
|
ImageInfoSpecific * GRAPH_RDLOCK
|
|
|
|
bdrv_get_specific_info(BlockDriverState *bs, Error **errp);
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs);
|
2023-07-11 20:25:52 +03:00
|
|
|
void bdrv_round_to_subclusters(BlockDriverState *bs,
|
|
|
|
int64_t offset, int64_t bytes,
|
|
|
|
int64_t *cluster_offset,
|
|
|
|
int64_t *cluster_bytes);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
void bdrv_get_backing_filename(BlockDriverState *bs,
|
|
|
|
char *filename, int filename_size);
|
|
|
|
|
2023-10-27 18:53:28 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_change_backing_file(BlockDriverState *bs, const char *backing_file,
|
|
|
|
const char *backing_fmt, bool warn);
|
|
|
|
|
|
|
|
int co_wrapper_bdrv_rdlock
|
|
|
|
bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
|
|
|
|
const char *backing_fmt, bool warn);
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
|
|
|
|
int64_t pos, int size);
|
|
|
|
|
|
|
|
int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
|
|
|
|
int64_t pos, int size);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the alignment in bytes that is required so that no bounce buffer
|
|
|
|
* is required throughout the stack
|
|
|
|
*/
|
|
|
|
size_t bdrv_min_mem_align(BlockDriverState *bs);
|
|
|
|
/* Returns optimal alignment in bytes for bounce buffer */
|
|
|
|
size_t bdrv_opt_mem_align(BlockDriverState *bs);
|
|
|
|
void *qemu_blockalign(BlockDriverState *bs, size_t size);
|
|
|
|
void *qemu_blockalign0(BlockDriverState *bs, size_t size);
|
|
|
|
void *qemu_try_blockalign(BlockDriverState *bs, size_t size);
|
|
|
|
void *qemu_try_blockalign0(BlockDriverState *bs, size_t size);
|
|
|
|
|
|
|
|
void bdrv_enable_copy_on_read(BlockDriverState *bs);
|
|
|
|
void bdrv_disable_copy_on_read(BlockDriverState *bs);
|
|
|
|
|
2023-05-04 14:57:45 +03:00
|
|
|
void coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event);
|
|
|
|
|
|
|
|
void co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
2023-06-01 14:51:45 +03:00
|
|
|
#define BLKDBG_CO_EVENT(child, evt) \
|
|
|
|
do { \
|
|
|
|
if (child) { \
|
|
|
|
bdrv_co_debug_event(child->bs, evt); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
#define BLKDBG_EVENT(child, evt) \
|
|
|
|
do { \
|
|
|
|
if (child) { \
|
|
|
|
bdrv_debug_event(child->bs, evt); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bdrv_get_aio_context:
|
|
|
|
*
|
|
|
|
* Returns: the currently bound #AioContext
|
|
|
|
*/
|
|
|
|
AioContext *bdrv_get_aio_context(BlockDriverState *bs);
|
|
|
|
|
block: Make bdrv_child_get_parent_aio_context I/O
We want to use bdrv_child_get_parent_aio_context() from
bdrv_parent_drained_{begin,end}_single(), both of which are "I/O or GS"
functions.
Prior to 3ed4f708fe1, all the implementations were I/O code anyway.
3ed4f708fe1 has put block jobs' AioContext field under the job mutex, so
to make child_job_get_parent_aio_context() work in an I/O context, we
need to take that lock there.
Furthermore, blk_root_get_parent_aio_context() is not marked as
anything, but is safe to run in an I/O context, so mark it that way now.
(blk_get_aio_context() is an I/O code function.)
With that done, all implementations explicitly are I/O code, so we can
mark bdrv_child_get_parent_aio_context() as I/O code, too, so callers
know it is safe to run from both GS and I/O contexts.
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20221107151321.211175-2-hreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2022-11-07 18:13:19 +03:00
|
|
|
AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c);
|
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
/**
|
|
|
|
* Move the current coroutine to the AioContext of @bs and return the old
|
|
|
|
* AioContext of the coroutine. Increase bs->in_flight so that draining @bs
|
|
|
|
* will wait for the operation to proceed until the corresponding
|
|
|
|
* bdrv_co_leave().
|
|
|
|
*
|
|
|
|
* Consequently, you can't call drain inside a bdrv_co_enter/leave() section as
|
|
|
|
* this will deadlock.
|
|
|
|
*/
|
|
|
|
AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ends a section started by bdrv_co_enter(). Move the current coroutine back
|
|
|
|
* to old_ctx and decrease bs->in_flight again.
|
|
|
|
*/
|
|
|
|
void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx);
|
|
|
|
|
|
|
|
AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c);
|
|
|
|
|
2023-02-03 18:22:01 +03:00
|
|
|
bool coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
|
|
|
|
uint32_t granularity, Error **errp);
|
|
|
|
bool co_wrapper_bdrv_rdlock
|
|
|
|
bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
|
|
|
|
uint32_t granularity, Error **errp);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* bdrv_co_copy_range:
|
|
|
|
*
|
|
|
|
* Do offloaded copy between two children. If the operation is not implemented
|
|
|
|
* by the driver, or if the backend storage doesn't support it, a negative
|
|
|
|
* error code will be returned.
|
|
|
|
*
|
|
|
|
* Note: block layer doesn't emulate or fallback to a bounce buffer approach
|
|
|
|
* because usually the caller shouldn't attempt offloaded copy any more (e.g.
|
|
|
|
* calling copy_file_range(2)) after the first error, thus it should fall back
|
|
|
|
* to a read+write path in the caller level.
|
|
|
|
*
|
|
|
|
* @src: Source child to copy data from
|
|
|
|
* @src_offset: offset in @src image to read data
|
|
|
|
* @dst: Destination child to copy data to
|
|
|
|
* @dst_offset: offset in @dst image to write data
|
|
|
|
* @bytes: number of bytes to copy
|
|
|
|
* @flags: request flags. Supported flags:
|
|
|
|
* BDRV_REQ_ZERO_WRITE - treat the @src range as zero data and do zero
|
|
|
|
* write on @dst as if bdrv_co_pwrite_zeroes is
|
|
|
|
* called. Used to simplify caller code, or
|
|
|
|
* during BlockDriver.bdrv_co_copy_range_from()
|
|
|
|
* recursion.
|
|
|
|
* BDRV_REQ_NO_SERIALISING - do not serialize with other overlapping
|
|
|
|
* requests currently in flight.
|
|
|
|
*
|
|
|
|
* Returns: 0 if succeeded; negative error code if failed.
|
|
|
|
**/
|
2023-02-03 18:21:53 +03:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_copy_range(BdrvChild *src, int64_t src_offset,
|
|
|
|
BdrvChild *dst, int64_t dst_offset,
|
|
|
|
int64_t bytes, BdrvRequestFlags read_flags,
|
|
|
|
BdrvRequestFlags write_flags);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* "I/O or GS" API functions. These functions can run without
|
|
|
|
* the BQL, but only in one specific iothread/main loop.
|
|
|
|
*
|
2023-12-05 21:20:11 +03:00
|
|
|
* More specifically, these functions use BDRV_POLL_WHILE(bs), which requires
|
|
|
|
* the caller to be either in the main thread or directly in the home thread
|
|
|
|
* that runs the bs AioContext. Calling them from another thread in another
|
|
|
|
* AioContext would cause deadlocks.
|
2022-03-03 18:15:48 +03:00
|
|
|
*
|
|
|
|
* Therefore, these functions are not proper I/O, because they
|
|
|
|
* can't run in *any* iothreads, but only in a specific one.
|
|
|
|
*
|
|
|
|
* These functions can call any function from I/O, Common and this
|
|
|
|
* categories, but must be invoked only by other "I/O or GS" and GS APIs.
|
|
|
|
*
|
|
|
|
* All functions in this category must use the macro
|
|
|
|
* IO_OR_GS_CODE();
|
|
|
|
* to catch when they are accidentally called by the wrong API.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BDRV_POLL_WHILE(bs, cond) ({ \
|
|
|
|
BlockDriverState *bs_ = (bs); \
|
2022-03-03 18:15:50 +03:00
|
|
|
IO_OR_GS_CODE(); \
|
2022-03-03 18:15:48 +03:00
|
|
|
AIO_WAIT_WHILE(bdrv_get_aio_context(bs_), \
|
|
|
|
cond); })
|
|
|
|
|
|
|
|
void bdrv_drain(BlockDriverState *bs);
|
|
|
|
|
2022-12-07 16:18:37 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
2022-03-03 18:15:48 +03:00
|
|
|
bdrv_truncate(BdrvChild *child, int64_t offset, bool exact,
|
|
|
|
PreallocMode prealloc, BdrvRequestFlags flags, Error **errp);
|
|
|
|
|
2022-12-07 16:18:37 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/* Invalidate any cached metadata used by image formats */
|
2022-12-07 16:18:37 +03:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_invalidate_cache(BlockDriverState *bs, Error **errp);
|
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock bdrv_flush(BlockDriverState *bs);
|
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
|
|
|
bdrv_pdiscard(BdrvChild *child, int64_t offset, int64_t bytes);
|
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
2022-03-03 18:15:48 +03:00
|
|
|
bdrv_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
|
2022-12-07 16:18:37 +03:00
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
2022-03-03 18:15:48 +03:00
|
|
|
bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bdrv_parent_drained_begin_single:
|
|
|
|
*
|
2022-11-18 20:41:10 +03:00
|
|
|
* Begin a quiesced section for the parent of @c.
|
2022-03-03 18:15:48 +03:00
|
|
|
*/
|
2023-09-29 17:51:40 +03:00
|
|
|
void GRAPH_RDLOCK bdrv_parent_drained_begin_single(BdrvChild *c);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
2022-11-18 20:41:09 +03:00
|
|
|
/**
|
|
|
|
* bdrv_parent_drained_poll_single:
|
|
|
|
*
|
|
|
|
* Returns true if there is any pending activity to cease before @c can be
|
|
|
|
* called quiesced, false otherwise.
|
|
|
|
*/
|
2023-09-29 17:51:40 +03:00
|
|
|
bool GRAPH_RDLOCK bdrv_parent_drained_poll_single(BdrvChild *c);
|
2022-11-18 20:41:09 +03:00
|
|
|
|
2022-03-03 18:15:48 +03:00
|
|
|
/**
|
|
|
|
* bdrv_parent_drained_end_single:
|
|
|
|
*
|
|
|
|
* End a quiesced section for the parent of @c.
|
|
|
|
*/
|
2023-09-29 17:51:40 +03:00
|
|
|
void GRAPH_RDLOCK bdrv_parent_drained_end_single(BdrvChild *c);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* bdrv_drain_poll:
|
|
|
|
*
|
2022-11-18 20:41:05 +03:00
|
|
|
* Poll for pending requests in @bs and its parents (except for @ignore_parent).
|
2022-03-03 18:15:48 +03:00
|
|
|
*
|
|
|
|
* If @ignore_bds_parents is true, parents that are BlockDriverStates must
|
|
|
|
* ignore the drain request because they will be drained separately (used for
|
|
|
|
* drain_all).
|
|
|
|
*
|
|
|
|
* This is part of bdrv_drained_begin.
|
|
|
|
*/
|
2023-09-29 17:51:40 +03:00
|
|
|
bool GRAPH_RDLOCK
|
|
|
|
bdrv_drain_poll(BlockDriverState *bs, BdrvChild *ignore_parent,
|
|
|
|
bool ignore_bds_parents);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* bdrv_drained_begin:
|
|
|
|
*
|
|
|
|
* Begin a quiesced section for exclusive access to the BDS, by disabling
|
|
|
|
* external request sources including NBD server, block jobs, and device model.
|
|
|
|
*
|
2023-09-29 17:51:40 +03:00
|
|
|
* This function can only be invoked by the main loop or a coroutine
|
|
|
|
* (regardless of the AioContext where it is running).
|
|
|
|
* If the coroutine is running in an Iothread AioContext, this function will
|
|
|
|
* just schedule a BH to run in the main loop.
|
|
|
|
* However, it cannot be directly called by an Iothread.
|
|
|
|
*
|
2022-03-03 18:15:48 +03:00
|
|
|
* This function can be recursive.
|
|
|
|
*/
|
|
|
|
void bdrv_drained_begin(BlockDriverState *bs);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bdrv_do_drained_begin_quiesce:
|
|
|
|
*
|
|
|
|
* Quiesces a BDS like bdrv_drained_begin(), but does not wait for already
|
|
|
|
* running requests to complete.
|
|
|
|
*/
|
2022-11-18 20:41:07 +03:00
|
|
|
void bdrv_do_drained_begin_quiesce(BlockDriverState *bs, BdrvChild *parent);
|
2022-03-03 18:15:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* bdrv_drained_end:
|
|
|
|
*
|
|
|
|
* End a quiescent section started by bdrv_drained_begin().
|
2023-09-29 17:51:40 +03:00
|
|
|
*
|
|
|
|
* This function can only be invoked by the main loop or a coroutine
|
|
|
|
* (regardless of the AioContext where it is running).
|
|
|
|
* If the coroutine is running in an Iothread AioContext, this function will
|
|
|
|
* just schedule a BH to run in the main loop.
|
|
|
|
* However, it cannot be directly called by an Iothread.
|
2022-03-03 18:15:48 +03:00
|
|
|
*/
|
|
|
|
void bdrv_drained_end(BlockDriverState *bs);
|
|
|
|
|
|
|
|
#endif /* BLOCK_IO_H */
|