Commit c2d92353 authored by Mark Brown's avatar Mark Brown Committed by Will Deacon

arm64: Factor out checks for KASLR in KPTI code into separate function

In preparation for integrating E0PD support with KASLR factor out the
checks for interaction between KASLR and KPTI done in boot context into
a new function kaslr_requires_kpti(), in the process clarifying the
distinction between what we do in boot context and what we do at
runtime.
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Reviewed-by: default avatarSuzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: default avatarWill Deacon <will@kernel.org>
parent 3e6c69a0
...@@ -35,10 +35,46 @@ static inline bool arm64_kernel_unmapped_at_el0(void) ...@@ -35,10 +35,46 @@ static inline bool arm64_kernel_unmapped_at_el0(void)
cpus_have_const_cap(ARM64_UNMAP_KERNEL_AT_EL0); cpus_have_const_cap(ARM64_UNMAP_KERNEL_AT_EL0);
} }
static inline bool arm64_kernel_use_ng_mappings(void) /*
* This check is triggered during the early boot before the cpufeature
* is initialised. Checking the status on the local CPU allows the boot
* CPU to detect the need for non-global mappings and thus avoiding a
* pagetable re-write after all the CPUs are booted. This check will be
* anyway run on individual CPUs, allowing us to get the consistent
* state once the SMP CPUs are up and thus make the switch to non-global
* mappings if required.
*/
static inline bool kaslr_requires_kpti(void)
{ {
bool tx1_bug; bool tx1_bug;
if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE))
return false;
/*
* Systems affected by Cavium erratum 24756 are incompatible
* with KPTI.
*/
if (!IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) {
tx1_bug = false;
#ifndef MODULE
} else if (!static_branch_likely(&arm64_const_caps_ready)) {
extern const struct midr_range cavium_erratum_27456_cpus[];
tx1_bug = is_midr_in_range_list(read_cpuid_id(),
cavium_erratum_27456_cpus);
#endif
} else {
tx1_bug = __cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456);
}
if (tx1_bug)
return false;
return kaslr_offset() > 0;
}
static inline bool arm64_kernel_use_ng_mappings(void)
{
/* What's a kpti? Use global mappings if we don't know. */ /* What's a kpti? Use global mappings if we don't know. */
if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0)) if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0))
return false; return false;
...@@ -52,29 +88,21 @@ static inline bool arm64_kernel_use_ng_mappings(void) ...@@ -52,29 +88,21 @@ static inline bool arm64_kernel_use_ng_mappings(void)
if (arm64_kernel_unmapped_at_el0()) if (arm64_kernel_unmapped_at_el0())
return true; return true;
if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE)) /*
* Once we are far enough into boot for capabilities to be
* ready we will have confirmed if we are using non-global
* mappings so don't need to consider anything else here.
*/
if (static_branch_likely(&arm64_const_caps_ready))
return false; return false;
/* /*
* KASLR is enabled so we're going to be enabling kpti on non-broken * KASLR is enabled so we're going to be enabling kpti on non-broken
* CPUs regardless of their susceptibility to Meltdown. Rather * CPUs regardless of their susceptibility to Meltdown. Rather
* than force everybody to go through the G -> nG dance later on, * than force everybody to go through the G -> nG dance later on,
* just put down non-global mappings from the beginning. * just put down non-global mappings from the beginning
*/ */
if (!IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) { return kaslr_requires_kpti();
tx1_bug = false;
#ifndef MODULE
} else if (!static_branch_likely(&arm64_const_caps_ready)) {
extern const struct midr_range cavium_erratum_27456_cpus[];
tx1_bug = is_midr_in_range_list(read_cpuid_id(),
cavium_erratum_27456_cpus);
#endif
} else {
tx1_bug = __cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456);
}
return !tx1_bug && kaslr_offset() > 0;
} }
typedef void (*bp_hardening_cb_t)(void); typedef void (*bp_hardening_cb_t)(void);
......
...@@ -1009,7 +1009,7 @@ static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry, ...@@ -1009,7 +1009,7 @@ static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
} }
/* Useful for KASLR robustness */ /* Useful for KASLR robustness */
if (IS_ENABLED(CONFIG_RANDOMIZE_BASE) && kaslr_offset() > 0) { if (kaslr_requires_kpti()) {
if (!__kpti_forced) { if (!__kpti_forced) {
str = "KASLR"; str = "KASLR";
__kpti_forced = 1; __kpti_forced = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment