2009-08-20 18:58:19 +04:00
|
|
|
/*
|
2012-06-09 12:57:37 +04:00
|
|
|
* Declarations for AIO in the raw protocol
|
2009-08-20 18:58:19 +04:00
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2008
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
2012-01-13 20:44:23 +04:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2009-08-20 18:58:19 +04:00
|
|
|
*/
|
2019-08-12 08:23:31 +03:00
|
|
|
|
2012-06-09 12:57:37 +04:00
|
|
|
#ifndef QEMU_RAW_AIO_H
|
|
|
|
#define QEMU_RAW_AIO_H
|
2009-08-20 18:58:19 +04:00
|
|
|
|
2019-08-12 08:23:31 +03:00
|
|
|
#include "block/aio.h"
|
2016-03-09 12:52:44 +03:00
|
|
|
#include "qemu/iov.h"
|
|
|
|
|
2009-08-20 18:58:19 +04:00
|
|
|
/* AIO request types */
|
|
|
|
#define QEMU_AIO_READ 0x0001
|
|
|
|
#define QEMU_AIO_WRITE 0x0002
|
|
|
|
#define QEMU_AIO_IOCTL 0x0004
|
2009-09-04 21:01:49 +04:00
|
|
|
#define QEMU_AIO_FLUSH 0x0008
|
2013-01-14 19:26:55 +04:00
|
|
|
#define QEMU_AIO_DISCARD 0x0010
|
2013-11-22 16:39:57 +04:00
|
|
|
#define QEMU_AIO_WRITE_ZEROES 0x0020
|
2018-06-01 12:26:43 +03:00
|
|
|
#define QEMU_AIO_COPY_RANGE 0x0040
|
2018-06-21 19:23:16 +03:00
|
|
|
#define QEMU_AIO_TRUNCATE 0x0080
|
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
|
|
|
#define QEMU_AIO_ZONE_REPORT 0x0100
|
|
|
|
#define QEMU_AIO_ZONE_MGMT 0x0200
|
2023-05-08 08:15:08 +03:00
|
|
|
#define QEMU_AIO_ZONE_APPEND 0x0400
|
2009-08-20 18:58:19 +04:00
|
|
|
#define QEMU_AIO_TYPE_MASK \
|
2018-06-01 12:26:43 +03:00
|
|
|
(QEMU_AIO_READ | \
|
|
|
|
QEMU_AIO_WRITE | \
|
|
|
|
QEMU_AIO_IOCTL | \
|
|
|
|
QEMU_AIO_FLUSH | \
|
|
|
|
QEMU_AIO_DISCARD | \
|
|
|
|
QEMU_AIO_WRITE_ZEROES | \
|
2018-06-21 19:23:16 +03:00
|
|
|
QEMU_AIO_COPY_RANGE | \
|
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
|
|
|
QEMU_AIO_TRUNCATE | \
|
|
|
|
QEMU_AIO_ZONE_REPORT | \
|
2023-05-08 08:15:08 +03:00
|
|
|
QEMU_AIO_ZONE_MGMT | \
|
|
|
|
QEMU_AIO_ZONE_APPEND)
|
2009-08-20 18:58:19 +04:00
|
|
|
|
|
|
|
/* AIO flags */
|
|
|
|
#define QEMU_AIO_MISALIGNED 0x1000
|
2013-01-14 19:26:55 +04:00
|
|
|
#define QEMU_AIO_BLKDEV 0x2000
|
2019-03-22 15:45:23 +03:00
|
|
|
#define QEMU_AIO_NO_FALLBACK 0x4000
|
2009-08-20 18:58:19 +04:00
|
|
|
|
|
|
|
|
2009-08-20 18:58:35 +04:00
|
|
|
/* linux-aio.c - Linux native implementation */
|
2012-06-09 12:57:37 +04:00
|
|
|
#ifdef CONFIG_LINUX_AIO
|
2016-04-07 19:33:35 +03:00
|
|
|
typedef struct LinuxAioState LinuxAioState;
|
linux-aio: properly bubble up errors from initialization
laio_init() can fail for a couple of reasons, which will lead to a NULL
pointer dereference in laio_attach_aio_context().
To solve this, add a aio_setup_linux_aio() function which is called
early in raw_open_common. If this fails, propagate the error up. The
signature of aio_get_linux_aio() was not modified, because it seems
preferable to return the actual errno from the possible failing
initialization calls.
Additionally, when the AioContext changes, we need to associate a
LinuxAioState with the new AioContext. Use the bdrv_attach_aio_context
callback and call the new aio_setup_linux_aio(), which will allocate a
new AioContext if needed, and return errors on failures. If it fails for
any reason, fallback to threaded AIO with an error message, as the
device is already in-use by the guest.
Add an assert that aio_get_linux_aio() cannot return NULL.
Signed-off-by: Nishanth Aravamudan <naravamudan@digitalocean.com>
Message-id: 20180622193700.6523-1-naravamudan@digitalocean.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2018-06-22 22:37:00 +03:00
|
|
|
LinuxAioState *laio_init(Error **errp);
|
2016-04-07 19:33:35 +03:00
|
|
|
void laio_cleanup(LinuxAioState *s);
|
2023-02-03 16:17:28 +03:00
|
|
|
|
|
|
|
/* laio_co_submit: submit I/O requests in the thread's current AioContext. */
|
|
|
|
int coroutine_fn laio_co_submit(int fd, uint64_t offset, QEMUIOVector *qiov,
|
|
|
|
int type, uint64_t dev_max_batch);
|
|
|
|
|
2024-04-25 10:04:12 +03:00
|
|
|
bool laio_has_fdsync(int);
|
2016-04-07 19:33:35 +03:00
|
|
|
void laio_detach_aio_context(LinuxAioState *s, AioContext *old_context);
|
|
|
|
void laio_attach_aio_context(LinuxAioState *s, AioContext *new_context);
|
2012-06-09 12:57:37 +04:00
|
|
|
#endif
|
2020-01-20 17:18:47 +03:00
|
|
|
/* io_uring.c - Linux io_uring implementation */
|
|
|
|
#ifdef CONFIG_LINUX_IO_URING
|
|
|
|
LuringState *luring_init(Error **errp);
|
|
|
|
void luring_cleanup(LuringState *s);
|
2023-02-03 16:17:29 +03:00
|
|
|
|
|
|
|
/* luring_co_submit: submit I/O requests in the thread's current AioContext. */
|
|
|
|
int coroutine_fn luring_co_submit(BlockDriverState *bs, int fd, uint64_t offset,
|
|
|
|
QEMUIOVector *qiov, int type);
|
2020-01-20 17:18:47 +03:00
|
|
|
void luring_detach_aio_context(LuringState *s, AioContext *old_context);
|
|
|
|
void luring_attach_aio_context(LuringState *s, AioContext *new_context);
|
|
|
|
#endif
|
2009-08-20 18:58:35 +04:00
|
|
|
|
2012-10-26 13:43:58 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
typedef struct QEMUWin32AIOState QEMUWin32AIOState;
|
|
|
|
QEMUWin32AIOState *win32_aio_init(void);
|
2014-05-08 18:34:49 +04:00
|
|
|
void win32_aio_cleanup(QEMUWin32AIOState *aio);
|
2012-10-26 13:43:58 +04:00
|
|
|
int win32_aio_attach(QEMUWin32AIOState *aio, HANDLE hfile);
|
2014-10-07 15:59:14 +04:00
|
|
|
BlockAIOCB *win32_aio_submit(BlockDriverState *bs,
|
2012-10-26 13:43:58 +04:00
|
|
|
QEMUWin32AIOState *aio, HANDLE hfile,
|
2018-04-24 22:25:02 +03:00
|
|
|
uint64_t offset, uint64_t bytes, QEMUIOVector *qiov,
|
2014-10-07 15:59:15 +04:00
|
|
|
BlockCompletionFunc *cb, void *opaque, int type);
|
2014-05-08 18:34:50 +04:00
|
|
|
void win32_aio_detach_aio_context(QEMUWin32AIOState *aio,
|
|
|
|
AioContext *old_context);
|
|
|
|
void win32_aio_attach_aio_context(QEMUWin32AIOState *aio,
|
|
|
|
AioContext *new_context);
|
2012-10-26 13:43:58 +04:00
|
|
|
#endif
|
|
|
|
|
2012-06-09 12:57:37 +04:00
|
|
|
#endif /* QEMU_RAW_AIO_H */
|