]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/x86/kernel/cpu/bugs.c
x86/bugs: Add AMD's SPEC_CTRL MSR usage
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / cpu / bugs.c
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
18 #include <asm/spec-ctrl.h>
19 #include <asm/cmdline.h>
20 #include <asm/bugs.h>
21 #include <asm/processor.h>
22 #include <asm/processor-flags.h>
23 #include <asm/fpu/internal.h>
24 #include <asm/msr.h>
25 #include <asm/vmx.h>
26 #include <asm/paravirt.h>
27 #include <asm/alternative.h>
28 #include <asm/pgtable.h>
29 #include <asm/set_memory.h>
30 #include <asm/intel-family.h>
31 #include <asm/e820/api.h>
32
33 static void __init spectre_v2_select_mitigation(void);
34 static void __init ssb_select_mitigation(void);
35 static void __init l1tf_select_mitigation(void);
36
37 /*
38 * Our boot-time value of the SPEC_CTRL MSR. We read it once so that any
39 * writes to SPEC_CTRL contain whatever reserved bits have been set.
40 */
41 u64 __ro_after_init x86_spec_ctrl_base;
42 EXPORT_SYMBOL_GPL(x86_spec_ctrl_base);
43
44 /*
45 * The vendor and possibly platform specific bits which can be modified in
46 * x86_spec_ctrl_base.
47 */
48 static u64 __ro_after_init x86_spec_ctrl_mask = SPEC_CTRL_IBRS;
49
50 /*
51 * AMD specific MSR info for Speculative Store Bypass control.
52 * x86_amd_ls_cfg_ssbd_mask is initialized in identify_boot_cpu().
53 */
54 u64 __ro_after_init x86_amd_ls_cfg_base;
55 u64 __ro_after_init x86_amd_ls_cfg_ssbd_mask;
56
57 void __init check_bugs(void)
58 {
59 identify_boot_cpu();
60
61 /*
62 * identify_boot_cpu() initialized SMT support information, let the
63 * core code know.
64 */
65 cpu_smt_check_topology_early();
66
67 if (!IS_ENABLED(CONFIG_SMP)) {
68 pr_info("CPU: ");
69 print_cpu_info(&boot_cpu_data);
70 }
71
72 /*
73 * Read the SPEC_CTRL MSR to account for reserved bits which may
74 * have unknown values. AMD64_LS_CFG MSR is cached in the early AMD
75 * init code as it is not enumerated and depends on the family.
76 */
77 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
78 rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
79
80 /* Allow STIBP in MSR_SPEC_CTRL if supported */
81 if (boot_cpu_has(X86_FEATURE_STIBP))
82 x86_spec_ctrl_mask |= SPEC_CTRL_STIBP;
83
84 /* Select the proper spectre mitigation before patching alternatives */
85 spectre_v2_select_mitigation();
86
87 /*
88 * Select proper mitigation for any exposure to the Speculative Store
89 * Bypass vulnerability.
90 */
91 ssb_select_mitigation();
92
93 l1tf_select_mitigation();
94
95 #ifdef CONFIG_X86_32
96 /*
97 * Check whether we are able to run this kernel safely on SMP.
98 *
99 * - i386 is no longer supported.
100 * - In order to run on anything without a TSC, we need to be
101 * compiled for a i486.
102 */
103 if (boot_cpu_data.x86 < 4)
104 panic("Kernel requires i486+ for 'invlpg' and other features");
105
106 init_utsname()->machine[1] =
107 '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
108 alternative_instructions();
109
110 fpu__init_check_bugs();
111 #else /* CONFIG_X86_64 */
112 alternative_instructions();
113
114 /*
115 * Make sure the first 2MB area is not mapped by huge pages
116 * There are typically fixed size MTRRs in there and overlapping
117 * MTRRs into large pages causes slow downs.
118 *
119 * Right now we don't do that with gbpages because there seems
120 * very little benefit for that case.
121 */
122 if (!direct_gbpages)
123 set_memory_4k((unsigned long)__va(0), 1);
124 #endif
125 }
126
127 /* The kernel command line selection */
128 enum spectre_v2_mitigation_cmd {
129 SPECTRE_V2_CMD_NONE,
130 SPECTRE_V2_CMD_AUTO,
131 SPECTRE_V2_CMD_FORCE,
132 SPECTRE_V2_CMD_RETPOLINE,
133 SPECTRE_V2_CMD_RETPOLINE_GENERIC,
134 SPECTRE_V2_CMD_RETPOLINE_AMD,
135 };
136
137 static const char *spectre_v2_strings[] = {
138 [SPECTRE_V2_NONE] = "Vulnerable",
139 [SPECTRE_V2_RETPOLINE_MINIMAL] = "Vulnerable: Minimal generic ASM retpoline",
140 [SPECTRE_V2_RETPOLINE_MINIMAL_AMD] = "Vulnerable: Minimal AMD ASM retpoline",
141 [SPECTRE_V2_RETPOLINE_GENERIC] = "Mitigation: Full generic retpoline",
142 [SPECTRE_V2_RETPOLINE_AMD] = "Mitigation: Full AMD retpoline",
143 [SPECTRE_V2_IBRS_ENHANCED] = "Mitigation: Enhanced IBRS",
144 };
145
146 #undef pr_fmt
147 #define pr_fmt(fmt) "Spectre V2 : " fmt
148
149 static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init =
150 SPECTRE_V2_NONE;
151
152 void
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 hostval |= ssbd_tif_to_spec_ctrl(ti->flags);
171
172 if (hostval != guestval) {
173 msrval = setguest ? guestval : hostval;
174 wrmsrl(MSR_IA32_SPEC_CTRL, msrval);
175 }
176 }
177
178 /*
179 * If SSBD is not handled in MSR_SPEC_CTRL on AMD, update
180 * MSR_AMD64_L2_CFG or MSR_VIRT_SPEC_CTRL if supported.
181 */
182 if (!static_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
183 !static_cpu_has(X86_FEATURE_VIRT_SSBD))
184 return;
185
186 /*
187 * If the host has SSBD mitigation enabled, force it in the host's
188 * virtual MSR value. If its not permanently enabled, evaluate
189 * current's TIF_SSBD thread flag.
190 */
191 if (static_cpu_has(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE))
192 hostval = SPEC_CTRL_SSBD;
193 else
194 hostval = ssbd_tif_to_spec_ctrl(ti->flags);
195
196 /* Sanitize the guest value */
197 guestval = guest_virt_spec_ctrl & SPEC_CTRL_SSBD;
198
199 if (hostval != guestval) {
200 unsigned long tif;
201
202 tif = setguest ? ssbd_spec_ctrl_to_tif(guestval) :
203 ssbd_spec_ctrl_to_tif(hostval);
204
205 speculative_store_bypass_update(tif);
206 }
207 }
208 EXPORT_SYMBOL_GPL(x86_virt_spec_ctrl);
209
210 static void x86_amd_ssb_disable(void)
211 {
212 u64 msrval = x86_amd_ls_cfg_base | x86_amd_ls_cfg_ssbd_mask;
213
214 if (boot_cpu_has(X86_FEATURE_VIRT_SSBD))
215 wrmsrl(MSR_AMD64_VIRT_SPEC_CTRL, SPEC_CTRL_SSBD);
216 else if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD))
217 wrmsrl(MSR_AMD64_LS_CFG, msrval);
218 }
219
220 #ifdef RETPOLINE
221 static bool spectre_v2_bad_module;
222
223 bool retpoline_module_ok(bool has_retpoline)
224 {
225 if (spectre_v2_enabled == SPECTRE_V2_NONE || has_retpoline)
226 return true;
227
228 pr_err("System may be vulnerable to spectre v2\n");
229 spectre_v2_bad_module = true;
230 return false;
231 }
232
233 static inline const char *spectre_v2_module_string(void)
234 {
235 return spectre_v2_bad_module ? " - vulnerable module loaded" : "";
236 }
237 #else
238 static inline const char *spectre_v2_module_string(void) { return ""; }
239 #endif
240
241 static void __init spec2_print_if_insecure(const char *reason)
242 {
243 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
244 pr_info("%s selected on command line.\n", reason);
245 }
246
247 static void __init spec2_print_if_secure(const char *reason)
248 {
249 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
250 pr_info("%s selected on command line.\n", reason);
251 }
252
253 static inline bool retp_compiler(void)
254 {
255 return __is_defined(RETPOLINE);
256 }
257
258 static inline bool match_option(const char *arg, int arglen, const char *opt)
259 {
260 int len = strlen(opt);
261
262 return len == arglen && !strncmp(arg, opt, len);
263 }
264
265 static const struct {
266 const char *option;
267 enum spectre_v2_mitigation_cmd cmd;
268 bool secure;
269 } mitigation_options[] = {
270 { "off", SPECTRE_V2_CMD_NONE, false },
271 { "on", SPECTRE_V2_CMD_FORCE, true },
272 { "retpoline", SPECTRE_V2_CMD_RETPOLINE, false },
273 { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_AMD, false },
274 { "retpoline,generic", SPECTRE_V2_CMD_RETPOLINE_GENERIC, false },
275 { "auto", SPECTRE_V2_CMD_AUTO, false },
276 };
277
278 static enum spectre_v2_mitigation_cmd __init spectre_v2_parse_cmdline(void)
279 {
280 char arg[20];
281 int ret, i;
282 enum spectre_v2_mitigation_cmd cmd = SPECTRE_V2_CMD_AUTO;
283
284 if (cmdline_find_option_bool(boot_command_line, "nospectre_v2"))
285 return SPECTRE_V2_CMD_NONE;
286 else {
287 ret = cmdline_find_option(boot_command_line, "spectre_v2", arg, sizeof(arg));
288 if (ret < 0)
289 return SPECTRE_V2_CMD_AUTO;
290
291 for (i = 0; i < ARRAY_SIZE(mitigation_options); i++) {
292 if (!match_option(arg, ret, mitigation_options[i].option))
293 continue;
294 cmd = mitigation_options[i].cmd;
295 break;
296 }
297
298 if (i >= ARRAY_SIZE(mitigation_options)) {
299 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
300 return SPECTRE_V2_CMD_AUTO;
301 }
302 }
303
304 if ((cmd == SPECTRE_V2_CMD_RETPOLINE ||
305 cmd == SPECTRE_V2_CMD_RETPOLINE_AMD ||
306 cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC) &&
307 !IS_ENABLED(CONFIG_RETPOLINE)) {
308 pr_err("%s selected but not compiled in. Switching to AUTO select\n", mitigation_options[i].option);
309 return SPECTRE_V2_CMD_AUTO;
310 }
311
312 if (cmd == SPECTRE_V2_CMD_RETPOLINE_AMD &&
313 boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
314 pr_err("retpoline,amd selected but CPU is not AMD. Switching to AUTO select\n");
315 return SPECTRE_V2_CMD_AUTO;
316 }
317
318 if (mitigation_options[i].secure)
319 spec2_print_if_secure(mitigation_options[i].option);
320 else
321 spec2_print_if_insecure(mitigation_options[i].option);
322
323 return cmd;
324 }
325
326 static void __init spectre_v2_select_mitigation(void)
327 {
328 enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline();
329 enum spectre_v2_mitigation mode = SPECTRE_V2_NONE;
330
331 /*
332 * If the CPU is not affected and the command line mode is NONE or AUTO
333 * then nothing to do.
334 */
335 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2) &&
336 (cmd == SPECTRE_V2_CMD_NONE || cmd == SPECTRE_V2_CMD_AUTO))
337 return;
338
339 switch (cmd) {
340 case SPECTRE_V2_CMD_NONE:
341 return;
342
343 case SPECTRE_V2_CMD_FORCE:
344 case SPECTRE_V2_CMD_AUTO:
345 if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) {
346 mode = SPECTRE_V2_IBRS_ENHANCED;
347 /* Force it so VMEXIT will restore correctly */
348 x86_spec_ctrl_base |= SPEC_CTRL_IBRS;
349 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
350 goto specv2_set_mode;
351 }
352 if (IS_ENABLED(CONFIG_RETPOLINE))
353 goto retpoline_auto;
354 break;
355 case SPECTRE_V2_CMD_RETPOLINE_AMD:
356 if (IS_ENABLED(CONFIG_RETPOLINE))
357 goto retpoline_amd;
358 break;
359 case SPECTRE_V2_CMD_RETPOLINE_GENERIC:
360 if (IS_ENABLED(CONFIG_RETPOLINE))
361 goto retpoline_generic;
362 break;
363 case SPECTRE_V2_CMD_RETPOLINE:
364 if (IS_ENABLED(CONFIG_RETPOLINE))
365 goto retpoline_auto;
366 break;
367 }
368 pr_err("Spectre mitigation: kernel not compiled with retpoline; no mitigation available!");
369 return;
370
371 retpoline_auto:
372 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) {
373 retpoline_amd:
374 if (!boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) {
375 pr_err("Spectre mitigation: LFENCE not serializing, switching to generic retpoline\n");
376 goto retpoline_generic;
377 }
378 mode = retp_compiler() ? SPECTRE_V2_RETPOLINE_AMD :
379 SPECTRE_V2_RETPOLINE_MINIMAL_AMD;
380 setup_force_cpu_cap(X86_FEATURE_RETPOLINE_AMD);
381 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
382 } else {
383 retpoline_generic:
384 mode = retp_compiler() ? SPECTRE_V2_RETPOLINE_GENERIC :
385 SPECTRE_V2_RETPOLINE_MINIMAL;
386 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
387 }
388
389 specv2_set_mode:
390 spectre_v2_enabled = mode;
391 pr_info("%s\n", spectre_v2_strings[mode]);
392
393 /*
394 * If spectre v2 protection has been enabled, unconditionally fill
395 * RSB during a context switch; this protects against two independent
396 * issues:
397 *
398 * - RSB underflow (and switch to BTB) on Skylake+
399 * - SpectreRSB variant of spectre v2 on X86_BUG_SPECTRE_V2 CPUs
400 */
401 setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW);
402 pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n");
403
404 /* Initialize Indirect Branch Prediction Barrier if supported */
405 if (boot_cpu_has(X86_FEATURE_IBPB)) {
406 setup_force_cpu_cap(X86_FEATURE_USE_IBPB);
407 pr_info("Spectre v2 mitigation: Enabling Indirect Branch Prediction Barrier\n");
408 }
409
410 /*
411 * Retpoline means the kernel is safe because it has no indirect
412 * branches. Enhanced IBRS protects firmware too, so, enable restricted
413 * speculation around firmware calls only when Enhanced IBRS isn't
414 * supported.
415 *
416 * Use "mode" to check Enhanced IBRS instead of boot_cpu_has(), because
417 * the user might select retpoline on the kernel command line and if
418 * the CPU supports Enhanced IBRS, kernel might un-intentionally not
419 * enable IBRS around firmware calls.
420 */
421 if (boot_cpu_has(X86_FEATURE_IBRS) && mode != SPECTRE_V2_IBRS_ENHANCED) {
422 setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW);
423 pr_info("Enabling Restricted Speculation for firmware calls\n");
424 }
425 }
426
427 #undef pr_fmt
428 #define pr_fmt(fmt) "Speculative Store Bypass: " fmt
429
430 static enum ssb_mitigation ssb_mode __ro_after_init = SPEC_STORE_BYPASS_NONE;
431
432 /* The kernel command line selection */
433 enum ssb_mitigation_cmd {
434 SPEC_STORE_BYPASS_CMD_NONE,
435 SPEC_STORE_BYPASS_CMD_AUTO,
436 SPEC_STORE_BYPASS_CMD_ON,
437 SPEC_STORE_BYPASS_CMD_PRCTL,
438 SPEC_STORE_BYPASS_CMD_SECCOMP,
439 };
440
441 static const char *ssb_strings[] = {
442 [SPEC_STORE_BYPASS_NONE] = "Vulnerable",
443 [SPEC_STORE_BYPASS_DISABLE] = "Mitigation: Speculative Store Bypass disabled",
444 [SPEC_STORE_BYPASS_PRCTL] = "Mitigation: Speculative Store Bypass disabled via prctl",
445 [SPEC_STORE_BYPASS_SECCOMP] = "Mitigation: Speculative Store Bypass disabled via prctl and seccomp",
446 };
447
448 static const struct {
449 const char *option;
450 enum ssb_mitigation_cmd cmd;
451 } ssb_mitigation_options[] = {
452 { "auto", SPEC_STORE_BYPASS_CMD_AUTO }, /* Platform decides */
453 { "on", SPEC_STORE_BYPASS_CMD_ON }, /* Disable Speculative Store Bypass */
454 { "off", SPEC_STORE_BYPASS_CMD_NONE }, /* Don't touch Speculative Store Bypass */
455 { "prctl", SPEC_STORE_BYPASS_CMD_PRCTL }, /* Disable Speculative Store Bypass via prctl */
456 { "seccomp", SPEC_STORE_BYPASS_CMD_SECCOMP }, /* Disable Speculative Store Bypass via prctl and seccomp */
457 };
458
459 static enum ssb_mitigation_cmd __init ssb_parse_cmdline(void)
460 {
461 enum ssb_mitigation_cmd cmd = SPEC_STORE_BYPASS_CMD_AUTO;
462 char arg[20];
463 int ret, i;
464
465 if (cmdline_find_option_bool(boot_command_line, "nospec_store_bypass_disable")) {
466 return SPEC_STORE_BYPASS_CMD_NONE;
467 } else {
468 ret = cmdline_find_option(boot_command_line, "spec_store_bypass_disable",
469 arg, sizeof(arg));
470 if (ret < 0)
471 return SPEC_STORE_BYPASS_CMD_AUTO;
472
473 for (i = 0; i < ARRAY_SIZE(ssb_mitigation_options); i++) {
474 if (!match_option(arg, ret, ssb_mitigation_options[i].option))
475 continue;
476
477 cmd = ssb_mitigation_options[i].cmd;
478 break;
479 }
480
481 if (i >= ARRAY_SIZE(ssb_mitigation_options)) {
482 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
483 return SPEC_STORE_BYPASS_CMD_AUTO;
484 }
485 }
486
487 return cmd;
488 }
489
490 static enum ssb_mitigation __init __ssb_select_mitigation(void)
491 {
492 enum ssb_mitigation mode = SPEC_STORE_BYPASS_NONE;
493 enum ssb_mitigation_cmd cmd;
494
495 if (!boot_cpu_has(X86_FEATURE_SSBD))
496 return mode;
497
498 cmd = ssb_parse_cmdline();
499 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS) &&
500 (cmd == SPEC_STORE_BYPASS_CMD_NONE ||
501 cmd == SPEC_STORE_BYPASS_CMD_AUTO))
502 return mode;
503
504 switch (cmd) {
505 case SPEC_STORE_BYPASS_CMD_AUTO:
506 case SPEC_STORE_BYPASS_CMD_SECCOMP:
507 /*
508 * Choose prctl+seccomp as the default mode if seccomp is
509 * enabled.
510 */
511 if (IS_ENABLED(CONFIG_SECCOMP))
512 mode = SPEC_STORE_BYPASS_SECCOMP;
513 else
514 mode = SPEC_STORE_BYPASS_PRCTL;
515 break;
516 case SPEC_STORE_BYPASS_CMD_ON:
517 mode = SPEC_STORE_BYPASS_DISABLE;
518 break;
519 case SPEC_STORE_BYPASS_CMD_PRCTL:
520 mode = SPEC_STORE_BYPASS_PRCTL;
521 break;
522 case SPEC_STORE_BYPASS_CMD_NONE:
523 break;
524 }
525
526 /*
527 * We have three CPU feature flags that are in play here:
528 * - X86_BUG_SPEC_STORE_BYPASS - CPU is susceptible.
529 * - X86_FEATURE_SSBD - CPU is able to turn off speculative store bypass
530 * - X86_FEATURE_SPEC_STORE_BYPASS_DISABLE - engage the mitigation
531 */
532 if (mode == SPEC_STORE_BYPASS_DISABLE) {
533 setup_force_cpu_cap(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE);
534 /*
535 * Intel uses the SPEC CTRL MSR Bit(2) for this, while AMD may
536 * use a completely different MSR and bit dependent on family.
537 */
538 switch (boot_cpu_data.x86_vendor) {
539 case X86_VENDOR_INTEL:
540 case X86_VENDOR_AMD:
541 if (!static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) {
542 x86_amd_ssb_disable();
543 break;
544 }
545 x86_spec_ctrl_base |= SPEC_CTRL_SSBD;
546 x86_spec_ctrl_mask |= SPEC_CTRL_SSBD;
547 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
548 break;
549 }
550 }
551
552 return mode;
553 }
554
555 static void ssb_select_mitigation(void)
556 {
557 ssb_mode = __ssb_select_mitigation();
558
559 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
560 pr_info("%s\n", ssb_strings[ssb_mode]);
561 }
562
563 #undef pr_fmt
564 #define pr_fmt(fmt) "Speculation prctl: " fmt
565
566 static int ssb_prctl_set(struct task_struct *task, unsigned long ctrl)
567 {
568 bool update;
569
570 if (ssb_mode != SPEC_STORE_BYPASS_PRCTL &&
571 ssb_mode != SPEC_STORE_BYPASS_SECCOMP)
572 return -ENXIO;
573
574 switch (ctrl) {
575 case PR_SPEC_ENABLE:
576 /* If speculation is force disabled, enable is not allowed */
577 if (task_spec_ssb_force_disable(task))
578 return -EPERM;
579 task_clear_spec_ssb_disable(task);
580 update = test_and_clear_tsk_thread_flag(task, TIF_SSBD);
581 break;
582 case PR_SPEC_DISABLE:
583 task_set_spec_ssb_disable(task);
584 update = !test_and_set_tsk_thread_flag(task, TIF_SSBD);
585 break;
586 case PR_SPEC_FORCE_DISABLE:
587 task_set_spec_ssb_disable(task);
588 task_set_spec_ssb_force_disable(task);
589 update = !test_and_set_tsk_thread_flag(task, TIF_SSBD);
590 break;
591 default:
592 return -ERANGE;
593 }
594
595 /*
596 * If being set on non-current task, delay setting the CPU
597 * mitigation until it is next scheduled.
598 */
599 if (task == current && update)
600 speculative_store_bypass_update_current();
601
602 return 0;
603 }
604
605 int arch_prctl_spec_ctrl_set(struct task_struct *task, unsigned long which,
606 unsigned long ctrl)
607 {
608 switch (which) {
609 case PR_SPEC_STORE_BYPASS:
610 return ssb_prctl_set(task, ctrl);
611 default:
612 return -ENODEV;
613 }
614 }
615
616 #ifdef CONFIG_SECCOMP
617 void arch_seccomp_spec_mitigate(struct task_struct *task)
618 {
619 if (ssb_mode == SPEC_STORE_BYPASS_SECCOMP)
620 ssb_prctl_set(task, PR_SPEC_FORCE_DISABLE);
621 }
622 #endif
623
624 static int ssb_prctl_get(struct task_struct *task)
625 {
626 switch (ssb_mode) {
627 case SPEC_STORE_BYPASS_DISABLE:
628 return PR_SPEC_DISABLE;
629 case SPEC_STORE_BYPASS_SECCOMP:
630 case SPEC_STORE_BYPASS_PRCTL:
631 if (task_spec_ssb_force_disable(task))
632 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
633 if (task_spec_ssb_disable(task))
634 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
635 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
636 default:
637 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
638 return PR_SPEC_ENABLE;
639 return PR_SPEC_NOT_AFFECTED;
640 }
641 }
642
643 int arch_prctl_spec_ctrl_get(struct task_struct *task, unsigned long which)
644 {
645 switch (which) {
646 case PR_SPEC_STORE_BYPASS:
647 return ssb_prctl_get(task);
648 default:
649 return -ENODEV;
650 }
651 }
652
653 void x86_spec_ctrl_setup_ap(void)
654 {
655 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
656 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
657
658 if (ssb_mode == SPEC_STORE_BYPASS_DISABLE)
659 x86_amd_ssb_disable();
660 }
661
662 #undef pr_fmt
663 #define pr_fmt(fmt) "L1TF: " fmt
664
665 /* Default mitigation for L1TF-affected CPUs */
666 enum l1tf_mitigations l1tf_mitigation __ro_after_init = L1TF_MITIGATION_FLUSH;
667 #if IS_ENABLED(CONFIG_KVM_INTEL)
668 EXPORT_SYMBOL_GPL(l1tf_mitigation);
669
670 enum vmx_l1d_flush_state l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
671 EXPORT_SYMBOL_GPL(l1tf_vmx_mitigation);
672 #endif
673
674 /*
675 * These CPUs all support 44bits physical address space internally in the
676 * cache but CPUID can report a smaller number of physical address bits.
677 *
678 * The L1TF mitigation uses the top most address bit for the inversion of
679 * non present PTEs. When the installed memory reaches into the top most
680 * address bit due to memory holes, which has been observed on machines
681 * which report 36bits physical address bits and have 32G RAM installed,
682 * then the mitigation range check in l1tf_select_mitigation() triggers.
683 * This is a false positive because the mitigation is still possible due to
684 * the fact that the cache uses 44bit internally. Use the cache bits
685 * instead of the reported physical bits and adjust them on the affected
686 * machines to 44bit if the reported bits are less than 44.
687 */
688 static void override_cache_bits(struct cpuinfo_x86 *c)
689 {
690 if (c->x86 != 6)
691 return;
692
693 switch (c->x86_model) {
694 case INTEL_FAM6_NEHALEM:
695 case INTEL_FAM6_WESTMERE:
696 case INTEL_FAM6_SANDYBRIDGE:
697 case INTEL_FAM6_IVYBRIDGE:
698 case INTEL_FAM6_HASWELL_CORE:
699 case INTEL_FAM6_HASWELL_ULT:
700 case INTEL_FAM6_HASWELL_GT3E:
701 case INTEL_FAM6_BROADWELL_CORE:
702 case INTEL_FAM6_BROADWELL_GT3E:
703 case INTEL_FAM6_SKYLAKE_MOBILE:
704 case INTEL_FAM6_SKYLAKE_DESKTOP:
705 case INTEL_FAM6_KABYLAKE_MOBILE:
706 case INTEL_FAM6_KABYLAKE_DESKTOP:
707 if (c->x86_cache_bits < 44)
708 c->x86_cache_bits = 44;
709 break;
710 }
711 }
712
713 static void __init l1tf_select_mitigation(void)
714 {
715 u64 half_pa;
716
717 if (!boot_cpu_has_bug(X86_BUG_L1TF))
718 return;
719
720 override_cache_bits(&boot_cpu_data);
721
722 switch (l1tf_mitigation) {
723 case L1TF_MITIGATION_OFF:
724 case L1TF_MITIGATION_FLUSH_NOWARN:
725 case L1TF_MITIGATION_FLUSH:
726 break;
727 case L1TF_MITIGATION_FLUSH_NOSMT:
728 case L1TF_MITIGATION_FULL:
729 cpu_smt_disable(false);
730 break;
731 case L1TF_MITIGATION_FULL_FORCE:
732 cpu_smt_disable(true);
733 break;
734 }
735
736 #if CONFIG_PGTABLE_LEVELS == 2
737 pr_warn("Kernel not compiled for PAE. No mitigation for L1TF\n");
738 return;
739 #endif
740
741 half_pa = (u64)l1tf_pfn_limit() << PAGE_SHIFT;
742 if (e820__mapped_any(half_pa, ULLONG_MAX - half_pa, E820_TYPE_RAM)) {
743 pr_warn("System has more than MAX_PA/2 memory. L1TF mitigation not effective.\n");
744 return;
745 }
746
747 setup_force_cpu_cap(X86_FEATURE_L1TF_PTEINV);
748 }
749
750 static int __init l1tf_cmdline(char *str)
751 {
752 if (!boot_cpu_has_bug(X86_BUG_L1TF))
753 return 0;
754
755 if (!str)
756 return -EINVAL;
757
758 if (!strcmp(str, "off"))
759 l1tf_mitigation = L1TF_MITIGATION_OFF;
760 else if (!strcmp(str, "flush,nowarn"))
761 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOWARN;
762 else if (!strcmp(str, "flush"))
763 l1tf_mitigation = L1TF_MITIGATION_FLUSH;
764 else if (!strcmp(str, "flush,nosmt"))
765 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
766 else if (!strcmp(str, "full"))
767 l1tf_mitigation = L1TF_MITIGATION_FULL;
768 else if (!strcmp(str, "full,force"))
769 l1tf_mitigation = L1TF_MITIGATION_FULL_FORCE;
770
771 return 0;
772 }
773 early_param("l1tf", l1tf_cmdline);
774
775 #undef pr_fmt
776
777 #ifdef CONFIG_SYSFS
778
779 #define L1TF_DEFAULT_MSG "Mitigation: PTE Inversion"
780
781 #if IS_ENABLED(CONFIG_KVM_INTEL)
782 static const char *l1tf_vmx_states[] = {
783 [VMENTER_L1D_FLUSH_AUTO] = "auto",
784 [VMENTER_L1D_FLUSH_NEVER] = "vulnerable",
785 [VMENTER_L1D_FLUSH_COND] = "conditional cache flushes",
786 [VMENTER_L1D_FLUSH_ALWAYS] = "cache flushes",
787 [VMENTER_L1D_FLUSH_EPT_DISABLED] = "EPT disabled",
788 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = "flush not necessary"
789 };
790
791 static ssize_t l1tf_show_state(char *buf)
792 {
793 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO)
794 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
795
796 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_EPT_DISABLED ||
797 (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER &&
798 cpu_smt_control == CPU_SMT_ENABLED))
799 return sprintf(buf, "%s; VMX: %s\n", L1TF_DEFAULT_MSG,
800 l1tf_vmx_states[l1tf_vmx_mitigation]);
801
802 return sprintf(buf, "%s; VMX: %s, SMT %s\n", L1TF_DEFAULT_MSG,
803 l1tf_vmx_states[l1tf_vmx_mitigation],
804 cpu_smt_control == CPU_SMT_ENABLED ? "vulnerable" : "disabled");
805 }
806 #else
807 static ssize_t l1tf_show_state(char *buf)
808 {
809 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
810 }
811 #endif
812
813 static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr,
814 char *buf, unsigned int bug)
815 {
816 if (!boot_cpu_has_bug(bug))
817 return sprintf(buf, "Not affected\n");
818
819 switch (bug) {
820 case X86_BUG_CPU_MELTDOWN:
821 if (boot_cpu_has(X86_FEATURE_PTI))
822 return sprintf(buf, "Mitigation: PTI\n");
823
824 break;
825
826 case X86_BUG_SPECTRE_V1:
827 return sprintf(buf, "Mitigation: __user pointer sanitization\n");
828
829 case X86_BUG_SPECTRE_V2:
830 return sprintf(buf, "%s%s%s%s\n", spectre_v2_strings[spectre_v2_enabled],
831 boot_cpu_has(X86_FEATURE_USE_IBPB) ? ", IBPB" : "",
832 boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "",
833 spectre_v2_module_string());
834
835 case X86_BUG_SPEC_STORE_BYPASS:
836 return sprintf(buf, "%s\n", ssb_strings[ssb_mode]);
837
838 case X86_BUG_L1TF:
839 if (boot_cpu_has(X86_FEATURE_L1TF_PTEINV))
840 return l1tf_show_state(buf);
841 break;
842 default:
843 break;
844 }
845
846 return sprintf(buf, "Vulnerable\n");
847 }
848
849 ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
850 {
851 return cpu_show_common(dev, attr, buf, X86_BUG_CPU_MELTDOWN);
852 }
853
854 ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf)
855 {
856 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V1);
857 }
858
859 ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf)
860 {
861 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V2);
862 }
863
864 ssize_t cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf)
865 {
866 return cpu_show_common(dev, attr, buf, X86_BUG_SPEC_STORE_BYPASS);
867 }
868
869 ssize_t cpu_show_l1tf(struct device *dev, struct device_attribute *attr, char *buf)
870 {
871 return cpu_show_common(dev, attr, buf, X86_BUG_L1TF);
872 }
873 #endif