forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86/mm/pti: Add infrastructure for page table isolation
Add the initial files for kernel page table isolation, with a minimal init function and the boot time detection for this misfeature. Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Borislav Petkov <[email protected]> Cc: Andy Lutomirski <[email protected]> Cc: Boris Ostrovsky <[email protected]> Cc: Borislav Petkov <[email protected]> Cc: Brian Gerst <[email protected]> Cc: Dave Hansen <[email protected]> Cc: David Laight <[email protected]> Cc: Denys Vlasenko <[email protected]> Cc: Eduardo Valentin <[email protected]> Cc: Greg KH <[email protected]> Cc: H. Peter Anvin <[email protected]> Cc: Josh Poimboeuf <[email protected]> Cc: Juergen Gross <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Will Deacon <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Signed-off-by: Ingo Molnar <[email protected]>
- Loading branch information
Showing
9 changed files
with
130 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
#ifndef _ASM_X86_PTI_H | ||
#define _ASM_X86_PTI_H | ||
#ifndef __ASSEMBLY__ | ||
|
||
#ifdef CONFIG_PAGE_TABLE_ISOLATION | ||
extern void pti_init(void); | ||
extern void pti_check_boottime_disable(void); | ||
#else | ||
static inline void pti_check_boottime_disable(void) { } | ||
#endif | ||
|
||
#endif /* __ASSEMBLY__ */ | ||
#endif /* _ASM_X86_PTI_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Copyright(c) 2017 Intel Corporation. All rights reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of version 2 of the GNU General Public License as | ||
* published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* This code is based in part on work published here: | ||
* | ||
* https://github.com/IAIK/KAISER | ||
* | ||
* The original work was written by and and signed off by for the Linux | ||
* kernel by: | ||
* | ||
* Signed-off-by: Richard Fellner <[email protected]> | ||
* Signed-off-by: Moritz Lipp <[email protected]> | ||
* Signed-off-by: Daniel Gruss <[email protected]> | ||
* Signed-off-by: Michael Schwarz <[email protected]> | ||
* | ||
* Major changes to the original code by: Dave Hansen <[email protected]> | ||
* Mostly rewritten by Thomas Gleixner <[email protected]> and | ||
* Andy Lutomirsky <[email protected]> | ||
*/ | ||
#include <linux/kernel.h> | ||
#include <linux/errno.h> | ||
#include <linux/string.h> | ||
#include <linux/types.h> | ||
#include <linux/bug.h> | ||
#include <linux/init.h> | ||
#include <linux/spinlock.h> | ||
#include <linux/mm.h> | ||
#include <linux/uaccess.h> | ||
|
||
#include <asm/cpufeature.h> | ||
#include <asm/hypervisor.h> | ||
#include <asm/cmdline.h> | ||
#include <asm/pti.h> | ||
#include <asm/pgtable.h> | ||
#include <asm/pgalloc.h> | ||
#include <asm/tlbflush.h> | ||
#include <asm/desc.h> | ||
|
||
#undef pr_fmt | ||
#define pr_fmt(fmt) "Kernel/User page tables isolation: " fmt | ||
|
||
static void __init pti_print_if_insecure(const char *reason) | ||
{ | ||
if (boot_cpu_has_bug(X86_BUG_CPU_INSECURE)) | ||
pr_info("%s\n", reason); | ||
} | ||
|
||
void __init pti_check_boottime_disable(void) | ||
{ | ||
if (hypervisor_is_type(X86_HYPER_XEN_PV)) { | ||
pti_print_if_insecure("disabled on XEN PV."); | ||
return; | ||
} | ||
|
||
if (cmdline_find_option_bool(boot_command_line, "nopti")) { | ||
pti_print_if_insecure("disabled on command line."); | ||
return; | ||
} | ||
|
||
if (!boot_cpu_has_bug(X86_BUG_CPU_INSECURE)) | ||
return; | ||
|
||
setup_force_cpu_cap(X86_FEATURE_PTI); | ||
} | ||
|
||
/* | ||
* Initialize kernel page table isolation | ||
*/ | ||
void __init pti_init(void) | ||
{ | ||
if (!static_cpu_has(X86_FEATURE_PTI)) | ||
return; | ||
|
||
pr_info("enabled\n"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
#ifndef _INCLUDE_PTI_H | ||
#define _INCLUDE_PTI_H | ||
|
||
#ifdef CONFIG_PAGE_TABLE_ISOLATION | ||
#include <asm/pti.h> | ||
#else | ||
static inline void pti_init(void) { } | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters