]> Git Repo - linux.git/blob - include/uapi/linux/bpf.h
net: filter: split filter.h and expose eBPF to user space
[linux.git] / include / uapi / linux / bpf.h
1 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2  *
3  * This program is free software; you can redistribute it and/or
4  * modify it under the terms of version 2 of the GNU General Public
5  * License as published by the Free Software Foundation.
6  */
7 #ifndef _UAPI__LINUX_BPF_H__
8 #define _UAPI__LINUX_BPF_H__
9
10 #include <linux/types.h>
11
12 /* Extended instruction set based on top of classic BPF */
13
14 /* instruction classes */
15 #define BPF_ALU64       0x07    /* alu mode in double word width */
16
17 /* ld/ldx fields */
18 #define BPF_DW          0x18    /* double word */
19 #define BPF_XADD        0xc0    /* exclusive add */
20
21 /* alu/jmp fields */
22 #define BPF_MOV         0xb0    /* mov reg to reg */
23 #define BPF_ARSH        0xc0    /* sign extending arithmetic shift right */
24
25 /* change endianness of a register */
26 #define BPF_END         0xd0    /* flags for endianness conversion: */
27 #define BPF_TO_LE       0x00    /* convert to little-endian */
28 #define BPF_TO_BE       0x08    /* convert to big-endian */
29 #define BPF_FROM_LE     BPF_TO_LE
30 #define BPF_FROM_BE     BPF_TO_BE
31
32 #define BPF_JNE         0x50    /* jump != */
33 #define BPF_JSGT        0x60    /* SGT is signed '>', GT in x86 */
34 #define BPF_JSGE        0x70    /* SGE is signed '>=', GE in x86 */
35 #define BPF_CALL        0x80    /* function call */
36 #define BPF_EXIT        0x90    /* function return */
37
38 /* Register numbers */
39 enum {
40         BPF_REG_0 = 0,
41         BPF_REG_1,
42         BPF_REG_2,
43         BPF_REG_3,
44         BPF_REG_4,
45         BPF_REG_5,
46         BPF_REG_6,
47         BPF_REG_7,
48         BPF_REG_8,
49         BPF_REG_9,
50         BPF_REG_10,
51         __MAX_BPF_REG,
52 };
53
54 /* BPF has 10 general purpose 64-bit registers and stack frame. */
55 #define MAX_BPF_REG     __MAX_BPF_REG
56
57 struct bpf_insn {
58         __u8    code;           /* opcode */
59         __u8    dst_reg:4;      /* dest register */
60         __u8    src_reg:4;      /* source register */
61         __s16   off;            /* signed offset */
62         __s32   imm;            /* signed immediate constant */
63 };
64
65 #endif /* _UAPI__LINUX_BPF_H__ */
This page took 0.038338 seconds and 4 git commands to generate.