Merge tag 'hsi-for-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi
[deliverable/linux.git] / arch / x86 / mm / mmap.c
CommitLineData
cc503c1b 1/*
675a0813 2 * Flexible mmap layout support
cc503c1b
JK
3 *
4 * Based on code by Ingo Molnar and Andi Kleen, copyrighted
5 * as follows:
6 *
8f47e163 7 * Copyright 2003-2009 Red Hat Inc.
cc503c1b
JK
8 * All Rights Reserved.
9 * Copyright 2005 Andi Kleen, SUSE Labs.
10 * Copyright 2007 Jiri Kosina, SUSE Labs.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
8817210d 25 */
cc503c1b
JK
26
27#include <linux/personality.h>
8817210d 28#include <linux/mm.h>
8817210d 29#include <linux/random.h>
cc503c1b
JK
30#include <linux/limits.h>
31#include <linux/sched.h>
80938332
MH
32#include <asm/elf.h>
33
cc99535e 34struct va_alignment __read_mostly va_align = {
9387f774
BP
35 .flags = -1,
36};
37
4e7c22d4 38static unsigned long stack_maxrandom_size(void)
80938332 39{
4e7c22d4 40 unsigned long max = 0;
80938332
MH
41 if ((current->flags & PF_RANDOMIZE) &&
42 !(current->personality & ADDR_NO_RANDOMIZE)) {
4e7c22d4 43 max = ((-1UL) & STACK_RND_MASK) << PAGE_SHIFT;
80938332
MH
44 }
45
46 return max;
47}
48
cc503c1b
JK
49/*
50 * Top of mmap area (just below the process stack).
51 *
80938332 52 * Leave an at least ~128 MB hole with possible stack randomization.
cc503c1b 53 */
80938332 54#define MIN_GAP (128*1024*1024UL + stack_maxrandom_size())
cc503c1b 55#define MAX_GAP (TASK_SIZE/6*5)
8817210d 56
954683a2 57static int mmap_is_legacy(void)
cc503c1b
JK
58{
59 if (current->personality & ADDR_COMPAT_LAYOUT)
60 return 1;
61
2854e72b 62 if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
cc503c1b
JK
63 return 1;
64
65 return sysctl_legacy_va_layout;
66}
67
2b68f6ca 68unsigned long arch_mmap_rnd(void)
675a0813 69{
82168140 70 unsigned long rnd;
675a0813 71
82168140 72 if (mmap_is_ia32())
9e08f57d 73#ifdef CONFIG_COMPAT
5ef11c35 74 rnd = get_random_long() & ((1UL << mmap_rnd_compat_bits) - 1);
9e08f57d 75#else
5ef11c35 76 rnd = get_random_long() & ((1UL << mmap_rnd_bits) - 1);
9e08f57d 77#endif
82168140 78 else
5ef11c35 79 rnd = get_random_long() & ((1UL << mmap_rnd_bits) - 1);
82168140 80
675a0813
HH
81 return rnd << PAGE_SHIFT;
82}
83
82168140 84static unsigned long mmap_base(unsigned long rnd)
675a0813 85{
2854e72b 86 unsigned long gap = rlimit(RLIMIT_STACK);
675a0813
HH
87
88 if (gap < MIN_GAP)
89 gap = MIN_GAP;
90 else if (gap > MAX_GAP)
91 gap = MAX_GAP;
92
82168140 93 return PAGE_ALIGN(TASK_SIZE - gap - rnd);
675a0813
HH
94}
95
cc503c1b
JK
96/*
97 * This function, called very early during the creation of a new
98 * process VM image, sets up which VM layout function to use:
99 */
100void arch_pick_mmap_layout(struct mm_struct *mm)
101{
82168140
KC
102 unsigned long random_factor = 0UL;
103
104 if (current->flags & PF_RANDOMIZE)
2b68f6ca 105 random_factor = arch_mmap_rnd();
82168140 106
8b8addf8 107 mm->mmap_legacy_base = TASK_UNMAPPED_BASE + random_factor;
41aacc1e 108
675a0813 109 if (mmap_is_legacy()) {
41aacc1e 110 mm->mmap_base = mm->mmap_legacy_base;
cc503c1b 111 mm->get_unmapped_area = arch_get_unmapped_area;
cc503c1b 112 } else {
82168140 113 mm->mmap_base = mmap_base(random_factor);
cc503c1b 114 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
cc503c1b 115 }
8817210d 116}
a8965276
KS
117
118const char *arch_vma_name(struct vm_area_struct *vma)
119{
120 if (vma->vm_flags & VM_MPX)
121 return "[mpx]";
122 return NULL;
123}
This page took 0.984839 seconds and 5 git commands to generate.