[PATCH v3] [BZ #15857] malloc: Check for integer overflow in memalign.
Siddhesh Poyarekar
siddhesh.poyarekar@gmail.com
Tue Sep 10 13:34:00 GMT 2013
On 10 September 2013 18:46, Will Newton <will.newton@linaro.org> wrote:
> diff --git a/malloc/malloc.c b/malloc/malloc.c
> index 3148c5f..f7718a9 100644
> --- a/malloc/malloc.c
> +++ b/malloc/malloc.c
> @@ -3015,6 +3015,13 @@ __libc_memalign(size_t alignment, size_t bytes)
> /* Otherwise, ensure that it is at least a minimum chunk size */
> if (alignment < MINSIZE) alignment = MINSIZE;
>
> + /* Check for overflow. */
> + if (bytes > SIZE_MAX - alignment - MINSIZE)
> + {
> + __set_errno (ENOMEM);
> + return 0;
> + }
> +
> arena_get(ar_ptr, bytes + alignment + MINSIZE);
> if(!ar_ptr)
> return 0;
Looks OK to me.
Siddhesh
--
http://siddhesh.in
More information about the Libc-alpha
mailing list