blob: 7c8a513ce7a3ed03f0612e972537deb6569339e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_IP6_NETFILTER_H
2#define __LINUX_IP6_NETFILTER_H
3
4/* IPv6-specific defines for netfilter.
5 * (C)1998 Rusty Russell -- This code is GPL.
6 * (C)1999 David Jeffery
7 * this header was blatantly ripped from netfilter_ipv4.h
8 * it's amazing what adding a bunch of 6s can do =8^)
9 */
10
11#include <linux/netfilter.h>
12
Harald Welte6869c4d2005-08-09 19:24:19 -070013/* only for userspace compatibility */
14#ifndef __KERNEL__
Ben Hutchings598aaff2011-08-24 18:45:36 +000015
16#include <limits.h> /* for INT_MIN, INT_MAX */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018/* IP Cache bits. */
19/* Src IP address. */
20#define NFC_IP6_SRC 0x0001
21/* Dest IP address. */
22#define NFC_IP6_DST 0x0002
23/* Input device. */
24#define NFC_IP6_IF_IN 0x0004
25/* Output device. */
26#define NFC_IP6_IF_OUT 0x0008
27/* TOS. */
28#define NFC_IP6_TOS 0x0010
29/* Protocol. */
30#define NFC_IP6_PROTO 0x0020
31/* IP options. */
32#define NFC_IP6_OPTIONS 0x0040
33/* Frag & flags. */
34#define NFC_IP6_FRAG 0x0080
35
36
37/* Per-protocol information: only matters if proto match. */
38/* TCP flags. */
39#define NFC_IP6_TCPFLAGS 0x0100
40/* Source port. */
41#define NFC_IP6_SRC_PT 0x0200
42/* Dest port. */
43#define NFC_IP6_DST_PT 0x0400
44/* Something else about the proto */
45#define NFC_IP6_PROTO_UNKNOWN 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* IP6 Hooks */
48/* After promisc drops, checksum checks. */
49#define NF_IP6_PRE_ROUTING 0
50/* If the packet is destined for this box. */
51#define NF_IP6_LOCAL_IN 1
52/* If the packet is destined for another interface. */
53#define NF_IP6_FORWARD 2
54/* Packets coming from a local process. */
55#define NF_IP6_LOCAL_OUT 3
56/* Packets about to hit the wire. */
57#define NF_IP6_POST_ROUTING 4
58#define NF_IP6_NUMHOOKS 5
Patrick McHardy6e23ae22007-11-19 18:53:30 -080059#endif /* ! __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61
62enum nf_ip6_hook_priorities {
63 NF_IP6_PRI_FIRST = INT_MIN,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080064 NF_IP6_PRI_CONNTRACK_DEFRAG = -400,
Jozsef Kadlecsik9c138862010-03-25 11:17:26 +010065 NF_IP6_PRI_RAW = -300,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 NF_IP6_PRI_SELINUX_FIRST = -225,
67 NF_IP6_PRI_CONNTRACK = -200,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 NF_IP6_PRI_MANGLE = -150,
69 NF_IP6_PRI_NAT_DST = -100,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 NF_IP6_PRI_FILTER = 0,
James Morris17e6e592008-06-09 15:58:05 -070071 NF_IP6_PRI_SECURITY = 50,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 NF_IP6_PRI_NAT_SRC = 100,
73 NF_IP6_PRI_SELINUX_LAST = 225,
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +020074 NF_IP6_PRI_CONNTRACK_HELPER = 300,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 NF_IP6_PRI_LAST = INT_MAX,
76};
77
Adrian Bunkcdf060a2008-07-08 02:36:40 -070078#ifdef __KERNEL__
79
Patrick McHardybb94aa12006-01-09 16:43:13 -080080#ifdef CONFIG_NETFILTER
Patrick McHardy9123de22006-09-20 11:59:42 -070081extern int ip6_route_me_harder(struct sk_buff *skb);
Al Virob51655b2006-11-14 21:40:42 -080082extern __sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -070083 unsigned int dataoff, u_int8_t protocol);
84
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030085extern int ipv6_netfilter_init(void);
86extern void ipv6_netfilter_fini(void);
Patrick McHardybb94aa12006-01-09 16:43:13 -080087#else /* CONFIG_NETFILTER */
88static inline int ipv6_netfilter_init(void) { return 0; }
89static inline void ipv6_netfilter_fini(void) { return; }
90#endif /* CONFIG_NETFILTER */
Harald Welte2cc7d572005-08-09 19:42:34 -070091
Adrian Bunkcdf060a2008-07-08 02:36:40 -070092#endif /* __KERNEL__ */
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#endif /*__LINUX_IP6_NETFILTER_H*/