Blame SOURCES/kvm-slirp-ensure-there-is-enough-space-in-mbuf-to-null-t.patch

7711c0
From dec442886deeedfbcb0c9958403627bc11a8d9e9 Mon Sep 17 00:00:00 2001
7711c0
From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
7711c0
Date: Mon, 20 May 2019 17:57:03 +0200
7711c0
Subject: [PATCH 2/3] slirp: ensure there is enough space in mbuf to
7711c0
 null-terminate
7711c0
MIME-Version: 1.0
7711c0
Content-Type: text/plain; charset=UTF-8
7711c0
Content-Transfer-Encoding: 8bit
7711c0
7711c0
RH-Author: Marc-André Lureau <marcandre.lureau@redhat.com>
7711c0
Message-id: <20190520175704.6250-3-marcandre.lureau@redhat.com>
7711c0
Patchwork-id: 88109
7711c0
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH 2/3] slirp: ensure there is enough space in mbuf to null-terminate
7711c0
Bugzilla: 1669071
7711c0
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
7711c0
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
7711c0
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
7711c0
7711c0
Prevents from buffer overflows.
7711c0
Related to: https://bugzilla.redhat.com/show_bug.cgi?id=1664205
7711c0
7711c0
Cc: Prasad J Pandit <pjp@fedoraproject.org>
7711c0
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
7711c0
7711c0
(cherry picked from libslirp commit
7711c0
306fef58b54d793ba4b259728c21322765bda917)
7711c0
7711c0
[ MA - backported with style conflicts fixes ]
7711c0
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
7711c0
7711c0
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
7711c0
---
7711c0
 slirp/tcp_subr.c | 3 +++
7711c0
 1 file changed, 3 insertions(+)
7711c0
7711c0
diff --git a/slirp/tcp_subr.c b/slirp/tcp_subr.c
7711c0
index a61632d..a801a14 100644
7711c0
--- a/slirp/tcp_subr.c
7711c0
+++ b/slirp/tcp_subr.c
7711c0
@@ -641,6 +641,7 @@ tcp_emu(struct socket *so, struct mbuf *m)
7711c0
 			memcpy(so_rcv->sb_wptr, m->m_data, m->m_len);
7711c0
 			so_rcv->sb_wptr += m->m_len;
7711c0
 			so_rcv->sb_rptr += m->m_len;
7711c0
+			m_inc(m, m->m_len + 1);
7711c0
 			m->m_data[m->m_len] = 0; /* NULL terminate */
7711c0
 			if (strchr(m->m_data, '\r') || strchr(m->m_data, '\n')) {
7711c0
 				if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) {
7711c0
@@ -674,6 +675,7 @@ tcp_emu(struct socket *so, struct mbuf *m)
7711c0
 		}
7711c0
 
7711c0
         case EMU_FTP: /* ftp */
7711c0
+		m_inc(m, m->m_len + 1);
7711c0
                 *(m->m_data+m->m_len) = 0; /* NUL terminate for strstr */
7711c0
 		if ((bptr = (char *)strstr(m->m_data, "ORT")) != NULL) {
7711c0
 			/*
7711c0
@@ -771,6 +773,7 @@ tcp_emu(struct socket *so, struct mbuf *m)
7711c0
 		/*
7711c0
 		 * Need to emulate DCC CHAT, DCC SEND and DCC MOVE
7711c0
 		 */
7711c0
+		m_inc(m, m->m_len + 1);
7711c0
 		*(m->m_data+m->m_len) = 0; /* NULL terminate the string for strstr */
7711c0
 		if ((bptr = (char *)strstr(m->m_data, "DCC")) == NULL)
7711c0
 			 return 1;
7711c0
-- 
7711c0
1.8.3.1
7711c0