blob: 4bc36bd1b97a425e399cdb4dfaaa688172fc769f [file] [log] [blame]
Eric Dumazet0a148422011-04-20 09:27:32 +00001/* bpf_jit_comp.c : BPF JIT compiler
2 *
Eric Dumazet3b589082013-01-30 17:51:44 -08003 * Copyright (C) 2011-2013 Eric Dumazet (eric.dumazet@gmail.com)
Alexei Starovoitov62258272014-05-13 19:50:46 -07004 * Internal BPF Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
Eric Dumazet0a148422011-04-20 09:27:32 +00005 *
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 */
Eric Dumazet0a148422011-04-20 09:27:32 +000011#include <linux/netdevice.h>
12#include <linux/filter.h>
Eric Dumazet855ddb52012-10-27 02:26:22 +000013#include <linux/if_vlan.h>
Daniel Borkmann738cbe72014-09-08 08:04:47 +020014#include <asm/cacheflush.h>
Laura Abbottd1163652017-05-08 15:58:11 -070015#include <asm/set_memory.h>
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -070016#include <linux/bpf.h>
Eric Dumazet0a148422011-04-20 09:27:32 +000017
Eric Dumazet0a148422011-04-20 09:27:32 +000018/*
19 * assembly code in arch/x86/net/bpf_jit.S
20 */
Alexei Starovoitov62258272014-05-13 19:50:46 -070021extern u8 sk_load_word[], sk_load_half[], sk_load_byte[];
Jan Seifferta998d432012-03-30 05:24:05 +000022extern u8 sk_load_word_positive_offset[], sk_load_half_positive_offset[];
Alexei Starovoitov62258272014-05-13 19:50:46 -070023extern u8 sk_load_byte_positive_offset[];
Jan Seifferta998d432012-03-30 05:24:05 +000024extern u8 sk_load_word_negative_offset[], sk_load_half_negative_offset[];
Alexei Starovoitov62258272014-05-13 19:50:46 -070025extern u8 sk_load_byte_negative_offset[];
Eric Dumazet0a148422011-04-20 09:27:32 +000026
Joe Perches5cccc702014-12-04 17:01:24 -080027static u8 *emit_code(u8 *ptr, u32 bytes, unsigned int len)
Eric Dumazet0a148422011-04-20 09:27:32 +000028{
29 if (len == 1)
30 *ptr = bytes;
31 else if (len == 2)
32 *(u16 *)ptr = bytes;
33 else {
34 *(u32 *)ptr = bytes;
35 barrier();
36 }
37 return ptr + len;
38}
39
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -070040#define EMIT(bytes, len) \
41 do { prog = emit_code(prog, bytes, len); cnt += len; } while (0)
Eric Dumazet0a148422011-04-20 09:27:32 +000042
43#define EMIT1(b1) EMIT(b1, 1)
44#define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2)
45#define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3)
46#define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4)
Alexei Starovoitov62258272014-05-13 19:50:46 -070047#define EMIT1_off32(b1, off) \
48 do {EMIT1(b1); EMIT(off, 4); } while (0)
49#define EMIT2_off32(b1, b2, off) \
50 do {EMIT2(b1, b2); EMIT(off, 4); } while (0)
51#define EMIT3_off32(b1, b2, b3, off) \
52 do {EMIT3(b1, b2, b3); EMIT(off, 4); } while (0)
53#define EMIT4_off32(b1, b2, b3, b4, off) \
54 do {EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0)
Eric Dumazet0a148422011-04-20 09:27:32 +000055
Joe Perches5cccc702014-12-04 17:01:24 -080056static bool is_imm8(int value)
Eric Dumazet0a148422011-04-20 09:27:32 +000057{
58 return value <= 127 && value >= -128;
59}
60
Joe Perches5cccc702014-12-04 17:01:24 -080061static bool is_simm32(s64 value)
Eric Dumazet0a148422011-04-20 09:27:32 +000062{
Alexei Starovoitov62258272014-05-13 19:50:46 -070063 return value == (s64) (s32) value;
Eric Dumazet0a148422011-04-20 09:27:32 +000064}
65
Alexei Starovoitove430f342014-06-06 14:46:06 -070066/* mov dst, src */
67#define EMIT_mov(DST, SRC) \
68 do {if (DST != SRC) \
69 EMIT3(add_2mod(0x48, DST, SRC), 0x89, add_2reg(0xC0, DST, SRC)); \
Alexei Starovoitov62258272014-05-13 19:50:46 -070070 } while (0)
71
72static int bpf_size_to_x86_bytes(int bpf_size)
73{
74 if (bpf_size == BPF_W)
75 return 4;
76 else if (bpf_size == BPF_H)
77 return 2;
78 else if (bpf_size == BPF_B)
79 return 1;
80 else if (bpf_size == BPF_DW)
81 return 4; /* imm32 */
82 else
83 return 0;
84}
Eric Dumazet0a148422011-04-20 09:27:32 +000085
86/* list of x86 cond jumps opcodes (. + s8)
87 * Add 0x10 (and an extra 0x0f) to generate far jumps (. + s32)
88 */
89#define X86_JB 0x72
90#define X86_JAE 0x73
91#define X86_JE 0x74
92#define X86_JNE 0x75
93#define X86_JBE 0x76
94#define X86_JA 0x77
Daniel Borkmann52afc512017-08-10 01:39:56 +020095#define X86_JL 0x7C
Alexei Starovoitov62258272014-05-13 19:50:46 -070096#define X86_JGE 0x7D
Daniel Borkmann52afc512017-08-10 01:39:56 +020097#define X86_JLE 0x7E
Alexei Starovoitov62258272014-05-13 19:50:46 -070098#define X86_JG 0x7F
Eric Dumazet0a148422011-04-20 09:27:32 +000099
Joe Perches5cccc702014-12-04 17:01:24 -0800100static void bpf_flush_icache(void *start, void *end)
Eric Dumazet0a148422011-04-20 09:27:32 +0000101{
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
Jan Seifferta998d432012-03-30 05:24:05 +0000110#define CHOOSE_LOAD_FUNC(K, func) \
111 ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset)
Eric Dumazet0a148422011-04-20 09:27:32 +0000112
Alexei Starovoitov62258272014-05-13 19:50:46 -0700113/* pick a register outside of BPF range for JIT internal work */
Daniel Borkmann959a7572016-05-13 19:08:33 +0200114#define AUX_REG (MAX_BPF_JIT_REG + 1)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700115
Daniel Borkmann959a7572016-05-13 19:08:33 +0200116/* 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)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700124 */
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 */
Daniel Borkmann959a7572016-05-13 19:08:33 +0200137 [BPF_REG_AX] = 2, /* r10 temp register */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700138 [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 */
Joe Perches5cccc702014-12-04 17:01:24 -0800145static bool is_ereg(u32 reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700146{
Joe Perchesd1481342014-12-04 15:00:48 -0800147 return (1 << reg) & (BIT(BPF_REG_5) |
148 BIT(AUX_REG) |
149 BIT(BPF_REG_7) |
150 BIT(BPF_REG_8) |
Daniel Borkmann959a7572016-05-13 19:08:33 +0200151 BIT(BPF_REG_9) |
152 BIT(BPF_REG_AX));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700153}
154
Daniel Borkmannde0a4442018-01-20 01:24:35 +0100155static bool is_axreg(u32 reg)
156{
157 return reg == BPF_REG_0;
158}
159
Alexei Starovoitov62258272014-05-13 19:50:46 -0700160/* add modifiers if 'reg' maps to x64 registers r8..r15 */
Joe Perches5cccc702014-12-04 17:01:24 -0800161static u8 add_1mod(u8 byte, u32 reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700162{
163 if (is_ereg(reg))
164 byte |= 1;
165 return byte;
166}
167
Joe Perches5cccc702014-12-04 17:01:24 -0800168static u8 add_2mod(u8 byte, u32 r1, u32 r2)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700169{
170 if (is_ereg(r1))
171 byte |= 1;
172 if (is_ereg(r2))
173 byte |= 4;
174 return byte;
175}
176
Alexei Starovoitove430f342014-06-06 14:46:06 -0700177/* encode 'dst_reg' register into x64 opcode 'byte' */
Joe Perches5cccc702014-12-04 17:01:24 -0800178static u8 add_1reg(u8 byte, u32 dst_reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700179{
Alexei Starovoitove430f342014-06-06 14:46:06 -0700180 return byte + reg2hex[dst_reg];
Alexei Starovoitov62258272014-05-13 19:50:46 -0700181}
182
Alexei Starovoitove430f342014-06-06 14:46:06 -0700183/* encode 'dst_reg' and 'src_reg' registers into x64 opcode 'byte' */
Joe Perches5cccc702014-12-04 17:01:24 -0800184static u8 add_2reg(u8 byte, u32 dst_reg, u32 src_reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700185{
Alexei Starovoitove430f342014-06-06 14:46:06 -0700186 return byte + reg2hex[dst_reg] + (reg2hex[src_reg] << 3);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700187}
188
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200189static void jit_fill_hole(void *area, unsigned int size)
190{
191 /* fill whole space with int3 instructions */
192 memset(area, 0xcc, size);
193}
194
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -0700195struct jit_context {
Alexei Starovoitov769e0de2014-11-29 14:46:13 -0800196 int cleanup_addr; /* epilogue code offset */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700197 bool seen_ld_abs;
Daniel Borkmann959a7572016-05-13 19:08:33 +0200198 bool seen_ax_reg;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -0700199};
200
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700201/* maximum number of bytes emitted while JITing one eBPF insn */
202#define BPF_MAX_INSN_SIZE 128
203#define BPF_INSN_SAFETY 64
204
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700205#define AUX_STACK_SPACE \
206 (32 /* space for rbx, r13, r14, r15 */ + \
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700207 8 /* space for skb_copy_bits() buffer */)
208
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700209#define PROLOGUE_SIZE 37
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700210
211/* emit x64 prologue code for BPF program and check it's size.
212 * bpf_tail_call helper will skip it while jumping into another program
213 */
Alexei Starovoitov2960ae42017-05-30 13:31:35 -0700214static void emit_prologue(u8 **pprog, u32 stack_depth)
Eric Dumazet0a148422011-04-20 09:27:32 +0000215{
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700216 u8 *prog = *pprog;
217 int cnt = 0;
Eric Dumazet0a148422011-04-20 09:27:32 +0000218
Alexei Starovoitov62258272014-05-13 19:50:46 -0700219 EMIT1(0x55); /* push rbp */
220 EMIT3(0x48, 0x89, 0xE5); /* mov rbp,rsp */
Eric Dumazet0a148422011-04-20 09:27:32 +0000221
Alexei Starovoitov2960ae42017-05-30 13:31:35 -0700222 /* sub rsp, rounded_stack_depth + AUX_STACK_SPACE */
223 EMIT3_off32(0x48, 0x81, 0xEC,
224 round_up(stack_depth, 8) + AUX_STACK_SPACE);
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700225
226 /* sub rbp, AUX_STACK_SPACE */
227 EMIT4(0x48, 0x83, 0xED, AUX_STACK_SPACE);
Eric Dumazet0a148422011-04-20 09:27:32 +0000228
Alexei Starovoitov62258272014-05-13 19:50:46 -0700229 /* all classic BPF filters use R6(rbx) save it */
Eric Dumazet0a148422011-04-20 09:27:32 +0000230
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700231 /* mov qword ptr [rbp+0],rbx */
232 EMIT4(0x48, 0x89, 0x5D, 0);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700233
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700234 /* bpf_convert_filter() maps classic BPF register X to R7 and uses R8
Alexei Starovoitov62258272014-05-13 19:50:46 -0700235 * as temporary, so all tcpdump filters need to spill/fill R7(r13) and
236 * R8(r14). R9(r15) spill could be made conditional, but there is only
237 * one 'bpf_error' return path out of helper functions inside bpf_jit.S
238 * The overhead of extra spill is negligible for any filter other
239 * than synthetic ones. Therefore not worth adding complexity.
240 */
241
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700242 /* mov qword ptr [rbp+8],r13 */
243 EMIT4(0x4C, 0x89, 0x6D, 8);
244 /* mov qword ptr [rbp+16],r14 */
245 EMIT4(0x4C, 0x89, 0x75, 16);
246 /* mov qword ptr [rbp+24],r15 */
247 EMIT4(0x4C, 0x89, 0x7D, 24);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700248
Daniel Borkmann8b614ae2015-12-17 23:51:54 +0100249 /* Clear the tail call counter (tail_call_cnt): for eBPF tail calls
250 * we need to reset the counter to 0. It's done in two instructions,
251 * resetting rax register to 0 (xor on eax gets 0 extended), and
252 * moving it to the counter location.
253 */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700254
Daniel Borkmann8b614ae2015-12-17 23:51:54 +0100255 /* xor eax, eax */
256 EMIT2(0x31, 0xc0);
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700257 /* mov qword ptr [rbp+32], rax */
258 EMIT4(0x48, 0x89, 0x45, 32);
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700259
260 BUILD_BUG_ON(cnt != PROLOGUE_SIZE);
261 *pprog = prog;
262}
263
264/* generate the following code:
265 * ... bpf_tail_call(void *ctx, struct bpf_array *array, u64 index) ...
266 * if (index >= array->map.max_entries)
267 * goto out;
268 * if (++tail_call_cnt > MAX_TAIL_CALL_CNT)
269 * goto out;
Wang Nan2a36f0b2015-08-06 07:02:33 +0000270 * prog = array->ptrs[index];
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700271 * if (prog == NULL)
272 * goto out;
273 * goto *(prog->bpf_func + prologue_size);
274 * out:
275 */
276static void emit_bpf_tail_call(u8 **pprog)
277{
278 u8 *prog = *pprog;
279 int label1, label2, label3;
280 int cnt = 0;
281
282 /* rdi - pointer to ctx
283 * rsi - pointer to bpf_array
284 * rdx - index in bpf_array
285 */
286
287 /* if (index >= array->map.max_entries)
288 * goto out;
289 */
Alexei Starovoitov90caccd2017-10-03 15:37:20 -0700290 EMIT2(0x89, 0xD2); /* mov edx, edx */
291 EMIT3(0x39, 0x56, /* cmp dword ptr [rsi + 16], edx */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700292 offsetof(struct bpf_array, map.max_entries));
Eric Dumazet84ccac62017-08-31 04:53:42 -0700293#define OFFSET1 43 /* number of bytes to jump */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700294 EMIT2(X86_JBE, OFFSET1); /* jbe out */
295 label1 = cnt;
296
297 /* if (tail_call_cnt > MAX_TAIL_CALL_CNT)
298 * goto out;
299 */
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700300 EMIT2_off32(0x8B, 0x85, 36); /* mov eax, dword ptr [rbp + 36] */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700301 EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT); /* cmp eax, MAX_TAIL_CALL_CNT */
Eric Dumazet84ccac62017-08-31 04:53:42 -0700302#define OFFSET2 32
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700303 EMIT2(X86_JA, OFFSET2); /* ja out */
304 label2 = cnt;
305 EMIT3(0x83, 0xC0, 0x01); /* add eax, 1 */
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700306 EMIT2_off32(0x89, 0x85, 36); /* mov dword ptr [rbp + 36], eax */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700307
Wang Nan2a36f0b2015-08-06 07:02:33 +0000308 /* prog = array->ptrs[index]; */
Eric Dumazet84ccac62017-08-31 04:53:42 -0700309 EMIT4_off32(0x48, 0x8B, 0x84, 0xD6, /* mov rax, [rsi + rdx * 8 + offsetof(...)] */
Wang Nan2a36f0b2015-08-06 07:02:33 +0000310 offsetof(struct bpf_array, ptrs));
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700311
312 /* if (prog == NULL)
313 * goto out;
314 */
Eric Dumazet84ccac62017-08-31 04:53:42 -0700315 EMIT3(0x48, 0x85, 0xC0); /* test rax,rax */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700316#define OFFSET3 10
317 EMIT2(X86_JE, OFFSET3); /* je out */
318 label3 = cnt;
319
320 /* goto *(prog->bpf_func + prologue_size); */
321 EMIT4(0x48, 0x8B, 0x40, /* mov rax, qword ptr [rax + 32] */
322 offsetof(struct bpf_prog, bpf_func));
323 EMIT4(0x48, 0x83, 0xC0, PROLOGUE_SIZE); /* add rax, prologue_size */
324
325 /* now we're ready to jump into next BPF program
326 * rdi == ctx (1st arg)
327 * rax == prog->bpf_func + prologue_size
328 */
329 EMIT2(0xFF, 0xE0); /* jmp rax */
330
331 /* out: */
332 BUILD_BUG_ON(cnt - label1 != OFFSET1);
333 BUILD_BUG_ON(cnt - label2 != OFFSET2);
334 BUILD_BUG_ON(cnt - label3 != OFFSET3);
335 *pprog = prog;
336}
337
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700338
339static void emit_load_skb_data_hlen(u8 **pprog)
340{
341 u8 *prog = *pprog;
342 int cnt = 0;
343
344 /* r9d = skb->len - skb->data_len (headlen)
345 * r10 = skb->data
346 */
347 /* mov %r9d, off32(%rdi) */
348 EMIT3_off32(0x44, 0x8b, 0x8f, offsetof(struct sk_buff, len));
349
350 /* sub %r9d, off32(%rdi) */
351 EMIT3_off32(0x44, 0x2b, 0x8f, offsetof(struct sk_buff, data_len));
352
353 /* mov %r10, off32(%rdi) */
354 EMIT3_off32(0x4c, 0x8b, 0x97, offsetof(struct sk_buff, data));
355 *pprog = prog;
356}
357
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700358static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image,
359 int oldproglen, struct jit_context *ctx)
360{
361 struct bpf_insn *insn = bpf_prog->insnsi;
362 int insn_cnt = bpf_prog->len;
363 bool seen_ld_abs = ctx->seen_ld_abs | (oldproglen == 0);
Daniel Borkmann959a7572016-05-13 19:08:33 +0200364 bool seen_ax_reg = ctx->seen_ax_reg | (oldproglen == 0);
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700365 bool seen_exit = false;
366 u8 temp[BPF_MAX_INSN_SIZE + BPF_INSN_SAFETY];
367 int i, cnt = 0;
368 int proglen = 0;
369 u8 *prog = temp;
370
Alexei Starovoitov2960ae42017-05-30 13:31:35 -0700371 emit_prologue(&prog, bpf_prog->aux->stack_depth);
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700372
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700373 if (seen_ld_abs)
374 emit_load_skb_data_hlen(&prog);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700375
376 for (i = 0; i < insn_cnt; i++, insn++) {
Alexei Starovoitove430f342014-06-06 14:46:06 -0700377 const s32 imm32 = insn->imm;
378 u32 dst_reg = insn->dst_reg;
379 u32 src_reg = insn->src_reg;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700380 u8 b1 = 0, b2 = 0, b3 = 0;
381 s64 jmp_offset;
382 u8 jmp_cond;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700383 bool reload_skb_data;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700384 int ilen;
385 u8 *func;
386
Daniel Borkmann959a7572016-05-13 19:08:33 +0200387 if (dst_reg == BPF_REG_AX || src_reg == BPF_REG_AX)
388 ctx->seen_ax_reg = seen_ax_reg = true;
389
Alexei Starovoitov62258272014-05-13 19:50:46 -0700390 switch (insn->code) {
391 /* ALU */
392 case BPF_ALU | BPF_ADD | BPF_X:
393 case BPF_ALU | BPF_SUB | BPF_X:
394 case BPF_ALU | BPF_AND | BPF_X:
395 case BPF_ALU | BPF_OR | BPF_X:
396 case BPF_ALU | BPF_XOR | BPF_X:
397 case BPF_ALU64 | BPF_ADD | BPF_X:
398 case BPF_ALU64 | BPF_SUB | BPF_X:
399 case BPF_ALU64 | BPF_AND | BPF_X:
400 case BPF_ALU64 | BPF_OR | BPF_X:
401 case BPF_ALU64 | BPF_XOR | BPF_X:
402 switch (BPF_OP(insn->code)) {
403 case BPF_ADD: b2 = 0x01; break;
404 case BPF_SUB: b2 = 0x29; break;
405 case BPF_AND: b2 = 0x21; break;
406 case BPF_OR: b2 = 0x09; break;
407 case BPF_XOR: b2 = 0x31; break;
Eric Dumazet0a148422011-04-20 09:27:32 +0000408 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700409 if (BPF_CLASS(insn->code) == BPF_ALU64)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700410 EMIT1(add_2mod(0x48, dst_reg, src_reg));
411 else if (is_ereg(dst_reg) || is_ereg(src_reg))
412 EMIT1(add_2mod(0x40, dst_reg, src_reg));
413 EMIT2(b2, add_2reg(0xC0, dst_reg, src_reg));
Eric Dumazet0a148422011-04-20 09:27:32 +0000414 break;
Eric Dumazet0a148422011-04-20 09:27:32 +0000415
Alexei Starovoitove430f342014-06-06 14:46:06 -0700416 /* mov dst, src */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700417 case BPF_ALU64 | BPF_MOV | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700418 EMIT_mov(dst_reg, src_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700419 break;
Eric Dumazet0a148422011-04-20 09:27:32 +0000420
Alexei Starovoitove430f342014-06-06 14:46:06 -0700421 /* mov32 dst, src */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700422 case BPF_ALU | BPF_MOV | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700423 if (is_ereg(dst_reg) || is_ereg(src_reg))
424 EMIT1(add_2mod(0x40, dst_reg, src_reg));
425 EMIT2(0x89, add_2reg(0xC0, dst_reg, src_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700426 break;
Eric Dumazet3b589082013-01-30 17:51:44 -0800427
Alexei Starovoitove430f342014-06-06 14:46:06 -0700428 /* neg dst */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700429 case BPF_ALU | BPF_NEG:
430 case BPF_ALU64 | BPF_NEG:
431 if (BPF_CLASS(insn->code) == BPF_ALU64)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700432 EMIT1(add_1mod(0x48, dst_reg));
433 else if (is_ereg(dst_reg))
434 EMIT1(add_1mod(0x40, dst_reg));
435 EMIT2(0xF7, add_1reg(0xD8, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700436 break;
437
438 case BPF_ALU | BPF_ADD | BPF_K:
439 case BPF_ALU | BPF_SUB | BPF_K:
440 case BPF_ALU | BPF_AND | BPF_K:
441 case BPF_ALU | BPF_OR | BPF_K:
442 case BPF_ALU | BPF_XOR | BPF_K:
443 case BPF_ALU64 | BPF_ADD | BPF_K:
444 case BPF_ALU64 | BPF_SUB | BPF_K:
445 case BPF_ALU64 | BPF_AND | BPF_K:
446 case BPF_ALU64 | BPF_OR | BPF_K:
447 case BPF_ALU64 | BPF_XOR | BPF_K:
448 if (BPF_CLASS(insn->code) == BPF_ALU64)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700449 EMIT1(add_1mod(0x48, dst_reg));
450 else if (is_ereg(dst_reg))
451 EMIT1(add_1mod(0x40, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700452
Daniel Borkmannde0a4442018-01-20 01:24:35 +0100453 /* b3 holds 'normal' opcode, b2 short form only valid
454 * in case dst is eax/rax.
455 */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700456 switch (BPF_OP(insn->code)) {
Daniel Borkmannde0a4442018-01-20 01:24:35 +0100457 case BPF_ADD:
458 b3 = 0xC0;
459 b2 = 0x05;
460 break;
461 case BPF_SUB:
462 b3 = 0xE8;
463 b2 = 0x2D;
464 break;
465 case BPF_AND:
466 b3 = 0xE0;
467 b2 = 0x25;
468 break;
469 case BPF_OR:
470 b3 = 0xC8;
471 b2 = 0x0D;
472 break;
473 case BPF_XOR:
474 b3 = 0xF0;
475 b2 = 0x35;
476 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700477 }
478
Alexei Starovoitove430f342014-06-06 14:46:06 -0700479 if (is_imm8(imm32))
480 EMIT3(0x83, add_1reg(b3, dst_reg), imm32);
Daniel Borkmannde0a4442018-01-20 01:24:35 +0100481 else if (is_axreg(dst_reg))
482 EMIT1_off32(b2, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700483 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700484 EMIT2_off32(0x81, add_1reg(b3, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700485 break;
486
487 case BPF_ALU64 | BPF_MOV | BPF_K:
488 /* optimization: if imm32 is positive,
489 * use 'mov eax, imm32' (which zero-extends imm32)
490 * to save 2 bytes
491 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700492 if (imm32 < 0) {
Alexei Starovoitov62258272014-05-13 19:50:46 -0700493 /* 'mov rax, imm32' sign extends imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700494 b1 = add_1mod(0x48, dst_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700495 b2 = 0xC7;
496 b3 = 0xC0;
Alexei Starovoitove430f342014-06-06 14:46:06 -0700497 EMIT3_off32(b1, b2, add_1reg(b3, dst_reg), imm32);
Eric Dumazet3b589082013-01-30 17:51:44 -0800498 break;
499 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700500
501 case BPF_ALU | BPF_MOV | BPF_K:
Daniel Borkmann606c88a2015-12-17 23:51:56 +0100502 /* optimization: if imm32 is zero, use 'xor <dst>,<dst>'
503 * to save 3 bytes.
504 */
505 if (imm32 == 0) {
506 if (is_ereg(dst_reg))
507 EMIT1(add_2mod(0x40, dst_reg, dst_reg));
508 b2 = 0x31; /* xor */
509 b3 = 0xC0;
510 EMIT2(b2, add_2reg(b3, dst_reg, dst_reg));
511 break;
512 }
513
Alexei Starovoitov62258272014-05-13 19:50:46 -0700514 /* mov %eax, imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700515 if (is_ereg(dst_reg))
516 EMIT1(add_1mod(0x40, dst_reg));
517 EMIT1_off32(add_1reg(0xB8, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700518 break;
519
Alexei Starovoitov02ab6952014-09-04 22:17:17 -0700520 case BPF_LD | BPF_IMM | BPF_DW:
Daniel Borkmann606c88a2015-12-17 23:51:56 +0100521 /* optimization: if imm64 is zero, use 'xor <dst>,<dst>'
522 * to save 7 bytes.
523 */
524 if (insn[0].imm == 0 && insn[1].imm == 0) {
525 b1 = add_2mod(0x48, dst_reg, dst_reg);
526 b2 = 0x31; /* xor */
527 b3 = 0xC0;
528 EMIT3(b1, b2, add_2reg(b3, dst_reg, dst_reg));
529
530 insn++;
531 i++;
532 break;
533 }
534
Alexei Starovoitov02ab6952014-09-04 22:17:17 -0700535 /* movabsq %rax, imm64 */
536 EMIT2(add_1mod(0x48, dst_reg), add_1reg(0xB8, dst_reg));
537 EMIT(insn[0].imm, 4);
538 EMIT(insn[1].imm, 4);
539
540 insn++;
541 i++;
542 break;
543
Alexei Starovoitove430f342014-06-06 14:46:06 -0700544 /* dst %= src, dst /= src, dst %= imm32, dst /= imm32 */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700545 case BPF_ALU | BPF_MOD | BPF_X:
546 case BPF_ALU | BPF_DIV | BPF_X:
547 case BPF_ALU | BPF_MOD | BPF_K:
548 case BPF_ALU | BPF_DIV | BPF_K:
549 case BPF_ALU64 | BPF_MOD | BPF_X:
550 case BPF_ALU64 | BPF_DIV | BPF_X:
551 case BPF_ALU64 | BPF_MOD | BPF_K:
552 case BPF_ALU64 | BPF_DIV | BPF_K:
553 EMIT1(0x50); /* push rax */
554 EMIT1(0x52); /* push rdx */
555
556 if (BPF_SRC(insn->code) == BPF_X)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700557 /* mov r11, src_reg */
558 EMIT_mov(AUX_REG, src_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700559 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700560 /* mov r11, imm32 */
561 EMIT3_off32(0x49, 0xC7, 0xC3, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700562
Alexei Starovoitove430f342014-06-06 14:46:06 -0700563 /* mov rax, dst_reg */
564 EMIT_mov(BPF_REG_0, dst_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700565
566 /* xor edx, edx
567 * equivalent to 'xor rdx, rdx', but one byte less
568 */
569 EMIT2(0x31, 0xd2);
570
Alexei Starovoitov62258272014-05-13 19:50:46 -0700571 if (BPF_CLASS(insn->code) == BPF_ALU64)
572 /* div r11 */
573 EMIT3(0x49, 0xF7, 0xF3);
574 else
575 /* div r11d */
576 EMIT3(0x41, 0xF7, 0xF3);
577
578 if (BPF_OP(insn->code) == BPF_MOD)
579 /* mov r11, rdx */
580 EMIT3(0x49, 0x89, 0xD3);
581 else
582 /* mov r11, rax */
583 EMIT3(0x49, 0x89, 0xC3);
584
585 EMIT1(0x5A); /* pop rdx */
586 EMIT1(0x58); /* pop rax */
587
Alexei Starovoitove430f342014-06-06 14:46:06 -0700588 /* mov dst_reg, r11 */
589 EMIT_mov(dst_reg, AUX_REG);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700590 break;
591
592 case BPF_ALU | BPF_MUL | BPF_K:
593 case BPF_ALU | BPF_MUL | BPF_X:
594 case BPF_ALU64 | BPF_MUL | BPF_K:
595 case BPF_ALU64 | BPF_MUL | BPF_X:
596 EMIT1(0x50); /* push rax */
597 EMIT1(0x52); /* push rdx */
598
Alexei Starovoitove430f342014-06-06 14:46:06 -0700599 /* mov r11, dst_reg */
600 EMIT_mov(AUX_REG, dst_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700601
602 if (BPF_SRC(insn->code) == BPF_X)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700603 /* mov rax, src_reg */
604 EMIT_mov(BPF_REG_0, src_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700605 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700606 /* mov rax, imm32 */
607 EMIT3_off32(0x48, 0xC7, 0xC0, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700608
609 if (BPF_CLASS(insn->code) == BPF_ALU64)
610 EMIT1(add_1mod(0x48, AUX_REG));
611 else if (is_ereg(AUX_REG))
612 EMIT1(add_1mod(0x40, AUX_REG));
613 /* mul(q) r11 */
614 EMIT2(0xF7, add_1reg(0xE0, AUX_REG));
615
616 /* mov r11, rax */
617 EMIT_mov(AUX_REG, BPF_REG_0);
618
619 EMIT1(0x5A); /* pop rdx */
620 EMIT1(0x58); /* pop rax */
621
Alexei Starovoitove430f342014-06-06 14:46:06 -0700622 /* mov dst_reg, r11 */
623 EMIT_mov(dst_reg, AUX_REG);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700624 break;
625
626 /* shifts */
627 case BPF_ALU | BPF_LSH | BPF_K:
628 case BPF_ALU | BPF_RSH | BPF_K:
629 case BPF_ALU | BPF_ARSH | BPF_K:
630 case BPF_ALU64 | BPF_LSH | BPF_K:
631 case BPF_ALU64 | BPF_RSH | BPF_K:
632 case BPF_ALU64 | BPF_ARSH | BPF_K:
633 if (BPF_CLASS(insn->code) == BPF_ALU64)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700634 EMIT1(add_1mod(0x48, dst_reg));
635 else if (is_ereg(dst_reg))
636 EMIT1(add_1mod(0x40, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700637
638 switch (BPF_OP(insn->code)) {
639 case BPF_LSH: b3 = 0xE0; break;
640 case BPF_RSH: b3 = 0xE8; break;
641 case BPF_ARSH: b3 = 0xF8; break;
642 }
Daniel Borkmann88e69a12018-02-24 01:07:58 +0100643
644 if (imm32 == 1)
645 EMIT2(0xD1, add_1reg(b3, dst_reg));
646 else
647 EMIT3(0xC1, add_1reg(b3, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700648 break;
649
Alexei Starovoitov72b603e2014-08-25 12:27:02 -0700650 case BPF_ALU | BPF_LSH | BPF_X:
651 case BPF_ALU | BPF_RSH | BPF_X:
652 case BPF_ALU | BPF_ARSH | BPF_X:
653 case BPF_ALU64 | BPF_LSH | BPF_X:
654 case BPF_ALU64 | BPF_RSH | BPF_X:
655 case BPF_ALU64 | BPF_ARSH | BPF_X:
656
657 /* check for bad case when dst_reg == rcx */
658 if (dst_reg == BPF_REG_4) {
659 /* mov r11, dst_reg */
660 EMIT_mov(AUX_REG, dst_reg);
661 dst_reg = AUX_REG;
662 }
663
664 if (src_reg != BPF_REG_4) { /* common case */
665 EMIT1(0x51); /* push rcx */
666
667 /* mov rcx, src_reg */
668 EMIT_mov(BPF_REG_4, src_reg);
669 }
670
671 /* shl %rax, %cl | shr %rax, %cl | sar %rax, %cl */
672 if (BPF_CLASS(insn->code) == BPF_ALU64)
673 EMIT1(add_1mod(0x48, dst_reg));
674 else if (is_ereg(dst_reg))
675 EMIT1(add_1mod(0x40, dst_reg));
676
677 switch (BPF_OP(insn->code)) {
678 case BPF_LSH: b3 = 0xE0; break;
679 case BPF_RSH: b3 = 0xE8; break;
680 case BPF_ARSH: b3 = 0xF8; break;
681 }
682 EMIT2(0xD3, add_1reg(b3, dst_reg));
683
684 if (src_reg != BPF_REG_4)
685 EMIT1(0x59); /* pop rcx */
686
687 if (insn->dst_reg == BPF_REG_4)
688 /* mov dst_reg, r11 */
689 EMIT_mov(insn->dst_reg, AUX_REG);
690 break;
691
Alexei Starovoitov62258272014-05-13 19:50:46 -0700692 case BPF_ALU | BPF_END | BPF_FROM_BE:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700693 switch (imm32) {
Alexei Starovoitov62258272014-05-13 19:50:46 -0700694 case 16:
695 /* emit 'ror %ax, 8' to swap lower 2 bytes */
696 EMIT1(0x66);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700697 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700698 EMIT1(0x41);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700699 EMIT3(0xC1, add_1reg(0xC8, dst_reg), 8);
Alexei Starovoitov343f8452015-05-11 23:25:16 -0700700
701 /* emit 'movzwl eax, ax' */
702 if (is_ereg(dst_reg))
703 EMIT3(0x45, 0x0F, 0xB7);
704 else
705 EMIT2(0x0F, 0xB7);
706 EMIT1(add_2reg(0xC0, dst_reg, dst_reg));
Eric Dumazet0a148422011-04-20 09:27:32 +0000707 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700708 case 32:
709 /* emit 'bswap eax' to swap lower 4 bytes */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700710 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700711 EMIT2(0x41, 0x0F);
712 else
713 EMIT1(0x0F);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700714 EMIT1(add_1reg(0xC8, dst_reg));
Eric Dumazet0a148422011-04-20 09:27:32 +0000715 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700716 case 64:
717 /* emit 'bswap rax' to swap 8 bytes */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700718 EMIT3(add_1mod(0x48, dst_reg), 0x0F,
719 add_1reg(0xC8, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700720 break;
721 }
722 break;
723
724 case BPF_ALU | BPF_END | BPF_FROM_LE:
Alexei Starovoitov343f8452015-05-11 23:25:16 -0700725 switch (imm32) {
726 case 16:
727 /* emit 'movzwl eax, ax' to zero extend 16-bit
728 * into 64 bit
729 */
730 if (is_ereg(dst_reg))
731 EMIT3(0x45, 0x0F, 0xB7);
732 else
733 EMIT2(0x0F, 0xB7);
734 EMIT1(add_2reg(0xC0, dst_reg, dst_reg));
735 break;
736 case 32:
737 /* emit 'mov eax, eax' to clear upper 32-bits */
738 if (is_ereg(dst_reg))
739 EMIT1(0x45);
740 EMIT2(0x89, add_2reg(0xC0, dst_reg, dst_reg));
741 break;
742 case 64:
743 /* nop */
744 break;
745 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700746 break;
747
Alexei Starovoitove430f342014-06-06 14:46:06 -0700748 /* ST: *(u8*)(dst_reg + off) = imm */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700749 case BPF_ST | BPF_MEM | BPF_B:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700750 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700751 EMIT2(0x41, 0xC6);
752 else
753 EMIT1(0xC6);
754 goto st;
755 case BPF_ST | BPF_MEM | BPF_H:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700756 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700757 EMIT3(0x66, 0x41, 0xC7);
758 else
759 EMIT2(0x66, 0xC7);
760 goto st;
761 case BPF_ST | BPF_MEM | BPF_W:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700762 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700763 EMIT2(0x41, 0xC7);
764 else
765 EMIT1(0xC7);
766 goto st;
767 case BPF_ST | BPF_MEM | BPF_DW:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700768 EMIT2(add_1mod(0x48, dst_reg), 0xC7);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700769
770st: if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700771 EMIT2(add_1reg(0x40, dst_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700772 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700773 EMIT1_off32(add_1reg(0x80, dst_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700774
Alexei Starovoitove430f342014-06-06 14:46:06 -0700775 EMIT(imm32, bpf_size_to_x86_bytes(BPF_SIZE(insn->code)));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700776 break;
777
Alexei Starovoitove430f342014-06-06 14:46:06 -0700778 /* STX: *(u8*)(dst_reg + off) = src_reg */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700779 case BPF_STX | BPF_MEM | BPF_B:
780 /* emit 'mov byte ptr [rax + off], al' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700781 if (is_ereg(dst_reg) || is_ereg(src_reg) ||
Alexei Starovoitov62258272014-05-13 19:50:46 -0700782 /* have to add extra byte for x86 SIL, DIL regs */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700783 src_reg == BPF_REG_1 || src_reg == BPF_REG_2)
784 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x88);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700785 else
786 EMIT1(0x88);
787 goto stx;
788 case BPF_STX | BPF_MEM | BPF_H:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700789 if (is_ereg(dst_reg) || is_ereg(src_reg))
790 EMIT3(0x66, add_2mod(0x40, dst_reg, src_reg), 0x89);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700791 else
792 EMIT2(0x66, 0x89);
793 goto stx;
794 case BPF_STX | BPF_MEM | BPF_W:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700795 if (is_ereg(dst_reg) || is_ereg(src_reg))
796 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x89);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700797 else
798 EMIT1(0x89);
799 goto stx;
800 case BPF_STX | BPF_MEM | BPF_DW:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700801 EMIT2(add_2mod(0x48, dst_reg, src_reg), 0x89);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700802stx: if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700803 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700804 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700805 EMIT1_off32(add_2reg(0x80, dst_reg, src_reg),
Alexei Starovoitov62258272014-05-13 19:50:46 -0700806 insn->off);
807 break;
808
Alexei Starovoitove430f342014-06-06 14:46:06 -0700809 /* LDX: dst_reg = *(u8*)(src_reg + off) */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700810 case BPF_LDX | BPF_MEM | BPF_B:
811 /* emit 'movzx rax, byte ptr [rax + off]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700812 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB6);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700813 goto ldx;
814 case BPF_LDX | BPF_MEM | BPF_H:
815 /* emit 'movzx rax, word ptr [rax + off]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700816 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB7);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700817 goto ldx;
818 case BPF_LDX | BPF_MEM | BPF_W:
819 /* emit 'mov eax, dword ptr [rax+0x14]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700820 if (is_ereg(dst_reg) || is_ereg(src_reg))
821 EMIT2(add_2mod(0x40, src_reg, dst_reg), 0x8B);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700822 else
823 EMIT1(0x8B);
824 goto ldx;
825 case BPF_LDX | BPF_MEM | BPF_DW:
826 /* emit 'mov rax, qword ptr [rax+0x14]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700827 EMIT2(add_2mod(0x48, src_reg, dst_reg), 0x8B);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700828ldx: /* if insn->off == 0 we can save one extra byte, but
829 * special case of x86 r13 which always needs an offset
830 * is not worth the hassle
831 */
832 if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700833 EMIT2(add_2reg(0x40, src_reg, dst_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700834 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700835 EMIT1_off32(add_2reg(0x80, src_reg, dst_reg),
Alexei Starovoitov62258272014-05-13 19:50:46 -0700836 insn->off);
837 break;
838
Alexei Starovoitove430f342014-06-06 14:46:06 -0700839 /* STX XADD: lock *(u32*)(dst_reg + off) += src_reg */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700840 case BPF_STX | BPF_XADD | BPF_W:
841 /* emit 'lock add dword ptr [rax + off], eax' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700842 if (is_ereg(dst_reg) || is_ereg(src_reg))
843 EMIT3(0xF0, add_2mod(0x40, dst_reg, src_reg), 0x01);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700844 else
845 EMIT2(0xF0, 0x01);
846 goto xadd;
847 case BPF_STX | BPF_XADD | BPF_DW:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700848 EMIT3(0xF0, add_2mod(0x48, dst_reg, src_reg), 0x01);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700849xadd: if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700850 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700851 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700852 EMIT1_off32(add_2reg(0x80, dst_reg, src_reg),
Alexei Starovoitov62258272014-05-13 19:50:46 -0700853 insn->off);
854 break;
855
856 /* call */
857 case BPF_JMP | BPF_CALL:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700858 func = (u8 *) __bpf_call_base + imm32;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700859 jmp_offset = func - (image + addrs[i]);
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700860 if (seen_ld_abs) {
Martin KaFai Lau17bedab2016-12-07 15:53:11 -0800861 reload_skb_data = bpf_helper_changes_pkt_data(func);
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700862 if (reload_skb_data) {
863 EMIT1(0x57); /* push %rdi */
864 jmp_offset += 22; /* pop, mov, sub, mov */
865 } else {
866 EMIT2(0x41, 0x52); /* push %r10 */
867 EMIT2(0x41, 0x51); /* push %r9 */
868 /* need to adjust jmp offset, since
869 * pop %r9, pop %r10 take 4 bytes after call insn
870 */
871 jmp_offset += 4;
872 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700873 }
Alexei Starovoitove430f342014-06-06 14:46:06 -0700874 if (!imm32 || !is_simm32(jmp_offset)) {
Alexei Starovoitov62258272014-05-13 19:50:46 -0700875 pr_err("unsupported bpf func %d addr %p image %p\n",
Alexei Starovoitove430f342014-06-06 14:46:06 -0700876 imm32, func, image);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700877 return -EINVAL;
878 }
879 EMIT1_off32(0xE8, jmp_offset);
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700880 if (seen_ld_abs) {
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700881 if (reload_skb_data) {
882 EMIT1(0x5F); /* pop %rdi */
883 emit_load_skb_data_hlen(&prog);
884 } else {
885 EMIT2(0x41, 0x59); /* pop %r9 */
886 EMIT2(0x41, 0x5A); /* pop %r10 */
887 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700888 }
889 break;
890
Alexei Starovoitov71189fa2017-05-30 13:31:27 -0700891 case BPF_JMP | BPF_TAIL_CALL:
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700892 emit_bpf_tail_call(&prog);
893 break;
894
Alexei Starovoitov62258272014-05-13 19:50:46 -0700895 /* cond jump */
896 case BPF_JMP | BPF_JEQ | BPF_X:
897 case BPF_JMP | BPF_JNE | BPF_X:
898 case BPF_JMP | BPF_JGT | BPF_X:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200899 case BPF_JMP | BPF_JLT | BPF_X:
Alexei Starovoitov62258272014-05-13 19:50:46 -0700900 case BPF_JMP | BPF_JGE | BPF_X:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200901 case BPF_JMP | BPF_JLE | BPF_X:
Alexei Starovoitov62258272014-05-13 19:50:46 -0700902 case BPF_JMP | BPF_JSGT | BPF_X:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200903 case BPF_JMP | BPF_JSLT | BPF_X:
Alexei Starovoitov62258272014-05-13 19:50:46 -0700904 case BPF_JMP | BPF_JSGE | BPF_X:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200905 case BPF_JMP | BPF_JSLE | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700906 /* cmp dst_reg, src_reg */
907 EMIT3(add_2mod(0x48, dst_reg, src_reg), 0x39,
908 add_2reg(0xC0, dst_reg, src_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700909 goto emit_cond_jmp;
910
911 case BPF_JMP | BPF_JSET | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700912 /* test dst_reg, src_reg */
913 EMIT3(add_2mod(0x48, dst_reg, src_reg), 0x85,
914 add_2reg(0xC0, dst_reg, src_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700915 goto emit_cond_jmp;
916
917 case BPF_JMP | BPF_JSET | BPF_K:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700918 /* test dst_reg, imm32 */
919 EMIT1(add_1mod(0x48, dst_reg));
920 EMIT2_off32(0xF7, add_1reg(0xC0, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700921 goto emit_cond_jmp;
922
923 case BPF_JMP | BPF_JEQ | BPF_K:
924 case BPF_JMP | BPF_JNE | BPF_K:
925 case BPF_JMP | BPF_JGT | BPF_K:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200926 case BPF_JMP | BPF_JLT | BPF_K:
Alexei Starovoitov62258272014-05-13 19:50:46 -0700927 case BPF_JMP | BPF_JGE | BPF_K:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200928 case BPF_JMP | BPF_JLE | BPF_K:
Alexei Starovoitov62258272014-05-13 19:50:46 -0700929 case BPF_JMP | BPF_JSGT | BPF_K:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200930 case BPF_JMP | BPF_JSLT | BPF_K:
Alexei Starovoitov62258272014-05-13 19:50:46 -0700931 case BPF_JMP | BPF_JSGE | BPF_K:
Daniel Borkmann52afc512017-08-10 01:39:56 +0200932 case BPF_JMP | BPF_JSLE | BPF_K:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700933 /* cmp dst_reg, imm8/32 */
934 EMIT1(add_1mod(0x48, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700935
Alexei Starovoitove430f342014-06-06 14:46:06 -0700936 if (is_imm8(imm32))
937 EMIT3(0x83, add_1reg(0xF8, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700938 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700939 EMIT2_off32(0x81, add_1reg(0xF8, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700940
941emit_cond_jmp: /* convert BPF opcode to x86 */
942 switch (BPF_OP(insn->code)) {
943 case BPF_JEQ:
944 jmp_cond = X86_JE;
945 break;
946 case BPF_JSET:
947 case BPF_JNE:
948 jmp_cond = X86_JNE;
949 break;
950 case BPF_JGT:
951 /* GT is unsigned '>', JA in x86 */
952 jmp_cond = X86_JA;
953 break;
Daniel Borkmann52afc512017-08-10 01:39:56 +0200954 case BPF_JLT:
955 /* LT is unsigned '<', JB in x86 */
956 jmp_cond = X86_JB;
957 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700958 case BPF_JGE:
959 /* GE is unsigned '>=', JAE in x86 */
960 jmp_cond = X86_JAE;
961 break;
Daniel Borkmann52afc512017-08-10 01:39:56 +0200962 case BPF_JLE:
963 /* LE is unsigned '<=', JBE in x86 */
964 jmp_cond = X86_JBE;
965 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700966 case BPF_JSGT:
967 /* signed '>', GT in x86 */
968 jmp_cond = X86_JG;
969 break;
Daniel Borkmann52afc512017-08-10 01:39:56 +0200970 case BPF_JSLT:
971 /* signed '<', LT in x86 */
972 jmp_cond = X86_JL;
973 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700974 case BPF_JSGE:
975 /* signed '>=', GE in x86 */
976 jmp_cond = X86_JGE;
977 break;
Daniel Borkmann52afc512017-08-10 01:39:56 +0200978 case BPF_JSLE:
979 /* signed '<=', LE in x86 */
980 jmp_cond = X86_JLE;
981 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700982 default: /* to silence gcc warning */
983 return -EFAULT;
984 }
985 jmp_offset = addrs[i + insn->off] - addrs[i];
986 if (is_imm8(jmp_offset)) {
987 EMIT2(jmp_cond, jmp_offset);
988 } else if (is_simm32(jmp_offset)) {
989 EMIT2_off32(0x0F, jmp_cond + 0x10, jmp_offset);
990 } else {
991 pr_err("cond_jmp gen bug %llx\n", jmp_offset);
992 return -EFAULT;
993 }
994
995 break;
996
997 case BPF_JMP | BPF_JA:
998 jmp_offset = addrs[i + insn->off] - addrs[i];
999 if (!jmp_offset)
1000 /* optimize out nop jumps */
1001 break;
1002emit_jmp:
1003 if (is_imm8(jmp_offset)) {
1004 EMIT2(0xEB, jmp_offset);
1005 } else if (is_simm32(jmp_offset)) {
1006 EMIT1_off32(0xE9, jmp_offset);
1007 } else {
1008 pr_err("jmp gen bug %llx\n", jmp_offset);
1009 return -EFAULT;
1010 }
1011 break;
1012
1013 case BPF_LD | BPF_IND | BPF_W:
1014 func = sk_load_word;
1015 goto common_load;
1016 case BPF_LD | BPF_ABS | BPF_W:
Alexei Starovoitove430f342014-06-06 14:46:06 -07001017 func = CHOOSE_LOAD_FUNC(imm32, sk_load_word);
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001018common_load:
1019 ctx->seen_ld_abs = seen_ld_abs = true;
Alexei Starovoitov62258272014-05-13 19:50:46 -07001020 jmp_offset = func - (image + addrs[i]);
1021 if (!func || !is_simm32(jmp_offset)) {
1022 pr_err("unsupported bpf func %d addr %p image %p\n",
Alexei Starovoitove430f342014-06-06 14:46:06 -07001023 imm32, func, image);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001024 return -EINVAL;
1025 }
1026 if (BPF_MODE(insn->code) == BPF_ABS) {
1027 /* mov %esi, imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -07001028 EMIT1_off32(0xBE, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001029 } else {
Alexei Starovoitove430f342014-06-06 14:46:06 -07001030 /* mov %rsi, src_reg */
1031 EMIT_mov(BPF_REG_2, src_reg);
1032 if (imm32) {
1033 if (is_imm8(imm32))
Alexei Starovoitov62258272014-05-13 19:50:46 -07001034 /* add %esi, imm8 */
Alexei Starovoitove430f342014-06-06 14:46:06 -07001035 EMIT3(0x83, 0xC6, imm32);
Eric Dumazet0a148422011-04-20 09:27:32 +00001036 else
Alexei Starovoitov62258272014-05-13 19:50:46 -07001037 /* add %esi, imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -07001038 EMIT2_off32(0x81, 0xC6, imm32);
Eric Dumazet0a148422011-04-20 09:27:32 +00001039 }
Alexei Starovoitov62258272014-05-13 19:50:46 -07001040 }
1041 /* skb pointer is in R6 (%rbx), it will be copied into
1042 * %rdi if skb_copy_bits() call is necessary.
1043 * sk_load_* helpers also use %r10 and %r9d.
1044 * See bpf_jit.S
1045 */
Daniel Borkmann959a7572016-05-13 19:08:33 +02001046 if (seen_ax_reg)
1047 /* r10 = skb->data, mov %r10, off32(%rbx) */
1048 EMIT3_off32(0x4c, 0x8b, 0x93,
1049 offsetof(struct sk_buff, data));
Alexei Starovoitov62258272014-05-13 19:50:46 -07001050 EMIT1_off32(0xE8, jmp_offset); /* call */
1051 break;
1052
1053 case BPF_LD | BPF_IND | BPF_H:
1054 func = sk_load_half;
1055 goto common_load;
1056 case BPF_LD | BPF_ABS | BPF_H:
Alexei Starovoitove430f342014-06-06 14:46:06 -07001057 func = CHOOSE_LOAD_FUNC(imm32, sk_load_half);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001058 goto common_load;
1059 case BPF_LD | BPF_IND | BPF_B:
1060 func = sk_load_byte;
1061 goto common_load;
1062 case BPF_LD | BPF_ABS | BPF_B:
Alexei Starovoitove430f342014-06-06 14:46:06 -07001063 func = CHOOSE_LOAD_FUNC(imm32, sk_load_byte);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001064 goto common_load;
1065
1066 case BPF_JMP | BPF_EXIT:
Alexei Starovoitov769e0de2014-11-29 14:46:13 -08001067 if (seen_exit) {
Alexei Starovoitov62258272014-05-13 19:50:46 -07001068 jmp_offset = ctx->cleanup_addr - addrs[i];
1069 goto emit_jmp;
1070 }
Alexei Starovoitov769e0de2014-11-29 14:46:13 -08001071 seen_exit = true;
Alexei Starovoitov62258272014-05-13 19:50:46 -07001072 /* update cleanup_addr */
1073 ctx->cleanup_addr = proglen;
Alexei Starovoitov177366b2017-05-30 13:31:34 -07001074 /* mov rbx, qword ptr [rbp+0] */
1075 EMIT4(0x48, 0x8B, 0x5D, 0);
1076 /* mov r13, qword ptr [rbp+8] */
1077 EMIT4(0x4C, 0x8B, 0x6D, 8);
1078 /* mov r14, qword ptr [rbp+16] */
1079 EMIT4(0x4C, 0x8B, 0x75, 16);
1080 /* mov r15, qword ptr [rbp+24] */
1081 EMIT4(0x4C, 0x8B, 0x7D, 24);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001082
Alexei Starovoitov177366b2017-05-30 13:31:34 -07001083 /* add rbp, AUX_STACK_SPACE */
1084 EMIT4(0x48, 0x83, 0xC5, AUX_STACK_SPACE);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001085 EMIT1(0xC9); /* leave */
1086 EMIT1(0xC3); /* ret */
1087 break;
1088
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001089 default:
Alexei Starovoitov62258272014-05-13 19:50:46 -07001090 /* By design x64 JIT should support all BPF instructions
1091 * This error will be seen if new instruction was added
1092 * to interpreter, but not to JIT
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001093 * or if there is junk in bpf_prog
Alexei Starovoitov62258272014-05-13 19:50:46 -07001094 */
1095 pr_err("bpf_jit: unknown opcode %02x\n", insn->code);
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001096 return -EINVAL;
Eric Dumazet0a148422011-04-20 09:27:32 +00001097 }
Alexei Starovoitov62258272014-05-13 19:50:46 -07001098
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001099 ilen = prog - temp;
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001100 if (ilen > BPF_MAX_INSN_SIZE) {
Daniel Borkmann93831912017-02-16 22:24:49 +01001101 pr_err("bpf_jit: fatal insn size error\n");
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001102 return -EFAULT;
1103 }
1104
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001105 if (image) {
1106 if (unlikely(proglen + ilen > oldproglen)) {
Daniel Borkmann93831912017-02-16 22:24:49 +01001107 pr_err("bpf_jit: fatal error\n");
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001108 return -EFAULT;
1109 }
1110 memcpy(image + proglen, temp, ilen);
1111 }
1112 proglen += ilen;
1113 addrs[i] = proglen;
1114 prog = temp;
1115 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001116 return proglen;
1117}
1118
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001119struct x64_jit_data {
1120 struct bpf_binary_header *header;
1121 int *addrs;
1122 u8 *image;
1123 int proglen;
1124 struct jit_context ctx;
1125};
1126
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001127struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
Alexei Starovoitov62258272014-05-13 19:50:46 -07001128{
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001129 struct bpf_binary_header *header = NULL;
Daniel Borkmann959a7572016-05-13 19:08:33 +02001130 struct bpf_prog *tmp, *orig_prog = prog;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001131 struct x64_jit_data *jit_data;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001132 int proglen, oldproglen = 0;
1133 struct jit_context ctx = {};
Daniel Borkmann959a7572016-05-13 19:08:33 +02001134 bool tmp_blinded = false;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001135 bool extra_pass = false;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001136 u8 *image = NULL;
1137 int *addrs;
1138 int pass;
1139 int i;
1140
Alexei Starovoitov60b58afc2017-12-14 17:55:14 -08001141 if (!prog->jit_requested)
Daniel Borkmann959a7572016-05-13 19:08:33 +02001142 return orig_prog;
1143
1144 tmp = bpf_jit_blind_constants(prog);
1145 /* If blinding was requested and we failed during blinding,
1146 * we must fall back to the interpreter.
1147 */
1148 if (IS_ERR(tmp))
1149 return orig_prog;
1150 if (tmp != prog) {
1151 tmp_blinded = true;
1152 prog = tmp;
1153 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001154
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001155 jit_data = prog->aux->jit_data;
1156 if (!jit_data) {
1157 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL);
1158 if (!jit_data) {
1159 prog = orig_prog;
1160 goto out;
1161 }
1162 prog->aux->jit_data = jit_data;
1163 }
1164 addrs = jit_data->addrs;
1165 if (addrs) {
1166 ctx = jit_data->ctx;
1167 oldproglen = jit_data->proglen;
1168 image = jit_data->image;
1169 header = jit_data->header;
1170 extra_pass = true;
1171 goto skip_init_addrs;
1172 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001173 addrs = kmalloc(prog->len * sizeof(*addrs), GFP_KERNEL);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001174 if (!addrs) {
1175 prog = orig_prog;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001176 goto out_addrs;
Daniel Borkmann959a7572016-05-13 19:08:33 +02001177 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001178
1179 /* Before first pass, make a rough estimation of addrs[]
1180 * each bpf instruction is translated to less than 64 bytes
1181 */
1182 for (proglen = 0, i = 0; i < prog->len; i++) {
1183 proglen += 64;
1184 addrs[i] = proglen;
1185 }
1186 ctx.cleanup_addr = proglen;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001187skip_init_addrs:
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001188
Alexei Starovoitov3f7352b2015-05-22 15:42:55 -07001189 /* JITed image shrinks with every pass and the loop iterates
1190 * until the image stops shrinking. Very large bpf programs
1191 * may converge on the last pass. In such case do one more
1192 * pass to emit the final image
1193 */
1194 for (pass = 0; pass < 10 || image; pass++) {
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001195 proglen = do_jit(prog, addrs, image, oldproglen, &ctx);
1196 if (proglen <= 0) {
1197 image = NULL;
1198 if (header)
Daniel Borkmann738cbe72014-09-08 08:04:47 +02001199 bpf_jit_binary_free(header);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001200 prog = orig_prog;
1201 goto out_addrs;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001202 }
Eric Dumazet0a148422011-04-20 09:27:32 +00001203 if (image) {
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001204 if (proglen != oldproglen) {
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001205 pr_err("bpf_jit: proglen=%d != oldproglen=%d\n",
1206 proglen, oldproglen);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001207 prog = orig_prog;
1208 goto out_addrs;
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001209 }
Eric Dumazet0a148422011-04-20 09:27:32 +00001210 break;
1211 }
1212 if (proglen == oldproglen) {
Daniel Borkmann738cbe72014-09-08 08:04:47 +02001213 header = bpf_jit_binary_alloc(proglen, &image,
1214 1, jit_fill_hole);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001215 if (!header) {
1216 prog = orig_prog;
1217 goto out_addrs;
1218 }
Eric Dumazet0a148422011-04-20 09:27:32 +00001219 }
1220 oldproglen = proglen;
1221 }
Daniel Borkmann79617802013-03-21 22:22:03 +01001222
Eric Dumazet0a148422011-04-20 09:27:32 +00001223 if (bpf_jit_enable > 1)
Daniel Borkmann485d6512015-07-30 12:42:48 +02001224 bpf_jit_dump(prog->len, proglen, pass + 1, image);
Eric Dumazet0a148422011-04-20 09:27:32 +00001225
1226 if (image) {
Eric Dumazet314beb92013-05-17 16:37:03 +00001227 bpf_flush_icache(header, image + proglen);
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001228 if (!prog->is_func || extra_pass) {
1229 bpf_jit_binary_lock_ro(header);
1230 } else {
1231 jit_data->addrs = addrs;
1232 jit_data->ctx = ctx;
1233 jit_data->proglen = proglen;
1234 jit_data->image = image;
1235 jit_data->header = header;
1236 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001237 prog->bpf_func = (void *)image;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001238 prog->jited = 1;
Martin KaFai Lau783d28dd12017-06-05 12:15:51 -07001239 prog->jited_len = proglen;
Daniel Borkmann9d5ecb02017-01-07 00:26:33 +01001240 } else {
1241 prog = orig_prog;
Eric Dumazet0a148422011-04-20 09:27:32 +00001242 }
Daniel Borkmann959a7572016-05-13 19:08:33 +02001243
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001244 if (!prog->is_func || extra_pass) {
Daniel Borkmann959a7572016-05-13 19:08:33 +02001245out_addrs:
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001246 kfree(addrs);
1247 kfree(jit_data);
1248 prog->aux->jit_data = NULL;
1249 }
Daniel Borkmann959a7572016-05-13 19:08:33 +02001250out:
1251 if (tmp_blinded)
1252 bpf_jit_prog_release_other(prog, prog == orig_prog ?
1253 tmp : orig_prog);
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001254 return prog;
Eric Dumazet0a148422011-04-20 09:27:32 +00001255}