d102a4
From 30feadb676a0792036a0f64309235c5767e2ee76 Mon Sep 17 00:00:00 2001
d102a4
From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
d102a4
Date: Fri, 4 Jun 2021 16:32:55 +0400
d102a4
Subject: [PATCH 4/7] upd6: check udp6_input buffer size
d102a4
MIME-Version: 1.0
d102a4
Content-Type: text/plain; charset=UTF-8
d102a4
Content-Transfer-Encoding: 8bit
d102a4
d102a4
Fixes: CVE-2021-3593
d102a4
Fixes: https://gitlab.freedesktop.org/slirp/libslirp/-/issues/45
d102a4
d102a4
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
d102a4
(cherry picked from commit de71c15de66ba9350bf62c45b05f8fbff166517b)
d102a4
---
d102a4
 src/udp6.c | 5 ++++-
d102a4
 1 file changed, 4 insertions(+), 1 deletion(-)
d102a4
d102a4
diff --git a/src/udp6.c b/src/udp6.c
d102a4
index fdd8089..236b962 100644
d102a4
--- a/src/udp6.c
d102a4
+++ b/src/udp6.c
d102a4
@@ -29,7 +29,10 @@ void udp6_input(struct mbuf *m)
d102a4
     ip = mtod(m, struct ip6 *);
d102a4
     m->m_len -= iphlen;
d102a4
     m->m_data += iphlen;
d102a4
-    uh = mtod(m, struct udphdr *);
d102a4
+    uh = mtod_check(m, sizeof(struct udphdr));
d102a4
+    if (uh == NULL) {
d102a4
+        goto bad;
d102a4
+    }
d102a4
     m->m_len += iphlen;
d102a4
     m->m_data -= iphlen;
d102a4
 
d102a4
-- 
d102a4
2.29.0
d102a4