blob: 62285fe77b0f13ee2d734cf369ac728c71796102 [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>
Dmitry Safonove13b73d2017-03-14 14:41:26 +030033#include <linux/compat.h>
Michal Hocko80938332009-09-08 11:01:55 +020034#include <asm/elf.h>
35
Jan-Simon Möllercc995352014-09-05 16:16:45 -070036struct va_alignment __read_mostly va_align = {
Borislav Petkov9387f772011-08-06 14:31:38 +020037 .flags = -1,
38};
39
Kirill A. Shutemove8f01a82017-07-17 01:59:50 +030040unsigned long task_size_32bit(void)
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030041{
42 return IA32_PAGE_OFFSET;
43}
44
Kirill A. Shutemovb569bab2017-07-17 01:59:52 +030045unsigned long task_size_64bit(int full_addr_space)
Dmitry Safonov1b028f72017-03-06 17:17:19 +030046{
Kirill A. Shutemovb569bab2017-07-17 01:59:52 +030047 return full_addr_space ? TASK_SIZE_MAX : DEFAULT_MAP_WINDOW;
Dmitry Safonov1b028f72017-03-06 17:17:19 +030048}
49
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030050static unsigned long stack_maxrandom_size(unsigned long task_size)
Michal Hocko80938332009-09-08 11:01:55 +020051{
Hector Marco-Gisbert4e7c22d2015-02-14 09:33:50 -080052 unsigned long max = 0;
Oleg Nesterov01578e32017-08-15 17:40:11 +020053 if (current->flags & PF_RANDOMIZE) {
Kirill A. Shutemove8f01a82017-07-17 01:59:50 +030054 max = (-1UL) & __STACK_RND_MASK(task_size == task_size_32bit());
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030055 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 Kosinacc503c12008-01-30 13:31:07 +010076 return sysctl_legacy_va_layout;
77}
78
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030079static unsigned long arch_rnd(unsigned int rndbits)
80{
Oleg Nesterov47ac5482017-08-15 17:39:52 +020081 if (!(current->flags & PF_RANDOMIZE))
82 return 0;
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030083 return (get_random_long() & ((1UL << rndbits) - 1)) << PAGE_SHIFT;
84}
85
Kees Cook2b68f6c2015-04-14 15:48:00 -070086unsigned long arch_mmap_rnd(void)
Harvey Harrison675a0812008-01-30 13:31:10 +010087{
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030088 return arch_rnd(mmap_is_ia32() ? mmap32_rnd_bits : mmap64_rnd_bits);
Harvey Harrison675a0812008-01-30 13:31:10 +010089}
90
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030091static unsigned long mmap_base(unsigned long rnd, unsigned long task_size)
Harvey Harrison675a0812008-01-30 13:31:10 +010092{
Jiri Slaby2854e722010-01-27 17:32:22 +010093 unsigned long gap = rlimit(RLIMIT_STACK);
Rik van Rielc204d212017-07-12 14:36:33 -070094 unsigned long pad = stack_maxrandom_size(task_size) + stack_guard_gap;
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030095 unsigned long gap_min, gap_max;
Harvey Harrison675a0812008-01-30 13:31:10 +010096
Rik van Rielc204d212017-07-12 14:36:33 -070097 /* Values close to RLIM_INFINITY can overflow. */
98 if (gap + pad > gap)
99 gap += pad;
100
Dmitry Safonov8f3e4742017-03-06 17:17:18 +0300101 /*
102 * Top of mmap area (just below the process stack).
103 * Leave an at least ~128 MB hole with possible stack randomization.
104 */
Rik van Rielc204d212017-07-12 14:36:33 -0700105 gap_min = SIZE_128M;
Dmitry Safonov8f3e4742017-03-06 17:17:18 +0300106 gap_max = (task_size / 6) * 5;
Harvey Harrison675a0812008-01-30 13:31:10 +0100107
Dmitry Safonov8f3e4742017-03-06 17:17:18 +0300108 if (gap < gap_min)
109 gap = gap_min;
110 else if (gap > gap_max)
111 gap = gap_max;
112
113 return PAGE_ALIGN(task_size - gap - rnd);
114}
115
116static unsigned long mmap_legacy_base(unsigned long rnd,
117 unsigned long task_size)
118{
119 return __TASK_UNMAPPED_BASE(task_size) + rnd;
Harvey Harrison675a0812008-01-30 13:31:10 +0100120}
121
122/*
Jiri Kosinacc503c12008-01-30 13:31:07 +0100123 * This function, called very early during the creation of a new
124 * process VM image, sets up which VM layout function to use:
125 */
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300126static void arch_pick_mmap_base(unsigned long *base, unsigned long *legacy_base,
127 unsigned long random_factor, unsigned long task_size)
128{
129 *legacy_base = mmap_legacy_base(random_factor, task_size);
130 if (mmap_is_legacy())
131 *base = *legacy_base;
132 else
133 *base = mmap_base(random_factor, task_size);
134}
135
Jiri Kosinacc503c12008-01-30 13:31:07 +0100136void arch_pick_mmap_layout(struct mm_struct *mm)
137{
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300138 if (mmap_is_legacy())
Jiri Kosinacc503c12008-01-30 13:31:07 +0100139 mm->get_unmapped_area = arch_get_unmapped_area;
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300140 else
Jiri Kosinacc503c12008-01-30 13:31:07 +0100141 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300142
143 arch_pick_mmap_base(&mm->mmap_base, &mm->mmap_legacy_base,
Kirill A. Shutemovb569bab2017-07-17 01:59:52 +0300144 arch_rnd(mmap64_rnd_bits), task_size_64bit(0));
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300145
146#ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
147 /*
148 * The mmap syscall mapping base decision depends solely on the
149 * syscall type (64-bit or compat). This applies for 64bit
150 * applications and 32bit applications. The 64bit syscall uses
151 * mmap_base, the compat syscall uses mmap_compat_base.
152 */
153 arch_pick_mmap_base(&mm->mmap_compat_base, &mm->mmap_compat_legacy_base,
Kirill A. Shutemove8f01a82017-07-17 01:59:50 +0300154 arch_rnd(mmap32_rnd_bits), task_size_32bit());
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300155#endif
Jiri Kosinacc503c12008-01-30 13:31:07 +0100156}
Kirill A. Shutemova89652762015-07-20 14:29:58 -0700157
Dmitry Safonove13b73d2017-03-14 14:41:26 +0300158unsigned long get_mmap_base(int is_legacy)
159{
160 struct mm_struct *mm = current->mm;
161
162#ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
163 if (in_compat_syscall()) {
164 return is_legacy ? mm->mmap_compat_legacy_base
165 : mm->mmap_compat_base;
166 }
167#endif
168 return is_legacy ? mm->mmap_legacy_base : mm->mmap_base;
169}
170
Kirill A. Shutemova89652762015-07-20 14:29:58 -0700171const char *arch_vma_name(struct vm_area_struct *vma)
172{
173 if (vma->vm_flags & VM_MPX)
174 return "[mpx]";
175 return NULL;
176}
Kirill A. Shutemov1e0f25d2017-11-15 17:36:06 +0300177
178/**
179 * mmap_address_hint_valid - Validate the address hint of mmap
180 * @addr: Address hint
181 * @len: Mapping length
182 *
183 * Check whether @addr and @addr + @len result in a valid mapping.
184 *
185 * On 32bit this only checks whether @addr + @len is <= TASK_SIZE.
186 *
187 * On 64bit with 5-level page tables another sanity check is required
188 * because mappings requested by mmap(@addr, 0) which cross the 47-bit
189 * virtual address boundary can cause the following theoretical issue:
190 *
191 * An application calls mmap(addr, 0), i.e. without MAP_FIXED, where @addr
192 * is below the border of the 47-bit address space and @addr + @len is
193 * above the border.
194 *
195 * With 4-level paging this request succeeds, but the resulting mapping
196 * address will always be within the 47-bit virtual address space, because
197 * the hint address does not result in a valid mapping and is
198 * ignored. Hence applications which are not prepared to handle virtual
199 * addresses above 47-bit work correctly.
200 *
201 * With 5-level paging this request would be granted and result in a
202 * mapping which crosses the border of the 47-bit virtual address
203 * space. If the application cannot handle addresses above 47-bit this
204 * will lead to misbehaviour and hard to diagnose failures.
205 *
206 * Therefore ignore address hints which would result in a mapping crossing
207 * the 47-bit virtual address boundary.
208 *
209 * Note, that in the same scenario with MAP_FIXED the behaviour is
210 * different. The request with @addr < 47-bit and @addr + @len > 47-bit
211 * fails on a 4-level paging machine but succeeds on a 5-level paging
212 * machine. It is reasonable to expect that an application does not rely on
213 * the failure of such a fixed mapping request, so the restriction is not
214 * applied.
215 */
216bool mmap_address_hint_valid(unsigned long addr, unsigned long len)
217{
218 if (TASK_SIZE - len < addr)
219 return false;
220
221 return (addr > DEFAULT_MAP_WINDOW) == (addr + len > DEFAULT_MAP_WINDOW);
222}