1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 1994 Linus Torvalds
4 *
5 * Cyrix stuff, June 1998 by:
6 * - Rafael R. Reilova (moved everything from head.S),
7 * <rreilova@ececs.uc.edu>
8 * - Channing Corn (tests & fixes),
9 * - Andrew D. Balsa (code cleanup).
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
19 #include <asm/spec-ctrl.h>
20 #include <asm/cmdline.h>
21 #include <asm/bugs.h>
22 #include <asm/processor.h>
23 #include <asm/processor-flags.h>
24 #include <asm/fpu/internal.h>
25 #include <asm/msr.h>
26 #include <asm/vmx.h>
27 #include <asm/paravirt.h>
28 #include <asm/alternative.h>
29 #include <asm/hypervisor.h>
30 #include <asm/pgtable.h>
31 #include <asm/set_memory.h>
32 #include <asm/intel-family.h>
33 #include <asm/e820/api.h>
34
35 #include "cpu.h"
36
37 static void __init spectre_v1_select_mitigation(void);
38 static void __init spectre_v2_select_mitigation(void);
39 static void __init ssb_select_mitigation(void);
40 static void __init l1tf_select_mitigation(void);
41 static void __init mds_select_mitigation(void);
42 static void __init mds_print_mitigation(void);
43 static void __init taa_select_mitigation(void);
44
45 /* The base value of the SPEC_CTRL MSR that always has to be preserved. */
46 u64 x86_spec_ctrl_base;
47 EXPORT_SYMBOL_GPL(x86_spec_ctrl_base);
48 static DEFINE_MUTEX(spec_ctrl_mutex);
49
50 /*
51 * The vendor and possibly platform specific bits which can be modified in
52 * x86_spec_ctrl_base.
53 */
54 static u64 __ro_after_init x86_spec_ctrl_mask = SPEC_CTRL_IBRS;
55
56 /*
57 * AMD specific MSR info for Speculative Store Bypass control.
58 * x86_amd_ls_cfg_ssbd_mask is initialized in identify_boot_cpu().
59 */
60 u64 __ro_after_init x86_amd_ls_cfg_base;
61 u64 __ro_after_init x86_amd_ls_cfg_ssbd_mask;
62
63 /* Control conditional STIPB in switch_to() */
64 DEFINE_STATIC_KEY_FALSE(switch_to_cond_stibp);
65 /* Control conditional IBPB in switch_mm() */
66 DEFINE_STATIC_KEY_FALSE(switch_mm_cond_ibpb);
67 /* Control unconditional IBPB in switch_mm() */
68 DEFINE_STATIC_KEY_FALSE(switch_mm_always_ibpb);
69
70 /* Control MDS CPU buffer clear before returning to user space */
71 DEFINE_STATIC_KEY_FALSE(mds_user_clear);
72 EXPORT_SYMBOL_GPL(mds_user_clear);
73 /* Control MDS CPU buffer clear before idling (halt, mwait) */
74 DEFINE_STATIC_KEY_FALSE(mds_idle_clear);
75 EXPORT_SYMBOL_GPL(mds_idle_clear);
76
check_bugs(void)77 void __init check_bugs(void)
78 {
79 identify_boot_cpu();
80
81 /*
82 * identify_boot_cpu() initialized SMT support information, let the
83 * core code know.
84 */
85 cpu_smt_check_topology();
86
87 if (!IS_ENABLED(CONFIG_SMP)) {
88 pr_info("CPU: ");
89 print_cpu_info(&boot_cpu_data);
90 }
91
92 /*
93 * Read the SPEC_CTRL MSR to account for reserved bits which may
94 * have unknown values. AMD64_LS_CFG MSR is cached in the early AMD
95 * init code as it is not enumerated and depends on the family.
96 */
97 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
98 rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
99
100 /* Allow STIBP in MSR_SPEC_CTRL if supported */
101 if (boot_cpu_has(X86_FEATURE_STIBP))
102 x86_spec_ctrl_mask |= SPEC_CTRL_STIBP;
103
104 /* Select the proper CPU mitigations before patching alternatives: */
105 spectre_v1_select_mitigation();
106 spectre_v2_select_mitigation();
107 ssb_select_mitigation();
108 l1tf_select_mitigation();
109 mds_select_mitigation();
110 taa_select_mitigation();
111
112 /*
113 * As MDS and TAA mitigations are inter-related, print MDS
114 * mitigation until after TAA mitigation selection is done.
115 */
116 mds_print_mitigation();
117
118 arch_smt_update();
119
120 #ifdef CONFIG_X86_32
121 /*
122 * Check whether we are able to run this kernel safely on SMP.
123 *
124 * - i386 is no longer supported.
125 * - In order to run on anything without a TSC, we need to be
126 * compiled for a i486.
127 */
128 if (boot_cpu_data.x86 < 4)
129 panic("Kernel requires i486+ for 'invlpg' and other features");
130
131 init_utsname()->machine[1] =
132 '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
133 alternative_instructions();
134
135 fpu__init_check_bugs();
136 #else /* CONFIG_X86_64 */
137 alternative_instructions();
138
139 /*
140 * Make sure the first 2MB area is not mapped by huge pages
141 * There are typically fixed size MTRRs in there and overlapping
142 * MTRRs into large pages causes slow downs.
143 *
144 * Right now we don't do that with gbpages because there seems
145 * very little benefit for that case.
146 */
147 if (!direct_gbpages)
148 set_memory_4k((unsigned long)__va(0), 1);
149 #endif
150 }
151
152 void
x86_virt_spec_ctrl(u64 guest_spec_ctrl,u64 guest_virt_spec_ctrl,bool setguest)153 x86_virt_spec_ctrl(u64 guest_spec_ctrl, u64 guest_virt_spec_ctrl, bool setguest)
154 {
155 u64 msrval, guestval, hostval = x86_spec_ctrl_base;
156 struct thread_info *ti = current_thread_info();
157
158 /* Is MSR_SPEC_CTRL implemented ? */
159 if (static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) {
160 /*
161 * Restrict guest_spec_ctrl to supported values. Clear the
162 * modifiable bits in the host base value and or the
163 * modifiable bits from the guest value.
164 */
165 guestval = hostval & ~x86_spec_ctrl_mask;
166 guestval |= guest_spec_ctrl & x86_spec_ctrl_mask;
167
168 /* SSBD controlled in MSR_SPEC_CTRL */
169 if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) ||
170 static_cpu_has(X86_FEATURE_AMD_SSBD))
171 hostval |= ssbd_tif_to_spec_ctrl(ti->flags);
172
173 /* Conditional STIBP enabled? */
174 if (static_branch_unlikely(&switch_to_cond_stibp))
175 hostval |= stibp_tif_to_spec_ctrl(ti->flags);
176
177 if (hostval != guestval) {
178 msrval = setguest ? guestval : hostval;
179 wrmsrl(MSR_IA32_SPEC_CTRL, msrval);
180 }
181 }
182
183 /*
184 * If SSBD is not handled in MSR_SPEC_CTRL on AMD, update
185 * MSR_AMD64_L2_CFG or MSR_VIRT_SPEC_CTRL if supported.
186 */
187 if (!static_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
188 !static_cpu_has(X86_FEATURE_VIRT_SSBD))
189 return;
190
191 /*
192 * If the host has SSBD mitigation enabled, force it in the host's
193 * virtual MSR value. If its not permanently enabled, evaluate
194 * current's TIF_SSBD thread flag.
195 */
196 if (static_cpu_has(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE))
197 hostval = SPEC_CTRL_SSBD;
198 else
199 hostval = ssbd_tif_to_spec_ctrl(ti->flags);
200
201 /* Sanitize the guest value */
202 guestval = guest_virt_spec_ctrl & SPEC_CTRL_SSBD;
203
204 if (hostval != guestval) {
205 unsigned long tif;
206
207 tif = setguest ? ssbd_spec_ctrl_to_tif(guestval) :
208 ssbd_spec_ctrl_to_tif(hostval);
209
210 speculation_ctrl_update(tif);
211 }
212 }
213 EXPORT_SYMBOL_GPL(x86_virt_spec_ctrl);
214
x86_amd_ssb_disable(void)215 static void x86_amd_ssb_disable(void)
216 {
217 u64 msrval = x86_amd_ls_cfg_base | x86_amd_ls_cfg_ssbd_mask;
218
219 if (boot_cpu_has(X86_FEATURE_VIRT_SSBD))
220 wrmsrl(MSR_AMD64_VIRT_SPEC_CTRL, SPEC_CTRL_SSBD);
221 else if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD))
222 wrmsrl(MSR_AMD64_LS_CFG, msrval);
223 }
224
225 #undef pr_fmt
226 #define pr_fmt(fmt) "MDS: " fmt
227
228 /* Default mitigation for MDS-affected CPUs */
229 static enum mds_mitigations mds_mitigation __ro_after_init = MDS_MITIGATION_FULL;
230 static bool mds_nosmt __ro_after_init = false;
231
232 static const char * const mds_strings[] = {
233 [MDS_MITIGATION_OFF] = "Vulnerable",
234 [MDS_MITIGATION_FULL] = "Mitigation: Clear CPU buffers",
235 [MDS_MITIGATION_VMWERV] = "Vulnerable: Clear CPU buffers attempted, no microcode",
236 };
237
mds_select_mitigation(void)238 static void __init mds_select_mitigation(void)
239 {
240 if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off()) {
241 mds_mitigation = MDS_MITIGATION_OFF;
242 return;
243 }
244
245 if (mds_mitigation == MDS_MITIGATION_FULL) {
246 if (!boot_cpu_has(X86_FEATURE_MD_CLEAR))
247 mds_mitigation = MDS_MITIGATION_VMWERV;
248
249 static_branch_enable(&mds_user_clear);
250
251 if (!boot_cpu_has(X86_BUG_MSBDS_ONLY) &&
252 (mds_nosmt || cpu_mitigations_auto_nosmt()))
253 cpu_smt_disable(false);
254 }
255 }
256
mds_print_mitigation(void)257 static void __init mds_print_mitigation(void)
258 {
259 if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off())
260 return;
261
262 pr_info("%s\n", mds_strings[mds_mitigation]);
263 }
264
mds_cmdline(char * str)265 static int __init mds_cmdline(char *str)
266 {
267 if (!boot_cpu_has_bug(X86_BUG_MDS))
268 return 0;
269
270 if (!str)
271 return -EINVAL;
272
273 if (!strcmp(str, "off"))
274 mds_mitigation = MDS_MITIGATION_OFF;
275 else if (!strcmp(str, "full"))
276 mds_mitigation = MDS_MITIGATION_FULL;
277 else if (!strcmp(str, "full,nosmt")) {
278 mds_mitigation = MDS_MITIGATION_FULL;
279 mds_nosmt = true;
280 }
281
282 return 0;
283 }
284 early_param("mds", mds_cmdline);
285
286 #undef pr_fmt
287 #define pr_fmt(fmt) "TAA: " fmt
288
289 /* Default mitigation for TAA-affected CPUs */
290 static enum taa_mitigations taa_mitigation __ro_after_init = TAA_MITIGATION_VERW;
291 static bool taa_nosmt __ro_after_init;
292
293 static const char * const taa_strings[] = {
294 [TAA_MITIGATION_OFF] = "Vulnerable",
295 [TAA_MITIGATION_UCODE_NEEDED] = "Vulnerable: Clear CPU buffers attempted, no microcode",
296 [TAA_MITIGATION_VERW] = "Mitigation: Clear CPU buffers",
297 [TAA_MITIGATION_TSX_DISABLED] = "Mitigation: TSX disabled",
298 };
299
taa_select_mitigation(void)300 static void __init taa_select_mitigation(void)
301 {
302 u64 ia32_cap;
303
304 if (!boot_cpu_has_bug(X86_BUG_TAA)) {
305 taa_mitigation = TAA_MITIGATION_OFF;
306 return;
307 }
308
309 /* TSX previously disabled by tsx=off */
310 if (!boot_cpu_has(X86_FEATURE_RTM)) {
311 taa_mitigation = TAA_MITIGATION_TSX_DISABLED;
312 goto out;
313 }
314
315 if (cpu_mitigations_off()) {
316 taa_mitigation = TAA_MITIGATION_OFF;
317 return;
318 }
319
320 /*
321 * TAA mitigation via VERW is turned off if both
322 * tsx_async_abort=off and mds=off are specified.
323 */
324 if (taa_mitigation == TAA_MITIGATION_OFF &&
325 mds_mitigation == MDS_MITIGATION_OFF)
326 goto out;
327
328 if (boot_cpu_has(X86_FEATURE_MD_CLEAR))
329 taa_mitigation = TAA_MITIGATION_VERW;
330 else
331 taa_mitigation = TAA_MITIGATION_UCODE_NEEDED;
332
333 /*
334 * VERW doesn't clear the CPU buffers when MD_CLEAR=1 and MDS_NO=1.
335 * A microcode update fixes this behavior to clear CPU buffers. It also
336 * adds support for MSR_IA32_TSX_CTRL which is enumerated by the
337 * ARCH_CAP_TSX_CTRL_MSR bit.
338 *
339 * On MDS_NO=1 CPUs if ARCH_CAP_TSX_CTRL_MSR is not set, microcode
340 * update is required.
341 */
342 ia32_cap = x86_read_arch_cap_msr();
343 if ( (ia32_cap & ARCH_CAP_MDS_NO) &&
344 !(ia32_cap & ARCH_CAP_TSX_CTRL_MSR))
345 taa_mitigation = TAA_MITIGATION_UCODE_NEEDED;
346
347 /*
348 * TSX is enabled, select alternate mitigation for TAA which is
349 * the same as MDS. Enable MDS static branch to clear CPU buffers.
350 *
351 * For guests that can't determine whether the correct microcode is
352 * present on host, enable the mitigation for UCODE_NEEDED as well.
353 */
354 static_branch_enable(&mds_user_clear);
355
356 if (taa_nosmt || cpu_mitigations_auto_nosmt())
357 cpu_smt_disable(false);
358
359 /*
360 * Update MDS mitigation, if necessary, as the mds_user_clear is
361 * now enabled for TAA mitigation.
362 */
363 if (mds_mitigation == MDS_MITIGATION_OFF &&
364 boot_cpu_has_bug(X86_BUG_MDS)) {
365 mds_mitigation = MDS_MITIGATION_FULL;
366 mds_select_mitigation();
367 }
368 out:
369 pr_info("%s\n", taa_strings[taa_mitigation]);
370 }
371
tsx_async_abort_parse_cmdline(char * str)372 static int __init tsx_async_abort_parse_cmdline(char *str)
373 {
374 if (!boot_cpu_has_bug(X86_BUG_TAA))
375 return 0;
376
377 if (!str)
378 return -EINVAL;
379
380 if (!strcmp(str, "off")) {
381 taa_mitigation = TAA_MITIGATION_OFF;
382 } else if (!strcmp(str, "full")) {
383 taa_mitigation = TAA_MITIGATION_VERW;
384 } else if (!strcmp(str, "full,nosmt")) {
385 taa_mitigation = TAA_MITIGATION_VERW;
386 taa_nosmt = true;
387 }
388
389 return 0;
390 }
391 early_param("tsx_async_abort", tsx_async_abort_parse_cmdline);
392
393 #undef pr_fmt
394 #define pr_fmt(fmt) "Spectre V1 : " fmt
395
396 enum spectre_v1_mitigation {
397 SPECTRE_V1_MITIGATION_NONE,
398 SPECTRE_V1_MITIGATION_AUTO,
399 };
400
401 static enum spectre_v1_mitigation spectre_v1_mitigation __ro_after_init =
402 SPECTRE_V1_MITIGATION_AUTO;
403
404 static const char * const spectre_v1_strings[] = {
405 [SPECTRE_V1_MITIGATION_NONE] = "Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers",
406 [SPECTRE_V1_MITIGATION_AUTO] = "Mitigation: usercopy/swapgs barriers and __user pointer sanitization",
407 };
408
409 /*
410 * Does SMAP provide full mitigation against speculative kernel access to
411 * userspace?
412 */
smap_works_speculatively(void)413 static bool smap_works_speculatively(void)
414 {
415 if (!boot_cpu_has(X86_FEATURE_SMAP))
416 return false;
417
418 /*
419 * On CPUs which are vulnerable to Meltdown, SMAP does not
420 * prevent speculative access to user data in the L1 cache.
421 * Consider SMAP to be non-functional as a mitigation on these
422 * CPUs.
423 */
424 if (boot_cpu_has(X86_BUG_CPU_MELTDOWN))
425 return false;
426
427 return true;
428 }
429
spectre_v1_select_mitigation(void)430 static void __init spectre_v1_select_mitigation(void)
431 {
432 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V1) || cpu_mitigations_off()) {
433 spectre_v1_mitigation = SPECTRE_V1_MITIGATION_NONE;
434 return;
435 }
436
437 if (spectre_v1_mitigation == SPECTRE_V1_MITIGATION_AUTO) {
438 /*
439 * With Spectre v1, a user can speculatively control either
440 * path of a conditional swapgs with a user-controlled GS
441 * value. The mitigation is to add lfences to both code paths.
442 *
443 * If FSGSBASE is enabled, the user can put a kernel address in
444 * GS, in which case SMAP provides no protection.
445 *
446 * [ NOTE: Don't check for X86_FEATURE_FSGSBASE until the
447 * FSGSBASE enablement patches have been merged. ]
448 *
449 * If FSGSBASE is disabled, the user can only put a user space
450 * address in GS. That makes an attack harder, but still
451 * possible if there's no SMAP protection.
452 */
453 if (!smap_works_speculatively()) {
454 /*
455 * Mitigation can be provided from SWAPGS itself or
456 * PTI as the CR3 write in the Meltdown mitigation
457 * is serializing.
458 *
459 * If neither is there, mitigate with an LFENCE to
460 * stop speculation through swapgs.
461 */
462 if (boot_cpu_has_bug(X86_BUG_SWAPGS) &&
463 !boot_cpu_has(X86_FEATURE_PTI))
464 setup_force_cpu_cap(X86_FEATURE_FENCE_SWAPGS_USER);
465
466 /*
467 * Enable lfences in the kernel entry (non-swapgs)
468 * paths, to prevent user entry from speculatively
469 * skipping swapgs.
470 */
471 setup_force_cpu_cap(X86_FEATURE_FENCE_SWAPGS_KERNEL);
472 }
473 }
474
475 pr_info("%s\n", spectre_v1_strings[spectre_v1_mitigation]);
476 }
477
nospectre_v1_cmdline(char * str)478 static int __init nospectre_v1_cmdline(char *str)
479 {
480 spectre_v1_mitigation = SPECTRE_V1_MITIGATION_NONE;
481 return 0;
482 }
483 early_param("nospectre_v1", nospectre_v1_cmdline);
484
485 #undef pr_fmt
486 #define pr_fmt(fmt) "Spectre V2 : " fmt
487
488 static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init =
489 SPECTRE_V2_NONE;
490
491 static enum spectre_v2_user_mitigation spectre_v2_user __ro_after_init =
492 SPECTRE_V2_USER_NONE;
493
494 #ifdef CONFIG_RETPOLINE
495 static bool spectre_v2_bad_module;
496
retpoline_module_ok(bool has_retpoline)497 bool retpoline_module_ok(bool has_retpoline)
498 {
499 if (spectre_v2_enabled == SPECTRE_V2_NONE || has_retpoline)
500 return true;
501
502 pr_err("System may be vulnerable to spectre v2\n");
503 spectre_v2_bad_module = true;
504 return false;
505 }
506
spectre_v2_module_string(void)507 static inline const char *spectre_v2_module_string(void)
508 {
509 return spectre_v2_bad_module ? " - vulnerable module loaded" : "";
510 }
511 #else
spectre_v2_module_string(void)512 static inline const char *spectre_v2_module_string(void) { return ""; }
513 #endif
514
match_option(const char * arg,int arglen,const char * opt)515 static inline bool match_option(const char *arg, int arglen, const char *opt)
516 {
517 int len = strlen(opt);
518
519 return len == arglen && !strncmp(arg, opt, len);
520 }
521
522 /* The kernel command line selection for spectre v2 */
523 enum spectre_v2_mitigation_cmd {
524 SPECTRE_V2_CMD_NONE,
525 SPECTRE_V2_CMD_AUTO,
526 SPECTRE_V2_CMD_FORCE,
527 SPECTRE_V2_CMD_RETPOLINE,
528 SPECTRE_V2_CMD_RETPOLINE_GENERIC,
529 SPECTRE_V2_CMD_RETPOLINE_AMD,
530 };
531
532 enum spectre_v2_user_cmd {
533 SPECTRE_V2_USER_CMD_NONE,
534 SPECTRE_V2_USER_CMD_AUTO,
535 SPECTRE_V2_USER_CMD_FORCE,
536 SPECTRE_V2_USER_CMD_PRCTL,
537 SPECTRE_V2_USER_CMD_PRCTL_IBPB,
538 SPECTRE_V2_USER_CMD_SECCOMP,
539 SPECTRE_V2_USER_CMD_SECCOMP_IBPB,
540 };
541
542 static const char * const spectre_v2_user_strings[] = {
543 [SPECTRE_V2_USER_NONE] = "User space: Vulnerable",
544 [SPECTRE_V2_USER_STRICT] = "User space: Mitigation: STIBP protection",
545 [SPECTRE_V2_USER_PRCTL] = "User space: Mitigation: STIBP via prctl",
546 [SPECTRE_V2_USER_SECCOMP] = "User space: Mitigation: STIBP via seccomp and prctl",
547 };
548
549 static const struct {
550 const char *option;
551 enum spectre_v2_user_cmd cmd;
552 bool secure;
553 } v2_user_options[] __initconst = {
554 { "auto", SPECTRE_V2_USER_CMD_AUTO, false },
555 { "off", SPECTRE_V2_USER_CMD_NONE, false },
556 { "on", SPECTRE_V2_USER_CMD_FORCE, true },
557 { "prctl", SPECTRE_V2_USER_CMD_PRCTL, false },
558 { "prctl,ibpb", SPECTRE_V2_USER_CMD_PRCTL_IBPB, false },
559 { "seccomp", SPECTRE_V2_USER_CMD_SECCOMP, false },
560 { "seccomp,ibpb", SPECTRE_V2_USER_CMD_SECCOMP_IBPB, false },
561 };
562
spec_v2_user_print_cond(const char * reason,bool secure)563 static void __init spec_v2_user_print_cond(const char *reason, bool secure)
564 {
565 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
566 pr_info("spectre_v2_user=%s forced on command line.\n", reason);
567 }
568
569 static enum spectre_v2_user_cmd __init
spectre_v2_parse_user_cmdline(enum spectre_v2_mitigation_cmd v2_cmd)570 spectre_v2_parse_user_cmdline(enum spectre_v2_mitigation_cmd v2_cmd)
571 {
572 char arg[20];
573 int ret, i;
574
575 switch (v2_cmd) {
576 case SPECTRE_V2_CMD_NONE:
577 return SPECTRE_V2_USER_CMD_NONE;
578 case SPECTRE_V2_CMD_FORCE:
579 return SPECTRE_V2_USER_CMD_FORCE;
580 default:
581 break;
582 }
583
584 ret = cmdline_find_option(boot_command_line, "spectre_v2_user",
585 arg, sizeof(arg));
586 if (ret < 0)
587 return SPECTRE_V2_USER_CMD_AUTO;
588
589 for (i = 0; i < ARRAY_SIZE(v2_user_options); i++) {
590 if (match_option(arg, ret, v2_user_options[i].option)) {
591 spec_v2_user_print_cond(v2_user_options[i].option,
592 v2_user_options[i].secure);
593 return v2_user_options[i].cmd;
594 }
595 }
596
597 pr_err("Unknown user space protection option (%s). Switching to AUTO select\n", arg);
598 return SPECTRE_V2_USER_CMD_AUTO;
599 }
600
601 static void __init
spectre_v2_user_select_mitigation(enum spectre_v2_mitigation_cmd v2_cmd)602 spectre_v2_user_select_mitigation(enum spectre_v2_mitigation_cmd v2_cmd)
603 {
604 enum spectre_v2_user_mitigation mode = SPECTRE_V2_USER_NONE;
605 bool smt_possible = IS_ENABLED(CONFIG_SMP);
606 enum spectre_v2_user_cmd cmd;
607
608 if (!boot_cpu_has(X86_FEATURE_IBPB) && !boot_cpu_has(X86_FEATURE_STIBP))
609 return;
610
611 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
612 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
613 smt_possible = false;
614
615 cmd = spectre_v2_parse_user_cmdline(v2_cmd);
616 switch (cmd) {
617 case SPECTRE_V2_USER_CMD_NONE:
618 goto set_mode;
619 case SPECTRE_V2_USER_CMD_FORCE:
620 mode = SPECTRE_V2_USER_STRICT;
621 break;
622 case SPECTRE_V2_USER_CMD_PRCTL:
623 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
624 mode = SPECTRE_V2_USER_PRCTL;
625 break;
626 case SPECTRE_V2_USER_CMD_AUTO:
627 case SPECTRE_V2_USER_CMD_SECCOMP:
628 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
629 if (IS_ENABLED(CONFIG_SECCOMP))
630 mode = SPECTRE_V2_USER_SECCOMP;
631 else
632 mode = SPECTRE_V2_USER_PRCTL;
633 break;
634 }
635
636 /* Initialize Indirect Branch Prediction Barrier */
637 if (boot_cpu_has(X86_FEATURE_IBPB)) {
638 setup_force_cpu_cap(X86_FEATURE_USE_IBPB);
639
640 switch (cmd) {
641 case SPECTRE_V2_USER_CMD_FORCE:
642 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
643 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
644 static_branch_enable(&switch_mm_always_ibpb);
645 break;
646 case SPECTRE_V2_USER_CMD_PRCTL:
647 case SPECTRE_V2_USER_CMD_AUTO:
648 case SPECTRE_V2_USER_CMD_SECCOMP:
649 static_branch_enable(&switch_mm_cond_ibpb);
650 break;
651 default:
652 break;
653 }
654
655 pr_info("mitigation: Enabling %s Indirect Branch Prediction Barrier\n",
656 static_key_enabled(&switch_mm_always_ibpb) ?
657 "always-on" : "conditional");
658 }
659
660 /* If enhanced IBRS is enabled no STIPB required */
661 if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
662 return;
663
664 /*
665 * If SMT is not possible or STIBP is not available clear the STIPB
666 * mode.
667 */
668 if (!smt_possible || !boot_cpu_has(X86_FEATURE_STIBP))
669 mode = SPECTRE_V2_USER_NONE;
670 set_mode:
671 spectre_v2_user = mode;
672 /* Only print the STIBP mode when SMT possible */
673 if (smt_possible)
674 pr_info("%s\n", spectre_v2_user_strings[mode]);
675 }
676
677 static const char * const spectre_v2_strings[] = {
678 [SPECTRE_V2_NONE] = "Vulnerable",
679 [SPECTRE_V2_RETPOLINE_GENERIC] = "Mitigation: Full generic retpoline",
680 [SPECTRE_V2_RETPOLINE_AMD] = "Mitigation: Full AMD retpoline",
681 [SPECTRE_V2_IBRS_ENHANCED] = "Mitigation: Enhanced IBRS",
682 };
683
684 static const struct {
685 const char *option;
686 enum spectre_v2_mitigation_cmd cmd;
687 bool secure;
688 } mitigation_options[] __initconst = {
689 { "off", SPECTRE_V2_CMD_NONE, false },
690 { "on", SPECTRE_V2_CMD_FORCE, true },
691 { "retpoline", SPECTRE_V2_CMD_RETPOLINE, false },
692 { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_AMD, false },
693 { "retpoline,generic", SPECTRE_V2_CMD_RETPOLINE_GENERIC, false },
694 { "auto", SPECTRE_V2_CMD_AUTO, false },
695 };
696
spec_v2_print_cond(const char * reason,bool secure)697 static void __init spec_v2_print_cond(const char *reason, bool secure)
698 {
699 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
700 pr_info("%s selected on command line.\n", reason);
701 }
702
spectre_v2_parse_cmdline(void)703 static enum spectre_v2_mitigation_cmd __init spectre_v2_parse_cmdline(void)
704 {
705 enum spectre_v2_mitigation_cmd cmd = SPECTRE_V2_CMD_AUTO;
706 char arg[20];
707 int ret, i;
708
709 if (cmdline_find_option_bool(boot_command_line, "nospectre_v2") ||
710 cpu_mitigations_off())
711 return SPECTRE_V2_CMD_NONE;
712
713 ret = cmdline_find_option(boot_command_line, "spectre_v2", arg, sizeof(arg));
714 if (ret < 0)
715 return SPECTRE_V2_CMD_AUTO;
716
717 for (i = 0; i < ARRAY_SIZE(mitigation_options); i++) {
718 if (!match_option(arg, ret, mitigation_options[i].option))
719 continue;
720 cmd = mitigation_options[i].cmd;
721 break;
722 }
723
724 if (i >= ARRAY_SIZE(mitigation_options)) {
725 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
726 return SPECTRE_V2_CMD_AUTO;
727 }
728
729 if ((cmd == SPECTRE_V2_CMD_RETPOLINE ||
730 cmd == SPECTRE_V2_CMD_RETPOLINE_AMD ||
731 cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC) &&
732 !IS_ENABLED(CONFIG_RETPOLINE)) {
733 pr_err("%s selected but not compiled in. Switching to AUTO select\n", mitigation_options[i].option);
734 return SPECTRE_V2_CMD_AUTO;
735 }
736
737 if (cmd == SPECTRE_V2_CMD_RETPOLINE_AMD &&
738 boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
739 pr_err("retpoline,amd selected but CPU is not AMD. Switching to AUTO select\n");
740 return SPECTRE_V2_CMD_AUTO;
741 }
742
743 spec_v2_print_cond(mitigation_options[i].option,
744 mitigation_options[i].secure);
745 return cmd;
746 }
747
spectre_v2_select_mitigation(void)748 static void __init spectre_v2_select_mitigation(void)
749 {
750 enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline();
751 enum spectre_v2_mitigation mode = SPECTRE_V2_NONE;
752
753 /*
754 * If the CPU is not affected and the command line mode is NONE or AUTO
755 * then nothing to do.
756 */
757 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2) &&
758 (cmd == SPECTRE_V2_CMD_NONE || cmd == SPECTRE_V2_CMD_AUTO))
759 return;
760
761 switch (cmd) {
762 case SPECTRE_V2_CMD_NONE:
763 return;
764
765 case SPECTRE_V2_CMD_FORCE:
766 case SPECTRE_V2_CMD_AUTO:
767 if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) {
768 mode = SPECTRE_V2_IBRS_ENHANCED;
769 /* Force it so VMEXIT will restore correctly */
770 x86_spec_ctrl_base |= SPEC_CTRL_IBRS;
771 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
772 goto specv2_set_mode;
773 }
774 if (IS_ENABLED(CONFIG_RETPOLINE))
775 goto retpoline_auto;
776 break;
777 case SPECTRE_V2_CMD_RETPOLINE_AMD:
778 if (IS_ENABLED(CONFIG_RETPOLINE))
779 goto retpoline_amd;
780 break;
781 case SPECTRE_V2_CMD_RETPOLINE_GENERIC:
782 if (IS_ENABLED(CONFIG_RETPOLINE))
783 goto retpoline_generic;
784 break;
785 case SPECTRE_V2_CMD_RETPOLINE:
786 if (IS_ENABLED(CONFIG_RETPOLINE))
787 goto retpoline_auto;
788 break;
789 }
790 pr_err("Spectre mitigation: kernel not compiled with retpoline; no mitigation available!");
791 return;
792
793 retpoline_auto:
794 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) {
795 retpoline_amd:
796 if (!boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) {
797 pr_err("Spectre mitigation: LFENCE not serializing, switching to generic retpoline\n");
798 goto retpoline_generic;
799 }
800 mode = SPECTRE_V2_RETPOLINE_AMD;
801 setup_force_cpu_cap(X86_FEATURE_RETPOLINE_AMD);
802 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
803 } else {
804 retpoline_generic:
805 mode = SPECTRE_V2_RETPOLINE_GENERIC;
806 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
807 }
808
809 specv2_set_mode:
810 spectre_v2_enabled = mode;
811 pr_info("%s\n", spectre_v2_strings[mode]);
812
813 /*
814 * If spectre v2 protection has been enabled, unconditionally fill
815 * RSB during a context switch; this protects against two independent
816 * issues:
817 *
818 * - RSB underflow (and switch to BTB) on Skylake+
819 * - SpectreRSB variant of spectre v2 on X86_BUG_SPECTRE_V2 CPUs
820 */
821 setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW);
822 pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n");
823
824 /*
825 * Retpoline means the kernel is safe because it has no indirect
826 * branches. Enhanced IBRS protects firmware too, so, enable restricted
827 * speculation around firmware calls only when Enhanced IBRS isn't
828 * supported.
829 *
830 * Use "mode" to check Enhanced IBRS instead of boot_cpu_has(), because
831 * the user might select retpoline on the kernel command line and if
832 * the CPU supports Enhanced IBRS, kernel might un-intentionally not
833 * enable IBRS around firmware calls.
834 */
835 if (boot_cpu_has(X86_FEATURE_IBRS) && mode != SPECTRE_V2_IBRS_ENHANCED) {
836 setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW);
837 pr_info("Enabling Restricted Speculation for firmware calls\n");
838 }
839
840 /* Set up IBPB and STIBP depending on the general spectre V2 command */
841 spectre_v2_user_select_mitigation(cmd);
842 }
843
update_stibp_msr(void * __unused)844 static void update_stibp_msr(void * __unused)
845 {
846 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
847 }
848
849 /* Update x86_spec_ctrl_base in case SMT state changed. */
update_stibp_strict(void)850 static void update_stibp_strict(void)
851 {
852 u64 mask = x86_spec_ctrl_base & ~SPEC_CTRL_STIBP;
853
854 if (sched_smt_active())
855 mask |= SPEC_CTRL_STIBP;
856
857 if (mask == x86_spec_ctrl_base)
858 return;
859
860 pr_info("Update user space SMT mitigation: STIBP %s\n",
861 mask & SPEC_CTRL_STIBP ? "always-on" : "off");
862 x86_spec_ctrl_base = mask;
863 on_each_cpu(update_stibp_msr, NULL, 1);
864 }
865
866 /* Update the static key controlling the evaluation of TIF_SPEC_IB */
update_indir_branch_cond(void)867 static void update_indir_branch_cond(void)
868 {
869 if (sched_smt_active())
870 static_branch_enable(&switch_to_cond_stibp);
871 else
872 static_branch_disable(&switch_to_cond_stibp);
873 }
874
875 #undef pr_fmt
876 #define pr_fmt(fmt) fmt
877
878 /* Update the static key controlling the MDS CPU buffer clear in idle */
update_mds_branch_idle(void)879 static void update_mds_branch_idle(void)
880 {
881 /*
882 * Enable the idle clearing if SMT is active on CPUs which are
883 * affected only by MSBDS and not any other MDS variant.
884 *
885 * The other variants cannot be mitigated when SMT is enabled, so
886 * clearing the buffers on idle just to prevent the Store Buffer
887 * repartitioning leak would be a window dressing exercise.
888 */
889 if (!boot_cpu_has_bug(X86_BUG_MSBDS_ONLY))
890 return;
891
892 if (sched_smt_active())
893 static_branch_enable(&mds_idle_clear);
894 else
895 static_branch_disable(&mds_idle_clear);
896 }
897
898 #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"
899 #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"
900
arch_smt_update(void)901 void arch_smt_update(void)
902 {
903 mutex_lock(&spec_ctrl_mutex);
904
905 switch (spectre_v2_user) {
906 case SPECTRE_V2_USER_NONE:
907 break;
908 case SPECTRE_V2_USER_STRICT:
909 update_stibp_strict();
910 break;
911 case SPECTRE_V2_USER_PRCTL:
912 case SPECTRE_V2_USER_SECCOMP:
913 update_indir_branch_cond();
914 break;
915 }
916
917 switch (mds_mitigation) {
918 case MDS_MITIGATION_FULL:
919 case MDS_MITIGATION_VMWERV:
920 if (sched_smt_active() && !boot_cpu_has(X86_BUG_MSBDS_ONLY))
921 pr_warn_once(MDS_MSG_SMT);
922 update_mds_branch_idle();
923 break;
924 case MDS_MITIGATION_OFF:
925 break;
926 }
927
928 switch (taa_mitigation) {
929 case TAA_MITIGATION_VERW:
930 case TAA_MITIGATION_UCODE_NEEDED:
931 if (sched_smt_active())
932 pr_warn_once(TAA_MSG_SMT);
933 break;
934 case TAA_MITIGATION_TSX_DISABLED:
935 case TAA_MITIGATION_OFF:
936 break;
937 }
938
939 mutex_unlock(&spec_ctrl_mutex);
940 }
941
942 #undef pr_fmt
943 #define pr_fmt(fmt) "Speculative Store Bypass: " fmt
944
945 static enum ssb_mitigation ssb_mode __ro_after_init = SPEC_STORE_BYPASS_NONE;
946
947 /* The kernel command line selection */
948 enum ssb_mitigation_cmd {
949 SPEC_STORE_BYPASS_CMD_NONE,
950 SPEC_STORE_BYPASS_CMD_AUTO,
951 SPEC_STORE_BYPASS_CMD_ON,
952 SPEC_STORE_BYPASS_CMD_PRCTL,
953 SPEC_STORE_BYPASS_CMD_SECCOMP,
954 };
955
956 static const char * const ssb_strings[] = {
957 [SPEC_STORE_BYPASS_NONE] = "Vulnerable",
958 [SPEC_STORE_BYPASS_DISABLE] = "Mitigation: Speculative Store Bypass disabled",
959 [SPEC_STORE_BYPASS_PRCTL] = "Mitigation: Speculative Store Bypass disabled via prctl",
960 [SPEC_STORE_BYPASS_SECCOMP] = "Mitigation: Speculative Store Bypass disabled via prctl and seccomp",
961 };
962
963 static const struct {
964 const char *option;
965 enum ssb_mitigation_cmd cmd;
966 } ssb_mitigation_options[] __initconst = {
967 { "auto", SPEC_STORE_BYPASS_CMD_AUTO }, /* Platform decides */
968 { "on", SPEC_STORE_BYPASS_CMD_ON }, /* Disable Speculative Store Bypass */
969 { "off", SPEC_STORE_BYPASS_CMD_NONE }, /* Don't touch Speculative Store Bypass */
970 { "prctl", SPEC_STORE_BYPASS_CMD_PRCTL }, /* Disable Speculative Store Bypass via prctl */
971 { "seccomp", SPEC_STORE_BYPASS_CMD_SECCOMP }, /* Disable Speculative Store Bypass via prctl and seccomp */
972 };
973
ssb_parse_cmdline(void)974 static enum ssb_mitigation_cmd __init ssb_parse_cmdline(void)
975 {
976 enum ssb_mitigation_cmd cmd = SPEC_STORE_BYPASS_CMD_AUTO;
977 char arg[20];
978 int ret, i;
979
980 if (cmdline_find_option_bool(boot_command_line, "nospec_store_bypass_disable") ||
981 cpu_mitigations_off()) {
982 return SPEC_STORE_BYPASS_CMD_NONE;
983 } else {
984 ret = cmdline_find_option(boot_command_line, "spec_store_bypass_disable",
985 arg, sizeof(arg));
986 if (ret < 0)
987 return SPEC_STORE_BYPASS_CMD_AUTO;
988
989 for (i = 0; i < ARRAY_SIZE(ssb_mitigation_options); i++) {
990 if (!match_option(arg, ret, ssb_mitigation_options[i].option))
991 continue;
992
993 cmd = ssb_mitigation_options[i].cmd;
994 break;
995 }
996
997 if (i >= ARRAY_SIZE(ssb_mitigation_options)) {
998 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
999 return SPEC_STORE_BYPASS_CMD_AUTO;
1000 }
1001 }
1002
1003 return cmd;
1004 }
1005
__ssb_select_mitigation(void)1006 static enum ssb_mitigation __init __ssb_select_mitigation(void)
1007 {
1008 enum ssb_mitigation mode = SPEC_STORE_BYPASS_NONE;
1009 enum ssb_mitigation_cmd cmd;
1010
1011 if (!boot_cpu_has(X86_FEATURE_SSBD))
1012 return mode;
1013
1014 cmd = ssb_parse_cmdline();
1015 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS) &&
1016 (cmd == SPEC_STORE_BYPASS_CMD_NONE ||
1017 cmd == SPEC_STORE_BYPASS_CMD_AUTO))
1018 return mode;
1019
1020 switch (cmd) {
1021 case SPEC_STORE_BYPASS_CMD_AUTO:
1022 case SPEC_STORE_BYPASS_CMD_SECCOMP:
1023 /*
1024 * Choose prctl+seccomp as the default mode if seccomp is
1025 * enabled.
1026 */
1027 if (IS_ENABLED(CONFIG_SECCOMP))
1028 mode = SPEC_STORE_BYPASS_SECCOMP;
1029 else
1030 mode = SPEC_STORE_BYPASS_PRCTL;
1031 break;
1032 case SPEC_STORE_BYPASS_CMD_ON:
1033 mode = SPEC_STORE_BYPASS_DISABLE;
1034 break;
1035 case SPEC_STORE_BYPASS_CMD_PRCTL:
1036 mode = SPEC_STORE_BYPASS_PRCTL;
1037 break;
1038 case SPEC_STORE_BYPASS_CMD_NONE:
1039 break;
1040 }
1041
1042 /*
1043 * If SSBD is controlled by the SPEC_CTRL MSR, then set the proper
1044 * bit in the mask to allow guests to use the mitigation even in the
1045 * case where the host does not enable it.
1046 */
1047 if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) ||
1048 static_cpu_has(X86_FEATURE_AMD_SSBD)) {
1049 x86_spec_ctrl_mask |= SPEC_CTRL_SSBD;
1050 }
1051
1052 /*
1053 * We have three CPU feature flags that are in play here:
1054 * - X86_BUG_SPEC_STORE_BYPASS - CPU is susceptible.
1055 * - X86_FEATURE_SSBD - CPU is able to turn off speculative store bypass
1056 * - X86_FEATURE_SPEC_STORE_BYPASS_DISABLE - engage the mitigation
1057 */
1058 if (mode == SPEC_STORE_BYPASS_DISABLE) {
1059 setup_force_cpu_cap(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE);
1060 /*
1061 * Intel uses the SPEC CTRL MSR Bit(2) for this, while AMD may
1062 * use a completely different MSR and bit dependent on family.
1063 */
1064 if (!static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) &&
1065 !static_cpu_has(X86_FEATURE_AMD_SSBD)) {
1066 x86_amd_ssb_disable();
1067 } else {
1068 x86_spec_ctrl_base |= SPEC_CTRL_SSBD;
1069 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
1070 }
1071 }
1072
1073 return mode;
1074 }
1075
ssb_select_mitigation(void)1076 static void ssb_select_mitigation(void)
1077 {
1078 ssb_mode = __ssb_select_mitigation();
1079
1080 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1081 pr_info("%s\n", ssb_strings[ssb_mode]);
1082 }
1083
1084 #undef pr_fmt
1085 #define pr_fmt(fmt) "Speculation prctl: " fmt
1086
task_update_spec_tif(struct task_struct * tsk)1087 static void task_update_spec_tif(struct task_struct *tsk)
1088 {
1089 /* Force the update of the real TIF bits */
1090 set_tsk_thread_flag(tsk, TIF_SPEC_FORCE_UPDATE);
1091
1092 /*
1093 * Immediately update the speculation control MSRs for the current
1094 * task, but for a non-current task delay setting the CPU
1095 * mitigation until it is scheduled next.
1096 *
1097 * This can only happen for SECCOMP mitigation. For PRCTL it's
1098 * always the current task.
1099 */
1100 if (tsk == current)
1101 speculation_ctrl_update_current();
1102 }
1103
ssb_prctl_set(struct task_struct * task,unsigned long ctrl)1104 static int ssb_prctl_set(struct task_struct *task, unsigned long ctrl)
1105 {
1106 if (ssb_mode != SPEC_STORE_BYPASS_PRCTL &&
1107 ssb_mode != SPEC_STORE_BYPASS_SECCOMP)
1108 return -ENXIO;
1109
1110 switch (ctrl) {
1111 case PR_SPEC_ENABLE:
1112 /* If speculation is force disabled, enable is not allowed */
1113 if (task_spec_ssb_force_disable(task))
1114 return -EPERM;
1115 task_clear_spec_ssb_disable(task);
1116 task_update_spec_tif(task);
1117 break;
1118 case PR_SPEC_DISABLE:
1119 task_set_spec_ssb_disable(task);
1120 task_update_spec_tif(task);
1121 break;
1122 case PR_SPEC_FORCE_DISABLE:
1123 task_set_spec_ssb_disable(task);
1124 task_set_spec_ssb_force_disable(task);
1125 task_update_spec_tif(task);
1126 break;
1127 default:
1128 return -ERANGE;
1129 }
1130 return 0;
1131 }
1132
ib_prctl_set(struct task_struct * task,unsigned long ctrl)1133 static int ib_prctl_set(struct task_struct *task, unsigned long ctrl)
1134 {
1135 switch (ctrl) {
1136 case PR_SPEC_ENABLE:
1137 if (spectre_v2_user == SPECTRE_V2_USER_NONE)
1138 return 0;
1139 /*
1140 * Indirect branch speculation is always disabled in strict
1141 * mode.
1142 */
1143 if (spectre_v2_user == SPECTRE_V2_USER_STRICT)
1144 return -EPERM;
1145 task_clear_spec_ib_disable(task);
1146 task_update_spec_tif(task);
1147 break;
1148 case PR_SPEC_DISABLE:
1149 case PR_SPEC_FORCE_DISABLE:
1150 /*
1151 * Indirect branch speculation is always allowed when
1152 * mitigation is force disabled.
1153 */
1154 if (spectre_v2_user == SPECTRE_V2_USER_NONE)
1155 return -EPERM;
1156 if (spectre_v2_user == SPECTRE_V2_USER_STRICT)
1157 return 0;
1158 task_set_spec_ib_disable(task);
1159 if (ctrl == PR_SPEC_FORCE_DISABLE)
1160 task_set_spec_ib_force_disable(task);
1161 task_update_spec_tif(task);
1162 break;
1163 default:
1164 return -ERANGE;
1165 }
1166 return 0;
1167 }
1168
arch_prctl_spec_ctrl_set(struct task_struct * task,unsigned long which,unsigned long ctrl)1169 int arch_prctl_spec_ctrl_set(struct task_struct *task, unsigned long which,
1170 unsigned long ctrl)
1171 {
1172 switch (which) {
1173 case PR_SPEC_STORE_BYPASS:
1174 return ssb_prctl_set(task, ctrl);
1175 case PR_SPEC_INDIRECT_BRANCH:
1176 return ib_prctl_set(task, ctrl);
1177 default:
1178 return -ENODEV;
1179 }
1180 }
1181
1182 #ifdef CONFIG_SECCOMP
arch_seccomp_spec_mitigate(struct task_struct * task)1183 void arch_seccomp_spec_mitigate(struct task_struct *task)
1184 {
1185 if (ssb_mode == SPEC_STORE_BYPASS_SECCOMP)
1186 ssb_prctl_set(task, PR_SPEC_FORCE_DISABLE);
1187 if (spectre_v2_user == SPECTRE_V2_USER_SECCOMP)
1188 ib_prctl_set(task, PR_SPEC_FORCE_DISABLE);
1189 }
1190 #endif
1191
ssb_prctl_get(struct task_struct * task)1192 static int ssb_prctl_get(struct task_struct *task)
1193 {
1194 switch (ssb_mode) {
1195 case SPEC_STORE_BYPASS_DISABLE:
1196 return PR_SPEC_DISABLE;
1197 case SPEC_STORE_BYPASS_SECCOMP:
1198 case SPEC_STORE_BYPASS_PRCTL:
1199 if (task_spec_ssb_force_disable(task))
1200 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
1201 if (task_spec_ssb_disable(task))
1202 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
1203 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
1204 default:
1205 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1206 return PR_SPEC_ENABLE;
1207 return PR_SPEC_NOT_AFFECTED;
1208 }
1209 }
1210
ib_prctl_get(struct task_struct * task)1211 static int ib_prctl_get(struct task_struct *task)
1212 {
1213 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
1214 return PR_SPEC_NOT_AFFECTED;
1215
1216 switch (spectre_v2_user) {
1217 case SPECTRE_V2_USER_NONE:
1218 return PR_SPEC_ENABLE;
1219 case SPECTRE_V2_USER_PRCTL:
1220 case SPECTRE_V2_USER_SECCOMP:
1221 if (task_spec_ib_force_disable(task))
1222 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
1223 if (task_spec_ib_disable(task))
1224 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
1225 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
1226 case SPECTRE_V2_USER_STRICT:
1227 return PR_SPEC_DISABLE;
1228 default:
1229 return PR_SPEC_NOT_AFFECTED;
1230 }
1231 }
1232
arch_prctl_spec_ctrl_get(struct task_struct * task,unsigned long which)1233 int arch_prctl_spec_ctrl_get(struct task_struct *task, unsigned long which)
1234 {
1235 switch (which) {
1236 case PR_SPEC_STORE_BYPASS:
1237 return ssb_prctl_get(task);
1238 case PR_SPEC_INDIRECT_BRANCH:
1239 return ib_prctl_get(task);
1240 default:
1241 return -ENODEV;
1242 }
1243 }
1244
x86_spec_ctrl_setup_ap(void)1245 void x86_spec_ctrl_setup_ap(void)
1246 {
1247 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
1248 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
1249
1250 if (ssb_mode == SPEC_STORE_BYPASS_DISABLE)
1251 x86_amd_ssb_disable();
1252 }
1253
1254 bool itlb_multihit_kvm_mitigation;
1255 EXPORT_SYMBOL_GPL(itlb_multihit_kvm_mitigation);
1256
1257 #undef pr_fmt
1258 #define pr_fmt(fmt) "L1TF: " fmt
1259
1260 /* Default mitigation for L1TF-affected CPUs */
1261 enum l1tf_mitigations l1tf_mitigation __ro_after_init = L1TF_MITIGATION_FLUSH;
1262 #if IS_ENABLED(CONFIG_KVM_INTEL)
1263 EXPORT_SYMBOL_GPL(l1tf_mitigation);
1264 #endif
1265 enum vmx_l1d_flush_state l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
1266 EXPORT_SYMBOL_GPL(l1tf_vmx_mitigation);
1267
1268 /*
1269 * These CPUs all support 44bits physical address space internally in the
1270 * cache but CPUID can report a smaller number of physical address bits.
1271 *
1272 * The L1TF mitigation uses the top most address bit for the inversion of
1273 * non present PTEs. When the installed memory reaches into the top most
1274 * address bit due to memory holes, which has been observed on machines
1275 * which report 36bits physical address bits and have 32G RAM installed,
1276 * then the mitigation range check in l1tf_select_mitigation() triggers.
1277 * This is a false positive because the mitigation is still possible due to
1278 * the fact that the cache uses 44bit internally. Use the cache bits
1279 * instead of the reported physical bits and adjust them on the affected
1280 * machines to 44bit if the reported bits are less than 44.
1281 */
override_cache_bits(struct cpuinfo_x86 * c)1282 static void override_cache_bits(struct cpuinfo_x86 *c)
1283 {
1284 if (c->x86 != 6)
1285 return;
1286
1287 switch (c->x86_model) {
1288 case INTEL_FAM6_NEHALEM:
1289 case INTEL_FAM6_WESTMERE:
1290 case INTEL_FAM6_SANDYBRIDGE:
1291 case INTEL_FAM6_IVYBRIDGE:
1292 case INTEL_FAM6_HASWELL_CORE:
1293 case INTEL_FAM6_HASWELL_ULT:
1294 case INTEL_FAM6_HASWELL_GT3E:
1295 case INTEL_FAM6_BROADWELL_CORE:
1296 case INTEL_FAM6_BROADWELL_GT3E:
1297 case INTEL_FAM6_SKYLAKE_MOBILE:
1298 case INTEL_FAM6_SKYLAKE_DESKTOP:
1299 case INTEL_FAM6_KABYLAKE_MOBILE:
1300 case INTEL_FAM6_KABYLAKE_DESKTOP:
1301 if (c->x86_cache_bits < 44)
1302 c->x86_cache_bits = 44;
1303 break;
1304 }
1305 }
1306
l1tf_select_mitigation(void)1307 static void __init l1tf_select_mitigation(void)
1308 {
1309 u64 half_pa;
1310
1311 if (!boot_cpu_has_bug(X86_BUG_L1TF))
1312 return;
1313
1314 if (cpu_mitigations_off())
1315 l1tf_mitigation = L1TF_MITIGATION_OFF;
1316 else if (cpu_mitigations_auto_nosmt())
1317 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
1318
1319 override_cache_bits(&boot_cpu_data);
1320
1321 switch (l1tf_mitigation) {
1322 case L1TF_MITIGATION_OFF:
1323 case L1TF_MITIGATION_FLUSH_NOWARN:
1324 case L1TF_MITIGATION_FLUSH:
1325 break;
1326 case L1TF_MITIGATION_FLUSH_NOSMT:
1327 case L1TF_MITIGATION_FULL:
1328 cpu_smt_disable(false);
1329 break;
1330 case L1TF_MITIGATION_FULL_FORCE:
1331 cpu_smt_disable(true);
1332 break;
1333 }
1334
1335 #if CONFIG_PGTABLE_LEVELS == 2
1336 pr_warn("Kernel not compiled for PAE. No mitigation for L1TF\n");
1337 return;
1338 #endif
1339
1340 half_pa = (u64)l1tf_pfn_limit() << PAGE_SHIFT;
1341 if (l1tf_mitigation != L1TF_MITIGATION_OFF &&
1342 e820__mapped_any(half_pa, ULLONG_MAX - half_pa, E820_TYPE_RAM)) {
1343 pr_warn("System has more than MAX_PA/2 memory. L1TF mitigation not effective.\n");
1344 pr_info("You may make it effective by booting the kernel with mem=%llu parameter.\n",
1345 half_pa);
1346 pr_info("However, doing so will make a part of your RAM unusable.\n");
1347 pr_info("Reading https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html might help you decide.\n");
1348 return;
1349 }
1350
1351 setup_force_cpu_cap(X86_FEATURE_L1TF_PTEINV);
1352 }
1353
l1tf_cmdline(char * str)1354 static int __init l1tf_cmdline(char *str)
1355 {
1356 if (!boot_cpu_has_bug(X86_BUG_L1TF))
1357 return 0;
1358
1359 if (!str)
1360 return -EINVAL;
1361
1362 if (!strcmp(str, "off"))
1363 l1tf_mitigation = L1TF_MITIGATION_OFF;
1364 else if (!strcmp(str, "flush,nowarn"))
1365 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOWARN;
1366 else if (!strcmp(str, "flush"))
1367 l1tf_mitigation = L1TF_MITIGATION_FLUSH;
1368 else if (!strcmp(str, "flush,nosmt"))
1369 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
1370 else if (!strcmp(str, "full"))
1371 l1tf_mitigation = L1TF_MITIGATION_FULL;
1372 else if (!strcmp(str, "full,force"))
1373 l1tf_mitigation = L1TF_MITIGATION_FULL_FORCE;
1374
1375 return 0;
1376 }
1377 early_param("l1tf", l1tf_cmdline);
1378
1379 #undef pr_fmt
1380 #define pr_fmt(fmt) fmt
1381
1382 #ifdef CONFIG_SYSFS
1383
1384 #define L1TF_DEFAULT_MSG "Mitigation: PTE Inversion"
1385
1386 #if IS_ENABLED(CONFIG_KVM_INTEL)
1387 static const char * const l1tf_vmx_states[] = {
1388 [VMENTER_L1D_FLUSH_AUTO] = "auto",
1389 [VMENTER_L1D_FLUSH_NEVER] = "vulnerable",
1390 [VMENTER_L1D_FLUSH_COND] = "conditional cache flushes",
1391 [VMENTER_L1D_FLUSH_ALWAYS] = "cache flushes",
1392 [VMENTER_L1D_FLUSH_EPT_DISABLED] = "EPT disabled",
1393 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = "flush not necessary"
1394 };
1395
l1tf_show_state(char * buf)1396 static ssize_t l1tf_show_state(char *buf)
1397 {
1398 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO)
1399 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
1400
1401 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_EPT_DISABLED ||
1402 (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER &&
1403 sched_smt_active())) {
1404 return sprintf(buf, "%s; VMX: %s\n", L1TF_DEFAULT_MSG,
1405 l1tf_vmx_states[l1tf_vmx_mitigation]);
1406 }
1407
1408 return sprintf(buf, "%s; VMX: %s, SMT %s\n", L1TF_DEFAULT_MSG,
1409 l1tf_vmx_states[l1tf_vmx_mitigation],
1410 sched_smt_active() ? "vulnerable" : "disabled");
1411 }
1412
itlb_multihit_show_state(char * buf)1413 static ssize_t itlb_multihit_show_state(char *buf)
1414 {
1415 if (itlb_multihit_kvm_mitigation)
1416 return sprintf(buf, "KVM: Mitigation: Split huge pages\n");
1417 else
1418 return sprintf(buf, "KVM: Vulnerable\n");
1419 }
1420 #else
l1tf_show_state(char * buf)1421 static ssize_t l1tf_show_state(char *buf)
1422 {
1423 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
1424 }
1425
itlb_multihit_show_state(char * buf)1426 static ssize_t itlb_multihit_show_state(char *buf)
1427 {
1428 return sprintf(buf, "Processor vulnerable\n");
1429 }
1430 #endif
1431
mds_show_state(char * buf)1432 static ssize_t mds_show_state(char *buf)
1433 {
1434 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
1435 return sprintf(buf, "%s; SMT Host state unknown\n",
1436 mds_strings[mds_mitigation]);
1437 }
1438
1439 if (boot_cpu_has(X86_BUG_MSBDS_ONLY)) {
1440 return sprintf(buf, "%s; SMT %s\n", mds_strings[mds_mitigation],
1441 (mds_mitigation == MDS_MITIGATION_OFF ? "vulnerable" :
1442 sched_smt_active() ? "mitigated" : "disabled"));
1443 }
1444
1445 return sprintf(buf, "%s; SMT %s\n", mds_strings[mds_mitigation],
1446 sched_smt_active() ? "vulnerable" : "disabled");
1447 }
1448
tsx_async_abort_show_state(char * buf)1449 static ssize_t tsx_async_abort_show_state(char *buf)
1450 {
1451 if ((taa_mitigation == TAA_MITIGATION_TSX_DISABLED) ||
1452 (taa_mitigation == TAA_MITIGATION_OFF))
1453 return sprintf(buf, "%s\n", taa_strings[taa_mitigation]);
1454
1455 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
1456 return sprintf(buf, "%s; SMT Host state unknown\n",
1457 taa_strings[taa_mitigation]);
1458 }
1459
1460 return sprintf(buf, "%s; SMT %s\n", taa_strings[taa_mitigation],
1461 sched_smt_active() ? "vulnerable" : "disabled");
1462 }
1463
stibp_state(void)1464 static char *stibp_state(void)
1465 {
1466 if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
1467 return "";
1468
1469 switch (spectre_v2_user) {
1470 case SPECTRE_V2_USER_NONE:
1471 return ", STIBP: disabled";
1472 case SPECTRE_V2_USER_STRICT:
1473 return ", STIBP: forced";
1474 case SPECTRE_V2_USER_PRCTL:
1475 case SPECTRE_V2_USER_SECCOMP:
1476 if (static_key_enabled(&switch_to_cond_stibp))
1477 return ", STIBP: conditional";
1478 }
1479 return "";
1480 }
1481
ibpb_state(void)1482 static char *ibpb_state(void)
1483 {
1484 if (boot_cpu_has(X86_FEATURE_IBPB)) {
1485 if (static_key_enabled(&switch_mm_always_ibpb))
1486 return ", IBPB: always-on";
1487 if (static_key_enabled(&switch_mm_cond_ibpb))
1488 return ", IBPB: conditional";
1489 return ", IBPB: disabled";
1490 }
1491 return "";
1492 }
1493
cpu_show_common(struct device * dev,struct device_attribute * attr,char * buf,unsigned int bug)1494 static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr,
1495 char *buf, unsigned int bug)
1496 {
1497 if (!boot_cpu_has_bug(bug))
1498 return sprintf(buf, "Not affected\n");
1499
1500 switch (bug) {
1501 case X86_BUG_CPU_MELTDOWN:
1502 if (boot_cpu_has(X86_FEATURE_PTI))
1503 return sprintf(buf, "Mitigation: PTI\n");
1504
1505 break;
1506
1507 case X86_BUG_SPECTRE_V1:
1508 return sprintf(buf, "%s\n", spectre_v1_strings[spectre_v1_mitigation]);
1509
1510 case X86_BUG_SPECTRE_V2:
1511 return sprintf(buf, "%s%s%s%s%s%s\n", spectre_v2_strings[spectre_v2_enabled],
1512 ibpb_state(),
1513 boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "",
1514 stibp_state(),
1515 boot_cpu_has(X86_FEATURE_RSB_CTXSW) ? ", RSB filling" : "",
1516 spectre_v2_module_string());
1517
1518 case X86_BUG_SPEC_STORE_BYPASS:
1519 return sprintf(buf, "%s\n", ssb_strings[ssb_mode]);
1520
1521 case X86_BUG_L1TF:
1522 if (boot_cpu_has(X86_FEATURE_L1TF_PTEINV))
1523 return l1tf_show_state(buf);
1524 break;
1525
1526 case X86_BUG_MDS:
1527 return mds_show_state(buf);
1528
1529 case X86_BUG_TAA:
1530 return tsx_async_abort_show_state(buf);
1531
1532 case X86_BUG_ITLB_MULTIHIT:
1533 return itlb_multihit_show_state(buf);
1534
1535 default:
1536 break;
1537 }
1538
1539 return sprintf(buf, "Vulnerable\n");
1540 }
1541
cpu_show_meltdown(struct device * dev,struct device_attribute * attr,char * buf)1542 ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
1543 {
1544 return cpu_show_common(dev, attr, buf, X86_BUG_CPU_MELTDOWN);
1545 }
1546
cpu_show_spectre_v1(struct device * dev,struct device_attribute * attr,char * buf)1547 ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf)
1548 {
1549 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V1);
1550 }
1551
cpu_show_spectre_v2(struct device * dev,struct device_attribute * attr,char * buf)1552 ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf)
1553 {
1554 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V2);
1555 }
1556
cpu_show_spec_store_bypass(struct device * dev,struct device_attribute * attr,char * buf)1557 ssize_t cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf)
1558 {
1559 return cpu_show_common(dev, attr, buf, X86_BUG_SPEC_STORE_BYPASS);
1560 }
1561
cpu_show_l1tf(struct device * dev,struct device_attribute * attr,char * buf)1562 ssize_t cpu_show_l1tf(struct device *dev, struct device_attribute *attr, char *buf)
1563 {
1564 return cpu_show_common(dev, attr, buf, X86_BUG_L1TF);
1565 }
1566
cpu_show_mds(struct device * dev,struct device_attribute * attr,char * buf)1567 ssize_t cpu_show_mds(struct device *dev, struct device_attribute *attr, char *buf)
1568 {
1569 return cpu_show_common(dev, attr, buf, X86_BUG_MDS);
1570 }
1571
cpu_show_tsx_async_abort(struct device * dev,struct device_attribute * attr,char * buf)1572 ssize_t cpu_show_tsx_async_abort(struct device *dev, struct device_attribute *attr, char *buf)
1573 {
1574 return cpu_show_common(dev, attr, buf, X86_BUG_TAA);
1575 }
1576
cpu_show_itlb_multihit(struct device * dev,struct device_attribute * attr,char * buf)1577 ssize_t cpu_show_itlb_multihit(struct device *dev, struct device_attribute *attr, char *buf)
1578 {
1579 return cpu_show_common(dev, attr, buf, X86_BUG_ITLB_MULTIHIT);
1580 }
1581 #endif
1582