x86/alternative: Introduce text_poke_set
[linux-block.git] / arch / x86 / net / bpf_jit_comp.c
CommitLineData
b886d83c 1// SPDX-License-Identifier: GPL-2.0-only
a2c7a983 2/*
58ffa1b4 3 * BPF JIT compiler
0a14842f 4 *
3b58908a 5 * Copyright (C) 2011-2013 Eric Dumazet (eric.dumazet@gmail.com)
58ffa1b4 6 * Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
0a14842f 7 */
0a14842f
ED
8#include <linux/netdevice.h>
9#include <linux/filter.h>
855ddb56 10#include <linux/if_vlan.h>
71d22d58 11#include <linux/bpf.h>
5964b200 12#include <linux/memory.h>
75ccbef6 13#include <linux/sort.h>
3dec541b 14#include <asm/extable.h>
d1163651 15#include <asm/set_memory.h>
a493a87f 16#include <asm/nospec-branch.h>
5964b200 17#include <asm/text-patching.h>
0a14842f 18
5cccc702 19static u8 *emit_code(u8 *ptr, u32 bytes, unsigned int len)
0a14842f
ED
20{
21 if (len == 1)
22 *ptr = bytes;
23 else if (len == 2)
24 *(u16 *)ptr = bytes;
25 else {
26 *(u32 *)ptr = bytes;
27 barrier();
28 }
29 return ptr + len;
30}
31
b52f00e6 32#define EMIT(bytes, len) \
ced50fc4 33 do { prog = emit_code(prog, bytes, len); } while (0)
0a14842f
ED
34
35#define EMIT1(b1) EMIT(b1, 1)
36#define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2)
37#define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3)
38#define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4)
a2c7a983 39
62258278 40#define EMIT1_off32(b1, off) \
a2c7a983 41 do { EMIT1(b1); EMIT(off, 4); } while (0)
62258278 42#define EMIT2_off32(b1, b2, off) \
a2c7a983 43 do { EMIT2(b1, b2); EMIT(off, 4); } while (0)
62258278 44#define EMIT3_off32(b1, b2, b3, off) \
a2c7a983 45 do { EMIT3(b1, b2, b3); EMIT(off, 4); } while (0)
62258278 46#define EMIT4_off32(b1, b2, b3, b4, off) \
a2c7a983 47 do { EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0)
0a14842f 48
58912710
PZ
49#ifdef CONFIG_X86_KERNEL_IBT
50#define EMIT_ENDBR() EMIT(gen_endbr(), 4)
51#else
52#define EMIT_ENDBR()
53#endif
54
5cccc702 55static bool is_imm8(int value)
0a14842f
ED
56{
57 return value <= 127 && value >= -128;
58}
59
5cccc702 60static bool is_simm32(s64 value)
0a14842f 61{
6fe8b9c1
DB
62 return value == (s64)(s32)value;
63}
64
65static bool is_uimm32(u64 value)
66{
67 return value == (u64)(u32)value;
0a14842f
ED
68}
69
e430f34e 70/* mov dst, src */
a2c7a983
IM
71#define EMIT_mov(DST, SRC) \
72 do { \
73 if (DST != SRC) \
74 EMIT3(add_2mod(0x48, DST, SRC), 0x89, add_2reg(0xC0, DST, SRC)); \
62258278
AS
75 } while (0)
76
77static int bpf_size_to_x86_bytes(int bpf_size)
78{
79 if (bpf_size == BPF_W)
80 return 4;
81 else if (bpf_size == BPF_H)
82 return 2;
83 else if (bpf_size == BPF_B)
84 return 1;
85 else if (bpf_size == BPF_DW)
86 return 4; /* imm32 */
87 else
88 return 0;
89}
0a14842f 90
a2c7a983
IM
91/*
92 * List of x86 cond jumps opcodes (. + s8)
0a14842f
ED
93 * Add 0x10 (and an extra 0x0f) to generate far jumps (. + s32)
94 */
95#define X86_JB 0x72
96#define X86_JAE 0x73
97#define X86_JE 0x74
98#define X86_JNE 0x75
99#define X86_JBE 0x76
100#define X86_JA 0x77
52afc51e 101#define X86_JL 0x7C
62258278 102#define X86_JGE 0x7D
52afc51e 103#define X86_JLE 0x7E
62258278 104#define X86_JG 0x7F
0a14842f 105
a2c7a983 106/* Pick a register outside of BPF range for JIT internal work */
959a7579 107#define AUX_REG (MAX_BPF_JIT_REG + 1)
fec56f58 108#define X86_REG_R9 (MAX_BPF_JIT_REG + 2)
62258278 109
a2c7a983
IM
110/*
111 * The following table maps BPF registers to x86-64 registers.
959a7579 112 *
a2c7a983 113 * x86-64 register R12 is unused, since if used as base address
959a7579
DB
114 * register in load/store instructions, it always needs an
115 * extra byte of encoding and is callee saved.
116 *
fec56f58
AS
117 * x86-64 register R9 is not used by BPF programs, but can be used by BPF
118 * trampoline. x86-64 register R10 is used for blinding (if enabled).
62258278
AS
119 */
120static const int reg2hex[] = {
a2c7a983
IM
121 [BPF_REG_0] = 0, /* RAX */
122 [BPF_REG_1] = 7, /* RDI */
123 [BPF_REG_2] = 6, /* RSI */
124 [BPF_REG_3] = 2, /* RDX */
125 [BPF_REG_4] = 1, /* RCX */
126 [BPF_REG_5] = 0, /* R8 */
127 [BPF_REG_6] = 3, /* RBX callee saved */
128 [BPF_REG_7] = 5, /* R13 callee saved */
129 [BPF_REG_8] = 6, /* R14 callee saved */
130 [BPF_REG_9] = 7, /* R15 callee saved */
131 [BPF_REG_FP] = 5, /* RBP readonly */
132 [BPF_REG_AX] = 2, /* R10 temp register */
133 [AUX_REG] = 3, /* R11 temp register */
fec56f58 134 [X86_REG_R9] = 1, /* R9 register, 6th function argument */
62258278
AS
135};
136
3dec541b
AS
137static const int reg2pt_regs[] = {
138 [BPF_REG_0] = offsetof(struct pt_regs, ax),
139 [BPF_REG_1] = offsetof(struct pt_regs, di),
140 [BPF_REG_2] = offsetof(struct pt_regs, si),
141 [BPF_REG_3] = offsetof(struct pt_regs, dx),
142 [BPF_REG_4] = offsetof(struct pt_regs, cx),
143 [BPF_REG_5] = offsetof(struct pt_regs, r8),
144 [BPF_REG_6] = offsetof(struct pt_regs, bx),
145 [BPF_REG_7] = offsetof(struct pt_regs, r13),
146 [BPF_REG_8] = offsetof(struct pt_regs, r14),
147 [BPF_REG_9] = offsetof(struct pt_regs, r15),
148};
149
a2c7a983
IM
150/*
151 * is_ereg() == true if BPF register 'reg' maps to x86-64 r8..r15
62258278
AS
152 * which need extra byte of encoding.
153 * rax,rcx,...,rbp have simpler encoding
154 */
5cccc702 155static bool is_ereg(u32 reg)
62258278 156{
d148134b
JP
157 return (1 << reg) & (BIT(BPF_REG_5) |
158 BIT(AUX_REG) |
159 BIT(BPF_REG_7) |
160 BIT(BPF_REG_8) |
959a7579 161 BIT(BPF_REG_9) |
fec56f58 162 BIT(X86_REG_R9) |
959a7579 163 BIT(BPF_REG_AX));
62258278
AS
164}
165
aee194b1
LN
166/*
167 * is_ereg_8l() == true if BPF register 'reg' is mapped to access x86-64
168 * lower 8-bit registers dil,sil,bpl,spl,r8b..r15b, which need extra byte
169 * of encoding. al,cl,dl,bl have simpler encoding.
170 */
171static bool is_ereg_8l(u32 reg)
172{
173 return is_ereg(reg) ||
174 (1 << reg) & (BIT(BPF_REG_1) |
175 BIT(BPF_REG_2) |
176 BIT(BPF_REG_FP));
177}
178
de0a444d
DB
179static bool is_axreg(u32 reg)
180{
181 return reg == BPF_REG_0;
182}
183
a2c7a983 184/* Add modifiers if 'reg' maps to x86-64 registers R8..R15 */
5cccc702 185static u8 add_1mod(u8 byte, u32 reg)
62258278
AS
186{
187 if (is_ereg(reg))
188 byte |= 1;
189 return byte;
190}
191
5cccc702 192static u8 add_2mod(u8 byte, u32 r1, u32 r2)
62258278
AS
193{
194 if (is_ereg(r1))
195 byte |= 1;
196 if (is_ereg(r2))
197 byte |= 4;
198 return byte;
199}
200
a2c7a983 201/* Encode 'dst_reg' register into x86-64 opcode 'byte' */
5cccc702 202static u8 add_1reg(u8 byte, u32 dst_reg)
62258278 203{
e430f34e 204 return byte + reg2hex[dst_reg];
62258278
AS
205}
206
a2c7a983 207/* Encode 'dst_reg' and 'src_reg' registers into x86-64 opcode 'byte' */
5cccc702 208static u8 add_2reg(u8 byte, u32 dst_reg, u32 src_reg)
62258278 209{
e430f34e 210 return byte + reg2hex[dst_reg] + (reg2hex[src_reg] << 3);
62258278
AS
211}
212
e5f02cac
BJ
213/* Some 1-byte opcodes for binary ALU operations */
214static u8 simple_alu_opcodes[] = {
215 [BPF_ADD] = 0x01,
216 [BPF_SUB] = 0x29,
217 [BPF_AND] = 0x21,
218 [BPF_OR] = 0x09,
219 [BPF_XOR] = 0x31,
220 [BPF_LSH] = 0xE0,
221 [BPF_RSH] = 0xE8,
222 [BPF_ARSH] = 0xF8,
223};
224
738cbe72
DB
225static void jit_fill_hole(void *area, unsigned int size)
226{
a2c7a983 227 /* Fill whole space with INT3 instructions */
738cbe72
DB
228 memset(area, 0xcc, size);
229}
230
f3c2af7b 231struct jit_context {
a2c7a983 232 int cleanup_addr; /* Epilogue code offset */
dceba081
PZ
233
234 /*
235 * Program specific offsets of labels in the code; these rely on the
236 * JIT doing at least 2 passes, recording the position on the first
237 * pass, only to generate the correct offset on the second pass.
238 */
239 int tail_call_direct_label;
240 int tail_call_indirect_label;
f3c2af7b
AS
241};
242
a2c7a983 243/* Maximum number of bytes emitted while JITing one eBPF insn */
e0ee9c12
AS
244#define BPF_MAX_INSN_SIZE 128
245#define BPF_INSN_SAFETY 64
4b3da77b
DB
246
247/* Number of bytes emit_patch() needs to generate instructions */
248#define X86_PATCH_SIZE 5
ebf7d1f5 249/* Number of bytes that will be skipped on tailcall */
58912710 250#define X86_TAIL_CALL_OFFSET (11 + ENDBR_INSN_SIZE)
e0ee9c12 251
ebf7d1f5
MF
252static void push_callee_regs(u8 **pprog, bool *callee_regs_used)
253{
254 u8 *prog = *pprog;
ebf7d1f5
MF
255
256 if (callee_regs_used[0])
257 EMIT1(0x53); /* push rbx */
258 if (callee_regs_used[1])
259 EMIT2(0x41, 0x55); /* push r13 */
260 if (callee_regs_used[2])
261 EMIT2(0x41, 0x56); /* push r14 */
262 if (callee_regs_used[3])
263 EMIT2(0x41, 0x57); /* push r15 */
264 *pprog = prog;
265}
266
267static void pop_callee_regs(u8 **pprog, bool *callee_regs_used)
268{
269 u8 *prog = *pprog;
ebf7d1f5
MF
270
271 if (callee_regs_used[3])
272 EMIT2(0x41, 0x5F); /* pop r15 */
273 if (callee_regs_used[2])
274 EMIT2(0x41, 0x5E); /* pop r14 */
275 if (callee_regs_used[1])
276 EMIT2(0x41, 0x5D); /* pop r13 */
277 if (callee_regs_used[0])
278 EMIT1(0x5B); /* pop rbx */
279 *pprog = prog;
280}
b52f00e6 281
a2c7a983 282/*
ebf7d1f5
MF
283 * Emit x86-64 prologue code for BPF program.
284 * bpf_tail_call helper will skip the first X86_TAIL_CALL_OFFSET bytes
285 * while jumping to another program
b52f00e6 286 */
ebf7d1f5
MF
287static void emit_prologue(u8 **pprog, u32 stack_depth, bool ebpf_from_cbpf,
288 bool tail_call_reachable, bool is_subprog)
0a14842f 289{
b52f00e6 290 u8 *prog = *pprog;
0a14842f 291
9fd4a39d
AS
292 /* BPF trampoline can be made to work without these nops,
293 * but let's waste 5 bytes for now and optimize later
294 */
58912710 295 EMIT_ENDBR();
ced50fc4
JO
296 memcpy(prog, x86_nops[5], X86_PATCH_SIZE);
297 prog += X86_PATCH_SIZE;
ebf7d1f5
MF
298 if (!ebpf_from_cbpf) {
299 if (tail_call_reachable && !is_subprog)
300 EMIT2(0x31, 0xC0); /* xor eax, eax */
301 else
302 EMIT2(0x66, 0x90); /* nop2 */
303 }
fe8d9571
AS
304 EMIT1(0x55); /* push rbp */
305 EMIT3(0x48, 0x89, 0xE5); /* mov rbp, rsp */
58912710
PZ
306
307 /* X86_TAIL_CALL_OFFSET is here */
308 EMIT_ENDBR();
309
fe8d9571 310 /* sub rsp, rounded_stack_depth */
4d0b8c0b
MF
311 if (stack_depth)
312 EMIT3_off32(0x48, 0x81, 0xEC, round_up(stack_depth, 8));
ebf7d1f5
MF
313 if (tail_call_reachable)
314 EMIT1(0x50); /* push rax */
b52f00e6
AS
315 *pprog = prog;
316}
317
428d5df1
DB
318static int emit_patch(u8 **pprog, void *func, void *ip, u8 opcode)
319{
320 u8 *prog = *pprog;
428d5df1
DB
321 s64 offset;
322
323 offset = func - (ip + X86_PATCH_SIZE);
324 if (!is_simm32(offset)) {
325 pr_err("Target call %p is out of range\n", func);
326 return -ERANGE;
327 }
328 EMIT1_off32(opcode, offset);
329 *pprog = prog;
330 return 0;
331}
332
333static int emit_call(u8 **pprog, void *func, void *ip)
334{
335 return emit_patch(pprog, func, ip, 0xE8);
336}
337
338static int emit_jump(u8 **pprog, void *func, void *ip)
339{
340 return emit_patch(pprog, func, ip, 0xE9);
341}
342
343static int __bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
1022a549 344 void *old_addr, void *new_addr)
428d5df1 345{
a89dfde3 346 const u8 *nop_insn = x86_nops[5];
b553a6ec
DB
347 u8 old_insn[X86_PATCH_SIZE];
348 u8 new_insn[X86_PATCH_SIZE];
428d5df1
DB
349 u8 *prog;
350 int ret;
351
b553a6ec
DB
352 memcpy(old_insn, nop_insn, X86_PATCH_SIZE);
353 if (old_addr) {
354 prog = old_insn;
355 ret = t == BPF_MOD_CALL ?
356 emit_call(&prog, old_addr, ip) :
357 emit_jump(&prog, old_addr, ip);
358 if (ret)
359 return ret;
428d5df1
DB
360 }
361
b553a6ec
DB
362 memcpy(new_insn, nop_insn, X86_PATCH_SIZE);
363 if (new_addr) {
364 prog = new_insn;
365 ret = t == BPF_MOD_CALL ?
366 emit_call(&prog, new_addr, ip) :
367 emit_jump(&prog, new_addr, ip);
368 if (ret)
369 return ret;
428d5df1
DB
370 }
371
372 ret = -EBUSY;
373 mutex_lock(&text_mutex);
374 if (memcmp(ip, old_insn, X86_PATCH_SIZE))
375 goto out;
ebf7d1f5 376 ret = 1;
b553a6ec 377 if (memcmp(ip, new_insn, X86_PATCH_SIZE)) {
1022a549 378 text_poke_bp(ip, new_insn, X86_PATCH_SIZE, NULL);
ebf7d1f5 379 ret = 0;
b553a6ec 380 }
428d5df1
DB
381out:
382 mutex_unlock(&text_mutex);
383 return ret;
384}
385
386int bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
387 void *old_addr, void *new_addr)
388{
389 if (!is_kernel_text((long)ip) &&
390 !is_bpf_text_address((long)ip))
391 /* BPF poking in modules is not supported */
392 return -EINVAL;
393
58912710
PZ
394 /*
395 * See emit_prologue(), for IBT builds the trampoline hook is preceded
396 * with an ENDBR instruction.
397 */
398 if (is_endbr(*(u32 *)ip))
399 ip += ENDBR_INSN_SIZE;
400
1022a549 401 return __bpf_arch_text_poke(ip, t, old_addr, new_addr);
428d5df1
DB
402}
403
87c87ecd
PZ
404#define EMIT_LFENCE() EMIT3(0x0F, 0xAE, 0xE8)
405
406static void emit_indirect_jump(u8 **pprog, int reg, u8 *ip)
407{
408 u8 *prog = *pprog;
409
410#ifdef CONFIG_RETPOLINE
d45476d9 411 if (cpu_feature_enabled(X86_FEATURE_RETPOLINE_LFENCE)) {
87c87ecd
PZ
412 EMIT_LFENCE();
413 EMIT2(0xFF, 0xE0 + reg);
414 } else if (cpu_feature_enabled(X86_FEATURE_RETPOLINE)) {
be8a0965 415 OPTIMIZER_HIDE_VAR(reg);
87c87ecd
PZ
416 emit_jump(&prog, &__x86_indirect_thunk_array[reg], ip);
417 } else
418#endif
419 EMIT2(0xFF, 0xE0 + reg);
420
421 *pprog = prog;
422}
423
a2c7a983
IM
424/*
425 * Generate the following code:
426 *
b52f00e6
AS
427 * ... bpf_tail_call(void *ctx, struct bpf_array *array, u64 index) ...
428 * if (index >= array->map.max_entries)
429 * goto out;
ebf7f6f0 430 * if (tail_call_cnt++ >= MAX_TAIL_CALL_CNT)
b52f00e6 431 * goto out;
2a36f0b9 432 * prog = array->ptrs[index];
b52f00e6
AS
433 * if (prog == NULL)
434 * goto out;
435 * goto *(prog->bpf_func + prologue_size);
436 * out:
437 */
ebf7d1f5 438static void emit_bpf_tail_call_indirect(u8 **pprog, bool *callee_regs_used,
dceba081
PZ
439 u32 stack_depth, u8 *ip,
440 struct jit_context *ctx)
b52f00e6 441{
ebf7d1f5 442 int tcc_off = -4 - round_up(stack_depth, 8);
dceba081
PZ
443 u8 *prog = *pprog, *start = *pprog;
444 int offset;
4d0b8c0b 445
a2c7a983
IM
446 /*
447 * rdi - pointer to ctx
b52f00e6
AS
448 * rsi - pointer to bpf_array
449 * rdx - index in bpf_array
450 */
451
a2c7a983
IM
452 /*
453 * if (index >= array->map.max_entries)
454 * goto out;
b52f00e6 455 */
90caccdd
AS
456 EMIT2(0x89, 0xD2); /* mov edx, edx */
457 EMIT3(0x39, 0x56, /* cmp dword ptr [rsi + 16], edx */
b52f00e6 458 offsetof(struct bpf_array, map.max_entries));
dceba081
PZ
459
460 offset = ctx->tail_call_indirect_label - (prog + 2 - start);
461 EMIT2(X86_JBE, offset); /* jbe out */
b52f00e6 462
a2c7a983 463 /*
ebf7f6f0 464 * if (tail_call_cnt++ >= MAX_TAIL_CALL_CNT)
a2c7a983 465 * goto out;
b52f00e6 466 */
ebf7d1f5 467 EMIT2_off32(0x8B, 0x85, tcc_off); /* mov eax, dword ptr [rbp - tcc_off] */
b52f00e6 468 EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT); /* cmp eax, MAX_TAIL_CALL_CNT */
dceba081
PZ
469
470 offset = ctx->tail_call_indirect_label - (prog + 2 - start);
ebf7f6f0 471 EMIT2(X86_JAE, offset); /* jae out */
b52f00e6 472 EMIT3(0x83, 0xC0, 0x01); /* add eax, 1 */
ebf7d1f5 473 EMIT2_off32(0x89, 0x85, tcc_off); /* mov dword ptr [rbp - tcc_off], eax */
b52f00e6 474
2a36f0b9 475 /* prog = array->ptrs[index]; */
0d4ddce3 476 EMIT4_off32(0x48, 0x8B, 0x8C, 0xD6, /* mov rcx, [rsi + rdx * 8 + offsetof(...)] */
2a36f0b9 477 offsetof(struct bpf_array, ptrs));
b52f00e6 478
a2c7a983
IM
479 /*
480 * if (prog == NULL)
481 * goto out;
b52f00e6 482 */
ebf7d1f5 483 EMIT3(0x48, 0x85, 0xC9); /* test rcx,rcx */
b52f00e6 484
dceba081
PZ
485 offset = ctx->tail_call_indirect_label - (prog + 2 - start);
486 EMIT2(X86_JE, offset); /* je out */
487
488 pop_callee_regs(&prog, callee_regs_used);
ebf7d1f5
MF
489
490 EMIT1(0x58); /* pop rax */
4d0b8c0b
MF
491 if (stack_depth)
492 EMIT3_off32(0x48, 0x81, 0xC4, /* add rsp, sd */
493 round_up(stack_depth, 8));
ebf7d1f5
MF
494
495 /* goto *(prog->bpf_func + X86_TAIL_CALL_OFFSET); */
0d4ddce3 496 EMIT4(0x48, 0x8B, 0x49, /* mov rcx, qword ptr [rcx + 32] */
b52f00e6 497 offsetof(struct bpf_prog, bpf_func));
ebf7d1f5
MF
498 EMIT4(0x48, 0x83, 0xC1, /* add rcx, X86_TAIL_CALL_OFFSET */
499 X86_TAIL_CALL_OFFSET);
a2c7a983 500 /*
0d4ddce3 501 * Now we're ready to jump into next BPF program
b52f00e6 502 * rdi == ctx (1st arg)
ebf7d1f5 503 * rcx == prog->bpf_func + X86_TAIL_CALL_OFFSET
b52f00e6 504 */
87c87ecd 505 emit_indirect_jump(&prog, 1 /* rcx */, ip + (prog - start));
b52f00e6
AS
506
507 /* out: */
dceba081 508 ctx->tail_call_indirect_label = prog - start;
b52f00e6
AS
509 *pprog = prog;
510}
511
428d5df1 512static void emit_bpf_tail_call_direct(struct bpf_jit_poke_descriptor *poke,
dceba081
PZ
513 u8 **pprog, u8 *ip,
514 bool *callee_regs_used, u32 stack_depth,
515 struct jit_context *ctx)
428d5df1 516{
ebf7d1f5 517 int tcc_off = -4 - round_up(stack_depth, 8);
dceba081
PZ
518 u8 *prog = *pprog, *start = *pprog;
519 int offset;
ebf7d1f5 520
428d5df1 521 /*
ebf7f6f0 522 * if (tail_call_cnt++ >= MAX_TAIL_CALL_CNT)
428d5df1
DB
523 * goto out;
524 */
ebf7d1f5 525 EMIT2_off32(0x8B, 0x85, tcc_off); /* mov eax, dword ptr [rbp - tcc_off] */
428d5df1 526 EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT); /* cmp eax, MAX_TAIL_CALL_CNT */
dceba081
PZ
527
528 offset = ctx->tail_call_direct_label - (prog + 2 - start);
ebf7f6f0 529 EMIT2(X86_JAE, offset); /* jae out */
428d5df1 530 EMIT3(0x83, 0xC0, 0x01); /* add eax, 1 */
ebf7d1f5 531 EMIT2_off32(0x89, 0x85, tcc_off); /* mov dword ptr [rbp - tcc_off], eax */
428d5df1 532
dceba081 533 poke->tailcall_bypass = ip + (prog - start);
ebf7d1f5 534 poke->adj_off = X86_TAIL_CALL_OFFSET;
dceba081 535 poke->tailcall_target = ip + ctx->tail_call_direct_label - X86_PATCH_SIZE;
ebf7d1f5
MF
536 poke->bypass_addr = (u8 *)poke->tailcall_target + X86_PATCH_SIZE;
537
538 emit_jump(&prog, (u8 *)poke->tailcall_target + X86_PATCH_SIZE,
539 poke->tailcall_bypass);
540
dceba081 541 pop_callee_regs(&prog, callee_regs_used);
ebf7d1f5 542 EMIT1(0x58); /* pop rax */
4d0b8c0b
MF
543 if (stack_depth)
544 EMIT3_off32(0x48, 0x81, 0xC4, round_up(stack_depth, 8));
428d5df1 545
a89dfde3 546 memcpy(prog, x86_nops[5], X86_PATCH_SIZE);
428d5df1 547 prog += X86_PATCH_SIZE;
dceba081 548
428d5df1 549 /* out: */
dceba081 550 ctx->tail_call_direct_label = prog - start;
428d5df1
DB
551
552 *pprog = prog;
553}
554
555static void bpf_tail_call_direct_fixup(struct bpf_prog *prog)
556{
428d5df1
DB
557 struct bpf_jit_poke_descriptor *poke;
558 struct bpf_array *array;
559 struct bpf_prog *target;
560 int i, ret;
561
562 for (i = 0; i < prog->aux->size_poke_tab; i++) {
563 poke = &prog->aux->poke_tab[i];
f263a814
JF
564 if (poke->aux && poke->aux != prog->aux)
565 continue;
566
cf71b174 567 WARN_ON_ONCE(READ_ONCE(poke->tailcall_target_stable));
428d5df1
DB
568
569 if (poke->reason != BPF_POKE_REASON_TAIL_CALL)
570 continue;
571
572 array = container_of(poke->tail_call.map, struct bpf_array, map);
573 mutex_lock(&array->aux->poke_mutex);
574 target = array->ptrs[poke->tail_call.key];
575 if (target) {
cf71b174
MF
576 ret = __bpf_arch_text_poke(poke->tailcall_target,
577 BPF_MOD_JUMP, NULL,
428d5df1 578 (u8 *)target->bpf_func +
1022a549 579 poke->adj_off);
428d5df1 580 BUG_ON(ret < 0);
ebf7d1f5
MF
581 ret = __bpf_arch_text_poke(poke->tailcall_bypass,
582 BPF_MOD_JUMP,
583 (u8 *)poke->tailcall_target +
1022a549 584 X86_PATCH_SIZE, NULL);
ebf7d1f5 585 BUG_ON(ret < 0);
428d5df1 586 }
cf71b174 587 WRITE_ONCE(poke->tailcall_target_stable, true);
428d5df1
DB
588 mutex_unlock(&array->aux->poke_mutex);
589 }
590}
591
6fe8b9c1
DB
592static void emit_mov_imm32(u8 **pprog, bool sign_propagate,
593 u32 dst_reg, const u32 imm32)
594{
595 u8 *prog = *pprog;
596 u8 b1, b2, b3;
6fe8b9c1 597
a2c7a983
IM
598 /*
599 * Optimization: if imm32 is positive, use 'mov %eax, imm32'
6fe8b9c1
DB
600 * (which zero-extends imm32) to save 2 bytes.
601 */
602 if (sign_propagate && (s32)imm32 < 0) {
603 /* 'mov %rax, imm32' sign extends imm32 */
604 b1 = add_1mod(0x48, dst_reg);
605 b2 = 0xC7;
606 b3 = 0xC0;
607 EMIT3_off32(b1, b2, add_1reg(b3, dst_reg), imm32);
608 goto done;
609 }
610
a2c7a983
IM
611 /*
612 * Optimization: if imm32 is zero, use 'xor %eax, %eax'
6fe8b9c1
DB
613 * to save 3 bytes.
614 */
615 if (imm32 == 0) {
616 if (is_ereg(dst_reg))
617 EMIT1(add_2mod(0x40, dst_reg, dst_reg));
618 b2 = 0x31; /* xor */
619 b3 = 0xC0;
620 EMIT2(b2, add_2reg(b3, dst_reg, dst_reg));
621 goto done;
622 }
623
624 /* mov %eax, imm32 */
625 if (is_ereg(dst_reg))
626 EMIT1(add_1mod(0x40, dst_reg));
627 EMIT1_off32(add_1reg(0xB8, dst_reg), imm32);
628done:
629 *pprog = prog;
630}
631
632static void emit_mov_imm64(u8 **pprog, u32 dst_reg,
633 const u32 imm32_hi, const u32 imm32_lo)
634{
635 u8 *prog = *pprog;
6fe8b9c1
DB
636
637 if (is_uimm32(((u64)imm32_hi << 32) | (u32)imm32_lo)) {
a2c7a983
IM
638 /*
639 * For emitting plain u32, where sign bit must not be
6fe8b9c1
DB
640 * propagated LLVM tends to load imm64 over mov32
641 * directly, so save couple of bytes by just doing
642 * 'mov %eax, imm32' instead.
643 */
644 emit_mov_imm32(&prog, false, dst_reg, imm32_lo);
645 } else {
646 /* movabsq %rax, imm64 */
647 EMIT2(add_1mod(0x48, dst_reg), add_1reg(0xB8, dst_reg));
648 EMIT(imm32_lo, 4);
649 EMIT(imm32_hi, 4);
650 }
651
652 *pprog = prog;
653}
654
4c38e2f3
DB
655static void emit_mov_reg(u8 **pprog, bool is64, u32 dst_reg, u32 src_reg)
656{
657 u8 *prog = *pprog;
4c38e2f3
DB
658
659 if (is64) {
660 /* mov dst, src */
661 EMIT_mov(dst_reg, src_reg);
662 } else {
663 /* mov32 dst, src */
664 if (is_ereg(dst_reg) || is_ereg(src_reg))
665 EMIT1(add_2mod(0x40, dst_reg, src_reg));
666 EMIT2(0x89, add_2reg(0xC0, dst_reg, src_reg));
667 }
668
669 *pprog = prog;
670}
671
11c11d07
BJ
672/* Emit the suffix (ModR/M etc) for addressing *(ptr_reg + off) and val_reg */
673static void emit_insn_suffix(u8 **pprog, u32 ptr_reg, u32 val_reg, int off)
674{
675 u8 *prog = *pprog;
11c11d07
BJ
676
677 if (is_imm8(off)) {
678 /* 1-byte signed displacement.
679 *
680 * If off == 0 we could skip this and save one extra byte, but
681 * special case of x86 R13 which always needs an offset is not
682 * worth the hassle
683 */
684 EMIT2(add_2reg(0x40, ptr_reg, val_reg), off);
685 } else {
686 /* 4-byte signed displacement */
687 EMIT1_off32(add_2reg(0x80, ptr_reg, val_reg), off);
688 }
689 *pprog = prog;
690}
691
74007cfc
BJ
692/*
693 * Emit a REX byte if it will be necessary to address these registers
694 */
695static void maybe_emit_mod(u8 **pprog, u32 dst_reg, u32 src_reg, bool is64)
696{
697 u8 *prog = *pprog;
74007cfc
BJ
698
699 if (is64)
700 EMIT1(add_2mod(0x48, dst_reg, src_reg));
701 else if (is_ereg(dst_reg) || is_ereg(src_reg))
702 EMIT1(add_2mod(0x40, dst_reg, src_reg));
703 *pprog = prog;
704}
705
6364d7d7
JM
706/*
707 * Similar version of maybe_emit_mod() for a single register
708 */
709static void maybe_emit_1mod(u8 **pprog, u32 reg, bool is64)
710{
711 u8 *prog = *pprog;
712
713 if (is64)
714 EMIT1(add_1mod(0x48, reg));
715 else if (is_ereg(reg))
716 EMIT1(add_1mod(0x40, reg));
717 *pprog = prog;
718}
719
3b2744e6
AS
720/* LDX: dst_reg = *(u8*)(src_reg + off) */
721static void emit_ldx(u8 **pprog, u32 size, u32 dst_reg, u32 src_reg, int off)
722{
723 u8 *prog = *pprog;
3b2744e6
AS
724
725 switch (size) {
726 case BPF_B:
727 /* Emit 'movzx rax, byte ptr [rax + off]' */
728 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB6);
729 break;
730 case BPF_H:
731 /* Emit 'movzx rax, word ptr [rax + off]' */
732 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB7);
733 break;
734 case BPF_W:
735 /* Emit 'mov eax, dword ptr [rax+0x14]' */
736 if (is_ereg(dst_reg) || is_ereg(src_reg))
737 EMIT2(add_2mod(0x40, src_reg, dst_reg), 0x8B);
738 else
739 EMIT1(0x8B);
740 break;
741 case BPF_DW:
742 /* Emit 'mov rax, qword ptr [rax+0x14]' */
743 EMIT2(add_2mod(0x48, src_reg, dst_reg), 0x8B);
744 break;
745 }
11c11d07 746 emit_insn_suffix(&prog, src_reg, dst_reg, off);
3b2744e6
AS
747 *pprog = prog;
748}
749
750/* STX: *(u8*)(dst_reg + off) = src_reg */
751static void emit_stx(u8 **pprog, u32 size, u32 dst_reg, u32 src_reg, int off)
752{
753 u8 *prog = *pprog;
3b2744e6
AS
754
755 switch (size) {
756 case BPF_B:
757 /* Emit 'mov byte ptr [rax + off], al' */
aee194b1
LN
758 if (is_ereg(dst_reg) || is_ereg_8l(src_reg))
759 /* Add extra byte for eregs or SIL,DIL,BPL in src_reg */
3b2744e6
AS
760 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x88);
761 else
762 EMIT1(0x88);
763 break;
764 case BPF_H:
765 if (is_ereg(dst_reg) || is_ereg(src_reg))
766 EMIT3(0x66, add_2mod(0x40, dst_reg, src_reg), 0x89);
767 else
768 EMIT2(0x66, 0x89);
769 break;
770 case BPF_W:
771 if (is_ereg(dst_reg) || is_ereg(src_reg))
772 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x89);
773 else
774 EMIT1(0x89);
775 break;
776 case BPF_DW:
777 EMIT2(add_2mod(0x48, dst_reg, src_reg), 0x89);
778 break;
779 }
11c11d07 780 emit_insn_suffix(&prog, dst_reg, src_reg, off);
3b2744e6
AS
781 *pprog = prog;
782}
783
91c960b0
BJ
784static int emit_atomic(u8 **pprog, u8 atomic_op,
785 u32 dst_reg, u32 src_reg, s16 off, u8 bpf_size)
786{
787 u8 *prog = *pprog;
91c960b0
BJ
788
789 EMIT1(0xF0); /* lock prefix */
790
791 maybe_emit_mod(&prog, dst_reg, src_reg, bpf_size == BPF_DW);
792
793 /* emit opcode */
794 switch (atomic_op) {
795 case BPF_ADD:
981f94c3
BJ
796 case BPF_AND:
797 case BPF_OR:
798 case BPF_XOR:
91c960b0
BJ
799 /* lock *(u32/u64*)(dst_reg + off) <op>= src_reg */
800 EMIT1(simple_alu_opcodes[atomic_op]);
801 break;
5ca419f2
BJ
802 case BPF_ADD | BPF_FETCH:
803 /* src_reg = atomic_fetch_add(dst_reg + off, src_reg); */
804 EMIT2(0x0F, 0xC1);
805 break;
5ffa2550
BJ
806 case BPF_XCHG:
807 /* src_reg = atomic_xchg(dst_reg + off, src_reg); */
808 EMIT1(0x87);
809 break;
810 case BPF_CMPXCHG:
811 /* r0 = atomic_cmpxchg(dst_reg + off, r0, src_reg); */
812 EMIT2(0x0F, 0xB1);
813 break;
91c960b0
BJ
814 default:
815 pr_err("bpf_jit: unknown atomic opcode %02x\n", atomic_op);
816 return -EFAULT;
817 }
818
819 emit_insn_suffix(&prog, dst_reg, src_reg, off);
820
821 *pprog = prog;
822 return 0;
823}
824
46d28947 825bool ex_handler_bpf(const struct exception_table_entry *x, struct pt_regs *regs)
3dec541b
AS
826{
827 u32 reg = x->fixup >> 8;
828
829 /* jump over faulting load and clear dest register */
830 *(unsigned long *)((void *)regs + reg) = 0;
831 regs->ip += x->fixup & 0xff;
832 return true;
833}
834
ebf7d1f5
MF
835static void detect_reg_usage(struct bpf_insn *insn, int insn_cnt,
836 bool *regs_used, bool *tail_call_seen)
837{
838 int i;
839
840 for (i = 1; i <= insn_cnt; i++, insn++) {
841 if (insn->code == (BPF_JMP | BPF_TAIL_CALL))
842 *tail_call_seen = true;
843 if (insn->dst_reg == BPF_REG_6 || insn->src_reg == BPF_REG_6)
844 regs_used[0] = true;
845 if (insn->dst_reg == BPF_REG_7 || insn->src_reg == BPF_REG_7)
846 regs_used[1] = true;
847 if (insn->dst_reg == BPF_REG_8 || insn->src_reg == BPF_REG_8)
848 regs_used[2] = true;
849 if (insn->dst_reg == BPF_REG_9 || insn->src_reg == BPF_REG_9)
850 regs_used[3] = true;
851 }
852}
853
ced50fc4 854static void emit_nops(u8 **pprog, int len)
93c5aecc
GL
855{
856 u8 *prog = *pprog;
ced50fc4 857 int i, noplen;
93c5aecc
GL
858
859 while (len > 0) {
860 noplen = len;
861
862 if (noplen > ASM_NOP_MAX)
863 noplen = ASM_NOP_MAX;
864
865 for (i = 0; i < noplen; i++)
a89dfde3 866 EMIT1(x86_nops[noplen][i]);
93c5aecc
GL
867 len -= noplen;
868 }
869
870 *pprog = prog;
93c5aecc
GL
871}
872
873#define INSN_SZ_DIFF (((addrs[i] - addrs[i - 1]) - (prog - temp)))
874
1022a549 875static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image, u8 *rw_image,
93c5aecc 876 int oldproglen, struct jit_context *ctx, bool jmp_padding)
b52f00e6 877{
ebf7d1f5 878 bool tail_call_reachable = bpf_prog->aux->tail_call_reachable;
b52f00e6 879 struct bpf_insn *insn = bpf_prog->insnsi;
ebf7d1f5 880 bool callee_regs_used[4] = {};
b52f00e6 881 int insn_cnt = bpf_prog->len;
ebf7d1f5 882 bool tail_call_seen = false;
b52f00e6
AS
883 bool seen_exit = false;
884 u8 temp[BPF_MAX_INSN_SIZE + BPF_INSN_SAFETY];
ced50fc4 885 int i, excnt = 0;
93c5aecc 886 int ilen, proglen = 0;
b52f00e6 887 u8 *prog = temp;
91c960b0 888 int err;
b52f00e6 889
ebf7d1f5
MF
890 detect_reg_usage(insn, insn_cnt, callee_regs_used,
891 &tail_call_seen);
892
893 /* tail call's presence in current prog implies it is reachable */
894 tail_call_reachable |= tail_call_seen;
895
08691752 896 emit_prologue(&prog, bpf_prog->aux->stack_depth,
ebf7d1f5
MF
897 bpf_prog_was_classic(bpf_prog), tail_call_reachable,
898 bpf_prog->aux->func_idx != 0);
899 push_callee_regs(&prog, callee_regs_used);
93c5aecc
GL
900
901 ilen = prog - temp;
1022a549
SL
902 if (rw_image)
903 memcpy(rw_image + proglen, temp, ilen);
93c5aecc
GL
904 proglen += ilen;
905 addrs[0] = proglen;
906 prog = temp;
b52f00e6 907
7c2e988f 908 for (i = 1; i <= insn_cnt; i++, insn++) {
e430f34e
AS
909 const s32 imm32 = insn->imm;
910 u32 dst_reg = insn->dst_reg;
911 u32 src_reg = insn->src_reg;
6fe8b9c1 912 u8 b2 = 0, b3 = 0;
4c5de127 913 u8 *start_of_ldx;
62258278
AS
914 s64 jmp_offset;
915 u8 jmp_cond;
62258278 916 u8 *func;
93c5aecc 917 int nops;
62258278
AS
918
919 switch (insn->code) {
920 /* ALU */
921 case BPF_ALU | BPF_ADD | BPF_X:
922 case BPF_ALU | BPF_SUB | BPF_X:
923 case BPF_ALU | BPF_AND | BPF_X:
924 case BPF_ALU | BPF_OR | BPF_X:
925 case BPF_ALU | BPF_XOR | BPF_X:
926 case BPF_ALU64 | BPF_ADD | BPF_X:
927 case BPF_ALU64 | BPF_SUB | BPF_X:
928 case BPF_ALU64 | BPF_AND | BPF_X:
929 case BPF_ALU64 | BPF_OR | BPF_X:
930 case BPF_ALU64 | BPF_XOR | BPF_X:
74007cfc
BJ
931 maybe_emit_mod(&prog, dst_reg, src_reg,
932 BPF_CLASS(insn->code) == BPF_ALU64);
e5f02cac 933 b2 = simple_alu_opcodes[BPF_OP(insn->code)];
e430f34e 934 EMIT2(b2, add_2reg(0xC0, dst_reg, src_reg));
62258278 935 break;
0a14842f 936
62258278 937 case BPF_ALU64 | BPF_MOV | BPF_X:
62258278 938 case BPF_ALU | BPF_MOV | BPF_X:
4c38e2f3
DB
939 emit_mov_reg(&prog,
940 BPF_CLASS(insn->code) == BPF_ALU64,
941 dst_reg, src_reg);
62258278 942 break;
0a14842f 943
e430f34e 944 /* neg dst */
62258278
AS
945 case BPF_ALU | BPF_NEG:
946 case BPF_ALU64 | BPF_NEG:
6364d7d7
JM
947 maybe_emit_1mod(&prog, dst_reg,
948 BPF_CLASS(insn->code) == BPF_ALU64);
e430f34e 949 EMIT2(0xF7, add_1reg(0xD8, dst_reg));
62258278
AS
950 break;
951
952 case BPF_ALU | BPF_ADD | BPF_K:
953 case BPF_ALU | BPF_SUB | BPF_K:
954 case BPF_ALU | BPF_AND | BPF_K:
955 case BPF_ALU | BPF_OR | BPF_K:
956 case BPF_ALU | BPF_XOR | BPF_K:
957 case BPF_ALU64 | BPF_ADD | BPF_K:
958 case BPF_ALU64 | BPF_SUB | BPF_K:
959 case BPF_ALU64 | BPF_AND | BPF_K:
960 case BPF_ALU64 | BPF_OR | BPF_K:
961 case BPF_ALU64 | BPF_XOR | BPF_K:
6364d7d7
JM
962 maybe_emit_1mod(&prog, dst_reg,
963 BPF_CLASS(insn->code) == BPF_ALU64);
62258278 964
a2c7a983
IM
965 /*
966 * b3 holds 'normal' opcode, b2 short form only valid
de0a444d
DB
967 * in case dst is eax/rax.
968 */
62258278 969 switch (BPF_OP(insn->code)) {
de0a444d
DB
970 case BPF_ADD:
971 b3 = 0xC0;
972 b2 = 0x05;
973 break;
974 case BPF_SUB:
975 b3 = 0xE8;
976 b2 = 0x2D;
977 break;
978 case BPF_AND:
979 b3 = 0xE0;
980 b2 = 0x25;
981 break;
982 case BPF_OR:
983 b3 = 0xC8;
984 b2 = 0x0D;
985 break;
986 case BPF_XOR:
987 b3 = 0xF0;
988 b2 = 0x35;
989 break;
62258278
AS
990 }
991
e430f34e
AS
992 if (is_imm8(imm32))
993 EMIT3(0x83, add_1reg(b3, dst_reg), imm32);
de0a444d
DB
994 else if (is_axreg(dst_reg))
995 EMIT1_off32(b2, imm32);
62258278 996 else
e430f34e 997 EMIT2_off32(0x81, add_1reg(b3, dst_reg), imm32);
62258278
AS
998 break;
999
1000 case BPF_ALU64 | BPF_MOV | BPF_K:
62258278 1001 case BPF_ALU | BPF_MOV | BPF_K:
6fe8b9c1
DB
1002 emit_mov_imm32(&prog, BPF_CLASS(insn->code) == BPF_ALU64,
1003 dst_reg, imm32);
62258278
AS
1004 break;
1005
02ab695b 1006 case BPF_LD | BPF_IMM | BPF_DW:
6fe8b9c1 1007 emit_mov_imm64(&prog, dst_reg, insn[1].imm, insn[0].imm);
02ab695b
AS
1008 insn++;
1009 i++;
1010 break;
1011
e430f34e 1012 /* dst %= src, dst /= src, dst %= imm32, dst /= imm32 */
62258278
AS
1013 case BPF_ALU | BPF_MOD | BPF_X:
1014 case BPF_ALU | BPF_DIV | BPF_X:
1015 case BPF_ALU | BPF_MOD | BPF_K:
1016 case BPF_ALU | BPF_DIV | BPF_K:
1017 case BPF_ALU64 | BPF_MOD | BPF_X:
1018 case BPF_ALU64 | BPF_DIV | BPF_X:
1019 case BPF_ALU64 | BPF_MOD | BPF_K:
57a610f1
JM
1020 case BPF_ALU64 | BPF_DIV | BPF_K: {
1021 bool is64 = BPF_CLASS(insn->code) == BPF_ALU64;
62258278 1022
57a610f1
JM
1023 if (dst_reg != BPF_REG_0)
1024 EMIT1(0x50); /* push rax */
1025 if (dst_reg != BPF_REG_3)
1026 EMIT1(0x52); /* push rdx */
1027
1028 if (BPF_SRC(insn->code) == BPF_X) {
1029 if (src_reg == BPF_REG_0 ||
1030 src_reg == BPF_REG_3) {
1031 /* mov r11, src_reg */
1032 EMIT_mov(AUX_REG, src_reg);
1033 src_reg = AUX_REG;
1034 }
1035 } else {
e430f34e
AS
1036 /* mov r11, imm32 */
1037 EMIT3_off32(0x49, 0xC7, 0xC3, imm32);
57a610f1
JM
1038 src_reg = AUX_REG;
1039 }
62258278 1040
57a610f1
JM
1041 if (dst_reg != BPF_REG_0)
1042 /* mov rax, dst_reg */
1043 emit_mov_reg(&prog, is64, BPF_REG_0, dst_reg);
62258278 1044
a2c7a983
IM
1045 /*
1046 * xor edx, edx
62258278
AS
1047 * equivalent to 'xor rdx, rdx', but one byte less
1048 */
1049 EMIT2(0x31, 0xd2);
1050
57a610f1 1051 /* div src_reg */
6364d7d7 1052 maybe_emit_1mod(&prog, src_reg, is64);
57a610f1 1053 EMIT2(0xF7, add_1reg(0xF0, src_reg));
62258278 1054
57a610f1
JM
1055 if (BPF_OP(insn->code) == BPF_MOD &&
1056 dst_reg != BPF_REG_3)
1057 /* mov dst_reg, rdx */
1058 emit_mov_reg(&prog, is64, dst_reg, BPF_REG_3);
1059 else if (BPF_OP(insn->code) == BPF_DIV &&
1060 dst_reg != BPF_REG_0)
1061 /* mov dst_reg, rax */
1062 emit_mov_reg(&prog, is64, dst_reg, BPF_REG_0);
62258278 1063
57a610f1
JM
1064 if (dst_reg != BPF_REG_3)
1065 EMIT1(0x5A); /* pop rdx */
1066 if (dst_reg != BPF_REG_0)
1067 EMIT1(0x58); /* pop rax */
62258278 1068 break;
57a610f1 1069 }
62258278
AS
1070
1071 case BPF_ALU | BPF_MUL | BPF_K:
62258278 1072 case BPF_ALU64 | BPF_MUL | BPF_K:
6364d7d7
JM
1073 maybe_emit_mod(&prog, dst_reg, dst_reg,
1074 BPF_CLASS(insn->code) == BPF_ALU64);
62258278 1075
c0354077
JM
1076 if (is_imm8(imm32))
1077 /* imul dst_reg, dst_reg, imm8 */
1078 EMIT3(0x6B, add_2reg(0xC0, dst_reg, dst_reg),
1079 imm32);
62258278 1080 else
c0354077
JM
1081 /* imul dst_reg, dst_reg, imm32 */
1082 EMIT2_off32(0x69,
1083 add_2reg(0xC0, dst_reg, dst_reg),
1084 imm32);
1085 break;
62258278 1086
c0354077
JM
1087 case BPF_ALU | BPF_MUL | BPF_X:
1088 case BPF_ALU64 | BPF_MUL | BPF_X:
6364d7d7
JM
1089 maybe_emit_mod(&prog, src_reg, dst_reg,
1090 BPF_CLASS(insn->code) == BPF_ALU64);
62258278 1091
c0354077
JM
1092 /* imul dst_reg, src_reg */
1093 EMIT3(0x0F, 0xAF, add_2reg(0xC0, src_reg, dst_reg));
62258278 1094 break;
c0354077 1095
a2c7a983 1096 /* Shifts */
62258278
AS
1097 case BPF_ALU | BPF_LSH | BPF_K:
1098 case BPF_ALU | BPF_RSH | BPF_K:
1099 case BPF_ALU | BPF_ARSH | BPF_K:
1100 case BPF_ALU64 | BPF_LSH | BPF_K:
1101 case BPF_ALU64 | BPF_RSH | BPF_K:
1102 case BPF_ALU64 | BPF_ARSH | BPF_K:
6364d7d7
JM
1103 maybe_emit_1mod(&prog, dst_reg,
1104 BPF_CLASS(insn->code) == BPF_ALU64);
62258278 1105
e5f02cac 1106 b3 = simple_alu_opcodes[BPF_OP(insn->code)];
88e69a1f
DB
1107 if (imm32 == 1)
1108 EMIT2(0xD1, add_1reg(b3, dst_reg));
1109 else
1110 EMIT3(0xC1, add_1reg(b3, dst_reg), imm32);
62258278
AS
1111 break;
1112
72b603ee
AS
1113 case BPF_ALU | BPF_LSH | BPF_X:
1114 case BPF_ALU | BPF_RSH | BPF_X:
1115 case BPF_ALU | BPF_ARSH | BPF_X:
1116 case BPF_ALU64 | BPF_LSH | BPF_X:
1117 case BPF_ALU64 | BPF_RSH | BPF_X:
1118 case BPF_ALU64 | BPF_ARSH | BPF_X:
1119
a2c7a983 1120 /* Check for bad case when dst_reg == rcx */
72b603ee
AS
1121 if (dst_reg == BPF_REG_4) {
1122 /* mov r11, dst_reg */
1123 EMIT_mov(AUX_REG, dst_reg);
1124 dst_reg = AUX_REG;
1125 }
1126
1127 if (src_reg != BPF_REG_4) { /* common case */
1128 EMIT1(0x51); /* push rcx */
1129
1130 /* mov rcx, src_reg */
1131 EMIT_mov(BPF_REG_4, src_reg);
1132 }
1133
1134 /* shl %rax, %cl | shr %rax, %cl | sar %rax, %cl */
6364d7d7
JM
1135 maybe_emit_1mod(&prog, dst_reg,
1136 BPF_CLASS(insn->code) == BPF_ALU64);
72b603ee 1137
e5f02cac 1138 b3 = simple_alu_opcodes[BPF_OP(insn->code)];
72b603ee
AS
1139 EMIT2(0xD3, add_1reg(b3, dst_reg));
1140
1141 if (src_reg != BPF_REG_4)
1142 EMIT1(0x59); /* pop rcx */
1143
1144 if (insn->dst_reg == BPF_REG_4)
1145 /* mov dst_reg, r11 */
1146 EMIT_mov(insn->dst_reg, AUX_REG);
1147 break;
1148
62258278 1149 case BPF_ALU | BPF_END | BPF_FROM_BE:
e430f34e 1150 switch (imm32) {
62258278 1151 case 16:
a2c7a983 1152 /* Emit 'ror %ax, 8' to swap lower 2 bytes */
62258278 1153 EMIT1(0x66);
e430f34e 1154 if (is_ereg(dst_reg))
62258278 1155 EMIT1(0x41);
e430f34e 1156 EMIT3(0xC1, add_1reg(0xC8, dst_reg), 8);
343f845b 1157
a2c7a983 1158 /* Emit 'movzwl eax, ax' */
343f845b
AS
1159 if (is_ereg(dst_reg))
1160 EMIT3(0x45, 0x0F, 0xB7);
1161 else
1162 EMIT2(0x0F, 0xB7);
1163 EMIT1(add_2reg(0xC0, dst_reg, dst_reg));
62258278
AS
1164 break;
1165 case 32:
a2c7a983 1166 /* Emit 'bswap eax' to swap lower 4 bytes */
e430f34e 1167 if (is_ereg(dst_reg))
62258278 1168 EMIT2(0x41, 0x0F);
0a14842f 1169 else
62258278 1170 EMIT1(0x0F);
e430f34e 1171 EMIT1(add_1reg(0xC8, dst_reg));
0a14842f 1172 break;
62258278 1173 case 64:
a2c7a983 1174 /* Emit 'bswap rax' to swap 8 bytes */
e430f34e
AS
1175 EMIT3(add_1mod(0x48, dst_reg), 0x0F,
1176 add_1reg(0xC8, dst_reg));
3b58908a
ED
1177 break;
1178 }
62258278
AS
1179 break;
1180
1181 case BPF_ALU | BPF_END | BPF_FROM_LE:
343f845b
AS
1182 switch (imm32) {
1183 case 16:
a2c7a983
IM
1184 /*
1185 * Emit 'movzwl eax, ax' to zero extend 16-bit
343f845b
AS
1186 * into 64 bit
1187 */
1188 if (is_ereg(dst_reg))
1189 EMIT3(0x45, 0x0F, 0xB7);
1190 else
1191 EMIT2(0x0F, 0xB7);
1192 EMIT1(add_2reg(0xC0, dst_reg, dst_reg));
1193 break;
1194 case 32:
a2c7a983 1195 /* Emit 'mov eax, eax' to clear upper 32-bits */
343f845b
AS
1196 if (is_ereg(dst_reg))
1197 EMIT1(0x45);
1198 EMIT2(0x89, add_2reg(0xC0, dst_reg, dst_reg));
1199 break;
1200 case 64:
1201 /* nop */
1202 break;
1203 }
62258278
AS
1204 break;
1205
f5e81d11
DB
1206 /* speculation barrier */
1207 case BPF_ST | BPF_NOSPEC:
1208 if (boot_cpu_has(X86_FEATURE_XMM2))
87c87ecd 1209 EMIT_LFENCE();
f5e81d11
DB
1210 break;
1211
e430f34e 1212 /* ST: *(u8*)(dst_reg + off) = imm */
62258278 1213 case BPF_ST | BPF_MEM | BPF_B:
e430f34e 1214 if (is_ereg(dst_reg))
62258278
AS
1215 EMIT2(0x41, 0xC6);
1216 else
1217 EMIT1(0xC6);
1218 goto st;
1219 case BPF_ST | BPF_MEM | BPF_H:
e430f34e 1220 if (is_ereg(dst_reg))
62258278
AS
1221 EMIT3(0x66, 0x41, 0xC7);
1222 else
1223 EMIT2(0x66, 0xC7);
1224 goto st;
1225 case BPF_ST | BPF_MEM | BPF_W:
e430f34e 1226 if (is_ereg(dst_reg))
62258278
AS
1227 EMIT2(0x41, 0xC7);
1228 else
1229 EMIT1(0xC7);
1230 goto st;
1231 case BPF_ST | BPF_MEM | BPF_DW:
e430f34e 1232 EMIT2(add_1mod(0x48, dst_reg), 0xC7);
62258278
AS
1233
1234st: if (is_imm8(insn->off))
e430f34e 1235 EMIT2(add_1reg(0x40, dst_reg), insn->off);
62258278 1236 else
e430f34e 1237 EMIT1_off32(add_1reg(0x80, dst_reg), insn->off);
62258278 1238
e430f34e 1239 EMIT(imm32, bpf_size_to_x86_bytes(BPF_SIZE(insn->code)));
62258278
AS
1240 break;
1241
e430f34e 1242 /* STX: *(u8*)(dst_reg + off) = src_reg */
62258278 1243 case BPF_STX | BPF_MEM | BPF_B:
62258278 1244 case BPF_STX | BPF_MEM | BPF_H:
62258278 1245 case BPF_STX | BPF_MEM | BPF_W:
62258278 1246 case BPF_STX | BPF_MEM | BPF_DW:
3b2744e6 1247 emit_stx(&prog, BPF_SIZE(insn->code), dst_reg, src_reg, insn->off);
62258278
AS
1248 break;
1249
e430f34e 1250 /* LDX: dst_reg = *(u8*)(src_reg + off) */
62258278 1251 case BPF_LDX | BPF_MEM | BPF_B:
3dec541b 1252 case BPF_LDX | BPF_PROBE_MEM | BPF_B:
62258278 1253 case BPF_LDX | BPF_MEM | BPF_H:
3dec541b 1254 case BPF_LDX | BPF_PROBE_MEM | BPF_H:
62258278 1255 case BPF_LDX | BPF_MEM | BPF_W:
3dec541b 1256 case BPF_LDX | BPF_PROBE_MEM | BPF_W:
62258278 1257 case BPF_LDX | BPF_MEM | BPF_DW:
3dec541b 1258 case BPF_LDX | BPF_PROBE_MEM | BPF_DW:
4c5de127 1259 if (BPF_MODE(insn->code) == BPF_PROBE_MEM) {
588a25e9
AS
1260 /* Though the verifier prevents negative insn->off in BPF_PROBE_MEM
1261 * add abs(insn->off) to the limit to make sure that negative
1262 * offset won't be an issue.
1263 * insn->off is s16, so it won't affect valid pointers.
1264 */
1265 u64 limit = TASK_SIZE_MAX + PAGE_SIZE + abs(insn->off);
1266 u8 *end_of_jmp1, *end_of_jmp2;
1267
1268 /* Conservatively check that src_reg + insn->off is a kernel address:
1269 * 1. src_reg + insn->off >= limit
1270 * 2. src_reg + insn->off doesn't become small positive.
1271 * Cannot do src_reg + insn->off >= limit in one branch,
1272 * since it needs two spare registers, but JIT has only one.
1273 */
1274
1275 /* movabsq r11, limit */
1276 EMIT2(add_1mod(0x48, AUX_REG), add_1reg(0xB8, AUX_REG));
1277 EMIT((u32)limit, 4);
1278 EMIT(limit >> 32, 4);
1279 /* cmp src_reg, r11 */
1280 maybe_emit_mod(&prog, src_reg, AUX_REG, true);
1281 EMIT2(0x39, add_2reg(0xC0, src_reg, AUX_REG));
1282 /* if unsigned '<' goto end_of_jmp2 */
1283 EMIT2(X86_JB, 0);
1284 end_of_jmp1 = prog;
1285
1286 /* mov r11, src_reg */
1287 emit_mov_reg(&prog, true, AUX_REG, src_reg);
1288 /* add r11, insn->off */
1289 maybe_emit_1mod(&prog, AUX_REG, true);
1290 EMIT2_off32(0x81, add_1reg(0xC0, AUX_REG), insn->off);
1291 /* jmp if not carry to start_of_ldx
1292 * Otherwise ERR_PTR(-EINVAL) + 128 will be the user addr
1293 * that has to be rejected.
1294 */
1295 EMIT2(0x73 /* JNC */, 0);
1296 end_of_jmp2 = prog;
1297
4c5de127
AS
1298 /* xor dst_reg, dst_reg */
1299 emit_mov_imm32(&prog, false, dst_reg, 0);
1300 /* jmp byte_after_ldx */
1301 EMIT2(0xEB, 0);
1302
588a25e9
AS
1303 /* populate jmp_offset for JB above to jump to xor dst_reg */
1304 end_of_jmp1[-1] = end_of_jmp2 - end_of_jmp1;
1305 /* populate jmp_offset for JNC above to jump to start_of_ldx */
4c5de127 1306 start_of_ldx = prog;
588a25e9 1307 end_of_jmp2[-1] = start_of_ldx - end_of_jmp2;
4c5de127 1308 }
3b2744e6 1309 emit_ldx(&prog, BPF_SIZE(insn->code), dst_reg, src_reg, insn->off);
3dec541b
AS
1310 if (BPF_MODE(insn->code) == BPF_PROBE_MEM) {
1311 struct exception_table_entry *ex;
328aac5e 1312 u8 *_insn = image + proglen + (start_of_ldx - temp);
3dec541b
AS
1313 s64 delta;
1314
4c5de127
AS
1315 /* populate jmp_offset for JMP above */
1316 start_of_ldx[-1] = prog - start_of_ldx;
1317
3dec541b
AS
1318 if (!bpf_prog->aux->extable)
1319 break;
1320
1321 if (excnt >= bpf_prog->aux->num_exentries) {
1322 pr_err("ex gen bug\n");
1323 return -EFAULT;
1324 }
1325 ex = &bpf_prog->aux->extable[excnt++];
1326
1327 delta = _insn - (u8 *)&ex->insn;
1328 if (!is_simm32(delta)) {
1329 pr_err("extable->insn doesn't fit into 32-bit\n");
1330 return -EFAULT;
1331 }
1022a549
SL
1332 /* switch ex to rw buffer for writes */
1333 ex = (void *)rw_image + ((void *)ex - (void *)image);
1334
3dec541b
AS
1335 ex->insn = delta;
1336
4b5305de 1337 ex->data = EX_TYPE_BPF;
3dec541b
AS
1338
1339 if (dst_reg > BPF_REG_9) {
1340 pr_err("verifier error\n");
1341 return -EFAULT;
1342 }
1343 /*
1344 * Compute size of x86 insn and its target dest x86 register.
1345 * ex_handler_bpf() will use lower 8 bits to adjust
1346 * pt_regs->ip to jump over this x86 instruction
1347 * and upper bits to figure out which pt_regs to zero out.
1348 * End result: x86 insn "mov rbx, qword ptr [rax+0x14]"
1349 * of 4 bytes will be ignored and rbx will be zero inited.
1350 */
433956e9 1351 ex->fixup = (prog - start_of_ldx) | (reg2pt_regs[dst_reg] << 8);
3dec541b 1352 }
62258278
AS
1353 break;
1354
91c960b0
BJ
1355 case BPF_STX | BPF_ATOMIC | BPF_W:
1356 case BPF_STX | BPF_ATOMIC | BPF_DW:
981f94c3
BJ
1357 if (insn->imm == (BPF_AND | BPF_FETCH) ||
1358 insn->imm == (BPF_OR | BPF_FETCH) ||
1359 insn->imm == (BPF_XOR | BPF_FETCH)) {
981f94c3 1360 bool is64 = BPF_SIZE(insn->code) == BPF_DW;
b29dd96b 1361 u32 real_src_reg = src_reg;
ced18582
JA
1362 u32 real_dst_reg = dst_reg;
1363 u8 *branch_target;
981f94c3
BJ
1364
1365 /*
1366 * Can't be implemented with a single x86 insn.
1367 * Need to do a CMPXCHG loop.
1368 */
1369
1370 /* Will need RAX as a CMPXCHG operand so save R0 */
1371 emit_mov_reg(&prog, true, BPF_REG_AX, BPF_REG_0);
b29dd96b
BJ
1372 if (src_reg == BPF_REG_0)
1373 real_src_reg = BPF_REG_AX;
ced18582
JA
1374 if (dst_reg == BPF_REG_0)
1375 real_dst_reg = BPF_REG_AX;
b29dd96b 1376
981f94c3
BJ
1377 branch_target = prog;
1378 /* Load old value */
1379 emit_ldx(&prog, BPF_SIZE(insn->code),
ced18582 1380 BPF_REG_0, real_dst_reg, insn->off);
981f94c3
BJ
1381 /*
1382 * Perform the (commutative) operation locally,
1383 * put the result in the AUX_REG.
1384 */
1385 emit_mov_reg(&prog, is64, AUX_REG, BPF_REG_0);
b29dd96b 1386 maybe_emit_mod(&prog, AUX_REG, real_src_reg, is64);
981f94c3 1387 EMIT2(simple_alu_opcodes[BPF_OP(insn->imm)],
b29dd96b 1388 add_2reg(0xC0, AUX_REG, real_src_reg));
981f94c3
BJ
1389 /* Attempt to swap in new value */
1390 err = emit_atomic(&prog, BPF_CMPXCHG,
ced18582
JA
1391 real_dst_reg, AUX_REG,
1392 insn->off,
981f94c3
BJ
1393 BPF_SIZE(insn->code));
1394 if (WARN_ON(err))
1395 return err;
1396 /*
1397 * ZF tells us whether we won the race. If it's
1398 * cleared we need to try again.
1399 */
1400 EMIT2(X86_JNE, -(prog - branch_target) - 2);
1401 /* Return the pre-modification value */
b29dd96b 1402 emit_mov_reg(&prog, is64, real_src_reg, BPF_REG_0);
981f94c3
BJ
1403 /* Restore R0 after clobbering RAX */
1404 emit_mov_reg(&prog, true, BPF_REG_0, BPF_REG_AX);
1405 break;
981f94c3
BJ
1406 }
1407
91c960b0 1408 err = emit_atomic(&prog, insn->imm, dst_reg, src_reg,
ced18582 1409 insn->off, BPF_SIZE(insn->code));
91c960b0
BJ
1410 if (err)
1411 return err;
62258278
AS
1412 break;
1413
1414 /* call */
1415 case BPF_JMP | BPF_CALL:
e430f34e 1416 func = (u8 *) __bpf_call_base + imm32;
ebf7d1f5
MF
1417 if (tail_call_reachable) {
1418 EMIT3_off32(0x48, 0x8B, 0x85,
1419 -(bpf_prog->aux->stack_depth + 8));
1420 if (!imm32 || emit_call(&prog, func, image + addrs[i - 1] + 7))
1421 return -EINVAL;
1422 } else {
1423 if (!imm32 || emit_call(&prog, func, image + addrs[i - 1]))
1424 return -EINVAL;
1425 }
62258278
AS
1426 break;
1427
71189fa9 1428 case BPF_JMP | BPF_TAIL_CALL:
428d5df1
DB
1429 if (imm32)
1430 emit_bpf_tail_call_direct(&bpf_prog->aux->poke_tab[imm32 - 1],
dceba081 1431 &prog, image + addrs[i - 1],
ebf7d1f5 1432 callee_regs_used,
dceba081
PZ
1433 bpf_prog->aux->stack_depth,
1434 ctx);
428d5df1 1435 else
ebf7d1f5
MF
1436 emit_bpf_tail_call_indirect(&prog,
1437 callee_regs_used,
dceba081
PZ
1438 bpf_prog->aux->stack_depth,
1439 image + addrs[i - 1],
1440 ctx);
b52f00e6
AS
1441 break;
1442
62258278
AS
1443 /* cond jump */
1444 case BPF_JMP | BPF_JEQ | BPF_X:
1445 case BPF_JMP | BPF_JNE | BPF_X:
1446 case BPF_JMP | BPF_JGT | BPF_X:
52afc51e 1447 case BPF_JMP | BPF_JLT | BPF_X:
62258278 1448 case BPF_JMP | BPF_JGE | BPF_X:
52afc51e 1449 case BPF_JMP | BPF_JLE | BPF_X:
62258278 1450 case BPF_JMP | BPF_JSGT | BPF_X:
52afc51e 1451 case BPF_JMP | BPF_JSLT | BPF_X:
62258278 1452 case BPF_JMP | BPF_JSGE | BPF_X:
52afc51e 1453 case BPF_JMP | BPF_JSLE | BPF_X:
3f5d6525
JW
1454 case BPF_JMP32 | BPF_JEQ | BPF_X:
1455 case BPF_JMP32 | BPF_JNE | BPF_X:
1456 case BPF_JMP32 | BPF_JGT | BPF_X:
1457 case BPF_JMP32 | BPF_JLT | BPF_X:
1458 case BPF_JMP32 | BPF_JGE | BPF_X:
1459 case BPF_JMP32 | BPF_JLE | BPF_X:
1460 case BPF_JMP32 | BPF_JSGT | BPF_X:
1461 case BPF_JMP32 | BPF_JSLT | BPF_X:
1462 case BPF_JMP32 | BPF_JSGE | BPF_X:
1463 case BPF_JMP32 | BPF_JSLE | BPF_X:
e430f34e 1464 /* cmp dst_reg, src_reg */
74007cfc
BJ
1465 maybe_emit_mod(&prog, dst_reg, src_reg,
1466 BPF_CLASS(insn->code) == BPF_JMP);
3f5d6525 1467 EMIT2(0x39, add_2reg(0xC0, dst_reg, src_reg));
62258278
AS
1468 goto emit_cond_jmp;
1469
1470 case BPF_JMP | BPF_JSET | BPF_X:
3f5d6525 1471 case BPF_JMP32 | BPF_JSET | BPF_X:
e430f34e 1472 /* test dst_reg, src_reg */
74007cfc
BJ
1473 maybe_emit_mod(&prog, dst_reg, src_reg,
1474 BPF_CLASS(insn->code) == BPF_JMP);
3f5d6525 1475 EMIT2(0x85, add_2reg(0xC0, dst_reg, src_reg));
62258278
AS
1476 goto emit_cond_jmp;
1477
1478 case BPF_JMP | BPF_JSET | BPF_K:
3f5d6525 1479 case BPF_JMP32 | BPF_JSET | BPF_K:
e430f34e 1480 /* test dst_reg, imm32 */
6364d7d7
JM
1481 maybe_emit_1mod(&prog, dst_reg,
1482 BPF_CLASS(insn->code) == BPF_JMP);
e430f34e 1483 EMIT2_off32(0xF7, add_1reg(0xC0, dst_reg), imm32);
62258278
AS
1484 goto emit_cond_jmp;
1485
1486 case BPF_JMP | BPF_JEQ | BPF_K:
1487 case BPF_JMP | BPF_JNE | BPF_K:
1488 case BPF_JMP | BPF_JGT | BPF_K:
52afc51e 1489 case BPF_JMP | BPF_JLT | BPF_K:
62258278 1490 case BPF_JMP | BPF_JGE | BPF_K:
52afc51e 1491 case BPF_JMP | BPF_JLE | BPF_K:
62258278 1492 case BPF_JMP | BPF_JSGT | BPF_K:
52afc51e 1493 case BPF_JMP | BPF_JSLT | BPF_K:
62258278 1494 case BPF_JMP | BPF_JSGE | BPF_K:
52afc51e 1495 case BPF_JMP | BPF_JSLE | BPF_K:
3f5d6525
JW
1496 case BPF_JMP32 | BPF_JEQ | BPF_K:
1497 case BPF_JMP32 | BPF_JNE | BPF_K:
1498 case BPF_JMP32 | BPF_JGT | BPF_K:
1499 case BPF_JMP32 | BPF_JLT | BPF_K:
1500 case BPF_JMP32 | BPF_JGE | BPF_K:
1501 case BPF_JMP32 | BPF_JLE | BPF_K:
1502 case BPF_JMP32 | BPF_JSGT | BPF_K:
1503 case BPF_JMP32 | BPF_JSLT | BPF_K:
1504 case BPF_JMP32 | BPF_JSGE | BPF_K:
1505 case BPF_JMP32 | BPF_JSLE | BPF_K:
38f51c07
DB
1506 /* test dst_reg, dst_reg to save one extra byte */
1507 if (imm32 == 0) {
74007cfc
BJ
1508 maybe_emit_mod(&prog, dst_reg, dst_reg,
1509 BPF_CLASS(insn->code) == BPF_JMP);
38f51c07
DB
1510 EMIT2(0x85, add_2reg(0xC0, dst_reg, dst_reg));
1511 goto emit_cond_jmp;
1512 }
1513
e430f34e 1514 /* cmp dst_reg, imm8/32 */
6364d7d7
JM
1515 maybe_emit_1mod(&prog, dst_reg,
1516 BPF_CLASS(insn->code) == BPF_JMP);
62258278 1517
e430f34e
AS
1518 if (is_imm8(imm32))
1519 EMIT3(0x83, add_1reg(0xF8, dst_reg), imm32);
62258278 1520 else
e430f34e 1521 EMIT2_off32(0x81, add_1reg(0xF8, dst_reg), imm32);
62258278 1522
a2c7a983 1523emit_cond_jmp: /* Convert BPF opcode to x86 */
62258278
AS
1524 switch (BPF_OP(insn->code)) {
1525 case BPF_JEQ:
1526 jmp_cond = X86_JE;
1527 break;
1528 case BPF_JSET:
1529 case BPF_JNE:
1530 jmp_cond = X86_JNE;
1531 break;
1532 case BPF_JGT:
1533 /* GT is unsigned '>', JA in x86 */
1534 jmp_cond = X86_JA;
1535 break;
52afc51e
DB
1536 case BPF_JLT:
1537 /* LT is unsigned '<', JB in x86 */
1538 jmp_cond = X86_JB;
1539 break;
62258278
AS
1540 case BPF_JGE:
1541 /* GE is unsigned '>=', JAE in x86 */
1542 jmp_cond = X86_JAE;
1543 break;
52afc51e
DB
1544 case BPF_JLE:
1545 /* LE is unsigned '<=', JBE in x86 */
1546 jmp_cond = X86_JBE;
1547 break;
62258278 1548 case BPF_JSGT:
a2c7a983 1549 /* Signed '>', GT in x86 */
62258278
AS
1550 jmp_cond = X86_JG;
1551 break;
52afc51e 1552 case BPF_JSLT:
a2c7a983 1553 /* Signed '<', LT in x86 */
52afc51e
DB
1554 jmp_cond = X86_JL;
1555 break;
62258278 1556 case BPF_JSGE:
a2c7a983 1557 /* Signed '>=', GE in x86 */
62258278
AS
1558 jmp_cond = X86_JGE;
1559 break;
52afc51e 1560 case BPF_JSLE:
a2c7a983 1561 /* Signed '<=', LE in x86 */
52afc51e
DB
1562 jmp_cond = X86_JLE;
1563 break;
a2c7a983 1564 default: /* to silence GCC warning */
62258278
AS
1565 return -EFAULT;
1566 }
1567 jmp_offset = addrs[i + insn->off] - addrs[i];
1568 if (is_imm8(jmp_offset)) {
93c5aecc
GL
1569 if (jmp_padding) {
1570 /* To keep the jmp_offset valid, the extra bytes are
d9f6e12f 1571 * padded before the jump insn, so we subtract the
93c5aecc
GL
1572 * 2 bytes of jmp_cond insn from INSN_SZ_DIFF.
1573 *
1574 * If the previous pass already emits an imm8
1575 * jmp_cond, then this BPF insn won't shrink, so
1576 * "nops" is 0.
1577 *
1578 * On the other hand, if the previous pass emits an
1579 * imm32 jmp_cond, the extra 4 bytes(*) is padded to
1580 * keep the image from shrinking further.
1581 *
1582 * (*) imm32 jmp_cond is 6 bytes, and imm8 jmp_cond
1583 * is 2 bytes, so the size difference is 4 bytes.
1584 */
1585 nops = INSN_SZ_DIFF - 2;
1586 if (nops != 0 && nops != 4) {
1587 pr_err("unexpected jmp_cond padding: %d bytes\n",
1588 nops);
1589 return -EFAULT;
1590 }
ced50fc4 1591 emit_nops(&prog, nops);
93c5aecc 1592 }
62258278
AS
1593 EMIT2(jmp_cond, jmp_offset);
1594 } else if (is_simm32(jmp_offset)) {
1595 EMIT2_off32(0x0F, jmp_cond + 0x10, jmp_offset);
1596 } else {
1597 pr_err("cond_jmp gen bug %llx\n", jmp_offset);
1598 return -EFAULT;
1599 }
1600
1601 break;
0a14842f 1602
62258278 1603 case BPF_JMP | BPF_JA:
1612a981
GB
1604 if (insn->off == -1)
1605 /* -1 jmp instructions will always jump
1606 * backwards two bytes. Explicitly handling
1607 * this case avoids wasting too many passes
1608 * when there are long sequences of replaced
1609 * dead code.
1610 */
1611 jmp_offset = -2;
1612 else
1613 jmp_offset = addrs[i + insn->off] - addrs[i];
1614
93c5aecc
GL
1615 if (!jmp_offset) {
1616 /*
1617 * If jmp_padding is enabled, the extra nops will
1618 * be inserted. Otherwise, optimize out nop jumps.
1619 */
1620 if (jmp_padding) {
1621 /* There are 3 possible conditions.
1622 * (1) This BPF_JA is already optimized out in
1623 * the previous run, so there is no need
1624 * to pad any extra byte (0 byte).
1625 * (2) The previous pass emits an imm8 jmp,
1626 * so we pad 2 bytes to match the previous
1627 * insn size.
1628 * (3) Similarly, the previous pass emits an
1629 * imm32 jmp, and 5 bytes is padded.
1630 */
1631 nops = INSN_SZ_DIFF;
1632 if (nops != 0 && nops != 2 && nops != 5) {
1633 pr_err("unexpected nop jump padding: %d bytes\n",
1634 nops);
1635 return -EFAULT;
1636 }
ced50fc4 1637 emit_nops(&prog, nops);
93c5aecc 1638 }
62258278 1639 break;
93c5aecc 1640 }
62258278
AS
1641emit_jmp:
1642 if (is_imm8(jmp_offset)) {
93c5aecc
GL
1643 if (jmp_padding) {
1644 /* To avoid breaking jmp_offset, the extra bytes
1645 * are padded before the actual jmp insn, so
d9f6e12f 1646 * 2 bytes is subtracted from INSN_SZ_DIFF.
93c5aecc
GL
1647 *
1648 * If the previous pass already emits an imm8
1649 * jmp, there is nothing to pad (0 byte).
1650 *
1651 * If it emits an imm32 jmp (5 bytes) previously
1652 * and now an imm8 jmp (2 bytes), then we pad
1653 * (5 - 2 = 3) bytes to stop the image from
1654 * shrinking further.
1655 */
1656 nops = INSN_SZ_DIFF - 2;
1657 if (nops != 0 && nops != 3) {
1658 pr_err("unexpected jump padding: %d bytes\n",
1659 nops);
1660 return -EFAULT;
1661 }
ced50fc4 1662 emit_nops(&prog, INSN_SZ_DIFF - 2);
93c5aecc 1663 }
62258278
AS
1664 EMIT2(0xEB, jmp_offset);
1665 } else if (is_simm32(jmp_offset)) {
1666 EMIT1_off32(0xE9, jmp_offset);
1667 } else {
1668 pr_err("jmp gen bug %llx\n", jmp_offset);
1669 return -EFAULT;
1670 }
1671 break;
1672
62258278 1673 case BPF_JMP | BPF_EXIT:
769e0de6 1674 if (seen_exit) {
62258278
AS
1675 jmp_offset = ctx->cleanup_addr - addrs[i];
1676 goto emit_jmp;
1677 }
769e0de6 1678 seen_exit = true;
a2c7a983 1679 /* Update cleanup_addr */
62258278 1680 ctx->cleanup_addr = proglen;
ebf7d1f5 1681 pop_callee_regs(&prog, callee_regs_used);
fe8d9571
AS
1682 EMIT1(0xC9); /* leave */
1683 EMIT1(0xC3); /* ret */
62258278
AS
1684 break;
1685
f3c2af7b 1686 default:
a2c7a983
IM
1687 /*
1688 * By design x86-64 JIT should support all BPF instructions.
62258278 1689 * This error will be seen if new instruction was added
a2c7a983
IM
1690 * to the interpreter, but not to the JIT, or if there is
1691 * junk in bpf_prog.
62258278
AS
1692 */
1693 pr_err("bpf_jit: unknown opcode %02x\n", insn->code);
f3c2af7b
AS
1694 return -EINVAL;
1695 }
62258278 1696
f3c2af7b 1697 ilen = prog - temp;
e0ee9c12 1698 if (ilen > BPF_MAX_INSN_SIZE) {
9383191d 1699 pr_err("bpf_jit: fatal insn size error\n");
e0ee9c12
AS
1700 return -EFAULT;
1701 }
1702
f3c2af7b 1703 if (image) {
e4d4d456
PK
1704 /*
1705 * When populating the image, assert that:
1706 *
1707 * i) We do not write beyond the allocated space, and
1708 * ii) addrs[i] did not change from the prior run, in order
1709 * to validate assumptions made for computing branch
1710 * displacements.
1711 */
1712 if (unlikely(proglen + ilen > oldproglen ||
1713 proglen + ilen != addrs[i])) {
9383191d 1714 pr_err("bpf_jit: fatal error\n");
f3c2af7b 1715 return -EFAULT;
0a14842f 1716 }
1022a549 1717 memcpy(rw_image + proglen, temp, ilen);
0a14842f 1718 }
f3c2af7b
AS
1719 proglen += ilen;
1720 addrs[i] = proglen;
1721 prog = temp;
1722 }
3dec541b
AS
1723
1724 if (image && excnt != bpf_prog->aux->num_exentries) {
1725 pr_err("extable is not populated\n");
1726 return -EFAULT;
1727 }
f3c2af7b
AS
1728 return proglen;
1729}
1730
85d33df3 1731static void save_regs(const struct btf_func_model *m, u8 **prog, int nr_args,
fec56f58
AS
1732 int stack_size)
1733{
1734 int i;
1735 /* Store function arguments to stack.
1736 * For a function that accepts two pointers the sequence will be:
1737 * mov QWORD PTR [rbp-0x10],rdi
1738 * mov QWORD PTR [rbp-0x8],rsi
1739 */
1740 for (i = 0; i < min(nr_args, 6); i++)
1741 emit_stx(prog, bytes_to_bpf_size(m->arg_size[i]),
1742 BPF_REG_FP,
1743 i == 5 ? X86_REG_R9 : BPF_REG_1 + i,
1744 -(stack_size - i * 8));
1745}
1746
85d33df3 1747static void restore_regs(const struct btf_func_model *m, u8 **prog, int nr_args,
fec56f58
AS
1748 int stack_size)
1749{
1750 int i;
1751
1752 /* Restore function arguments from stack.
1753 * For a function that accepts two pointers the sequence will be:
1754 * EMIT4(0x48, 0x8B, 0x7D, 0xF0); mov rdi,QWORD PTR [rbp-0x10]
1755 * EMIT4(0x48, 0x8B, 0x75, 0xF8); mov rsi,QWORD PTR [rbp-0x8]
1756 */
1757 for (i = 0; i < min(nr_args, 6); i++)
1758 emit_ldx(prog, bytes_to_bpf_size(m->arg_size[i]),
1759 i == 5 ? X86_REG_R9 : BPF_REG_1 + i,
1760 BPF_REG_FP,
1761 -(stack_size - i * 8));
1762}
1763
7e639208 1764static int invoke_bpf_prog(const struct btf_func_model *m, u8 **pprog,
f7e0beaf 1765 struct bpf_tramp_link *l, int stack_size,
e384c7b7 1766 int run_ctx_off, bool save_ret)
7e639208
KS
1767{
1768 u8 *prog = *pprog;
ca06f55b 1769 u8 *jmp_insn;
e384c7b7 1770 int ctx_cookie_off = offsetof(struct bpf_tramp_run_ctx, bpf_cookie);
f7e0beaf 1771 struct bpf_prog *p = l->link.prog;
2fcc8241 1772 u64 cookie = l->cookie;
7e639208 1773
2fcc8241
KFL
1774 /* mov rdi, cookie */
1775 emit_mov_imm64(&prog, BPF_REG_1, (long) cookie >> 32, (u32) (long) cookie);
e384c7b7
KFL
1776
1777 /* Prepare struct bpf_tramp_run_ctx.
1778 *
1779 * bpf_tramp_run_ctx is already preserved by
1780 * arch_prepare_bpf_trampoline().
1781 *
1782 * mov QWORD PTR [rbp - run_ctx_off + ctx_cookie_off], rdi
1783 */
1784 emit_stx(&prog, BPF_DW, BPF_REG_FP, BPF_REG_1, -run_ctx_off + ctx_cookie_off);
1785
ca06f55b
AS
1786 /* arg1: mov rdi, progs[i] */
1787 emit_mov_imm64(&prog, BPF_REG_1, (long) p >> 32, (u32) (long) p);
e384c7b7
KFL
1788 /* arg2: lea rsi, [rbp - ctx_cookie_off] */
1789 EMIT4(0x48, 0x8D, 0x75, -run_ctx_off);
1790
f2dd3b39
AS
1791 if (emit_call(&prog,
1792 p->aux->sleepable ? __bpf_prog_enter_sleepable :
1793 __bpf_prog_enter, prog))
1e6c62a8 1794 return -EINVAL;
f2dd3b39
AS
1795 /* remember prog start time returned by __bpf_prog_enter */
1796 emit_mov_reg(&prog, true, BPF_REG_6, BPF_REG_0);
7e639208 1797
ca06f55b
AS
1798 /* if (__bpf_prog_enter*(prog) == 0)
1799 * goto skip_exec_of_prog;
1800 */
1801 EMIT3(0x48, 0x85, 0xC0); /* test rax,rax */
1802 /* emit 2 nops that will be replaced with JE insn */
1803 jmp_insn = prog;
1804 emit_nops(&prog, 2);
1805
7e639208
KS
1806 /* arg1: lea rdi, [rbp - stack_size] */
1807 EMIT4(0x48, 0x8D, 0x7D, -stack_size);
1808 /* arg2: progs[i]->insnsi for interpreter */
1809 if (!p->jited)
1810 emit_mov_imm64(&prog, BPF_REG_2,
1811 (long) p->insnsi >> 32,
1812 (u32) (long) p->insnsi);
1813 /* call JITed bpf program or interpreter */
1814 if (emit_call(&prog, p->bpf_func, prog))
1815 return -EINVAL;
1816
356ed649
HT
1817 /*
1818 * BPF_TRAMP_MODIFY_RETURN trampolines can modify the return
ae240823
KS
1819 * of the previous call which is then passed on the stack to
1820 * the next BPF program.
356ed649
HT
1821 *
1822 * BPF_TRAMP_FENTRY trampoline may need to return the return
1823 * value of BPF_PROG_TYPE_STRUCT_OPS prog.
ae240823 1824 */
356ed649 1825 if (save_ret)
ae240823
KS
1826 emit_stx(&prog, BPF_DW, BPF_REG_FP, BPF_REG_0, -8);
1827
ca06f55b
AS
1828 /* replace 2 nops with JE insn, since jmp target is known */
1829 jmp_insn[0] = X86_JE;
1830 jmp_insn[1] = prog - jmp_insn - 2;
1831
f2dd3b39
AS
1832 /* arg1: mov rdi, progs[i] */
1833 emit_mov_imm64(&prog, BPF_REG_1, (long) p >> 32, (u32) (long) p);
1834 /* arg2: mov rsi, rbx <- start time in nsec */
1835 emit_mov_reg(&prog, true, BPF_REG_2, BPF_REG_6);
e384c7b7
KFL
1836 /* arg3: lea rdx, [rbp - run_ctx_off] */
1837 EMIT4(0x48, 0x8D, 0x55, -run_ctx_off);
f2dd3b39
AS
1838 if (emit_call(&prog,
1839 p->aux->sleepable ? __bpf_prog_exit_sleepable :
1840 __bpf_prog_exit, prog))
1e6c62a8 1841 return -EINVAL;
7e639208
KS
1842
1843 *pprog = prog;
1844 return 0;
1845}
1846
7e639208
KS
1847static void emit_align(u8 **pprog, u32 align)
1848{
1849 u8 *target, *prog = *pprog;
1850
1851 target = PTR_ALIGN(prog, align);
1852 if (target != prog)
1853 emit_nops(&prog, target - prog);
1854
1855 *pprog = prog;
1856}
1857
1858static int emit_cond_near_jump(u8 **pprog, void *func, void *ip, u8 jmp_cond)
1859{
1860 u8 *prog = *pprog;
7e639208
KS
1861 s64 offset;
1862
1863 offset = func - (ip + 2 + 4);
1864 if (!is_simm32(offset)) {
1865 pr_err("Target %p is out of range\n", func);
1866 return -EINVAL;
1867 }
1868 EMIT2_off32(0x0F, jmp_cond + 0x10, offset);
1869 *pprog = prog;
1870 return 0;
1871}
1872
85d33df3 1873static int invoke_bpf(const struct btf_func_model *m, u8 **pprog,
f7e0beaf 1874 struct bpf_tramp_links *tl, int stack_size,
e384c7b7 1875 int run_ctx_off, bool save_ret)
fec56f58 1876{
7e639208 1877 int i;
fec56f58 1878 u8 *prog = *pprog;
fec56f58 1879
f7e0beaf
KFL
1880 for (i = 0; i < tl->nr_links; i++) {
1881 if (invoke_bpf_prog(m, &prog, tl->links[i], stack_size,
e384c7b7 1882 run_ctx_off, save_ret))
ae240823
KS
1883 return -EINVAL;
1884 }
1885 *pprog = prog;
1886 return 0;
1887}
1888
1889static int invoke_bpf_mod_ret(const struct btf_func_model *m, u8 **pprog,
f7e0beaf 1890 struct bpf_tramp_links *tl, int stack_size,
e384c7b7 1891 int run_ctx_off, u8 **branches)
ae240823
KS
1892{
1893 u8 *prog = *pprog;
ced50fc4 1894 int i;
ae240823
KS
1895
1896 /* The first fmod_ret program will receive a garbage return value.
1897 * Set this to 0 to avoid confusing the program.
1898 */
1899 emit_mov_imm32(&prog, false, BPF_REG_0, 0);
1900 emit_stx(&prog, BPF_DW, BPF_REG_FP, BPF_REG_0, -8);
f7e0beaf 1901 for (i = 0; i < tl->nr_links; i++) {
e384c7b7 1902 if (invoke_bpf_prog(m, &prog, tl->links[i], stack_size, run_ctx_off, true))
fec56f58 1903 return -EINVAL;
ae240823 1904
13fac1d8
AS
1905 /* mod_ret prog stored return value into [rbp - 8]. Emit:
1906 * if (*(u64 *)(rbp - 8) != 0)
ae240823 1907 * goto do_fexit;
ae240823 1908 */
13fac1d8
AS
1909 /* cmp QWORD PTR [rbp - 0x8], 0x0 */
1910 EMIT4(0x48, 0x83, 0x7d, 0xf8); EMIT1(0x00);
ae240823
KS
1911
1912 /* Save the location of the branch and Generate 6 nops
1913 * (4 bytes for an offset and 2 bytes for the jump) These nops
1914 * are replaced with a conditional jump once do_fexit (i.e. the
1915 * start of the fexit invocation) is finalized.
1916 */
1917 branches[i] = prog;
1918 emit_nops(&prog, 4 + 2);
fec56f58 1919 }
ae240823 1920
fec56f58
AS
1921 *pprog = prog;
1922 return 0;
1923}
1924
356ed649
HT
1925static bool is_valid_bpf_tramp_flags(unsigned int flags)
1926{
1927 if ((flags & BPF_TRAMP_F_RESTORE_REGS) &&
1928 (flags & BPF_TRAMP_F_SKIP_FRAME))
1929 return false;
1930
1931 /*
1932 * BPF_TRAMP_F_RET_FENTRY_RET is only used by bpf_struct_ops,
1933 * and it must be used alone.
1934 */
1935 if ((flags & BPF_TRAMP_F_RET_FENTRY_RET) &&
1936 (flags & ~BPF_TRAMP_F_RET_FENTRY_RET))
1937 return false;
1938
1939 return true;
1940}
1941
fec56f58
AS
1942/* Example:
1943 * __be16 eth_type_trans(struct sk_buff *skb, struct net_device *dev);
1944 * its 'struct btf_func_model' will be nr_args=2
1945 * The assembly code when eth_type_trans is executing after trampoline:
1946 *
1947 * push rbp
1948 * mov rbp, rsp
1949 * sub rsp, 16 // space for skb and dev
1950 * push rbx // temp regs to pass start time
1951 * mov qword ptr [rbp - 16], rdi // save skb pointer to stack
1952 * mov qword ptr [rbp - 8], rsi // save dev pointer to stack
1953 * call __bpf_prog_enter // rcu_read_lock and preempt_disable
1954 * mov rbx, rax // remember start time in bpf stats are enabled
1955 * lea rdi, [rbp - 16] // R1==ctx of bpf prog
1956 * call addr_of_jited_FENTRY_prog
1957 * movabsq rdi, 64bit_addr_of_struct_bpf_prog // unused if bpf stats are off
1958 * mov rsi, rbx // prog start time
1959 * call __bpf_prog_exit // rcu_read_unlock, preempt_enable and stats math
1960 * mov rdi, qword ptr [rbp - 16] // restore skb pointer from stack
1961 * mov rsi, qword ptr [rbp - 8] // restore dev pointer from stack
1962 * pop rbx
1963 * leave
1964 * ret
1965 *
1966 * eth_type_trans has 5 byte nop at the beginning. These 5 bytes will be
1967 * replaced with 'call generated_bpf_trampoline'. When it returns
1968 * eth_type_trans will continue executing with original skb and dev pointers.
1969 *
1970 * The assembly code when eth_type_trans is called from trampoline:
1971 *
1972 * push rbp
1973 * mov rbp, rsp
1974 * sub rsp, 24 // space for skb, dev, return value
1975 * push rbx // temp regs to pass start time
1976 * mov qword ptr [rbp - 24], rdi // save skb pointer to stack
1977 * mov qword ptr [rbp - 16], rsi // save dev pointer to stack
1978 * call __bpf_prog_enter // rcu_read_lock and preempt_disable
1979 * mov rbx, rax // remember start time if bpf stats are enabled
1980 * lea rdi, [rbp - 24] // R1==ctx of bpf prog
1981 * call addr_of_jited_FENTRY_prog // bpf prog can access skb and dev
1982 * movabsq rdi, 64bit_addr_of_struct_bpf_prog // unused if bpf stats are off
1983 * mov rsi, rbx // prog start time
1984 * call __bpf_prog_exit // rcu_read_unlock, preempt_enable and stats math
1985 * mov rdi, qword ptr [rbp - 24] // restore skb pointer from stack
1986 * mov rsi, qword ptr [rbp - 16] // restore dev pointer from stack
1987 * call eth_type_trans+5 // execute body of eth_type_trans
1988 * mov qword ptr [rbp - 8], rax // save return value
1989 * call __bpf_prog_enter // rcu_read_lock and preempt_disable
1990 * mov rbx, rax // remember start time in bpf stats are enabled
1991 * lea rdi, [rbp - 24] // R1==ctx of bpf prog
1992 * call addr_of_jited_FEXIT_prog // bpf prog can access skb, dev, return value
1993 * movabsq rdi, 64bit_addr_of_struct_bpf_prog // unused if bpf stats are off
1994 * mov rsi, rbx // prog start time
1995 * call __bpf_prog_exit // rcu_read_unlock, preempt_enable and stats math
1996 * mov rax, qword ptr [rbp - 8] // restore eth_type_trans's return value
1997 * pop rbx
1998 * leave
1999 * add rsp, 8 // skip eth_type_trans's frame
2000 * ret // return to its caller
2001 */
e21aa341 2002int arch_prepare_bpf_trampoline(struct bpf_tramp_image *im, void *image, void *image_end,
85d33df3 2003 const struct btf_func_model *m, u32 flags,
f7e0beaf 2004 struct bpf_tramp_links *tlinks,
fec56f58
AS
2005 void *orig_call)
2006{
ced50fc4 2007 int ret, i, nr_args = m->nr_args;
e384c7b7 2008 int regs_off, ip_off, args_off, stack_size = nr_args * 8, run_ctx_off;
f7e0beaf
KFL
2009 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY];
2010 struct bpf_tramp_links *fexit = &tlinks[BPF_TRAMP_FEXIT];
2011 struct bpf_tramp_links *fmod_ret = &tlinks[BPF_TRAMP_MODIFY_RETURN];
ae240823 2012 u8 **branches = NULL;
fec56f58 2013 u8 *prog;
356ed649 2014 bool save_ret;
fec56f58
AS
2015
2016 /* x86-64 supports up to 6 arguments. 7+ can be added in the future */
2017 if (nr_args > 6)
2018 return -ENOTSUPP;
2019
356ed649 2020 if (!is_valid_bpf_tramp_flags(flags))
fec56f58
AS
2021 return -EINVAL;
2022
5edf6a19
JO
2023 /* Generated trampoline stack layout:
2024 *
2025 * RBP + 8 [ return address ]
2026 * RBP + 0 [ RBP ]
2027 *
2028 * RBP - 8 [ return value ] BPF_TRAMP_F_CALL_ORIG or
2029 * BPF_TRAMP_F_RET_FENTRY_RET flags
2030 *
2031 * [ reg_argN ] always
2032 * [ ... ]
2033 * RBP - regs_off [ reg_arg1 ] program's ctx pointer
2034 *
f92c1e18
JO
2035 * RBP - args_off [ args count ] always
2036 *
5edf6a19 2037 * RBP - ip_off [ traced function ] BPF_TRAMP_F_IP_ARG flag
e384c7b7
KFL
2038 *
2039 * RBP - run_ctx_off [ bpf_tramp_run_ctx ]
5edf6a19
JO
2040 */
2041
356ed649
HT
2042 /* room for return value of orig_call or fentry prog */
2043 save_ret = flags & (BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_RET_FENTRY_RET);
2044 if (save_ret)
2045 stack_size += 8;
fec56f58 2046
5edf6a19
JO
2047 regs_off = stack_size;
2048
f92c1e18
JO
2049 /* args count */
2050 stack_size += 8;
2051 args_off = stack_size;
2052
7e6f3cd8
JO
2053 if (flags & BPF_TRAMP_F_IP_ARG)
2054 stack_size += 8; /* room for IP address argument */
2055
5edf6a19
JO
2056 ip_off = stack_size;
2057
e384c7b7
KFL
2058 stack_size += (sizeof(struct bpf_tramp_run_ctx) + 7) & ~0x7;
2059 run_ctx_off = stack_size;
2060
58912710 2061 if (flags & BPF_TRAMP_F_SKIP_FRAME) {
fec56f58
AS
2062 /* skip patched call instruction and point orig_call to actual
2063 * body of the kernel function.
2064 */
58912710
PZ
2065 if (is_endbr(*(u32 *)orig_call))
2066 orig_call += ENDBR_INSN_SIZE;
4b3da77b 2067 orig_call += X86_PATCH_SIZE;
58912710 2068 }
fec56f58
AS
2069
2070 prog = image;
2071
58912710 2072 EMIT_ENDBR();
fec56f58
AS
2073 EMIT1(0x55); /* push rbp */
2074 EMIT3(0x48, 0x89, 0xE5); /* mov rbp, rsp */
2075 EMIT4(0x48, 0x83, 0xEC, stack_size); /* sub rsp, stack_size */
2076 EMIT1(0x53); /* push rbx */
2077
f92c1e18
JO
2078 /* Store number of arguments of the traced function:
2079 * mov rax, nr_args
2080 * mov QWORD PTR [rbp - args_off], rax
2081 */
2082 emit_mov_imm64(&prog, BPF_REG_0, 0, (u32) nr_args);
2083 emit_stx(&prog, BPF_DW, BPF_REG_FP, BPF_REG_0, -args_off);
2084
7e6f3cd8
JO
2085 if (flags & BPF_TRAMP_F_IP_ARG) {
2086 /* Store IP address of the traced function:
2087 * mov rax, QWORD PTR [rbp + 8]
2088 * sub rax, X86_PATCH_SIZE
5edf6a19 2089 * mov QWORD PTR [rbp - ip_off], rax
7e6f3cd8
JO
2090 */
2091 emit_ldx(&prog, BPF_DW, BPF_REG_0, BPF_REG_FP, 8);
2092 EMIT4(0x48, 0x83, 0xe8, X86_PATCH_SIZE);
5edf6a19 2093 emit_stx(&prog, BPF_DW, BPF_REG_FP, BPF_REG_0, -ip_off);
7e6f3cd8
JO
2094 }
2095
5edf6a19 2096 save_regs(m, &prog, nr_args, regs_off);
fec56f58 2097
e21aa341
AS
2098 if (flags & BPF_TRAMP_F_CALL_ORIG) {
2099 /* arg1: mov rdi, im */
2100 emit_mov_imm64(&prog, BPF_REG_1, (long) im >> 32, (u32) (long) im);
2101 if (emit_call(&prog, __bpf_tramp_enter, prog)) {
2102 ret = -EINVAL;
2103 goto cleanup;
2104 }
2105 }
2106
f7e0beaf 2107 if (fentry->nr_links)
e384c7b7 2108 if (invoke_bpf(m, &prog, fentry, regs_off, run_ctx_off,
356ed649 2109 flags & BPF_TRAMP_F_RET_FENTRY_RET))
fec56f58
AS
2110 return -EINVAL;
2111
f7e0beaf
KFL
2112 if (fmod_ret->nr_links) {
2113 branches = kcalloc(fmod_ret->nr_links, sizeof(u8 *),
ae240823
KS
2114 GFP_KERNEL);
2115 if (!branches)
2116 return -ENOMEM;
2117
5edf6a19 2118 if (invoke_bpf_mod_ret(m, &prog, fmod_ret, regs_off,
e384c7b7 2119 run_ctx_off, branches)) {
ae240823
KS
2120 ret = -EINVAL;
2121 goto cleanup;
2122 }
2123 }
2124
fec56f58 2125 if (flags & BPF_TRAMP_F_CALL_ORIG) {
5edf6a19 2126 restore_regs(m, &prog, nr_args, regs_off);
fec56f58
AS
2127
2128 /* call original function */
ae240823
KS
2129 if (emit_call(&prog, orig_call, prog)) {
2130 ret = -EINVAL;
2131 goto cleanup;
2132 }
fec56f58
AS
2133 /* remember return value in a stack for bpf prog to access */
2134 emit_stx(&prog, BPF_DW, BPF_REG_FP, BPF_REG_0, -8);
e21aa341 2135 im->ip_after_call = prog;
b1f480bc 2136 memcpy(prog, x86_nops[5], X86_PATCH_SIZE);
b9082970 2137 prog += X86_PATCH_SIZE;
fec56f58
AS
2138 }
2139
f7e0beaf 2140 if (fmod_ret->nr_links) {
ae240823
KS
2141 /* From Intel 64 and IA-32 Architectures Optimization
2142 * Reference Manual, 3.4.1.4 Code Alignment, Assembly/Compiler
2143 * Coding Rule 11: All branch targets should be 16-byte
2144 * aligned.
2145 */
2146 emit_align(&prog, 16);
2147 /* Update the branches saved in invoke_bpf_mod_ret with the
2148 * aligned address of do_fexit.
2149 */
f7e0beaf 2150 for (i = 0; i < fmod_ret->nr_links; i++)
ae240823
KS
2151 emit_cond_near_jump(&branches[i], prog, branches[i],
2152 X86_JNE);
2153 }
2154
f7e0beaf 2155 if (fexit->nr_links)
e384c7b7 2156 if (invoke_bpf(m, &prog, fexit, regs_off, run_ctx_off, false)) {
ae240823
KS
2157 ret = -EINVAL;
2158 goto cleanup;
2159 }
fec56f58
AS
2160
2161 if (flags & BPF_TRAMP_F_RESTORE_REGS)
5edf6a19 2162 restore_regs(m, &prog, nr_args, regs_off);
fec56f58 2163
ae240823
KS
2164 /* This needs to be done regardless. If there were fmod_ret programs,
2165 * the return value is only updated on the stack and still needs to be
2166 * restored to R0.
2167 */
e21aa341
AS
2168 if (flags & BPF_TRAMP_F_CALL_ORIG) {
2169 im->ip_epilogue = prog;
2170 /* arg1: mov rdi, im */
2171 emit_mov_imm64(&prog, BPF_REG_1, (long) im >> 32, (u32) (long) im);
2172 if (emit_call(&prog, __bpf_tramp_exit, prog)) {
2173 ret = -EINVAL;
2174 goto cleanup;
2175 }
e21aa341 2176 }
356ed649
HT
2177 /* restore return value of orig_call or fentry prog back into RAX */
2178 if (save_ret)
2179 emit_ldx(&prog, BPF_DW, BPF_REG_0, BPF_REG_FP, -8);
fec56f58
AS
2180
2181 EMIT1(0x5B); /* pop rbx */
2182 EMIT1(0xC9); /* leave */
2183 if (flags & BPF_TRAMP_F_SKIP_FRAME)
2184 /* skip our return address and return to parent */
2185 EMIT4(0x48, 0x83, 0xC4, 8); /* add rsp, 8 */
2186 EMIT1(0xC3); /* ret */
85d33df3 2187 /* Make sure the trampoline generation logic doesn't overflow */
ae240823
KS
2188 if (WARN_ON_ONCE(prog > (u8 *)image_end - BPF_INSN_SAFETY)) {
2189 ret = -EFAULT;
2190 goto cleanup;
2191 }
2192 ret = prog - (u8 *)image;
2193
2194cleanup:
2195 kfree(branches);
2196 return ret;
fec56f58
AS
2197}
2198
75ccbef6
BT
2199static int emit_bpf_dispatcher(u8 **pprog, int a, int b, s64 *progs)
2200{
7e639208 2201 u8 *jg_reloc, *prog = *pprog;
ced50fc4 2202 int pivot, err, jg_bytes = 1;
75ccbef6
BT
2203 s64 jg_offset;
2204
2205 if (a == b) {
2206 /* Leaf node of recursion, i.e. not a range of indices
2207 * anymore.
2208 */
2209 EMIT1(add_1mod(0x48, BPF_REG_3)); /* cmp rdx,func */
2210 if (!is_simm32(progs[a]))
2211 return -1;
2212 EMIT2_off32(0x81, add_1reg(0xF8, BPF_REG_3),
2213 progs[a]);
2214 err = emit_cond_near_jump(&prog, /* je func */
2215 (void *)progs[a], prog,
2216 X86_JE);
2217 if (err)
2218 return err;
2219
87c87ecd 2220 emit_indirect_jump(&prog, 2 /* rdx */, prog);
75ccbef6
BT
2221
2222 *pprog = prog;
2223 return 0;
2224 }
2225
2226 /* Not a leaf node, so we pivot, and recursively descend into
2227 * the lower and upper ranges.
2228 */
2229 pivot = (b - a) / 2;
2230 EMIT1(add_1mod(0x48, BPF_REG_3)); /* cmp rdx,func */
2231 if (!is_simm32(progs[a + pivot]))
2232 return -1;
2233 EMIT2_off32(0x81, add_1reg(0xF8, BPF_REG_3), progs[a + pivot]);
2234
2235 if (pivot > 2) { /* jg upper_part */
2236 /* Require near jump. */
2237 jg_bytes = 4;
2238 EMIT2_off32(0x0F, X86_JG + 0x10, 0);
2239 } else {
2240 EMIT2(X86_JG, 0);
2241 }
2242 jg_reloc = prog;
2243
2244 err = emit_bpf_dispatcher(&prog, a, a + pivot, /* emit lower_part */
2245 progs);
2246 if (err)
2247 return err;
2248
116eb788
BT
2249 /* From Intel 64 and IA-32 Architectures Optimization
2250 * Reference Manual, 3.4.1.4 Code Alignment, Assembly/Compiler
2251 * Coding Rule 11: All branch targets should be 16-byte
2252 * aligned.
2253 */
7e639208 2254 emit_align(&prog, 16);
75ccbef6
BT
2255 jg_offset = prog - jg_reloc;
2256 emit_code(jg_reloc - jg_bytes, jg_offset, jg_bytes);
2257
2258 err = emit_bpf_dispatcher(&prog, a + pivot + 1, /* emit upper_part */
2259 b, progs);
2260 if (err)
2261 return err;
2262
2263 *pprog = prog;
2264 return 0;
2265}
2266
2267static int cmp_ips(const void *a, const void *b)
2268{
2269 const s64 *ipa = a;
2270 const s64 *ipb = b;
2271
2272 if (*ipa > *ipb)
2273 return 1;
2274 if (*ipa < *ipb)
2275 return -1;
2276 return 0;
2277}
2278
2279int arch_prepare_bpf_dispatcher(void *image, s64 *funcs, int num_funcs)
2280{
2281 u8 *prog = image;
2282
2283 sort(funcs, num_funcs, sizeof(funcs[0]), cmp_ips, NULL);
2284 return emit_bpf_dispatcher(&prog, 0, num_funcs - 1, funcs);
2285}
2286
1c2a088a 2287struct x64_jit_data {
1022a549 2288 struct bpf_binary_header *rw_header;
1c2a088a
AS
2289 struct bpf_binary_header *header;
2290 int *addrs;
2291 u8 *image;
2292 int proglen;
2293 struct jit_context ctx;
2294};
2295
93c5aecc
GL
2296#define MAX_PASSES 20
2297#define PADDING_PASSES (MAX_PASSES - 5)
2298
d1c55ab5 2299struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
f3c2af7b 2300{
1022a549 2301 struct bpf_binary_header *rw_header = NULL;
f3c2af7b 2302 struct bpf_binary_header *header = NULL;
959a7579 2303 struct bpf_prog *tmp, *orig_prog = prog;
1c2a088a 2304 struct x64_jit_data *jit_data;
f3c2af7b
AS
2305 int proglen, oldproglen = 0;
2306 struct jit_context ctx = {};
959a7579 2307 bool tmp_blinded = false;
1c2a088a 2308 bool extra_pass = false;
93c5aecc 2309 bool padding = false;
1022a549 2310 u8 *rw_image = NULL;
f3c2af7b
AS
2311 u8 *image = NULL;
2312 int *addrs;
2313 int pass;
2314 int i;
2315
60b58afc 2316 if (!prog->jit_requested)
959a7579
DB
2317 return orig_prog;
2318
2319 tmp = bpf_jit_blind_constants(prog);
a2c7a983
IM
2320 /*
2321 * If blinding was requested and we failed during blinding,
959a7579
DB
2322 * we must fall back to the interpreter.
2323 */
2324 if (IS_ERR(tmp))
2325 return orig_prog;
2326 if (tmp != prog) {
2327 tmp_blinded = true;
2328 prog = tmp;
2329 }
0a14842f 2330
1c2a088a
AS
2331 jit_data = prog->aux->jit_data;
2332 if (!jit_data) {
2333 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL);
2334 if (!jit_data) {
2335 prog = orig_prog;
2336 goto out;
2337 }
2338 prog->aux->jit_data = jit_data;
2339 }
2340 addrs = jit_data->addrs;
2341 if (addrs) {
2342 ctx = jit_data->ctx;
2343 oldproglen = jit_data->proglen;
2344 image = jit_data->image;
2345 header = jit_data->header;
1022a549
SL
2346 rw_header = jit_data->rw_header;
2347 rw_image = (void *)rw_header + ((void *)image - (void *)header);
1c2a088a 2348 extra_pass = true;
93c5aecc 2349 padding = true;
1c2a088a
AS
2350 goto skip_init_addrs;
2351 }
de920fc6 2352 addrs = kvmalloc_array(prog->len + 1, sizeof(*addrs), GFP_KERNEL);
959a7579
DB
2353 if (!addrs) {
2354 prog = orig_prog;
1c2a088a 2355 goto out_addrs;
959a7579 2356 }
f3c2af7b 2357
a2c7a983
IM
2358 /*
2359 * Before first pass, make a rough estimation of addrs[]
2360 * each BPF instruction is translated to less than 64 bytes
f3c2af7b 2361 */
7c2e988f 2362 for (proglen = 0, i = 0; i <= prog->len; i++) {
f3c2af7b
AS
2363 proglen += 64;
2364 addrs[i] = proglen;
2365 }
2366 ctx.cleanup_addr = proglen;
1c2a088a 2367skip_init_addrs:
f3c2af7b 2368
a2c7a983
IM
2369 /*
2370 * JITed image shrinks with every pass and the loop iterates
2371 * until the image stops shrinking. Very large BPF programs
3f7352bf 2372 * may converge on the last pass. In such case do one more
a2c7a983 2373 * pass to emit the final image.
3f7352bf 2374 */
93c5aecc
GL
2375 for (pass = 0; pass < MAX_PASSES || image; pass++) {
2376 if (!padding && pass >= PADDING_PASSES)
2377 padding = true;
1022a549 2378 proglen = do_jit(prog, addrs, image, rw_image, oldproglen, &ctx, padding);
f3c2af7b 2379 if (proglen <= 0) {
3aab8884 2380out_image:
f3c2af7b 2381 image = NULL;
676b2daa
SL
2382 if (header) {
2383 bpf_arch_text_copy(&header->size, &rw_header->size,
2384 sizeof(rw_header->size));
1022a549 2385 bpf_jit_binary_pack_free(header, rw_header);
676b2daa 2386 }
73e14451 2387 /* Fall back to interpreter mode */
959a7579 2388 prog = orig_prog;
73e14451
HT
2389 if (extra_pass) {
2390 prog->bpf_func = NULL;
2391 prog->jited = 0;
2392 prog->jited_len = 0;
2393 }
959a7579 2394 goto out_addrs;
f3c2af7b 2395 }
0a14842f 2396 if (image) {
e0ee9c12 2397 if (proglen != oldproglen) {
f3c2af7b
AS
2398 pr_err("bpf_jit: proglen=%d != oldproglen=%d\n",
2399 proglen, oldproglen);
3aab8884 2400 goto out_image;
e0ee9c12 2401 }
0a14842f
ED
2402 break;
2403 }
2404 if (proglen == oldproglen) {
3dec541b
AS
2405 /*
2406 * The number of entries in extable is the number of BPF_LDX
2407 * insns that access kernel memory via "pointer to BTF type".
2408 * The verifier changed their opcode from LDX|MEM|size
2409 * to LDX|PROBE_MEM|size to make JITing easier.
2410 */
2411 u32 align = __alignof__(struct exception_table_entry);
2412 u32 extable_size = prog->aux->num_exentries *
2413 sizeof(struct exception_table_entry);
2414
2415 /* allocate module memory for x86 insns and extable */
1022a549
SL
2416 header = bpf_jit_binary_pack_alloc(roundup(proglen, align) + extable_size,
2417 &image, align, &rw_header, &rw_image,
2418 jit_fill_hole);
959a7579
DB
2419 if (!header) {
2420 prog = orig_prog;
2421 goto out_addrs;
2422 }
3dec541b 2423 prog->aux->extable = (void *) image + roundup(proglen, align);
0a14842f
ED
2424 }
2425 oldproglen = proglen;
6007b080 2426 cond_resched();
0a14842f 2427 }
79617801 2428
0a14842f 2429 if (bpf_jit_enable > 1)
485d6511 2430 bpf_jit_dump(prog->len, proglen, pass + 1, image);
0a14842f
ED
2431
2432 if (image) {
1c2a088a 2433 if (!prog->is_func || extra_pass) {
1022a549
SL
2434 /*
2435 * bpf_jit_binary_pack_finalize fails in two scenarios:
2436 * 1) header is not pointing to proper module memory;
2437 * 2) the arch doesn't support bpf_arch_text_copy().
2438 *
f95f768f 2439 * Both cases are serious bugs and justify WARN_ON.
1022a549 2440 */
f95f768f 2441 if (WARN_ON(bpf_jit_binary_pack_finalize(prog, header, rw_header))) {
73e14451
HT
2442 /* header has been freed */
2443 header = NULL;
2444 goto out_image;
f95f768f
SL
2445 }
2446
428d5df1 2447 bpf_tail_call_direct_fixup(prog);
1c2a088a
AS
2448 } else {
2449 jit_data->addrs = addrs;
2450 jit_data->ctx = ctx;
2451 jit_data->proglen = proglen;
2452 jit_data->image = image;
2453 jit_data->header = header;
1022a549 2454 jit_data->rw_header = rw_header;
1c2a088a 2455 }
f3c2af7b 2456 prog->bpf_func = (void *)image;
a91263d5 2457 prog->jited = 1;
783d28dd 2458 prog->jited_len = proglen;
9d5ecb09
DB
2459 } else {
2460 prog = orig_prog;
0a14842f 2461 }
959a7579 2462
39f56ca9 2463 if (!image || !prog->is_func || extra_pass) {
c454a46b 2464 if (image)
7c2e988f 2465 bpf_prog_fill_jited_linfo(prog, addrs + 1);
959a7579 2466out_addrs:
de920fc6 2467 kvfree(addrs);
1c2a088a
AS
2468 kfree(jit_data);
2469 prog->aux->jit_data = NULL;
2470 }
959a7579
DB
2471out:
2472 if (tmp_blinded)
2473 bpf_jit_prog_release_other(prog, prog == orig_prog ?
2474 tmp : orig_prog);
d1c55ab5 2475 return prog;
0a14842f 2476}
e6ac2450
MKL
2477
2478bool bpf_jit_supports_kfunc_call(void)
2479{
2480 return true;
2481}
ebc1415d
SL
2482
2483void *bpf_arch_text_copy(void *dst, void *src, size_t len)
2484{
2485 if (text_poke_copy(dst, src, len) == NULL)
2486 return ERR_PTR(-EINVAL);
2487 return dst;
2488}