1
2
3
4
5
6
7
8
9
10
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
20#include <asm/spec-ctrl.h>
21#include <asm/cmdline.h>
22#include <asm/bugs.h>
23#include <asm/processor.h>
24#include <asm/processor-flags.h>
25#include <asm/fpu/internal.h>
26#include <asm/msr.h>
27#include <asm/vmx.h>
28#include <asm/paravirt.h>
29#include <asm/alternative.h>
30#include <asm/set_memory.h>
31#include <asm/intel-family.h>
32#include <asm/e820/api.h>
33#include <asm/hypervisor.h>
34#include <asm/tlbflush.h>
35
36#include "cpu.h"
37
38static void __init spectre_v1_select_mitigation(void);
39static void __init spectre_v2_select_mitigation(void);
40static void __init ssb_select_mitigation(void);
41static void __init l1tf_select_mitigation(void);
42static void __init mds_select_mitigation(void);
43static void __init mds_print_mitigation(void);
44static void __init taa_select_mitigation(void);
45static void __init srbds_select_mitigation(void);
46
47
48u64 x86_spec_ctrl_base;
49EXPORT_SYMBOL_GPL(x86_spec_ctrl_base);
50static DEFINE_MUTEX(spec_ctrl_mutex);
51
52
53
54
55
56static u64 __ro_after_init x86_spec_ctrl_mask = SPEC_CTRL_IBRS;
57
58
59
60
61
62u64 __ro_after_init x86_amd_ls_cfg_base;
63u64 __ro_after_init x86_amd_ls_cfg_ssbd_mask;
64
65
66DEFINE_STATIC_KEY_FALSE(switch_to_cond_stibp);
67
68DEFINE_STATIC_KEY_FALSE(switch_mm_cond_ibpb);
69
70DEFINE_STATIC_KEY_FALSE(switch_mm_always_ibpb);
71
72
73DEFINE_STATIC_KEY_FALSE(mds_user_clear);
74EXPORT_SYMBOL_GPL(mds_user_clear);
75
76DEFINE_STATIC_KEY_FALSE(mds_idle_clear);
77EXPORT_SYMBOL_GPL(mds_idle_clear);
78
79void __init check_bugs(void)
80{
81 identify_boot_cpu();
82
83
84
85
86
87 cpu_smt_check_topology();
88
89 if (!IS_ENABLED(CONFIG_SMP)) {
90 pr_info("CPU: ");
91 print_cpu_info(&boot_cpu_data);
92 }
93
94
95
96
97
98
99 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
100 rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
101
102
103 if (boot_cpu_has(X86_FEATURE_STIBP))
104 x86_spec_ctrl_mask |= SPEC_CTRL_STIBP;
105
106
107 spectre_v1_select_mitigation();
108 spectre_v2_select_mitigation();
109 ssb_select_mitigation();
110 l1tf_select_mitigation();
111 mds_select_mitigation();
112 taa_select_mitigation();
113 srbds_select_mitigation();
114
115
116
117
118
119 mds_print_mitigation();
120
121 arch_smt_update();
122
123#ifdef CONFIG_X86_32
124
125
126
127
128
129
130
131 if (boot_cpu_data.x86 < 4)
132 panic("Kernel requires i486+ for 'invlpg' and other features");
133
134 init_utsname()->machine[1] =
135 '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
136 alternative_instructions();
137
138 fpu__init_check_bugs();
139#else
140 alternative_instructions();
141
142
143
144
145
146
147
148
149
150 if (!direct_gbpages)
151 set_memory_4k((unsigned long)__va(0), 1);
152#endif
153}
154
155void
156x86_virt_spec_ctrl(u64 guest_spec_ctrl, u64 guest_virt_spec_ctrl, bool setguest)
157{
158 u64 msrval, guestval, hostval = x86_spec_ctrl_base;
159 struct thread_info *ti = current_thread_info();
160
161
162 if (static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) {
163
164
165
166
167
168 guestval = hostval & ~x86_spec_ctrl_mask;
169 guestval |= guest_spec_ctrl & x86_spec_ctrl_mask;
170
171
172 if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) ||
173 static_cpu_has(X86_FEATURE_AMD_SSBD))
174 hostval |= ssbd_tif_to_spec_ctrl(ti->flags);
175
176
177 if (static_branch_unlikely(&switch_to_cond_stibp))
178 hostval |= stibp_tif_to_spec_ctrl(ti->flags);
179
180 if (hostval != guestval) {
181 msrval = setguest ? guestval : hostval;
182 wrmsrl(MSR_IA32_SPEC_CTRL, msrval);
183 }
184 }
185
186
187
188
189
190 if (!static_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
191 !static_cpu_has(X86_FEATURE_VIRT_SSBD))
192 return;
193
194
195
196
197
198
199 if (static_cpu_has(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE))
200 hostval = SPEC_CTRL_SSBD;
201 else
202 hostval = ssbd_tif_to_spec_ctrl(ti->flags);
203
204
205 guestval = guest_virt_spec_ctrl & SPEC_CTRL_SSBD;
206
207 if (hostval != guestval) {
208 unsigned long tif;
209
210 tif = setguest ? ssbd_spec_ctrl_to_tif(guestval) :
211 ssbd_spec_ctrl_to_tif(hostval);
212
213 speculation_ctrl_update(tif);
214 }
215}
216EXPORT_SYMBOL_GPL(x86_virt_spec_ctrl);
217
218static void x86_amd_ssb_disable(void)
219{
220 u64 msrval = x86_amd_ls_cfg_base | x86_amd_ls_cfg_ssbd_mask;
221
222 if (boot_cpu_has(X86_FEATURE_VIRT_SSBD))
223 wrmsrl(MSR_AMD64_VIRT_SPEC_CTRL, SPEC_CTRL_SSBD);
224 else if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD))
225 wrmsrl(MSR_AMD64_LS_CFG, msrval);
226}
227
228#undef pr_fmt
229#define pr_fmt(fmt) "MDS: " fmt
230
231
232static enum mds_mitigations mds_mitigation __ro_after_init = MDS_MITIGATION_FULL;
233static bool mds_nosmt __ro_after_init = false;
234
235static const char * const mds_strings[] = {
236 [MDS_MITIGATION_OFF] = "Vulnerable",
237 [MDS_MITIGATION_FULL] = "Mitigation: Clear CPU buffers",
238 [MDS_MITIGATION_VMWERV] = "Vulnerable: Clear CPU buffers attempted, no microcode",
239};
240
241static void __init mds_select_mitigation(void)
242{
243 if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off()) {
244 mds_mitigation = MDS_MITIGATION_OFF;
245 return;
246 }
247
248 if (mds_mitigation == MDS_MITIGATION_FULL) {
249 if (!boot_cpu_has(X86_FEATURE_MD_CLEAR))
250 mds_mitigation = MDS_MITIGATION_VMWERV;
251
252 static_branch_enable(&mds_user_clear);
253
254 if (!boot_cpu_has(X86_BUG_MSBDS_ONLY) &&
255 (mds_nosmt || cpu_mitigations_auto_nosmt()))
256 cpu_smt_disable(false);
257 }
258}
259
260static void __init mds_print_mitigation(void)
261{
262 if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off())
263 return;
264
265 pr_info("%s\n", mds_strings[mds_mitigation]);
266}
267
268static int __init mds_cmdline(char *str)
269{
270 if (!boot_cpu_has_bug(X86_BUG_MDS))
271 return 0;
272
273 if (!str)
274 return -EINVAL;
275
276 if (!strcmp(str, "off"))
277 mds_mitigation = MDS_MITIGATION_OFF;
278 else if (!strcmp(str, "full"))
279 mds_mitigation = MDS_MITIGATION_FULL;
280 else if (!strcmp(str, "full,nosmt")) {
281 mds_mitigation = MDS_MITIGATION_FULL;
282 mds_nosmt = true;
283 }
284
285 return 0;
286}
287early_param("mds", mds_cmdline);
288
289#undef pr_fmt
290#define pr_fmt(fmt) "TAA: " fmt
291
292enum taa_mitigations {
293 TAA_MITIGATION_OFF,
294 TAA_MITIGATION_UCODE_NEEDED,
295 TAA_MITIGATION_VERW,
296 TAA_MITIGATION_TSX_DISABLED,
297};
298
299
300static enum taa_mitigations taa_mitigation __ro_after_init = TAA_MITIGATION_VERW;
301static bool taa_nosmt __ro_after_init;
302
303static const char * const taa_strings[] = {
304 [TAA_MITIGATION_OFF] = "Vulnerable",
305 [TAA_MITIGATION_UCODE_NEEDED] = "Vulnerable: Clear CPU buffers attempted, no microcode",
306 [TAA_MITIGATION_VERW] = "Mitigation: Clear CPU buffers",
307 [TAA_MITIGATION_TSX_DISABLED] = "Mitigation: TSX disabled",
308};
309
310static void __init taa_select_mitigation(void)
311{
312 u64 ia32_cap;
313
314 if (!boot_cpu_has_bug(X86_BUG_TAA)) {
315 taa_mitigation = TAA_MITIGATION_OFF;
316 return;
317 }
318
319
320 if (!boot_cpu_has(X86_FEATURE_RTM)) {
321 taa_mitigation = TAA_MITIGATION_TSX_DISABLED;
322 goto out;
323 }
324
325 if (cpu_mitigations_off()) {
326 taa_mitigation = TAA_MITIGATION_OFF;
327 return;
328 }
329
330
331
332
333
334 if (taa_mitigation == TAA_MITIGATION_OFF &&
335 mds_mitigation == MDS_MITIGATION_OFF)
336 goto out;
337
338 if (boot_cpu_has(X86_FEATURE_MD_CLEAR))
339 taa_mitigation = TAA_MITIGATION_VERW;
340 else
341 taa_mitigation = TAA_MITIGATION_UCODE_NEEDED;
342
343
344
345
346
347
348
349
350
351
352 ia32_cap = x86_read_arch_cap_msr();
353 if ( (ia32_cap & ARCH_CAP_MDS_NO) &&
354 !(ia32_cap & ARCH_CAP_TSX_CTRL_MSR))
355 taa_mitigation = TAA_MITIGATION_UCODE_NEEDED;
356
357
358
359
360
361
362
363
364 static_branch_enable(&mds_user_clear);
365
366 if (taa_nosmt || cpu_mitigations_auto_nosmt())
367 cpu_smt_disable(false);
368
369
370
371
372
373 if (mds_mitigation == MDS_MITIGATION_OFF &&
374 boot_cpu_has_bug(X86_BUG_MDS)) {
375 mds_mitigation = MDS_MITIGATION_FULL;
376 mds_select_mitigation();
377 }
378out:
379 pr_info("%s\n", taa_strings[taa_mitigation]);
380}
381
382static int __init tsx_async_abort_parse_cmdline(char *str)
383{
384 if (!boot_cpu_has_bug(X86_BUG_TAA))
385 return 0;
386
387 if (!str)
388 return -EINVAL;
389
390 if (!strcmp(str, "off")) {
391 taa_mitigation = TAA_MITIGATION_OFF;
392 } else if (!strcmp(str, "full")) {
393 taa_mitigation = TAA_MITIGATION_VERW;
394 } else if (!strcmp(str, "full,nosmt")) {
395 taa_mitigation = TAA_MITIGATION_VERW;
396 taa_nosmt = true;
397 }
398
399 return 0;
400}
401early_param("tsx_async_abort", tsx_async_abort_parse_cmdline);
402
403#undef pr_fmt
404#define pr_fmt(fmt) "SRBDS: " fmt
405
406enum srbds_mitigations {
407 SRBDS_MITIGATION_OFF,
408 SRBDS_MITIGATION_UCODE_NEEDED,
409 SRBDS_MITIGATION_FULL,
410 SRBDS_MITIGATION_TSX_OFF,
411 SRBDS_MITIGATION_HYPERVISOR,
412};
413
414static enum srbds_mitigations srbds_mitigation __ro_after_init = SRBDS_MITIGATION_FULL;
415
416static const char * const srbds_strings[] = {
417 [SRBDS_MITIGATION_OFF] = "Vulnerable",
418 [SRBDS_MITIGATION_UCODE_NEEDED] = "Vulnerable: No microcode",
419 [SRBDS_MITIGATION_FULL] = "Mitigation: Microcode",
420 [SRBDS_MITIGATION_TSX_OFF] = "Mitigation: TSX disabled",
421 [SRBDS_MITIGATION_HYPERVISOR] = "Unknown: Dependent on hypervisor status",
422};
423
424static bool srbds_off;
425
426void update_srbds_msr(void)
427{
428 u64 mcu_ctrl;
429
430 if (!boot_cpu_has_bug(X86_BUG_SRBDS))
431 return;
432
433 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
434 return;
435
436 if (srbds_mitigation == SRBDS_MITIGATION_UCODE_NEEDED)
437 return;
438
439 rdmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl);
440
441 switch (srbds_mitigation) {
442 case SRBDS_MITIGATION_OFF:
443 case SRBDS_MITIGATION_TSX_OFF:
444 mcu_ctrl |= RNGDS_MITG_DIS;
445 break;
446 case SRBDS_MITIGATION_FULL:
447 mcu_ctrl &= ~RNGDS_MITG_DIS;
448 break;
449 default:
450 break;
451 }
452
453 wrmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl);
454}
455
456static void __init srbds_select_mitigation(void)
457{
458 u64 ia32_cap;
459
460 if (!boot_cpu_has_bug(X86_BUG_SRBDS))
461 return;
462
463
464
465
466
467 ia32_cap = x86_read_arch_cap_msr();
468 if ((ia32_cap & ARCH_CAP_MDS_NO) && !boot_cpu_has(X86_FEATURE_RTM))
469 srbds_mitigation = SRBDS_MITIGATION_TSX_OFF;
470 else if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
471 srbds_mitigation = SRBDS_MITIGATION_HYPERVISOR;
472 else if (!boot_cpu_has(X86_FEATURE_SRBDS_CTRL))
473 srbds_mitigation = SRBDS_MITIGATION_UCODE_NEEDED;
474 else if (cpu_mitigations_off() || srbds_off)
475 srbds_mitigation = SRBDS_MITIGATION_OFF;
476
477 update_srbds_msr();
478 pr_info("%s\n", srbds_strings[srbds_mitigation]);
479}
480
481static int __init srbds_parse_cmdline(char *str)
482{
483 if (!str)
484 return -EINVAL;
485
486 if (!boot_cpu_has_bug(X86_BUG_SRBDS))
487 return 0;
488
489 srbds_off = !strcmp(str, "off");
490 return 0;
491}
492early_param("srbds", srbds_parse_cmdline);
493
494#undef pr_fmt
495#define pr_fmt(fmt) "Spectre V1 : " fmt
496
497enum spectre_v1_mitigation {
498 SPECTRE_V1_MITIGATION_NONE,
499 SPECTRE_V1_MITIGATION_AUTO,
500};
501
502static enum spectre_v1_mitigation spectre_v1_mitigation __ro_after_init =
503 SPECTRE_V1_MITIGATION_AUTO;
504
505static const char * const spectre_v1_strings[] = {
506 [SPECTRE_V1_MITIGATION_NONE] = "Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers",
507 [SPECTRE_V1_MITIGATION_AUTO] = "Mitigation: usercopy/swapgs barriers and __user pointer sanitization",
508};
509
510
511
512
513
514static bool smap_works_speculatively(void)
515{
516 if (!boot_cpu_has(X86_FEATURE_SMAP))
517 return false;
518
519
520
521
522
523
524
525 if (boot_cpu_has(X86_BUG_CPU_MELTDOWN))
526 return false;
527
528 return true;
529}
530
531static void __init spectre_v1_select_mitigation(void)
532{
533 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V1) || cpu_mitigations_off()) {
534 spectre_v1_mitigation = SPECTRE_V1_MITIGATION_NONE;
535 return;
536 }
537
538 if (spectre_v1_mitigation == SPECTRE_V1_MITIGATION_AUTO) {
539
540
541
542
543
544
545
546
547
548
549
550
551 if (boot_cpu_has(X86_FEATURE_FSGSBASE) ||
552 !smap_works_speculatively()) {
553
554
555
556
557
558
559
560
561 if (boot_cpu_has_bug(X86_BUG_SWAPGS) &&
562 !boot_cpu_has(X86_FEATURE_PTI))
563 setup_force_cpu_cap(X86_FEATURE_FENCE_SWAPGS_USER);
564
565
566
567
568
569
570 setup_force_cpu_cap(X86_FEATURE_FENCE_SWAPGS_KERNEL);
571 }
572 }
573
574 pr_info("%s\n", spectre_v1_strings[spectre_v1_mitigation]);
575}
576
577static int __init nospectre_v1_cmdline(char *str)
578{
579 spectre_v1_mitigation = SPECTRE_V1_MITIGATION_NONE;
580 return 0;
581}
582early_param("nospectre_v1", nospectre_v1_cmdline);
583
584#undef pr_fmt
585#define pr_fmt(fmt) "Spectre V2 : " fmt
586
587static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init =
588 SPECTRE_V2_NONE;
589
590static enum spectre_v2_user_mitigation spectre_v2_user_stibp __ro_after_init =
591 SPECTRE_V2_USER_NONE;
592static enum spectre_v2_user_mitigation spectre_v2_user_ibpb __ro_after_init =
593 SPECTRE_V2_USER_NONE;
594
595#ifdef CONFIG_RETPOLINE
596static bool spectre_v2_bad_module;
597
598bool retpoline_module_ok(bool has_retpoline)
599{
600 if (spectre_v2_enabled == SPECTRE_V2_NONE || has_retpoline)
601 return true;
602
603 pr_err("System may be vulnerable to spectre v2\n");
604 spectre_v2_bad_module = true;
605 return false;
606}
607
608static inline const char *spectre_v2_module_string(void)
609{
610 return spectre_v2_bad_module ? " - vulnerable module loaded" : "";
611}
612#else
613static inline const char *spectre_v2_module_string(void) { return ""; }
614#endif
615
616static inline bool match_option(const char *arg, int arglen, const char *opt)
617{
618 int len = strlen(opt);
619
620 return len == arglen && !strncmp(arg, opt, len);
621}
622
623
624enum spectre_v2_mitigation_cmd {
625 SPECTRE_V2_CMD_NONE,
626 SPECTRE_V2_CMD_AUTO,
627 SPECTRE_V2_CMD_FORCE,
628 SPECTRE_V2_CMD_RETPOLINE,
629 SPECTRE_V2_CMD_RETPOLINE_GENERIC,
630 SPECTRE_V2_CMD_RETPOLINE_AMD,
631};
632
633enum spectre_v2_user_cmd {
634 SPECTRE_V2_USER_CMD_NONE,
635 SPECTRE_V2_USER_CMD_AUTO,
636 SPECTRE_V2_USER_CMD_FORCE,
637 SPECTRE_V2_USER_CMD_PRCTL,
638 SPECTRE_V2_USER_CMD_PRCTL_IBPB,
639 SPECTRE_V2_USER_CMD_SECCOMP,
640 SPECTRE_V2_USER_CMD_SECCOMP_IBPB,
641};
642
643static const char * const spectre_v2_user_strings[] = {
644 [SPECTRE_V2_USER_NONE] = "User space: Vulnerable",
645 [SPECTRE_V2_USER_STRICT] = "User space: Mitigation: STIBP protection",
646 [SPECTRE_V2_USER_STRICT_PREFERRED] = "User space: Mitigation: STIBP always-on protection",
647 [SPECTRE_V2_USER_PRCTL] = "User space: Mitigation: STIBP via prctl",
648 [SPECTRE_V2_USER_SECCOMP] = "User space: Mitigation: STIBP via seccomp and prctl",
649};
650
651static const struct {
652 const char *option;
653 enum spectre_v2_user_cmd cmd;
654 bool secure;
655} v2_user_options[] __initconst = {
656 { "auto", SPECTRE_V2_USER_CMD_AUTO, false },
657 { "off", SPECTRE_V2_USER_CMD_NONE, false },
658 { "on", SPECTRE_V2_USER_CMD_FORCE, true },
659 { "prctl", SPECTRE_V2_USER_CMD_PRCTL, false },
660 { "prctl,ibpb", SPECTRE_V2_USER_CMD_PRCTL_IBPB, false },
661 { "seccomp", SPECTRE_V2_USER_CMD_SECCOMP, false },
662 { "seccomp,ibpb", SPECTRE_V2_USER_CMD_SECCOMP_IBPB, false },
663};
664
665static void __init spec_v2_user_print_cond(const char *reason, bool secure)
666{
667 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
668 pr_info("spectre_v2_user=%s forced on command line.\n", reason);
669}
670
671static enum spectre_v2_user_cmd __init
672spectre_v2_parse_user_cmdline(enum spectre_v2_mitigation_cmd v2_cmd)
673{
674 char arg[20];
675 int ret, i;
676
677 switch (v2_cmd) {
678 case SPECTRE_V2_CMD_NONE:
679 return SPECTRE_V2_USER_CMD_NONE;
680 case SPECTRE_V2_CMD_FORCE:
681 return SPECTRE_V2_USER_CMD_FORCE;
682 default:
683 break;
684 }
685
686 ret = cmdline_find_option(boot_command_line, "spectre_v2_user",
687 arg, sizeof(arg));
688 if (ret < 0)
689 return SPECTRE_V2_USER_CMD_AUTO;
690
691 for (i = 0; i < ARRAY_SIZE(v2_user_options); i++) {
692 if (match_option(arg, ret, v2_user_options[i].option)) {
693 spec_v2_user_print_cond(v2_user_options[i].option,
694 v2_user_options[i].secure);
695 return v2_user_options[i].cmd;
696 }
697 }
698
699 pr_err("Unknown user space protection option (%s). Switching to AUTO select\n", arg);
700 return SPECTRE_V2_USER_CMD_AUTO;
701}
702
703static void __init
704spectre_v2_user_select_mitigation(enum spectre_v2_mitigation_cmd v2_cmd)
705{
706 enum spectre_v2_user_mitigation mode = SPECTRE_V2_USER_NONE;
707 bool smt_possible = IS_ENABLED(CONFIG_SMP);
708 enum spectre_v2_user_cmd cmd;
709
710 if (!boot_cpu_has(X86_FEATURE_IBPB) && !boot_cpu_has(X86_FEATURE_STIBP))
711 return;
712
713 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
714 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
715 smt_possible = false;
716
717 cmd = spectre_v2_parse_user_cmdline(v2_cmd);
718 switch (cmd) {
719 case SPECTRE_V2_USER_CMD_NONE:
720 goto set_mode;
721 case SPECTRE_V2_USER_CMD_FORCE:
722 mode = SPECTRE_V2_USER_STRICT;
723 break;
724 case SPECTRE_V2_USER_CMD_PRCTL:
725 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
726 mode = SPECTRE_V2_USER_PRCTL;
727 break;
728 case SPECTRE_V2_USER_CMD_AUTO:
729 case SPECTRE_V2_USER_CMD_SECCOMP:
730 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
731 if (IS_ENABLED(CONFIG_SECCOMP))
732 mode = SPECTRE_V2_USER_SECCOMP;
733 else
734 mode = SPECTRE_V2_USER_PRCTL;
735 break;
736 }
737
738
739 if (boot_cpu_has(X86_FEATURE_IBPB)) {
740 setup_force_cpu_cap(X86_FEATURE_USE_IBPB);
741
742 switch (cmd) {
743 case SPECTRE_V2_USER_CMD_FORCE:
744 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
745 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
746 static_branch_enable(&switch_mm_always_ibpb);
747 break;
748 case SPECTRE_V2_USER_CMD_PRCTL:
749 case SPECTRE_V2_USER_CMD_AUTO:
750 case SPECTRE_V2_USER_CMD_SECCOMP:
751 static_branch_enable(&switch_mm_cond_ibpb);
752 break;
753 default:
754 break;
755 }
756
757 pr_info("mitigation: Enabling %s Indirect Branch Prediction Barrier\n",
758 static_key_enabled(&switch_mm_always_ibpb) ?
759 "always-on" : "conditional");
760
761 spectre_v2_user_ibpb = mode;
762 }
763
764
765
766
767
768 if (!boot_cpu_has(X86_FEATURE_STIBP) ||
769 !smt_possible ||
770 spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
771 return;
772
773
774
775
776
777
778 if (mode != SPECTRE_V2_USER_STRICT &&
779 boot_cpu_has(X86_FEATURE_AMD_STIBP_ALWAYS_ON))
780 mode = SPECTRE_V2_USER_STRICT_PREFERRED;
781
782 spectre_v2_user_stibp = mode;
783
784set_mode:
785 pr_info("%s\n", spectre_v2_user_strings[mode]);
786}
787
788static const char * const spectre_v2_strings[] = {
789 [SPECTRE_V2_NONE] = "Vulnerable",
790 [SPECTRE_V2_RETPOLINE_GENERIC] = "Mitigation: Full generic retpoline",
791 [SPECTRE_V2_RETPOLINE_AMD] = "Mitigation: Full AMD retpoline",
792 [SPECTRE_V2_IBRS_ENHANCED] = "Mitigation: Enhanced IBRS",
793};
794
795static const struct {
796 const char *option;
797 enum spectre_v2_mitigation_cmd cmd;
798 bool secure;
799} mitigation_options[] __initconst = {
800 { "off", SPECTRE_V2_CMD_NONE, false },
801 { "on", SPECTRE_V2_CMD_FORCE, true },
802 { "retpoline", SPECTRE_V2_CMD_RETPOLINE, false },
803 { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_AMD, false },
804 { "retpoline,generic", SPECTRE_V2_CMD_RETPOLINE_GENERIC, false },
805 { "auto", SPECTRE_V2_CMD_AUTO, false },
806};
807
808static void __init spec_v2_print_cond(const char *reason, bool secure)
809{
810 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
811 pr_info("%s selected on command line.\n", reason);
812}
813
814static enum spectre_v2_mitigation_cmd __init spectre_v2_parse_cmdline(void)
815{
816 enum spectre_v2_mitigation_cmd cmd = SPECTRE_V2_CMD_AUTO;
817 char arg[20];
818 int ret, i;
819
820 if (cmdline_find_option_bool(boot_command_line, "nospectre_v2") ||
821 cpu_mitigations_off())
822 return SPECTRE_V2_CMD_NONE;
823
824 ret = cmdline_find_option(boot_command_line, "spectre_v2", arg, sizeof(arg));
825 if (ret < 0)
826 return SPECTRE_V2_CMD_AUTO;
827
828 for (i = 0; i < ARRAY_SIZE(mitigation_options); i++) {
829 if (!match_option(arg, ret, mitigation_options[i].option))
830 continue;
831 cmd = mitigation_options[i].cmd;
832 break;
833 }
834
835 if (i >= ARRAY_SIZE(mitigation_options)) {
836 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
837 return SPECTRE_V2_CMD_AUTO;
838 }
839
840 if ((cmd == SPECTRE_V2_CMD_RETPOLINE ||
841 cmd == SPECTRE_V2_CMD_RETPOLINE_AMD ||
842 cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC) &&
843 !IS_ENABLED(CONFIG_RETPOLINE)) {
844 pr_err("%s selected but not compiled in. Switching to AUTO select\n", mitigation_options[i].option);
845 return SPECTRE_V2_CMD_AUTO;
846 }
847
848 if (cmd == SPECTRE_V2_CMD_RETPOLINE_AMD &&
849 boot_cpu_data.x86_vendor != X86_VENDOR_HYGON &&
850 boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
851 pr_err("retpoline,amd selected but CPU is not AMD. Switching to AUTO select\n");
852 return SPECTRE_V2_CMD_AUTO;
853 }
854
855 spec_v2_print_cond(mitigation_options[i].option,
856 mitigation_options[i].secure);
857 return cmd;
858}
859
860static void __init spectre_v2_select_mitigation(void)
861{
862 enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline();
863 enum spectre_v2_mitigation mode = SPECTRE_V2_NONE;
864
865
866
867
868
869 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2) &&
870 (cmd == SPECTRE_V2_CMD_NONE || cmd == SPECTRE_V2_CMD_AUTO))
871 return;
872
873 switch (cmd) {
874 case SPECTRE_V2_CMD_NONE:
875 return;
876
877 case SPECTRE_V2_CMD_FORCE:
878 case SPECTRE_V2_CMD_AUTO:
879 if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) {
880 mode = SPECTRE_V2_IBRS_ENHANCED;
881
882 x86_spec_ctrl_base |= SPEC_CTRL_IBRS;
883 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
884 goto specv2_set_mode;
885 }
886 if (IS_ENABLED(CONFIG_RETPOLINE))
887 goto retpoline_auto;
888 break;
889 case SPECTRE_V2_CMD_RETPOLINE_AMD:
890 if (IS_ENABLED(CONFIG_RETPOLINE))
891 goto retpoline_amd;
892 break;
893 case SPECTRE_V2_CMD_RETPOLINE_GENERIC:
894 if (IS_ENABLED(CONFIG_RETPOLINE))
895 goto retpoline_generic;
896 break;
897 case SPECTRE_V2_CMD_RETPOLINE:
898 if (IS_ENABLED(CONFIG_RETPOLINE))
899 goto retpoline_auto;
900 break;
901 }
902 pr_err("Spectre mitigation: kernel not compiled with retpoline; no mitigation available!");
903 return;
904
905retpoline_auto:
906 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD ||
907 boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) {
908 retpoline_amd:
909 if (!boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) {
910 pr_err("Spectre mitigation: LFENCE not serializing, switching to generic retpoline\n");
911 goto retpoline_generic;
912 }
913 mode = SPECTRE_V2_RETPOLINE_AMD;
914 setup_force_cpu_cap(X86_FEATURE_RETPOLINE_AMD);
915 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
916 } else {
917 retpoline_generic:
918 mode = SPECTRE_V2_RETPOLINE_GENERIC;
919 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
920 }
921
922specv2_set_mode:
923 spectre_v2_enabled = mode;
924 pr_info("%s\n", spectre_v2_strings[mode]);
925
926
927
928
929
930
931
932
933
934 setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW);
935 pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n");
936
937
938
939
940
941
942
943
944
945
946
947
948 if (boot_cpu_has(X86_FEATURE_IBRS) && mode != SPECTRE_V2_IBRS_ENHANCED) {
949 setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW);
950 pr_info("Enabling Restricted Speculation for firmware calls\n");
951 }
952
953
954 spectre_v2_user_select_mitigation(cmd);
955}
956
957static void update_stibp_msr(void * __unused)
958{
959 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
960}
961
962
963static void update_stibp_strict(void)
964{
965 u64 mask = x86_spec_ctrl_base & ~SPEC_CTRL_STIBP;
966
967 if (sched_smt_active())
968 mask |= SPEC_CTRL_STIBP;
969
970 if (mask == x86_spec_ctrl_base)
971 return;
972
973 pr_info("Update user space SMT mitigation: STIBP %s\n",
974 mask & SPEC_CTRL_STIBP ? "always-on" : "off");
975 x86_spec_ctrl_base = mask;
976 on_each_cpu(update_stibp_msr, NULL, 1);
977}
978
979
980static void update_indir_branch_cond(void)
981{
982 if (sched_smt_active())
983 static_branch_enable(&switch_to_cond_stibp);
984 else
985 static_branch_disable(&switch_to_cond_stibp);
986}
987
988#undef pr_fmt
989#define pr_fmt(fmt) fmt
990
991
992static void update_mds_branch_idle(void)
993{
994
995
996
997
998
999
1000
1001
1002 if (!boot_cpu_has_bug(X86_BUG_MSBDS_ONLY))
1003 return;
1004
1005 if (sched_smt_active())
1006 static_branch_enable(&mds_idle_clear);
1007 else
1008 static_branch_disable(&mds_idle_clear);
1009}
1010
1011#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"
1012#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"
1013
1014void cpu_bugs_smt_update(void)
1015{
1016 mutex_lock(&spec_ctrl_mutex);
1017
1018 switch (spectre_v2_user_stibp) {
1019 case SPECTRE_V2_USER_NONE:
1020 break;
1021 case SPECTRE_V2_USER_STRICT:
1022 case SPECTRE_V2_USER_STRICT_PREFERRED:
1023 update_stibp_strict();
1024 break;
1025 case SPECTRE_V2_USER_PRCTL:
1026 case SPECTRE_V2_USER_SECCOMP:
1027 update_indir_branch_cond();
1028 break;
1029 }
1030
1031 switch (mds_mitigation) {
1032 case MDS_MITIGATION_FULL:
1033 case MDS_MITIGATION_VMWERV:
1034 if (sched_smt_active() && !boot_cpu_has(X86_BUG_MSBDS_ONLY))
1035 pr_warn_once(MDS_MSG_SMT);
1036 update_mds_branch_idle();
1037 break;
1038 case MDS_MITIGATION_OFF:
1039 break;
1040 }
1041
1042 switch (taa_mitigation) {
1043 case TAA_MITIGATION_VERW:
1044 case TAA_MITIGATION_UCODE_NEEDED:
1045 if (sched_smt_active())
1046 pr_warn_once(TAA_MSG_SMT);
1047 break;
1048 case TAA_MITIGATION_TSX_DISABLED:
1049 case TAA_MITIGATION_OFF:
1050 break;
1051 }
1052
1053 mutex_unlock(&spec_ctrl_mutex);
1054}
1055
1056#undef pr_fmt
1057#define pr_fmt(fmt) "Speculative Store Bypass: " fmt
1058
1059static enum ssb_mitigation ssb_mode __ro_after_init = SPEC_STORE_BYPASS_NONE;
1060
1061
1062enum ssb_mitigation_cmd {
1063 SPEC_STORE_BYPASS_CMD_NONE,
1064 SPEC_STORE_BYPASS_CMD_AUTO,
1065 SPEC_STORE_BYPASS_CMD_ON,
1066 SPEC_STORE_BYPASS_CMD_PRCTL,
1067 SPEC_STORE_BYPASS_CMD_SECCOMP,
1068};
1069
1070static const char * const ssb_strings[] = {
1071 [SPEC_STORE_BYPASS_NONE] = "Vulnerable",
1072 [SPEC_STORE_BYPASS_DISABLE] = "Mitigation: Speculative Store Bypass disabled",
1073 [SPEC_STORE_BYPASS_PRCTL] = "Mitigation: Speculative Store Bypass disabled via prctl",
1074 [SPEC_STORE_BYPASS_SECCOMP] = "Mitigation: Speculative Store Bypass disabled via prctl and seccomp",
1075};
1076
1077static const struct {
1078 const char *option;
1079 enum ssb_mitigation_cmd cmd;
1080} ssb_mitigation_options[] __initconst = {
1081 { "auto", SPEC_STORE_BYPASS_CMD_AUTO },
1082 { "on", SPEC_STORE_BYPASS_CMD_ON },
1083 { "off", SPEC_STORE_BYPASS_CMD_NONE },
1084 { "prctl", SPEC_STORE_BYPASS_CMD_PRCTL },
1085 { "seccomp", SPEC_STORE_BYPASS_CMD_SECCOMP },
1086};
1087
1088static enum ssb_mitigation_cmd __init ssb_parse_cmdline(void)
1089{
1090 enum ssb_mitigation_cmd cmd = SPEC_STORE_BYPASS_CMD_AUTO;
1091 char arg[20];
1092 int ret, i;
1093
1094 if (cmdline_find_option_bool(boot_command_line, "nospec_store_bypass_disable") ||
1095 cpu_mitigations_off()) {
1096 return SPEC_STORE_BYPASS_CMD_NONE;
1097 } else {
1098 ret = cmdline_find_option(boot_command_line, "spec_store_bypass_disable",
1099 arg, sizeof(arg));
1100 if (ret < 0)
1101 return SPEC_STORE_BYPASS_CMD_AUTO;
1102
1103 for (i = 0; i < ARRAY_SIZE(ssb_mitigation_options); i++) {
1104 if (!match_option(arg, ret, ssb_mitigation_options[i].option))
1105 continue;
1106
1107 cmd = ssb_mitigation_options[i].cmd;
1108 break;
1109 }
1110
1111 if (i >= ARRAY_SIZE(ssb_mitigation_options)) {
1112 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
1113 return SPEC_STORE_BYPASS_CMD_AUTO;
1114 }
1115 }
1116
1117 return cmd;
1118}
1119
1120static enum ssb_mitigation __init __ssb_select_mitigation(void)
1121{
1122 enum ssb_mitigation mode = SPEC_STORE_BYPASS_NONE;
1123 enum ssb_mitigation_cmd cmd;
1124
1125 if (!boot_cpu_has(X86_FEATURE_SSBD))
1126 return mode;
1127
1128 cmd = ssb_parse_cmdline();
1129 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS) &&
1130 (cmd == SPEC_STORE_BYPASS_CMD_NONE ||
1131 cmd == SPEC_STORE_BYPASS_CMD_AUTO))
1132 return mode;
1133
1134 switch (cmd) {
1135 case SPEC_STORE_BYPASS_CMD_AUTO:
1136 case SPEC_STORE_BYPASS_CMD_SECCOMP:
1137
1138
1139
1140
1141 if (IS_ENABLED(CONFIG_SECCOMP))
1142 mode = SPEC_STORE_BYPASS_SECCOMP;
1143 else
1144 mode = SPEC_STORE_BYPASS_PRCTL;
1145 break;
1146 case SPEC_STORE_BYPASS_CMD_ON:
1147 mode = SPEC_STORE_BYPASS_DISABLE;
1148 break;
1149 case SPEC_STORE_BYPASS_CMD_PRCTL:
1150 mode = SPEC_STORE_BYPASS_PRCTL;
1151 break;
1152 case SPEC_STORE_BYPASS_CMD_NONE:
1153 break;
1154 }
1155
1156
1157
1158
1159
1160
1161 if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) ||
1162 static_cpu_has(X86_FEATURE_AMD_SSBD)) {
1163 x86_spec_ctrl_mask |= SPEC_CTRL_SSBD;
1164 }
1165
1166
1167
1168
1169
1170
1171
1172 if (mode == SPEC_STORE_BYPASS_DISABLE) {
1173 setup_force_cpu_cap(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE);
1174
1175
1176
1177
1178 if (!static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) &&
1179 !static_cpu_has(X86_FEATURE_AMD_SSBD)) {
1180 x86_amd_ssb_disable();
1181 } else {
1182 x86_spec_ctrl_base |= SPEC_CTRL_SSBD;
1183 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
1184 }
1185 }
1186
1187 return mode;
1188}
1189
1190static void ssb_select_mitigation(void)
1191{
1192 ssb_mode = __ssb_select_mitigation();
1193
1194 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1195 pr_info("%s\n", ssb_strings[ssb_mode]);
1196}
1197
1198#undef pr_fmt
1199#define pr_fmt(fmt) "Speculation prctl: " fmt
1200
1201static void task_update_spec_tif(struct task_struct *tsk)
1202{
1203
1204 set_tsk_thread_flag(tsk, TIF_SPEC_FORCE_UPDATE);
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214 if (tsk == current)
1215 speculation_ctrl_update_current();
1216}
1217
1218static int ssb_prctl_set(struct task_struct *task, unsigned long ctrl)
1219{
1220 if (ssb_mode != SPEC_STORE_BYPASS_PRCTL &&
1221 ssb_mode != SPEC_STORE_BYPASS_SECCOMP)
1222 return -ENXIO;
1223
1224 switch (ctrl) {
1225 case PR_SPEC_ENABLE:
1226
1227 if (task_spec_ssb_force_disable(task))
1228 return -EPERM;
1229 task_clear_spec_ssb_disable(task);
1230 task_clear_spec_ssb_noexec(task);
1231 task_update_spec_tif(task);
1232 break;
1233 case PR_SPEC_DISABLE:
1234 task_set_spec_ssb_disable(task);
1235 task_clear_spec_ssb_noexec(task);
1236 task_update_spec_tif(task);
1237 break;
1238 case PR_SPEC_FORCE_DISABLE:
1239 task_set_spec_ssb_disable(task);
1240 task_set_spec_ssb_force_disable(task);
1241 task_clear_spec_ssb_noexec(task);
1242 task_update_spec_tif(task);
1243 break;
1244 case PR_SPEC_DISABLE_NOEXEC:
1245 if (task_spec_ssb_force_disable(task))
1246 return -EPERM;
1247 task_set_spec_ssb_disable(task);
1248 task_set_spec_ssb_noexec(task);
1249 task_update_spec_tif(task);
1250 break;
1251 default:
1252 return -ERANGE;
1253 }
1254 return 0;
1255}
1256
1257static int ib_prctl_set(struct task_struct *task, unsigned long ctrl)
1258{
1259 switch (ctrl) {
1260 case PR_SPEC_ENABLE:
1261 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE &&
1262 spectre_v2_user_stibp == SPECTRE_V2_USER_NONE)
1263 return 0;
1264
1265
1266
1267
1268
1269 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_STRICT ||
1270 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT ||
1271 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED ||
1272 task_spec_ib_force_disable(task))
1273 return -EPERM;
1274 task_clear_spec_ib_disable(task);
1275 task_update_spec_tif(task);
1276 break;
1277 case PR_SPEC_DISABLE:
1278 case PR_SPEC_FORCE_DISABLE:
1279
1280
1281
1282
1283 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE &&
1284 spectre_v2_user_stibp == SPECTRE_V2_USER_NONE)
1285 return -EPERM;
1286 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_STRICT ||
1287 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT ||
1288 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED)
1289 return 0;
1290 task_set_spec_ib_disable(task);
1291 if (ctrl == PR_SPEC_FORCE_DISABLE)
1292 task_set_spec_ib_force_disable(task);
1293 task_update_spec_tif(task);
1294 break;
1295 default:
1296 return -ERANGE;
1297 }
1298 return 0;
1299}
1300
1301int arch_prctl_spec_ctrl_set(struct task_struct *task, unsigned long which,
1302 unsigned long ctrl)
1303{
1304 switch (which) {
1305 case PR_SPEC_STORE_BYPASS:
1306 return ssb_prctl_set(task, ctrl);
1307 case PR_SPEC_INDIRECT_BRANCH:
1308 return ib_prctl_set(task, ctrl);
1309 default:
1310 return -ENODEV;
1311 }
1312}
1313
1314#ifdef CONFIG_SECCOMP
1315void arch_seccomp_spec_mitigate(struct task_struct *task)
1316{
1317 if (ssb_mode == SPEC_STORE_BYPASS_SECCOMP)
1318 ssb_prctl_set(task, PR_SPEC_FORCE_DISABLE);
1319 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_SECCOMP ||
1320 spectre_v2_user_stibp == SPECTRE_V2_USER_SECCOMP)
1321 ib_prctl_set(task, PR_SPEC_FORCE_DISABLE);
1322}
1323#endif
1324
1325static int ssb_prctl_get(struct task_struct *task)
1326{
1327 switch (ssb_mode) {
1328 case SPEC_STORE_BYPASS_DISABLE:
1329 return PR_SPEC_DISABLE;
1330 case SPEC_STORE_BYPASS_SECCOMP:
1331 case SPEC_STORE_BYPASS_PRCTL:
1332 if (task_spec_ssb_force_disable(task))
1333 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
1334 if (task_spec_ssb_noexec(task))
1335 return PR_SPEC_PRCTL | PR_SPEC_DISABLE_NOEXEC;
1336 if (task_spec_ssb_disable(task))
1337 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
1338 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
1339 default:
1340 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1341 return PR_SPEC_ENABLE;
1342 return PR_SPEC_NOT_AFFECTED;
1343 }
1344}
1345
1346static int ib_prctl_get(struct task_struct *task)
1347{
1348 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
1349 return PR_SPEC_NOT_AFFECTED;
1350
1351 if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE &&
1352 spectre_v2_user_stibp == SPECTRE_V2_USER_NONE)
1353 return PR_SPEC_ENABLE;
1354 else if (spectre_v2_user_ibpb == SPECTRE_V2_USER_STRICT ||
1355 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT ||
1356 spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED)
1357 return PR_SPEC_DISABLE;
1358 else if (spectre_v2_user_ibpb == SPECTRE_V2_USER_PRCTL ||
1359 spectre_v2_user_ibpb == SPECTRE_V2_USER_SECCOMP ||
1360 spectre_v2_user_stibp == SPECTRE_V2_USER_PRCTL ||
1361 spectre_v2_user_stibp == SPECTRE_V2_USER_SECCOMP) {
1362 if (task_spec_ib_force_disable(task))
1363 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
1364 if (task_spec_ib_disable(task))
1365 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
1366 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
1367 } else
1368 return PR_SPEC_NOT_AFFECTED;
1369}
1370
1371int arch_prctl_spec_ctrl_get(struct task_struct *task, unsigned long which)
1372{
1373 switch (which) {
1374 case PR_SPEC_STORE_BYPASS:
1375 return ssb_prctl_get(task);
1376 case PR_SPEC_INDIRECT_BRANCH:
1377 return ib_prctl_get(task);
1378 default:
1379 return -ENODEV;
1380 }
1381}
1382
1383void x86_spec_ctrl_setup_ap(void)
1384{
1385 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
1386 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
1387
1388 if (ssb_mode == SPEC_STORE_BYPASS_DISABLE)
1389 x86_amd_ssb_disable();
1390}
1391
1392bool itlb_multihit_kvm_mitigation;
1393EXPORT_SYMBOL_GPL(itlb_multihit_kvm_mitigation);
1394
1395#undef pr_fmt
1396#define pr_fmt(fmt) "L1TF: " fmt
1397
1398
1399enum l1tf_mitigations l1tf_mitigation __ro_after_init = L1TF_MITIGATION_FLUSH;
1400#if IS_ENABLED(CONFIG_KVM_INTEL)
1401EXPORT_SYMBOL_GPL(l1tf_mitigation);
1402#endif
1403enum vmx_l1d_flush_state l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
1404EXPORT_SYMBOL_GPL(l1tf_vmx_mitigation);
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420static void override_cache_bits(struct cpuinfo_x86 *c)
1421{
1422 if (c->x86 != 6)
1423 return;
1424
1425 switch (c->x86_model) {
1426 case INTEL_FAM6_NEHALEM:
1427 case INTEL_FAM6_WESTMERE:
1428 case INTEL_FAM6_SANDYBRIDGE:
1429 case INTEL_FAM6_IVYBRIDGE:
1430 case INTEL_FAM6_HASWELL:
1431 case INTEL_FAM6_HASWELL_L:
1432 case INTEL_FAM6_HASWELL_G:
1433 case INTEL_FAM6_BROADWELL:
1434 case INTEL_FAM6_BROADWELL_G:
1435 case INTEL_FAM6_SKYLAKE_L:
1436 case INTEL_FAM6_SKYLAKE:
1437 case INTEL_FAM6_KABYLAKE_L:
1438 case INTEL_FAM6_KABYLAKE:
1439 if (c->x86_cache_bits < 44)
1440 c->x86_cache_bits = 44;
1441 break;
1442 }
1443}
1444
1445static void __init l1tf_select_mitigation(void)
1446{
1447 u64 half_pa;
1448
1449 if (!boot_cpu_has_bug(X86_BUG_L1TF))
1450 return;
1451
1452 if (cpu_mitigations_off())
1453 l1tf_mitigation = L1TF_MITIGATION_OFF;
1454 else if (cpu_mitigations_auto_nosmt())
1455 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
1456
1457 override_cache_bits(&boot_cpu_data);
1458
1459 switch (l1tf_mitigation) {
1460 case L1TF_MITIGATION_OFF:
1461 case L1TF_MITIGATION_FLUSH_NOWARN:
1462 case L1TF_MITIGATION_FLUSH:
1463 break;
1464 case L1TF_MITIGATION_FLUSH_NOSMT:
1465 case L1TF_MITIGATION_FULL:
1466 cpu_smt_disable(false);
1467 break;
1468 case L1TF_MITIGATION_FULL_FORCE:
1469 cpu_smt_disable(true);
1470 break;
1471 }
1472
1473#if CONFIG_PGTABLE_LEVELS == 2
1474 pr_warn("Kernel not compiled for PAE. No mitigation for L1TF\n");
1475 return;
1476#endif
1477
1478 half_pa = (u64)l1tf_pfn_limit() << PAGE_SHIFT;
1479 if (l1tf_mitigation != L1TF_MITIGATION_OFF &&
1480 e820__mapped_any(half_pa, ULLONG_MAX - half_pa, E820_TYPE_RAM)) {
1481 pr_warn("System has more than MAX_PA/2 memory. L1TF mitigation not effective.\n");
1482 pr_info("You may make it effective by booting the kernel with mem=%llu parameter.\n",
1483 half_pa);
1484 pr_info("However, doing so will make a part of your RAM unusable.\n");
1485 pr_info("Reading https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html might help you decide.\n");
1486 return;
1487 }
1488
1489 setup_force_cpu_cap(X86_FEATURE_L1TF_PTEINV);
1490}
1491
1492static int __init l1tf_cmdline(char *str)
1493{
1494 if (!boot_cpu_has_bug(X86_BUG_L1TF))
1495 return 0;
1496
1497 if (!str)
1498 return -EINVAL;
1499
1500 if (!strcmp(str, "off"))
1501 l1tf_mitigation = L1TF_MITIGATION_OFF;
1502 else if (!strcmp(str, "flush,nowarn"))
1503 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOWARN;
1504 else if (!strcmp(str, "flush"))
1505 l1tf_mitigation = L1TF_MITIGATION_FLUSH;
1506 else if (!strcmp(str, "flush,nosmt"))
1507 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
1508 else if (!strcmp(str, "full"))
1509 l1tf_mitigation = L1TF_MITIGATION_FULL;
1510 else if (!strcmp(str, "full,force"))
1511 l1tf_mitigation = L1TF_MITIGATION_FULL_FORCE;
1512
1513 return 0;
1514}
1515early_param("l1tf", l1tf_cmdline);
1516
1517#undef pr_fmt
1518#define pr_fmt(fmt) fmt
1519
1520#ifdef CONFIG_SYSFS
1521
1522#define L1TF_DEFAULT_MSG "Mitigation: PTE Inversion"
1523
1524#if IS_ENABLED(CONFIG_KVM_INTEL)
1525static const char * const l1tf_vmx_states[] = {
1526 [VMENTER_L1D_FLUSH_AUTO] = "auto",
1527 [VMENTER_L1D_FLUSH_NEVER] = "vulnerable",
1528 [VMENTER_L1D_FLUSH_COND] = "conditional cache flushes",
1529 [VMENTER_L1D_FLUSH_ALWAYS] = "cache flushes",
1530 [VMENTER_L1D_FLUSH_EPT_DISABLED] = "EPT disabled",
1531 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = "flush not necessary"
1532};
1533
1534static ssize_t l1tf_show_state(char *buf)
1535{
1536 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO)
1537 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
1538
1539 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_EPT_DISABLED ||
1540 (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER &&
1541 sched_smt_active())) {
1542 return sprintf(buf, "%s; VMX: %s\n", L1TF_DEFAULT_MSG,
1543 l1tf_vmx_states[l1tf_vmx_mitigation]);
1544 }
1545
1546 return sprintf(buf, "%s; VMX: %s, SMT %s\n", L1TF_DEFAULT_MSG,
1547 l1tf_vmx_states[l1tf_vmx_mitigation],
1548 sched_smt_active() ? "vulnerable" : "disabled");
1549}
1550
1551static ssize_t itlb_multihit_show_state(char *buf)
1552{
1553 if (!boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
1554 !boot_cpu_has(X86_FEATURE_VMX))
1555 return sprintf(buf, "KVM: Mitigation: VMX unsupported\n");
1556 else if (!(cr4_read_shadow() & X86_CR4_VMXE))
1557 return sprintf(buf, "KVM: Mitigation: VMX disabled\n");
1558 else if (itlb_multihit_kvm_mitigation)
1559 return sprintf(buf, "KVM: Mitigation: Split huge pages\n");
1560 else
1561 return sprintf(buf, "KVM: Vulnerable\n");
1562}
1563#else
1564static ssize_t l1tf_show_state(char *buf)
1565{
1566 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
1567}
1568
1569static ssize_t itlb_multihit_show_state(char *buf)
1570{
1571 return sprintf(buf, "Processor vulnerable\n");
1572}
1573#endif
1574
1575static ssize_t mds_show_state(char *buf)
1576{
1577 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
1578 return sprintf(buf, "%s; SMT Host state unknown\n",
1579 mds_strings[mds_mitigation]);
1580 }
1581
1582 if (boot_cpu_has(X86_BUG_MSBDS_ONLY)) {
1583 return sprintf(buf, "%s; SMT %s\n", mds_strings[mds_mitigation],
1584 (mds_mitigation == MDS_MITIGATION_OFF ? "vulnerable" :
1585 sched_smt_active() ? "mitigated" : "disabled"));
1586 }
1587
1588 return sprintf(buf, "%s; SMT %s\n", mds_strings[mds_mitigation],
1589 sched_smt_active() ? "vulnerable" : "disabled");
1590}
1591
1592static ssize_t tsx_async_abort_show_state(char *buf)
1593{
1594 if ((taa_mitigation == TAA_MITIGATION_TSX_DISABLED) ||
1595 (taa_mitigation == TAA_MITIGATION_OFF))
1596 return sprintf(buf, "%s\n", taa_strings[taa_mitigation]);
1597
1598 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
1599 return sprintf(buf, "%s; SMT Host state unknown\n",
1600 taa_strings[taa_mitigation]);
1601 }
1602
1603 return sprintf(buf, "%s; SMT %s\n", taa_strings[taa_mitigation],
1604 sched_smt_active() ? "vulnerable" : "disabled");
1605}
1606
1607static char *stibp_state(void)
1608{
1609 if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
1610 return "";
1611
1612 switch (spectre_v2_user_stibp) {
1613 case SPECTRE_V2_USER_NONE:
1614 return ", STIBP: disabled";
1615 case SPECTRE_V2_USER_STRICT:
1616 return ", STIBP: forced";
1617 case SPECTRE_V2_USER_STRICT_PREFERRED:
1618 return ", STIBP: always-on";
1619 case SPECTRE_V2_USER_PRCTL:
1620 case SPECTRE_V2_USER_SECCOMP:
1621 if (static_key_enabled(&switch_to_cond_stibp))
1622 return ", STIBP: conditional";
1623 }
1624 return "";
1625}
1626
1627static char *ibpb_state(void)
1628{
1629 if (boot_cpu_has(X86_FEATURE_IBPB)) {
1630 if (static_key_enabled(&switch_mm_always_ibpb))
1631 return ", IBPB: always-on";
1632 if (static_key_enabled(&switch_mm_cond_ibpb))
1633 return ", IBPB: conditional";
1634 return ", IBPB: disabled";
1635 }
1636 return "";
1637}
1638
1639static ssize_t srbds_show_state(char *buf)
1640{
1641 return sprintf(buf, "%s\n", srbds_strings[srbds_mitigation]);
1642}
1643
1644static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr,
1645 char *buf, unsigned int bug)
1646{
1647 if (!boot_cpu_has_bug(bug))
1648 return sprintf(buf, "Not affected\n");
1649
1650 switch (bug) {
1651 case X86_BUG_CPU_MELTDOWN:
1652 if (boot_cpu_has(X86_FEATURE_PTI))
1653 return sprintf(buf, "Mitigation: PTI\n");
1654
1655 if (hypervisor_is_type(X86_HYPER_XEN_PV))
1656 return sprintf(buf, "Unknown (XEN PV detected, hypervisor mitigation required)\n");
1657
1658 break;
1659
1660 case X86_BUG_SPECTRE_V1:
1661 return sprintf(buf, "%s\n", spectre_v1_strings[spectre_v1_mitigation]);
1662
1663 case X86_BUG_SPECTRE_V2:
1664 return sprintf(buf, "%s%s%s%s%s%s\n", spectre_v2_strings[spectre_v2_enabled],
1665 ibpb_state(),
1666 boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "",
1667 stibp_state(),
1668 boot_cpu_has(X86_FEATURE_RSB_CTXSW) ? ", RSB filling" : "",
1669 spectre_v2_module_string());
1670
1671 case X86_BUG_SPEC_STORE_BYPASS:
1672 return sprintf(buf, "%s\n", ssb_strings[ssb_mode]);
1673
1674 case X86_BUG_L1TF:
1675 if (boot_cpu_has(X86_FEATURE_L1TF_PTEINV))
1676 return l1tf_show_state(buf);
1677 break;
1678
1679 case X86_BUG_MDS:
1680 return mds_show_state(buf);
1681
1682 case X86_BUG_TAA:
1683 return tsx_async_abort_show_state(buf);
1684
1685 case X86_BUG_ITLB_MULTIHIT:
1686 return itlb_multihit_show_state(buf);
1687
1688 case X86_BUG_SRBDS:
1689 return srbds_show_state(buf);
1690
1691 default:
1692 break;
1693 }
1694
1695 return sprintf(buf, "Vulnerable\n");
1696}
1697
1698ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
1699{
1700 return cpu_show_common(dev, attr, buf, X86_BUG_CPU_MELTDOWN);
1701}
1702
1703ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf)
1704{
1705 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V1);
1706}
1707
1708ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf)
1709{
1710 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V2);
1711}
1712
1713ssize_t cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf)
1714{
1715 return cpu_show_common(dev, attr, buf, X86_BUG_SPEC_STORE_BYPASS);
1716}
1717
1718ssize_t cpu_show_l1tf(struct device *dev, struct device_attribute *attr, char *buf)
1719{
1720 return cpu_show_common(dev, attr, buf, X86_BUG_L1TF);
1721}
1722
1723ssize_t cpu_show_mds(struct device *dev, struct device_attribute *attr, char *buf)
1724{
1725 return cpu_show_common(dev, attr, buf, X86_BUG_MDS);
1726}
1727
1728ssize_t cpu_show_tsx_async_abort(struct device *dev, struct device_attribute *attr, char *buf)
1729{
1730 return cpu_show_common(dev, attr, buf, X86_BUG_TAA);
1731}
1732
1733ssize_t cpu_show_itlb_multihit(struct device *dev, struct device_attribute *attr, char *buf)
1734{
1735 return cpu_show_common(dev, attr, buf, X86_BUG_ITLB_MULTIHIT);
1736}
1737
1738ssize_t cpu_show_srbds(struct device *dev, struct device_attribute *attr, char *buf)
1739{
1740 return cpu_show_common(dev, attr, buf, X86_BUG_SRBDS);
1741}
1742#endif
1743