mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
regex: avoid internal re_realloc overflow
This commit is contained in:
parent
e3b7670be2
commit
54dd0ab31f
@ -1,3 +1,8 @@
|
|||||||
|
2010-01-22 Jim Meyering <jim@meyering.net>
|
||||||
|
|
||||||
|
* posix/regex_internal.c (re_string_realloc_buffers):
|
||||||
|
Detect and handle internal overflow. Patch by Paul Eggert
|
||||||
|
|
||||||
2010-01-20 Andreas Schwab <schwab@redhat.com>
|
2010-01-20 Andreas Schwab <schwab@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c
|
* sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c
|
||||||
|
@ -133,7 +133,14 @@ re_string_realloc_buffers (re_string_t *pstr, int new_buf_len)
|
|||||||
#ifdef RE_ENABLE_I18N
|
#ifdef RE_ENABLE_I18N
|
||||||
if (pstr->mb_cur_max > 1)
|
if (pstr->mb_cur_max > 1)
|
||||||
{
|
{
|
||||||
wint_t *new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len);
|
wint_t *new_wcs;
|
||||||
|
|
||||||
|
/* Avoid overflow in realloc. */
|
||||||
|
const size_t max_object_size = MAX (sizeof (wint_t), sizeof (int));
|
||||||
|
if (BE (SIZE_MAX / max_object_size < new_buf_len, 0))
|
||||||
|
return REG_ESPACE;
|
||||||
|
|
||||||
|
new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len);
|
||||||
if (BE (new_wcs == NULL, 0))
|
if (BE (new_wcs == NULL, 0))
|
||||||
return REG_ESPACE;
|
return REG_ESPACE;
|
||||||
pstr->wcs = new_wcs;
|
pstr->wcs = new_wcs;
|
||||||
|
Loading…
Reference in New Issue
Block a user