blob: e1324f280e06eb86c9aa9c2249cdba6b6c036c4b [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 +000018int bpf_jit_enable __read_mostly;
19
20/*
21 * assembly code in arch/x86/net/bpf_jit.S
22 */
Alexei Starovoitov62258272014-05-13 19:50:46 -070023extern u8 sk_load_word[], sk_load_half[], sk_load_byte[];
Jan Seifferta998d432012-03-30 05:24:05 +000024extern u8 sk_load_word_positive_offset[], sk_load_half_positive_offset[];
Alexei Starovoitov62258272014-05-13 19:50:46 -070025extern u8 sk_load_byte_positive_offset[];
Jan Seifferta998d432012-03-30 05:24:05 +000026extern u8 sk_load_word_negative_offset[], sk_load_half_negative_offset[];
Alexei Starovoitov62258272014-05-13 19:50:46 -070027extern u8 sk_load_byte_negative_offset[];
Eric Dumazet0a148422011-04-20 09:27:32 +000028
Joe Perches5cccc702014-12-04 17:01:24 -080029static u8 *emit_code(u8 *ptr, u32 bytes, unsigned int len)
Eric Dumazet0a148422011-04-20 09:27:32 +000030{
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
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -070042#define EMIT(bytes, len) \
43 do { prog = emit_code(prog, bytes, len); cnt += len; } while (0)
Eric Dumazet0a148422011-04-20 09:27:32 +000044
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)
Alexei Starovoitov62258272014-05-13 19:50:46 -070049#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)
Eric Dumazet0a148422011-04-20 09:27:32 +000057
Joe Perches5cccc702014-12-04 17:01:24 -080058static bool is_imm8(int value)
Eric Dumazet0a148422011-04-20 09:27:32 +000059{
60 return value <= 127 && value >= -128;
61}
62
Joe Perches5cccc702014-12-04 17:01:24 -080063static bool is_simm32(s64 value)
Eric Dumazet0a148422011-04-20 09:27:32 +000064{
Alexei Starovoitov62258272014-05-13 19:50:46 -070065 return value == (s64) (s32) value;
Eric Dumazet0a148422011-04-20 09:27:32 +000066}
67
Alexei Starovoitove430f342014-06-06 14:46:06 -070068/* 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)); \
Alexei Starovoitov62258272014-05-13 19:50:46 -070072 } 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}
Eric Dumazet0a148422011-04-20 09:27:32 +000087
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
Alexei Starovoitov62258272014-05-13 19:50:46 -070097#define X86_JGE 0x7D
98#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
155/* add modifiers if 'reg' maps to x64 registers r8..r15 */
Joe Perches5cccc702014-12-04 17:01:24 -0800156static u8 add_1mod(u8 byte, u32 reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700157{
158 if (is_ereg(reg))
159 byte |= 1;
160 return byte;
161}
162
Joe Perches5cccc702014-12-04 17:01:24 -0800163static u8 add_2mod(u8 byte, u32 r1, u32 r2)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700164{
165 if (is_ereg(r1))
166 byte |= 1;
167 if (is_ereg(r2))
168 byte |= 4;
169 return byte;
170}
171
Alexei Starovoitove430f342014-06-06 14:46:06 -0700172/* encode 'dst_reg' register into x64 opcode 'byte' */
Joe Perches5cccc702014-12-04 17:01:24 -0800173static u8 add_1reg(u8 byte, u32 dst_reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700174{
Alexei Starovoitove430f342014-06-06 14:46:06 -0700175 return byte + reg2hex[dst_reg];
Alexei Starovoitov62258272014-05-13 19:50:46 -0700176}
177
Alexei Starovoitove430f342014-06-06 14:46:06 -0700178/* encode 'dst_reg' and 'src_reg' registers into x64 opcode 'byte' */
Joe Perches5cccc702014-12-04 17:01:24 -0800179static u8 add_2reg(u8 byte, u32 dst_reg, u32 src_reg)
Alexei Starovoitov62258272014-05-13 19:50:46 -0700180{
Alexei Starovoitove430f342014-06-06 14:46:06 -0700181 return byte + reg2hex[dst_reg] + (reg2hex[src_reg] << 3);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700182}
183
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200184static void jit_fill_hole(void *area, unsigned int size)
185{
186 /* fill whole space with int3 instructions */
187 memset(area, 0xcc, size);
188}
189
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -0700190struct jit_context {
Alexei Starovoitov769e0de2014-11-29 14:46:13 -0800191 int cleanup_addr; /* epilogue code offset */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700192 bool seen_ld_abs;
Daniel Borkmann959a7572016-05-13 19:08:33 +0200193 bool seen_ax_reg;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -0700194};
195
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700196/* maximum number of bytes emitted while JITing one eBPF insn */
197#define BPF_MAX_INSN_SIZE 128
198#define BPF_INSN_SAFETY 64
199
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700200#define AUX_STACK_SPACE \
201 (32 /* space for rbx, r13, r14, r15 */ + \
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700202 8 /* space for skb_copy_bits() buffer */)
203
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700204#define PROLOGUE_SIZE 37
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700205
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 */
Alexei Starovoitov2960ae42017-05-30 13:31:35 -0700209static void emit_prologue(u8 **pprog, u32 stack_depth)
Eric Dumazet0a148422011-04-20 09:27:32 +0000210{
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700211 u8 *prog = *pprog;
212 int cnt = 0;
Eric Dumazet0a148422011-04-20 09:27:32 +0000213
Alexei Starovoitov62258272014-05-13 19:50:46 -0700214 EMIT1(0x55); /* push rbp */
215 EMIT3(0x48, 0x89, 0xE5); /* mov rbp,rsp */
Eric Dumazet0a148422011-04-20 09:27:32 +0000216
Alexei Starovoitov2960ae42017-05-30 13:31:35 -0700217 /* sub rsp, rounded_stack_depth + AUX_STACK_SPACE */
218 EMIT3_off32(0x48, 0x81, 0xEC,
219 round_up(stack_depth, 8) + AUX_STACK_SPACE);
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700220
221 /* sub rbp, AUX_STACK_SPACE */
222 EMIT4(0x48, 0x83, 0xED, AUX_STACK_SPACE);
Eric Dumazet0a148422011-04-20 09:27:32 +0000223
Alexei Starovoitov62258272014-05-13 19:50:46 -0700224 /* all classic BPF filters use R6(rbx) save it */
Eric Dumazet0a148422011-04-20 09:27:32 +0000225
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700226 /* mov qword ptr [rbp+0],rbx */
227 EMIT4(0x48, 0x89, 0x5D, 0);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700228
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700229 /* bpf_convert_filter() maps classic BPF register X to R7 and uses R8
Alexei Starovoitov62258272014-05-13 19:50:46 -0700230 * 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
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700237 /* 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);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700243
Daniel Borkmann8b614ae2015-12-17 23:51:54 +0100244 /* 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 */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700249
Daniel Borkmann8b614ae2015-12-17 23:51:54 +0100250 /* xor eax, eax */
251 EMIT2(0x31, 0xc0);
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700252 /* mov qword ptr [rbp+32], rax */
253 EMIT4(0x48, 0x89, 0x45, 32);
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700254
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;
Wang Nan2a36f0b2015-08-06 07:02:33 +0000265 * prog = array->ptrs[index];
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700266 * 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 */
Daniel Borkmann2482abb2015-07-28 15:26:36 +0200288#define OFFSET1 47 /* number of bytes to jump */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700289 EMIT2(X86_JBE, OFFSET1); /* jbe out */
290 label1 = cnt;
291
292 /* if (tail_call_cnt > MAX_TAIL_CALL_CNT)
293 * goto out;
294 */
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700295 EMIT2_off32(0x8B, 0x85, 36); /* mov eax, dword ptr [rbp + 36] */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700296 EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT); /* cmp eax, MAX_TAIL_CALL_CNT */
Daniel Borkmann2482abb2015-07-28 15:26:36 +0200297#define OFFSET2 36
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700298 EMIT2(X86_JA, OFFSET2); /* ja out */
299 label2 = cnt;
300 EMIT3(0x83, 0xC0, 0x01); /* add eax, 1 */
Alexei Starovoitov177366b2017-05-30 13:31:34 -0700301 EMIT2_off32(0x89, 0x85, 36); /* mov dword ptr [rbp + 36], eax */
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700302
Wang Nan2a36f0b2015-08-06 07:02:33 +0000303 /* prog = array->ptrs[index]; */
Daniel Borkmann2482abb2015-07-28 15:26:36 +0200304 EMIT4_off32(0x48, 0x8D, 0x84, 0xD6, /* lea rax, [rsi + rdx * 8 + offsetof(...)] */
Wang Nan2a36f0b2015-08-06 07:02:33 +0000305 offsetof(struct bpf_array, ptrs));
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700306 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
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700334
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
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700354static 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);
Daniel Borkmann959a7572016-05-13 19:08:33 +0200360 bool seen_ax_reg = ctx->seen_ax_reg | (oldproglen == 0);
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700361 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
Alexei Starovoitov2960ae42017-05-30 13:31:35 -0700367 emit_prologue(&prog, bpf_prog->aux->stack_depth);
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700368
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700369 if (seen_ld_abs)
370 emit_load_skb_data_hlen(&prog);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700371
372 for (i = 0; i < insn_cnt; i++, insn++) {
Alexei Starovoitove430f342014-06-06 14:46:06 -0700373 const s32 imm32 = insn->imm;
374 u32 dst_reg = insn->dst_reg;
375 u32 src_reg = insn->src_reg;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700376 u8 b1 = 0, b2 = 0, b3 = 0;
377 s64 jmp_offset;
378 u8 jmp_cond;
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700379 bool reload_skb_data;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700380 int ilen;
381 u8 *func;
382
Daniel Borkmann959a7572016-05-13 19:08:33 +0200383 if (dst_reg == BPF_REG_AX || src_reg == BPF_REG_AX)
384 ctx->seen_ax_reg = seen_ax_reg = true;
385
Alexei Starovoitov62258272014-05-13 19:50:46 -0700386 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;
Eric Dumazet0a148422011-04-20 09:27:32 +0000404 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700405 if (BPF_CLASS(insn->code) == BPF_ALU64)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700406 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));
Eric Dumazet0a148422011-04-20 09:27:32 +0000410 break;
Eric Dumazet0a148422011-04-20 09:27:32 +0000411
Alexei Starovoitove430f342014-06-06 14:46:06 -0700412 /* mov dst, src */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700413 case BPF_ALU64 | BPF_MOV | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700414 EMIT_mov(dst_reg, src_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700415 break;
Eric Dumazet0a148422011-04-20 09:27:32 +0000416
Alexei Starovoitove430f342014-06-06 14:46:06 -0700417 /* mov32 dst, src */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700418 case BPF_ALU | BPF_MOV | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700419 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));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700422 break;
Eric Dumazet3b589082013-01-30 17:51:44 -0800423
Alexei Starovoitove430f342014-06-06 14:46:06 -0700424 /* neg dst */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700425 case BPF_ALU | BPF_NEG:
426 case BPF_ALU64 | BPF_NEG:
427 if (BPF_CLASS(insn->code) == BPF_ALU64)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700428 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));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700432 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)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700445 EMIT1(add_1mod(0x48, dst_reg));
446 else if (is_ereg(dst_reg))
447 EMIT1(add_1mod(0x40, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700448
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
Alexei Starovoitove430f342014-06-06 14:46:06 -0700457 if (is_imm8(imm32))
458 EMIT3(0x83, add_1reg(b3, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700459 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700460 EMIT2_off32(0x81, add_1reg(b3, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700461 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 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700468 if (imm32 < 0) {
Alexei Starovoitov62258272014-05-13 19:50:46 -0700469 /* 'mov rax, imm32' sign extends imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700470 b1 = add_1mod(0x48, dst_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700471 b2 = 0xC7;
472 b3 = 0xC0;
Alexei Starovoitove430f342014-06-06 14:46:06 -0700473 EMIT3_off32(b1, b2, add_1reg(b3, dst_reg), imm32);
Eric Dumazet3b589082013-01-30 17:51:44 -0800474 break;
475 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700476
477 case BPF_ALU | BPF_MOV | BPF_K:
Daniel Borkmann606c88a2015-12-17 23:51:56 +0100478 /* 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
Alexei Starovoitov62258272014-05-13 19:50:46 -0700490 /* mov %eax, imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700491 if (is_ereg(dst_reg))
492 EMIT1(add_1mod(0x40, dst_reg));
493 EMIT1_off32(add_1reg(0xB8, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700494 break;
495
Alexei Starovoitov02ab6952014-09-04 22:17:17 -0700496 case BPF_LD | BPF_IMM | BPF_DW:
Daniel Borkmann606c88a2015-12-17 23:51:56 +0100497 /* 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
Alexei Starovoitov02ab6952014-09-04 22:17:17 -0700511 /* 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
Alexei Starovoitove430f342014-06-06 14:46:06 -0700520 /* dst %= src, dst /= src, dst %= imm32, dst /= imm32 */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700521 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)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700533 /* mov r11, src_reg */
534 EMIT_mov(AUX_REG, src_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700535 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700536 /* mov r11, imm32 */
537 EMIT3_off32(0x49, 0xC7, 0xC3, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700538
Alexei Starovoitove430f342014-06-06 14:46:06 -0700539 /* mov rax, dst_reg */
540 EMIT_mov(BPF_REG_0, dst_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700541
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) {
Alexei Starovoitove430f342014-06-06 14:46:06 -0700548 /* if (src_reg == 0) return 0 */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700549
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
Alexei Starovoitove430f342014-06-06 14:46:06 -0700584 /* mov dst_reg, r11 */
585 EMIT_mov(dst_reg, AUX_REG);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700586 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
Alexei Starovoitove430f342014-06-06 14:46:06 -0700595 /* mov r11, dst_reg */
596 EMIT_mov(AUX_REG, dst_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700597
598 if (BPF_SRC(insn->code) == BPF_X)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700599 /* mov rax, src_reg */
600 EMIT_mov(BPF_REG_0, src_reg);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700601 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700602 /* mov rax, imm32 */
603 EMIT3_off32(0x48, 0xC7, 0xC0, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700604
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
Alexei Starovoitove430f342014-06-06 14:46:06 -0700618 /* mov dst_reg, r11 */
619 EMIT_mov(dst_reg, AUX_REG);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700620 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)
Alexei Starovoitove430f342014-06-06 14:46:06 -0700630 EMIT1(add_1mod(0x48, dst_reg));
631 else if (is_ereg(dst_reg))
632 EMIT1(add_1mod(0x40, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700633
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 }
Alexei Starovoitove430f342014-06-06 14:46:06 -0700639 EMIT3(0xC1, add_1reg(b3, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700640 break;
641
Alexei Starovoitov72b603e2014-08-25 12:27:02 -0700642 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
Alexei Starovoitov62258272014-05-13 19:50:46 -0700684 case BPF_ALU | BPF_END | BPF_FROM_BE:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700685 switch (imm32) {
Alexei Starovoitov62258272014-05-13 19:50:46 -0700686 case 16:
687 /* emit 'ror %ax, 8' to swap lower 2 bytes */
688 EMIT1(0x66);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700689 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700690 EMIT1(0x41);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700691 EMIT3(0xC1, add_1reg(0xC8, dst_reg), 8);
Alexei Starovoitov343f8452015-05-11 23:25:16 -0700692
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));
Eric Dumazet0a148422011-04-20 09:27:32 +0000699 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700700 case 32:
701 /* emit 'bswap eax' to swap lower 4 bytes */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700702 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700703 EMIT2(0x41, 0x0F);
704 else
705 EMIT1(0x0F);
Alexei Starovoitove430f342014-06-06 14:46:06 -0700706 EMIT1(add_1reg(0xC8, dst_reg));
Eric Dumazet0a148422011-04-20 09:27:32 +0000707 break;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700708 case 64:
709 /* emit 'bswap rax' to swap 8 bytes */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700710 EMIT3(add_1mod(0x48, dst_reg), 0x0F,
711 add_1reg(0xC8, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700712 break;
713 }
714 break;
715
716 case BPF_ALU | BPF_END | BPF_FROM_LE:
Alexei Starovoitov343f8452015-05-11 23:25:16 -0700717 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 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700738 break;
739
Alexei Starovoitove430f342014-06-06 14:46:06 -0700740 /* ST: *(u8*)(dst_reg + off) = imm */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700741 case BPF_ST | BPF_MEM | BPF_B:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700742 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700743 EMIT2(0x41, 0xC6);
744 else
745 EMIT1(0xC6);
746 goto st;
747 case BPF_ST | BPF_MEM | BPF_H:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700748 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700749 EMIT3(0x66, 0x41, 0xC7);
750 else
751 EMIT2(0x66, 0xC7);
752 goto st;
753 case BPF_ST | BPF_MEM | BPF_W:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700754 if (is_ereg(dst_reg))
Alexei Starovoitov62258272014-05-13 19:50:46 -0700755 EMIT2(0x41, 0xC7);
756 else
757 EMIT1(0xC7);
758 goto st;
759 case BPF_ST | BPF_MEM | BPF_DW:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700760 EMIT2(add_1mod(0x48, dst_reg), 0xC7);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700761
762st: if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700763 EMIT2(add_1reg(0x40, dst_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700764 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700765 EMIT1_off32(add_1reg(0x80, dst_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700766
Alexei Starovoitove430f342014-06-06 14:46:06 -0700767 EMIT(imm32, bpf_size_to_x86_bytes(BPF_SIZE(insn->code)));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700768 break;
769
Alexei Starovoitove430f342014-06-06 14:46:06 -0700770 /* STX: *(u8*)(dst_reg + off) = src_reg */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700771 case BPF_STX | BPF_MEM | BPF_B:
772 /* emit 'mov byte ptr [rax + off], al' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700773 if (is_ereg(dst_reg) || is_ereg(src_reg) ||
Alexei Starovoitov62258272014-05-13 19:50:46 -0700774 /* have to add extra byte for x86 SIL, DIL regs */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700775 src_reg == BPF_REG_1 || src_reg == BPF_REG_2)
776 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x88);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700777 else
778 EMIT1(0x88);
779 goto stx;
780 case BPF_STX | BPF_MEM | BPF_H:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700781 if (is_ereg(dst_reg) || is_ereg(src_reg))
782 EMIT3(0x66, add_2mod(0x40, dst_reg, src_reg), 0x89);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700783 else
784 EMIT2(0x66, 0x89);
785 goto stx;
786 case BPF_STX | BPF_MEM | BPF_W:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700787 if (is_ereg(dst_reg) || is_ereg(src_reg))
788 EMIT2(add_2mod(0x40, dst_reg, src_reg), 0x89);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700789 else
790 EMIT1(0x89);
791 goto stx;
792 case BPF_STX | BPF_MEM | BPF_DW:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700793 EMIT2(add_2mod(0x48, dst_reg, src_reg), 0x89);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700794stx: if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700795 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700796 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700797 EMIT1_off32(add_2reg(0x80, dst_reg, src_reg),
Alexei Starovoitov62258272014-05-13 19:50:46 -0700798 insn->off);
799 break;
800
Alexei Starovoitove430f342014-06-06 14:46:06 -0700801 /* LDX: dst_reg = *(u8*)(src_reg + off) */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700802 case BPF_LDX | BPF_MEM | BPF_B:
803 /* emit 'movzx rax, byte ptr [rax + off]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700804 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB6);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700805 goto ldx;
806 case BPF_LDX | BPF_MEM | BPF_H:
807 /* emit 'movzx rax, word ptr [rax + off]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700808 EMIT3(add_2mod(0x48, src_reg, dst_reg), 0x0F, 0xB7);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700809 goto ldx;
810 case BPF_LDX | BPF_MEM | BPF_W:
811 /* emit 'mov eax, dword ptr [rax+0x14]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700812 if (is_ereg(dst_reg) || is_ereg(src_reg))
813 EMIT2(add_2mod(0x40, src_reg, dst_reg), 0x8B);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700814 else
815 EMIT1(0x8B);
816 goto ldx;
817 case BPF_LDX | BPF_MEM | BPF_DW:
818 /* emit 'mov rax, qword ptr [rax+0x14]' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700819 EMIT2(add_2mod(0x48, src_reg, dst_reg), 0x8B);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700820ldx: /* 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))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700825 EMIT2(add_2reg(0x40, src_reg, dst_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700826 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700827 EMIT1_off32(add_2reg(0x80, src_reg, dst_reg),
Alexei Starovoitov62258272014-05-13 19:50:46 -0700828 insn->off);
829 break;
830
Alexei Starovoitove430f342014-06-06 14:46:06 -0700831 /* STX XADD: lock *(u32*)(dst_reg + off) += src_reg */
Alexei Starovoitov62258272014-05-13 19:50:46 -0700832 case BPF_STX | BPF_XADD | BPF_W:
833 /* emit 'lock add dword ptr [rax + off], eax' */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700834 if (is_ereg(dst_reg) || is_ereg(src_reg))
835 EMIT3(0xF0, add_2mod(0x40, dst_reg, src_reg), 0x01);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700836 else
837 EMIT2(0xF0, 0x01);
838 goto xadd;
839 case BPF_STX | BPF_XADD | BPF_DW:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700840 EMIT3(0xF0, add_2mod(0x48, dst_reg, src_reg), 0x01);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700841xadd: if (is_imm8(insn->off))
Alexei Starovoitove430f342014-06-06 14:46:06 -0700842 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700843 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700844 EMIT1_off32(add_2reg(0x80, dst_reg, src_reg),
Alexei Starovoitov62258272014-05-13 19:50:46 -0700845 insn->off);
846 break;
847
848 /* call */
849 case BPF_JMP | BPF_CALL:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700850 func = (u8 *) __bpf_call_base + imm32;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700851 jmp_offset = func - (image + addrs[i]);
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700852 if (seen_ld_abs) {
Martin KaFai Lau17bedab2016-12-07 15:53:11 -0800853 reload_skb_data = bpf_helper_changes_pkt_data(func);
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700854 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 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700865 }
Alexei Starovoitove430f342014-06-06 14:46:06 -0700866 if (!imm32 || !is_simm32(jmp_offset)) {
Alexei Starovoitov62258272014-05-13 19:50:46 -0700867 pr_err("unsupported bpf func %d addr %p image %p\n",
Alexei Starovoitove430f342014-06-06 14:46:06 -0700868 imm32, func, image);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700869 return -EINVAL;
870 }
871 EMIT1_off32(0xE8, jmp_offset);
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700872 if (seen_ld_abs) {
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700873 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 }
Alexei Starovoitov62258272014-05-13 19:50:46 -0700880 }
881 break;
882
Alexei Starovoitov71189fa2017-05-30 13:31:27 -0700883 case BPF_JMP | BPF_TAIL_CALL:
Alexei Starovoitovb52f00e2015-05-19 16:59:04 -0700884 emit_bpf_tail_call(&prog);
885 break;
886
Alexei Starovoitov62258272014-05-13 19:50:46 -0700887 /* 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:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700894 /* cmp dst_reg, src_reg */
895 EMIT3(add_2mod(0x48, dst_reg, src_reg), 0x39,
896 add_2reg(0xC0, dst_reg, src_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700897 goto emit_cond_jmp;
898
899 case BPF_JMP | BPF_JSET | BPF_X:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700900 /* test dst_reg, src_reg */
901 EMIT3(add_2mod(0x48, dst_reg, src_reg), 0x85,
902 add_2reg(0xC0, dst_reg, src_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700903 goto emit_cond_jmp;
904
905 case BPF_JMP | BPF_JSET | BPF_K:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700906 /* test dst_reg, imm32 */
907 EMIT1(add_1mod(0x48, dst_reg));
908 EMIT2_off32(0xF7, add_1reg(0xC0, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700909 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:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700917 /* cmp dst_reg, imm8/32 */
918 EMIT1(add_1mod(0x48, dst_reg));
Alexei Starovoitov62258272014-05-13 19:50:46 -0700919
Alexei Starovoitove430f342014-06-06 14:46:06 -0700920 if (is_imm8(imm32))
921 EMIT3(0x83, add_1reg(0xF8, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700922 else
Alexei Starovoitove430f342014-06-06 14:46:06 -0700923 EMIT2_off32(0x81, add_1reg(0xF8, dst_reg), imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700924
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;
964
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:
Alexei Starovoitove430f342014-06-06 14:46:06 -0700985 func = CHOOSE_LOAD_FUNC(imm32, sk_load_word);
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -0700986common_load:
987 ctx->seen_ld_abs = seen_ld_abs = true;
Alexei Starovoitov62258272014-05-13 19:50:46 -0700988 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",
Alexei Starovoitove430f342014-06-06 14:46:06 -0700991 imm32, func, image);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700992 return -EINVAL;
993 }
994 if (BPF_MODE(insn->code) == BPF_ABS) {
995 /* mov %esi, imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700996 EMIT1_off32(0xBE, imm32);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700997 } else {
Alexei Starovoitove430f342014-06-06 14:46:06 -0700998 /* mov %rsi, src_reg */
999 EMIT_mov(BPF_REG_2, src_reg);
1000 if (imm32) {
1001 if (is_imm8(imm32))
Alexei Starovoitov62258272014-05-13 19:50:46 -07001002 /* add %esi, imm8 */
Alexei Starovoitove430f342014-06-06 14:46:06 -07001003 EMIT3(0x83, 0xC6, imm32);
Eric Dumazet0a148422011-04-20 09:27:32 +00001004 else
Alexei Starovoitov62258272014-05-13 19:50:46 -07001005 /* add %esi, imm32 */
Alexei Starovoitove430f342014-06-06 14:46:06 -07001006 EMIT2_off32(0x81, 0xC6, imm32);
Eric Dumazet0a148422011-04-20 09:27:32 +00001007 }
Alexei Starovoitov62258272014-05-13 19:50:46 -07001008 }
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 */
Daniel Borkmann959a7572016-05-13 19:08:33 +02001014 if (seen_ax_reg)
1015 /* r10 = skb->data, mov %r10, off32(%rbx) */
1016 EMIT3_off32(0x4c, 0x8b, 0x93,
1017 offsetof(struct sk_buff, data));
Alexei Starovoitov62258272014-05-13 19:50:46 -07001018 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:
Alexei Starovoitove430f342014-06-06 14:46:06 -07001025 func = CHOOSE_LOAD_FUNC(imm32, sk_load_half);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001026 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:
Alexei Starovoitove430f342014-06-06 14:46:06 -07001031 func = CHOOSE_LOAD_FUNC(imm32, sk_load_byte);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001032 goto common_load;
1033
1034 case BPF_JMP | BPF_EXIT:
Alexei Starovoitov769e0de2014-11-29 14:46:13 -08001035 if (seen_exit) {
Alexei Starovoitov62258272014-05-13 19:50:46 -07001036 jmp_offset = ctx->cleanup_addr - addrs[i];
1037 goto emit_jmp;
1038 }
Alexei Starovoitov769e0de2014-11-29 14:46:13 -08001039 seen_exit = true;
Alexei Starovoitov62258272014-05-13 19:50:46 -07001040 /* update cleanup_addr */
1041 ctx->cleanup_addr = proglen;
Alexei Starovoitov177366b2017-05-30 13:31:34 -07001042 /* 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);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001050
Alexei Starovoitov177366b2017-05-30 13:31:34 -07001051 /* add rbp, AUX_STACK_SPACE */
1052 EMIT4(0x48, 0x83, 0xC5, AUX_STACK_SPACE);
Alexei Starovoitov62258272014-05-13 19:50:46 -07001053 EMIT1(0xC9); /* leave */
1054 EMIT1(0xC3); /* ret */
1055 break;
1056
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001057 default:
Alexei Starovoitov62258272014-05-13 19:50:46 -07001058 /* 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
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001061 * or if there is junk in bpf_prog
Alexei Starovoitov62258272014-05-13 19:50:46 -07001062 */
1063 pr_err("bpf_jit: unknown opcode %02x\n", insn->code);
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001064 return -EINVAL;
Eric Dumazet0a148422011-04-20 09:27:32 +00001065 }
Alexei Starovoitov62258272014-05-13 19:50:46 -07001066
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001067 ilen = prog - temp;
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001068 if (ilen > BPF_MAX_INSN_SIZE) {
Daniel Borkmann93831912017-02-16 22:24:49 +01001069 pr_err("bpf_jit: fatal insn size error\n");
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001070 return -EFAULT;
1071 }
1072
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001073 if (image) {
1074 if (unlikely(proglen + ilen > oldproglen)) {
Daniel Borkmann93831912017-02-16 22:24:49 +01001075 pr_err("bpf_jit: fatal error\n");
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001076 return -EFAULT;
1077 }
1078 memcpy(image + proglen, temp, ilen);
1079 }
1080 proglen += ilen;
1081 addrs[i] = proglen;
1082 prog = temp;
1083 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001084 return proglen;
1085}
1086
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001087struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
Alexei Starovoitov62258272014-05-13 19:50:46 -07001088{
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001089 struct bpf_binary_header *header = NULL;
Daniel Borkmann959a7572016-05-13 19:08:33 +02001090 struct bpf_prog *tmp, *orig_prog = prog;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001091 int proglen, oldproglen = 0;
1092 struct jit_context ctx = {};
Daniel Borkmann959a7572016-05-13 19:08:33 +02001093 bool tmp_blinded = false;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001094 u8 *image = NULL;
1095 int *addrs;
1096 int pass;
1097 int i;
1098
1099 if (!bpf_jit_enable)
Daniel Borkmann959a7572016-05-13 19:08:33 +02001100 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 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001112
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001113 addrs = kmalloc(prog->len * sizeof(*addrs), GFP_KERNEL);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001114 if (!addrs) {
1115 prog = orig_prog;
1116 goto out;
1117 }
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001118
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;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001127
Alexei Starovoitov3f7352b2015-05-22 15:42:55 -07001128 /* 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++) {
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001134 proglen = do_jit(prog, addrs, image, oldproglen, &ctx);
1135 if (proglen <= 0) {
1136 image = NULL;
1137 if (header)
Daniel Borkmann738cbe72014-09-08 08:04:47 +02001138 bpf_jit_binary_free(header);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001139 prog = orig_prog;
1140 goto out_addrs;
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001141 }
Eric Dumazet0a148422011-04-20 09:27:32 +00001142 if (image) {
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001143 if (proglen != oldproglen) {
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001144 pr_err("bpf_jit: proglen=%d != oldproglen=%d\n",
1145 proglen, oldproglen);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001146 prog = orig_prog;
1147 goto out_addrs;
Alexei Starovoitove0ee9c12014-10-10 20:30:23 -07001148 }
Eric Dumazet0a148422011-04-20 09:27:32 +00001149 break;
1150 }
1151 if (proglen == oldproglen) {
Daniel Borkmann738cbe72014-09-08 08:04:47 +02001152 header = bpf_jit_binary_alloc(proglen, &image,
1153 1, jit_fill_hole);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001154 if (!header) {
1155 prog = orig_prog;
1156 goto out_addrs;
1157 }
Eric Dumazet0a148422011-04-20 09:27:32 +00001158 }
1159 oldproglen = proglen;
1160 }
Daniel Borkmann79617802013-03-21 22:22:03 +01001161
Eric Dumazet0a148422011-04-20 09:27:32 +00001162 if (bpf_jit_enable > 1)
Daniel Borkmann485d6512015-07-30 12:42:48 +02001163 bpf_jit_dump(prog->len, proglen, pass + 1, image);
Eric Dumazet0a148422011-04-20 09:27:32 +00001164
1165 if (image) {
Eric Dumazet314beb92013-05-17 16:37:03 +00001166 bpf_flush_icache(header, image + proglen);
Daniel Borkmann9d876e72017-02-21 16:09:34 +01001167 bpf_jit_binary_lock_ro(header);
Alexei Starovoitovf3c2af72014-05-13 19:50:45 -07001168 prog->bpf_func = (void *)image;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001169 prog->jited = 1;
Martin KaFai Lau783d28dd12017-06-05 12:15:51 -07001170 prog->jited_len = proglen;
Daniel Borkmann9d5ecb02017-01-07 00:26:33 +01001171 } else {
1172 prog = orig_prog;
Eric Dumazet0a148422011-04-20 09:27:32 +00001173 }
Daniel Borkmann959a7572016-05-13 19:08:33 +02001174
1175out_addrs:
Eric Dumazet0a148422011-04-20 09:27:32 +00001176 kfree(addrs);
Daniel Borkmann959a7572016-05-13 19:08:33 +02001177out:
1178 if (tmp_blinded)
1179 bpf_jit_prog_release_other(prog, prog == orig_prog ?
1180 tmp : orig_prog);
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001181 return prog;
Eric Dumazet0a148422011-04-20 09:27:32 +00001182}