blob: 2973b3fb0ec1ad863edf61df69c08d910a42a7b9 [file] [log] [blame]
Olivier Deprez157378f2022-04-04 15:47:50 +02001// SPDX-License-Identifier: GPL-2.0
2#include <linux/static_call.h>
3#include <linux/memory.h>
4#include <linux/bug.h>
5#include <asm/text-patching.h>
6
7enum insn_type {
8 CALL = 0, /* site call */
9 NOP = 1, /* site cond-call */
10 JMP = 2, /* tramp / site tail-call */
11 RET = 3, /* tramp / site cond-tail-call */
12};
13
Olivier Deprez92d4c212022-12-06 15:05:30 +010014/*
15 * ud1 %esp, %ecx - a 3 byte #UD that is unique to trampolines, chosen such
16 * that there is no false-positive trampoline identification while also being a
17 * speculation stop.
18 */
19static const u8 tramp_ud[] = { 0x0f, 0xb9, 0xcc };
20
21static const u8 retinsn[] = { RET_INSN_OPCODE, 0xcc, 0xcc, 0xcc, 0xcc };
22
23static void __ref __static_call_transform(void *insn, enum insn_type type,
24 void *func, bool modinit)
Olivier Deprez157378f2022-04-04 15:47:50 +020025{
26 int size = CALL_INSN_SIZE;
27 const void *code;
28
29 switch (type) {
30 case CALL:
31 code = text_gen_insn(CALL_INSN_OPCODE, insn, func);
32 break;
33
34 case NOP:
35 code = ideal_nops[NOP_ATOMIC5];
36 break;
37
38 case JMP:
39 code = text_gen_insn(JMP32_INSN_OPCODE, insn, func);
40 break;
41
42 case RET:
Olivier Deprez92d4c212022-12-06 15:05:30 +010043 if (cpu_feature_enabled(X86_FEATURE_RETHUNK))
44 code = text_gen_insn(JMP32_INSN_OPCODE, insn, &__x86_return_thunk);
45 else
46 code = &retinsn;
Olivier Deprez157378f2022-04-04 15:47:50 +020047 break;
48 }
49
50 if (memcmp(insn, code, size) == 0)
51 return;
52
Olivier Deprez92d4c212022-12-06 15:05:30 +010053 if (system_state == SYSTEM_BOOTING || modinit)
Olivier Deprez157378f2022-04-04 15:47:50 +020054 return text_poke_early(insn, code, size);
55
56 text_poke_bp(insn, code, size, NULL);
57}
58
59static void __static_call_validate(void *insn, bool tail)
60{
61 u8 opcode = *(u8 *)insn;
62
63 if (tail) {
64 if (opcode == JMP32_INSN_OPCODE ||
65 opcode == RET_INSN_OPCODE)
66 return;
67 } else {
68 if (opcode == CALL_INSN_OPCODE ||
69 !memcmp(insn, ideal_nops[NOP_ATOMIC5], 5))
70 return;
71 }
72
73 /*
74 * If we ever trigger this, our text is corrupt, we'll probably not live long.
75 */
76 WARN_ONCE(1, "unexpected static_call insn opcode 0x%x at %pS\n", opcode, insn);
77}
78
79static inline enum insn_type __sc_insn(bool null, bool tail)
80{
81 /*
82 * Encode the following table without branches:
83 *
84 * tail null insn
85 * -----+-------+------
86 * 0 | 0 | CALL
87 * 0 | 1 | NOP
88 * 1 | 0 | JMP
89 * 1 | 1 | RET
90 */
91 return 2*tail + null;
92}
93
94void arch_static_call_transform(void *site, void *tramp, void *func, bool tail)
95{
96 mutex_lock(&text_mutex);
97
98 if (tramp) {
99 __static_call_validate(tramp, true);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100100 __static_call_transform(tramp, __sc_insn(!func, true), func, false);
Olivier Deprez157378f2022-04-04 15:47:50 +0200101 }
102
103 if (IS_ENABLED(CONFIG_HAVE_STATIC_CALL_INLINE) && site) {
104 __static_call_validate(site, tail);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100105 __static_call_transform(site, __sc_insn(!func, tail), func, false);
Olivier Deprez157378f2022-04-04 15:47:50 +0200106 }
107
108 mutex_unlock(&text_mutex);
109}
110EXPORT_SYMBOL_GPL(arch_static_call_transform);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100111
112#ifdef CONFIG_RETHUNK
113/*
114 * This is called by apply_returns() to fix up static call trampolines,
115 * specifically ARCH_DEFINE_STATIC_CALL_NULL_TRAMP which is recorded as
116 * having a return trampoline.
117 *
118 * The problem is that static_call() is available before determining
119 * X86_FEATURE_RETHUNK and, by implication, running alternatives.
120 *
121 * This means that __static_call_transform() above can have overwritten the
122 * return trampoline and we now need to fix things up to be consistent.
123 */
124bool __static_call_fixup(void *tramp, u8 op, void *dest)
125{
126 if (memcmp(tramp+5, tramp_ud, 3)) {
127 /* Not a trampoline site, not our problem. */
128 return false;
129 }
130
131 mutex_lock(&text_mutex);
132 if (op == RET_INSN_OPCODE || dest == &__x86_return_thunk)
133 __static_call_transform(tramp, RET, NULL, true);
134 mutex_unlock(&text_mutex);
135
136 return true;
137}
138#endif