objtool: Update Retpoline validation
[linux-2.6-microblaze.git] / arch / x86 / include / asm / nospec-branch.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #ifndef _ASM_X86_NOSPEC_BRANCH_H_
4 #define _ASM_X86_NOSPEC_BRANCH_H_
5
6 #include <linux/static_key.h>
7 #include <linux/objtool.h>
8 #include <linux/linkage.h>
9
10 #include <asm/alternative.h>
11 #include <asm/cpufeatures.h>
12 #include <asm/msr-index.h>
13 #include <asm/unwind_hints.h>
14
15 #define RETPOLINE_THUNK_SIZE    32
16
17 /*
18  * Fill the CPU return stack buffer.
19  *
20  * Each entry in the RSB, if used for a speculative 'ret', contains an
21  * infinite 'pause; lfence; jmp' loop to capture speculative execution.
22  *
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.
28  *
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.
32  */
33
34 #define RSB_CLEAR_LOOPS         32      /* To forcibly overwrite all entries */
35
36 /*
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.
40  */
41 #define __FILL_RETURN_BUFFER(reg, nr, sp)       \
42         mov     $(nr/2), reg;                   \
43 771:                                            \
44         ANNOTATE_INTRA_FUNCTION_CALL;           \
45         call    772f;                           \
46 773:    /* speculation trap */                  \
47         UNWIND_HINT_EMPTY;                      \
48         pause;                                  \
49         lfence;                                 \
50         jmp     773b;                           \
51 772:                                            \
52         ANNOTATE_INTRA_FUNCTION_CALL;           \
53         call    774f;                           \
54 775:    /* speculation trap */                  \
55         UNWIND_HINT_EMPTY;                      \
56         pause;                                  \
57         lfence;                                 \
58         jmp     775b;                           \
59 774:                                            \
60         add     $(BITS_PER_LONG/8) * 2, sp;     \
61         dec     reg;                            \
62         jnz     771b;
63
64 #ifdef __ASSEMBLY__
65
66 /*
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
69  * builds.
70  */
71 .macro ANNOTATE_RETPOLINE_SAFE
72         .Lannotate_\@:
73         .pushsection .discard.retpoline_safe
74         _ASM_PTR .Lannotate_\@
75         .popsection
76 .endm
77
78 /*
79  * (ab)use RETPOLINE_SAFE on RET to annotate away 'bare' RET instructions
80  * vs RETBleed validation.
81  */
82 #define ANNOTATE_UNRET_SAFE ANNOTATE_RETPOLINE_SAFE
83
84 /*
85  * JMP_NOSPEC and CALL_NOSPEC macros can be used instead of a simple
86  * indirect jmp/call which may be susceptible to the Spectre variant 2
87  * attack.
88  */
89 .macro JMP_NOSPEC reg:req
90 #ifdef CONFIG_RETPOLINE
91         ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), \
92                       __stringify(jmp __x86_indirect_thunk_\reg), X86_FEATURE_RETPOLINE, \
93                       __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), X86_FEATURE_RETPOLINE_LFENCE
94 #else
95         jmp     *%\reg
96 #endif
97 .endm
98
99 .macro CALL_NOSPEC reg:req
100 #ifdef CONFIG_RETPOLINE
101         ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; call *%\reg), \
102                       __stringify(call __x86_indirect_thunk_\reg), X86_FEATURE_RETPOLINE, \
103                       __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; call *%\reg), X86_FEATURE_RETPOLINE_LFENCE
104 #else
105         call    *%\reg
106 #endif
107 .endm
108
109  /*
110   * A simpler FILL_RETURN_BUFFER macro. Don't make people use the CPP
111   * monstrosity above, manually.
112   */
113 .macro FILL_RETURN_BUFFER reg:req nr:req ftr:req
114 #ifdef CONFIG_RETPOLINE
115         ALTERNATIVE "jmp .Lskip_rsb_\@", "", \ftr
116         __FILL_RETURN_BUFFER(\reg,\nr,%_ASM_SP)
117 .Lskip_rsb_\@:
118 #endif
119 .endm
120
121 /*
122  * Mitigate RETBleed for AMD/Hygon Zen uarch. Requires KERNEL CR3 because the
123  * return thunk isn't mapped into the userspace tables (then again, AMD
124  * typically has NO_MELTDOWN).
125  *
126  * Doesn't clobber any registers but does require a stable stack.
127  *
128  * As such, this must be placed after every *SWITCH_TO_KERNEL_CR3 at a point
129  * where we have a stack but before any RET instruction.
130  */
131 .macro UNTRAIN_RET
132 #ifdef CONFIG_RETPOLINE
133         ALTERNATIVE "", "call zen_untrain_ret", X86_FEATURE_UNRET
134 #endif
135 .endm
136
137 #else /* __ASSEMBLY__ */
138
139 #define ANNOTATE_RETPOLINE_SAFE                                 \
140         "999:\n\t"                                              \
141         ".pushsection .discard.retpoline_safe\n\t"              \
142         _ASM_PTR " 999b\n\t"                                    \
143         ".popsection\n\t"
144
145 typedef u8 retpoline_thunk_t[RETPOLINE_THUNK_SIZE];
146 extern retpoline_thunk_t __x86_indirect_thunk_array[];
147
148 extern void __x86_return_thunk(void);
149 extern void zen_untrain_ret(void);
150
151 #ifdef CONFIG_RETPOLINE
152
153 #define GEN(reg) \
154         extern retpoline_thunk_t __x86_indirect_thunk_ ## reg;
155 #include <asm/GEN-for-each-reg.h>
156 #undef GEN
157
158 #ifdef CONFIG_X86_64
159
160 /*
161  * Inline asm uses the %V modifier which is only in newer GCC
162  * which is ensured when CONFIG_RETPOLINE is defined.
163  */
164 # define CALL_NOSPEC                                            \
165         ALTERNATIVE_2(                                          \
166         ANNOTATE_RETPOLINE_SAFE                                 \
167         "call *%[thunk_target]\n",                              \
168         "call __x86_indirect_thunk_%V[thunk_target]\n",         \
169         X86_FEATURE_RETPOLINE,                                  \
170         "lfence;\n"                                             \
171         ANNOTATE_RETPOLINE_SAFE                                 \
172         "call *%[thunk_target]\n",                              \
173         X86_FEATURE_RETPOLINE_LFENCE)
174
175 # define THUNK_TARGET(addr) [thunk_target] "r" (addr)
176
177 #else /* CONFIG_X86_32 */
178 /*
179  * For i386 we use the original ret-equivalent retpoline, because
180  * otherwise we'll run out of registers. We don't care about CET
181  * here, anyway.
182  */
183 # define CALL_NOSPEC                                            \
184         ALTERNATIVE_2(                                          \
185         ANNOTATE_RETPOLINE_SAFE                                 \
186         "call *%[thunk_target]\n",                              \
187         "       jmp    904f;\n"                                 \
188         "       .align 16\n"                                    \
189         "901:   call   903f;\n"                                 \
190         "902:   pause;\n"                                       \
191         "       lfence;\n"                                      \
192         "       jmp    902b;\n"                                 \
193         "       .align 16\n"                                    \
194         "903:   lea    4(%%esp), %%esp;\n"                      \
195         "       pushl  %[thunk_target];\n"                      \
196         "       ret;\n"                                         \
197         "       .align 16\n"                                    \
198         "904:   call   901b;\n",                                \
199         X86_FEATURE_RETPOLINE,                                  \
200         "lfence;\n"                                             \
201         ANNOTATE_RETPOLINE_SAFE                                 \
202         "call *%[thunk_target]\n",                              \
203         X86_FEATURE_RETPOLINE_LFENCE)
204
205 # define THUNK_TARGET(addr) [thunk_target] "rm" (addr)
206 #endif
207 #else /* No retpoline for C / inline asm */
208 # define CALL_NOSPEC "call *%[thunk_target]\n"
209 # define THUNK_TARGET(addr) [thunk_target] "rm" (addr)
210 #endif
211
212 /* The Spectre V2 mitigation variants */
213 enum spectre_v2_mitigation {
214         SPECTRE_V2_NONE,
215         SPECTRE_V2_RETPOLINE,
216         SPECTRE_V2_LFENCE,
217         SPECTRE_V2_EIBRS,
218         SPECTRE_V2_EIBRS_RETPOLINE,
219         SPECTRE_V2_EIBRS_LFENCE,
220         SPECTRE_V2_IBRS,
221 };
222
223 /* The indirect branch speculation control variants */
224 enum spectre_v2_user_mitigation {
225         SPECTRE_V2_USER_NONE,
226         SPECTRE_V2_USER_STRICT,
227         SPECTRE_V2_USER_STRICT_PREFERRED,
228         SPECTRE_V2_USER_PRCTL,
229         SPECTRE_V2_USER_SECCOMP,
230 };
231
232 /* The Speculative Store Bypass disable variants */
233 enum ssb_mitigation {
234         SPEC_STORE_BYPASS_NONE,
235         SPEC_STORE_BYPASS_DISABLE,
236         SPEC_STORE_BYPASS_PRCTL,
237         SPEC_STORE_BYPASS_SECCOMP,
238 };
239
240 extern char __indirect_thunk_start[];
241 extern char __indirect_thunk_end[];
242
243 static __always_inline
244 void alternative_msr_write(unsigned int msr, u64 val, unsigned int feature)
245 {
246         asm volatile(ALTERNATIVE("", "wrmsr", %c[feature])
247                 : : "c" (msr),
248                     "a" ((u32)val),
249                     "d" ((u32)(val >> 32)),
250                     [feature] "i" (feature)
251                 : "memory");
252 }
253
254 static inline void indirect_branch_prediction_barrier(void)
255 {
256         u64 val = PRED_CMD_IBPB;
257
258         alternative_msr_write(MSR_IA32_PRED_CMD, val, X86_FEATURE_USE_IBPB);
259 }
260
261 /* The Intel SPEC CTRL MSR base value cache */
262 extern u64 x86_spec_ctrl_base;
263 extern void write_spec_ctrl_current(u64 val, bool force);
264 extern u64 spec_ctrl_current(void);
265
266 /*
267  * With retpoline, we must use IBRS to restrict branch prediction
268  * before calling into firmware.
269  *
270  * (Implemented as CPP macros due to header hell.)
271  */
272 #define firmware_restrict_branch_speculation_start()                    \
273 do {                                                                    \
274         u64 val = x86_spec_ctrl_base | SPEC_CTRL_IBRS;                  \
275                                                                         \
276         preempt_disable();                                              \
277         alternative_msr_write(MSR_IA32_SPEC_CTRL, val,                  \
278                               X86_FEATURE_USE_IBRS_FW);                 \
279 } while (0)
280
281 #define firmware_restrict_branch_speculation_end()                      \
282 do {                                                                    \
283         u64 val = x86_spec_ctrl_base;                                   \
284                                                                         \
285         alternative_msr_write(MSR_IA32_SPEC_CTRL, val,                  \
286                               X86_FEATURE_USE_IBRS_FW);                 \
287         preempt_enable();                                               \
288 } while (0)
289
290 DECLARE_STATIC_KEY_FALSE(switch_to_cond_stibp);
291 DECLARE_STATIC_KEY_FALSE(switch_mm_cond_ibpb);
292 DECLARE_STATIC_KEY_FALSE(switch_mm_always_ibpb);
293
294 DECLARE_STATIC_KEY_FALSE(mds_user_clear);
295 DECLARE_STATIC_KEY_FALSE(mds_idle_clear);
296
297 DECLARE_STATIC_KEY_FALSE(switch_mm_cond_l1d_flush);
298
299 DECLARE_STATIC_KEY_FALSE(mmio_stale_data_clear);
300
301 #include <asm/segment.h>
302
303 /**
304  * mds_clear_cpu_buffers - Mitigation for MDS and TAA vulnerability
305  *
306  * This uses the otherwise unused and obsolete VERW instruction in
307  * combination with microcode which triggers a CPU buffer flush when the
308  * instruction is executed.
309  */
310 static __always_inline void mds_clear_cpu_buffers(void)
311 {
312         static const u16 ds = __KERNEL_DS;
313
314         /*
315          * Has to be the memory-operand variant because only that
316          * guarantees the CPU buffer flush functionality according to
317          * documentation. The register-operand variant does not.
318          * Works with any segment selector, but a valid writable
319          * data segment is the fastest variant.
320          *
321          * "cc" clobber is required because VERW modifies ZF.
322          */
323         asm volatile("verw %[ds]" : : [ds] "m" (ds) : "cc");
324 }
325
326 /**
327  * mds_user_clear_cpu_buffers - Mitigation for MDS and TAA vulnerability
328  *
329  * Clear CPU buffers if the corresponding static key is enabled
330  */
331 static __always_inline void mds_user_clear_cpu_buffers(void)
332 {
333         if (static_branch_likely(&mds_user_clear))
334                 mds_clear_cpu_buffers();
335 }
336
337 /**
338  * mds_idle_clear_cpu_buffers - Mitigation for MDS vulnerability
339  *
340  * Clear CPU buffers if the corresponding static key is enabled
341  */
342 static inline void mds_idle_clear_cpu_buffers(void)
343 {
344         if (static_branch_likely(&mds_idle_clear))
345                 mds_clear_cpu_buffers();
346 }
347
348 #endif /* __ASSEMBLY__ */
349
350 #endif /* _ASM_X86_NOSPEC_BRANCH_H_ */