]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kernel/cpu/bugs.c
x86/mm/KASLR: Fix the size of the direct mapping section
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kernel / cpu / bugs.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1353ebb4 2/*
1353ebb4
JF
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>
61dc0f55 13#include <linux/cpu.h>
caf7501a 14#include <linux/module.h>
a73ec77e
TG
15#include <linux/nospec.h>
16#include <linux/prctl.h>
a74cfffb 17#include <linux/sched/smt.h>
da285121 18
28a27752 19#include <asm/spec-ctrl.h>
da285121 20#include <asm/cmdline.h>
91eb1b79 21#include <asm/bugs.h>
1353ebb4 22#include <asm/processor.h>
7ebad705 23#include <asm/processor-flags.h>
952f07ec 24#include <asm/fpu/internal.h>
1353ebb4 25#include <asm/msr.h>
72c6d2db 26#include <asm/vmx.h>
1353ebb4
JF
27#include <asm/paravirt.h>
28#include <asm/alternative.h>
62a67e12 29#include <asm/pgtable.h>
d1163651 30#include <asm/set_memory.h>
c995efd5 31#include <asm/intel-family.h>
17dbca11 32#include <asm/e820/api.h>
6cb2b08f 33#include <asm/hypervisor.h>
1353ebb4 34
ad3bc25a
BP
35#include "cpu.h"
36
da285121 37static void __init spectre_v2_select_mitigation(void);
24f7fc83 38static void __init ssb_select_mitigation(void);
17dbca11 39static void __init l1tf_select_mitigation(void);
da285121 40
53c613fe
JK
41/* The base value of the SPEC_CTRL MSR that always has to be preserved. */
42u64 x86_spec_ctrl_base;
fa8ac498 43EXPORT_SYMBOL_GPL(x86_spec_ctrl_base);
53c613fe 44static DEFINE_MUTEX(spec_ctrl_mutex);
1b86883c 45
1115a859
KRW
46/*
47 * The vendor and possibly platform specific bits which can be modified in
48 * x86_spec_ctrl_base.
49 */
be6fcb54 50static u64 __ro_after_init x86_spec_ctrl_mask = SPEC_CTRL_IBRS;
1115a859 51
764f3c21
KRW
52/*
53 * AMD specific MSR info for Speculative Store Bypass control.
9f65fb29 54 * x86_amd_ls_cfg_ssbd_mask is initialized in identify_boot_cpu().
764f3c21
KRW
55 */
56u64 __ro_after_init x86_amd_ls_cfg_base;
9f65fb29 57u64 __ro_after_init x86_amd_ls_cfg_ssbd_mask;
764f3c21 58
aa77bfb3 59/* Control conditional STIBP in switch_to() */
fa1202ef 60DEFINE_STATIC_KEY_FALSE(switch_to_cond_stibp);
4c71a2b6
TG
61/* Control conditional IBPB in switch_mm() */
62DEFINE_STATIC_KEY_FALSE(switch_mm_cond_ibpb);
63/* Control unconditional IBPB in switch_mm() */
64DEFINE_STATIC_KEY_FALSE(switch_mm_always_ibpb);
fa1202ef 65
1353ebb4
JF
66void __init check_bugs(void)
67{
68 identify_boot_cpu();
55a36b65 69
fee0aede
TG
70 /*
71 * identify_boot_cpu() initialized SMT support information, let the
72 * core code know.
73 */
b284909a 74 cpu_smt_check_topology();
fee0aede 75
62a67e12
BP
76 if (!IS_ENABLED(CONFIG_SMP)) {
77 pr_info("CPU: ");
78 print_cpu_info(&boot_cpu_data);
79 }
80
1b86883c
KRW
81 /*
82 * Read the SPEC_CTRL MSR to account for reserved bits which may
764f3c21
KRW
83 * have unknown values. AMD64_LS_CFG MSR is cached in the early AMD
84 * init code as it is not enumerated and depends on the family.
1b86883c 85 */
7eb8956a 86 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
1b86883c
KRW
87 rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
88
be6fcb54
TG
89 /* Allow STIBP in MSR_SPEC_CTRL if supported */
90 if (boot_cpu_has(X86_FEATURE_STIBP))
91 x86_spec_ctrl_mask |= SPEC_CTRL_STIBP;
92
da285121
DW
93 /* Select the proper spectre mitigation before patching alternatives */
94 spectre_v2_select_mitigation();
95
24f7fc83
KRW
96 /*
97 * Select proper mitigation for any exposure to the Speculative Store
98 * Bypass vulnerability.
99 */
100 ssb_select_mitigation();
101
17dbca11
AK
102 l1tf_select_mitigation();
103
62a67e12 104#ifdef CONFIG_X86_32
55a36b65
BP
105 /*
106 * Check whether we are able to run this kernel safely on SMP.
107 *
108 * - i386 is no longer supported.
109 * - In order to run on anything without a TSC, we need to be
110 * compiled for a i486.
111 */
112 if (boot_cpu_data.x86 < 4)
113 panic("Kernel requires i486+ for 'invlpg' and other features");
114
bfe4bb15
MV
115 init_utsname()->machine[1] =
116 '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
1353ebb4 117 alternative_instructions();
304bceda 118
4d164092 119 fpu__init_check_bugs();
62a67e12
BP
120#else /* CONFIG_X86_64 */
121 alternative_instructions();
122
123 /*
124 * Make sure the first 2MB area is not mapped by huge pages
125 * There are typically fixed size MTRRs in there and overlapping
126 * MTRRs into large pages causes slow downs.
127 *
128 * Right now we don't do that with gbpages because there seems
129 * very little benefit for that case.
130 */
131 if (!direct_gbpages)
132 set_memory_4k((unsigned long)__va(0), 1);
133#endif
1353ebb4 134}
61dc0f55 135
cc69b349
BP
136void
137x86_virt_spec_ctrl(u64 guest_spec_ctrl, u64 guest_virt_spec_ctrl, bool setguest)
5cf68754 138{
be6fcb54 139 u64 msrval, guestval, hostval = x86_spec_ctrl_base;
cc69b349 140 struct thread_info *ti = current_thread_info();
885f82bf 141
7eb8956a 142 /* Is MSR_SPEC_CTRL implemented ? */
cc69b349 143 if (static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) {
be6fcb54
TG
144 /*
145 * Restrict guest_spec_ctrl to supported values. Clear the
146 * modifiable bits in the host base value and or the
147 * modifiable bits from the guest value.
148 */
149 guestval = hostval & ~x86_spec_ctrl_mask;
150 guestval |= guest_spec_ctrl & x86_spec_ctrl_mask;
151
cc69b349 152 /* SSBD controlled in MSR_SPEC_CTRL */
612bc3b3
TL
153 if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) ||
154 static_cpu_has(X86_FEATURE_AMD_SSBD))
be6fcb54 155 hostval |= ssbd_tif_to_spec_ctrl(ti->flags);
cc69b349 156
5bfbe3ad
TC
157 /* Conditional STIBP enabled? */
158 if (static_branch_unlikely(&switch_to_cond_stibp))
159 hostval |= stibp_tif_to_spec_ctrl(ti->flags);
160
be6fcb54
TG
161 if (hostval != guestval) {
162 msrval = setguest ? guestval : hostval;
163 wrmsrl(MSR_IA32_SPEC_CTRL, msrval);
cc69b349
BP
164 }
165 }
47c61b39
TG
166
167 /*
168 * If SSBD is not handled in MSR_SPEC_CTRL on AMD, update
169 * MSR_AMD64_L2_CFG or MSR_VIRT_SPEC_CTRL if supported.
170 */
171 if (!static_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
172 !static_cpu_has(X86_FEATURE_VIRT_SSBD))
173 return;
174
175 /*
176 * If the host has SSBD mitigation enabled, force it in the host's
177 * virtual MSR value. If its not permanently enabled, evaluate
178 * current's TIF_SSBD thread flag.
179 */
180 if (static_cpu_has(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE))
181 hostval = SPEC_CTRL_SSBD;
182 else
183 hostval = ssbd_tif_to_spec_ctrl(ti->flags);
184
185 /* Sanitize the guest value */
186 guestval = guest_virt_spec_ctrl & SPEC_CTRL_SSBD;
187
188 if (hostval != guestval) {
189 unsigned long tif;
190
191 tif = setguest ? ssbd_spec_ctrl_to_tif(guestval) :
192 ssbd_spec_ctrl_to_tif(hostval);
193
26c4d75b 194 speculation_ctrl_update(tif);
47c61b39 195 }
5cf68754 196}
cc69b349 197EXPORT_SYMBOL_GPL(x86_virt_spec_ctrl);
5cf68754 198
9f65fb29 199static void x86_amd_ssb_disable(void)
764f3c21 200{
9f65fb29 201 u64 msrval = x86_amd_ls_cfg_base | x86_amd_ls_cfg_ssbd_mask;
764f3c21 202
11fb0683
TL
203 if (boot_cpu_has(X86_FEATURE_VIRT_SSBD))
204 wrmsrl(MSR_AMD64_VIRT_SPEC_CTRL, SPEC_CTRL_SSBD);
205 else if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD))
764f3c21
KRW
206 wrmsrl(MSR_AMD64_LS_CFG, msrval);
207}
208
15d6b7aa
TG
209#undef pr_fmt
210#define pr_fmt(fmt) "Spectre V2 : " fmt
211
212static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init =
213 SPECTRE_V2_NONE;
214
fa1202ef
TG
215static enum spectre_v2_user_mitigation spectre_v2_user __ro_after_init =
216 SPECTRE_V2_USER_NONE;
217
e4f35891 218#ifdef CONFIG_RETPOLINE
e383095c
TG
219static bool spectre_v2_bad_module;
220
caf7501a
AK
221bool retpoline_module_ok(bool has_retpoline)
222{
223 if (spectre_v2_enabled == SPECTRE_V2_NONE || has_retpoline)
224 return true;
225
e698dcdf 226 pr_err("System may be vulnerable to spectre v2\n");
caf7501a
AK
227 spectre_v2_bad_module = true;
228 return false;
229}
e383095c
TG
230
231static inline const char *spectre_v2_module_string(void)
232{
233 return spectre_v2_bad_module ? " - vulnerable module loaded" : "";
234}
235#else
236static inline const char *spectre_v2_module_string(void) { return ""; }
caf7501a 237#endif
da285121 238
da285121
DW
239static inline bool match_option(const char *arg, int arglen, const char *opt)
240{
241 int len = strlen(opt);
242
243 return len == arglen && !strncmp(arg, opt, len);
244}
245
15d6b7aa
TG
246/* The kernel command line selection for spectre v2 */
247enum spectre_v2_mitigation_cmd {
248 SPECTRE_V2_CMD_NONE,
249 SPECTRE_V2_CMD_AUTO,
250 SPECTRE_V2_CMD_FORCE,
251 SPECTRE_V2_CMD_RETPOLINE,
252 SPECTRE_V2_CMD_RETPOLINE_GENERIC,
253 SPECTRE_V2_CMD_RETPOLINE_AMD,
254};
255
fa1202ef
TG
256enum spectre_v2_user_cmd {
257 SPECTRE_V2_USER_CMD_NONE,
258 SPECTRE_V2_USER_CMD_AUTO,
259 SPECTRE_V2_USER_CMD_FORCE,
7cc765a6 260 SPECTRE_V2_USER_CMD_PRCTL,
55a97402 261 SPECTRE_V2_USER_CMD_PRCTL_IBPB,
6b3e64c2 262 SPECTRE_V2_USER_CMD_SECCOMP,
55a97402 263 SPECTRE_V2_USER_CMD_SECCOMP_IBPB,
fa1202ef
TG
264};
265
266static const char * const spectre_v2_user_strings[] = {
20c3a2c3
TL
267 [SPECTRE_V2_USER_NONE] = "User space: Vulnerable",
268 [SPECTRE_V2_USER_STRICT] = "User space: Mitigation: STIBP protection",
269 [SPECTRE_V2_USER_STRICT_PREFERRED] = "User space: Mitigation: STIBP always-on protection",
270 [SPECTRE_V2_USER_PRCTL] = "User space: Mitigation: STIBP via prctl",
271 [SPECTRE_V2_USER_SECCOMP] = "User space: Mitigation: STIBP via seccomp and prctl",
fa1202ef
TG
272};
273
274static const struct {
275 const char *option;
276 enum spectre_v2_user_cmd cmd;
277 bool secure;
278} v2_user_options[] __initdata = {
55a97402
TG
279 { "auto", SPECTRE_V2_USER_CMD_AUTO, false },
280 { "off", SPECTRE_V2_USER_CMD_NONE, false },
281 { "on", SPECTRE_V2_USER_CMD_FORCE, true },
282 { "prctl", SPECTRE_V2_USER_CMD_PRCTL, false },
283 { "prctl,ibpb", SPECTRE_V2_USER_CMD_PRCTL_IBPB, false },
284 { "seccomp", SPECTRE_V2_USER_CMD_SECCOMP, false },
285 { "seccomp,ibpb", SPECTRE_V2_USER_CMD_SECCOMP_IBPB, false },
fa1202ef
TG
286};
287
288static void __init spec_v2_user_print_cond(const char *reason, bool secure)
289{
290 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
291 pr_info("spectre_v2_user=%s forced on command line.\n", reason);
292}
293
294static enum spectre_v2_user_cmd __init
295spectre_v2_parse_user_cmdline(enum spectre_v2_mitigation_cmd v2_cmd)
296{
297 char arg[20];
298 int ret, i;
299
300 switch (v2_cmd) {
301 case SPECTRE_V2_CMD_NONE:
302 return SPECTRE_V2_USER_CMD_NONE;
303 case SPECTRE_V2_CMD_FORCE:
304 return SPECTRE_V2_USER_CMD_FORCE;
305 default:
306 break;
307 }
308
309 ret = cmdline_find_option(boot_command_line, "spectre_v2_user",
310 arg, sizeof(arg));
311 if (ret < 0)
312 return SPECTRE_V2_USER_CMD_AUTO;
313
314 for (i = 0; i < ARRAY_SIZE(v2_user_options); i++) {
315 if (match_option(arg, ret, v2_user_options[i].option)) {
316 spec_v2_user_print_cond(v2_user_options[i].option,
317 v2_user_options[i].secure);
318 return v2_user_options[i].cmd;
319 }
320 }
321
322 pr_err("Unknown user space protection option (%s). Switching to AUTO select\n", arg);
323 return SPECTRE_V2_USER_CMD_AUTO;
324}
325
326static void __init
327spectre_v2_user_select_mitigation(enum spectre_v2_mitigation_cmd v2_cmd)
328{
329 enum spectre_v2_user_mitigation mode = SPECTRE_V2_USER_NONE;
330 bool smt_possible = IS_ENABLED(CONFIG_SMP);
55a97402 331 enum spectre_v2_user_cmd cmd;
fa1202ef
TG
332
333 if (!boot_cpu_has(X86_FEATURE_IBPB) && !boot_cpu_has(X86_FEATURE_STIBP))
334 return;
335
336 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
337 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
338 smt_possible = false;
339
55a97402
TG
340 cmd = spectre_v2_parse_user_cmdline(v2_cmd);
341 switch (cmd) {
fa1202ef
TG
342 case SPECTRE_V2_USER_CMD_NONE:
343 goto set_mode;
344 case SPECTRE_V2_USER_CMD_FORCE:
345 mode = SPECTRE_V2_USER_STRICT;
346 break;
7cc765a6 347 case SPECTRE_V2_USER_CMD_PRCTL:
55a97402 348 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
7cc765a6
TG
349 mode = SPECTRE_V2_USER_PRCTL;
350 break;
6b3e64c2
TG
351 case SPECTRE_V2_USER_CMD_AUTO:
352 case SPECTRE_V2_USER_CMD_SECCOMP:
55a97402 353 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
6b3e64c2
TG
354 if (IS_ENABLED(CONFIG_SECCOMP))
355 mode = SPECTRE_V2_USER_SECCOMP;
356 else
357 mode = SPECTRE_V2_USER_PRCTL;
358 break;
fa1202ef
TG
359 }
360
20c3a2c3
TL
361 /*
362 * At this point, an STIBP mode other than "off" has been set.
363 * If STIBP support is not being forced, check if STIBP always-on
364 * is preferred.
365 */
366 if (mode != SPECTRE_V2_USER_STRICT &&
367 boot_cpu_has(X86_FEATURE_AMD_STIBP_ALWAYS_ON))
368 mode = SPECTRE_V2_USER_STRICT_PREFERRED;
369
fa1202ef
TG
370 /* Initialize Indirect Branch Prediction Barrier */
371 if (boot_cpu_has(X86_FEATURE_IBPB)) {
372 setup_force_cpu_cap(X86_FEATURE_USE_IBPB);
4c71a2b6 373
55a97402
TG
374 switch (cmd) {
375 case SPECTRE_V2_USER_CMD_FORCE:
376 case SPECTRE_V2_USER_CMD_PRCTL_IBPB:
377 case SPECTRE_V2_USER_CMD_SECCOMP_IBPB:
4c71a2b6
TG
378 static_branch_enable(&switch_mm_always_ibpb);
379 break;
55a97402
TG
380 case SPECTRE_V2_USER_CMD_PRCTL:
381 case SPECTRE_V2_USER_CMD_AUTO:
382 case SPECTRE_V2_USER_CMD_SECCOMP:
7cc765a6
TG
383 static_branch_enable(&switch_mm_cond_ibpb);
384 break;
4c71a2b6
TG
385 default:
386 break;
387 }
388
389 pr_info("mitigation: Enabling %s Indirect Branch Prediction Barrier\n",
55a97402
TG
390 static_key_enabled(&switch_mm_always_ibpb) ?
391 "always-on" : "conditional");
fa1202ef
TG
392 }
393
aa77bfb3 394 /* If enhanced IBRS is enabled no STIBP required */
fa1202ef
TG
395 if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
396 return;
397
7cc765a6 398 /*
aa77bfb3 399 * If SMT is not possible or STIBP is not available clear the STIBP
7cc765a6
TG
400 * mode.
401 */
402 if (!smt_possible || !boot_cpu_has(X86_FEATURE_STIBP))
403 mode = SPECTRE_V2_USER_NONE;
fa1202ef
TG
404set_mode:
405 spectre_v2_user = mode;
406 /* Only print the STIBP mode when SMT possible */
407 if (smt_possible)
408 pr_info("%s\n", spectre_v2_user_strings[mode]);
409}
410
8770709f 411static const char * const spectre_v2_strings[] = {
15d6b7aa
TG
412 [SPECTRE_V2_NONE] = "Vulnerable",
413 [SPECTRE_V2_RETPOLINE_GENERIC] = "Mitigation: Full generic retpoline",
414 [SPECTRE_V2_RETPOLINE_AMD] = "Mitigation: Full AMD retpoline",
415 [SPECTRE_V2_IBRS_ENHANCED] = "Mitigation: Enhanced IBRS",
416};
417
9005c683
KA
418static const struct {
419 const char *option;
420 enum spectre_v2_mitigation_cmd cmd;
421 bool secure;
30ba72a9 422} mitigation_options[] __initdata = {
15d6b7aa
TG
423 { "off", SPECTRE_V2_CMD_NONE, false },
424 { "on", SPECTRE_V2_CMD_FORCE, true },
425 { "retpoline", SPECTRE_V2_CMD_RETPOLINE, false },
426 { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_AMD, false },
427 { "retpoline,generic", SPECTRE_V2_CMD_RETPOLINE_GENERIC, false },
428 { "auto", SPECTRE_V2_CMD_AUTO, false },
9005c683
KA
429};
430
495d470e 431static void __init spec_v2_print_cond(const char *reason, bool secure)
15d6b7aa 432{
495d470e 433 if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2) != secure)
15d6b7aa
TG
434 pr_info("%s selected on command line.\n", reason);
435}
436
da285121
DW
437static enum spectre_v2_mitigation_cmd __init spectre_v2_parse_cmdline(void)
438{
15d6b7aa 439 enum spectre_v2_mitigation_cmd cmd = SPECTRE_V2_CMD_AUTO;
da285121 440 char arg[20];
9005c683 441 int ret, i;
9005c683
KA
442
443 if (cmdline_find_option_bool(boot_command_line, "nospectre_v2"))
444 return SPECTRE_V2_CMD_NONE;
9005c683 445
24848509
TC
446 ret = cmdline_find_option(boot_command_line, "spectre_v2", arg, sizeof(arg));
447 if (ret < 0)
448 return SPECTRE_V2_CMD_AUTO;
449
450 for (i = 0; i < ARRAY_SIZE(mitigation_options); i++) {
451 if (!match_option(arg, ret, mitigation_options[i].option))
452 continue;
453 cmd = mitigation_options[i].cmd;
454 break;
455 }
456
457 if (i >= ARRAY_SIZE(mitigation_options)) {
458 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
459 return SPECTRE_V2_CMD_AUTO;
da285121
DW
460 }
461
9005c683
KA
462 if ((cmd == SPECTRE_V2_CMD_RETPOLINE ||
463 cmd == SPECTRE_V2_CMD_RETPOLINE_AMD ||
464 cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC) &&
465 !IS_ENABLED(CONFIG_RETPOLINE)) {
21e433bd 466 pr_err("%s selected but not compiled in. Switching to AUTO select\n", mitigation_options[i].option);
da285121 467 return SPECTRE_V2_CMD_AUTO;
9005c683
KA
468 }
469
470 if (cmd == SPECTRE_V2_CMD_RETPOLINE_AMD &&
1a576b23 471 boot_cpu_data.x86_vendor != X86_VENDOR_HYGON &&
9005c683
KA
472 boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
473 pr_err("retpoline,amd selected but CPU is not AMD. Switching to AUTO select\n");
474 return SPECTRE_V2_CMD_AUTO;
475 }
476
495d470e
TG
477 spec_v2_print_cond(mitigation_options[i].option,
478 mitigation_options[i].secure);
9005c683 479 return cmd;
da285121
DW
480}
481
482static void __init spectre_v2_select_mitigation(void)
483{
484 enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline();
485 enum spectre_v2_mitigation mode = SPECTRE_V2_NONE;
486
487 /*
488 * If the CPU is not affected and the command line mode is NONE or AUTO
489 * then nothing to do.
490 */
491 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2) &&
492 (cmd == SPECTRE_V2_CMD_NONE || cmd == SPECTRE_V2_CMD_AUTO))
493 return;
494
495 switch (cmd) {
496 case SPECTRE_V2_CMD_NONE:
497 return;
498
499 case SPECTRE_V2_CMD_FORCE:
da285121 500 case SPECTRE_V2_CMD_AUTO:
706d5168
SP
501 if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) {
502 mode = SPECTRE_V2_IBRS_ENHANCED;
503 /* Force it so VMEXIT will restore correctly */
504 x86_spec_ctrl_base |= SPEC_CTRL_IBRS;
505 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
506 goto specv2_set_mode;
507 }
9471eee9
DL
508 if (IS_ENABLED(CONFIG_RETPOLINE))
509 goto retpoline_auto;
510 break;
da285121
DW
511 case SPECTRE_V2_CMD_RETPOLINE_AMD:
512 if (IS_ENABLED(CONFIG_RETPOLINE))
513 goto retpoline_amd;
514 break;
515 case SPECTRE_V2_CMD_RETPOLINE_GENERIC:
516 if (IS_ENABLED(CONFIG_RETPOLINE))
517 goto retpoline_generic;
518 break;
519 case SPECTRE_V2_CMD_RETPOLINE:
520 if (IS_ENABLED(CONFIG_RETPOLINE))
521 goto retpoline_auto;
522 break;
523 }
21e433bd 524 pr_err("Spectre mitigation: kernel not compiled with retpoline; no mitigation available!");
da285121
DW
525 return;
526
527retpoline_auto:
1a576b23
PW
528 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD ||
529 boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) {
da285121
DW
530 retpoline_amd:
531 if (!boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) {
21e433bd 532 pr_err("Spectre mitigation: LFENCE not serializing, switching to generic retpoline\n");
da285121
DW
533 goto retpoline_generic;
534 }
ef014aae 535 mode = SPECTRE_V2_RETPOLINE_AMD;
da285121
DW
536 setup_force_cpu_cap(X86_FEATURE_RETPOLINE_AMD);
537 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
538 } else {
539 retpoline_generic:
ef014aae 540 mode = SPECTRE_V2_RETPOLINE_GENERIC;
da285121
DW
541 setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
542 }
543
706d5168 544specv2_set_mode:
da285121
DW
545 spectre_v2_enabled = mode;
546 pr_info("%s\n", spectre_v2_strings[mode]);
c995efd5
DW
547
548 /*
fdf82a78
JK
549 * If spectre v2 protection has been enabled, unconditionally fill
550 * RSB during a context switch; this protects against two independent
551 * issues:
c995efd5 552 *
fdf82a78
JK
553 * - RSB underflow (and switch to BTB) on Skylake+
554 * - SpectreRSB variant of spectre v2 on X86_BUG_SPECTRE_V2 CPUs
c995efd5 555 */
fdf82a78
JK
556 setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW);
557 pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n");
20ffa1ca 558
dd84441a
DW
559 /*
560 * Retpoline means the kernel is safe because it has no indirect
706d5168
SP
561 * branches. Enhanced IBRS protects firmware too, so, enable restricted
562 * speculation around firmware calls only when Enhanced IBRS isn't
563 * supported.
564 *
565 * Use "mode" to check Enhanced IBRS instead of boot_cpu_has(), because
566 * the user might select retpoline on the kernel command line and if
567 * the CPU supports Enhanced IBRS, kernel might un-intentionally not
568 * enable IBRS around firmware calls.
dd84441a 569 */
706d5168 570 if (boot_cpu_has(X86_FEATURE_IBRS) && mode != SPECTRE_V2_IBRS_ENHANCED) {
dd84441a
DW
571 setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW);
572 pr_info("Enabling Restricted Speculation for firmware calls\n");
573 }
53c613fe 574
fa1202ef
TG
575 /* Set up IBPB and STIBP depending on the general spectre V2 command */
576 spectre_v2_user_select_mitigation(cmd);
577
53c613fe
JK
578 /* Enable STIBP if appropriate */
579 arch_smt_update();
da285121
DW
580}
581
6893a959 582static void update_stibp_msr(void * __unused)
15d6b7aa 583{
6893a959 584 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
15d6b7aa
TG
585}
586
6893a959
TG
587/* Update x86_spec_ctrl_base in case SMT state changed. */
588static void update_stibp_strict(void)
15d6b7aa 589{
6893a959
TG
590 u64 mask = x86_spec_ctrl_base & ~SPEC_CTRL_STIBP;
591
592 if (sched_smt_active())
593 mask |= SPEC_CTRL_STIBP;
594
595 if (mask == x86_spec_ctrl_base)
596 return;
597
598 pr_info("Update user space SMT mitigation: STIBP %s\n",
599 mask & SPEC_CTRL_STIBP ? "always-on" : "off");
600 x86_spec_ctrl_base = mask;
601 on_each_cpu(update_stibp_msr, NULL, 1);
15d6b7aa
TG
602}
603
7cc765a6
TG
604/* Update the static key controlling the evaluation of TIF_SPEC_IB */
605static void update_indir_branch_cond(void)
606{
607 if (sched_smt_active())
608 static_branch_enable(&switch_to_cond_stibp);
609 else
610 static_branch_disable(&switch_to_cond_stibp);
611}
612
15d6b7aa
TG
613void arch_smt_update(void)
614{
6893a959
TG
615 /* Enhanced IBRS implies STIBP. No update required. */
616 if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
15d6b7aa
TG
617 return;
618
619 mutex_lock(&spec_ctrl_mutex);
620
6893a959
TG
621 switch (spectre_v2_user) {
622 case SPECTRE_V2_USER_NONE:
623 break;
624 case SPECTRE_V2_USER_STRICT:
20c3a2c3 625 case SPECTRE_V2_USER_STRICT_PREFERRED:
6893a959
TG
626 update_stibp_strict();
627 break;
9137bb27 628 case SPECTRE_V2_USER_PRCTL:
6b3e64c2 629 case SPECTRE_V2_USER_SECCOMP:
7cc765a6 630 update_indir_branch_cond();
9137bb27 631 break;
15d6b7aa 632 }
6893a959 633
15d6b7aa
TG
634 mutex_unlock(&spec_ctrl_mutex);
635}
636
24f7fc83
KRW
637#undef pr_fmt
638#define pr_fmt(fmt) "Speculative Store Bypass: " fmt
639
f9544b2b 640static enum ssb_mitigation ssb_mode __ro_after_init = SPEC_STORE_BYPASS_NONE;
24f7fc83
KRW
641
642/* The kernel command line selection */
643enum ssb_mitigation_cmd {
644 SPEC_STORE_BYPASS_CMD_NONE,
645 SPEC_STORE_BYPASS_CMD_AUTO,
646 SPEC_STORE_BYPASS_CMD_ON,
a73ec77e 647 SPEC_STORE_BYPASS_CMD_PRCTL,
f21b53b2 648 SPEC_STORE_BYPASS_CMD_SECCOMP,
24f7fc83
KRW
649};
650
8770709f 651static const char * const ssb_strings[] = {
24f7fc83 652 [SPEC_STORE_BYPASS_NONE] = "Vulnerable",
a73ec77e 653 [SPEC_STORE_BYPASS_DISABLE] = "Mitigation: Speculative Store Bypass disabled",
f21b53b2
KC
654 [SPEC_STORE_BYPASS_PRCTL] = "Mitigation: Speculative Store Bypass disabled via prctl",
655 [SPEC_STORE_BYPASS_SECCOMP] = "Mitigation: Speculative Store Bypass disabled via prctl and seccomp",
24f7fc83
KRW
656};
657
658static const struct {
659 const char *option;
660 enum ssb_mitigation_cmd cmd;
30ba72a9 661} ssb_mitigation_options[] __initdata = {
f21b53b2
KC
662 { "auto", SPEC_STORE_BYPASS_CMD_AUTO }, /* Platform decides */
663 { "on", SPEC_STORE_BYPASS_CMD_ON }, /* Disable Speculative Store Bypass */
664 { "off", SPEC_STORE_BYPASS_CMD_NONE }, /* Don't touch Speculative Store Bypass */
665 { "prctl", SPEC_STORE_BYPASS_CMD_PRCTL }, /* Disable Speculative Store Bypass via prctl */
666 { "seccomp", SPEC_STORE_BYPASS_CMD_SECCOMP }, /* Disable Speculative Store Bypass via prctl and seccomp */
24f7fc83
KRW
667};
668
669static enum ssb_mitigation_cmd __init ssb_parse_cmdline(void)
670{
671 enum ssb_mitigation_cmd cmd = SPEC_STORE_BYPASS_CMD_AUTO;
672 char arg[20];
673 int ret, i;
674
675 if (cmdline_find_option_bool(boot_command_line, "nospec_store_bypass_disable")) {
676 return SPEC_STORE_BYPASS_CMD_NONE;
677 } else {
678 ret = cmdline_find_option(boot_command_line, "spec_store_bypass_disable",
679 arg, sizeof(arg));
680 if (ret < 0)
681 return SPEC_STORE_BYPASS_CMD_AUTO;
682
683 for (i = 0; i < ARRAY_SIZE(ssb_mitigation_options); i++) {
684 if (!match_option(arg, ret, ssb_mitigation_options[i].option))
685 continue;
686
687 cmd = ssb_mitigation_options[i].cmd;
688 break;
689 }
690
691 if (i >= ARRAY_SIZE(ssb_mitigation_options)) {
692 pr_err("unknown option (%s). Switching to AUTO select\n", arg);
693 return SPEC_STORE_BYPASS_CMD_AUTO;
694 }
695 }
696
697 return cmd;
698}
699
d66d8ff3 700static enum ssb_mitigation __init __ssb_select_mitigation(void)
24f7fc83
KRW
701{
702 enum ssb_mitigation mode = SPEC_STORE_BYPASS_NONE;
703 enum ssb_mitigation_cmd cmd;
704
9f65fb29 705 if (!boot_cpu_has(X86_FEATURE_SSBD))
24f7fc83
KRW
706 return mode;
707
708 cmd = ssb_parse_cmdline();
709 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS) &&
710 (cmd == SPEC_STORE_BYPASS_CMD_NONE ||
711 cmd == SPEC_STORE_BYPASS_CMD_AUTO))
712 return mode;
713
714 switch (cmd) {
715 case SPEC_STORE_BYPASS_CMD_AUTO:
f21b53b2
KC
716 case SPEC_STORE_BYPASS_CMD_SECCOMP:
717 /*
718 * Choose prctl+seccomp as the default mode if seccomp is
719 * enabled.
720 */
721 if (IS_ENABLED(CONFIG_SECCOMP))
722 mode = SPEC_STORE_BYPASS_SECCOMP;
723 else
724 mode = SPEC_STORE_BYPASS_PRCTL;
a73ec77e 725 break;
24f7fc83
KRW
726 case SPEC_STORE_BYPASS_CMD_ON:
727 mode = SPEC_STORE_BYPASS_DISABLE;
728 break;
a73ec77e
TG
729 case SPEC_STORE_BYPASS_CMD_PRCTL:
730 mode = SPEC_STORE_BYPASS_PRCTL;
731 break;
24f7fc83
KRW
732 case SPEC_STORE_BYPASS_CMD_NONE:
733 break;
734 }
735
77243971
KRW
736 /*
737 * We have three CPU feature flags that are in play here:
738 * - X86_BUG_SPEC_STORE_BYPASS - CPU is susceptible.
9f65fb29 739 * - X86_FEATURE_SSBD - CPU is able to turn off speculative store bypass
77243971
KRW
740 * - X86_FEATURE_SPEC_STORE_BYPASS_DISABLE - engage the mitigation
741 */
a73ec77e 742 if (mode == SPEC_STORE_BYPASS_DISABLE) {
24f7fc83 743 setup_force_cpu_cap(X86_FEATURE_SPEC_STORE_BYPASS_DISABLE);
77243971 744 /*
6ac2f49e
KRW
745 * Intel uses the SPEC CTRL MSR Bit(2) for this, while AMD may
746 * use a completely different MSR and bit dependent on family.
77243971 747 */
612bc3b3
TL
748 if (!static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) &&
749 !static_cpu_has(X86_FEATURE_AMD_SSBD)) {
108fab4b 750 x86_amd_ssb_disable();
612bc3b3 751 } else {
9f65fb29 752 x86_spec_ctrl_base |= SPEC_CTRL_SSBD;
be6fcb54 753 x86_spec_ctrl_mask |= SPEC_CTRL_SSBD;
4b59bdb5 754 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
77243971
KRW
755 }
756 }
757
24f7fc83
KRW
758 return mode;
759}
760
ffed645e 761static void ssb_select_mitigation(void)
24f7fc83
KRW
762{
763 ssb_mode = __ssb_select_mitigation();
764
765 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
766 pr_info("%s\n", ssb_strings[ssb_mode]);
767}
768
da285121 769#undef pr_fmt
f21b53b2 770#define pr_fmt(fmt) "Speculation prctl: " fmt
da285121 771
6d991ba5 772static void task_update_spec_tif(struct task_struct *tsk)
a73ec77e 773{
6d991ba5
TG
774 /* Force the update of the real TIF bits */
775 set_tsk_thread_flag(tsk, TIF_SPEC_FORCE_UPDATE);
e6da8bb6
TG
776
777 /*
778 * Immediately update the speculation control MSRs for the current
779 * task, but for a non-current task delay setting the CPU
780 * mitigation until it is scheduled next.
781 *
782 * This can only happen for SECCOMP mitigation. For PRCTL it's
783 * always the current task.
784 */
6d991ba5 785 if (tsk == current)
e6da8bb6
TG
786 speculation_ctrl_update_current();
787}
788
789static int ssb_prctl_set(struct task_struct *task, unsigned long ctrl)
790{
f21b53b2
KC
791 if (ssb_mode != SPEC_STORE_BYPASS_PRCTL &&
792 ssb_mode != SPEC_STORE_BYPASS_SECCOMP)
a73ec77e
TG
793 return -ENXIO;
794
356e4bff
TG
795 switch (ctrl) {
796 case PR_SPEC_ENABLE:
797 /* If speculation is force disabled, enable is not allowed */
798 if (task_spec_ssb_force_disable(task))
799 return -EPERM;
800 task_clear_spec_ssb_disable(task);
71368af9 801 task_clear_spec_ssb_noexec(task);
6d991ba5 802 task_update_spec_tif(task);
356e4bff
TG
803 break;
804 case PR_SPEC_DISABLE:
805 task_set_spec_ssb_disable(task);
71368af9 806 task_clear_spec_ssb_noexec(task);
6d991ba5 807 task_update_spec_tif(task);
356e4bff
TG
808 break;
809 case PR_SPEC_FORCE_DISABLE:
810 task_set_spec_ssb_disable(task);
811 task_set_spec_ssb_force_disable(task);
71368af9
WL
812 task_clear_spec_ssb_noexec(task);
813 task_update_spec_tif(task);
814 break;
815 case PR_SPEC_DISABLE_NOEXEC:
816 if (task_spec_ssb_force_disable(task))
817 return -EPERM;
818 task_set_spec_ssb_disable(task);
819 task_set_spec_ssb_noexec(task);
6d991ba5 820 task_update_spec_tif(task);
356e4bff
TG
821 break;
822 default:
823 return -ERANGE;
824 }
a73ec77e
TG
825 return 0;
826}
827
9137bb27
TG
828static int ib_prctl_set(struct task_struct *task, unsigned long ctrl)
829{
830 switch (ctrl) {
831 case PR_SPEC_ENABLE:
832 if (spectre_v2_user == SPECTRE_V2_USER_NONE)
833 return 0;
834 /*
835 * Indirect branch speculation is always disabled in strict
836 * mode.
837 */
20c3a2c3
TL
838 if (spectre_v2_user == SPECTRE_V2_USER_STRICT ||
839 spectre_v2_user == SPECTRE_V2_USER_STRICT_PREFERRED)
9137bb27
TG
840 return -EPERM;
841 task_clear_spec_ib_disable(task);
842 task_update_spec_tif(task);
843 break;
844 case PR_SPEC_DISABLE:
845 case PR_SPEC_FORCE_DISABLE:
846 /*
847 * Indirect branch speculation is always allowed when
848 * mitigation is force disabled.
849 */
850 if (spectre_v2_user == SPECTRE_V2_USER_NONE)
851 return -EPERM;
20c3a2c3
TL
852 if (spectre_v2_user == SPECTRE_V2_USER_STRICT ||
853 spectre_v2_user == SPECTRE_V2_USER_STRICT_PREFERRED)
9137bb27
TG
854 return 0;
855 task_set_spec_ib_disable(task);
856 if (ctrl == PR_SPEC_FORCE_DISABLE)
857 task_set_spec_ib_force_disable(task);
858 task_update_spec_tif(task);
859 break;
860 default:
861 return -ERANGE;
862 }
863 return 0;
864}
865
8bf37d8c
TG
866int arch_prctl_spec_ctrl_set(struct task_struct *task, unsigned long which,
867 unsigned long ctrl)
868{
869 switch (which) {
870 case PR_SPEC_STORE_BYPASS:
871 return ssb_prctl_set(task, ctrl);
9137bb27
TG
872 case PR_SPEC_INDIRECT_BRANCH:
873 return ib_prctl_set(task, ctrl);
8bf37d8c
TG
874 default:
875 return -ENODEV;
876 }
877}
878
879#ifdef CONFIG_SECCOMP
880void arch_seccomp_spec_mitigate(struct task_struct *task)
881{
f21b53b2
KC
882 if (ssb_mode == SPEC_STORE_BYPASS_SECCOMP)
883 ssb_prctl_set(task, PR_SPEC_FORCE_DISABLE);
6b3e64c2
TG
884 if (spectre_v2_user == SPECTRE_V2_USER_SECCOMP)
885 ib_prctl_set(task, PR_SPEC_FORCE_DISABLE);
8bf37d8c
TG
886}
887#endif
888
7bbf1373 889static int ssb_prctl_get(struct task_struct *task)
a73ec77e
TG
890{
891 switch (ssb_mode) {
892 case SPEC_STORE_BYPASS_DISABLE:
893 return PR_SPEC_DISABLE;
f21b53b2 894 case SPEC_STORE_BYPASS_SECCOMP:
a73ec77e 895 case SPEC_STORE_BYPASS_PRCTL:
356e4bff
TG
896 if (task_spec_ssb_force_disable(task))
897 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
71368af9
WL
898 if (task_spec_ssb_noexec(task))
899 return PR_SPEC_PRCTL | PR_SPEC_DISABLE_NOEXEC;
356e4bff 900 if (task_spec_ssb_disable(task))
a73ec77e
TG
901 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
902 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
903 default:
904 if (boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
905 return PR_SPEC_ENABLE;
906 return PR_SPEC_NOT_AFFECTED;
907 }
908}
909
9137bb27
TG
910static int ib_prctl_get(struct task_struct *task)
911{
912 if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
913 return PR_SPEC_NOT_AFFECTED;
914
915 switch (spectre_v2_user) {
916 case SPECTRE_V2_USER_NONE:
917 return PR_SPEC_ENABLE;
918 case SPECTRE_V2_USER_PRCTL:
6b3e64c2 919 case SPECTRE_V2_USER_SECCOMP:
9137bb27
TG
920 if (task_spec_ib_force_disable(task))
921 return PR_SPEC_PRCTL | PR_SPEC_FORCE_DISABLE;
922 if (task_spec_ib_disable(task))
923 return PR_SPEC_PRCTL | PR_SPEC_DISABLE;
924 return PR_SPEC_PRCTL | PR_SPEC_ENABLE;
925 case SPECTRE_V2_USER_STRICT:
20c3a2c3 926 case SPECTRE_V2_USER_STRICT_PREFERRED:
9137bb27
TG
927 return PR_SPEC_DISABLE;
928 default:
929 return PR_SPEC_NOT_AFFECTED;
930 }
931}
932
7bbf1373 933int arch_prctl_spec_ctrl_get(struct task_struct *task, unsigned long which)
a73ec77e
TG
934{
935 switch (which) {
936 case PR_SPEC_STORE_BYPASS:
7bbf1373 937 return ssb_prctl_get(task);
9137bb27
TG
938 case PR_SPEC_INDIRECT_BRANCH:
939 return ib_prctl_get(task);
a73ec77e
TG
940 default:
941 return -ENODEV;
942 }
943}
944
77243971
KRW
945void x86_spec_ctrl_setup_ap(void)
946{
7eb8956a 947 if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL))
4b59bdb5 948 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);
764f3c21
KRW
949
950 if (ssb_mode == SPEC_STORE_BYPASS_DISABLE)
9f65fb29 951 x86_amd_ssb_disable();
77243971
KRW
952}
953
56563f53
KRW
954#undef pr_fmt
955#define pr_fmt(fmt) "L1TF: " fmt
72c6d2db 956
d90a7a0e
JK
957/* Default mitigation for L1TF-affected CPUs */
958enum l1tf_mitigations l1tf_mitigation __ro_after_init = L1TF_MITIGATION_FLUSH;
72c6d2db 959#if IS_ENABLED(CONFIG_KVM_INTEL)
d90a7a0e 960EXPORT_SYMBOL_GPL(l1tf_mitigation);
1eb46908 961#endif
895ae47f 962enum vmx_l1d_flush_state l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
72c6d2db 963EXPORT_SYMBOL_GPL(l1tf_vmx_mitigation);
72c6d2db 964
cc51e542
AK
965/*
966 * These CPUs all support 44bits physical address space internally in the
967 * cache but CPUID can report a smaller number of physical address bits.
968 *
969 * The L1TF mitigation uses the top most address bit for the inversion of
970 * non present PTEs. When the installed memory reaches into the top most
971 * address bit due to memory holes, which has been observed on machines
972 * which report 36bits physical address bits and have 32G RAM installed,
973 * then the mitigation range check in l1tf_select_mitigation() triggers.
974 * This is a false positive because the mitigation is still possible due to
975 * the fact that the cache uses 44bit internally. Use the cache bits
976 * instead of the reported physical bits and adjust them on the affected
977 * machines to 44bit if the reported bits are less than 44.
978 */
979static void override_cache_bits(struct cpuinfo_x86 *c)
980{
981 if (c->x86 != 6)
982 return;
983
984 switch (c->x86_model) {
985 case INTEL_FAM6_NEHALEM:
986 case INTEL_FAM6_WESTMERE:
987 case INTEL_FAM6_SANDYBRIDGE:
988 case INTEL_FAM6_IVYBRIDGE:
989 case INTEL_FAM6_HASWELL_CORE:
990 case INTEL_FAM6_HASWELL_ULT:
991 case INTEL_FAM6_HASWELL_GT3E:
992 case INTEL_FAM6_BROADWELL_CORE:
993 case INTEL_FAM6_BROADWELL_GT3E:
994 case INTEL_FAM6_SKYLAKE_MOBILE:
995 case INTEL_FAM6_SKYLAKE_DESKTOP:
996 case INTEL_FAM6_KABYLAKE_MOBILE:
997 case INTEL_FAM6_KABYLAKE_DESKTOP:
998 if (c->x86_cache_bits < 44)
999 c->x86_cache_bits = 44;
1000 break;
1001 }
1002}
1003
56563f53
KRW
1004static void __init l1tf_select_mitigation(void)
1005{
1006 u64 half_pa;
1007
1008 if (!boot_cpu_has_bug(X86_BUG_L1TF))
1009 return;
1010
cc51e542
AK
1011 override_cache_bits(&boot_cpu_data);
1012
d90a7a0e
JK
1013 switch (l1tf_mitigation) {
1014 case L1TF_MITIGATION_OFF:
1015 case L1TF_MITIGATION_FLUSH_NOWARN:
1016 case L1TF_MITIGATION_FLUSH:
1017 break;
1018 case L1TF_MITIGATION_FLUSH_NOSMT:
1019 case L1TF_MITIGATION_FULL:
1020 cpu_smt_disable(false);
1021 break;
1022 case L1TF_MITIGATION_FULL_FORCE:
1023 cpu_smt_disable(true);
1024 break;
1025 }
1026
56563f53
KRW
1027#if CONFIG_PGTABLE_LEVELS == 2
1028 pr_warn("Kernel not compiled for PAE. No mitigation for L1TF\n");
1029 return;
1030#endif
1031
56563f53 1032 half_pa = (u64)l1tf_pfn_limit() << PAGE_SHIFT;
5b5e4d62
MH
1033 if (l1tf_mitigation != L1TF_MITIGATION_OFF &&
1034 e820__mapped_any(half_pa, ULLONG_MAX - half_pa, E820_TYPE_RAM)) {
56563f53 1035 pr_warn("System has more than MAX_PA/2 memory. L1TF mitigation not effective.\n");
6a012288
VB
1036 pr_info("You may make it effective by booting the kernel with mem=%llu parameter.\n",
1037 half_pa);
1038 pr_info("However, doing so will make a part of your RAM unusable.\n");
1039 pr_info("Reading https://www.kernel.org/doc/html/latest/admin-guide/l1tf.html might help you decide.\n");
56563f53
KRW
1040 return;
1041 }
1042
1043 setup_force_cpu_cap(X86_FEATURE_L1TF_PTEINV);
1044}
d90a7a0e
JK
1045
1046static int __init l1tf_cmdline(char *str)
1047{
1048 if (!boot_cpu_has_bug(X86_BUG_L1TF))
1049 return 0;
1050
1051 if (!str)
1052 return -EINVAL;
1053
1054 if (!strcmp(str, "off"))
1055 l1tf_mitigation = L1TF_MITIGATION_OFF;
1056 else if (!strcmp(str, "flush,nowarn"))
1057 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOWARN;
1058 else if (!strcmp(str, "flush"))
1059 l1tf_mitigation = L1TF_MITIGATION_FLUSH;
1060 else if (!strcmp(str, "flush,nosmt"))
1061 l1tf_mitigation = L1TF_MITIGATION_FLUSH_NOSMT;
1062 else if (!strcmp(str, "full"))
1063 l1tf_mitigation = L1TF_MITIGATION_FULL;
1064 else if (!strcmp(str, "full,force"))
1065 l1tf_mitigation = L1TF_MITIGATION_FULL_FORCE;
1066
1067 return 0;
1068}
1069early_param("l1tf", l1tf_cmdline);
1070
56563f53
KRW
1071#undef pr_fmt
1072
61dc0f55 1073#ifdef CONFIG_SYSFS
d1059518 1074
72c6d2db
TG
1075#define L1TF_DEFAULT_MSG "Mitigation: PTE Inversion"
1076
1077#if IS_ENABLED(CONFIG_KVM_INTEL)
8770709f 1078static const char * const l1tf_vmx_states[] = {
a7b9020b
TG
1079 [VMENTER_L1D_FLUSH_AUTO] = "auto",
1080 [VMENTER_L1D_FLUSH_NEVER] = "vulnerable",
1081 [VMENTER_L1D_FLUSH_COND] = "conditional cache flushes",
1082 [VMENTER_L1D_FLUSH_ALWAYS] = "cache flushes",
1083 [VMENTER_L1D_FLUSH_EPT_DISABLED] = "EPT disabled",
8e0b2b91 1084 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = "flush not necessary"
72c6d2db
TG
1085};
1086
1087static ssize_t l1tf_show_state(char *buf)
1088{
1089 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO)
1090 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
1091
ea156d19
PB
1092 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_EPT_DISABLED ||
1093 (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER &&
130d6f94 1094 sched_smt_active())) {
ea156d19
PB
1095 return sprintf(buf, "%s; VMX: %s\n", L1TF_DEFAULT_MSG,
1096 l1tf_vmx_states[l1tf_vmx_mitigation]);
130d6f94 1097 }
ea156d19
PB
1098
1099 return sprintf(buf, "%s; VMX: %s, SMT %s\n", L1TF_DEFAULT_MSG,
1100 l1tf_vmx_states[l1tf_vmx_mitigation],
130d6f94 1101 sched_smt_active() ? "vulnerable" : "disabled");
72c6d2db
TG
1102}
1103#else
1104static ssize_t l1tf_show_state(char *buf)
1105{
1106 return sprintf(buf, "%s\n", L1TF_DEFAULT_MSG);
1107}
1108#endif
1109
a8f76ae4
TC
1110static char *stibp_state(void)
1111{
34bce7c9
TC
1112 if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED)
1113 return "";
1114
fa1202ef
TG
1115 switch (spectre_v2_user) {
1116 case SPECTRE_V2_USER_NONE:
1117 return ", STIBP: disabled";
1118 case SPECTRE_V2_USER_STRICT:
1119 return ", STIBP: forced";
20c3a2c3
TL
1120 case SPECTRE_V2_USER_STRICT_PREFERRED:
1121 return ", STIBP: always-on";
9137bb27 1122 case SPECTRE_V2_USER_PRCTL:
6b3e64c2 1123 case SPECTRE_V2_USER_SECCOMP:
7cc765a6
TG
1124 if (static_key_enabled(&switch_to_cond_stibp))
1125 return ", STIBP: conditional";
fa1202ef
TG
1126 }
1127 return "";
a8f76ae4
TC
1128}
1129
1130static char *ibpb_state(void)
1131{
4c71a2b6 1132 if (boot_cpu_has(X86_FEATURE_IBPB)) {
7cc765a6 1133 if (static_key_enabled(&switch_mm_always_ibpb))
4c71a2b6 1134 return ", IBPB: always-on";
7cc765a6
TG
1135 if (static_key_enabled(&switch_mm_cond_ibpb))
1136 return ", IBPB: conditional";
1137 return ", IBPB: disabled";
4c71a2b6
TG
1138 }
1139 return "";
a8f76ae4
TC
1140}
1141
7bb4d366 1142static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr,
ffed645e 1143 char *buf, unsigned int bug)
61dc0f55 1144{
d1059518 1145 if (!boot_cpu_has_bug(bug))
61dc0f55 1146 return sprintf(buf, "Not affected\n");
d1059518
KRW
1147
1148 switch (bug) {
1149 case X86_BUG_CPU_MELTDOWN:
1150 if (boot_cpu_has(X86_FEATURE_PTI))
1151 return sprintf(buf, "Mitigation: PTI\n");
1152
6cb2b08f
JK
1153 if (hypervisor_is_type(X86_HYPER_XEN_PV))
1154 return sprintf(buf, "Unknown (XEN PV detected, hypervisor mitigation required)\n");
1155
d1059518
KRW
1156 break;
1157
1158 case X86_BUG_SPECTRE_V1:
1159 return sprintf(buf, "Mitigation: __user pointer sanitization\n");
1160
1161 case X86_BUG_SPECTRE_V2:
b86bda04 1162 return sprintf(buf, "%s%s%s%s%s%s\n", spectre_v2_strings[spectre_v2_enabled],
a8f76ae4 1163 ibpb_state(),
d1059518 1164 boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "",
a8f76ae4 1165 stibp_state(),
bb4b3b77 1166 boot_cpu_has(X86_FEATURE_RSB_CTXSW) ? ", RSB filling" : "",
d1059518
KRW
1167 spectre_v2_module_string());
1168
24f7fc83
KRW
1169 case X86_BUG_SPEC_STORE_BYPASS:
1170 return sprintf(buf, "%s\n", ssb_strings[ssb_mode]);
1171
17dbca11
AK
1172 case X86_BUG_L1TF:
1173 if (boot_cpu_has(X86_FEATURE_L1TF_PTEINV))
72c6d2db 1174 return l1tf_show_state(buf);
17dbca11 1175 break;
d1059518
KRW
1176 default:
1177 break;
1178 }
1179
61dc0f55
TG
1180 return sprintf(buf, "Vulnerable\n");
1181}
1182
d1059518
KRW
1183ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
1184{
1185 return cpu_show_common(dev, attr, buf, X86_BUG_CPU_MELTDOWN);
1186}
1187
21e433bd 1188ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf)
61dc0f55 1189{
d1059518 1190 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V1);
61dc0f55
TG
1191}
1192
21e433bd 1193ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf)
61dc0f55 1194{
d1059518 1195 return cpu_show_common(dev, attr, buf, X86_BUG_SPECTRE_V2);
61dc0f55 1196}
c456442c
KRW
1197
1198ssize_t cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf)
1199{
1200 return cpu_show_common(dev, attr, buf, X86_BUG_SPEC_STORE_BYPASS);
1201}
17dbca11
AK
1202
1203ssize_t cpu_show_l1tf(struct device *dev, struct device_attribute *attr, char *buf)
1204{
1205 return cpu_show_common(dev, attr, buf, X86_BUG_L1TF);
1206}
61dc0f55 1207#endif