blob: aae9a933dfd4cac714ff5e0d31ec93673754c5cd [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Jiri Kosinacc503c12008-01-30 13:31:07 +01002/*
Harvey Harrison675a0812008-01-30 13:31:10 +01003 * Flexible mmap layout support
Jiri Kosinacc503c12008-01-30 13:31:07 +01004 *
5 * Based on code by Ingo Molnar and Andi Kleen, copyrighted
6 * as follows:
7 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01008 * Copyright 2003-2009 Red Hat Inc.
Jiri Kosinacc503c12008-01-30 13:31:07 +01009 * All Rights Reserved.
10 * Copyright 2005 Andi Kleen, SUSE Labs.
11 * Copyright 2007 Jiri Kosina, SUSE Labs.
Andi Kleen88172102006-01-17 07:03:38 +010012 */
Jiri Kosinacc503c12008-01-30 13:31:07 +010013
14#include <linux/personality.h>
Andi Kleen88172102006-01-17 07:03:38 +010015#include <linux/mm.h>
Andi Kleen88172102006-01-17 07:03:38 +010016#include <linux/random.h>
Jiri Kosinacc503c12008-01-30 13:31:07 +010017#include <linux/limits.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010018#include <linux/sched/signal.h>
Ingo Molnar01042602017-02-08 18:51:31 +010019#include <linux/sched/mm.h>
Dmitry Safonove13b73d2017-03-14 14:41:26 +030020#include <linux/compat.h>
Michal Hocko80938332009-09-08 11:01:55 +020021#include <asm/elf.h>
22
Craig Bergstrombe62a322017-11-15 15:29:51 -070023#include "physaddr.h"
24
Jan-Simon Möllercc995352014-09-05 16:16:45 -070025struct va_alignment __read_mostly va_align = {
Borislav Petkov9387f772011-08-06 14:31:38 +020026 .flags = -1,
27};
28
Kirill A. Shutemove8f01a82017-07-17 01:59:50 +030029unsigned long task_size_32bit(void)
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030030{
31 return IA32_PAGE_OFFSET;
32}
33
Kirill A. Shutemovb569bab2017-07-17 01:59:52 +030034unsigned long task_size_64bit(int full_addr_space)
Dmitry Safonov1b028f72017-03-06 17:17:19 +030035{
Kirill A. Shutemovb569bab2017-07-17 01:59:52 +030036 return full_addr_space ? TASK_SIZE_MAX : DEFAULT_MAP_WINDOW;
Dmitry Safonov1b028f72017-03-06 17:17:19 +030037}
38
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030039static unsigned long stack_maxrandom_size(unsigned long task_size)
Michal Hocko80938332009-09-08 11:01:55 +020040{
Hector Marco-Gisbert4e7c22d2015-02-14 09:33:50 -080041 unsigned long max = 0;
Oleg Nesterov01578e32017-08-15 17:40:11 +020042 if (current->flags & PF_RANDOMIZE) {
Kirill A. Shutemove8f01a82017-07-17 01:59:50 +030043 max = (-1UL) & __STACK_RND_MASK(task_size == task_size_32bit());
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030044 max <<= PAGE_SHIFT;
Michal Hocko80938332009-09-08 11:01:55 +020045 }
46
47 return max;
48}
49
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030050#ifdef CONFIG_COMPAT
51# define mmap32_rnd_bits mmap_rnd_compat_bits
52# define mmap64_rnd_bits mmap_rnd_bits
53#else
54# define mmap32_rnd_bits mmap_rnd_bits
55# define mmap64_rnd_bits mmap_rnd_bits
56#endif
57
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030058#define SIZE_128M (128 * 1024 * 1024UL)
59
Andrew Morton954683a2008-01-30 13:31:07 +010060static int mmap_is_legacy(void)
Jiri Kosinacc503c12008-01-30 13:31:07 +010061{
62 if (current->personality & ADDR_COMPAT_LAYOUT)
63 return 1;
64
Jiri Kosinacc503c12008-01-30 13:31:07 +010065 return sysctl_legacy_va_layout;
66}
67
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030068static unsigned long arch_rnd(unsigned int rndbits)
69{
Oleg Nesterov47ac5482017-08-15 17:39:52 +020070 if (!(current->flags & PF_RANDOMIZE))
71 return 0;
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030072 return (get_random_long() & ((1UL << rndbits) - 1)) << PAGE_SHIFT;
73}
74
Kees Cook2b68f6c2015-04-14 15:48:00 -070075unsigned long arch_mmap_rnd(void)
Harvey Harrison675a0812008-01-30 13:31:10 +010076{
Dmitry Safonov6a0b41d2017-03-06 17:17:17 +030077 return arch_rnd(mmap_is_ia32() ? mmap32_rnd_bits : mmap64_rnd_bits);
Harvey Harrison675a0812008-01-30 13:31:10 +010078}
79
Kees Cook8f2af152018-04-10 16:34:53 -070080static unsigned long mmap_base(unsigned long rnd, unsigned long task_size,
81 struct rlimit *rlim_stack)
Harvey Harrison675a0812008-01-30 13:31:10 +010082{
Kees Cook8f2af152018-04-10 16:34:53 -070083 unsigned long gap = rlim_stack->rlim_cur;
Rik van Rielc204d212017-07-12 14:36:33 -070084 unsigned long pad = stack_maxrandom_size(task_size) + stack_guard_gap;
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030085 unsigned long gap_min, gap_max;
Harvey Harrison675a0812008-01-30 13:31:10 +010086
Rik van Rielc204d212017-07-12 14:36:33 -070087 /* Values close to RLIM_INFINITY can overflow. */
88 if (gap + pad > gap)
89 gap += pad;
90
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030091 /*
92 * Top of mmap area (just below the process stack).
93 * Leave an at least ~128 MB hole with possible stack randomization.
94 */
Rik van Rielc204d212017-07-12 14:36:33 -070095 gap_min = SIZE_128M;
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030096 gap_max = (task_size / 6) * 5;
Harvey Harrison675a0812008-01-30 13:31:10 +010097
Dmitry Safonov8f3e4742017-03-06 17:17:18 +030098 if (gap < gap_min)
99 gap = gap_min;
100 else if (gap > gap_max)
101 gap = gap_max;
102
103 return PAGE_ALIGN(task_size - gap - rnd);
104}
105
106static unsigned long mmap_legacy_base(unsigned long rnd,
107 unsigned long task_size)
108{
109 return __TASK_UNMAPPED_BASE(task_size) + rnd;
Harvey Harrison675a0812008-01-30 13:31:10 +0100110}
111
112/*
Jiri Kosinacc503c12008-01-30 13:31:07 +0100113 * This function, called very early during the creation of a new
114 * process VM image, sets up which VM layout function to use:
115 */
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300116static void arch_pick_mmap_base(unsigned long *base, unsigned long *legacy_base,
Kees Cook8f2af152018-04-10 16:34:53 -0700117 unsigned long random_factor, unsigned long task_size,
118 struct rlimit *rlim_stack)
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300119{
120 *legacy_base = mmap_legacy_base(random_factor, task_size);
121 if (mmap_is_legacy())
122 *base = *legacy_base;
123 else
Kees Cook8f2af152018-04-10 16:34:53 -0700124 *base = mmap_base(random_factor, task_size, rlim_stack);
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300125}
126
Kees Cook8f2af152018-04-10 16:34:53 -0700127void arch_pick_mmap_layout(struct mm_struct *mm, struct rlimit *rlim_stack)
Jiri Kosinacc503c12008-01-30 13:31:07 +0100128{
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300129 if (mmap_is_legacy())
Jiri Kosinacc503c12008-01-30 13:31:07 +0100130 mm->get_unmapped_area = arch_get_unmapped_area;
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300131 else
Jiri Kosinacc503c12008-01-30 13:31:07 +0100132 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300133
134 arch_pick_mmap_base(&mm->mmap_base, &mm->mmap_legacy_base,
Kees Cook8f2af152018-04-10 16:34:53 -0700135 arch_rnd(mmap64_rnd_bits), task_size_64bit(0),
136 rlim_stack);
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300137
138#ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
139 /*
140 * The mmap syscall mapping base decision depends solely on the
141 * syscall type (64-bit or compat). This applies for 64bit
142 * applications and 32bit applications. The 64bit syscall uses
143 * mmap_base, the compat syscall uses mmap_compat_base.
144 */
145 arch_pick_mmap_base(&mm->mmap_compat_base, &mm->mmap_compat_legacy_base,
Kees Cook8f2af152018-04-10 16:34:53 -0700146 arch_rnd(mmap32_rnd_bits), task_size_32bit(),
147 rlim_stack);
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300148#endif
Jiri Kosinacc503c12008-01-30 13:31:07 +0100149}
Kirill A. Shutemova89652762015-07-20 14:29:58 -0700150
Dmitry Safonove13b73d2017-03-14 14:41:26 +0300151unsigned long get_mmap_base(int is_legacy)
152{
153 struct mm_struct *mm = current->mm;
154
155#ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
Dmitry Safonova8464462018-10-12 14:42:52 +0100156 if (in_32bit_syscall()) {
Dmitry Safonove13b73d2017-03-14 14:41:26 +0300157 return is_legacy ? mm->mmap_compat_legacy_base
158 : mm->mmap_compat_base;
159 }
160#endif
161 return is_legacy ? mm->mmap_legacy_base : mm->mmap_base;
162}
163
Kirill A. Shutemova89652762015-07-20 14:29:58 -0700164const char *arch_vma_name(struct vm_area_struct *vma)
165{
166 if (vma->vm_flags & VM_MPX)
167 return "[mpx]";
168 return NULL;
169}
Kirill A. Shutemov1e0f25d2017-11-15 17:36:06 +0300170
171/**
172 * mmap_address_hint_valid - Validate the address hint of mmap
173 * @addr: Address hint
174 * @len: Mapping length
175 *
176 * Check whether @addr and @addr + @len result in a valid mapping.
177 *
178 * On 32bit this only checks whether @addr + @len is <= TASK_SIZE.
179 *
180 * On 64bit with 5-level page tables another sanity check is required
181 * because mappings requested by mmap(@addr, 0) which cross the 47-bit
182 * virtual address boundary can cause the following theoretical issue:
183 *
184 * An application calls mmap(addr, 0), i.e. without MAP_FIXED, where @addr
185 * is below the border of the 47-bit address space and @addr + @len is
186 * above the border.
187 *
188 * With 4-level paging this request succeeds, but the resulting mapping
189 * address will always be within the 47-bit virtual address space, because
190 * the hint address does not result in a valid mapping and is
191 * ignored. Hence applications which are not prepared to handle virtual
192 * addresses above 47-bit work correctly.
193 *
194 * With 5-level paging this request would be granted and result in a
195 * mapping which crosses the border of the 47-bit virtual address
196 * space. If the application cannot handle addresses above 47-bit this
197 * will lead to misbehaviour and hard to diagnose failures.
198 *
199 * Therefore ignore address hints which would result in a mapping crossing
200 * the 47-bit virtual address boundary.
201 *
202 * Note, that in the same scenario with MAP_FIXED the behaviour is
203 * different. The request with @addr < 47-bit and @addr + @len > 47-bit
204 * fails on a 4-level paging machine but succeeds on a 5-level paging
205 * machine. It is reasonable to expect that an application does not rely on
206 * the failure of such a fixed mapping request, so the restriction is not
207 * applied.
208 */
209bool mmap_address_hint_valid(unsigned long addr, unsigned long len)
210{
211 if (TASK_SIZE - len < addr)
212 return false;
213
214 return (addr > DEFAULT_MAP_WINDOW) == (addr + len > DEFAULT_MAP_WINDOW);
215}
Craig Bergstrombe62a322017-11-15 15:29:51 -0700216
217/* Can we access it for direct reading/writing? Must be RAM: */
218int valid_phys_addr_range(phys_addr_t addr, size_t count)
219{
Ralph Campbell92c77f72019-03-25 17:18:17 -0700220 return addr + count - 1 <= __pa(high_memory - 1);
Craig Bergstrombe62a322017-11-15 15:29:51 -0700221}
222
223/* Can we access it through mmap? Must be a valid physical address: */
224int valid_mmap_phys_addr_range(unsigned long pfn, size_t count)
225{
226 phys_addr_t addr = (phys_addr_t)pfn << PAGE_SHIFT;
227
228 return phys_addr_valid(addr + count - 1);
229}
Andi Kleen42e40892018-06-13 15:48:27 -0700230
231/*
232 * Only allow root to set high MMIO mappings to PROT_NONE.
233 * This prevents an unpriv. user to set them to PROT_NONE and invert
234 * them, then pointing to valid memory for L1TF speculation.
235 *
236 * Note: for locked down kernels may want to disable the root override.
237 */
238bool pfn_modify_allowed(unsigned long pfn, pgprot_t prot)
239{
240 if (!boot_cpu_has_bug(X86_BUG_L1TF))
241 return true;
242 if (!__pte_needs_invert(pgprot_val(prot)))
243 return true;
244 /* If it's real memory always allow */
245 if (pfn_valid(pfn))
246 return true;
Vlastimil Babkab0a182f2018-08-23 15:44:18 +0200247 if (pfn >= l1tf_pfn_limit() && !capable(CAP_SYS_ADMIN))
Andi Kleen42e40892018-06-13 15:48:27 -0700248 return false;
249 return true;
250}