1
The following changes since commit cc6613e244e86c66f83467eab5284825d7057cea:
1
The following changes since commit 661c2e1ab29cd9c4d268ae3f44712e8d421c0e56:
2
2
3
Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2019-09-03 11:06:09 +0100)
3
scripts/checkpatch: Fix a typo (2025-03-04 09:30:26 +0800)
4
4
5
are available in the Git repository at:
5
are available in the Git repository at:
6
6
7
https://github.com/stefanha/qemu.git tags/block-pull-request
7
https://gitlab.com/stefanha/qemu.git tags/block-pull-request
8
8
9
for you to fetch changes up to ebb6ff25cd888a52a64a9adc3692541c6d1d9a42:
9
for you to fetch changes up to 2ad638a3d160923ef3dbf87c73944e6e44bdc724:
10
10
11
virtio-blk: Cancel the pending BH when the dataplane is reset (2019-09-03 16:11:18 +0100)
11
block/qed: fix use-after-free by nullifying timer pointer after free (2025-03-06 10:19:54 +0800)
12
12
13
----------------------------------------------------------------
13
----------------------------------------------------------------
14
Pull request
14
Pull request
15
15
16
QED need_check_timer use-after-free fix
17
16
----------------------------------------------------------------
18
----------------------------------------------------------------
17
19
18
Philippe Mathieu-Daudé (1):
20
Denis Rastyogin (1):
19
virtio-blk: Cancel the pending BH when the dataplane is reset
21
block/qed: fix use-after-free by nullifying timer pointer after free
20
22
21
hw/block/dataplane/virtio-blk.c | 3 +++
23
block/qed.c | 1 +
22
1 file changed, 3 insertions(+)
24
1 file changed, 1 insertion(+)
23
25
24
--
26
--
25
2.21.0
27
2.48.1
26
27
diff view generated by jsdifflib
1
From: Philippe Mathieu-Daudé <philmd@redhat.com>
1
From: Denis Rastyogin <gerben@altlinux.org>
2
2
3
When 'system_reset' is called, the main loop clear the memory
3
This error was discovered by fuzzing qemu-img.
4
region cache before the BH has a chance to execute. Later when
5
the deferred function is called, some assumptions that were
6
made when scheduling them are no longer true when they actually
7
execute.
8
4
9
This is what happens using a virtio-blk device (fresh RHEL7.8 install):
5
In the QED block driver, the need_check_timer timer is freed in
6
bdrv_qed_detach_aio_context, but the pointer to the timer is not
7
set to NULL. This can lead to a use-after-free scenario
8
in bdrv_qed_drain_begin().
10
9
11
$ (sleep 12.3; echo system_reset; sleep 12.3; echo system_reset; sleep 1; echo q) \
10
The need_check_timer pointer is set to NULL after freeing the timer.
12
| qemu-system-x86_64 -m 4G -smp 8 -boot menu=on \
11
Which helps catch this condition when checking in bdrv_qed_drain_begin().
13
-device virtio-blk-pci,id=image1,drive=drive_image1 \
14
-drive file=/var/lib/libvirt/images/rhel78.qcow2,if=none,id=drive_image1,format=qcow2,cache=none \
15
-device virtio-net-pci,netdev=net0,id=nic0,mac=52:54:00:c4:e7:84 \
16
-netdev tap,id=net0,script=/bin/true,downscript=/bin/true,vhost=on \
17
-monitor stdio -serial null -nographic
18
(qemu) system_reset
19
(qemu) system_reset
20
(qemu) qemu-system-x86_64: hw/virtio/virtio.c:225: vring_get_region_caches: Assertion `caches != NULL' failed.
21
Aborted
22
12
23
(gdb) bt
13
Closes: https://gitlab.com/qemu-project/qemu/-/issues/2852
24
Thread 1 (Thread 0x7f109c17b680 (LWP 10939)):
14
Signed-off-by: Denis Rastyogin <gerben@altlinux.org>
25
#0 0x00005604083296d1 in vring_get_region_caches (vq=0x56040a24bdd0) at hw/virtio/virtio.c:227
15
Message-ID: <20250304083927.37681-1-gerben@altlinux.org>
26
#1 0x000056040832972b in vring_avail_flags (vq=0x56040a24bdd0) at hw/virtio/virtio.c:235
27
#2 0x000056040832d13d in virtio_should_notify (vdev=0x56040a240630, vq=0x56040a24bdd0) at hw/virtio/virtio.c:1648
28
#3 0x000056040832d1f8 in virtio_notify_irqfd (vdev=0x56040a240630, vq=0x56040a24bdd0) at hw/virtio/virtio.c:1662
29
#4 0x00005604082d213d in notify_guest_bh (opaque=0x56040a243ec0) at hw/block/dataplane/virtio-blk.c:75
30
#5 0x000056040883dc35 in aio_bh_call (bh=0x56040a243f10) at util/async.c:90
31
#6 0x000056040883dccd in aio_bh_poll (ctx=0x560409161980) at util/async.c:118
32
#7 0x0000560408842af7 in aio_dispatch (ctx=0x560409161980) at util/aio-posix.c:460
33
#8 0x000056040883e068 in aio_ctx_dispatch (source=0x560409161980, callback=0x0, user_data=0x0) at util/async.c:261
34
#9 0x00007f10a8fca06d in g_main_context_dispatch () at /lib64/libglib-2.0.so.0
35
#10 0x0000560408841445 in glib_pollfds_poll () at util/main-loop.c:215
36
#11 0x00005604088414bf in os_host_main_loop_wait (timeout=0) at util/main-loop.c:238
37
#12 0x00005604088415c4 in main_loop_wait (nonblocking=0) at util/main-loop.c:514
38
#13 0x0000560408416b1e in main_loop () at vl.c:1923
39
#14 0x000056040841e0e8 in main (argc=20, argv=0x7ffc2c3f9c58, envp=0x7ffc2c3f9d00) at vl.c:4578
40
41
Fix this by cancelling the BH when the virtio dataplane is stopped.
42
43
[This is version of the patch was modified as discussed with Philippe on
44
the mailing list thread.
45
--Stefan]
46
47
Reported-by: Yihuang Yu <yihyu@redhat.com>
48
Suggested-by: Stefan Hajnoczi <stefanha@redhat.com>
49
Fixes: https://bugs.launchpad.net/qemu/+bug/1839428
50
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
51
Message-Id: <20190816171503.24761-1-philmd@redhat.com>
52
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
16
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
53
---
17
---
54
hw/block/dataplane/virtio-blk.c | 3 +++
18
block/qed.c | 1 +
55
1 file changed, 3 insertions(+)
19
1 file changed, 1 insertion(+)
56
20
57
diff --git a/hw/block/dataplane/virtio-blk.c b/hw/block/dataplane/virtio-blk.c
21
diff --git a/block/qed.c b/block/qed.c
58
index XXXXXXX..XXXXXXX 100644
22
index XXXXXXX..XXXXXXX 100644
59
--- a/hw/block/dataplane/virtio-blk.c
23
--- a/block/qed.c
60
+++ b/hw/block/dataplane/virtio-blk.c
24
+++ b/block/qed.c
61
@@ -XXX,XX +XXX,XX @@ void virtio_blk_data_plane_stop(VirtIODevice *vdev)
25
@@ -XXX,XX +XXX,XX @@ static void bdrv_qed_detach_aio_context(BlockDriverState *bs)
62
virtio_bus_cleanup_host_notifier(VIRTIO_BUS(qbus), i);
26
63
}
27
qed_cancel_need_check_timer(s);
64
28
timer_free(s->need_check_timer);
65
+ qemu_bh_cancel(s->bh);
29
+ s->need_check_timer = NULL;
66
+ notify_guest_bh(s); /* final chance to notify guest */
30
}
67
+
31
68
/* Clean up guest notifier (irq) */
32
static void bdrv_qed_attach_aio_context(BlockDriverState *bs,
69
k->set_guest_notifiers(qbus->parent, nvqs, false);
70
71
--
33
--
72
2.21.0
34
2.48.1
73
74
diff view generated by jsdifflib