1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef _ASM_X86_NOSPEC_BRANCH_H_
4 #define _ASM_X86_NOSPEC_BRANCH_H_
6 #include <linux/static_key.h>
7 #include <linux/objtool.h>
8 #include <linux/linkage.h>
10 #include <asm/alternative.h>
11 #include <asm/cpufeatures.h>
12 #include <asm/msr-index.h>
13 #include <asm/unwind_hints.h>
15 #define RETPOLINE_THUNK_SIZE 32
18 * Fill the CPU return stack buffer.
20 * Each entry in the RSB, if used for a speculative 'ret', contains an
21 * infinite 'pause; lfence; jmp' loop to capture speculative execution.
23 * This is required in various cases for retpoline and IBRS-based
24 * mitigations for the Spectre variant 2 vulnerability. Sometimes to
25 * eliminate potentially bogus entries from the RSB, and sometimes
26 * purely to ensure that it doesn't get empty, which on some CPUs would
27 * allow predictions from other (unwanted!) sources to be used.
29 * We define a CPP macro such that it can be used from both .S files and
30 * inline assembly. It's possible to do a .macro and then include that
31 * from C via asm(".include <asm/nospec-branch.h>") but let's not go there.
34 #define RSB_CLEAR_LOOPS 32 /* To forcibly overwrite all entries */
37 * Google experimented with loop-unrolling and this turned out to be
38 * the optimal version - two calls, each with their own speculation
39 * trap should their return address end up getting used, in a loop.
41 #define __FILL_RETURN_BUFFER(reg, nr, sp) \
44 ANNOTATE_INTRA_FUNCTION_CALL; \
46 773: /* speculation trap */ \
52 ANNOTATE_INTRA_FUNCTION_CALL; \
54 775: /* speculation trap */ \
60 add $(BITS_PER_LONG/8) * 2, sp; \
67 * This should be used immediately before an indirect jump/call. It tells
68 * objtool the subsequent indirect jump/call is vouched safe for retpoline
71 .macro ANNOTATE_RETPOLINE_SAFE
73 .pushsection .discard.retpoline_safe
74 _ASM_PTR .Lannotate_\@
79 * JMP_NOSPEC and CALL_NOSPEC macros can be used instead of a simple
80 * indirect jmp/call which may be susceptible to the Spectre variant 2
83 .macro JMP_NOSPEC reg:req
84 #ifdef CONFIG_RETPOLINE
85 ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), \
86 __stringify(jmp __x86_indirect_thunk_\reg), X86_FEATURE_RETPOLINE, \
87 __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), X86_FEATURE_RETPOLINE_LFENCE
93 .macro CALL_NOSPEC reg:req
94 #ifdef CONFIG_RETPOLINE
95 ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; call *%\reg), \
96 __stringify(call __x86_indirect_thunk_\reg), X86_FEATURE_RETPOLINE, \
97 __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; call *%\reg), X86_FEATURE_RETPOLINE_LFENCE
104 * A simpler FILL_RETURN_BUFFER macro. Don't make people use the CPP
105 * monstrosity above, manually.
107 .macro FILL_RETURN_BUFFER reg:req nr:req ftr:req
108 #ifdef CONFIG_RETPOLINE
109 ALTERNATIVE "jmp .Lskip_rsb_\@", "", \ftr
110 __FILL_RETURN_BUFFER(\reg,\nr,%_ASM_SP)
116 * Mitigate RETBleed for AMD/Hygon Zen uarch. Requires KERNEL CR3 because the
117 * return thunk isn't mapped into the userspace tables (then again, AMD
118 * typically has NO_MELTDOWN).
120 * Doesn't clobber any registers but does require a stable stack.
122 * As such, this must be placed after every *SWITCH_TO_KERNEL_CR3 at a point
123 * where we have a stack but before any RET instruction.
126 #ifdef CONFIG_RETPOLINE
127 ALTERNATIVE "", "call zen_untrain_ret", X86_FEATURE_UNRET
131 #else /* __ASSEMBLY__ */
133 #define ANNOTATE_RETPOLINE_SAFE \
135 ".pushsection .discard.retpoline_safe\n\t" \
136 _ASM_PTR " 999b\n\t" \
139 extern void __x86_return_thunk(void);
140 extern void zen_untrain_ret(void);
142 #ifdef CONFIG_RETPOLINE
144 typedef u8 retpoline_thunk_t[RETPOLINE_THUNK_SIZE];
147 extern retpoline_thunk_t __x86_indirect_thunk_ ## reg;
148 #include <asm/GEN-for-each-reg.h>
151 extern retpoline_thunk_t __x86_indirect_thunk_array[];
156 * Inline asm uses the %V modifier which is only in newer GCC
157 * which is ensured when CONFIG_RETPOLINE is defined.
159 # define CALL_NOSPEC \
161 ANNOTATE_RETPOLINE_SAFE \
162 "call *%[thunk_target]\n", \
163 "call __x86_indirect_thunk_%V[thunk_target]\n", \
164 X86_FEATURE_RETPOLINE, \
166 ANNOTATE_RETPOLINE_SAFE \
167 "call *%[thunk_target]\n", \
168 X86_FEATURE_RETPOLINE_LFENCE)
170 # define THUNK_TARGET(addr) [thunk_target] "r" (addr)
172 #else /* CONFIG_X86_32 */
174 * For i386 we use the original ret-equivalent retpoline, because
175 * otherwise we'll run out of registers. We don't care about CET
178 # define CALL_NOSPEC \
180 ANNOTATE_RETPOLINE_SAFE \
181 "call *%[thunk_target]\n", \
184 "901: call 903f;\n" \
189 "903: lea 4(%%esp), %%esp;\n" \
190 " pushl %[thunk_target];\n" \
193 "904: call 901b;\n", \
194 X86_FEATURE_RETPOLINE, \
196 ANNOTATE_RETPOLINE_SAFE \
197 "call *%[thunk_target]\n", \
198 X86_FEATURE_RETPOLINE_LFENCE)
200 # define THUNK_TARGET(addr) [thunk_target] "rm" (addr)
202 #else /* No retpoline for C / inline asm */
203 # define CALL_NOSPEC "call *%[thunk_target]\n"
204 # define THUNK_TARGET(addr) [thunk_target] "rm" (addr)
207 /* The Spectre V2 mitigation variants */
208 enum spectre_v2_mitigation {
210 SPECTRE_V2_RETPOLINE,
213 SPECTRE_V2_EIBRS_RETPOLINE,
214 SPECTRE_V2_EIBRS_LFENCE,
217 /* The indirect branch speculation control variants */
218 enum spectre_v2_user_mitigation {
219 SPECTRE_V2_USER_NONE,
220 SPECTRE_V2_USER_STRICT,
221 SPECTRE_V2_USER_STRICT_PREFERRED,
222 SPECTRE_V2_USER_PRCTL,
223 SPECTRE_V2_USER_SECCOMP,
226 /* The Speculative Store Bypass disable variants */
227 enum ssb_mitigation {
228 SPEC_STORE_BYPASS_NONE,
229 SPEC_STORE_BYPASS_DISABLE,
230 SPEC_STORE_BYPASS_PRCTL,
231 SPEC_STORE_BYPASS_SECCOMP,
234 extern char __indirect_thunk_start[];
235 extern char __indirect_thunk_end[];
237 static __always_inline
238 void alternative_msr_write(unsigned int msr, u64 val, unsigned int feature)
240 asm volatile(ALTERNATIVE("", "wrmsr", %c[feature])
243 "d" ((u32)(val >> 32)),
244 [feature] "i" (feature)
248 static inline void indirect_branch_prediction_barrier(void)
250 u64 val = PRED_CMD_IBPB;
252 alternative_msr_write(MSR_IA32_PRED_CMD, val, X86_FEATURE_USE_IBPB);
255 /* The Intel SPEC CTRL MSR base value cache */
256 extern u64 x86_spec_ctrl_base;
257 extern void write_spec_ctrl_current(u64 val, bool force);
260 * With retpoline, we must use IBRS to restrict branch prediction
261 * before calling into firmware.
263 * (Implemented as CPP macros due to header hell.)
265 #define firmware_restrict_branch_speculation_start() \
267 u64 val = x86_spec_ctrl_base | SPEC_CTRL_IBRS; \
270 alternative_msr_write(MSR_IA32_SPEC_CTRL, val, \
271 X86_FEATURE_USE_IBRS_FW); \
274 #define firmware_restrict_branch_speculation_end() \
276 u64 val = x86_spec_ctrl_base; \
278 alternative_msr_write(MSR_IA32_SPEC_CTRL, val, \
279 X86_FEATURE_USE_IBRS_FW); \
283 DECLARE_STATIC_KEY_FALSE(switch_to_cond_stibp);
284 DECLARE_STATIC_KEY_FALSE(switch_mm_cond_ibpb);
285 DECLARE_STATIC_KEY_FALSE(switch_mm_always_ibpb);
287 DECLARE_STATIC_KEY_FALSE(mds_user_clear);
288 DECLARE_STATIC_KEY_FALSE(mds_idle_clear);
290 DECLARE_STATIC_KEY_FALSE(switch_mm_cond_l1d_flush);
292 DECLARE_STATIC_KEY_FALSE(mmio_stale_data_clear);
294 #include <asm/segment.h>
297 * mds_clear_cpu_buffers - Mitigation for MDS and TAA vulnerability
299 * This uses the otherwise unused and obsolete VERW instruction in
300 * combination with microcode which triggers a CPU buffer flush when the
301 * instruction is executed.
303 static __always_inline void mds_clear_cpu_buffers(void)
305 static const u16 ds = __KERNEL_DS;
308 * Has to be the memory-operand variant because only that
309 * guarantees the CPU buffer flush functionality according to
310 * documentation. The register-operand variant does not.
311 * Works with any segment selector, but a valid writable
312 * data segment is the fastest variant.
314 * "cc" clobber is required because VERW modifies ZF.
316 asm volatile("verw %[ds]" : : [ds] "m" (ds) : "cc");
320 * mds_user_clear_cpu_buffers - Mitigation for MDS and TAA vulnerability
322 * Clear CPU buffers if the corresponding static key is enabled
324 static __always_inline void mds_user_clear_cpu_buffers(void)
326 if (static_branch_likely(&mds_user_clear))
327 mds_clear_cpu_buffers();
331 * mds_idle_clear_cpu_buffers - Mitigation for MDS vulnerability
333 * Clear CPU buffers if the corresponding static key is enabled
335 static inline void mds_idle_clear_cpu_buffers(void)
337 if (static_branch_likely(&mds_idle_clear))
338 mds_clear_cpu_buffers();
341 #endif /* __ASSEMBLY__ */
343 #endif /* _ASM_X86_NOSPEC_BRANCH_H_ */