blob: f549adccc94c569801f4181bacd84e87f0743725 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * 25-Jul-1998 Major changes to allow for ip chain table
3 *
4 * 3-Jan-2000 Named tables to allow packet selection for different uses.
5 */
6
7/*
8 * Format of an IP6 firewall descriptor
9 *
10 * src, dst, src_mask, dst_mask are always stored in network byte order.
11 * flags are stored in host byte order (of course).
12 * Port numbers are stored in HOST byte order.
13 */
14
15#ifndef _IP6_TABLES_H
16#define _IP6_TABLES_H
17
18#ifdef __KERNEL__
19#include <linux/if.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/in6.h>
21#include <linux/ipv6.h>
22#include <linux/skbuff.h>
23#endif
Patrick McHardyc8942f12008-05-21 14:08:38 -070024#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/compiler.h>
26#include <linux/netfilter_ipv6.h>
27
Harald Welte2e4e6a12006-01-12 13:30:04 -080028#include <linux/netfilter/x_tables.h>
29
Jan Engelhardt12b00c22010-10-13 15:56:56 +020030#ifndef __KERNEL__
Harald Welte2e4e6a12006-01-12 13:30:04 -080031#define IP6T_FUNCTION_MAXNAMELEN XT_FUNCTION_MAXNAMELEN
32#define IP6T_TABLE_MAXNAMELEN XT_TABLE_MAXNAMELEN
Harald Welte2e4e6a12006-01-12 13:30:04 -080033#define ip6t_match xt_match
34#define ip6t_target xt_target
35#define ip6t_table xt_table
36#define ip6t_get_revision xt_get_revision
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +020037#define ip6t_entry_match xt_entry_match
38#define ip6t_entry_target xt_entry_target
39#define ip6t_standard_target xt_standard_target
Jan Engelhardt75f0a0f2010-10-13 16:37:45 +020040#define ip6t_error_target xt_error_target
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +020041#define ip6t_counters xt_counters
Jan Engelhardt243bf6e2010-10-13 16:28:00 +020042#define IP6T_CONTINUE XT_CONTINUE
43#define IP6T_RETURN XT_RETURN
44
45/* Pre-iptables-1.4.0 */
46#include <linux/netfilter/xt_tcpudp.h>
47#define ip6t_tcp xt_tcp
48#define ip6t_udp xt_udp
49#define IP6T_TCP_INV_SRCPT XT_TCP_INV_SRCPT
50#define IP6T_TCP_INV_DSTPT XT_TCP_INV_DSTPT
51#define IP6T_TCP_INV_FLAGS XT_TCP_INV_FLAGS
52#define IP6T_TCP_INV_OPTION XT_TCP_INV_OPTION
53#define IP6T_TCP_INV_MASK XT_TCP_INV_MASK
54#define IP6T_UDP_INV_SRCPT XT_UDP_INV_SRCPT
55#define IP6T_UDP_INV_DSTPT XT_UDP_INV_DSTPT
56#define IP6T_UDP_INV_MASK XT_UDP_INV_MASK
57
58#define ip6t_counters_info xt_counters_info
59#define IP6T_STANDARD_TARGET XT_STANDARD_TARGET
60#define IP6T_ERROR_TARGET XT_ERROR_TARGET
61#define IP6T_MATCH_ITERATE(e, fn, args...) \
62 XT_MATCH_ITERATE(struct ip6t_entry, e, fn, ## args)
63#define IP6T_ENTRY_ITERATE(entries, size, fn, args...) \
64 XT_ENTRY_ITERATE(struct ip6t_entry, entries, size, fn, ## args)
Jan Engelhardt12b00c22010-10-13 15:56:56 +020065#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* Yes, Virginia, you have to zero the padding. */
68struct ip6t_ip6 {
69 /* Source and destination IP6 addr */
70 struct in6_addr src, dst;
71 /* Mask for src and dest IP6 addr */
72 struct in6_addr smsk, dmsk;
73 char iniface[IFNAMSIZ], outiface[IFNAMSIZ];
74 unsigned char iniface_mask[IFNAMSIZ], outiface_mask[IFNAMSIZ];
75
Yasuyuki Kozakai7bfe2462007-07-07 22:14:23 -070076 /* Upper protocol number
77 * - The allowed value is 0 (any) or protocol number of last parsable
78 * header, which is 50 (ESP), 59 (No Next Header), 135 (MH), or
79 * the non IPv6 extension headers.
80 * - The protocol numbers of IPv6 extension headers except of ESP and
81 * MH do not match any packets.
82 * - You also need to set IP6T_FLAGS_PROTO to "flags" to check protocol.
83 */
Ben Hutchings7ff30c42011-08-24 18:44:57 +000084 __u16 proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 /* TOS to match iff flags & IP6T_F_TOS */
Ben Hutchings7ff30c42011-08-24 18:44:57 +000086 __u8 tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 /* Flags word */
Ben Hutchings7ff30c42011-08-24 18:44:57 +000089 __u8 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* Inverse flags */
Ben Hutchings7ff30c42011-08-24 18:44:57 +000091 __u8 invflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* Values for "flag" field in struct ip6t_ip6 (general ip6 structure). */
95#define IP6T_F_PROTO 0x01 /* Set if rule cares about upper
96 protocols */
97#define IP6T_F_TOS 0x02 /* Match the TOS. */
Patrick McHardy05465342005-08-21 23:31:43 -070098#define IP6T_F_GOTO 0x04 /* Set if jump is a goto */
99#define IP6T_F_MASK 0x07 /* All possible flag bits mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/* Values for "inv" field in struct ip6t_ip6. */
102#define IP6T_INV_VIA_IN 0x01 /* Invert the sense of IN IFACE. */
103#define IP6T_INV_VIA_OUT 0x02 /* Invert the sense of OUT IFACE */
104#define IP6T_INV_TOS 0x04 /* Invert the sense of TOS. */
105#define IP6T_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */
106#define IP6T_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
107#define IP6T_INV_FRAG 0x20 /* Invert the sense of FRAG. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800108#define IP6T_INV_PROTO XT_INV_PROTO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define IP6T_INV_MASK 0x7F /* All possible flag bits mask. */
110
111/* This structure defines each of the firewall rules. Consists of 3
112 parts which are 1) general IP header stuff 2) match specific
113 stuff 3) the target to perform if the rule matches */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800114struct ip6t_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct ip6t_ip6 ipv6;
116
117 /* Mark with fields that we care about. */
118 unsigned int nfcache;
119
120 /* Size of ipt_entry + matches */
Ben Hutchings7ff30c42011-08-24 18:44:57 +0000121 __u16 target_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 /* Size of ipt_entry + matches + target */
Ben Hutchings7ff30c42011-08-24 18:44:57 +0000123 __u16 next_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /* Back pointer */
126 unsigned int comefrom;
127
128 /* Packet and byte counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800129 struct xt_counters counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /* The matches (if any), then the target. */
132 unsigned char elems[0];
133};
134
Patrick McHardy9934e812007-02-07 15:14:28 -0800135/* Standard entry */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800136struct ip6t_standard {
Patrick McHardy9934e812007-02-07 15:14:28 -0800137 struct ip6t_entry entry;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200138 struct xt_standard_target target;
Patrick McHardy9934e812007-02-07 15:14:28 -0800139};
140
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800141struct ip6t_error {
Patrick McHardy9934e812007-02-07 15:14:28 -0800142 struct ip6t_entry entry;
Jan Engelhardt75f0a0f2010-10-13 16:37:45 +0200143 struct xt_error_target target;
Patrick McHardy9934e812007-02-07 15:14:28 -0800144};
145
Patrick McHardy3c2ad462007-05-10 14:14:16 -0700146#define IP6T_ENTRY_INIT(__size) \
147{ \
148 .target_offset = sizeof(struct ip6t_entry), \
149 .next_offset = (__size), \
150}
151
152#define IP6T_STANDARD_INIT(__verdict) \
153{ \
154 .entry = IP6T_ENTRY_INIT(sizeof(struct ip6t_standard)), \
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200155 .target = XT_TARGET_INIT(XT_STANDARD_TARGET, \
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200156 sizeof(struct xt_standard_target)), \
Patrick McHardy3c2ad462007-05-10 14:14:16 -0700157 .target.verdict = -(__verdict) - 1, \
158}
159
160#define IP6T_ERROR_INIT \
161{ \
162 .entry = IP6T_ENTRY_INIT(sizeof(struct ip6t_error)), \
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200163 .target = XT_TARGET_INIT(XT_ERROR_TARGET, \
Jan Engelhardt75f0a0f2010-10-13 16:37:45 +0200164 sizeof(struct xt_error_target)), \
Patrick McHardy3c2ad462007-05-10 14:14:16 -0700165 .target.errorname = "ERROR", \
166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
169 * New IP firewall options for [gs]etsockopt at the RAW IP level.
170 * Unlike BSD Linux inherits IP options so you don't have to use
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800171 * a raw socket for this. Instead we check rights in the calls.
172 *
173 * ATTENTION: check linux/in6.h before adding new number here.
174 */
175#define IP6T_BASE_CTL 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800177#define IP6T_SO_SET_REPLACE (IP6T_BASE_CTL)
178#define IP6T_SO_SET_ADD_COUNTERS (IP6T_BASE_CTL + 1)
179#define IP6T_SO_SET_MAX IP6T_SO_SET_ADD_COUNTERS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800181#define IP6T_SO_GET_INFO (IP6T_BASE_CTL)
182#define IP6T_SO_GET_ENTRIES (IP6T_BASE_CTL + 1)
183#define IP6T_SO_GET_REVISION_MATCH (IP6T_BASE_CTL + 4)
184#define IP6T_SO_GET_REVISION_TARGET (IP6T_BASE_CTL + 5)
185#define IP6T_SO_GET_MAX IP6T_SO_GET_REVISION_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* ICMP matching stuff */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800188struct ip6t_icmp {
Ben Hutchings7ff30c42011-08-24 18:44:57 +0000189 __u8 type; /* type to match */
190 __u8 code[2]; /* range of code */
191 __u8 invflags; /* Inverse flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
193
194/* Values for "inv" field for struct ipt_icmp. */
195#define IP6T_ICMP_INV 0x01 /* Invert the sense of type/code test */
196
197/* The argument to IP6T_SO_GET_INFO */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800198struct ip6t_getinfo {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* Which table: caller fills this in. */
Jan Engelhardt12b00c22010-10-13 15:56:56 +0200200 char name[XT_TABLE_MAXNAMELEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* Kernel fills these in. */
203 /* Which hook entry points are valid: bitmask */
204 unsigned int valid_hooks;
205
206 /* Hook entry points: one per netfilter hook. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800207 unsigned int hook_entry[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* Underflow points. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800210 unsigned int underflow[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* Number of entries */
213 unsigned int num_entries;
214
215 /* Size of entries. */
216 unsigned int size;
217};
218
219/* The argument to IP6T_SO_SET_REPLACE. */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800220struct ip6t_replace {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /* Which table. */
Jan Engelhardt12b00c22010-10-13 15:56:56 +0200222 char name[XT_TABLE_MAXNAMELEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* Which hook entry points are valid: bitmask. You can't
225 change this. */
226 unsigned int valid_hooks;
227
228 /* Number of entries */
229 unsigned int num_entries;
230
231 /* Total size of new entries */
232 unsigned int size;
233
234 /* Hook entry points. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800235 unsigned int hook_entry[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /* Underflow points. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800238 unsigned int underflow[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* Information about old entries: */
241 /* Number of counters (must be equal to current number of entries). */
242 unsigned int num_counters;
243 /* The old entries' counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800244 struct xt_counters __user *counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* The entries (hang off end: not really an array). */
247 struct ip6t_entry entries[0];
248};
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/* The argument to IP6T_SO_GET_ENTRIES. */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800251struct ip6t_get_entries {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* Which table: user fills this in. */
Jan Engelhardt12b00c22010-10-13 15:56:56 +0200253 char name[XT_TABLE_MAXNAMELEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /* User fills this in: total entry size. */
256 unsigned int size;
257
258 /* The entries. */
259 struct ip6t_entry entrytable[0];
260};
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/* Helper functions */
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200263static __inline__ struct xt_entry_target *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264ip6t_get_target(struct ip6t_entry *e)
265{
266 return (void *)e + e->target_offset;
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
270 * Main firewall chains definitions and global var's definitions.
271 */
272
273#ifdef __KERNEL__
274
275#include <linux/init.h>
276extern void ip6t_init(void) __init;
277
Jan Engelhardte3eaa992009-06-17 22:14:54 +0200278extern void *ip6t_alloc_initial_table(const struct xt_table *);
Alexey Dobriyan336b5172008-01-31 04:03:45 -0800279extern struct xt_table *ip6t_register_table(struct net *net,
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200280 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800281 const struct ip6t_replace *repl);
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100282extern void ip6t_unregister_table(struct net *net, struct xt_table *table);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700283extern unsigned int ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 unsigned int hook,
285 const struct net_device *in,
286 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800287 struct xt_table *table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289/* Check for an extension */
290extern int ip6t_ext_hdr(u8 nexthdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -0700291/* find specified header and get offset to it */
292extern int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800293 int target, unsigned short *fragoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Patrick McHardy3bc3fe52007-12-17 21:50:37 -0800295#ifdef CONFIG_COMPAT
296#include <net/compat.h>
297
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800298struct compat_ip6t_entry {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -0800299 struct ip6t_ip6 ipv6;
300 compat_uint_t nfcache;
Ben Hutchings7ff30c42011-08-24 18:44:57 +0000301 __u16 target_offset;
302 __u16 next_offset;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -0800303 compat_uint_t comefrom;
304 struct compat_xt_counters counters;
305 unsigned char elems[0];
306};
307
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200308static inline struct xt_entry_target *
Patrick McHardy3bc3fe52007-12-17 21:50:37 -0800309compat_ip6t_get_target(struct compat_ip6t_entry *e)
310{
311 return (void *)e + e->target_offset;
312}
313
Patrick McHardy3bc3fe52007-12-17 21:50:37 -0800314#endif /* CONFIG_COMPAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315#endif /*__KERNEL__*/
316#endif /* _IP6_TABLES_H */