From 1b118c53c70d9fa4ba3dcdf172039d29335bed73 Mon Sep 17 00:00:00 2001 From: Jon Maloy Date: Wed, 20 Jan 2021 00:13:11 -0500 Subject: Drop bogus IPv6 messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RH-Author: Jon Maloy Message-id: <20210120001311.1356511-2-jmaloy@redhat.com> Patchwork-id: 100699 O-Subject: [RHEL-AV-8.4.0 qemu-kvm PATCH 1/1] Drop bogus IPv6 messages Bugzilla: 1918061 RH-Acked-by: Philippe Mathieu-Daudé RH-Acked-by: Stefano Garzarella RH-Acked-by: Thomas Huth From: Ralf Haferkamp Drop IPv6 message shorter than what's mentioned in the payload length header (+ the size of the IPv6 header). They're invalid an could lead to data leakage in icmp6_send_echoreply(). (cherry picked from libslirp commit c7ede54cbd2e2b25385325600958ba0124e31cc0) Signed-off-by: Jon Maloy Signed-off-by: Danilo C. L. de Paula --- slirp/src/ip6_input.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/slirp/src/ip6_input.c b/slirp/src/ip6_input.c index a83e4f8e3d..f7ef354ee4 100644 --- a/slirp/src/ip6_input.c +++ b/slirp/src/ip6_input.c @@ -56,6 +56,13 @@ void ip6_input(struct mbuf *m) goto bad; } + // Check if the message size is big enough to hold what's + // set in the payload length header. If not this is an invalid + // packet + if (m->m_len < ntohs(ip6->ip_pl) + sizeof(struct ip6)) { + goto bad; + } + /* check ip_ttl for a correct ICMP reply */ if (ip6->ip_hl == 0) { icmp6_send_error(m, ICMP6_TIMXCEED, ICMP6_TIMXCEED_INTRANS); -- 2.18.4