Blame SOURCES/kvm-Using-ip_deq-after-m_free-might-read-pointers-from-a.patch

4ec855
From a4c22009a465ebe5fd0c09699e61ad0423b8849d Mon Sep 17 00:00:00 2001
4ec855
From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= <philmd@redhat.com>
4ec855
Date: Fri, 6 Sep 2019 14:00:34 +0100
4ec855
Subject: [PATCH 07/22] Using ip_deq after m_free might read pointers from an
4ec855
 allocation reuse.
4ec855
MIME-Version: 1.0
4ec855
Content-Type: text/plain; charset=UTF-8
4ec855
Content-Transfer-Encoding: 8bit
4ec855
4ec855
RH-Author: Philippe Mathieu-Daudé <philmd@redhat.com>
4ec855
Message-id: <20190906140034.19722-2-philmd@redhat.com>
4ec855
Patchwork-id: 90306
4ec855
O-Subject: [RHEL-7.7 qemu-kvm-ma + RHEL-7.7 qemu-kvm-rhev + RHEL-8.1.0 qemu-kvm PATCH 1/1] Using ip_deq after m_free might read pointers from an allocation reuse.
4ec855
Bugzilla: 1749724
4ec855
RH-Acked-by: Thomas Huth <thuth@redhat.com>
4ec855
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
4ec855
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
4ec855
4ec855
From: Samuel Thibault <samuel.thibault@ens-lyon.org>
4ec855
4ec855
This would be difficult to exploit, but that is still related with
4ec855
CVE-2019-14378 which generates fragmented IP packets that would trigger this
4ec855
issue and at least produce a DoS.
4ec855
4ec855
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
4ec855
(cherry picked from libslirp commit c59279437eda91841b9d26079c70b8a540d41204)
4ec855
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
4ec855
4ec855
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
4ec855
---
4ec855
 slirp/ip_input.c | 6 ++++--
4ec855
 1 file changed, 4 insertions(+), 2 deletions(-)
4ec855
4ec855
diff --git a/slirp/ip_input.c b/slirp/ip_input.c
4ec855
index 07d8808..7cf0133 100644
4ec855
--- a/slirp/ip_input.c
4ec855
+++ b/slirp/ip_input.c
4ec855
@@ -300,6 +300,7 @@ ip_reass(Slirp *slirp, struct ip *ip, struct ipq *fp)
4ec855
 	 */
4ec855
 	while (q != (struct ipasfrag*)&fp->frag_link &&
4ec855
             ip->ip_off + ip->ip_len > q->ipf_off) {
4ec855
+		struct ipasfrag *prev;
4ec855
 		i = (ip->ip_off + ip->ip_len) - q->ipf_off;
4ec855
 		if (i < q->ipf_len) {
4ec855
 			q->ipf_len -= i;
4ec855
@@ -307,9 +308,10 @@ ip_reass(Slirp *slirp, struct ip *ip, struct ipq *fp)
4ec855
 			m_adj(dtom(slirp, q), i);
4ec855
 			break;
4ec855
 		}
4ec855
+		prev = q;
4ec855
 		q = q->ipf_next;
4ec855
-		m_free(dtom(slirp, q->ipf_prev));
4ec855
-		ip_deq(q->ipf_prev);
4ec855
+		ip_deq(prev);
4ec855
+		m_free(dtom(slirp, prev));
4ec855
 	}
4ec855
 
4ec855
 insert:
4ec855
-- 
4ec855
1.8.3.1
4ec855