blob: ec90c3228991231289f4c008ac0d866e02d07c0b [file] [log] [blame]
David Woodhouse76b04382018-01-11 21:46:25 +00001/* SPDX-License-Identifier: GPL-2.0 */
2
Borislav Petkov7a32fc52018-01-26 13:11:37 +01003#ifndef _ASM_X86_NOSPEC_BRANCH_H_
4#define _ASM_X86_NOSPEC_BRANCH_H_
David Woodhouse76b04382018-01-11 21:46:25 +00005
6#include <asm/alternative.h>
7#include <asm/alternative-asm.h>
8#include <asm/cpufeatures.h>
Peter Zijlstraea00f302018-02-13 14:28:19 +01009#include <asm/msr-index.h>
David Woodhouse76b04382018-01-11 21:46:25 +000010
David Woodhoused1c99102018-02-19 10:50:56 +000011/*
12 * Fill the CPU return stack buffer.
13 *
14 * Each entry in the RSB, if used for a speculative 'ret', contains an
15 * infinite 'pause; lfence; jmp' loop to capture speculative execution.
16 *
17 * This is required in various cases for retpoline and IBRS-based
18 * mitigations for the Spectre variant 2 vulnerability. Sometimes to
19 * eliminate potentially bogus entries from the RSB, and sometimes
20 * purely to ensure that it doesn't get empty, which on some CPUs would
21 * allow predictions from other (unwanted!) sources to be used.
22 *
23 * We define a CPP macro such that it can be used from both .S files and
24 * inline assembly. It's possible to do a .macro and then include that
25 * from C via asm(".include <asm/nospec-branch.h>") but let's not go there.
26 */
27
28#define RSB_CLEAR_LOOPS 32 /* To forcibly overwrite all entries */
29#define RSB_FILL_LOOPS 16 /* To avoid underflow */
30
31/*
32 * Google experimented with loop-unrolling and this turned out to be
33 * the optimal version — two calls, each with their own speculation
34 * trap should their return address end up getting used, in a loop.
35 */
36#define __FILL_RETURN_BUFFER(reg, nr, sp) \
37 mov $(nr/2), reg; \
38771: \
39 call 772f; \
40773: /* speculation trap */ \
41 pause; \
42 lfence; \
43 jmp 773b; \
44772: \
45 call 774f; \
46775: /* speculation trap */ \
47 pause; \
48 lfence; \
49 jmp 775b; \
50774: \
51 dec reg; \
52 jnz 771b; \
53 add $(BITS_PER_LONG/8) * nr, sp;
54
David Woodhouse76b04382018-01-11 21:46:25 +000055#ifdef __ASSEMBLY__
56
57/*
58 * This should be used immediately before a retpoline alternative. It tells
59 * objtool where the retpolines are so that it can make sense of the control
60 * flow by just reading the original instruction(s) and ignoring the
61 * alternatives.
62 */
63.macro ANNOTATE_NOSPEC_ALTERNATIVE
64 .Lannotate_\@:
65 .pushsection .discard.nospec
66 .long .Lannotate_\@ - .
67 .popsection
68.endm
69
70/*
71 * These are the bare retpoline primitives for indirect jmp and call.
72 * Do not use these directly; they only exist to make the ALTERNATIVE
73 * invocation below less ugly.
74 */
75.macro RETPOLINE_JMP reg:req
76 call .Ldo_rop_\@
77.Lspec_trap_\@:
78 pause
Tom Lendacky28d437d2018-01-13 17:27:30 -060079 lfence
David Woodhouse76b04382018-01-11 21:46:25 +000080 jmp .Lspec_trap_\@
81.Ldo_rop_\@:
82 mov \reg, (%_ASM_SP)
83 ret
84.endm
85
86/*
87 * This is a wrapper around RETPOLINE_JMP so the called function in reg
88 * returns to the instruction after the macro.
89 */
90.macro RETPOLINE_CALL reg:req
91 jmp .Ldo_call_\@
92.Ldo_retpoline_jmp_\@:
93 RETPOLINE_JMP \reg
94.Ldo_call_\@:
95 call .Ldo_retpoline_jmp_\@
96.endm
97
98/*
99 * JMP_NOSPEC and CALL_NOSPEC macros can be used instead of a simple
100 * indirect jmp/call which may be susceptible to the Spectre variant 2
101 * attack.
102 */
103.macro JMP_NOSPEC reg:req
104#ifdef CONFIG_RETPOLINE
105 ANNOTATE_NOSPEC_ALTERNATIVE
106 ALTERNATIVE_2 __stringify(jmp *\reg), \
107 __stringify(RETPOLINE_JMP \reg), X86_FEATURE_RETPOLINE, \
108 __stringify(lfence; jmp *\reg), X86_FEATURE_RETPOLINE_AMD
109#else
110 jmp *\reg
111#endif
112.endm
113
114.macro CALL_NOSPEC reg:req
115#ifdef CONFIG_RETPOLINE
116 ANNOTATE_NOSPEC_ALTERNATIVE
117 ALTERNATIVE_2 __stringify(call *\reg), \
118 __stringify(RETPOLINE_CALL \reg), X86_FEATURE_RETPOLINE,\
119 __stringify(lfence; call *\reg), X86_FEATURE_RETPOLINE_AMD
120#else
121 call *\reg
122#endif
123.endm
124
David Woodhoused1c99102018-02-19 10:50:56 +0000125 /*
126 * A simpler FILL_RETURN_BUFFER macro. Don't make people use the CPP
127 * monstrosity above, manually.
128 */
129.macro FILL_RETURN_BUFFER reg:req nr:req ftr:req
David Woodhouse117cc7a2018-01-12 11:11:27 +0000130#ifdef CONFIG_RETPOLINE
David Woodhoused1c99102018-02-19 10:50:56 +0000131 ANNOTATE_NOSPEC_ALTERNATIVE
132 ALTERNATIVE "jmp .Lskip_rsb_\@", \
133 __stringify(__FILL_RETURN_BUFFER(\reg,\nr,%_ASM_SP)) \
134 \ftr
135.Lskip_rsb_\@:
David Woodhouse117cc7a2018-01-12 11:11:27 +0000136#endif
137.endm
138
David Woodhouse76b04382018-01-11 21:46:25 +0000139#else /* __ASSEMBLY__ */
140
141#define ANNOTATE_NOSPEC_ALTERNATIVE \
142 "999:\n\t" \
143 ".pushsection .discard.nospec\n\t" \
144 ".long 999b - .\n\t" \
145 ".popsection\n\t"
146
147#if defined(CONFIG_X86_64) && defined(RETPOLINE)
148
149/*
150 * Since the inline asm uses the %V modifier which is only in newer GCC,
151 * the 64-bit one is dependent on RETPOLINE not CONFIG_RETPOLINE.
152 */
153# define CALL_NOSPEC \
154 ANNOTATE_NOSPEC_ALTERNATIVE \
155 ALTERNATIVE( \
156 "call *%[thunk_target]\n", \
157 "call __x86_indirect_thunk_%V[thunk_target]\n", \
158 X86_FEATURE_RETPOLINE)
159# define THUNK_TARGET(addr) [thunk_target] "r" (addr)
160
161#elif defined(CONFIG_X86_32) && defined(CONFIG_RETPOLINE)
162/*
163 * For i386 we use the original ret-equivalent retpoline, because
164 * otherwise we'll run out of registers. We don't care about CET
165 * here, anyway.
166 */
167# define CALL_NOSPEC ALTERNATIVE("call *%[thunk_target]\n", \
168 " jmp 904f;\n" \
169 " .align 16\n" \
170 "901: call 903f;\n" \
171 "902: pause;\n" \
Tom Lendacky28d437d2018-01-13 17:27:30 -0600172 " lfence;\n" \
David Woodhouse76b04382018-01-11 21:46:25 +0000173 " jmp 902b;\n" \
174 " .align 16\n" \
175 "903: addl $4, %%esp;\n" \
176 " pushl %[thunk_target];\n" \
177 " ret;\n" \
178 " .align 16\n" \
179 "904: call 901b;\n", \
180 X86_FEATURE_RETPOLINE)
181
182# define THUNK_TARGET(addr) [thunk_target] "rm" (addr)
David Woodhouse117cc7a2018-01-12 11:11:27 +0000183#else /* No retpoline for C / inline asm */
David Woodhouse76b04382018-01-11 21:46:25 +0000184# define CALL_NOSPEC "call *%[thunk_target]\n"
185# define THUNK_TARGET(addr) [thunk_target] "rm" (addr)
186#endif
187
David Woodhouseda285122018-01-11 21:46:26 +0000188/* The Spectre V2 mitigation variants */
189enum spectre_v2_mitigation {
190 SPECTRE_V2_NONE,
191 SPECTRE_V2_RETPOLINE_MINIMAL,
192 SPECTRE_V2_RETPOLINE_MINIMAL_AMD,
193 SPECTRE_V2_RETPOLINE_GENERIC,
194 SPECTRE_V2_RETPOLINE_AMD,
195 SPECTRE_V2_IBRS,
196};
197
Masami Hiramatsu736e80a2018-01-19 01:14:21 +0900198extern char __indirect_thunk_start[];
199extern char __indirect_thunk_end[];
200
David Woodhouse117cc7a2018-01-12 11:11:27 +0000201/*
202 * On VMEXIT we must ensure that no RSB predictions learned in the guest
203 * can be followed in the host, by overwriting the RSB completely. Both
204 * retpoline and IBRS mitigations for Spectre v2 need this; only on future
Darren Kennyaf189c92018-02-02 19:12:20 +0000205 * CPUs with IBRS_ALL *might* it be avoided.
David Woodhouse117cc7a2018-01-12 11:11:27 +0000206 */
207static inline void vmexit_fill_RSB(void)
208{
209#ifdef CONFIG_RETPOLINE
David Woodhoused1c99102018-02-19 10:50:56 +0000210 unsigned long loops;
211
212 asm volatile (ANNOTATE_NOSPEC_ALTERNATIVE
213 ALTERNATIVE("jmp 910f",
214 __stringify(__FILL_RETURN_BUFFER(%0, RSB_CLEAR_LOOPS, %1)),
215 X86_FEATURE_RETPOLINE)
216 "910:"
217 : "=r" (loops), ASM_CALL_CONSTRAINT
218 : : "memory" );
David Woodhouse117cc7a2018-01-12 11:11:27 +0000219#endif
220}
Andi Kleen3f7d8752018-01-17 14:53:28 -0800221
David Woodhousedd844412018-02-19 10:50:54 +0000222#define alternative_msr_write(_msr, _val, _feature) \
223 asm volatile(ALTERNATIVE("", \
224 "movl %[msr], %%ecx\n\t" \
225 "movl %[val], %%eax\n\t" \
226 "movl $0, %%edx\n\t" \
227 "wrmsr", \
228 _feature) \
229 : : [msr] "i" (_msr), [val] "i" (_val) \
230 : "eax", "ecx", "edx", "memory")
231
David Woodhouse20ffa1c2018-01-25 16:14:15 +0000232static inline void indirect_branch_prediction_barrier(void)
233{
David Woodhousedd844412018-02-19 10:50:54 +0000234 alternative_msr_write(MSR_IA32_PRED_CMD, PRED_CMD_IBPB,
235 X86_FEATURE_USE_IBPB);
236}
237
238/*
239 * With retpoline, we must use IBRS to restrict branch prediction
240 * before calling into firmware.
241 */
242static inline void firmware_restrict_branch_speculation_start(void)
243{
244 preempt_disable();
245 alternative_msr_write(MSR_IA32_SPEC_CTRL, SPEC_CTRL_IBRS,
246 X86_FEATURE_USE_IBRS_FW);
247}
248
249static inline void firmware_restrict_branch_speculation_end(void)
250{
251 alternative_msr_write(MSR_IA32_SPEC_CTRL, 0,
252 X86_FEATURE_USE_IBRS_FW);
253 preempt_enable();
David Woodhouse20ffa1c2018-01-25 16:14:15 +0000254}
255
David Woodhouse76b04382018-01-11 21:46:25 +0000256#endif /* __ASSEMBLY__ */
Borislav Petkov7a32fc52018-01-26 13:11:37 +0100257#endif /* _ASM_X86_NOSPEC_BRANCH_H_ */