hugetlb: introduce generic version of hugetlb_free_pgd_range
[linux/fpc-iii.git] / arch / x86 / mm / pti.c
blob4fee5c3003ed78ab9566fe92f09e0d14968c9865
1 /*
2 * Copyright(c) 2017 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * This code is based in part on work published here:
15 * https://github.com/IAIK/KAISER
17 * The original work was written by and and signed off by for the Linux
18 * kernel by:
20 * Signed-off-by: Richard Fellner <richard.fellner@student.tugraz.at>
21 * Signed-off-by: Moritz Lipp <moritz.lipp@iaik.tugraz.at>
22 * Signed-off-by: Daniel Gruss <daniel.gruss@iaik.tugraz.at>
23 * Signed-off-by: Michael Schwarz <michael.schwarz@iaik.tugraz.at>
25 * Major changes to the original code by: Dave Hansen <dave.hansen@intel.com>
26 * Mostly rewritten by Thomas Gleixner <tglx@linutronix.de> and
27 * Andy Lutomirsky <luto@amacapital.net>
29 #include <linux/kernel.h>
30 #include <linux/errno.h>
31 #include <linux/string.h>
32 #include <linux/types.h>
33 #include <linux/bug.h>
34 #include <linux/init.h>
35 #include <linux/spinlock.h>
36 #include <linux/mm.h>
37 #include <linux/uaccess.h>
39 #include <asm/cpufeature.h>
40 #include <asm/hypervisor.h>
41 #include <asm/vsyscall.h>
42 #include <asm/cmdline.h>
43 #include <asm/pti.h>
44 #include <asm/pgtable.h>
45 #include <asm/pgalloc.h>
46 #include <asm/tlbflush.h>
47 #include <asm/desc.h>
48 #include <asm/sections.h>
50 #undef pr_fmt
51 #define pr_fmt(fmt) "Kernel/User page tables isolation: " fmt
53 /* Backporting helper */
54 #ifndef __GFP_NOTRACK
55 #define __GFP_NOTRACK 0
56 #endif
59 * Define the page-table levels we clone for user-space on 32
60 * and 64 bit.
62 #ifdef CONFIG_X86_64
63 #define PTI_LEVEL_KERNEL_IMAGE PTI_CLONE_PMD
64 #else
65 #define PTI_LEVEL_KERNEL_IMAGE PTI_CLONE_PTE
66 #endif
68 static void __init pti_print_if_insecure(const char *reason)
70 if (boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
71 pr_info("%s\n", reason);
74 static void __init pti_print_if_secure(const char *reason)
76 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
77 pr_info("%s\n", reason);
80 enum pti_mode {
81 PTI_AUTO = 0,
82 PTI_FORCE_OFF,
83 PTI_FORCE_ON
84 } pti_mode;
86 void __init pti_check_boottime_disable(void)
88 char arg[5];
89 int ret;
91 /* Assume mode is auto unless overridden. */
92 pti_mode = PTI_AUTO;
94 if (hypervisor_is_type(X86_HYPER_XEN_PV)) {
95 pti_mode = PTI_FORCE_OFF;
96 pti_print_if_insecure("disabled on XEN PV.");
97 return;
100 ret = cmdline_find_option(boot_command_line, "pti", arg, sizeof(arg));
101 if (ret > 0) {
102 if (ret == 3 && !strncmp(arg, "off", 3)) {
103 pti_mode = PTI_FORCE_OFF;
104 pti_print_if_insecure("disabled on command line.");
105 return;
107 if (ret == 2 && !strncmp(arg, "on", 2)) {
108 pti_mode = PTI_FORCE_ON;
109 pti_print_if_secure("force enabled on command line.");
110 goto enable;
112 if (ret == 4 && !strncmp(arg, "auto", 4)) {
113 pti_mode = PTI_AUTO;
114 goto autosel;
118 if (cmdline_find_option_bool(boot_command_line, "nopti")) {
119 pti_mode = PTI_FORCE_OFF;
120 pti_print_if_insecure("disabled on command line.");
121 return;
124 autosel:
125 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
126 return;
127 enable:
128 setup_force_cpu_cap(X86_FEATURE_PTI);
131 pgd_t __pti_set_user_pgtbl(pgd_t *pgdp, pgd_t pgd)
134 * Changes to the high (kernel) portion of the kernelmode page
135 * tables are not automatically propagated to the usermode tables.
137 * Users should keep in mind that, unlike the kernelmode tables,
138 * there is no vmalloc_fault equivalent for the usermode tables.
139 * Top-level entries added to init_mm's usermode pgd after boot
140 * will not be automatically propagated to other mms.
142 if (!pgdp_maps_userspace(pgdp))
143 return pgd;
146 * The user page tables get the full PGD, accessible from
147 * userspace:
149 kernel_to_user_pgdp(pgdp)->pgd = pgd.pgd;
152 * If this is normal user memory, make it NX in the kernel
153 * pagetables so that, if we somehow screw up and return to
154 * usermode with the kernel CR3 loaded, we'll get a page fault
155 * instead of allowing user code to execute with the wrong CR3.
157 * As exceptions, we don't set NX if:
158 * - _PAGE_USER is not set. This could be an executable
159 * EFI runtime mapping or something similar, and the kernel
160 * may execute from it
161 * - we don't have NX support
162 * - we're clearing the PGD (i.e. the new pgd is not present).
164 if ((pgd.pgd & (_PAGE_USER|_PAGE_PRESENT)) == (_PAGE_USER|_PAGE_PRESENT) &&
165 (__supported_pte_mask & _PAGE_NX))
166 pgd.pgd |= _PAGE_NX;
168 /* return the copy of the PGD we want the kernel to use: */
169 return pgd;
173 * Walk the user copy of the page tables (optionally) trying to allocate
174 * page table pages on the way down.
176 * Returns a pointer to a P4D on success, or NULL on failure.
178 static p4d_t *pti_user_pagetable_walk_p4d(unsigned long address)
180 pgd_t *pgd = kernel_to_user_pgdp(pgd_offset_k(address));
181 gfp_t gfp = (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
183 if (address < PAGE_OFFSET) {
184 WARN_ONCE(1, "attempt to walk user address\n");
185 return NULL;
188 if (pgd_none(*pgd)) {
189 unsigned long new_p4d_page = __get_free_page(gfp);
190 if (WARN_ON_ONCE(!new_p4d_page))
191 return NULL;
193 set_pgd(pgd, __pgd(_KERNPG_TABLE | __pa(new_p4d_page)));
195 BUILD_BUG_ON(pgd_large(*pgd) != 0);
197 return p4d_offset(pgd, address);
201 * Walk the user copy of the page tables (optionally) trying to allocate
202 * page table pages on the way down.
204 * Returns a pointer to a PMD on success, or NULL on failure.
206 static pmd_t *pti_user_pagetable_walk_pmd(unsigned long address)
208 gfp_t gfp = (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
209 p4d_t *p4d;
210 pud_t *pud;
212 p4d = pti_user_pagetable_walk_p4d(address);
213 if (!p4d)
214 return NULL;
216 BUILD_BUG_ON(p4d_large(*p4d) != 0);
217 if (p4d_none(*p4d)) {
218 unsigned long new_pud_page = __get_free_page(gfp);
219 if (WARN_ON_ONCE(!new_pud_page))
220 return NULL;
222 set_p4d(p4d, __p4d(_KERNPG_TABLE | __pa(new_pud_page)));
225 pud = pud_offset(p4d, address);
226 /* The user page tables do not use large mappings: */
227 if (pud_large(*pud)) {
228 WARN_ON(1);
229 return NULL;
231 if (pud_none(*pud)) {
232 unsigned long new_pmd_page = __get_free_page(gfp);
233 if (WARN_ON_ONCE(!new_pmd_page))
234 return NULL;
236 set_pud(pud, __pud(_KERNPG_TABLE | __pa(new_pmd_page)));
239 return pmd_offset(pud, address);
243 * Walk the shadow copy of the page tables (optionally) trying to allocate
244 * page table pages on the way down. Does not support large pages.
246 * Note: this is only used when mapping *new* kernel data into the
247 * user/shadow page tables. It is never used for userspace data.
249 * Returns a pointer to a PTE on success, or NULL on failure.
251 static pte_t *pti_user_pagetable_walk_pte(unsigned long address)
253 gfp_t gfp = (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
254 pmd_t *pmd;
255 pte_t *pte;
257 pmd = pti_user_pagetable_walk_pmd(address);
258 if (!pmd)
259 return NULL;
261 /* We can't do anything sensible if we hit a large mapping. */
262 if (pmd_large(*pmd)) {
263 WARN_ON(1);
264 return NULL;
267 if (pmd_none(*pmd)) {
268 unsigned long new_pte_page = __get_free_page(gfp);
269 if (!new_pte_page)
270 return NULL;
272 set_pmd(pmd, __pmd(_KERNPG_TABLE | __pa(new_pte_page)));
275 pte = pte_offset_kernel(pmd, address);
276 if (pte_flags(*pte) & _PAGE_USER) {
277 WARN_ONCE(1, "attempt to walk to user pte\n");
278 return NULL;
280 return pte;
283 #ifdef CONFIG_X86_VSYSCALL_EMULATION
284 static void __init pti_setup_vsyscall(void)
286 pte_t *pte, *target_pte;
287 unsigned int level;
289 pte = lookup_address(VSYSCALL_ADDR, &level);
290 if (!pte || WARN_ON(level != PG_LEVEL_4K) || pte_none(*pte))
291 return;
293 target_pte = pti_user_pagetable_walk_pte(VSYSCALL_ADDR);
294 if (WARN_ON(!target_pte))
295 return;
297 *target_pte = *pte;
298 set_vsyscall_pgtable_user_bits(kernel_to_user_pgdp(swapper_pg_dir));
300 #else
301 static void __init pti_setup_vsyscall(void) { }
302 #endif
304 enum pti_clone_level {
305 PTI_CLONE_PMD,
306 PTI_CLONE_PTE,
309 static void
310 pti_clone_pgtable(unsigned long start, unsigned long end,
311 enum pti_clone_level level)
313 unsigned long addr;
316 * Clone the populated PMDs which cover start to end. These PMD areas
317 * can have holes.
319 for (addr = start; addr < end;) {
320 pte_t *pte, *target_pte;
321 pmd_t *pmd, *target_pmd;
322 pgd_t *pgd;
323 p4d_t *p4d;
324 pud_t *pud;
326 /* Overflow check */
327 if (addr < start)
328 break;
330 pgd = pgd_offset_k(addr);
331 if (WARN_ON(pgd_none(*pgd)))
332 return;
333 p4d = p4d_offset(pgd, addr);
334 if (WARN_ON(p4d_none(*p4d)))
335 return;
337 pud = pud_offset(p4d, addr);
338 if (pud_none(*pud)) {
339 addr += PUD_SIZE;
340 continue;
343 pmd = pmd_offset(pud, addr);
344 if (pmd_none(*pmd)) {
345 addr += PMD_SIZE;
346 continue;
349 if (pmd_large(*pmd) || level == PTI_CLONE_PMD) {
350 target_pmd = pti_user_pagetable_walk_pmd(addr);
351 if (WARN_ON(!target_pmd))
352 return;
355 * Only clone present PMDs. This ensures only setting
356 * _PAGE_GLOBAL on present PMDs. This should only be
357 * called on well-known addresses anyway, so a non-
358 * present PMD would be a surprise.
360 if (WARN_ON(!(pmd_flags(*pmd) & _PAGE_PRESENT)))
361 return;
364 * Setting 'target_pmd' below creates a mapping in both
365 * the user and kernel page tables. It is effectively
366 * global, so set it as global in both copies. Note:
367 * the X86_FEATURE_PGE check is not _required_ because
368 * the CPU ignores _PAGE_GLOBAL when PGE is not
369 * supported. The check keeps consistentency with
370 * code that only set this bit when supported.
372 if (boot_cpu_has(X86_FEATURE_PGE))
373 *pmd = pmd_set_flags(*pmd, _PAGE_GLOBAL);
376 * Copy the PMD. That is, the kernelmode and usermode
377 * tables will share the last-level page tables of this
378 * address range
380 *target_pmd = *pmd;
382 addr += PMD_SIZE;
384 } else if (level == PTI_CLONE_PTE) {
386 /* Walk the page-table down to the pte level */
387 pte = pte_offset_kernel(pmd, addr);
388 if (pte_none(*pte)) {
389 addr += PAGE_SIZE;
390 continue;
393 /* Only clone present PTEs */
394 if (WARN_ON(!(pte_flags(*pte) & _PAGE_PRESENT)))
395 return;
397 /* Allocate PTE in the user page-table */
398 target_pte = pti_user_pagetable_walk_pte(addr);
399 if (WARN_ON(!target_pte))
400 return;
402 /* Set GLOBAL bit in both PTEs */
403 if (boot_cpu_has(X86_FEATURE_PGE))
404 *pte = pte_set_flags(*pte, _PAGE_GLOBAL);
406 /* Clone the PTE */
407 *target_pte = *pte;
409 addr += PAGE_SIZE;
411 } else {
412 BUG();
417 #ifdef CONFIG_X86_64
419 * Clone a single p4d (i.e. a top-level entry on 4-level systems and a
420 * next-level entry on 5-level systems.
422 static void __init pti_clone_p4d(unsigned long addr)
424 p4d_t *kernel_p4d, *user_p4d;
425 pgd_t *kernel_pgd;
427 user_p4d = pti_user_pagetable_walk_p4d(addr);
428 if (!user_p4d)
429 return;
431 kernel_pgd = pgd_offset_k(addr);
432 kernel_p4d = p4d_offset(kernel_pgd, addr);
433 *user_p4d = *kernel_p4d;
437 * Clone the CPU_ENTRY_AREA and associated data into the user space visible
438 * page table.
440 static void __init pti_clone_user_shared(void)
442 unsigned int cpu;
444 pti_clone_p4d(CPU_ENTRY_AREA_BASE);
446 for_each_possible_cpu(cpu) {
448 * The SYSCALL64 entry code needs to be able to find the
449 * thread stack and needs one word of scratch space in which
450 * to spill a register. All of this lives in the TSS, in
451 * the sp1 and sp2 slots.
453 * This is done for all possible CPUs during boot to ensure
454 * that it's propagated to all mms. If we were to add one of
455 * these mappings during CPU hotplug, we would need to take
456 * some measure to make sure that every mm that subsequently
457 * ran on that CPU would have the relevant PGD entry in its
458 * pagetables. The usual vmalloc_fault() mechanism would not
459 * work for page faults taken in entry_SYSCALL_64 before RSP
460 * is set up.
463 unsigned long va = (unsigned long)&per_cpu(cpu_tss_rw, cpu);
464 phys_addr_t pa = per_cpu_ptr_to_phys((void *)va);
465 pte_t *target_pte;
467 target_pte = pti_user_pagetable_walk_pte(va);
468 if (WARN_ON(!target_pte))
469 return;
471 *target_pte = pfn_pte(pa >> PAGE_SHIFT, PAGE_KERNEL);
475 #else /* CONFIG_X86_64 */
478 * On 32 bit PAE systems with 1GB of Kernel address space there is only
479 * one pgd/p4d for the whole kernel. Cloning that would map the whole
480 * address space into the user page-tables, making PTI useless. So clone
481 * the page-table on the PMD level to prevent that.
483 static void __init pti_clone_user_shared(void)
485 unsigned long start, end;
487 start = CPU_ENTRY_AREA_BASE;
488 end = start + (PAGE_SIZE * CPU_ENTRY_AREA_PAGES);
490 pti_clone_pgtable(start, end, PTI_CLONE_PMD);
492 #endif /* CONFIG_X86_64 */
495 * Clone the ESPFIX P4D into the user space visible page table
497 static void __init pti_setup_espfix64(void)
499 #ifdef CONFIG_X86_ESPFIX64
500 pti_clone_p4d(ESPFIX_BASE_ADDR);
501 #endif
505 * Clone the populated PMDs of the entry and irqentry text and force it RO.
507 static void pti_clone_entry_text(void)
509 pti_clone_pgtable((unsigned long) __entry_text_start,
510 (unsigned long) __irqentry_text_end,
511 PTI_CLONE_PMD);
515 * Global pages and PCIDs are both ways to make kernel TLB entries
516 * live longer, reduce TLB misses and improve kernel performance.
517 * But, leaving all kernel text Global makes it potentially accessible
518 * to Meltdown-style attacks which make it trivial to find gadgets or
519 * defeat KASLR.
521 * Only use global pages when it is really worth it.
523 static inline bool pti_kernel_image_global_ok(void)
526 * Systems with PCIDs get litlle benefit from global
527 * kernel text and are not worth the downsides.
529 if (cpu_feature_enabled(X86_FEATURE_PCID))
530 return false;
533 * Only do global kernel image for pti=auto. Do the most
534 * secure thing (not global) if pti=on specified.
536 if (pti_mode != PTI_AUTO)
537 return false;
540 * K8 may not tolerate the cleared _PAGE_RW on the userspace
541 * global kernel image pages. Do the safe thing (disable
542 * global kernel image). This is unlikely to ever be
543 * noticed because PTI is disabled by default on AMD CPUs.
545 if (boot_cpu_has(X86_FEATURE_K8))
546 return false;
549 * RANDSTRUCT derives its hardening benefits from the
550 * attacker's lack of knowledge about the layout of kernel
551 * data structures. Keep the kernel image non-global in
552 * cases where RANDSTRUCT is in use to help keep the layout a
553 * secret.
555 if (IS_ENABLED(CONFIG_GCC_PLUGIN_RANDSTRUCT))
556 return false;
558 return true;
562 * This is the only user for these and it is not arch-generic
563 * like the other set_memory.h functions. Just extern them.
565 extern int set_memory_nonglobal(unsigned long addr, int numpages);
566 extern int set_memory_global(unsigned long addr, int numpages);
569 * For some configurations, map all of kernel text into the user page
570 * tables. This reduces TLB misses, especially on non-PCID systems.
572 static void pti_clone_kernel_text(void)
575 * rodata is part of the kernel image and is normally
576 * readable on the filesystem or on the web. But, do not
577 * clone the areas past rodata, they might contain secrets.
579 unsigned long start = PFN_ALIGN(_text);
580 unsigned long end_clone = (unsigned long)__end_rodata_aligned;
581 unsigned long end_global = PFN_ALIGN((unsigned long)__stop___ex_table);
583 if (!pti_kernel_image_global_ok())
584 return;
586 pr_debug("mapping partial kernel image into user address space\n");
589 * Note that this will undo _some_ of the work that
590 * pti_set_kernel_image_nonglobal() did to clear the
591 * global bit.
593 pti_clone_pgtable(start, end_clone, PTI_LEVEL_KERNEL_IMAGE);
596 * pti_clone_pgtable() will set the global bit in any PMDs
597 * that it clones, but we also need to get any PTEs in
598 * the last level for areas that are not huge-page-aligned.
601 /* Set the global bit for normal non-__init kernel text: */
602 set_memory_global(start, (end_global - start) >> PAGE_SHIFT);
605 void pti_set_kernel_image_nonglobal(void)
608 * The identity map is created with PMDs, regardless of the
609 * actual length of the kernel. We need to clear
610 * _PAGE_GLOBAL up to a PMD boundary, not just to the end
611 * of the image.
613 unsigned long start = PFN_ALIGN(_text);
614 unsigned long end = ALIGN((unsigned long)_end, PMD_PAGE_SIZE);
617 * This clears _PAGE_GLOBAL from the entire kernel image.
618 * pti_clone_kernel_text() map put _PAGE_GLOBAL back for
619 * areas that are mapped to userspace.
621 set_memory_nonglobal(start, (end - start) >> PAGE_SHIFT);
625 * Initialize kernel page table isolation
627 void __init pti_init(void)
629 if (!static_cpu_has(X86_FEATURE_PTI))
630 return;
632 pr_info("enabled\n");
634 #ifdef CONFIG_X86_32
636 * We check for X86_FEATURE_PCID here. But the init-code will
637 * clear the feature flag on 32 bit because the feature is not
638 * supported on 32 bit anyway. To print the warning we need to
639 * check with cpuid directly again.
641 if (cpuid_ecx(0x1) & BIT(17)) {
642 /* Use printk to work around pr_fmt() */
643 printk(KERN_WARNING "\n");
644 printk(KERN_WARNING "************************************************************\n");
645 printk(KERN_WARNING "** WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! **\n");
646 printk(KERN_WARNING "** **\n");
647 printk(KERN_WARNING "** You are using 32-bit PTI on a 64-bit PCID-capable CPU. **\n");
648 printk(KERN_WARNING "** Your performance will increase dramatically if you **\n");
649 printk(KERN_WARNING "** switch to a 64-bit kernel! **\n");
650 printk(KERN_WARNING "** **\n");
651 printk(KERN_WARNING "** WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! **\n");
652 printk(KERN_WARNING "************************************************************\n");
654 #endif
656 pti_clone_user_shared();
658 /* Undo all global bits from the init pagetables in head_64.S: */
659 pti_set_kernel_image_nonglobal();
660 /* Replace some of the global bits just for shared entry text: */
661 pti_clone_entry_text();
662 pti_setup_espfix64();
663 pti_setup_vsyscall();
667 * Finalize the kernel mappings in the userspace page-table. Some of the
668 * mappings for the kernel image might have changed since pti_init()
669 * cloned them. This is because parts of the kernel image have been
670 * mapped RO and/or NX. These changes need to be cloned again to the
671 * userspace page-table.
673 void pti_finalize(void)
676 * We need to clone everything (again) that maps parts of the
677 * kernel image.
679 pti_clone_entry_text();
680 pti_clone_kernel_text();
682 debug_checkwx_user();