diff options
author | Helge Deller <deller@gmx.de> | 2017-07-14 14:49:38 -0700 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2017-10-12 15:28:06 +0100 |
commit | 4bb02b6aa1d043d9d9d2b24cf11a6af8e88c4767 (patch) | |
tree | 7424034dd1591cda3739ffc6b23437765f2e5626 | |
parent | 5116caf8fc868e061e074da65947a9ff6f856bff (diff) | |
download | linux-stable-4bb02b6aa1d043d9d9d2b24cf11a6af8e88c4767.tar.gz linux-stable-4bb02b6aa1d043d9d9d2b24cf11a6af8e88c4767.tar.bz2 linux-stable-4bb02b6aa1d043d9d9d2b24cf11a6af8e88c4767.zip |
mm: fix overflow check in expand_upwards()
commit 37511fb5c91db93d8bd6e3f52f86e5a7ff7cfcdf upstream.
Jörn Engel noticed that the expand_upwards() function might not return
-ENOMEM in case the requested address is (unsigned long)-PAGE_SIZE and
if the architecture didn't defined TASK_SIZE as multiple of PAGE_SIZE.
Affected architectures are arm, frv, m68k, blackfin, h8300 and xtensa
which all define TASK_SIZE as 0xffffffff, but since none of those have
an upwards-growing stack we currently have no actual issue.
Nevertheless let's fix this just in case any of the architectures with
an upward-growing stack (currently parisc, metag and partly ia64) define
TASK_SIZE similar.
Link: http://lkml.kernel.org/r/20170702192452.GA11868@p100.box
Fixes: bd726c90b6b8 ("Allow stack to grow up to address space limit")
Signed-off-by: Helge Deller <deller@gmx.de>
Reported-by: Jörn Engel <joern@purestorage.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r-- | mm/mmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mmap.c b/mm/mmap.c index f5dd4d9d5f31..44134131b8f1 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -2141,7 +2141,7 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address) /* Guard against exceeding limits of the address space. */ address &= PAGE_MASK; - if (address >= TASK_SIZE) + if (address >= (TASK_SIZE & PAGE_MASK)) return -ENOMEM; address += PAGE_SIZE; |