807f674fd59e5ce75c2493f0c9f567705ab3cd24
[platform/kernel/linux-rpi.git] / arch / x86 / lib / retpoline.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #include <linux/stringify.h>
4 #include <linux/linkage.h>
5 #include <asm/dwarf2.h>
6 #include <asm/cpufeatures.h>
7 #include <asm/alternative.h>
8 #include <asm/export.h>
9 #include <asm/nospec-branch.h>
10 #include <asm/unwind_hints.h>
11 #include <asm/frame.h>
12
13         .section .text.__x86.indirect_thunk
14
15 .macro RETPOLINE reg
16         ANNOTATE_INTRA_FUNCTION_CALL
17         call    .Ldo_rop_\@
18 .Lspec_trap_\@:
19         UNWIND_HINT_EMPTY
20         pause
21         lfence
22         jmp .Lspec_trap_\@
23 .Ldo_rop_\@:
24         mov     %\reg, (%_ASM_SP)
25         UNWIND_HINT_FUNC
26         RET
27 .endm
28
29 .macro THUNK reg
30
31         .align RETPOLINE_THUNK_SIZE
32 SYM_INNER_LABEL(__x86_indirect_thunk_\reg, SYM_L_GLOBAL)
33         UNWIND_HINT_EMPTY
34
35         ALTERNATIVE_2 __stringify(RETPOLINE \reg), \
36                       __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *%\reg; int3), X86_FEATURE_RETPOLINE_LFENCE, \
37                       __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), ALT_NOT(X86_FEATURE_RETPOLINE)
38
39 .endm
40
41 /*
42  * Despite being an assembler file we can't just use .irp here
43  * because __KSYM_DEPS__ only uses the C preprocessor and would
44  * only see one instance of "__x86_indirect_thunk_\reg" rather
45  * than one per register with the correct names. So we do it
46  * the simple and nasty way...
47  *
48  * Worse, you can only have a single EXPORT_SYMBOL per line,
49  * and CPP can't insert newlines, so we have to repeat everything
50  * at least twice.
51  */
52
53 #define __EXPORT_THUNK(sym)     _ASM_NOKPROBE(sym); EXPORT_SYMBOL(sym)
54 #define EXPORT_THUNK(reg)       __EXPORT_THUNK(__x86_indirect_thunk_ ## reg)
55
56         .align RETPOLINE_THUNK_SIZE
57 SYM_CODE_START(__x86_indirect_thunk_array)
58
59 #define GEN(reg) THUNK reg
60 #include <asm/GEN-for-each-reg.h>
61 #undef GEN
62
63         .align RETPOLINE_THUNK_SIZE
64 SYM_CODE_END(__x86_indirect_thunk_array)
65
66 #define GEN(reg) EXPORT_THUNK(reg)
67 #include <asm/GEN-for-each-reg.h>
68 #undef GEN
69
70 /*
71  * This function name is magical and is used by -mfunction-return=thunk-extern
72  * for the compiler to generate JMPs to it.
73  */
74         .section .text.__x86.return_thunk
75
76 /*
77  * Safety details here pertain to the AMD Zen{1,2} microarchitecture:
78  * 1) The RET at __x86_return_thunk must be on a 64 byte boundary, for
79  *    alignment within the BTB.
80  * 2) The instruction at zen_untrain_ret must contain, and not
81  *    end with, the 0xc3 byte of the RET.
82  * 3) STIBP must be enabled, or SMT disabled, to prevent the sibling thread
83  *    from re-poisioning the BTB prediction.
84  */
85         .align 64
86         .skip 63, 0xcc
87 SYM_FUNC_START_NOALIGN(zen_untrain_ret);
88
89         /*
90          * As executed from zen_untrain_ret, this is:
91          *
92          *   TEST $0xcc, %bl
93          *   LFENCE
94          *   JMP __x86_return_thunk
95          *
96          * Executing the TEST instruction has a side effect of evicting any BTB
97          * prediction (potentially attacker controlled) attached to the RET, as
98          * __x86_return_thunk + 1 isn't an instruction boundary at the moment.
99          */
100         .byte   0xf6
101
102         /*
103          * As executed from __x86_return_thunk, this is a plain RET.
104          *
105          * As part of the TEST above, RET is the ModRM byte, and INT3 the imm8.
106          *
107          * We subsequently jump backwards and architecturally execute the RET.
108          * This creates a correct BTB prediction (type=ret), but in the
109          * meantime we suffer Straight Line Speculation (because the type was
110          * no branch) which is halted by the INT3.
111          *
112          * With SMT enabled and STIBP active, a sibling thread cannot poison
113          * RET's prediction to a type of its choice, but can evict the
114          * prediction due to competitive sharing. If the prediction is
115          * evicted, __x86_return_thunk will suffer Straight Line Speculation
116          * which will be contained safely by the INT3.
117          */
118 SYM_INNER_LABEL(__x86_return_thunk, SYM_L_GLOBAL)
119         ret
120         int3
121 SYM_CODE_END(__x86_return_thunk)
122
123         /*
124          * Ensure the TEST decoding / BTB invalidation is complete.
125          */
126         lfence
127
128         /*
129          * Jump back and execute the RET in the middle of the TEST instruction.
130          * INT3 is for SLS protection.
131          */
132         jmp __x86_return_thunk
133         int3
134 SYM_FUNC_END(zen_untrain_ret)
135 __EXPORT_THUNK(zen_untrain_ret)
136
137 EXPORT_SYMBOL(__x86_return_thunk)