1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 1994 Linus Torvalds
5 * Cyrix stuff, June 1998 by:
6 * - Rafael R. Reilova (moved everything from head.S),
8 * - Channing Corn (tests & fixes),
9 * - Andrew D. Balsa (code cleanup).
11 #include <linux/init.h>
12 #include <linux/utsname.h>
13 #include <linux/cpu.h>
14 #include <linux/module.h>
15 #include <linux/nospec.h>
16 #include <linux/prctl.h>
17 #include <linux/sched/smt.h>
18 #include <linux/pgtable.h>
19 #include <linux/bpf.h>
21 #include <asm/spec-ctrl.h>
22 #include <asm/cmdline.h>
24 #include <asm/processor.h>
25 #include <asm/processor-flags.h>
26 #include <asm/fpu/api.h>
29 #include <asm/paravirt.h>
30 #include <asm/alternative.h>
31 #include <asm/set_memory.h>
32 #include <asm/intel-family.h>
33 #include <asm/e820/api.h>
34 #include <asm/hypervisor.h>
35 #include <asm/tlbflush.h>
39 static void __init spectre_v1_select_mitigation(void);
40 static void __init spectre_v2_select_mitigation(void);
41 static void __init retbleed_select_mitigation(void);
42 static void __init spectre_v2_user_select_mitigation(void);
43 static void __init ssb_select_mitigation(void);
44 static void __init l1tf_select_mitigation(void);
45 static void __init mds_select_mitigation(void);
46 static void __init md_clear_update_mitigation(void);
47 static void __init md_clear_select_mitigation(void);
48 static void __init taa_select_mitigation(void);
49 static void __init mmio_select_mitigation(void);
50 static void __init srbds_select_mitigation(void);
51 static void __init l1d_flush_select_mitigation(void);
53 /* The base value of the SPEC_CTRL MSR without task-specific bits set */
54 u64 x86_spec_ctrl_base;
55 EXPORT_SYMBOL_GPL(x86_spec_ctrl_base);
57 /* The current value of the SPEC_CTRL MSR with task-specific bits set */
58 DEFINE_PER_CPU(u64, x86_spec_ctrl_current);
59 EXPORT_SYMBOL_GPL(x86_spec_ctrl_current);
61 static DEFINE_MUTEX(spec_ctrl_mutex);
63 /* Update SPEC_CTRL MSR and its cached copy unconditionally */
64 static void update_spec_ctrl(u64 val)
66 this_cpu_write(x86_spec_ctrl_current, val);
67 wrmsrl(MSR_IA32_SPEC_CTRL, val);
71 * Keep track of the SPEC_CTRL MSR value for the current task, which may differ
72 * from x86_spec_ctrl_base due to STIBP/SSB in __speculation_ctrl_update().
74 void update_spec_ctrl_cond(u64 val)
76 if (this_cpu_read(x86_spec_ctrl_current) == val)
79 this_cpu_write(x86_spec_ctrl_current, val);
82 * When KERNEL_IBRS this MSR is written on return-to-user, unless
83 * forced the update can be delayed until that time.
85 if (!cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS))
86 wrmsrl(MSR_IA32_SPEC_CTRL, val);
89 u64 spec_ctrl_current(void)
91 return this_cpu_read(x86_spec_ctrl_current);
93 EXPORT_SYMBOL_GPL(spec_ctrl_current);
96 * AMD specific MSR info for Speculative Store Bypass control.
97 * x86_amd_ls_cfg_ssbd_mask is initialized in identify_boot_cpu().
99 u64 __ro_after_init x86_amd_ls_cfg_base;
100 u64 __ro_after_init x86_amd_ls_cfg_ssbd_mask;
102 /* Control conditional STIBP in switch_to() */
103 DEFINE_STATIC_KEY_FALSE(switch_to_cond_stibp);
104 /* Control conditional IBPB in switch_mm() */
105 DEFINE_STATIC_KEY_FALSE(switch_mm_cond_ibpb);
106 /* Control unconditional IBPB in switch_mm() */
107 DEFINE_STATIC_KEY_FALSE(switch_mm_always_ibpb);
109 /* Control MDS CPU buffer clear before returning to user space */
110 DEFINE_STATIC_KEY_FALSE(mds_user_clear);
111 EXPORT_SYMBOL_GPL(mds_user_clear);
112 /* Control MDS CPU buffer clear before idling (halt, mwait) */
113 DEFINE_STATIC_KEY_FALSE(mds_idle_clear);
114 EXPORT_SYMBOL_GPL(mds_idle_clear);
117 * Controls whether l1d flush based mitigations are enabled,
118 * based on hw features and admin setting via boot parameter
121 DEFINE_STATIC_KEY_FALSE(switch_mm_cond_l1d_flush);
123 /* Controls CPU Fill buffer clear before KVM guest MMIO accesses */
124 DEFINE_STATIC_KEY_FALSE(mmio_stale_data_clear);
125 EXPORT_SYMBOL_GPL(mmio_stale_data_clear);
127 void __init check_bugs(void)
132 * identify_boot_cpu() initialized SMT support information, let the
135 cpu_smt_check_topology();
137 if (!IS_ENABLED(CONFIG_SMP)) {
139 print_cpu_info(&boot_cpu_data);
143 * Read the SPEC_CTRL MSR to account for reserved bits which may
144 * have unknown values. AMD64_LS_CFG MSR is cached in the early AMD
145 * init code as it is not enumerated and depends on the family.
147 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
148 rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
150 /* Select the proper CPU mitigations before patching alternatives: */
151 spectre_v1_select_mitigation();
152 spectre_v2_select_mitigation();
154 * retbleed_select_mitigation() relies on the state set by
155 * spectre_v2_select_mitigation(); specifically it wants to know about
158 retbleed_select_mitigation();
160 * spectre_v2_user_select_mitigation() relies on the state set by
161 * retbleed_select_mitigation(); specifically the STIBP selection is
162 * forced for UNRET or IBPB.
164 spectre_v2_user_select_mitigation();
165 ssb_select_mitigation();
166 l1tf_select_mitigation();
167 md_clear_select_mitigation();
168 srbds_select_mitigation();
169 l1d_flush_select_mitigation();
175 * Check whether we are able to run this kernel safely on SMP.
177 * - i386 is no longer supported.
178 * - In order to run on anything without a TSC, we need to be
179 * compiled for a i486.
181 if (boot_cpu_data.x86 < 4)
182 panic("Kernel requires i486+ for 'invlpg' and other features");
184 init_utsname()->machine[1] =
185 '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
186 alternative_instructions();
188 fpu__init_check_bugs();
189 #else /* CONFIG_X86_64 */
190 alternative_instructions();
193 * Make sure the first 2MB area is not mapped by huge pages
194 * There are typically fixed size MTRRs in there and overlapping
195 * MTRRs into large pages causes slow downs.
197 * Right now we don't do that with gbpages because there seems
198 * very little benefit for that case.
201 set_memory_4k((unsigned long)__va(0), 1);
206 * NOTE: This function is *only* called for SVM, since Intel uses
207 * MSR_IA32_SPEC_CTRL for SSBD.
210 x86_virt_spec_ctrl(u64 guest_virt_spec_ctrl, bool setguest)
212 u64 guestval, hostval;
213 struct thread_info *ti = current_thread_info();
216 * If SSBD is not handled in MSR_SPEC_CTRL on AMD, update
217 * MSR_AMD64_L2_CFG or MSR_VIRT_SPEC_CTRL if supported.
219 if (!static_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
220 !static_cpu_has(X86_FEATURE_VIRT_SSBD))
224 * If the host has SSBD mitigation enabled, force it in the host's
225 * virtual MSR value. If its not permanently enabled, evaluate
226 * current's TIF_SSBD thread flag.
228 if (static_cpu_has(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE))
229 hostval = SPEC_CTRL_SSBD;
231 hostval = ssbd_tif_to_spec_ctrl(ti->flags);
233 /* Sanitize the guest value */
234 guestval = guest_virt_spec_ctrl & SPEC_CTRL_SSBD;
236 if (hostval != guestval) {
239 tif = setguest ? ssbd_spec_ctrl_to_tif(guestval) :
240 ssbd_spec_ctrl_to_tif(hostval);
242 speculation_ctrl_update(tif);
245 EXPORT_SYMBOL_GPL(x86_virt_spec_ctrl);
247 static void x86_amd_ssb_disable(void)
249 u64 msrval = x86_amd_ls_cfg_base | x86_amd_ls_cfg_ssbd_mask;
251 if (boot_cpu_has(X86_FEATURE_VIRT_SSBD))
252 wrmsrl(MSR_AMD64_VIRT_SPEC_CTRL, SPEC_CTRL_SSBD);
253 else if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD))
254 wrmsrl(MSR_AMD64_LS_CFG, msrval);
258 #define pr_fmt(fmt) "MDS: " fmt
260 /* Default mitigation for MDS-affected CPUs */
261 static enum mds_mitigations mds_mitigation __ro_after_init = MDS_MITIGATION_FULL;
262 static bool mds_nosmt __ro_after_init = false;
264 static const char * const mds_strings[] = {
265 [MDS_MITIGATION_OFF] = "Vulnerable",
266 [MDS_MITIGATION_FULL] = "Mitigation: Clear CPU buffers",
267 [MDS_MITIGATION_VMWERV] = "Vulnerable: Clear CPU buffers attempted, no microcode",
270 static void __init mds_select_mitigation(void)
272 if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off()) {
273 mds_mitigation = MDS_MITIGATION_OFF;
277 if (mds_mitigation == MDS_MITIGATION_FULL) {
278 if (!boot_cpu_has(X86_FEATURE_MD_CLEAR))
279 mds_mitigation = MDS_MITIGATION_VMWERV;
281 static_branch_enable(&mds_user_clear);
283 if (!boot_cpu_has(X86_BUG_MSBDS_ONLY) &&
284 (mds_nosmt || cpu_mitigations_auto_nosmt()))
285 cpu_smt_disable(false);
289 static int __init mds_cmdline(char *str)
291 if (!boot_cpu_has_bug(X86_BUG_MDS))
297 if (!strcmp(str, "off"))
298 mds_mitigation = MDS_MITIGATION_OFF;
299 else if (!strcmp(str, "full"))
300 mds_mitigation = MDS_MITIGATION_FULL;
301 else if (!strcmp(str, "full,nosmt")) {
302 mds_mitigation = MDS_MITIGATION_FULL;
308 early_param("mds", mds_cmdline);
311 #define pr_fmt(fmt) "TAA: " fmt
313 enum taa_mitigations {
315 TAA_MITIGATION_UCODE_NEEDED,
317 TAA_MITIGATION_TSX_DISABLED,
320 /* Default mitigation for TAA-affected CPUs */
321 static enum taa_mitigations taa_mitigation __ro_after_init = TAA_MITIGATION_VERW;
322 static bool taa_nosmt __ro_after_init;
324 static const char * const taa_strings[] = {
325 [TAA_MITIGATION_OFF] = "Vulnerable",
326 [TAA_MITIGATION_UCODE_NEEDED] = "Vulnerable: Clear CPU buffers attempted, no microcode",
327 [TAA_MITIGATION_VERW] = "Mitigation: Clear CPU buffers",
328 [TAA_MITIGATION_TSX_DISABLED] = "Mitigation: TSX disabled",
331 static void __init taa_select_mitigation(void)
335 if (!boot_cpu_has_bug(X86_BUG_TAA)) {
336 taa_mitigation = TAA_MITIGATION_OFF;
340 /* TSX previously disabled by tsx=off */
341 if (!boot_cpu_has(X86_FEATURE_RTM)) {
342 taa_mitigation = TAA_MITIGATION_TSX_DISABLED;
346 if (cpu_mitigations_off()) {
347 taa_mitigation = TAA_MITIGATION_OFF;
352 * TAA mitigation via VERW is turned off if both
353 * tsx_async_abort=off and mds=off are specified.
355 if (taa_mitigation == TAA_MITIGATION_OFF &&
356 mds_mitigation == MDS_MITIGATION_OFF)
359 if (boot_cpu_has(X86_FEATURE_MD_CLEAR))
360 taa_mitigation = TAA_MITIGATION_VERW;
362 taa_mitigation = TAA_MITIGATION_UCODE_NEEDED;
365 * VERW doesn't clear the CPU buffers when MD_CLEAR=1 and MDS_NO=1.
366 * A microcode update fixes this behavior to clear CPU buffers. It also
367 * adds support for MSR_IA32_TSX_CTRL which is enumerated by the
368 * ARCH_CAP_TSX_CTRL_MSR bit.
370 * On MDS_NO=1 CPUs if ARCH_CAP_TSX_CTRL_MSR is not set, microcode
371 * update is required.
373 ia32_cap = x86_read_arch_cap_msr();
374 if ( (ia32_cap & ARCH_CAP_MDS_NO) &&
375 !(ia32_cap & ARCH_CAP_TSX_CTRL_MSR))
376 taa_mitigation = TAA_MITIGATION_UCODE_NEEDED;
379 * TSX is enabled, select alternate mitigation for TAA which is
380 * the same as MDS. Enable MDS static branch to clear CPU buffers.
382 * For guests that can't determine whether the correct microcode is
383 * present on host, enable the mitigation for UCODE_NEEDED as well.
385 static_branch_enable(&mds_user_clear);
387 if (taa_nosmt || cpu_mitigations_auto_nosmt())
388 cpu_smt_disable(false);
391 static int __init tsx_async_abort_parse_cmdline(char *str)
393 if (!boot_cpu_has_bug(X86_BUG_TAA))
399 if (!strcmp(str, "off")) {
400 taa_mitigation = TAA_MITIGATION_OFF;
401 } else if (!strcmp(str, "full")) {
402 taa_mitigation = TAA_MITIGATION_VERW;
403 } else if (!strcmp(str, "full,nosmt")) {
404 taa_mitigation = TAA_MITIGATION_VERW;
410 early_param("tsx_async_abort", tsx_async_abort_parse_cmdline);
413 #define pr_fmt(fmt) "MMIO Stale Data: " fmt
415 enum mmio_mitigations {
417 MMIO_MITIGATION_UCODE_NEEDED,
418 MMIO_MITIGATION_VERW,
421 /* Default mitigation for Processor MMIO Stale Data vulnerabilities */
422 static enum mmio_mitigations mmio_mitigation __ro_after_init = MMIO_MITIGATION_VERW;
423 static bool mmio_nosmt __ro_after_init = false;
425 static const char * const mmio_strings[] = {
426 [MMIO_MITIGATION_OFF] = "Vulnerable",
427 [MMIO_MITIGATION_UCODE_NEEDED] = "Vulnerable: Clear CPU buffers attempted, no microcode",
428 [MMIO_MITIGATION_VERW] = "Mitigation: Clear CPU buffers",
431 static void __init mmio_select_mitigation(void)
435 if (!boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA) ||
436 boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN) ||
437 cpu_mitigations_off()) {
438 mmio_mitigation = MMIO_MITIGATION_OFF;
442 if (mmio_mitigation == MMIO_MITIGATION_OFF)
445 ia32_cap = x86_read_arch_cap_msr();
448 * Enable CPU buffer clear mitigation for host and VMM, if also affected
449 * by MDS or TAA. Otherwise, enable mitigation for VMM only.
451 if (boot_cpu_has_bug(X86_BUG_MDS) || (boot_cpu_has_bug(X86_BUG_TAA) &&
452 boot_cpu_has(X86_FEATURE_RTM)))
453 static_branch_enable(&mds_user_clear);
455 static_branch_enable(&mmio_stale_data_clear);
458 * If Processor-MMIO-Stale-Data bug is present and Fill Buffer data can
459 * be propagated to uncore buffers, clearing the Fill buffers on idle
460 * is required irrespective of SMT state.
462 if (!(ia32_cap & ARCH_CAP_FBSDP_NO))
463 static_branch_enable(&mds_idle_clear);
466 * Check if the system has the right microcode.
468 * CPU Fill buffer clear mitigation is enumerated by either an explicit
469 * FB_CLEAR or by the presence of both MD_CLEAR and L1D_FLUSH on MDS
472 if ((ia32_cap & ARCH_CAP_FB_CLEAR) ||
473 (boot_cpu_has(X86_FEATURE_MD_CLEAR) &&
474 boot_cpu_has(X86_FEATURE_FLUSH_L1D) &&
475 !(ia32_cap & ARCH_CAP_MDS_NO)))
476 mmio_mitigation = MMIO_MITIGATION_VERW;
478 mmio_mitigation = MMIO_MITIGATION_UCODE_NEEDED;
480 if (mmio_nosmt || cpu_mitigations_auto_nosmt())
481 cpu_smt_disable(false);
484 static int __init mmio_stale_data_parse_cmdline(char *str)
486 if (!boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA))
492 if (!strcmp(str, "off")) {
493 mmio_mitigation = MMIO_MITIGATION_OFF;
494 } else if (!strcmp(str, "full")) {
495 mmio_mitigation = MMIO_MITIGATION_VERW;
496 } else if (!strcmp(str, "full,nosmt")) {
497 mmio_mitigation = MMIO_MITIGATION_VERW;
503 early_param("mmio_stale_data", mmio_stale_data_parse_cmdline);
506 #define pr_fmt(fmt) "" fmt
508 static void __init md_clear_update_mitigation(void)
510 if (cpu_mitigations_off())
513 if (!static_key_enabled(&mds_user_clear))
517 * mds_user_clear is now enabled. Update MDS, TAA and MMIO Stale Data
518 * mitigation, if necessary.
520 if (mds_mitigation == MDS_MITIGATION_OFF &&
521 boot_cpu_has_bug(X86_BUG_MDS)) {
522 mds_mitigation = MDS_MITIGATION_FULL;
523 mds_select_mitigation();
525 if (taa_mitigation == TAA_MITIGATION_OFF &&
526 boot_cpu_has_bug(X86_BUG_TAA)) {
527 taa_mitigation = TAA_MITIGATION_VERW;
528 taa_select_mitigation();
530 if (mmio_mitigation == MMIO_MITIGATION_OFF &&
531 boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) {
532 mmio_mitigation = MMIO_MITIGATION_VERW;
533 mmio_select_mitigation();
536 if (boot_cpu_has_bug(X86_BUG_MDS))
537 pr_info("MDS: %s\n", mds_strings[mds_mitigation]);
538 if (boot_cpu_has_bug(X86_BUG_TAA))
539 pr_info("TAA: %s\n", taa_strings[taa_mitigation]);
540 if (boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA))
541 pr_info("MMIO Stale Data: %s\n", mmio_strings[mmio_mitigation]);
542 else if (boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN))
543 pr_info("MMIO Stale Data: Unknown: No mitigations\n");
546 static void __init md_clear_select_mitigation(void)
548 mds_select_mitigation();
549 taa_select_mitigation();
550 mmio_select_mitigation();
553 * As MDS, TAA and MMIO Stale Data mitigations are inter-related, update
554 * and print their mitigation after MDS, TAA and MMIO Stale Data
555 * mitigation selection is done.
557 md_clear_update_mitigation();
561 #define pr_fmt(fmt) "SRBDS: " fmt
563 enum srbds_mitigations {
564 SRBDS_MITIGATION_OFF,
565 SRBDS_MITIGATION_UCODE_NEEDED,
566 SRBDS_MITIGATION_FULL,
567 SRBDS_MITIGATION_TSX_OFF,
568 SRBDS_MITIGATION_HYPERVISOR,
571 static enum srbds_mitigations srbds_mitigation __ro_after_init = SRBDS_MITIGATION_FULL;
573 static const char * const srbds_strings[] = {
574 [SRBDS_MITIGATION_OFF] = "Vulnerable",
575 [SRBDS_MITIGATION_UCODE_NEEDED] = "Vulnerable: No microcode",
576 [SRBDS_MITIGATION_FULL] = "Mitigation: Microcode",
577 [SRBDS_MITIGATION_TSX_OFF] = "Mitigation: TSX disabled",
578 [SRBDS_MITIGATION_HYPERVISOR] = "Unknown: Dependent on hypervisor status",
581 static bool srbds_off;
583 void update_srbds_msr(void)
587 if (!boot_cpu_has_bug(X86_BUG_SRBDS))
590 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
593 if (srbds_mitigation == SRBDS_MITIGATION_UCODE_NEEDED)
597 * A MDS_NO CPU for which SRBDS mitigation is not needed due to TSX
598 * being disabled and it hasn't received the SRBDS MSR microcode.
600 if (!boot_cpu_has(X86_FEATURE_SRBDS_CTRL))
603 rdmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl);
605 switch (srbds_mitigation) {
606 case SRBDS_MITIGATION_OFF:
607 case SRBDS_MITIGATION_TSX_OFF:
608 mcu_ctrl |= RNGDS_MITG_DIS;
610 case SRBDS_MITIGATION_FULL:
611 mcu_ctrl &= ~RNGDS_MITG_DIS;
617 wrmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl);
620 static void __init srbds_select_mitigation(void)
624 if (!boot_cpu_has_bug(X86_BUG_SRBDS))
628 * Check to see if this is one of the MDS_NO systems supporting TSX that
629 * are only exposed to SRBDS when TSX is enabled or when CPU is affected
630 * by Processor MMIO Stale Data vulnerability.
632 ia32_cap = x86_read_arch_cap_msr();
633 if ((ia32_cap & ARCH_CAP_MDS_NO) && !boot_cpu_has(X86_FEATURE_RTM) &&
634 !boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA))
635 srbds_mitigation = SRBDS_MITIGATION_TSX_OFF;
636 else if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
637 srbds_mitigation = SRBDS_MITIGATION_HYPERVISOR;
638 else if (!boot_cpu_has(X86_FEATURE_SRBDS_CTRL))
639 srbds_mitigation = SRBDS_MITIGATION_UCODE_NEEDED;
640 else if (cpu_mitigations_off() || srbds_off)
641 srbds_mitigation = SRBDS_MITIGATION_OFF;
644 pr_info("%s\n", srbds_strings[srbds_mitigation]);
647 static int __init srbds_parse_cmdline(char *str)
652 if (!boot_cpu_has_bug(X86_BUG_SRBDS))
655 srbds_off = !strcmp(str, "off");
658 early_param("srbds", srbds_parse_cmdline);
661 #define pr_fmt(fmt) "L1D Flush : " fmt
663 enum l1d_flush_mitigations {
668 static enum l1d_flush_mitigations l1d_flush_mitigation __initdata = L1D_FLUSH_OFF;
670 static void __init l1d_flush_select_mitigation(void)
672 if (!l1d_flush_mitigation || !boot_cpu_has(X86_FEATURE_FLUSH_L1D))
675 static_branch_enable(&switch_mm_cond_l1d_flush);
676 pr_info("Conditional flush on switch_mm() enabled\n");
679 static int __init l1d_flush_parse_cmdline(char *str)
681 if (!strcmp(str, "on"))
682 l1d_flush_mitigation = L1D_FLUSH_ON;
686 early_param("l1d_flush", l1d_flush_parse_cmdline);
689 #define pr_fmt(fmt) "Spectre V1 : " fmt
691 enum spectre_v1_mitigation {
692 SPECTRE_V1_MITIGATION_NONE,
693 SPECTRE_V1_MITIGATION_AUTO,
696 static enum spectre_v1_mitigation spectre_v1_mitigation __ro_after_init =
697 SPECTRE_V1_MITIGATION_AUTO;
699 static const char * const spectre_v1_strings[] = {
700 [SPECTRE_V1_MITIGATION_NONE] = "Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers",
701 [SPECTRE_V1_MITIGATION_AUTO] = "Mitigation: usercopy/swapgs barriers and __user pointer sanitization",
705 * Does SMAP provide full mitigation against speculative kernel access to
708 static bool smap_works_speculatively(void)
710 if (!boot_cpu_has(X86_FEATURE_SMAP))
714 * On CPUs which are vulnerable to Meltdown, SMAP does not
715 * prevent speculative access to user data in the L1 cache.
716 * Consider SMAP to be non-functional as a mitigation on these
719 if (boot_cpu_has(X86_BUG_CPU_MELTDOWN))
725 static void __init spectre_v1_select_mitigation(void)
727 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V1) || cpu_mitigations_off()) {
728 spectre_v1_mitigation = SPECTRE_V1_MITIGATION_NONE;
732 if (spectre_v1_mitigation == SPECTRE_V1_MITIGATION_AUTO) {
734 * With Spectre v1, a user can speculatively control either
735 * path of a conditional swapgs with a user-controlled GS
736 * value. The mitigation is to add lfences to both code paths.
738 * If FSGSBASE is enabled, the user can put a kernel address in
739 * GS, in which case SMAP provides no protection.
741 * If FSGSBASE is disabled, the user can only put a user space
742 * address in GS. That makes an attack harder, but still
743 * possible if there's no SMAP protection.
745 if (boot_cpu_has(X86_FEATURE_FSGSBASE) ||
746 !smap_works_speculatively()) {
748 * Mitigation can be provided from SWAPGS itself or
749 * PTI as the CR3 write in the Meltdown mitigation
752 * If neither is there, mitigate with an LFENCE to
753 * stop speculation through swapgs.
755 if (boot_cpu_has_bug(X86_BUG_SWAPGS) &&
756 !boot_cpu_has(X86_FEATURE_PTI))
757 setup_force_cpu_cap(X86_FEATURE_FENCE_SWAPGS_USER);
760 * Enable lfences in the kernel entry (non-swapgs)
761 * paths, to prevent user entry from speculatively
764 setup_force_cpu_cap(X86_FEATURE_FENCE_SWAPGS_KERNEL);
768 pr_info("%s\n", spectre_v1_strings[spectre_v1_mitigation]);
771 static int __init nospectre_v1_cmdline(char *str)
773 spectre_v1_mitigation = SPECTRE_V1_MITIGATION_NONE;
776 early_param("nospectre_v1", nospectre_v1_cmdline);
778 static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init =
782 #define pr_fmt(fmt) "RETBleed: " fmt
784 enum retbleed_mitigation {
785 RETBLEED_MITIGATION_NONE,
786 RETBLEED_MITIGATION_UNRET,
787 RETBLEED_MITIGATION_IBPB,
788 RETBLEED_MITIGATION_IBRS,
789 RETBLEED_MITIGATION_EIBRS,
790 RETBLEED_MITIGATION_STUFF,
793 enum retbleed_mitigation_cmd {
801 static const char * const retbleed_strings[] = {
802 [RETBLEED_MITIGATION_NONE] = "Vulnerable",
803 [RETBLEED_MITIGATION_UNRET] = "Mitigation: untrained return thunk",
804 [RETBLEED_MITIGATION_IBPB] = "Mitigation: IBPB",
805 [RETBLEED_MITIGATION_IBRS] = "Mitigation: IBRS",
806 [RETBLEED_MITIGATION_EIBRS] = "Mitigation: Enhanced IBRS",
807 [RETBLEED_MITIGATION_STUFF] = "Mitigation: Stuffing",
810 static enum retbleed_mitigation retbleed_mitigation __ro_after_init =
811 RETBLEED_MITIGATION_NONE;
812 static enum retbleed_mitigation_cmd retbleed_cmd __ro_after_init =
815 static int __ro_after_init retbleed_nosmt = false;
817 static int __init retbleed_parse_cmdline(char *str)
823 char *next = strchr(str, ',');
829 if (!strcmp(str, "off")) {
830 retbleed_cmd = RETBLEED_CMD_OFF;
831 } else if (!strcmp(str, "auto")) {
832 retbleed_cmd = RETBLEED_CMD_AUTO;
833 } else if (!strcmp(str, "unret")) {
834 retbleed_cmd = RETBLEED_CMD_UNRET;
835 } else if (!strcmp(str, "ibpb")) {
836 retbleed_cmd = RETBLEED_CMD_IBPB;
837 } else if (!strcmp(str, "stuff")) {
838 retbleed_cmd = RETBLEED_CMD_STUFF;
839 } else if (!strcmp(str, "nosmt")) {
840 retbleed_nosmt = true;
841 } else if (!strcmp(str, "force")) {
842 setup_force_cpu_bug(X86_BUG_RETBLEED);
844 pr_err("Ignoring unknown retbleed option (%s).", str);
852 early_param("retbleed", retbleed_parse_cmdline);
854 #define RETBLEED_UNTRAIN_MSG "WARNING: BTB untrained return thunk mitigation is only effective on AMD/Hygon!\n"
855 #define RETBLEED_INTEL_MSG "WARNING: Spectre v2 mitigation leaves CPU vulnerable to RETBleed attacks, data leaks possible!\n"
857 static void __init retbleed_select_mitigation(void)
859 bool mitigate_smt = false;
861 if (!boot_cpu_has_bug(X86_BUG_RETBLEED) || cpu_mitigations_off())
864 switch (retbleed_cmd) {
865 case RETBLEED_CMD_OFF:
868 case RETBLEED_CMD_UNRET:
869 if (IS_ENABLED(CONFIG_CPU_UNRET_ENTRY)) {
870 retbleed_mitigation = RETBLEED_MITIGATION_UNRET;
872 pr_err("WARNING: kernel not compiled with CPU_UNRET_ENTRY.\n");
877 case RETBLEED_CMD_IBPB:
878 if (!boot_cpu_has(X86_FEATURE_IBPB)) {
879 pr_err("WARNING: CPU does not support IBPB.\n");
881 } else if (IS_ENABLED(CONFIG_CPU_IBPB_ENTRY)) {
882 retbleed_mitigation = RETBLEED_MITIGATION_IBPB;
884 pr_err("WARNING: kernel not compiled with CPU_IBPB_ENTRY.\n");
889 case RETBLEED_CMD_STUFF:
890 if (IS_ENABLED(CONFIG_CALL_DEPTH_TRACKING) &&
891 spectre_v2_enabled == SPECTRE_V2_RETPOLINE) {
892 retbleed_mitigation = RETBLEED_MITIGATION_STUFF;
895 if (IS_ENABLED(CONFIG_CALL_DEPTH_TRACKING))
896 pr_err("WARNING: retbleed=stuff depends on spectre_v2=retpoline\n");
898 pr_err("WARNING: kernel not compiled with CALL_DEPTH_TRACKING.\n");
905 case RETBLEED_CMD_AUTO:
907 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD ||
908 boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) {
909 if (IS_ENABLED(CONFIG_CPU_UNRET_ENTRY))
910 retbleed_mitigation = RETBLEED_MITIGATION_UNRET;
911 else if (IS_ENABLED(CONFIG_CPU_IBPB_ENTRY) && boot_cpu_has(X86_FEATURE_IBPB))
912 retbleed_mitigation = RETBLEED_MITIGATION_IBPB;
916 * The Intel mitigation (IBRS or eIBRS) was already selected in
917 * spectre_v2_select_mitigation(). 'retbleed_mitigation' will
918 * be set accordingly below.
924 switch (retbleed_mitigation) {
925 case RETBLEED_MITIGATION_UNRET:
926 setup_force_cpu_cap(X86_FEATURE_RETHUNK);
927 setup_force_cpu_cap(X86_FEATURE_UNRET);
929 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD &&
930 boot_cpu_data.x86_vendor != X86_VENDOR_HYGON)
931 pr_err(RETBLEED_UNTRAIN_MSG);
936 case RETBLEED_MITIGATION_IBPB:
937 setup_force_cpu_cap(X86_FEATURE_ENTRY_IBPB);
941 case RETBLEED_MITIGATION_STUFF:
942 setup_force_cpu_cap(X86_FEATURE_RETHUNK);
943 setup_force_cpu_cap(X86_FEATURE_CALL_DEPTH);
944 x86_set_skl_return_thunk();
951 if (mitigate_smt && !boot_cpu_has(X86_FEATURE_STIBP) &&
952 (retbleed_nosmt || cpu_mitigations_auto_nosmt()))
953 cpu_smt_disable(false);
956 * Let IBRS trump all on Intel without affecting the effects of the
957 * retbleed= cmdline option except for call depth based stuffing
959 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) {
960 switch (spectre_v2_enabled) {
961 case SPECTRE_V2_IBRS:
962 retbleed_mitigation = RETBLEED_MITIGATION_IBRS;
964 case SPECTRE_V2_EIBRS:
965 case SPECTRE_V2_EIBRS_RETPOLINE:
966 case SPECTRE_V2_EIBRS_LFENCE:
967 retbleed_mitigation = RETBLEED_MITIGATION_EIBRS;
970 if (retbleed_mitigation != RETBLEED_MITIGATION_STUFF)
971 pr_err(RETBLEED_INTEL_MSG);
975 pr_info("%s\n", retbleed_strings[retbleed_mitigation]);
979 #define pr_fmt(fmt) "Spectre V2 : " fmt
981 static enum spectre_v2_user_mitigation spectre_v2_user_stibp __ro_after_init =
982 SPECTRE_V2_USER_NONE;
983 static enum spectre_v2_user_mitigation spectre_v2_user_ibpb __ro_after_init =
984 SPECTRE_V2_USER_NONE;
986 #ifdef CONFIG_RETPOLINE
987 static bool spectre_v2_bad_module;
989 bool retpoline_module_ok(bool has_retpoline)
991 if (spectre_v2_enabled == SPECTRE_V2_NONE || has_retpoline)
994 pr_err("System may be vulnerable to spectre v2\n");
995 spectre_v2_bad_module = true;
999 static inline const char *spectre_v2_module_string(void)
1001 return spectre_v2_bad_module ? " - vulnerable module loaded" : "";
1004 static inline const char *spectre_v2_module_string(void) { return ""; }
1007 #define SPECTRE_V2_LFENCE_MSG "WARNING: LFENCE mitigation is not recommended for this CPU, data leaks possible!\n"
1008 #define SPECTRE_V2_EIBRS_EBPF_MSG "WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!\n"
1009 #define SPECTRE_V2_EIBRS_LFENCE_EBPF_SMT_MSG "WARNING: Unprivileged eBPF is enabled with eIBRS+LFENCE mitigation and SMT, data leaks possible via Spectre v2 BHB attacks!\n"
1010 #define SPECTRE_V2_IBRS_PERF_MSG "WARNING: IBRS mitigation selected on Enhanced IBRS CPU, this may cause unnecessary performance loss\n"
1012 #ifdef CONFIG_BPF_SYSCALL
1013 void unpriv_ebpf_notify(int new_state)
1018 /* Unprivileged eBPF is enabled */
1020 switch (spectre_v2_enabled) {
1021 case SPECTRE_V2_EIBRS:
1022 pr_err(SPECTRE_V2_EIBRS_EBPF_MSG);
1024 case SPECTRE_V2_EIBRS_LFENCE:
1025 if (sched_smt_active())
1026 pr_err(SPECTRE_V2_EIBRS_LFENCE_EBPF_SMT_MSG);
1034 static inline bool match_option(const char *arg, int arglen, const char *opt)
1036 int len = strlen(opt);
1038 return len == arglen && !strncmp(arg, opt, len);
1041 /* The kernel command line selection for spectre v2 */
1042 enum spectre_v2_mitigation_cmd {
1043 SPECTRE_V2_CMD_NONE,
1044 SPECTRE_V2_CMD_AUTO,
1045 SPECTRE_V2_CMD_FORCE,
1046 SPECTRE_V2_CMD_RETPOLINE,
1047 SPECTRE_V2_CMD_RETPOLINE_GENERIC,
1048 SPECTRE_V2_CMD_RETPOLINE_LFENCE,
1049 SPECTRE_V2_CMD_EIBRS,
1050 SPECTRE_V2_CMD_EIBRS_RETPOLINE,
1051 SPECTRE_V2_CMD_EIBRS_LFENCE,
1052 SPECTRE_V2_CMD_IBRS,
1055 enum spectre_v2_user_cmd {
1056 SPECTRE_V2_USER_CMD_NONE,
1057 SPECTRE_V2_USER_CMD_AUTO,
1058 SPECTRE_V2_USER_CMD_FORCE,
1059 SPECTRE_V2_USER_CMD_PRCTL,
1060 SPECTRE_V2_USER_CMD_PRCTL_IBPB,
1061 SPECTRE_V2_USER_CMD_SECCOMP,
1062 SPECTRE_V2_USER_CMD_SECCOMP_IBPB,
1065 static const char * const spectre_v2_user_strings[] = {
1066 [SPECTRE_V2_USER_NONE] = "User space: Vulnerable",
1067 [SPECTRE_V2_USER_STRICT] = "User space: Mitigation: STIBP protection",
1068 [SPECTRE_V2_USER_STRICT_PREFERRED] = "User space: Mitigation: STIBP always-on protection",
1069 [SPECTRE_V2_USER_PRCTL] = "User space: Mitigation: STIBP via prctl",
1070 [SPECTRE_V2_USER_SECCOMP] = "User space: Mitigation: STIBP via seccomp and prctl",
1073 static const struct {
1075 enum spectre_v2_user_cmd cmd;
1077 } v2_user_options[] __initconst = {
1078 { "auto", SPECTRE_V2_USER_CMD_AUTO, false },
1079 { "off", SPECTRE_V2_USER_CMD_NONE, false },
1080 { "on", SPECTRE_V2_USER_CMD_FORCE, true },
1081 { "prctl", SPECTRE_V2_USER_CMD_PRCTL, false },
1082 { "prctl,ibpb", SPECTRE_V2_USER_CMD_PRCTL_IBPB, false },
1083 { "seccomp", SPECTRE_V2_USER_CMD_SECCOMP, false },
1084 { "seccomp,ibpb", SPECTRE_V2_USER_CMD_SECCOMP_IBPB, false },
1087 static void __init spec_v2_user_print_cond(const char *reason, bool secure)
1089 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
1090 pr_info("spectre_v2_user=%s forced on command line.\n", reason);
1093 static __ro_after_init enum spectre_v2_mitigation_cmd spectre_v2_cmd;
1095 static enum spectre_v2_user_cmd __init
1096 spectre_v2_parse_user_cmdline(void)
1101 switch (spectre_v2_cmd) {
1102 case SPECTRE_V2_CMD_NONE:
1103 return SPECTRE_V2_USER_CMD_NONE;
1104 case SPECTRE_V2_CMD_FORCE:
1105 return SPECTRE_V2_USER_CMD_FORCE;
1110 ret = cmdline_find_option(boot_command_line, "spectre_v2_user",
1113 return SPECTRE_V2_USER_CMD_AUTO;
1115 for (i = 0; i < ARRAY_SIZE(v2_user_options); i++) {
1116 if (match_option(arg, ret, v2_user_options[i].option)) {
1117 spec_v2_user_print_cond(v2_user_options[i].option,
1118 v2_user_options[i].secure);
1119 return v2_user_options[i].cmd;
1123 pr_err("Unknown user space protection option (%s). Switching to AUTO select\n", arg);
1124 return SPECTRE_V2_USER_CMD_AUTO;
1127 static inline bool spectre_v2_in_ibrs_mode(enum spectre_v2_mitigation mode)
1129 return mode == SPECTRE_V2_IBRS ||
1130 mode == SPECTRE_V2_EIBRS ||
1131 mode == SPECTRE_V2_EIBRS_RETPOLINE ||
1132 mode == SPECTRE_V2_EIBRS_LFENCE;
1136 spectre_v2_user_select_mitigation(void)
1138 enum spectre_v2_user_mitigation mode = SPECTRE_V2_USER_NONE;
1139 bool smt_possible = IS_ENABLED(CONFIG_SMP);
1140 enum spectre_v2_user_cmd cmd;
1142 if (!boot_cpu_has(X86_FEATURE_IBPB) && !boot_cpu_has(X86_FEATURE_STIBP))
1145 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
1146 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
1147 smt_possible = false;
1149 cmd = spectre_v2_parse_user_cmdline();
1151 case SPECTRE_V2_USER_CMD_NONE:
1153 case SPECTRE_V2_USER_CMD_FORCE:
1154 mode = SPECTRE_V2_USER_STRICT;
1156 case SPECTRE_V2_USER_CMD_AUTO:
1157 case SPECTRE_V2_USER_CMD_PRCTL:
1158 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
1159 mode = SPECTRE_V2_USER_PRCTL;
1161 case SPECTRE_V2_USER_CMD_SECCOMP:
1162 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
1163 if (IS_ENABLED(CONFIG_SECCOMP))
1164 mode = SPECTRE_V2_USER_SECCOMP;
1166 mode = SPECTRE_V2_USER_PRCTL;
1170 /* Initialize Indirect Branch Prediction Barrier */
1171 if (boot_cpu_has(X86_FEATURE_IBPB)) {
1172 setup_force_cpu_cap(X86_FEATURE_USE_IBPB);
1174 spectre_v2_user_ibpb = mode;
1176 case SPECTRE_V2_USER_CMD_FORCE:
1177 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
1178 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
1179 static_branch_enable(&switch_mm_always_ibpb);
1180 spectre_v2_user_ibpb = SPECTRE_V2_USER_STRICT;
1182 case SPECTRE_V2_USER_CMD_PRCTL:
1183 case SPECTRE_V2_USER_CMD_AUTO:
1184 case SPECTRE_V2_USER_CMD_SECCOMP:
1185 static_branch_enable(&switch_mm_cond_ibpb);
1191 pr_info("mitigation: Enabling %s Indirect Branch Prediction Barrier\n",
1192 static_key_enabled(&switch_mm_always_ibpb) ?
1193 "always-on" : "conditional");
1197 * If no STIBP, IBRS or enhanced IBRS is enabled, or SMT impossible,
1198 * STIBP is not required.
1200 if (!boot_cpu_has(X86_FEATURE_STIBP) ||
1202 spectre_v2_in_ibrs_mode(spectre_v2_enabled))
1206 * At this point, an STIBP mode other than "off" has been set.
1207 * If STIBP support is not being forced, check if STIBP always-on
1210 if (mode != SPECTRE_V2_USER_STRICT &&
1211 boot_cpu_has(X86_FEATURE_AMD_STIBP_ALWAYS_ON))
1212 mode = SPECTRE_V2_USER_STRICT_PREFERRED;
1214 if (retbleed_mitigation == RETBLEED_MITIGATION_UNRET ||
1215 retbleed_mitigation == RETBLEED_MITIGATION_IBPB) {
1216 if (mode != SPECTRE_V2_USER_STRICT &&
1217 mode != SPECTRE_V2_USER_STRICT_PREFERRED)
1218 pr_info("Selecting STIBP always-on mode to complement retbleed mitigation\n");
1219 mode = SPECTRE_V2_USER_STRICT_PREFERRED;
1222 spectre_v2_user_stibp = mode;
1225 pr_info("%s\n", spectre_v2_user_strings[mode]);
1228 static const char * const spectre_v2_strings[] = {
1229 [SPECTRE_V2_NONE] = "Vulnerable",
1230 [SPECTRE_V2_RETPOLINE] = "Mitigation: Retpolines",
1231 [SPECTRE_V2_LFENCE] = "Mitigation: LFENCE",
1232 [SPECTRE_V2_EIBRS] = "Mitigation: Enhanced IBRS",
1233 [SPECTRE_V2_EIBRS_LFENCE] = "Mitigation: Enhanced IBRS + LFENCE",
1234 [SPECTRE_V2_EIBRS_RETPOLINE] = "Mitigation: Enhanced IBRS + Retpolines",
1235 [SPECTRE_V2_IBRS] = "Mitigation: IBRS",
1238 static const struct {
1240 enum spectre_v2_mitigation_cmd cmd;
1242 } mitigation_options[] __initconst = {
1243 { "off", SPECTRE_V2_CMD_NONE, false },
1244 { "on", SPECTRE_V2_CMD_FORCE, true },
1245 { "retpoline", SPECTRE_V2_CMD_RETPOLINE, false },
1246 { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_LFENCE, false },
1247 { "retpoline,lfence", SPECTRE_V2_CMD_RETPOLINE_LFENCE, false },
1248 { "retpoline,generic", SPECTRE_V2_CMD_RETPOLINE_GENERIC, false },
1249 { "eibrs", SPECTRE_V2_CMD_EIBRS, false },
1250 { "eibrs,lfence", SPECTRE_V2_CMD_EIBRS_LFENCE, false },
1251 { "eibrs,retpoline", SPECTRE_V2_CMD_EIBRS_RETPOLINE, false },
1252 { "auto", SPECTRE_V2_CMD_AUTO, false },
1253 { "ibrs", SPECTRE_V2_CMD_IBRS, false },
1256 static void __init spec_v2_print_cond(const char *reason, bool secure)
1258 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
1259 pr_info("%s selected on command line.\n", reason);
1262 static enum spectre_v2_mitigation_cmd __init spectre_v2_parse_cmdline(void)
1264 enum spectre_v2_mitigation_cmd cmd = SPECTRE_V2_CMD_AUTO;
1268 if (cmdline_find_option_bool(boot_command_line, "nospectre_v2") ||
1269 cpu_mitigations_off())
1270 return SPECTRE_V2_CMD_NONE;
1272 ret = cmdline_find_option(boot_command_line, "spectre_v2", arg, sizeof(arg));
1274 return SPECTRE_V2_CMD_AUTO;
1276 for (i = 0; i < ARRAY_SIZE(mitigation_options); i++) {
1277 if (!match_option(arg, ret, mitigation_options[i].option))
1279 cmd = mitigation_options[i].cmd;
1283 if (i >= ARRAY_SIZE(mitigation_options)) {
1284 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
1285 return SPECTRE_V2_CMD_AUTO;
1288 if ((cmd == SPECTRE_V2_CMD_RETPOLINE ||
1289 cmd == SPECTRE_V2_CMD_RETPOLINE_LFENCE ||
1290 cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC ||
1291 cmd == SPECTRE_V2_CMD_EIBRS_LFENCE ||
1292 cmd == SPECTRE_V2_CMD_EIBRS_RETPOLINE) &&
1293 !IS_ENABLED(CONFIG_RETPOLINE)) {
1294 pr_err("%s selected but not compiled in. Switching to AUTO select\n",
1295 mitigation_options[i].option);
1296 return SPECTRE_V2_CMD_AUTO;
1299 if ((cmd == SPECTRE_V2_CMD_EIBRS ||
1300 cmd == SPECTRE_V2_CMD_EIBRS_LFENCE ||
1301 cmd == SPECTRE_V2_CMD_EIBRS_RETPOLINE) &&
1302 !boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) {
1303 pr_err("%s selected but CPU doesn't have eIBRS. Switching to AUTO select\n",
1304 mitigation_options[i].option);
1305 return SPECTRE_V2_CMD_AUTO;
1308 if ((cmd == SPECTRE_V2_CMD_RETPOLINE_LFENCE ||
1309 cmd == SPECTRE_V2_CMD_EIBRS_LFENCE) &&
1310 !boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) {
1311 pr_err("%s selected, but CPU doesn't have a serializing LFENCE. Switching to AUTO select\n",
1312 mitigation_options[i].option);
1313 return SPECTRE_V2_CMD_AUTO;
1316 if (cmd == SPECTRE_V2_CMD_IBRS && !IS_ENABLED(CONFIG_CPU_IBRS_ENTRY)) {
1317 pr_err("%s selected but not compiled in. Switching to AUTO select\n",
1318 mitigation_options[i].option);
1319 return SPECTRE_V2_CMD_AUTO;
1322 if (cmd == SPECTRE_V2_CMD_IBRS && boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) {
1323 pr_err("%s selected but not Intel CPU. Switching to AUTO select\n",
1324 mitigation_options[i].option);
1325 return SPECTRE_V2_CMD_AUTO;
1328 if (cmd == SPECTRE_V2_CMD_IBRS && !boot_cpu_has(X86_FEATURE_IBRS)) {
1329 pr_err("%s selected but CPU doesn't have IBRS. Switching to AUTO select\n",
1330 mitigation_options[i].option);
1331 return SPECTRE_V2_CMD_AUTO;
1334 if (cmd == SPECTRE_V2_CMD_IBRS && cpu_feature_enabled(X86_FEATURE_XENPV)) {
1335 pr_err("%s selected but running as XenPV guest. Switching to AUTO select\n",
1336 mitigation_options[i].option);
1337 return SPECTRE_V2_CMD_AUTO;
1340 spec_v2_print_cond(mitigation_options[i].option,
1341 mitigation_options[i].secure);
1345 static enum spectre_v2_mitigation __init spectre_v2_select_retpoline(void)
1347 if (!IS_ENABLED(CONFIG_RETPOLINE)) {
1348 pr_err("Kernel not compiled with retpoline; no mitigation available!");
1349 return SPECTRE_V2_NONE;
1352 return SPECTRE_V2_RETPOLINE;
1355 /* Disable in-kernel use of non-RSB RET predictors */
1356 static void __init spec_ctrl_disable_kernel_rrsba(void)
1360 if (!boot_cpu_has(X86_FEATURE_RRSBA_CTRL))
1363 ia32_cap = x86_read_arch_cap_msr();
1365 if (ia32_cap & ARCH_CAP_RRSBA) {
1366 x86_spec_ctrl_base |= SPEC_CTRL_RRSBA_DIS_S;
1367 update_spec_ctrl(x86_spec_ctrl_base);
1371 static void __init spectre_v2_determine_rsb_fill_type_at_vmexit(enum spectre_v2_mitigation mode)
1374 * Similar to context switches, there are two types of RSB attacks
1379 * 2) Poisoned RSB entry
1381 * When retpoline is enabled, both are mitigated by filling/clearing
1384 * When IBRS is enabled, while #1 would be mitigated by the IBRS branch
1385 * prediction isolation protections, RSB still needs to be cleared
1386 * because of #2. Note that SMEP provides no protection here, unlike
1387 * user-space-poisoned RSB entries.
1389 * eIBRS should protect against RSB poisoning, but if the EIBRS_PBRSB
1390 * bug is present then a LITE version of RSB protection is required,
1391 * just a single call needs to retire before a RET is executed.
1394 case SPECTRE_V2_NONE:
1397 case SPECTRE_V2_EIBRS_LFENCE:
1398 case SPECTRE_V2_EIBRS:
1399 if (boot_cpu_has_bug(X86_BUG_EIBRS_PBRSB)) {
1400 setup_force_cpu_cap(X86_FEATURE_RSB_VMEXIT_LITE);
1401 pr_info("Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT\n");
1405 case SPECTRE_V2_EIBRS_RETPOLINE:
1406 case SPECTRE_V2_RETPOLINE:
1407 case SPECTRE_V2_LFENCE:
1408 case SPECTRE_V2_IBRS:
1409 setup_force_cpu_cap(X86_FEATURE_RSB_VMEXIT);
1410 pr_info("Spectre v2 / SpectreRSB : Filling RSB on VMEXIT\n");
1414 pr_warn_once("Unknown Spectre v2 mode, disabling RSB mitigation at VM exit");
1418 static void __init spectre_v2_select_mitigation(void)
1420 enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline();
1421 enum spectre_v2_mitigation mode = SPECTRE_V2_NONE;
1424 * If the CPU is not affected and the command line mode is NONE or AUTO
1425 * then nothing to do.
1427 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2) &&
1428 (cmd == SPECTRE_V2_CMD_NONE || cmd == SPECTRE_V2_CMD_AUTO))
1432 case SPECTRE_V2_CMD_NONE:
1435 case SPECTRE_V2_CMD_FORCE:
1436 case SPECTRE_V2_CMD_AUTO:
1437 if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) {
1438 mode = SPECTRE_V2_EIBRS;
1442 if (IS_ENABLED(CONFIG_CPU_IBRS_ENTRY) &&
1443 boot_cpu_has_bug(X86_BUG_RETBLEED) &&
1444 retbleed_cmd != RETBLEED_CMD_OFF &&
1445 retbleed_cmd != RETBLEED_CMD_STUFF &&
1446 boot_cpu_has(X86_FEATURE_IBRS) &&
1447 boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) {
1448 mode = SPECTRE_V2_IBRS;
1452 mode = spectre_v2_select_retpoline();
1455 case SPECTRE_V2_CMD_RETPOLINE_LFENCE:
1456 pr_err(SPECTRE_V2_LFENCE_MSG);
1457 mode = SPECTRE_V2_LFENCE;
1460 case SPECTRE_V2_CMD_RETPOLINE_GENERIC:
1461 mode = SPECTRE_V2_RETPOLINE;
1464 case SPECTRE_V2_CMD_RETPOLINE:
1465 mode = spectre_v2_select_retpoline();
1468 case SPECTRE_V2_CMD_IBRS:
1469 mode = SPECTRE_V2_IBRS;
1472 case SPECTRE_V2_CMD_EIBRS:
1473 mode = SPECTRE_V2_EIBRS;
1476 case SPECTRE_V2_CMD_EIBRS_LFENCE:
1477 mode = SPECTRE_V2_EIBRS_LFENCE;
1480 case SPECTRE_V2_CMD_EIBRS_RETPOLINE:
1481 mode = SPECTRE_V2_EIBRS_RETPOLINE;
1485 if (mode == SPECTRE_V2_EIBRS && unprivileged_ebpf_enabled())
1486 pr_err(SPECTRE_V2_EIBRS_EBPF_MSG);
1488 if (spectre_v2_in_ibrs_mode(mode)) {
1489 x86_spec_ctrl_base |= SPEC_CTRL_IBRS;
1490 update_spec_ctrl(x86_spec_ctrl_base);
1494 case SPECTRE_V2_NONE:
1495 case SPECTRE_V2_EIBRS:
1498 case SPECTRE_V2_IBRS:
1499 setup_force_cpu_cap(X86_FEATURE_KERNEL_IBRS);
1500 if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED))
1501 pr_warn(SPECTRE_V2_IBRS_PERF_MSG);
1504 case SPECTRE_V2_LFENCE:
1505 case SPECTRE_V2_EIBRS_LFENCE:
1506 setup_force_cpu_cap(X86_FEATURE_RETPOLINE_LFENCE);
1509 case SPECTRE_V2_RETPOLINE:
1510 case SPECTRE_V2_EIBRS_RETPOLINE:
1511 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
1516 * Disable alternate RSB predictions in kernel when indirect CALLs and
1517 * JMPs gets protection against BHI and Intramode-BTI, but RET
1518 * prediction from a non-RSB predictor is still a risk.
1520 if (mode == SPECTRE_V2_EIBRS_LFENCE ||
1521 mode == SPECTRE_V2_EIBRS_RETPOLINE ||
1522 mode == SPECTRE_V2_RETPOLINE)
1523 spec_ctrl_disable_kernel_rrsba();
1525 spectre_v2_enabled = mode;
1526 pr_info("%s\n", spectre_v2_strings[mode]);
1529 * If Spectre v2 protection has been enabled, fill the RSB during a
1530 * context switch. In general there are two types of RSB attacks
1531 * across context switches, for which the CALLs/RETs may be unbalanced.
1535 * Some Intel parts have "bottomless RSB". When the RSB is empty,
1536 * speculated return targets may come from the branch predictor,
1537 * which could have a user-poisoned BTB or BHB entry.
1539 * AMD has it even worse: *all* returns are speculated from the BTB,
1540 * regardless of the state of the RSB.
1542 * When IBRS or eIBRS is enabled, the "user -> kernel" attack
1543 * scenario is mitigated by the IBRS branch prediction isolation
1544 * properties, so the RSB buffer filling wouldn't be necessary to
1545 * protect against this type of attack.
1547 * The "user -> user" attack scenario is mitigated by RSB filling.
1549 * 2) Poisoned RSB entry
1551 * If the 'next' in-kernel return stack is shorter than 'prev',
1552 * 'next' could be tricked into speculating with a user-poisoned RSB
1555 * The "user -> kernel" attack scenario is mitigated by SMEP and
1558 * The "user -> user" scenario, also known as SpectreBHB, requires
1561 * So to mitigate all cases, unconditionally fill RSB on context
1564 * FIXME: Is this pointless for retbleed-affected AMD?
1566 setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW);
1567 pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n");
1569 spectre_v2_determine_rsb_fill_type_at_vmexit(mode);
1572 * Retpoline protects the kernel, but doesn't protect firmware. IBRS
1573 * and Enhanced IBRS protect firmware too, so enable IBRS around
1574 * firmware calls only when IBRS / Enhanced IBRS aren't otherwise
1577 * Use "mode" to check Enhanced IBRS instead of boot_cpu_has(), because
1578 * the user might select retpoline on the kernel command line and if
1579 * the CPU supports Enhanced IBRS, kernel might un-intentionally not
1580 * enable IBRS around firmware calls.
1582 if (boot_cpu_has_bug(X86_BUG_RETBLEED) &&
1583 boot_cpu_has(X86_FEATURE_IBPB) &&
1584 (boot_cpu_data.x86_vendor == X86_VENDOR_AMD ||
1585 boot_cpu_data.x86_vendor == X86_VENDOR_HYGON)) {
1587 if (retbleed_cmd != RETBLEED_CMD_IBPB) {
1588 setup_force_cpu_cap(X86_FEATURE_USE_IBPB_FW);
1589 pr_info("Enabling Speculation Barrier for firmware calls\n");
1592 } else if (boot_cpu_has(X86_FEATURE_IBRS) && !spectre_v2_in_ibrs_mode(mode)) {
1593 setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW);
1594 pr_info("Enabling Restricted Speculation for firmware calls\n");
1597 /* Set up IBPB and STIBP depending on the general spectre V2 command */
1598 spectre_v2_cmd = cmd;
1601 static void update_stibp_msr(void * __unused)
1603 u64 val = spec_ctrl_current() | (x86_spec_ctrl_base & SPEC_CTRL_STIBP);
1604 update_spec_ctrl(val);
1607 /* Update x86_spec_ctrl_base in case SMT state changed. */
1608 static void update_stibp_strict(void)
1610 u64 mask = x86_spec_ctrl_base & ~SPEC_CTRL_STIBP;
1612 if (sched_smt_active())
1613 mask |= SPEC_CTRL_STIBP;
1615 if (mask == x86_spec_ctrl_base)
1618 pr_info("Update user space SMT mitigation: STIBP %s\n",
1619 mask & SPEC_CTRL_STIBP ? "always-on" : "off");
1620 x86_spec_ctrl_base = mask;
1621 on_each_cpu(update_stibp_msr, NULL, 1);
1624 /* Update the static key controlling the evaluation of TIF_SPEC_IB */
1625 static void update_indir_branch_cond(void)
1627 if (sched_smt_active())
1628 static_branch_enable(&switch_to_cond_stibp);
1630 static_branch_disable(&switch_to_cond_stibp);
1634 #define pr_fmt(fmt) fmt
1636 /* Update the static key controlling the MDS CPU buffer clear in idle */
1637 static void update_mds_branch_idle(void)
1639 u64 ia32_cap = x86_read_arch_cap_msr();
1642 * Enable the idle clearing if SMT is active on CPUs which are
1643 * affected only by MSBDS and not any other MDS variant.
1645 * The other variants cannot be mitigated when SMT is enabled, so
1646 * clearing the buffers on idle just to prevent the Store Buffer
1647 * repartitioning leak would be a window dressing exercise.
1649 if (!boot_cpu_has_bug(X86_BUG_MSBDS_ONLY))
1652 if (sched_smt_active()) {
1653 static_branch_enable(&mds_idle_clear);
1654 } else if (mmio_mitigation == MMIO_MITIGATION_OFF ||
1655 (ia32_cap & ARCH_CAP_FBSDP_NO)) {
1656 static_branch_disable(&mds_idle_clear);
1660 #define MDS_MSG_SMT "MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.\n"
1661 #define TAA_MSG_SMT "TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details.\n"
1662 #define MMIO_MSG_SMT "MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.\n"
1664 void cpu_bugs_smt_update(void)
1666 mutex_lock(&spec_ctrl_mutex);
1668 if (sched_smt_active() && unprivileged_ebpf_enabled() &&
1669 spectre_v2_enabled == SPECTRE_V2_EIBRS_LFENCE)
1670 pr_warn_once(SPECTRE_V2_EIBRS_LFENCE_EBPF_SMT_MSG);
1672 switch (spectre_v2_user_stibp) {
1673 case SPECTRE_V2_USER_NONE:
1675 case SPECTRE_V2_USER_STRICT:
1676 case SPECTRE_V2_USER_STRICT_PREFERRED:
1677 update_stibp_strict();
1679 case SPECTRE_V2_USER_PRCTL:
1680 case SPECTRE_V2_USER_SECCOMP:
1681 update_indir_branch_cond();
1685 switch (mds_mitigation) {
1686 case MDS_MITIGATION_FULL:
1687 case MDS_MITIGATION_VMWERV:
1688 if (sched_smt_active() && !boot_cpu_has(X86_BUG_MSBDS_ONLY))
1689 pr_warn_once(MDS_MSG_SMT);
1690 update_mds_branch_idle();
1692 case MDS_MITIGATION_OFF:
1696 switch (taa_mitigation) {
1697 case TAA_MITIGATION_VERW:
1698 case TAA_MITIGATION_UCODE_NEEDED:
1699 if (sched_smt_active())
1700 pr_warn_once(TAA_MSG_SMT);
1702 case TAA_MITIGATION_TSX_DISABLED:
1703 case TAA_MITIGATION_OFF:
1707 switch (mmio_mitigation) {
1708 case MMIO_MITIGATION_VERW:
1709 case MMIO_MITIGATION_UCODE_NEEDED:
1710 if (sched_smt_active())
1711 pr_warn_once(MMIO_MSG_SMT);
1713 case MMIO_MITIGATION_OFF:
1717 mutex_unlock(&spec_ctrl_mutex);
1721 #define pr_fmt(fmt) "Speculative Store Bypass: " fmt
1723 static enum ssb_mitigation ssb_mode __ro_after_init = SPEC_STORE_BYPASS_NONE;
1725 /* The kernel command line selection */
1726 enum ssb_mitigation_cmd {
1727 SPEC_STORE_BYPASS_CMD_NONE,
1728 SPEC_STORE_BYPASS_CMD_AUTO,
1729 SPEC_STORE_BYPASS_CMD_ON,
1730 SPEC_STORE_BYPASS_CMD_PRCTL,
1731 SPEC_STORE_BYPASS_CMD_SECCOMP,
1734 static const char * const ssb_strings[] = {
1735 [SPEC_STORE_BYPASS_NONE] = "Vulnerable",
1736 [SPEC_STORE_BYPASS_DISABLE] = "Mitigation: Speculative Store Bypass disabled",
1737 [SPEC_STORE_BYPASS_PRCTL] = "Mitigation: Speculative Store Bypass disabled via prctl",
1738 [SPEC_STORE_BYPASS_SECCOMP] = "Mitigation: Speculative Store Bypass disabled via prctl and seccomp",
1741 static const struct {
1743 enum ssb_mitigation_cmd cmd;
1744 } ssb_mitigation_options[] __initconst = {
1745 { "auto", SPEC_STORE_BYPASS_CMD_AUTO }, /* Platform decides */
1746 { "on", SPEC_STORE_BYPASS_CMD_ON }, /* Disable Speculative Store Bypass */
1747 { "off", SPEC_STORE_BYPASS_CMD_NONE }, /* Don't touch Speculative Store Bypass */
1748 { "prctl", SPEC_STORE_BYPASS_CMD_PRCTL }, /* Disable Speculative Store Bypass via prctl */
1749 { "seccomp", SPEC_STORE_BYPASS_CMD_SECCOMP }, /* Disable Speculative Store Bypass via prctl and seccomp */
1752 static enum ssb_mitigation_cmd __init ssb_parse_cmdline(void)
1754 enum ssb_mitigation_cmd cmd = SPEC_STORE_BYPASS_CMD_AUTO;
1758 if (cmdline_find_option_bool(boot_command_line, "nospec_store_bypass_disable") ||
1759 cpu_mitigations_off()) {
1760 return SPEC_STORE_BYPASS_CMD_NONE;
1762 ret = cmdline_find_option(boot_command_line, "spec_store_bypass_disable",
1765 return SPEC_STORE_BYPASS_CMD_AUTO;
1767 for (i = 0; i < ARRAY_SIZE(ssb_mitigation_options); i++) {
1768 if (!match_option(arg, ret, ssb_mitigation_options[i].option))
1771 cmd = ssb_mitigation_options[i].cmd;
1775 if (i >= ARRAY_SIZE(ssb_mitigation_options)) {
1776 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
1777 return SPEC_STORE_BYPASS_CMD_AUTO;
1784 static enum ssb_mitigation __init __ssb_select_mitigation(void)
1786 enum ssb_mitigation mode = SPEC_STORE_BYPASS_NONE;
1787 enum ssb_mitigation_cmd cmd;
1789 if (!boot_cpu_has(X86_FEATURE_SSBD))
1792 cmd = ssb_parse_cmdline();
1793 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS) &&
1794 (cmd == SPEC_STORE_BYPASS_CMD_NONE ||
1795 cmd == SPEC_STORE_BYPASS_CMD_AUTO))
1799 case SPEC_STORE_BYPASS_CMD_SECCOMP:
1801 * Choose prctl+seccomp as the default mode if seccomp is
1804 if (IS_ENABLED(CONFIG_SECCOMP))
1805 mode = SPEC_STORE_BYPASS_SECCOMP;
1807 mode = SPEC_STORE_BYPASS_PRCTL;
1809 case SPEC_STORE_BYPASS_CMD_ON:
1810 mode = SPEC_STORE_BYPASS_DISABLE;
1812 case SPEC_STORE_BYPASS_CMD_AUTO:
1813 case SPEC_STORE_BYPASS_CMD_PRCTL:
1814 mode = SPEC_STORE_BYPASS_PRCTL;
1816 case SPEC_STORE_BYPASS_CMD_NONE:
1821 * We have three CPU feature flags that are in play here:
1822 * - X86_BUG_SPEC_STORE_BYPASS - CPU is susceptible.
1823 * - X86_FEATURE_SSBD - CPU is able to turn off speculative store bypass
1824 * - X86_FEATURE_SPEC_STORE_BYPASS_DISABLE - engage the mitigation
1826 if (mode == SPEC_STORE_BYPASS_DISABLE) {
1827 setup_force_cpu_cap(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE);
1829 * Intel uses the SPEC CTRL MSR Bit(2) for this, while AMD may
1830 * use a completely different MSR and bit dependent on family.
1832 if (!static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) &&
1833 !static_cpu_has(X86_FEATURE_AMD_SSBD)) {
1834 x86_amd_ssb_disable();
1836 x86_spec_ctrl_base |= SPEC_CTRL_SSBD;
1837 update_spec_ctrl(x86_spec_ctrl_base);
1844 static void ssb_select_mitigation(void)
1846 ssb_mode = __ssb_select_mitigation();
1848 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1849 pr_info("%s\n", ssb_strings[ssb_mode]);
1853 #define pr_fmt(fmt) "Speculation prctl: " fmt
1855 static void task_update_spec_tif(struct task_struct *tsk)
1857 /* Force the update of the real TIF bits */
1858 set_tsk_thread_flag(tsk, TIF_SPEC_FORCE_UPDATE);
1861 * Immediately update the speculation control MSRs for the current
1862 * task, but for a non-current task delay setting the CPU
1863 * mitigation until it is scheduled next.
1865 * This can only happen for SECCOMP mitigation. For PRCTL it's
1866 * always the current task.
1869 speculation_ctrl_update_current();
1872 static int l1d_flush_prctl_set(struct task_struct *task, unsigned long ctrl)
1875 if (!static_branch_unlikely(&switch_mm_cond_l1d_flush))
1879 case PR_SPEC_ENABLE:
1880 set_ti_thread_flag(&task->thread_info, TIF_SPEC_L1D_FLUSH);
1882 case PR_SPEC_DISABLE:
1883 clear_ti_thread_flag(&task->thread_info, TIF_SPEC_L1D_FLUSH);
1890 static int ssb_prctl_set(struct task_struct *task, unsigned long ctrl)
1892 if (ssb_mode != SPEC_STORE_BYPASS_PRCTL &&
1893 ssb_mode != SPEC_STORE_BYPASS_SECCOMP)
1897 case PR_SPEC_ENABLE:
1898 /* If speculation is force disabled, enable is not allowed */
1899 if (task_spec_ssb_force_disable(task))
1901 task_clear_spec_ssb_disable(task);
1902 task_clear_spec_ssb_noexec(task);
1903 task_update_spec_tif(task);
1905 case PR_SPEC_DISABLE:
1906 task_set_spec_ssb_disable(task);
1907 task_clear_spec_ssb_noexec(task);
1908 task_update_spec_tif(task);
1910 case PR_SPEC_FORCE_DISABLE:
1911 task_set_spec_ssb_disable(task);
1912 task_set_spec_ssb_force_disable(task);
1913 task_clear_spec_ssb_noexec(task);
1914 task_update_spec_tif(task);
1916 case PR_SPEC_DISABLE_NOEXEC:
1917 if (task_spec_ssb_force_disable(task))
1919 task_set_spec_ssb_disable(task);
1920 task_set_spec_ssb_noexec(task);
1921 task_update_spec_tif(task);
1929 static bool is_spec_ib_user_controlled(void)
1931 return spectre_v2_user_ibpb == SPECTRE_V2_USER_PRCTL ||
1932 spectre_v2_user_ibpb == SPECTRE_V2_USER_SECCOMP ||
1933 spectre_v2_user_stibp == SPECTRE_V2_USER_PRCTL ||
1934 spectre_v2_user_stibp == SPECTRE_V2_USER_SECCOMP;
1937 static int ib_prctl_set(struct task_struct *task, unsigned long ctrl)
1940 case PR_SPEC_ENABLE:
1941 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE &&
1942 spectre_v2_user_stibp == SPECTRE_V2_USER_NONE)
1946 * With strict mode for both IBPB and STIBP, the instruction
1947 * code paths avoid checking this task flag and instead,
1948 * unconditionally run the instruction. However, STIBP and IBPB
1949 * are independent and either can be set to conditionally
1950 * enabled regardless of the mode of the other.
1952 * If either is set to conditional, allow the task flag to be
1953 * updated, unless it was force-disabled by a previous prctl
1954 * call. Currently, this is possible on an AMD CPU which has the
1955 * feature X86_FEATURE_AMD_STIBP_ALWAYS_ON. In this case, if the
1956 * kernel is booted with 'spectre_v2_user=seccomp', then
1957 * spectre_v2_user_ibpb == SPECTRE_V2_USER_SECCOMP and
1958 * spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED.
1960 if (!is_spec_ib_user_controlled() ||
1961 task_spec_ib_force_disable(task))
1964 task_clear_spec_ib_disable(task);
1965 task_update_spec_tif(task);
1967 case PR_SPEC_DISABLE:
1968 case PR_SPEC_FORCE_DISABLE:
1970 * Indirect branch speculation is always allowed when
1971 * mitigation is force disabled.
1973 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE &&
1974 spectre_v2_user_stibp == SPECTRE_V2_USER_NONE)
1977 if (!is_spec_ib_user_controlled())
1980 task_set_spec_ib_disable(task);
1981 if (ctrl == PR_SPEC_FORCE_DISABLE)
1982 task_set_spec_ib_force_disable(task);
1983 task_update_spec_tif(task);
1991 int arch_prctl_spec_ctrl_set(struct task_struct *task, unsigned long which,
1995 case PR_SPEC_STORE_BYPASS:
1996 return ssb_prctl_set(task, ctrl);
1997 case PR_SPEC_INDIRECT_BRANCH:
1998 return ib_prctl_set(task, ctrl);
1999 case PR_SPEC_L1D_FLUSH:
2000 return l1d_flush_prctl_set(task, ctrl);
2006 #ifdef CONFIG_SECCOMP
2007 void arch_seccomp_spec_mitigate(struct task_struct *task)
2009 if (ssb_mode == SPEC_STORE_BYPASS_SECCOMP)
2010 ssb_prctl_set(task, PR_SPEC_FORCE_DISABLE);
2011 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_SECCOMP ||
2012 spectre_v2_user_stibp == SPECTRE_V2_USER_SECCOMP)
2013 ib_prctl_set(task, PR_SPEC_FORCE_DISABLE);
2017 static int l1d_flush_prctl_get(struct task_struct *task)
2019 if (!static_branch_unlikely(&switch_mm_cond_l1d_flush))
2020 return PR_SPEC_FORCE_DISABLE;
2022 if (test_ti_thread_flag(&task->thread_info, TIF_SPEC_L1D_FLUSH))
2023 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
2025 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
2028 static int ssb_prctl_get(struct task_struct *task)
2031 case SPEC_STORE_BYPASS_DISABLE:
2032 return PR_SPEC_DISABLE;
2033 case SPEC_STORE_BYPASS_SECCOMP:
2034 case SPEC_STORE_BYPASS_PRCTL:
2035 if (task_spec_ssb_force_disable(task))
2036 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
2037 if (task_spec_ssb_noexec(task))
2038 return PR_SPEC_PRCTL | PR_SPEC_DISABLE_NOEXEC;
2039 if (task_spec_ssb_disable(task))
2040 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
2041 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
2043 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
2044 return PR_SPEC_ENABLE;
2045 return PR_SPEC_NOT_AFFECTED;
2049 static int ib_prctl_get(struct task_struct *task)
2051 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
2052 return PR_SPEC_NOT_AFFECTED;
2054 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE &&
2055 spectre_v2_user_stibp == SPECTRE_V2_USER_NONE)
2056 return PR_SPEC_ENABLE;
2057 else if (is_spec_ib_user_controlled()) {
2058 if (task_spec_ib_force_disable(task))
2059 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
2060 if (task_spec_ib_disable(task))
2061 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
2062 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
2063 } else if (spectre_v2_user_ibpb == SPECTRE_V2_USER_STRICT ||
2064 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT ||
2065 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED)
2066 return PR_SPEC_DISABLE;
2068 return PR_SPEC_NOT_AFFECTED;
2071 int arch_prctl_spec_ctrl_get(struct task_struct *task, unsigned long which)
2074 case PR_SPEC_STORE_BYPASS:
2075 return ssb_prctl_get(task);
2076 case PR_SPEC_INDIRECT_BRANCH:
2077 return ib_prctl_get(task);
2078 case PR_SPEC_L1D_FLUSH:
2079 return l1d_flush_prctl_get(task);
2085 void x86_spec_ctrl_setup_ap(void)
2087 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
2088 update_spec_ctrl(x86_spec_ctrl_base);
2090 if (ssb_mode == SPEC_STORE_BYPASS_DISABLE)
2091 x86_amd_ssb_disable();
2094 bool itlb_multihit_kvm_mitigation;
2095 EXPORT_SYMBOL_GPL(itlb_multihit_kvm_mitigation);
2098 #define pr_fmt(fmt) "L1TF: " fmt
2100 /* Default mitigation for L1TF-affected CPUs */
2101 enum l1tf_mitigations l1tf_mitigation __ro_after_init = L1TF_MITIGATION_FLUSH;
2102 #if IS_ENABLED(CONFIG_KVM_INTEL)
2103 EXPORT_SYMBOL_GPL(l1tf_mitigation);
2105 enum vmx_l1d_flush_state l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
2106 EXPORT_SYMBOL_GPL(l1tf_vmx_mitigation);
2109 * These CPUs all support 44bits physical address space internally in the
2110 * cache but CPUID can report a smaller number of physical address bits.
2112 * The L1TF mitigation uses the top most address bit for the inversion of
2113 * non present PTEs. When the installed memory reaches into the top most
2114 * address bit due to memory holes, which has been observed on machines
2115 * which report 36bits physical address bits and have 32G RAM installed,
2116 * then the mitigation range check in l1tf_select_mitigation() triggers.
2117 * This is a false positive because the mitigation is still possible due to
2118 * the fact that the cache uses 44bit internally. Use the cache bits
2119 * instead of the reported physical bits and adjust them on the affected
2120 * machines to 44bit if the reported bits are less than 44.
2122 static void override_cache_bits(struct cpuinfo_x86 *c)
2127 switch (c->x86_model) {
2128 case INTEL_FAM6_NEHALEM:
2129 case INTEL_FAM6_WESTMERE:
2130 case INTEL_FAM6_SANDYBRIDGE:
2131 case INTEL_FAM6_IVYBRIDGE:
2132 case INTEL_FAM6_HASWELL:
2133 case INTEL_FAM6_HASWELL_L:
2134 case INTEL_FAM6_HASWELL_G:
2135 case INTEL_FAM6_BROADWELL:
2136 case INTEL_FAM6_BROADWELL_G:
2137 case INTEL_FAM6_SKYLAKE_L:
2138 case INTEL_FAM6_SKYLAKE:
2139 case INTEL_FAM6_KABYLAKE_L:
2140 case INTEL_FAM6_KABYLAKE:
2141 if (c->x86_cache_bits < 44)
2142 c->x86_cache_bits = 44;
2147 static void __init l1tf_select_mitigation(void)
2151 if (!boot_cpu_has_bug(X86_BUG_L1TF))
2154 if (cpu_mitigations_off())
2155 l1tf_mitigation = L1TF_MITIGATION_OFF;
2156 else if (cpu_mitigations_auto_nosmt())
2157 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
2159 override_cache_bits(&boot_cpu_data);
2161 switch (l1tf_mitigation) {
2162 case L1TF_MITIGATION_OFF:
2163 case L1TF_MITIGATION_FLUSH_NOWARN:
2164 case L1TF_MITIGATION_FLUSH:
2166 case L1TF_MITIGATION_FLUSH_NOSMT:
2167 case L1TF_MITIGATION_FULL:
2168 cpu_smt_disable(false);
2170 case L1TF_MITIGATION_FULL_FORCE:
2171 cpu_smt_disable(true);
2175 #if CONFIG_PGTABLE_LEVELS == 2
2176 pr_warn("Kernel not compiled for PAE. No mitigation for L1TF\n");
2180 half_pa = (u64)l1tf_pfn_limit() << PAGE_SHIFT;
2181 if (l1tf_mitigation != L1TF_MITIGATION_OFF &&
2182 e820__mapped_any(half_pa, ULLONG_MAX - half_pa, E820_TYPE_RAM)) {
2183 pr_warn("System has more than MAX_PA/2 memory. L1TF mitigation not effective.\n");
2184 pr_info("You may make it effective by booting the kernel with mem=%llu parameter.\n",
2186 pr_info("However, doing so will make a part of your RAM unusable.\n");
2187 pr_info("Reading https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html might help you decide.\n");
2191 setup_force_cpu_cap(X86_FEATURE_L1TF_PTEINV);
2194 static int __init l1tf_cmdline(char *str)
2196 if (!boot_cpu_has_bug(X86_BUG_L1TF))
2202 if (!strcmp(str, "off"))
2203 l1tf_mitigation = L1TF_MITIGATION_OFF;
2204 else if (!strcmp(str, "flush,nowarn"))
2205 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOWARN;
2206 else if (!strcmp(str, "flush"))
2207 l1tf_mitigation = L1TF_MITIGATION_FLUSH;
2208 else if (!strcmp(str, "flush,nosmt"))
2209 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
2210 else if (!strcmp(str, "full"))
2211 l1tf_mitigation = L1TF_MITIGATION_FULL;
2212 else if (!strcmp(str, "full,force"))
2213 l1tf_mitigation = L1TF_MITIGATION_FULL_FORCE;
2217 early_param("l1tf", l1tf_cmdline);
2220 #define pr_fmt(fmt) fmt
2224 #define L1TF_DEFAULT_MSG "Mitigation: PTE Inversion"
2226 #if IS_ENABLED(CONFIG_KVM_INTEL)
2227 static const char * const l1tf_vmx_states[] = {
2228 [VMENTER_L1D_FLUSH_AUTO] = "auto",
2229 [VMENTER_L1D_FLUSH_NEVER] = "vulnerable",
2230 [VMENTER_L1D_FLUSH_COND] = "conditional cache flushes",
2231 [VMENTER_L1D_FLUSH_ALWAYS] = "cache flushes",
2232 [VMENTER_L1D_FLUSH_EPT_DISABLED] = "EPT disabled",
2233 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = "flush not necessary"
2236 static ssize_t l1tf_show_state(char *buf)
2238 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO)
2239 return sysfs_emit(buf, "%s\n", L1TF_DEFAULT_MSG);
2241 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_EPT_DISABLED ||
2242 (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER &&
2243 sched_smt_active())) {
2244 return sysfs_emit(buf, "%s; VMX: %s\n", L1TF_DEFAULT_MSG,
2245 l1tf_vmx_states[l1tf_vmx_mitigation]);
2248 return sysfs_emit(buf, "%s; VMX: %s, SMT %s\n", L1TF_DEFAULT_MSG,
2249 l1tf_vmx_states[l1tf_vmx_mitigation],
2250 sched_smt_active() ? "vulnerable" : "disabled");
2253 static ssize_t itlb_multihit_show_state(char *buf)
2255 if (!boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2256 !boot_cpu_has(X86_FEATURE_VMX))
2257 return sysfs_emit(buf, "KVM: Mitigation: VMX unsupported\n");
2258 else if (!(cr4_read_shadow() & X86_CR4_VMXE))
2259 return sysfs_emit(buf, "KVM: Mitigation: VMX disabled\n");
2260 else if (itlb_multihit_kvm_mitigation)
2261 return sysfs_emit(buf, "KVM: Mitigation: Split huge pages\n");
2263 return sysfs_emit(buf, "KVM: Vulnerable\n");
2266 static ssize_t l1tf_show_state(char *buf)
2268 return sysfs_emit(buf, "%s\n", L1TF_DEFAULT_MSG);
2271 static ssize_t itlb_multihit_show_state(char *buf)
2273 return sysfs_emit(buf, "Processor vulnerable\n");
2277 static ssize_t mds_show_state(char *buf)
2279 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
2280 return sysfs_emit(buf, "%s; SMT Host state unknown\n",
2281 mds_strings[mds_mitigation]);
2284 if (boot_cpu_has(X86_BUG_MSBDS_ONLY)) {
2285 return sysfs_emit(buf, "%s; SMT %s\n", mds_strings[mds_mitigation],
2286 (mds_mitigation == MDS_MITIGATION_OFF ? "vulnerable" :
2287 sched_smt_active() ? "mitigated" : "disabled"));
2290 return sysfs_emit(buf, "%s; SMT %s\n", mds_strings[mds_mitigation],
2291 sched_smt_active() ? "vulnerable" : "disabled");
2294 static ssize_t tsx_async_abort_show_state(char *buf)
2296 if ((taa_mitigation == TAA_MITIGATION_TSX_DISABLED) ||
2297 (taa_mitigation == TAA_MITIGATION_OFF))
2298 return sysfs_emit(buf, "%s\n", taa_strings[taa_mitigation]);
2300 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
2301 return sysfs_emit(buf, "%s; SMT Host state unknown\n",
2302 taa_strings[taa_mitigation]);
2305 return sysfs_emit(buf, "%s; SMT %s\n", taa_strings[taa_mitigation],
2306 sched_smt_active() ? "vulnerable" : "disabled");
2309 static ssize_t mmio_stale_data_show_state(char *buf)
2311 if (boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN))
2312 return sysfs_emit(buf, "Unknown: No mitigations\n");
2314 if (mmio_mitigation == MMIO_MITIGATION_OFF)
2315 return sysfs_emit(buf, "%s\n", mmio_strings[mmio_mitigation]);
2317 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
2318 return sysfs_emit(buf, "%s; SMT Host state unknown\n",
2319 mmio_strings[mmio_mitigation]);
2322 return sysfs_emit(buf, "%s; SMT %s\n", mmio_strings[mmio_mitigation],
2323 sched_smt_active() ? "vulnerable" : "disabled");
2326 static char *stibp_state(void)
2328 if (spectre_v2_in_ibrs_mode(spectre_v2_enabled))
2331 switch (spectre_v2_user_stibp) {
2332 case SPECTRE_V2_USER_NONE:
2333 return ", STIBP: disabled";
2334 case SPECTRE_V2_USER_STRICT:
2335 return ", STIBP: forced";
2336 case SPECTRE_V2_USER_STRICT_PREFERRED:
2337 return ", STIBP: always-on";
2338 case SPECTRE_V2_USER_PRCTL:
2339 case SPECTRE_V2_USER_SECCOMP:
2340 if (static_key_enabled(&switch_to_cond_stibp))
2341 return ", STIBP: conditional";
2346 static char *ibpb_state(void)
2348 if (boot_cpu_has(X86_FEATURE_IBPB)) {
2349 if (static_key_enabled(&switch_mm_always_ibpb))
2350 return ", IBPB: always-on";
2351 if (static_key_enabled(&switch_mm_cond_ibpb))
2352 return ", IBPB: conditional";
2353 return ", IBPB: disabled";
2358 static char *pbrsb_eibrs_state(void)
2360 if (boot_cpu_has_bug(X86_BUG_EIBRS_PBRSB)) {
2361 if (boot_cpu_has(X86_FEATURE_RSB_VMEXIT_LITE) ||
2362 boot_cpu_has(X86_FEATURE_RSB_VMEXIT))
2363 return ", PBRSB-eIBRS: SW sequence";
2365 return ", PBRSB-eIBRS: Vulnerable";
2367 return ", PBRSB-eIBRS: Not affected";
2371 static ssize_t spectre_v2_show_state(char *buf)
2373 if (spectre_v2_enabled == SPECTRE_V2_LFENCE)
2374 return sysfs_emit(buf, "Vulnerable: LFENCE\n");
2376 if (spectre_v2_enabled == SPECTRE_V2_EIBRS && unprivileged_ebpf_enabled())
2377 return sysfs_emit(buf, "Vulnerable: eIBRS with unprivileged eBPF\n");
2379 if (sched_smt_active() && unprivileged_ebpf_enabled() &&
2380 spectre_v2_enabled == SPECTRE_V2_EIBRS_LFENCE)
2381 return sysfs_emit(buf, "Vulnerable: eIBRS+LFENCE with unprivileged eBPF and SMT\n");
2383 return sysfs_emit(buf, "%s%s%s%s%s%s%s\n",
2384 spectre_v2_strings[spectre_v2_enabled],
2386 boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "",
2388 boot_cpu_has(X86_FEATURE_RSB_CTXSW) ? ", RSB filling" : "",
2389 pbrsb_eibrs_state(),
2390 spectre_v2_module_string());
2393 static ssize_t srbds_show_state(char *buf)
2395 return sysfs_emit(buf, "%s\n", srbds_strings[srbds_mitigation]);
2398 static ssize_t retbleed_show_state(char *buf)
2400 if (retbleed_mitigation == RETBLEED_MITIGATION_UNRET ||
2401 retbleed_mitigation == RETBLEED_MITIGATION_IBPB) {
2402 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD &&
2403 boot_cpu_data.x86_vendor != X86_VENDOR_HYGON)
2404 return sysfs_emit(buf, "Vulnerable: untrained return thunk / IBPB on non-AMD based uarch\n");
2406 return sysfs_emit(buf, "%s; SMT %s\n", retbleed_strings[retbleed_mitigation],
2407 !sched_smt_active() ? "disabled" :
2408 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT ||
2409 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED ?
2410 "enabled with STIBP protection" : "vulnerable");
2413 return sysfs_emit(buf, "%s\n", retbleed_strings[retbleed_mitigation]);
2416 static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr,
2417 char *buf, unsigned int bug)
2419 if (!boot_cpu_has_bug(bug))
2420 return sysfs_emit(buf, "Not affected\n");
2423 case X86_BUG_CPU_MELTDOWN:
2424 if (boot_cpu_has(X86_FEATURE_PTI))
2425 return sysfs_emit(buf, "Mitigation: PTI\n");
2427 if (hypervisor_is_type(X86_HYPER_XEN_PV))
2428 return sysfs_emit(buf, "Unknown (XEN PV detected, hypervisor mitigation required)\n");
2432 case X86_BUG_SPECTRE_V1:
2433 return sysfs_emit(buf, "%s\n", spectre_v1_strings[spectre_v1_mitigation]);
2435 case X86_BUG_SPECTRE_V2:
2436 return spectre_v2_show_state(buf);
2438 case X86_BUG_SPEC_STORE_BYPASS:
2439 return sysfs_emit(buf, "%s\n", ssb_strings[ssb_mode]);
2442 if (boot_cpu_has(X86_FEATURE_L1TF_PTEINV))
2443 return l1tf_show_state(buf);
2447 return mds_show_state(buf);
2450 return tsx_async_abort_show_state(buf);
2452 case X86_BUG_ITLB_MULTIHIT:
2453 return itlb_multihit_show_state(buf);
2456 return srbds_show_state(buf);
2458 case X86_BUG_MMIO_STALE_DATA:
2459 case X86_BUG_MMIO_UNKNOWN:
2460 return mmio_stale_data_show_state(buf);
2462 case X86_BUG_RETBLEED:
2463 return retbleed_show_state(buf);
2469 return sysfs_emit(buf, "Vulnerable\n");
2472 ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
2474 return cpu_show_common(dev, attr, buf, X86_BUG_CPU_MELTDOWN);
2477 ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf)
2479 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V1);
2482 ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf)
2484 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V2);
2487 ssize_t cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf)
2489 return cpu_show_common(dev, attr, buf, X86_BUG_SPEC_STORE_BYPASS);
2492 ssize_t cpu_show_l1tf(struct device *dev, struct device_attribute *attr, char *buf)
2494 return cpu_show_common(dev, attr, buf, X86_BUG_L1TF);
2497 ssize_t cpu_show_mds(struct device *dev, struct device_attribute *attr, char *buf)
2499 return cpu_show_common(dev, attr, buf, X86_BUG_MDS);
2502 ssize_t cpu_show_tsx_async_abort(struct device *dev, struct device_attribute *attr, char *buf)
2504 return cpu_show_common(dev, attr, buf, X86_BUG_TAA);
2507 ssize_t cpu_show_itlb_multihit(struct device *dev, struct device_attribute *attr, char *buf)
2509 return cpu_show_common(dev, attr, buf, X86_BUG_ITLB_MULTIHIT);
2512 ssize_t cpu_show_srbds(struct device *dev, struct device_attribute *attr, char *buf)
2514 return cpu_show_common(dev, attr, buf, X86_BUG_SRBDS);
2517 ssize_t cpu_show_mmio_stale_data(struct device *dev, struct device_attribute *attr, char *buf)
2519 if (boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN))
2520 return cpu_show_common(dev, attr, buf, X86_BUG_MMIO_UNKNOWN);
2522 return cpu_show_common(dev, attr, buf, X86_BUG_MMIO_STALE_DATA);
2525 ssize_t cpu_show_retbleed(struct device *dev, struct device_attribute *attr, char *buf)
2527 return cpu_show_common(dev, attr, buf, X86_BUG_RETBLEED);