2 * Linux Socket Filter Data Structures
5 #ifndef __LINUX_FILTER_H__
6 #define __LINUX_FILTER_H__
9 * Current version of the filter code architecture.
11 #define BPF_MAJOR_VERSION 1
12 #define BPF_MINOR_VERSION 1
15 * Try and keep these values and structures similar to BSD, especially
16 * the BPF code definitions which need to match so you can share filters
19 struct sock_filter
/* Filter block */
21 __u16 code
; /* Actual filter code */
22 __u8 jt
; /* Jump true */
23 __u8 jf
; /* Jump false */
24 __u32 k
; /* Generic multiuse field */
27 struct sock_fprog
/* Required for SO_ATTACH_FILTER. */
29 unsigned short len
; /* Number of filter blocks */
30 struct sock_filter
*filter
;
37 unsigned int len
; /* Number of filter blocks */
38 struct sock_filter insns
[0];
41 static inline unsigned int sk_filter_len(struct sk_filter
*fp
)
43 return fp
->len
*sizeof(struct sock_filter
) + sizeof(*fp
);
51 #define BPF_CLASS(code) ((code) & 0x07)
62 #define BPF_SIZE(code) ((code) & 0x18)
66 #define BPF_MODE(code) ((code) & 0xe0)
75 #define BPF_OP(code) ((code) & 0xf0)
90 #define BPF_SRC(code) ((code) & 0x08)
94 /* ret - BPF_K and BPF_X also apply */
95 #define BPF_RVAL(code) ((code) & 0x18)
99 #define BPF_MISCOP(code) ((code) & 0xf8)
104 #define BPF_MAXINSNS 4096
108 * Macros for filter block array initializers.
111 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k }
114 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k }
118 * Number of scratch memory words for: BPF_ST and BPF_STX
120 #define BPF_MEMWORDS 16
122 /* RATIONALE. Negative offsets are invalid in BPF.
123 We use them to reference ancillary data.
124 Unlike introduction new instructions, it does not break
125 existing compilers/optimizers.
127 #define SKF_AD_OFF (-0x1000)
128 #define SKF_AD_PROTOCOL 0
129 #define SKF_AD_PKTTYPE 4
130 #define SKF_AD_IFINDEX 8
131 #define SKF_AD_MAX 12
132 #define SKF_NET_OFF (-0x100000)
133 #define SKF_LL_OFF (-0x200000)
136 extern int sk_run_filter(struct sk_buff
*skb
, struct sock_filter
*filter
, int flen
);
137 extern int sk_attach_filter(struct sock_fprog
*fprog
, struct sock
*sk
);
138 #endif /* __KERNEL__ */
140 #endif /* __LINUX_FILTER_H__ */