vapier 15/07/21 03:48:53
Added:
00_all_0020-Fix-BZ-17269-_IO_wstr_overflow-integer-overflow.patch
Log:
fix from upstream for _IO_wstr_overflow integer overflow #541246
Revision Changes Path
1.1
src/patchsets/glibc/2.21/00_all_0020-Fix-BZ-17269-_IO_wstr_overflow-integer-overflow.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.21/00_all_0020-Fix-BZ-17269-_IO_wstr_overflow-integer-overflow.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.21/00_all_0020-Fix-BZ-17269-_IO_wstr_overflow-integer-overflow.patch?rev=1.1&content-type=text/plain
Index: 00_all_0020-Fix-BZ-17269-_IO_wstr_overflow-integer-overflow.patch
===================================================================
>From 15ec5f09005dd20b65d0a5de3afba391707bce2f Mon Sep 17 00:00:00 2001
From: Paul Pluzhnikov <[email protected]>
Date: Sun, 22 Feb 2015 12:01:47 -0800
Subject: [PATCH] Fix BZ #17269 -- _IO_wstr_overflow integer overflow
(cherry picked from commit bdf1ff052a8e23d637f2c838fa5642d78fcedc33)
(cherry picked from commit 8a4e5cc6574a419d5724bef6be98d705d58db48d)
---
libio/wstrops.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/libio/wstrops.c b/libio/wstrops.c
index 43d847d..3993579 100644
--- a/libio/wstrops.c
+++ b/libio/wstrops.c
@@ -95,8 +95,11 @@ _IO_wstr_overflow (fp, c)
wchar_t *old_buf = fp->_wide_data->_IO_buf_base;
size_t old_wblen = _IO_wblen (fp);
_IO_size_t new_size = 2 * old_wblen + 100;
- if (new_size < old_wblen)
+
+ if (__glibc_unlikely (new_size < old_wblen)
+ || __glibc_unlikely (new_size > SIZE_MAX / sizeof (wchar_t)))
return EOF;
+
new_buf
= (wchar_t *) (*((_IO_strfile *) fp)->_s._allocate_buffer) (new_size
*
sizeof (wchar_t));
@@ -186,6 +189,9 @@ enlarge_userbuf (_IO_FILE *fp, _IO_off64_t offset, int
reading)
return 1;
_IO_size_t newsize = offset + 100;
+ if (__glibc_unlikely (newsize > SIZE_MAX / sizeof (wchar_t)))
+ return 1;
+
wchar_t *oldbuf = wd->_IO_buf_base;
wchar_t *newbuf
= (wchar_t *) (*((_IO_strfile *) fp)->_s._allocate_buffer) (newsize
--
2.4.4