Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc,mmap: properly account for stack randomization in mmap_base

When RLIMIT_STACK is, for example, 256MB, the current code results in a
gap between the top of the task and mmap_base of 256MB, failing to take
into account the amount by which the stack address was randomized. In
other words, the stack gets less than RLIMIT_STACK space.

Ensure that the gap between the stack and mmap_base always takes stack
randomization and the stack guard gap into account.

Inspired by Daniel Micay's linux-hardened tree.

Link: http://lkml.kernel.org/r/20170622200033.25714-4-riel@redhat.com
Signed-off-by: Rik van Riel <riel@redhat.com>
Reported-by: Florian Weimer <fweimer@redhat.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Daniel Micay <danielmicay@gmail.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Hugh Dickins <hughd@google.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Rik van Riel and committed by
Linus Torvalds
0a782dc3 cf92251d

+19 -9
+19 -9
arch/powerpc/mm/mmap.c
··· 34 34 /* 35 35 * Top of mmap area (just below the process stack). 36 36 * 37 - * Leave at least a ~128 MB hole on 32bit applications. 38 - * 39 - * On 64bit applications we randomise the stack by 1GB so we need to 40 - * space our mmap start address by a further 1GB, otherwise there is a 41 - * chance the mmap area will end up closer to the stack than our ulimit 42 - * requires. 37 + * Leave at least a ~128 MB hole. 43 38 */ 44 - #define MIN_GAP32 (128*1024*1024) 45 - #define MIN_GAP64 ((128 + 1024)*1024*1024UL) 46 - #define MIN_GAP ((is_32bit_task()) ? MIN_GAP32 : MIN_GAP64) 39 + #define MIN_GAP (128*1024*1024) 47 40 #define MAX_GAP (TASK_SIZE/6*5) 48 41 49 42 static inline int mmap_is_legacy(void) ··· 64 71 return rnd << PAGE_SHIFT; 65 72 } 66 73 74 + static inline unsigned long stack_maxrandom_size(void) 75 + { 76 + if (!(current->flags & PF_RANDOMIZE)) 77 + return 0; 78 + 79 + /* 8MB for 32bit, 1GB for 64bit */ 80 + if (is_32bit_task()) 81 + return (1<<23); 82 + else 83 + return (1<<30); 84 + } 85 + 67 86 static inline unsigned long mmap_base(unsigned long rnd) 68 87 { 69 88 unsigned long gap = rlimit(RLIMIT_STACK); 89 + unsigned long pad = stack_maxrandom_size() + stack_guard_gap; 90 + 91 + /* Values close to RLIM_INFINITY can overflow. */ 92 + if (gap + pad > gap) 93 + gap += pad; 70 94 71 95 if (gap < MIN_GAP) 72 96 gap = MIN_GAP;