mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
qemu: fix CVE-2025-12464
Backport patch to fix CVE-2025-12464. Reference: https://gitlab.com/qemu-project/qemu/-/commit/a01344d9d7 (From OE-Core rev: 7ef40090719cab3fb9bda3f87a9d700d9b503e3e) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
@@ -129,6 +129,7 @@ SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \
|
|||||||
file://CVE-2024-3446-0006.patch \
|
file://CVE-2024-3446-0006.patch \
|
||||||
file://CVE-2024-3447.patch \
|
file://CVE-2024-3447.patch \
|
||||||
file://CVE-2024-8354.patch \
|
file://CVE-2024-8354.patch \
|
||||||
|
file://CVE-2025-12464.patch \
|
||||||
"
|
"
|
||||||
UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar"
|
UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar"
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,70 @@
|
|||||||
|
From a01344d9d78089e9e585faaeb19afccff2050abf Mon Sep 17 00:00:00 2001
|
||||||
|
From: Peter Maydell <peter.maydell@linaro.org>
|
||||||
|
Date: Tue, 28 Oct 2025 16:00:42 +0000
|
||||||
|
Subject: [PATCH] net: pad packets to minimum length in qemu_receive_packet()
|
||||||
|
|
||||||
|
In commits like 969e50b61a28 ("net: Pad short frames to minimum size
|
||||||
|
before sending from SLiRP/TAP") we switched away from requiring
|
||||||
|
network devices to handle short frames to instead having the net core
|
||||||
|
code do the padding of short frames out to the ETH_ZLEN minimum size.
|
||||||
|
We then dropped the code for handling short frames from the network
|
||||||
|
devices in a series of commits like 140eae9c8f7 ("hw/net: e1000:
|
||||||
|
Remove the logic of padding short frames in the receive path").
|
||||||
|
|
||||||
|
This missed one route where the device's receive code can still see a
|
||||||
|
short frame: if the device is in loopback mode and it transmits a
|
||||||
|
short frame via the qemu_receive_packet() function, this will be fed
|
||||||
|
back into its own receive code without being padded.
|
||||||
|
|
||||||
|
Add the padding logic to qemu_receive_packet().
|
||||||
|
|
||||||
|
This fixes a buffer overrun which can be triggered in the
|
||||||
|
e1000_receive_iov() logic via the loopback code path.
|
||||||
|
|
||||||
|
Other devices that use qemu_receive_packet() to implement loopback
|
||||||
|
are cadence_gem, dp8393x, lan9118, msf2-emac, pcnet, rtl8139
|
||||||
|
and sungem.
|
||||||
|
|
||||||
|
Cc: qemu-stable@nongnu.org
|
||||||
|
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/3043
|
||||||
|
Reviewed-by: Akihiko Odaki <odaki@rsg.ci.i.u-tokyo.ac.jp>
|
||||||
|
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
|
||||||
|
Signed-off-by: Jason Wang <jasowang@redhat.com>
|
||||||
|
|
||||||
|
CVE: CVE-2025-12464
|
||||||
|
|
||||||
|
Upstream-Status: Backport [https://gitlab.com/qemu-project/qemu/-/commit/a01344d9d7]
|
||||||
|
|
||||||
|
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||||
|
---
|
||||||
|
net/net.c | 10 ++++++++++
|
||||||
|
1 file changed, 10 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/net/net.c b/net/net.c
|
||||||
|
index 27e0d27807..8aefdb3424 100644
|
||||||
|
--- a/net/net.c
|
||||||
|
+++ b/net/net.c
|
||||||
|
@@ -775,10 +775,20 @@ ssize_t qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
|
||||||
|
|
||||||
|
ssize_t qemu_receive_packet(NetClientState *nc, const uint8_t *buf, int size)
|
||||||
|
{
|
||||||
|
+ uint8_t min_pkt[ETH_ZLEN];
|
||||||
|
+ size_t min_pktsz = sizeof(min_pkt);
|
||||||
|
+
|
||||||
|
if (!qemu_can_receive_packet(nc)) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ if (net_peer_needs_padding(nc)) {
|
||||||
|
+ if (eth_pad_short_frame(min_pkt, &min_pktsz, buf, size)) {
|
||||||
|
+ buf = min_pkt;
|
||||||
|
+ size = min_pktsz;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
return qemu_net_queue_receive(nc->incoming_queue, buf, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
2.47.1
|
||||||
|
|
||||||
Reference in New Issue
Block a user