blob: 529ab79800afdbe3cc551e1f3c124684227e38b8 [file] [log] [blame]
Jiri Kosinacc503c12008-01-30 13:31:07 +01001/*
Harvey Harrison675a0812008-01-30 13:31:10 +01002 * Flexible mmap layout support
Jiri Kosinacc503c12008-01-30 13:31:07 +01003 *
4 * Based on code by Ingo Molnar and Andi Kleen, copyrighted
5 * as follows:
6 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01007 * Copyright 2003-2009 Red Hat Inc.
Jiri Kosinacc503c12008-01-30 13:31:07 +01008 * 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
Andi Kleen88172102006-01-17 07:03:38 +010025 */
Jiri Kosinacc503c12008-01-30 13:31:07 +010026
27#include <linux/personality.h>
Andi Kleen88172102006-01-17 07:03:38 +010028#include <linux/mm.h>
Andi Kleen88172102006-01-17 07:03:38 +010029#include <linux/random.h>
Jiri Kosinacc503c12008-01-30 13:31:07 +010030#include <linux/limits.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010031#include <linux/sched/signal.h>
Ingo Molnar01042602017-02-08 18:51:31 +010032#include <linux/sched/mm.h>
Michal Hocko80938332009-09-08 11:01:55 +020033#include <asm/elf.h>
34
Jan-Simon Möllercc995352014-09-05 16:16:45 -070035struct va_alignment __read_mostly va_align = {
Borislav Petkov9387f772011-08-06 14:31:38 +020036 .flags = -1,
37};
38
Dmitry Safonov1b028f72017-03-06 17:17:19 +030039unsigned long tasksize_32bit(void)
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030040{
41 return IA32_PAGE_OFFSET;
42}
43
Dmitry Safonov1b028f72017-03-06 17:17:19 +030044unsigned long tasksize_64bit(void)
45{
46 return TASK_SIZE_MAX;
47}
48
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030049static unsigned long stack_maxrandom_size(unsigned long task_size)
Michal Hocko80938332009-09-08 11:01:55 +020050{
Hector Marco-Gisbert4e7c22d2015-02-14 09:33:50 -080051 unsigned long max = 0;
Michal Hocko80938332009-09-08 11:01:55 +020052 if ((current->flags & PF_RANDOMIZE) &&
53 !(current->personality & ADDR_NO_RANDOMIZE)) {
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030054 max = (-1UL) & __STACK_RND_MASK(task_size == tasksize_32bit());
55 max <<= PAGE_SHIFT;
Michal Hocko80938332009-09-08 11:01:55 +020056 }
57
58 return max;
59}
60
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030061#ifdef CONFIG_COMPAT
62# define mmap32_rnd_bits mmap_rnd_compat_bits
63# define mmap64_rnd_bits mmap_rnd_bits
64#else
65# define mmap32_rnd_bits mmap_rnd_bits
66# define mmap64_rnd_bits mmap_rnd_bits
67#endif
68
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030069#define SIZE_128M (128 * 1024 * 1024UL)
70
Andrew Morton954683a2008-01-30 13:31:07 +010071static int mmap_is_legacy(void)
Jiri Kosinacc503c12008-01-30 13:31:07 +010072{
73 if (current->personality & ADDR_COMPAT_LAYOUT)
74 return 1;
75
Jiri Slaby2854e722010-01-27 17:32:22 +010076 if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
Jiri Kosinacc503c12008-01-30 13:31:07 +010077 return 1;
78
79 return sysctl_legacy_va_layout;
80}
81
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030082static unsigned long arch_rnd(unsigned int rndbits)
83{
84 return (get_random_long() & ((1UL << rndbits) - 1)) << PAGE_SHIFT;
85}
86
Kees Cook2b68f6c2015-04-14 15:48:00 -070087unsigned long arch_mmap_rnd(void)
Harvey Harrison675a0812008-01-30 13:31:10 +010088{
Dmitry Safonov1b028f72017-03-06 17:17:19 +030089 if (!(current->flags & PF_RANDOMIZE))
90 return 0;
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030091 return arch_rnd(mmap_is_ia32() ? mmap32_rnd_bits : mmap64_rnd_bits);
Harvey Harrison675a0812008-01-30 13:31:10 +010092}
93
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030094static unsigned long mmap_base(unsigned long rnd, unsigned long task_size)
Harvey Harrison675a0812008-01-30 13:31:10 +010095{
Jiri Slaby2854e722010-01-27 17:32:22 +010096 unsigned long gap = rlimit(RLIMIT_STACK);
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030097 unsigned long gap_min, gap_max;
Harvey Harrison675a0812008-01-30 13:31:10 +010098
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030099 /*
100 * Top of mmap area (just below the process stack).
101 * Leave an at least ~128 MB hole with possible stack randomization.
102 */
103 gap_min = SIZE_128M + stack_maxrandom_size(task_size);
104 gap_max = (task_size / 6) * 5;
Harvey Harrison675a0812008-01-30 13:31:10 +0100105
Dmitry Safonov8f3e4742017-03-06 17:17:18 +0300106 if (gap < gap_min)
107 gap = gap_min;
108 else if (gap > gap_max)
109 gap = gap_max;
110
111 return PAGE_ALIGN(task_size - gap - rnd);
112}
113
114static unsigned long mmap_legacy_base(unsigned long rnd,
115 unsigned long task_size)
116{
117 return __TASK_UNMAPPED_BASE(task_size) + rnd;
Harvey Harrison675a0812008-01-30 13:31:10 +0100118}
119
120/*
Jiri Kosinacc503c12008-01-30 13:31:07 +0100121 * This function, called very early during the creation of a new
122 * process VM image, sets up which VM layout function to use:
123 */
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300124static void arch_pick_mmap_base(unsigned long *base, unsigned long *legacy_base,
125 unsigned long random_factor, unsigned long task_size)
126{
127 *legacy_base = mmap_legacy_base(random_factor, task_size);
128 if (mmap_is_legacy())
129 *base = *legacy_base;
130 else
131 *base = mmap_base(random_factor, task_size);
132}
133
Jiri Kosinacc503c12008-01-30 13:31:07 +0100134void arch_pick_mmap_layout(struct mm_struct *mm)
135{
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300136 if (mmap_is_legacy())
Jiri Kosinacc503c12008-01-30 13:31:07 +0100137 mm->get_unmapped_area = arch_get_unmapped_area;
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300138 else
Jiri Kosinacc503c12008-01-30 13:31:07 +0100139 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300140
141 arch_pick_mmap_base(&mm->mmap_base, &mm->mmap_legacy_base,
142 arch_rnd(mmap64_rnd_bits), tasksize_64bit());
143
144#ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
145 /*
146 * The mmap syscall mapping base decision depends solely on the
147 * syscall type (64-bit or compat). This applies for 64bit
148 * applications and 32bit applications. The 64bit syscall uses
149 * mmap_base, the compat syscall uses mmap_compat_base.
150 */
151 arch_pick_mmap_base(&mm->mmap_compat_base, &mm->mmap_compat_legacy_base,
152 arch_rnd(mmap32_rnd_bits), tasksize_32bit());
153#endif
Jiri Kosinacc503c12008-01-30 13:31:07 +0100154}
Kirill A. Shutemova89652762015-07-20 14:29:58 -0700155
156const char *arch_vma_name(struct vm_area_struct *vma)
157{
158 if (vma->vm_flags & VM_MPX)
159 return "[mpx]";
160 return NULL;
161}