aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjun Shankar <arjun@redhat.com>2024-01-15 17:44:45 +0100
committerArjun Shankar <arjun@redhat.com>2024-01-30 15:57:01 +0100
commitb9b7d6a27aa0632f334352fa400771115b3c69b7 (patch)
tree447f6cb6a638cd69dd5766bbd1f7f13f842b82e5
parent2bc9d7c002bdac38b5c2a3f11b78e309d7765b83 (diff)
downloadglibc-b9b7d6a27aa0632f334352fa400771115b3c69b7.tar
glibc-b9b7d6a27aa0632f334352fa400771115b3c69b7.tar.gz
glibc-b9b7d6a27aa0632f334352fa400771115b3c69b7.tar.bz2
glibc-b9b7d6a27aa0632f334352fa400771115b3c69b7.zip
syslog: Fix integer overflow in __vsyslog_internal (CVE-2023-6780)
__vsyslog_internal calculated a buffer size by adding two integers, but did not first check if the addition would overflow. This commit fixes that. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com> (cherry picked from commit ddf542da94caf97ff43cc2875c88749880b7259b)
-rw-r--r--misc/syslog.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/syslog.c b/misc/syslog.c
index 3108ae9134..9336036666 100644
--- a/misc/syslog.c
+++ b/misc/syslog.c
@@ -41,6 +41,7 @@ static char sccsid[] = "@(#)syslog.c 8.4 (Berkeley) 3/18/94";
#include <sys/uio.h>
#include <sys/un.h>
#include <syslog.h>
+#include <limits.h>
static int LogType = SOCK_DGRAM; /* type of socket connection */
static int LogFile = -1; /* fd for log */
@@ -217,7 +218,7 @@ __vsyslog_internal (int pri, const char *fmt, va_list ap,
vl = __vsnprintf_internal (pos, len, fmt, apc, mode_flags);
va_end (apc);
- if (vl < 0)
+ if (vl < 0 || vl >= INT_MAX - l)
goto out;
if (vl >= len)