]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/net/net_tx_pkt: fix assertion failure in net_tx_pkt_add_raw_fragment()
authorMauro Matteo Cascella <mcascell@redhat.com>
Sat, 1 Aug 2020 16:42:38 +0000 (18:42 +0200)
committerJason Wang <jasowang@redhat.com>
Tue, 4 Aug 2020 06:14:48 +0000 (14:14 +0800)
An assertion failure issue was found in the code that processes network packets
while adding data fragments into the packet context. It could be abused by a
malicious guest to abort the QEMU process on the host. This patch replaces the
affected assert() with a conditional statement, returning false if the current
data fragment exceeds max_raw_frags.

Reported-by: Alexander Bulekov <alxndr@bu.edu>
Reported-by: Ziming Zhang <ezrakiez@gmail.com>
Reviewed-by: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
hw/net/net_tx_pkt.c

index 9560e4a49ebd0e2676b2aa6180cb6f8dddc2a486..da262edc3e95e71f2aa8a52026f9951452b6ec61 100644 (file)
@@ -379,7 +379,10 @@ bool net_tx_pkt_add_raw_fragment(struct NetTxPkt *pkt, hwaddr pa,
     hwaddr mapped_len = 0;
     struct iovec *ventry;
     assert(pkt);
-    assert(pkt->max_raw_frags > pkt->raw_frags);
+
+    if (pkt->raw_frags >= pkt->max_raw_frags) {
+        return false;
+    }
 
     if (!len) {
         return true;