* [PATCH v2] block/monitor/block-hmp-cmds.c: Fix crash when execute hmp_commit
@ 2023-04-24 10:39 wangliangzz
2023-04-24 10:51 ` Emanuele Giuseppe Esposito
2023-04-25 12:09 ` Kevin Wolf
0 siblings, 2 replies; 3+ messages in thread
From: wangliangzz @ 2023-04-24 10:39 UTC (permalink / raw)
To: qemu-devel, qemu-block, qemu-stable, wangliangzz
Cc: kwolf, hreitz, eesposit, Wang Liang
From: Wang Liang <wangliangzz@inspur.com>
hmp_commit() calls blk_is_available() from a non-coroutine context (and in
the main loop). blk_is_available() is a co_wrapper_mixed_bdrv_rdlock
function, and in the non-coroutine context it calls AIO_WAIT_WHILE(),
which crashes if the aio_context lock is not taken before.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1615
Signed-off-by: Wang Liang <wangliangzz@inspur.com>
---
block/monitor/block-hmp-cmds.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/block/monitor/block-hmp-cmds.c b/block/monitor/block-hmp-cmds.c
index 2846083546..ca2599de44 100644
--- a/block/monitor/block-hmp-cmds.c
+++ b/block/monitor/block-hmp-cmds.c
@@ -214,15 +214,17 @@ void hmp_commit(Monitor *mon, const QDict *qdict)
error_report("Device '%s' not found", device);
return;
}
- if (!blk_is_available(blk)) {
- error_report("Device '%s' has no medium", device);
- return;
- }
bs = bdrv_skip_implicit_filters(blk_bs(blk));
aio_context = bdrv_get_aio_context(bs);
aio_context_acquire(aio_context);
+ if (!blk_is_available(blk)) {
+ error_report("Device '%s' has no medium", device);
+ aio_context_release(aio_context);
+ return;
+ }
+
ret = bdrv_commit(bs);
aio_context_release(aio_context);
--
2.27.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] block/monitor/block-hmp-cmds.c: Fix crash when execute hmp_commit
2023-04-24 10:39 [PATCH v2] block/monitor/block-hmp-cmds.c: Fix crash when execute hmp_commit wangliangzz
@ 2023-04-24 10:51 ` Emanuele Giuseppe Esposito
2023-04-25 12:09 ` Kevin Wolf
1 sibling, 0 replies; 3+ messages in thread
From: Emanuele Giuseppe Esposito @ 2023-04-24 10:51 UTC (permalink / raw)
To: wangliangzz, qemu-devel, qemu-block, qemu-stable
Cc: kwolf, hreitz, Wang Liang
Am 24/04/2023 um 12:39 schrieb wangliangzz@126.com:
> From: Wang Liang <wangliangzz@inspur.com>
>
> hmp_commit() calls blk_is_available() from a non-coroutine context (and in
> the main loop). blk_is_available() is a co_wrapper_mixed_bdrv_rdlock
> function, and in the non-coroutine context it calls AIO_WAIT_WHILE(),
> which crashes if the aio_context lock is not taken before.
>
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1615
> Signed-off-by: Wang Liang <wangliangzz@inspur.com>
>
Thanks!
Reviewed-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] block/monitor/block-hmp-cmds.c: Fix crash when execute hmp_commit
2023-04-24 10:39 [PATCH v2] block/monitor/block-hmp-cmds.c: Fix crash when execute hmp_commit wangliangzz
2023-04-24 10:51 ` Emanuele Giuseppe Esposito
@ 2023-04-25 12:09 ` Kevin Wolf
1 sibling, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2023-04-25 12:09 UTC (permalink / raw)
To: wangliangzz
Cc: qemu-devel, qemu-block, qemu-stable, hreitz, eesposit, Wang Liang
Am 24.04.2023 um 12:39 hat wangliangzz@126.com geschrieben:
> From: Wang Liang <wangliangzz@inspur.com>
>
> hmp_commit() calls blk_is_available() from a non-coroutine context (and in
> the main loop). blk_is_available() is a co_wrapper_mixed_bdrv_rdlock
> function, and in the non-coroutine context it calls AIO_WAIT_WHILE(),
> which crashes if the aio_context lock is not taken before.
>
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1615
> Signed-off-by: Wang Liang <wangliangzz@inspur.com>
Thanks, applied to the block branch.
Kevin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-04-25 12:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-24 10:39 [PATCH v2] block/monitor/block-hmp-cmds.c: Fix crash when execute hmp_commit wangliangzz
2023-04-24 10:51 ` Emanuele Giuseppe Esposito
2023-04-25 12:09 ` Kevin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).