bpf: Add BPF_MAP_GET_FD_BY_ID
[linux-block.git] / arch / x86 / net / bpf_jit_comp.c
CommitLineData
0a14842f
ED
1/* bpf_jit_comp.c : BPF JIT compiler
2 *
3b58908a 3 * Copyright (C) 2011-2013 Eric Dumazet (eric.dumazet@gmail.com)
62258278 4 * Internal BPF Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
0a14842f
ED
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; version 2
9 * of the License.
10 */
0a14842f
ED
11#include <linux/netdevice.h>
12#include <linux/filter.h>
855ddb56 13#include <linux/if_vlan.h>
738cbe72 14#include <asm/cacheflush.h>
d1163651 15#include <asm/set_memory.h>
b52f00e6 16#include <linux/bpf.h>
0a14842f 17
0a14842f
ED
18int bpf_jit_enable __read_mostly;
19
20/*
21 * assembly code in arch/x86/net/bpf_jit.S
22 */
62258278 23extern u8 sk_load_word[], sk_load_half[], sk_load_byte[];
a998d434 24extern u8 sk_load_word_positive_offset[], sk_load_half_positive_offset[];
62258278 25extern u8 sk_load_byte_positive_offset[];
a998d434 26extern u8 sk_load_word_negative_offset[], sk_load_half_negative_offset[];
62258278 27extern u8 sk_load_byte_negative_offset[];
0a14842f 28
5cccc702 29static u8 *emit_code(u8 *ptr, u32 bytes, unsigned int len)
0a14842f
ED
30{
31 if (len == 1)
32 *ptr = bytes;
33 else if (len == 2)
34 *(u16 *)ptr = bytes;
35 else {
36 *(u32 *)ptr = bytes;
37 barrier();
38 }
39 return ptr + len;
40}
41
b52f00e6
AS
42#define EMIT(bytes, len) \
43 do { prog = emit_code(prog, bytes, len); cnt += len; } while (0)
0a14842f
ED
44
45#define EMIT1(b1) EMIT(b1, 1)
46#define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2)
47#define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3)
48#define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4)
62258278
AS
49#define EMIT1_off32(b1, off) \
50 do {EMIT1(b1); EMIT(off, 4); } while (0)
51#define EMIT2_off32(b1, b2, off) \
52 do {EMIT2(b1, b2); EMIT(off, 4); } while (0)
53#define EMIT3_off32(b1, b2, b3, off) \
54 do {EMIT3(b1, b2, b3); EMIT(off, 4); } while (0)
55#define EMIT4_off32(b1, b2, b3, b4, off) \
56 do {EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0)
0a14842f 57
5cccc702 58static bool is_imm8(int value)
0a14842f
ED
59{
60 return value <= 127 && value >= -128;
61}
62
5cccc702 63static bool is_simm32(s64 value)
0a14842f 64{
62258278 65 return value == (s64) (s32) value;
0a14842f
ED
66}
67
e430f34e
AS
68/* mov dst, src */
69#define EMIT_mov(DST, SRC) \
70 do {if (DST != SRC) \
71 EMIT3(add_2mod(0x48, DST, SRC), 0x89, add_2reg(0xC0, DST, SRC)); \
62258278
AS
72 } while (0)
73
74static int bpf_size_to_x86_bytes(int bpf_size)
75{
76 if (bpf_size == BPF_W)
77 return 4;
78 else if (bpf_size == BPF_H)
79 return 2;
80 else if (bpf_size == BPF_B)
81 return 1;
82 else if (bpf_size == BPF_DW)
83 return 4; /* imm32 */
84 else
85 return 0;
86}
0a14842f
ED
87
88/* list of x86 cond jumps opcodes (. + s8)
89 * Add 0x10 (and an extra 0x0f) to generate far jumps (. + s32)
90 */
91#define X86_JB 0x72
92#define X86_JAE 0x73
93#define X86_JE 0x74
94#define X86_JNE 0x75
95#define X86_JBE 0x76
96#define X86_JA 0x77
62258278
AS
97#define X86_JGE 0x7D
98#define X86_JG 0x7F
0a14842f 99
5cccc702 100static void bpf_flush_icache(void *start, void *end)
0a14842f
ED
101{
102 mm_segment_t old_fs = get_fs();
103
104 set_fs(KERNEL_DS);
105 smp_wmb();
106 flush_icache_range((unsigned long)start, (unsigned long)end);
107 set_fs(old_fs);
108}
109
a998d434
JS
110#define CHOOSE_LOAD_FUNC(K, func) \
111 ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset)
0a14842f 112
62258278 113/* pick a register outside of BPF range for JIT internal work */
959a7579 114#define AUX_REG (MAX_BPF_JIT_REG + 1)
62258278 115
959a7579
DB
116/* The following table maps BPF registers to x64 registers.
117 *
118 * x64 register r12 is unused, since if used as base address
119 * register in load/store instructions, it always needs an
120 * extra byte of encoding and is callee saved.
121 *
122 * r9 caches skb->len - skb->data_len
123 * r10 caches skb->data, and used for blinding (if enabled)
62258278
AS
124 */
125static const int reg2hex[] = {
126 [BPF_REG_0] = 0, /* rax */
127 [BPF_REG_1] = 7, /* rdi */
128 [BPF_REG_2] = 6, /* rsi */
129 [BPF_REG_3] = 2, /* rdx */
130 [BPF_REG_4] = 1, /* rcx */
131 [BPF_REG_5] = 0, /* r8 */
132 [BPF_REG_6] = 3, /* rbx callee saved */
133 [BPF_REG_7] = 5, /* r13 callee saved */
134 [BPF_REG_8] = 6, /* r14 callee saved */
135 [BPF_REG_9] = 7, /* r15 callee saved */
136 [BPF_REG_FP] = 5, /* rbp readonly */
959a7579 137 [BPF_REG_AX] = 2, /* r10 temp register */
62258278
AS
138 [AUX_REG] = 3, /* r11 temp register */
139};
140
141/* is_ereg() == true if BPF register 'reg' maps to x64 r8..r15
142 * which need extra byte of encoding.
143 * rax,rcx,...,rbp have simpler encoding
144 */
5cccc702 145static bool is_ereg(u32 reg)
62258278 146{
d148134b
JP
147 return (1 << reg) & (BIT(BPF_REG_5) |
148 BIT(AUX_REG) |
149 BIT(BPF_REG_7) |
150 BIT(BPF_REG_8) |
959a7579
DB
151 BIT(BPF_REG_9) |
152 BIT(BPF_REG_AX));
62258278
AS
153}
154
155/* add modifiers if 'reg' maps to x64 registers r8..r15 */
5cccc702 156static u8 add_1mod(u8 byte, u32 reg)
62258278
AS
157{
158 if (is_ereg(reg))
159 byte |= 1;
160 return byte;
161}
162
5cccc702 163static u8 add_2mod(u8 byte, u32 r1, u32 r2)
62258278
AS
164{
165 if (is_ereg(r1))
166 byte |= 1;
167 if (is_ereg(r2))
168 byte |= 4;
169 return byte;
170}
171
e430f34e 172/* encode 'dst_reg' register into x64 opcode 'byte' */
5cccc702 173static u8 add_1reg(u8 byte, u32 dst_reg)
62258278 174{
e430f34e 175 return byte + reg2hex[dst_reg];
62258278
AS
176}
177
e430f34e 178/* encode 'dst_reg' and 'src_reg' registers into x64 opcode 'byte' */
5cccc702 179static u8 add_2reg(u8 byte, u32 dst_reg, u32 src_reg)
62258278 180{
e430f34e 181 return byte + reg2hex[dst_reg] + (reg2hex[src_reg] << 3);
62258278
AS
182}
183
738cbe72
DB
184static void jit_fill_hole(void *area, unsigned int size)
185{
186 /* fill whole space with int3 instructions */
187 memset(area, 0xcc, size);
188}
189
f3c2af7b 190struct jit_context {
769e0de6 191 int cleanup_addr; /* epilogue code offset */
62258278 192 bool seen_ld_abs;
959a7579 193 bool seen_ax_reg;
f3c2af7b
AS
194};
195
e0ee9c12
AS
196/* maximum number of bytes emitted while JITing one eBPF insn */
197#define BPF_MAX_INSN_SIZE 128
198#define BPF_INSN_SAFETY 64
199
177366bf
AS
200#define AUX_STACK_SPACE \
201 (32 /* space for rbx, r13, r14, r15 */ + \
b52f00e6
AS
202 8 /* space for skb_copy_bits() buffer */)
203
177366bf 204#define PROLOGUE_SIZE 37
b52f00e6
AS
205
206/* emit x64 prologue code for BPF program and check it's size.
207 * bpf_tail_call helper will skip it while jumping into another program
208 */
2960ae48 209static void emit_prologue(u8 **pprog, u32 stack_depth)
0a14842f 210{
b52f00e6
AS
211 u8 *prog = *pprog;
212 int cnt = 0;
0a14842f 213
62258278
AS
214 EMIT1(0x55); /* push rbp */
215 EMIT3(0x48, 0x89, 0xE5); /* mov rbp,rsp */
0a14842f 216
2960ae48
AS
217 /* sub rsp, rounded_stack_depth + AUX_STACK_SPACE */
218 EMIT3_off32(0x48, 0x81, 0xEC,
219 round_up(stack_depth, 8) + AUX_STACK_SPACE);
177366bf
AS
220
221 /* sub rbp, AUX_STACK_SPACE */
222 EMIT4(0x48, 0x83, 0xED, AUX_STACK_SPACE);
62258278
AS
223
224 /* all classic BPF filters use R6(rbx) save it */
225
177366bf
AS
226 /* mov qword ptr [rbp+0],rbx */
227 EMIT4(0x48, 0x89, 0x5D, 0);
62258278 228
8fb575ca 229 /* bpf_convert_filter() maps classic BPF register X to R7 and uses R8
62258278
AS
230 * as temporary, so all tcpdump filters need to spill/fill R7(r13) and
231 * R8(r14). R9(r15) spill could be made conditional, but there is only
232 * one 'bpf_error' return path out of helper functions inside bpf_jit.S
233 * The overhead of extra spill is negligible for any filter other
234 * than synthetic ones. Therefore not worth adding complexity.
235 */
236
177366bf
AS
237 /* mov qword ptr [rbp+8],r13 */
238 EMIT4(0x4C, 0x89, 0x6D, 8);
239 /* mov qword ptr [rbp+16],r14 */
240 EMIT4(0x4C, 0x89, 0x75, 16);
241 /* mov qword ptr [rbp+24],r15 */
242 EMIT4(0x4C, 0x89, 0x7D, 24);
62258278 243
8b614aeb
DB
244 /* Clear the tail call counter (tail_call_cnt): for eBPF tail calls
245 * we need to reset the counter to 0. It's done in two instructions,
246 * resetting rax register to 0 (xor on eax gets 0 extended), and
247 * moving it to the counter location.
248 */
62258278 249
8b614aeb
DB
250 /* xor eax, eax */
251 EMIT2(0x31, 0xc0);
177366bf
AS
252 /* mov qword ptr [rbp+32], rax */
253 EMIT4(0x48, 0x89, 0x45, 32);
b52f00e6
AS
254
255 BUILD_BUG_ON(cnt != PROLOGUE_SIZE);
256 *pprog = prog;
257}
258
259/* generate the following code:
260 * ... bpf_tail_call(void *ctx, struct bpf_array *array, u64 index) ...
261 * if (index >= array->map.max_entries)
262 * goto out;
263 * if (++tail_call_cnt > MAX_TAIL_CALL_CNT)
264 * goto out;
2a36f0b9 265 * prog = array->ptrs[index];
b52f00e6
AS
266 * if (prog == NULL)
267 * goto out;
268 * goto *(prog->bpf_func + prologue_size);
269 * out:
270 */
271static void emit_bpf_tail_call(u8 **pprog)
272{
273 u8 *prog = *pprog;
274 int label1, label2, label3;
275 int cnt = 0;
276
277 /* rdi - pointer to ctx
278 * rsi - pointer to bpf_array
279 * rdx - index in bpf_array
280 */
281
282 /* if (index >= array->map.max_entries)
283 * goto out;
284 */
285 EMIT4(0x48, 0x8B, 0x46, /* mov rax, qword ptr [rsi + 16] */
286 offsetof(struct bpf_array, map.max_entries));
287 EMIT3(0x48, 0x39, 0xD0); /* cmp rax, rdx */
2482abb9 288#define OFFSET1 47 /* number of bytes to jump */
b52f00e6
AS
289 EMIT2(X86_JBE, OFFSET1); /* jbe out */
290 label1 = cnt;
291
292 /* if (tail_call_cnt > MAX_TAIL_CALL_CNT)
293 * goto out;
294 */
177366bf 295 EMIT2_off32(0x8B, 0x85, 36); /* mov eax, dword ptr [rbp + 36] */
b52f00e6 296 EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT); /* cmp eax, MAX_TAIL_CALL_CNT */
2482abb9 297#define OFFSET2 36
b52f00e6
AS
298 EMIT2(X86_JA, OFFSET2); /* ja out */
299 label2 = cnt;
300 EMIT3(0x83, 0xC0, 0x01); /* add eax, 1 */
177366bf 301 EMIT2_off32(0x89, 0x85, 36); /* mov dword ptr [rbp + 36], eax */
b52f00e6 302
2a36f0b9 303 /* prog = array->ptrs[index]; */
2482abb9 304 EMIT4_off32(0x48, 0x8D, 0x84, 0xD6, /* lea rax, [rsi + rdx * 8 + offsetof(...)] */
2a36f0b9 305 offsetof(struct bpf_array, ptrs));
b52f00e6
AS
306 EMIT3(0x48, 0x8B, 0x00); /* mov rax, qword ptr [rax] */
307
308 /* if (prog == NULL)
309 * goto out;
310 */
311 EMIT4(0x48, 0x83, 0xF8, 0x00); /* cmp rax, 0 */
312#define OFFSET3 10
313 EMIT2(X86_JE, OFFSET3); /* je out */
314 label3 = cnt;
315
316 /* goto *(prog->bpf_func + prologue_size); */
317 EMIT4(0x48, 0x8B, 0x40, /* mov rax, qword ptr [rax + 32] */
318 offsetof(struct bpf_prog, bpf_func));
319 EMIT4(0x48, 0x83, 0xC0, PROLOGUE_SIZE); /* add rax, prologue_size */
320
321 /* now we're ready to jump into next BPF program
322 * rdi == ctx (1st arg)
323 * rax == prog->bpf_func + prologue_size
324 */
325 EMIT2(0xFF, 0xE0); /* jmp rax */
326
327 /* out: */
328 BUILD_BUG_ON(cnt - label1 != OFFSET1);
329 BUILD_BUG_ON(cnt - label2 != OFFSET2);
330 BUILD_BUG_ON(cnt - label3 != OFFSET3);
331 *pprog = prog;
332}
333
4e10df9a
AS
334
335static void emit_load_skb_data_hlen(u8 **pprog)
336{
337 u8 *prog = *pprog;
338 int cnt = 0;
339
340 /* r9d = skb->len - skb->data_len (headlen)
341 * r10 = skb->data
342 */
343 /* mov %r9d, off32(%rdi) */
344 EMIT3_off32(0x44, 0x8b, 0x8f, offsetof(struct sk_buff, len));
345
346 /* sub %r9d, off32(%rdi) */
347 EMIT3_off32(0x44, 0x2b, 0x8f, offsetof(struct sk_buff, data_len));
348
349 /* mov %r10, off32(%rdi) */
350 EMIT3_off32(0x4c, 0x8b, 0x97, offsetof(struct sk_buff, data));
351 *pprog = prog;
352}
353
b52f00e6
AS
354static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image,
355 int oldproglen, struct jit_context *ctx)
356{
357 struct bpf_insn *insn = bpf_prog->insnsi;
358 int insn_cnt = bpf_prog->len;
359 bool seen_ld_abs = ctx->seen_ld_abs | (oldproglen == 0);
959a7579 360 bool seen_ax_reg = ctx->seen_ax_reg | (oldproglen == 0);
b52f00e6
AS
361 bool seen_exit = false;
362 u8 temp[BPF_MAX_INSN_SIZE + BPF_INSN_SAFETY];
363 int i, cnt = 0;
364 int proglen = 0;
365 u8 *prog = temp;
366
2960ae48 367 emit_prologue(&prog, bpf_prog->aux->stack_depth);
b52f00e6 368
4e10df9a
AS
369 if (seen_ld_abs)
370 emit_load_skb_data_hlen(&prog);
62258278
AS
371
372 for (i = 0; i < insn_cnt; i++, insn++) {
e430f34e
AS
373 const s32 imm32 = insn->imm;
374 u32 dst_reg = insn->dst_reg;
375 u32 src_reg = insn->src_reg;
62258278
AS
376 u8 b1 = 0, b2 = 0, b3 = 0;
377 s64 jmp_offset;
378 u8 jmp_cond;
4e10df9a 379 bool reload_skb_data;
62258278
AS
380 int ilen;
381 u8 *func;
382
959a7579
DB
383 if (dst_reg == BPF_REG_AX || src_reg == BPF_REG_AX)
384 ctx->seen_ax_reg = seen_ax_reg = true;
385
62258278
AS
386 switch (insn->code) {
387 /* ALU */
388 case BPF_ALU | BPF_ADD | BPF_X:
389 case BPF_ALU | BPF_SUB | BPF_X:
390 case BPF_ALU | BPF_AND | BPF_X:
391 case BPF_ALU | BPF_OR | BPF_X:
392 case BPF_ALU | BPF_XOR | BPF_X:
393 case BPF_ALU64 | BPF_ADD | BPF_X:
394 case BPF_ALU64 | BPF_SUB | BPF_X:
395 case BPF_ALU64 | BPF_AND | BPF_X:
396 case BPF_ALU64 | BPF_OR | BPF_X:
397 case BPF_ALU64 | BPF_XOR | BPF_X:
398 switch (BPF_OP(insn->code)) {
399 case BPF_ADD: b2 = 0x01; break;
400 case BPF_SUB: b2 = 0x29; break;
401 case BPF_AND: b2 = 0x21; break;
402 case BPF_OR: b2 = 0x09; break;
403 case BPF_XOR: b2 = 0x31; break;
0a14842f 404 }
62258278 405 if (BPF_CLASS(insn->code) == BPF_ALU64)
e430f34e
AS
406 EMIT1(add_2mod(0x48, dst_reg, src_reg));
407 else if (is_ereg(dst_reg) || is_ereg(src_reg))
408 EMIT1(add_2mod(0x40, dst_reg, src_reg));
409 EMIT2(b2, add_2reg(0xC0, dst_reg, src_reg));
62258278 410 break;
0a14842f 411
e430f34e 412 /* mov dst, src */
62258278 413 case BPF_ALU64 | BPF_MOV | BPF_X:
e430f34e 414 EMIT_mov(dst_reg, src_reg);
0a14842f 415 break;
0a14842f 416
e430f34e 417 /* mov32 dst, src */
62258278 418 case BPF_ALU | BPF_MOV | BPF_X:
e430f34e
AS
419 if (is_ereg(dst_reg) || is_ereg(src_reg))
420 EMIT1(add_2mod(0x40, dst_reg, src_reg));
421 EMIT2(0x89, add_2reg(0xC0, dst_reg, src_reg));
62258278 422 break;
0a14842f 423
e430f34e 424 /* neg dst */
62258278
AS
425 case BPF_ALU | BPF_NEG:
426 case BPF_ALU64 | BPF_NEG:
427 if (BPF_CLASS(insn->code) == BPF_ALU64)
e430f34e
AS
428 EMIT1(add_1mod(0x48, dst_reg));
429 else if (is_ereg(dst_reg))
430 EMIT1(add_1mod(0x40, dst_reg));
431 EMIT2(0xF7, add_1reg(0xD8, dst_reg));
62258278
AS
432 break;
433
434 case BPF_ALU | BPF_ADD | BPF_K:
435 case BPF_ALU | BPF_SUB | BPF_K:
436 case BPF_ALU | BPF_AND | BPF_K:
437 case BPF_ALU | BPF_OR | BPF_K:
438 case BPF_ALU | BPF_XOR | BPF_K:
439 case BPF_ALU64 | BPF_ADD | BPF_K:
440 case BPF_ALU64 | BPF_SUB | BPF_K:
441 case BPF_ALU64 | BPF_AND | BPF_K:
442 case BPF_ALU64 | BPF_OR | BPF_K:
443 case BPF_ALU64 | BPF_XOR | BPF_K:
444 if (BPF_CLASS(insn->code) == BPF_ALU64)
e430f34e
AS
445 EMIT1(add_1mod(0x48, dst_reg));
446 else if (is_ereg(dst_reg))
447 EMIT1(add_1mod(0x40, dst_reg));
62258278
AS
448
449 switch (BPF_OP(insn->code)) {
450 case BPF_ADD: b3 = 0xC0; break;
451 case BPF_SUB: b3 = 0xE8; break;
452 case BPF_AND: b3 = 0xE0; break;
453 case BPF_OR: b3 = 0xC8; break;
454 case BPF_XOR: b3 = 0xF0; break;
455 }
456
e430f34e
AS
457 if (is_imm8(imm32))
458 EMIT3(0x83, add_1reg(b3, dst_reg), imm32);
62258278 459 else
e430f34e 460 EMIT2_off32(0x81, add_1reg(b3, dst_reg), imm32);
62258278
AS
461 break;
462
463 case BPF_ALU64 | BPF_MOV | BPF_K:
464 /* optimization: if imm32 is positive,
465 * use 'mov eax, imm32' (which zero-extends imm32)
466 * to save 2 bytes
467 */
e430f34e 468 if (imm32 < 0) {
62258278 469 /* 'mov rax, imm32' sign extends imm32 */
e430f34e 470 b1 = add_1mod(0x48, dst_reg);
62258278
AS
471 b2 = 0xC7;
472 b3 = 0xC0;
e430f34e 473 EMIT3_off32(b1, b2, add_1reg(b3, dst_reg), imm32);
0a14842f 474 break;
62258278
AS
475 }
476
477 case BPF_ALU | BPF_MOV | BPF_K:
606c88a8
DB
478 /* optimization: if imm32 is zero, use 'xor <dst>,<dst>'
479 * to save 3 bytes.
480 */
481 if (imm32 == 0) {
482 if (is_ereg(dst_reg))
483 EMIT1(add_2mod(0x40, dst_reg, dst_reg));
484 b2 = 0x31; /* xor */
485 b3 = 0xC0;
486 EMIT2(b2, add_2reg(b3, dst_reg, dst_reg));
487 break;
488 }
489
62258278 490 /* mov %eax, imm32 */
e430f34e
AS
491 if (is_ereg(dst_reg))
492 EMIT1(add_1mod(0x40, dst_reg));
493 EMIT1_off32(add_1reg(0xB8, dst_reg), imm32);
62258278
AS
494 break;
495
02ab695b 496 case BPF_LD | BPF_IMM | BPF_DW:
606c88a8
DB
497 /* optimization: if imm64 is zero, use 'xor <dst>,<dst>'
498 * to save 7 bytes.
499 */
500 if (insn[0].imm == 0 && insn[1].imm == 0) {
501 b1 = add_2mod(0x48, dst_reg, dst_reg);
502 b2 = 0x31; /* xor */
503 b3 = 0xC0;
504 EMIT3(b1, b2, add_2reg(b3, dst_reg, dst_reg));
505
506 insn++;
507 i++;
508 break;
509 }
510
02ab695b
AS
511 /* movabsq %rax, imm64 */
512 EMIT2(add_1mod(0x48, dst_reg), add_1reg(0xB8, dst_reg));
513 EMIT(insn[0].imm, 4);
514 EMIT(insn[1].imm, 4);
515
516 insn++;
517 i++;
518 break;
519
e430f34e 520 /* dst %= src, dst /= src, dst %= imm32, dst /= imm32 */
62258278
AS
521 case BPF_ALU | BPF_MOD | BPF_X:
522 case BPF_ALU | BPF_DIV | BPF_X:
523 case BPF_ALU | BPF_MOD | BPF_K:
524 case BPF_ALU | BPF_DIV | BPF_K:
525 case BPF_ALU64 | BPF_MOD | BPF_X:
526 case BPF_ALU64 | BPF_DIV | BPF_X:
527 case BPF_ALU64 | BPF_MOD | BPF_K:
528 case BPF_ALU64 | BPF_DIV | BPF_K:
529 EMIT1(0x50); /* push rax */
530 EMIT1(0x52); /* push rdx */
531
532 if (BPF_SRC(insn->code) == BPF_X)
e430f34e
AS
533 /* mov r11, src_reg */
534 EMIT_mov(AUX_REG, src_reg);
62258278 535 else
e430f34e
AS
536 /* mov r11, imm32 */
537 EMIT3_off32(0x49, 0xC7, 0xC3, imm32);
62258278 538
e430f34e
AS
539 /* mov rax, dst_reg */
540 EMIT_mov(BPF_REG_0, dst_reg);
62258278
AS
541
542 /* xor edx, edx
543 * equivalent to 'xor rdx, rdx', but one byte less
544 */
545 EMIT2(0x31, 0xd2);
546
547 if (BPF_SRC(insn->code) == BPF_X) {
e430f34e 548 /* if (src_reg == 0) return 0 */
62258278
AS
549
550 /* cmp r11, 0 */
551 EMIT4(0x49, 0x83, 0xFB, 0x00);
552
553 /* jne .+9 (skip over pop, pop, xor and jmp) */
554 EMIT2(X86_JNE, 1 + 1 + 2 + 5);
555 EMIT1(0x5A); /* pop rdx */
556 EMIT1(0x58); /* pop rax */
557 EMIT2(0x31, 0xc0); /* xor eax, eax */
558
559 /* jmp cleanup_addr
560 * addrs[i] - 11, because there are 11 bytes
561 * after this insn: div, mov, pop, pop, mov
562 */
563 jmp_offset = ctx->cleanup_addr - (addrs[i] - 11);
564 EMIT1_off32(0xE9, jmp_offset);
565 }
566
567 if (BPF_CLASS(insn->code) == BPF_ALU64)
568 /* div r11 */
569 EMIT3(0x49, 0xF7, 0xF3);
570 else
571 /* div r11d */
572 EMIT3(0x41, 0xF7, 0xF3);
573
574 if (BPF_OP(insn->code) == BPF_MOD)
575 /* mov r11, rdx */
576 EMIT3(0x49, 0x89, 0xD3);
577 else
578 /* mov r11, rax */
579 EMIT3(0x49, 0x89, 0xC3);
580
581 EMIT1(0x5A); /* pop rdx */
582 EMIT1(0x58); /* pop rax */
583
e430f34e
AS
584 /* mov dst_reg, r11 */
585 EMIT_mov(dst_reg, AUX_REG);
62258278
AS
586 break;
587
588 case BPF_ALU | BPF_MUL | BPF_K:
589 case BPF_ALU | BPF_MUL | BPF_X:
590 case BPF_ALU64 | BPF_MUL | BPF_K:
591 case BPF_ALU64 | BPF_MUL | BPF_X:
592 EMIT1(0x50); /* push rax */
593 EMIT1(0x52); /* push rdx */
594
e430f34e
AS
595 /* mov r11, dst_reg */
596 EMIT_mov(AUX_REG, dst_reg);
62258278
AS
597
598 if (BPF_SRC(insn->code) == BPF_X)
e430f34e
AS
599 /* mov rax, src_reg */
600 EMIT_mov(BPF_REG_0, src_reg);
62258278 601 else
e430f34e
AS
602 /* mov rax, imm32 */
603 EMIT3_off32(0x48, 0xC7, 0xC0, imm32);
62258278
AS
604
605 if (BPF_CLASS(insn->code) == BPF_ALU64)
606 EMIT1(add_1mod(0x48, AUX_REG));
607 else if (is_ereg(AUX_REG))
608 EMIT1(add_1mod(0x40, AUX_REG));
609 /* mul(q) r11 */
610 EMIT2(0xF7, add_1reg(0xE0, AUX_REG));
611
612 /* mov r11, rax */
613 EMIT_mov(AUX_REG, BPF_REG_0);
614
615 EMIT1(0x5A); /* pop rdx */
616 EMIT1(0x58); /* pop rax */
617
e430f34e
AS
618 /* mov dst_reg, r11 */
619 EMIT_mov(dst_reg, AUX_REG);
62258278
AS
620 break;
621
622 /* shifts */
623 case BPF_ALU | BPF_LSH | BPF_K:
624 case BPF_ALU | BPF_RSH | BPF_K:
625 case BPF_ALU | BPF_ARSH | BPF_K:
626 case BPF_ALU64 | BPF_LSH | BPF_K:
627 case BPF_ALU64 | BPF_RSH | BPF_K:
628 case BPF_ALU64 | BPF_ARSH | BPF_K:
629 if (BPF_CLASS(insn->code) == BPF_ALU64)
e430f34e
AS
630 EMIT1(add_1mod(0x48, dst_reg));
631 else if (is_ereg(dst_reg))
632 EMIT1(add_1mod(0x40, dst_reg));
62258278
AS
633
634 switch (BPF_OP(insn->code)) {
635 case BPF_LSH: b3 = 0xE0; break;
636 case BPF_RSH: b3 = 0xE8; break;
637 case BPF_ARSH: b3 = 0xF8; break;
638 }
e430f34e 639 EMIT3(0xC1, add_1reg(b3, dst_reg), imm32);
62258278
AS
640 break;
641
72b603ee
AS
642 case BPF_ALU | BPF_LSH | BPF_X:
643 case BPF_ALU | BPF_RSH | BPF_X:
644 case BPF_ALU | BPF_ARSH | BPF_X:
645 case BPF_ALU64 | BPF_LSH | BPF_X:
646 case BPF_ALU64 | BPF_RSH | BPF_X:
647 case BPF_ALU64 | BPF_ARSH | BPF_X:
648
649 /* check for bad case when dst_reg == rcx */
650 if (dst_reg == BPF_REG_4) {
651 /* mov r11, dst_reg */
652 EMIT_mov(AUX_REG, dst_reg);
653 dst_reg = AUX_REG;
654 }
655
656 if (src_reg != BPF_REG_4) { /* common case */
657 EMIT1(0x51); /* push rcx */
658
659 /* mov rcx, src_reg */
660 EMIT_mov(BPF_REG_4, src_reg);
661 }
662
663 /* shl %rax, %cl | shr %rax, %cl | sar %rax, %cl */
664 if (BPF_CLASS(insn->code) == BPF_ALU64)
665 EMIT1(add_1mod(0x48, dst_reg));
666 else if (is_ereg(dst_reg))
667 EMIT1(add_1mod(0x40, dst_reg));
668
669 switch (BPF_OP(insn->code)) {
670 case BPF_LSH: b3 = 0xE0; break;
671 case BPF_RSH: b3 = 0xE8; break;
672 case BPF_ARSH: b3 = 0xF8; break;
673 }
674 EMIT2(0xD3, add_1reg(b3, dst_reg));
675
676 if (src_reg != BPF_REG_4)
677 EMIT1(0x59); /* pop rcx */
678
679 if (insn->dst_reg == BPF_REG_4)
680 /* mov dst_reg, r11 */
681 EMIT_mov(insn->dst_reg, AUX_REG);
682 break;
683
62258278 684 case BPF_ALU | BPF_END | BPF_FROM_BE:
e430f34e 685 switch (imm32) {
62258278
AS
686 case 16:
687 /* emit 'ror %ax, 8' to swap lower 2 bytes */
688 EMIT1(0x66);
e430f34e 689 if (is_ereg(dst_reg))
62258278 690 EMIT1(0x41);
e430f34e 691 EMIT3(0xC1, add_1reg(0xC8, dst_reg), 8);
343f845b
AS
692
693 /* emit 'movzwl eax, ax' */
694 if (is_ereg(dst_reg))
695 EMIT3(0x45, 0x0F, 0xB7);
696 else
697 EMIT2(0x0F, 0xB7);
698 EMIT1(add_2reg(0xC0, dst_reg, dst_reg));
62258278
AS
699 break;
700 case 32:
701 /* emit 'bswap eax' to swap lower 4 bytes */
e430f34e 702 if (is_ereg(dst_reg))
62258278 703 EMIT2(0x41, 0x0F);
0a14842f 704 else
62258278 705 EMIT1(0x0F);
e430f34e 706 EMIT1(add_1reg(0xC8, dst_reg));
0a14842f 707 break;
62258278
AS
708 case 64:
709 /* emit 'bswap rax' to swap 8 bytes */
e430f34e
AS
710 EMIT3(add_1mod(0x48, dst_reg), 0x0F,
711 add_1reg(0xC8, dst_reg));
3b58908a
ED
712 break;
713 }
62258278
AS
714 break;
715
716 case BPF_ALU | BPF_END | BPF_FROM_LE:
343f845b
AS
717 switch (imm32) {
718 case 16:
719 /* emit 'movzwl eax, ax' to zero extend 16-bit
720 * into 64 bit
721 */
722 if (is_ereg(dst_reg))
723 EMIT3(0x45, 0x0F, 0xB7);
724 else
725 EMIT2(0x0F, 0xB7);
726 EMIT1(add_2reg(0xC0, dst_reg, dst_reg));
727 break;
728 case 32:
729 /* emit 'mov eax, eax' to clear upper 32-bits */
730 if (is_ereg(dst_reg))
731 EMIT1(0x45);
732 EMIT2(0x89, add_2reg(0xC0, dst_reg, dst_reg));
733 break;
734 case 64:
735 /* nop */
736 break;
737 }
62258278
AS
738 break;
739
e430f34e 740 /* ST: *(u8*)(dst_reg + off) = imm */
62258278 741 case BPF_ST | BPF_MEM | BPF_B:
e430f34e 742 if (is_ereg(dst_reg))
62258278
AS
743 EMIT2(0x41, 0xC6);
744 else
745 EMIT1(0xC6);
746 goto st;
747 case BPF_ST | BPF_MEM | BPF_H:
e430f34e 748 if (is_ereg(dst_reg))
62258278
AS
749 EMIT3(0x66, 0x41, 0xC7);
750 else
751 EMIT2(0x66, 0xC7);
752 goto st;
753 case BPF_ST | BPF_MEM | BPF_W:
e430f34e 754 if (is_ereg(dst_reg))
62258278
AS
755 EMIT2(0x41, 0xC7);
756 else
757 EMIT1(0xC7);
758 goto st;
759 case BPF_ST | BPF_MEM | BPF_DW:
e430f34e 760 EMIT2(add_1mod(0x48, dst_reg), 0xC7);
62258278
AS
761
762st: if (is_imm8(insn->off))
e430f34e 763 EMIT2(add_1reg(0x40, dst_reg), insn->off);
62258278 764 else
e430f34e 765 EMIT1_off32(add_1reg(0x80, dst_reg), insn->off);
62258278 766
e430f34e 767 EMIT(imm32, bpf_size_to_x86_bytes(BPF_SIZE(insn->code)));
62258278
AS
768 break;
769
e430f34e 770 /* STX: *(u8*)(dst_reg + off) = src_reg */
62258278
AS
771 case BPF_STX | BPF_MEM | BPF_B:
772 /* emit 'mov byte ptr [rax + off], al' */
e430f34e 773 if (is_ereg(dst_reg) || is_ereg(src_reg) ||
62258278 774 /* have to add extra byte for x86 SIL, DIL regs */
e430f34e
AS
775 src_reg == BPF_REG_1 || src_reg == BPF_REG_2)
776 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x88);
62258278
AS
777 else
778 EMIT1(0x88);
779 goto stx;
780 case BPF_STX | BPF_MEM | BPF_H:
e430f34e
AS
781 if (is_ereg(dst_reg) || is_ereg(src_reg))
782 EMIT3(0x66, add_2mod(0x40, dst_reg, src_reg), 0x89);
62258278
AS
783 else
784 EMIT2(0x66, 0x89);
785 goto stx;
786 case BPF_STX | BPF_MEM | BPF_W:
e430f34e
AS
787 if (is_ereg(dst_reg) || is_ereg(src_reg))
788 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x89);
62258278
AS
789 else
790 EMIT1(0x89);
791 goto stx;
792 case BPF_STX | BPF_MEM | BPF_DW:
e430f34e 793 EMIT2(add_2mod(0x48, dst_reg, src_reg), 0x89);
62258278 794stx: if (is_imm8(insn->off))
e430f34e 795 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off);
62258278 796 else
e430f34e 797 EMIT1_off32(add_2reg(0x80, dst_reg, src_reg),
62258278
AS
798 insn->off);
799 break;
800
e430f34e 801 /* LDX: dst_reg = *(u8*)(src_reg + off) */
62258278
AS
802 case BPF_LDX | BPF_MEM | BPF_B:
803 /* emit 'movzx rax, byte ptr [rax + off]' */
e430f34e 804 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB6);
62258278
AS
805 goto ldx;
806 case BPF_LDX | BPF_MEM | BPF_H:
807 /* emit 'movzx rax, word ptr [rax + off]' */
e430f34e 808 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB7);
62258278
AS
809 goto ldx;
810 case BPF_LDX | BPF_MEM | BPF_W:
811 /* emit 'mov eax, dword ptr [rax+0x14]' */
e430f34e
AS
812 if (is_ereg(dst_reg) || is_ereg(src_reg))
813 EMIT2(add_2mod(0x40, src_reg, dst_reg), 0x8B);
62258278
AS
814 else
815 EMIT1(0x8B);
816 goto ldx;
817 case BPF_LDX | BPF_MEM | BPF_DW:
818 /* emit 'mov rax, qword ptr [rax+0x14]' */
e430f34e 819 EMIT2(add_2mod(0x48, src_reg, dst_reg), 0x8B);
62258278
AS
820ldx: /* if insn->off == 0 we can save one extra byte, but
821 * special case of x86 r13 which always needs an offset
822 * is not worth the hassle
823 */
824 if (is_imm8(insn->off))
e430f34e 825 EMIT2(add_2reg(0x40, src_reg, dst_reg), insn->off);
62258278 826 else
e430f34e 827 EMIT1_off32(add_2reg(0x80, src_reg, dst_reg),
62258278
AS
828 insn->off);
829 break;
830
e430f34e 831 /* STX XADD: lock *(u32*)(dst_reg + off) += src_reg */
62258278
AS
832 case BPF_STX | BPF_XADD | BPF_W:
833 /* emit 'lock add dword ptr [rax + off], eax' */
e430f34e
AS
834 if (is_ereg(dst_reg) || is_ereg(src_reg))
835 EMIT3(0xF0, add_2mod(0x40, dst_reg, src_reg), 0x01);
62258278
AS
836 else
837 EMIT2(0xF0, 0x01);
838 goto xadd;
839 case BPF_STX | BPF_XADD | BPF_DW:
e430f34e 840 EMIT3(0xF0, add_2mod(0x48, dst_reg, src_reg), 0x01);
62258278 841xadd: if (is_imm8(insn->off))
e430f34e 842 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off);
62258278 843 else
e430f34e 844 EMIT1_off32(add_2reg(0x80, dst_reg, src_reg),
62258278
AS
845 insn->off);
846 break;
847
848 /* call */
849 case BPF_JMP | BPF_CALL:
e430f34e 850 func = (u8 *) __bpf_call_base + imm32;
62258278 851 jmp_offset = func - (image + addrs[i]);
e0ee9c12 852 if (seen_ld_abs) {
17bedab2 853 reload_skb_data = bpf_helper_changes_pkt_data(func);
4e10df9a
AS
854 if (reload_skb_data) {
855 EMIT1(0x57); /* push %rdi */
856 jmp_offset += 22; /* pop, mov, sub, mov */
857 } else {
858 EMIT2(0x41, 0x52); /* push %r10 */
859 EMIT2(0x41, 0x51); /* push %r9 */
860 /* need to adjust jmp offset, since
861 * pop %r9, pop %r10 take 4 bytes after call insn
862 */
863 jmp_offset += 4;
864 }
62258278 865 }
e430f34e 866 if (!imm32 || !is_simm32(jmp_offset)) {
62258278 867 pr_err("unsupported bpf func %d addr %p image %p\n",
e430f34e 868 imm32, func, image);
62258278
AS
869 return -EINVAL;
870 }
871 EMIT1_off32(0xE8, jmp_offset);
e0ee9c12 872 if (seen_ld_abs) {
4e10df9a
AS
873 if (reload_skb_data) {
874 EMIT1(0x5F); /* pop %rdi */
875 emit_load_skb_data_hlen(&prog);
876 } else {
877 EMIT2(0x41, 0x59); /* pop %r9 */
878 EMIT2(0x41, 0x5A); /* pop %r10 */
879 }
62258278
AS
880 }
881 break;
882
71189fa9 883 case BPF_JMP | BPF_TAIL_CALL:
b52f00e6
AS
884 emit_bpf_tail_call(&prog);
885 break;
886
62258278
AS
887 /* cond jump */
888 case BPF_JMP | BPF_JEQ | BPF_X:
889 case BPF_JMP | BPF_JNE | BPF_X:
890 case BPF_JMP | BPF_JGT | BPF_X:
891 case BPF_JMP | BPF_JGE | BPF_X:
892 case BPF_JMP | BPF_JSGT | BPF_X:
893 case BPF_JMP | BPF_JSGE | BPF_X:
e430f34e
AS
894 /* cmp dst_reg, src_reg */
895 EMIT3(add_2mod(0x48, dst_reg, src_reg), 0x39,
896 add_2reg(0xC0, dst_reg, src_reg));
62258278
AS
897 goto emit_cond_jmp;
898
899 case BPF_JMP | BPF_JSET | BPF_X:
e430f34e
AS
900 /* test dst_reg, src_reg */
901 EMIT3(add_2mod(0x48, dst_reg, src_reg), 0x85,
902 add_2reg(0xC0, dst_reg, src_reg));
62258278
AS
903 goto emit_cond_jmp;
904
905 case BPF_JMP | BPF_JSET | BPF_K:
e430f34e
AS
906 /* test dst_reg, imm32 */
907 EMIT1(add_1mod(0x48, dst_reg));
908 EMIT2_off32(0xF7, add_1reg(0xC0, dst_reg), imm32);
62258278
AS
909 goto emit_cond_jmp;
910
911 case BPF_JMP | BPF_JEQ | BPF_K:
912 case BPF_JMP | BPF_JNE | BPF_K:
913 case BPF_JMP | BPF_JGT | BPF_K:
914 case BPF_JMP | BPF_JGE | BPF_K:
915 case BPF_JMP | BPF_JSGT | BPF_K:
916 case BPF_JMP | BPF_JSGE | BPF_K:
e430f34e
AS
917 /* cmp dst_reg, imm8/32 */
918 EMIT1(add_1mod(0x48, dst_reg));
62258278 919
e430f34e
AS
920 if (is_imm8(imm32))
921 EMIT3(0x83, add_1reg(0xF8, dst_reg), imm32);
62258278 922 else
e430f34e 923 EMIT2_off32(0x81, add_1reg(0xF8, dst_reg), imm32);
62258278
AS
924
925emit_cond_jmp: /* convert BPF opcode to x86 */
926 switch (BPF_OP(insn->code)) {
927 case BPF_JEQ:
928 jmp_cond = X86_JE;
929 break;
930 case BPF_JSET:
931 case BPF_JNE:
932 jmp_cond = X86_JNE;
933 break;
934 case BPF_JGT:
935 /* GT is unsigned '>', JA in x86 */
936 jmp_cond = X86_JA;
937 break;
938 case BPF_JGE:
939 /* GE is unsigned '>=', JAE in x86 */
940 jmp_cond = X86_JAE;
941 break;
942 case BPF_JSGT:
943 /* signed '>', GT in x86 */
944 jmp_cond = X86_JG;
945 break;
946 case BPF_JSGE:
947 /* signed '>=', GE in x86 */
948 jmp_cond = X86_JGE;
949 break;
950 default: /* to silence gcc warning */
951 return -EFAULT;
952 }
953 jmp_offset = addrs[i + insn->off] - addrs[i];
954 if (is_imm8(jmp_offset)) {
955 EMIT2(jmp_cond, jmp_offset);
956 } else if (is_simm32(jmp_offset)) {
957 EMIT2_off32(0x0F, jmp_cond + 0x10, jmp_offset);
958 } else {
959 pr_err("cond_jmp gen bug %llx\n", jmp_offset);
960 return -EFAULT;
961 }
962
963 break;
0a14842f 964
62258278
AS
965 case BPF_JMP | BPF_JA:
966 jmp_offset = addrs[i + insn->off] - addrs[i];
967 if (!jmp_offset)
968 /* optimize out nop jumps */
969 break;
970emit_jmp:
971 if (is_imm8(jmp_offset)) {
972 EMIT2(0xEB, jmp_offset);
973 } else if (is_simm32(jmp_offset)) {
974 EMIT1_off32(0xE9, jmp_offset);
975 } else {
976 pr_err("jmp gen bug %llx\n", jmp_offset);
977 return -EFAULT;
978 }
979 break;
980
981 case BPF_LD | BPF_IND | BPF_W:
982 func = sk_load_word;
983 goto common_load;
984 case BPF_LD | BPF_ABS | BPF_W:
e430f34e 985 func = CHOOSE_LOAD_FUNC(imm32, sk_load_word);
e0ee9c12
AS
986common_load:
987 ctx->seen_ld_abs = seen_ld_abs = true;
62258278
AS
988 jmp_offset = func - (image + addrs[i]);
989 if (!func || !is_simm32(jmp_offset)) {
990 pr_err("unsupported bpf func %d addr %p image %p\n",
e430f34e 991 imm32, func, image);
62258278
AS
992 return -EINVAL;
993 }
994 if (BPF_MODE(insn->code) == BPF_ABS) {
995 /* mov %esi, imm32 */
e430f34e 996 EMIT1_off32(0xBE, imm32);
62258278 997 } else {
e430f34e
AS
998 /* mov %rsi, src_reg */
999 EMIT_mov(BPF_REG_2, src_reg);
1000 if (imm32) {
1001 if (is_imm8(imm32))
62258278 1002 /* add %esi, imm8 */
e430f34e 1003 EMIT3(0x83, 0xC6, imm32);
0a14842f 1004 else
62258278 1005 /* add %esi, imm32 */
e430f34e 1006 EMIT2_off32(0x81, 0xC6, imm32);
0a14842f 1007 }
62258278
AS
1008 }
1009 /* skb pointer is in R6 (%rbx), it will be copied into
1010 * %rdi if skb_copy_bits() call is necessary.
1011 * sk_load_* helpers also use %r10 and %r9d.
1012 * See bpf_jit.S
1013 */
959a7579
DB
1014 if (seen_ax_reg)
1015 /* r10 = skb->data, mov %r10, off32(%rbx) */
1016 EMIT3_off32(0x4c, 0x8b, 0x93,
1017 offsetof(struct sk_buff, data));
62258278
AS
1018 EMIT1_off32(0xE8, jmp_offset); /* call */
1019 break;
1020
1021 case BPF_LD | BPF_IND | BPF_H:
1022 func = sk_load_half;
1023 goto common_load;
1024 case BPF_LD | BPF_ABS | BPF_H:
e430f34e 1025 func = CHOOSE_LOAD_FUNC(imm32, sk_load_half);
62258278
AS
1026 goto common_load;
1027 case BPF_LD | BPF_IND | BPF_B:
1028 func = sk_load_byte;
1029 goto common_load;
1030 case BPF_LD | BPF_ABS | BPF_B:
e430f34e 1031 func = CHOOSE_LOAD_FUNC(imm32, sk_load_byte);
62258278
AS
1032 goto common_load;
1033
1034 case BPF_JMP | BPF_EXIT:
769e0de6 1035 if (seen_exit) {
62258278
AS
1036 jmp_offset = ctx->cleanup_addr - addrs[i];
1037 goto emit_jmp;
1038 }
769e0de6 1039 seen_exit = true;
62258278
AS
1040 /* update cleanup_addr */
1041 ctx->cleanup_addr = proglen;
177366bf
AS
1042 /* mov rbx, qword ptr [rbp+0] */
1043 EMIT4(0x48, 0x8B, 0x5D, 0);
1044 /* mov r13, qword ptr [rbp+8] */
1045 EMIT4(0x4C, 0x8B, 0x6D, 8);
1046 /* mov r14, qword ptr [rbp+16] */
1047 EMIT4(0x4C, 0x8B, 0x75, 16);
1048 /* mov r15, qword ptr [rbp+24] */
1049 EMIT4(0x4C, 0x8B, 0x7D, 24);
1050
1051 /* add rbp, AUX_STACK_SPACE */
1052 EMIT4(0x48, 0x83, 0xC5, AUX_STACK_SPACE);
62258278
AS
1053 EMIT1(0xC9); /* leave */
1054 EMIT1(0xC3); /* ret */
1055 break;
1056
f3c2af7b 1057 default:
62258278
AS
1058 /* By design x64 JIT should support all BPF instructions
1059 * This error will be seen if new instruction was added
1060 * to interpreter, but not to JIT
7ae457c1 1061 * or if there is junk in bpf_prog
62258278
AS
1062 */
1063 pr_err("bpf_jit: unknown opcode %02x\n", insn->code);
f3c2af7b
AS
1064 return -EINVAL;
1065 }
62258278 1066
f3c2af7b 1067 ilen = prog - temp;
e0ee9c12 1068 if (ilen > BPF_MAX_INSN_SIZE) {
9383191d 1069 pr_err("bpf_jit: fatal insn size error\n");
e0ee9c12
AS
1070 return -EFAULT;
1071 }
1072
f3c2af7b
AS
1073 if (image) {
1074 if (unlikely(proglen + ilen > oldproglen)) {
9383191d 1075 pr_err("bpf_jit: fatal error\n");
f3c2af7b 1076 return -EFAULT;
0a14842f 1077 }
f3c2af7b 1078 memcpy(image + proglen, temp, ilen);
0a14842f 1079 }
f3c2af7b
AS
1080 proglen += ilen;
1081 addrs[i] = proglen;
1082 prog = temp;
1083 }
f3c2af7b
AS
1084 return proglen;
1085}
1086
d1c55ab5 1087struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
f3c2af7b
AS
1088{
1089 struct bpf_binary_header *header = NULL;
959a7579 1090 struct bpf_prog *tmp, *orig_prog = prog;
f3c2af7b
AS
1091 int proglen, oldproglen = 0;
1092 struct jit_context ctx = {};
959a7579 1093 bool tmp_blinded = false;
f3c2af7b
AS
1094 u8 *image = NULL;
1095 int *addrs;
1096 int pass;
1097 int i;
1098
1099 if (!bpf_jit_enable)
959a7579
DB
1100 return orig_prog;
1101
1102 tmp = bpf_jit_blind_constants(prog);
1103 /* If blinding was requested and we failed during blinding,
1104 * we must fall back to the interpreter.
1105 */
1106 if (IS_ERR(tmp))
1107 return orig_prog;
1108 if (tmp != prog) {
1109 tmp_blinded = true;
1110 prog = tmp;
1111 }
0a14842f 1112
f3c2af7b 1113 addrs = kmalloc(prog->len * sizeof(*addrs), GFP_KERNEL);
959a7579
DB
1114 if (!addrs) {
1115 prog = orig_prog;
1116 goto out;
1117 }
f3c2af7b
AS
1118
1119 /* Before first pass, make a rough estimation of addrs[]
1120 * each bpf instruction is translated to less than 64 bytes
1121 */
1122 for (proglen = 0, i = 0; i < prog->len; i++) {
1123 proglen += 64;
1124 addrs[i] = proglen;
1125 }
1126 ctx.cleanup_addr = proglen;
f3c2af7b 1127
3f7352bf
AS
1128 /* JITed image shrinks with every pass and the loop iterates
1129 * until the image stops shrinking. Very large bpf programs
1130 * may converge on the last pass. In such case do one more
1131 * pass to emit the final image
1132 */
1133 for (pass = 0; pass < 10 || image; pass++) {
f3c2af7b
AS
1134 proglen = do_jit(prog, addrs, image, oldproglen, &ctx);
1135 if (proglen <= 0) {
1136 image = NULL;
1137 if (header)
738cbe72 1138 bpf_jit_binary_free(header);
959a7579
DB
1139 prog = orig_prog;
1140 goto out_addrs;
f3c2af7b 1141 }
0a14842f 1142 if (image) {
e0ee9c12 1143 if (proglen != oldproglen) {
f3c2af7b
AS
1144 pr_err("bpf_jit: proglen=%d != oldproglen=%d\n",
1145 proglen, oldproglen);
959a7579
DB
1146 prog = orig_prog;
1147 goto out_addrs;
e0ee9c12 1148 }
0a14842f
ED
1149 break;
1150 }
1151 if (proglen == oldproglen) {
738cbe72
DB
1152 header = bpf_jit_binary_alloc(proglen, &image,
1153 1, jit_fill_hole);
959a7579
DB
1154 if (!header) {
1155 prog = orig_prog;
1156 goto out_addrs;
1157 }
0a14842f
ED
1158 }
1159 oldproglen = proglen;
1160 }
79617801 1161
0a14842f 1162 if (bpf_jit_enable > 1)
485d6511 1163 bpf_jit_dump(prog->len, proglen, pass + 1, image);
0a14842f
ED
1164
1165 if (image) {
314beb9b 1166 bpf_flush_icache(header, image + proglen);
9d876e79 1167 bpf_jit_binary_lock_ro(header);
f3c2af7b 1168 prog->bpf_func = (void *)image;
a91263d5 1169 prog->jited = 1;
9d5ecb09
DB
1170 } else {
1171 prog = orig_prog;
0a14842f 1172 }
959a7579
DB
1173
1174out_addrs:
0a14842f 1175 kfree(addrs);
959a7579
DB
1176out:
1177 if (tmp_blinded)
1178 bpf_jit_prog_release_other(prog, prog == orig_prog ?
1179 tmp : orig_prog);
d1c55ab5 1180 return prog;
0a14842f 1181}