diff options
author | Pochang Chen <johnchen902@gmail.com> | 2018-08-16 15:24:24 -0400 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2018-11-09 10:16:35 -0500 |
commit | 510a25f2d208e3b0c86f54b053f61c5b647e4b9b (patch) | |
tree | 5e33ff399a69dd997831a1a6ad3870ff58d70b54 /malloc/malloc.c | |
parent | 168035056eab9db4ee0e5d7f62060e111b86a0a4 (diff) | |
download | glibc-510a25f2d208e3b0c86f54b053f61c5b647e4b9b.tar.gz glibc-510a25f2d208e3b0c86f54b053f61c5b647e4b9b.tar.xz glibc-510a25f2d208e3b0c86f54b053f61c5b647e4b9b.zip |
malloc: Verify size of top chunk.
The House of Force is a well-known technique to exploit heap overflow. In essence, this exploit takes three steps: 1. Overwrite the size of top chunk with very large value (e.g. -1). 2. Request x bytes from top chunk. As the size of top chunk is corrupted, x can be arbitrarily large and top chunk will still be offset by x. 3. The next allocation from top chunk will thus be controllable. If we verify the size of top chunk at step 2, we can stop such attack. (cherry picked from commit 30a17d8c95fbfb15c52d1115803b63aaa73a285c)
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r-- | malloc/malloc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index e247c77b7d..9431108626 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -4076,6 +4076,9 @@ _int_malloc (mstate av, size_t bytes) victim = av->top; size = chunksize (victim); + if (__glibc_unlikely (size > av->system_mem)) + malloc_printerr ("malloc(): corrupted top size"); + if ((unsigned long) (size) >= (unsigned long) (nb + MINSIZE)) { remainder_size = size - nb; |