Blame SOURCES/libcgroup-0.41-prevent-buffer-overflow.patch

2ae3c9
From 9c80e2cb4bca26993a12027c46a274bb43645630 Mon Sep 17 00:00:00 2001
2ae3c9
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
2ae3c9
Date: Wed, 22 Jun 2016 14:12:46 +0200
2ae3c9
Subject: [PATCH 3/6] api.c: fix potential buffer overflow
2ae3c9
MIME-Version: 1.0
2ae3c9
Content-Type: text/plain; charset=UTF-8
2ae3c9
Content-Transfer-Encoding: 8bit
2ae3c9
2ae3c9
It is assumed that arguments read from /proc/<pid>/cmdline don't exceed
2ae3c9
buf_pname buffer size, which is FILENAME_MAX - 1 characters, but that's
2ae3c9
not always the case.
2ae3c9
2ae3c9
Add check to prevent buffer overflow and discard the excessive part of
2ae3c9
an argument.
2ae3c9
2ae3c9
Signed-off-by: Nikola Forró <nforro@redhat.com>
2ae3c9
---
2ae3c9
 src/api.c | 6 +++++-
2ae3c9
 1 file changed, 5 insertions(+), 1 deletion(-)
2ae3c9
2ae3c9
diff --git a/src/api.c b/src/api.c
2ae3c9
index 217d6c9..4d98081 100644
2ae3c9
--- a/src/api.c
2ae3c9
+++ b/src/api.c
2ae3c9
@@ -4065,13 +4065,17 @@ static int cg_get_procname_from_proc_cmdline(pid_t pid,
2ae3c9
 
2ae3c9
 	while (c != EOF) {
2ae3c9
 		c = fgetc(f);
2ae3c9
-		if ((c != EOF) && (c != '\0')) {
2ae3c9
+		if ((c != EOF) && (c != '\0') && (len < FILENAME_MAX - 1)) {
2ae3c9
 			buf_pname[len] = c;
2ae3c9
 			len++;
2ae3c9
 			continue;
2ae3c9
 		}
2ae3c9
 		buf_pname[len] = '\0';
2ae3c9
 
2ae3c9
+		if (len == FILENAME_MAX - 1)
2ae3c9
+			while ((c != EOF) && (c != '\0'))
2ae3c9
+				c = fgetc(f);
2ae3c9
+
2ae3c9
 		/*
2ae3c9
 		 * The taken process name from /proc/<pid>/status is
2ae3c9
 		 * shortened to 15 characters if it is over. So the
2ae3c9
-- 
2ae3c9
2.17.0
2ae3c9