1 #ifndef _UAPI__LINUX_NETFILTER_H
2 #define _UAPI__LINUX_NETFILTER_H
4 #include <linux/types.h>
5 #include <linux/compiler.h>
6 #include <linux/sysctl.h>
10 /* Responses from hook functions. */
17 #define NF_MAX_VERDICT NF_STOP
19 /* we overload the higher bits for encoding auxiliary data such as the queue
20 * number or errno values. Not nice, but better than additional function
22 #define NF_VERDICT_MASK 0x000000ff
24 /* extra verdict flags have mask 0x0000ff00 */
25 #define NF_VERDICT_FLAG_QUEUE_BYPASS 0x00008000
27 /* queue number (NF_QUEUE) or errno (NF_DROP) */
28 #define NF_VERDICT_QMASK 0xffff0000
29 #define NF_VERDICT_QBITS 16
31 #define NF_QUEUE_NR(x) ((((x) << 16) & NF_VERDICT_QMASK) | NF_QUEUE)
33 #define NF_DROP_ERR(x) (((-x) << 16) | NF_DROP)
35 /* only for userspace compatibility */
37 /* Generic cache responses from hook functions.
38 <= 0x2000 is used for protocol-flags. */
39 #define NFC_UNKNOWN 0x4000
40 #define NFC_ALTERED 0x8000
42 /* NF_VERDICT_BITS should be 8 now, but userspace might break if this changes */
43 #define NF_VERDICT_BITS 16
80 #endif /* _UAPI__LINUX_NETFILTER_H */